2 * fs/partitions/atari.c
4 * Code extracted from drivers/block/genhd.c
6 * Copyright (C) 1991-1998 Linus Torvalds
7 * Re-organised Feb 1998 Russell King
10 #include <linux/ctype.h>
14 /* ++guenther: this should be settable by the user ("make config")?.
18 /* check if a partition entry looks valid -- Atari format is assumed if at
19 least one of the primary entries is ok this way */
20 #define VALID_PARTITION(pi,hdsiz) \
22 isalnum((pi)->id[0]) && isalnum((pi)->id[1]) && isalnum((pi)->id[2]) && \
23 be32_to_cpu((pi)->st) <= (hdsiz) && \
24 be32_to_cpu((pi)->st) + be32_to_cpu((pi)->siz) <= (hdsiz))
26 static inline int OK_id(char *s
)
28 return memcmp (s
, "GEM", 3) == 0 || memcmp (s
, "BGM", 3) == 0 ||
29 memcmp (s
, "LNX", 3) == 0 || memcmp (s
, "SWP", 3) == 0 ||
30 memcmp (s
, "RAW", 3) == 0 ;
33 int atari_partition(struct parsed_partitions
*state
)
36 struct rootsector
*rs
;
37 struct partition_info
*pi
;
42 int part_fmt
= 0; /* 0:unknown, 1:AHDI, 2:ICD/Supra */
46 * ATARI partition scheme supports 512 lba only. If this is not
47 * the case, bail early to avoid miscalculating hd_size.
49 if (bdev_logical_block_size(state
->bdev
) != 512)
52 rs
= read_part_sector(state
, 0, §
);
56 /* Verify this is an Atari rootsector: */
57 hd_size
= state
->bdev
->bd_inode
->i_size
>> 9;
58 if (!VALID_PARTITION(&rs
->part
[0], hd_size
) &&
59 !VALID_PARTITION(&rs
->part
[1], hd_size
) &&
60 !VALID_PARTITION(&rs
->part
[2], hd_size
) &&
61 !VALID_PARTITION(&rs
->part
[3], hd_size
)) {
63 * if there's no valid primary partition, assume that no Atari
64 * format partition table (there's no reliable magic or the like
72 strlcat(state
->pp_buf
, " AHDI", PAGE_SIZE
);
73 for (slot
= 1; pi
< &rs
->part
[4] && slot
< state
->limit
; slot
++, pi
++) {
74 struct rootsector
*xrs
;
80 /* active partition */
81 if (memcmp (pi
->id
, "XGM", 3) != 0) {
82 /* we don't care about other id's */
83 put_partition (state
, slot
, be32_to_cpu(pi
->st
),
84 be32_to_cpu(pi
->siz
));
87 /* extension partition */
91 strlcat(state
->pp_buf
, " XGM<", PAGE_SIZE
);
92 partsect
= extensect
= be32_to_cpu(pi
->st
);
94 xrs
= read_part_sector(state
, partsect
, §2
);
96 printk (" block %ld read failed\n", partsect
);
101 /* ++roman: sanity check: bit 0 of flg field must be set */
102 if (!(xrs
->part
[0].flg
& 1)) {
103 printk( "\nFirst sub-partition in extended partition is not valid!\n" );
104 put_dev_sector(sect2
);
108 put_partition(state
, slot
,
109 partsect
+ be32_to_cpu(xrs
->part
[0].st
),
110 be32_to_cpu(xrs
->part
[0].siz
));
112 if (!(xrs
->part
[1].flg
& 1)) {
113 /* end of linked partition list */
114 put_dev_sector(sect2
);
117 if (memcmp( xrs
->part
[1].id
, "XGM", 3 ) != 0) {
118 printk("\nID of extended partition is not XGM!\n");
119 put_dev_sector(sect2
);
123 partsect
= be32_to_cpu(xrs
->part
[1].st
) + extensect
;
124 put_dev_sector(sect2
);
125 if (++slot
== state
->limit
) {
126 printk( "\nMaximum number of partitions reached!\n" );
130 strlcat(state
->pp_buf
, " >", PAGE_SIZE
);
133 if ( part_fmt
!=1 ) { /* no extended partitions -> test ICD-format */
134 pi
= &rs
->icdpart
[0];
135 /* sanity check: no ICD format if first partition invalid */
137 strlcat(state
->pp_buf
, " ICD<", PAGE_SIZE
);
138 for (; pi
< &rs
->icdpart
[8] && slot
< state
->limit
; slot
++, pi
++) {
139 /* accept only GEM,BGM,RAW,LNX,SWP partitions */
140 if (!((pi
->flg
& 1) && OK_id(pi
->id
)))
143 put_partition (state
, slot
,
145 be32_to_cpu(pi
->siz
));
147 strlcat(state
->pp_buf
, " >", PAGE_SIZE
);
151 put_dev_sector(sect
);
153 strlcat(state
->pp_buf
, "\n", PAGE_SIZE
);