4 * Code extracted from drivers/block/genhd.c
6 * Copyright (C) 1991-1998 Linus Torvalds
7 * Re-organised Feb 1998 Russell King
13 int sun_partition(struct parsed_partitions
*state
, struct block_device
*bdev
)
20 struct sun_disklabel
{
21 unsigned char info
[128]; /* Informative text string */
23 __be32 version
; /* Layout version */
24 char volume
[8]; /* Volume name */
25 __be16 nparts
; /* Number of partitions */
26 struct sun_info
{ /* Partition hdrs, sec 2 */
30 __be16 padding
; /* Alignment padding */
31 __be32 bootinfo
[3]; /* Info needed by mboot */
32 __be32 sanity
; /* To verify vtoc sanity */
33 __be32 reserved
[10]; /* Free space */
34 __be32 timestamp
[8]; /* Partition timestamp */
36 __be32 write_reinstruct
; /* sectors to skip, writes */
37 __be32 read_reinstruct
; /* sectors to skip, reads */
38 unsigned char spare
[148]; /* Padding */
39 __be16 rspeed
; /* Disk rotational speed */
40 __be16 pcylcount
; /* Physical cylinder count */
41 __be16 sparecyl
; /* extra sects per cylinder */
42 __be16 obs1
; /* gap1 */
43 __be16 obs2
; /* gap2 */
44 __be16 ilfact
; /* Interleave factor */
45 __be16 ncyl
; /* Data cylinder count */
46 __be16 nacyl
; /* Alt. cylinder count */
47 __be16 ntrks
; /* Tracks per cylinder */
48 __be16 nsect
; /* Sectors per track */
49 __be16 obs3
; /* bhead - Label head offset */
50 __be16 obs4
; /* ppart - Physical Partition */
51 struct sun_partition
{
52 __be32 start_cylinder
;
55 __be16 magic
; /* Magic number */
56 __be16 csum
; /* Label xor'd checksum */
58 struct sun_partition
*p
;
60 char b
[BDEVNAME_SIZE
];
64 label
= (struct sun_disklabel
*)read_dev_sector(bdev
, 0, §
);
68 p
= label
->partitions
;
69 if (be16_to_cpu(label
->magic
) != SUN_LABEL_MAGIC
) {
70 /* printk(KERN_INFO "Dev %s Sun disklabel: bad magic %04x\n",
71 bdevname(bdev, b), be16_to_cpu(label->magic)); */
75 /* Look at the checksum */
76 ush
= ((__be16
*) (label
+1)) - 1;
77 for (csum
= 0; ush
>= ((__be16
*) label
);)
80 printk("Dev %s Sun disklabel: Csum bad, label corrupted\n",
86 /* Check to see if we can use the VTOC table */
87 use_vtoc
= ((be32_to_cpu(label
->vtoc
.sanity
) == SUN_VTOC_SANITY
) &&
88 (be32_to_cpu(label
->vtoc
.version
) == 1) &&
89 (be16_to_cpu(label
->vtoc
.nparts
) <= 8));
91 /* Use 8 partition entries if not specified in validated VTOC */
92 nparts
= (use_vtoc
) ? be16_to_cpu(label
->vtoc
.nparts
) : 8;
95 * So that old Linux-Sun partitions continue to work,
96 * alow the VTOC to be used under the additional condition ...
98 use_vtoc
= use_vtoc
|| !(label
->vtoc
.sanity
||
99 label
->vtoc
.version
|| label
->vtoc
.nparts
);
100 spc
= be16_to_cpu(label
->ntrks
) * be16_to_cpu(label
->nsect
);
101 for (i
= 0; i
< nparts
; i
++, p
++) {
102 unsigned long st_sector
;
103 unsigned int num_sectors
;
105 st_sector
= be32_to_cpu(p
->start_cylinder
) * spc
;
106 num_sectors
= be32_to_cpu(p
->num_sectors
);
108 put_partition(state
, slot
, st_sector
, num_sectors
);
109 state
->parts
[slot
].flags
= 0;
111 if (be16_to_cpu(label
->vtoc
.infos
[i
].id
) == LINUX_RAID_PARTITION
)
112 state
->parts
[slot
].flags
|= ADDPART_FLAG_RAID
;
113 else if (be16_to_cpu(label
->vtoc
.infos
[i
].id
) == SUN_WHOLE_DISK
)
114 state
->parts
[slot
].flags
|= ADDPART_FLAG_WHOLEDISK
;
120 put_dev_sector(sect
);