4 * Code extracted from drivers/block/genhd.c
5 * Copyright (C) 1991-1998 Linus Torvalds
6 * Re-organised Feb 1998 Russell King
9 #include <linux/ctype.h>
13 #ifdef CONFIG_PPC_PMAC
14 #include <asm/machdep.h>
15 extern void note_bootable_part(dev_t dev, int part, int goodness);
19 * Code to understand MacOS partition tables.
22 static inline void mac_fix_string(char *stg, int len)
26 for (i = len - 1; i >= 0 && stg[i] == ' '; i--)
30 int mac_partition(struct parsed_partitions *state, struct block_device *bdev)
35 int blk, blocks_in_map;
37 #ifdef CONFIG_PPC_PMAC
39 int found_root_goodness = 0;
41 struct mac_partition *part;
42 struct mac_driver_desc *md;
44 /* Get 0th block and look at the first partition map entry. */
45 md = (struct mac_driver_desc *) read_dev_sector(bdev, 0, §);
48 if (be16_to_cpu(md->signature) != MAC_DRIVER_MAGIC) {
52 secsize = be16_to_cpu(md->block_size);
54 data = read_dev_sector(bdev, secsize/512, §);
57 part = (struct mac_partition *) (data + secsize%512);
58 if (be16_to_cpu(part->signature) != MAC_PARTITION_MAGIC) {
60 return 0; /* not a MacOS disk */
63 blocks_in_map = be32_to_cpu(part->map_count);
64 for (blk = 1; blk <= blocks_in_map; ++blk) {
65 int pos = blk * secsize;
67 data = read_dev_sector(bdev, pos/512, §);
70 part = (struct mac_partition *) (data + pos%512);
71 if (be16_to_cpu(part->signature) != MAC_PARTITION_MAGIC)
73 put_partition(state, slot,
74 be32_to_cpu(part->start_block) * (secsize/512),
75 be32_to_cpu(part->block_count) * (secsize/512));
77 if (!strnicmp(part->type, "Linux_RAID", 10))
78 state->parts[slot].flags = 1;
79 #ifdef CONFIG_PPC_PMAC
81 * If this is the first bootable partition, tell the
82 * setup code, in case it wants to make this the root.
84 if (machine_is(powermac)) {
87 mac_fix_string(part->processor, 16);
88 mac_fix_string(part->name, 32);
89 mac_fix_string(part->type, 32);
91 if ((be32_to_cpu(part->status) & MAC_STATUS_BOOTABLE)
92 && strcasecmp(part->processor, "powerpc") == 0)
95 if (strcasecmp(part->type, "Apple_UNIX_SVR2") == 0
96 || (strnicmp(part->type, "Linux", 5) == 0
97 && strcasecmp(part->type, "Linux_swap") != 0)) {
101 l = strlen(part->name);
102 if (strcmp(part->name, "/") == 0)
104 for (i = 0; i <= l - 4; ++i) {
105 if (strnicmp(part->name + i, "root",
111 if (strnicmp(part->name, "swap", 4) == 0)
115 if (goodness > found_root_goodness) {
117 found_root_goodness = goodness;
120 #endif /* CONFIG_PPC_PMAC */
124 #ifdef CONFIG_PPC_PMAC
125 if (found_root_goodness)
126 note_bootable_part(bdev->bd_dev, found_root, found_root_goodness);
129 put_dev_sector(sect);