Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/m68k/mac/config.c |
| 3 | * |
| 4 | * This file is subject to the terms and conditions of the GNU General Public |
| 5 | * License. See the file COPYING in the main directory of this archive |
| 6 | * for more details. |
| 7 | */ |
| 8 | |
| 9 | /* |
| 10 | * Miscellaneous linux stuff |
| 11 | */ |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/module.h> |
| 14 | #include <linux/types.h> |
| 15 | #include <linux/mm.h> |
| 16 | #include <linux/tty.h> |
| 17 | #include <linux/console.h> |
| 18 | #include <linux/interrupt.h> |
| 19 | /* keyb */ |
| 20 | #include <linux/random.h> |
| 21 | #include <linux/delay.h> |
| 22 | /* keyb */ |
| 23 | #include <linux/init.h> |
| 24 | #include <linux/vt_kern.h> |
Laurent Vivier | 8852ecd | 2008-11-15 16:10:10 +0100 | [diff] [blame] | 25 | #include <linux/platform_device.h> |
Finn Thain | 18814ee | 2009-11-17 20:03:05 +1100 | [diff] [blame] | 26 | #include <linux/adb.h> |
| 27 | #include <linux/cuda.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <asm/setup.h> |
| 30 | #include <asm/bootinfo.h> |
Geert Uytterhoeven | 4c3c522 | 2013-10-02 11:37:33 +0200 | [diff] [blame] | 31 | #include <asm/bootinfo-mac.h> |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 32 | #include <asm/byteorder.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <asm/io.h> |
| 35 | #include <asm/irq.h> |
| 36 | #include <asm/pgtable.h> |
| 37 | #include <asm/rtc.h> |
| 38 | #include <asm/machdep.h> |
| 39 | |
| 40 | #include <asm/macintosh.h> |
| 41 | #include <asm/macints.h> |
| 42 | #include <asm/machw.h> |
| 43 | |
| 44 | #include <asm/mac_iop.h> |
| 45 | #include <asm/mac_via.h> |
| 46 | #include <asm/mac_oss.h> |
| 47 | #include <asm/mac_psc.h> |
| 48 | |
| 49 | /* Mac bootinfo struct */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | struct mac_booter_data mac_bi_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | /* The phys. video addr. - might be bogus on some machines */ |
Adrian Bunk | 8dfbdf4 | 2008-07-17 21:16:25 +0200 | [diff] [blame] | 53 | static unsigned long mac_orig_videoaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | /* Mac specific timer functions */ |
Stephen Warren | c8d5ba1 | 2012-11-08 11:34:55 -0700 | [diff] [blame] | 56 | extern u32 mac_gettimeoffset(void); |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 57 | extern int mac_hwclk(int, struct rtc_time *); |
| 58 | extern int mac_set_clock_mmss(unsigned long); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | extern void iop_preinit(void); |
| 60 | extern void iop_init(void); |
| 61 | extern void via_init(void); |
David Howells | 40220c1 | 2006-10-09 12:19:47 +0100 | [diff] [blame] | 62 | extern void via_init_clock(irq_handler_t func); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | extern void via_flush_cache(void); |
| 64 | extern void oss_init(void); |
| 65 | extern void psc_init(void); |
| 66 | extern void baboon_init(void); |
| 67 | |
| 68 | extern void mac_mksound(unsigned int, unsigned int); |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | static void mac_get_model(char *str); |
Adrian Bunk | 8dfbdf4 | 2008-07-17 21:16:25 +0200 | [diff] [blame] | 71 | static void mac_identify(void); |
| 72 | static void mac_report_hardware(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Finn Thain | 93edd02 | 2011-10-24 01:11:12 +1100 | [diff] [blame] | 74 | #ifdef CONFIG_EARLY_PRINTK |
| 75 | asmlinkage void __init mac_early_print(const char *s, unsigned n); |
| 76 | |
| 77 | static void __init mac_early_cons_write(struct console *con, |
| 78 | const char *s, unsigned n) |
| 79 | { |
| 80 | mac_early_print(s, n); |
| 81 | } |
| 82 | |
| 83 | static struct console __initdata mac_early_cons = { |
| 84 | .name = "early", |
| 85 | .write = mac_early_cons_write, |
| 86 | .flags = CON_PRINTBUFFER | CON_BOOT, |
| 87 | .index = -1 |
| 88 | }; |
| 89 | |
| 90 | int __init mac_unregister_early_cons(void) |
| 91 | { |
| 92 | /* mac_early_print can't be used after init sections are discarded */ |
| 93 | return unregister_console(&mac_early_cons); |
| 94 | } |
| 95 | |
| 96 | late_initcall(mac_unregister_early_cons); |
| 97 | #endif |
| 98 | |
Al Viro | 66a3f82 | 2007-07-20 04:33:28 +0100 | [diff] [blame] | 99 | static void __init mac_sched_init(irq_handler_t vector) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { |
| 101 | via_init_clock(vector); |
| 102 | } |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | /* |
| 105 | * Parse a Macintosh-specific record in the bootinfo |
| 106 | */ |
| 107 | |
| 108 | int __init mac_parse_bootinfo(const struct bi_record *record) |
| 109 | { |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 110 | int unknown = 0; |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 111 | const void *data = record->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 113 | switch (be16_to_cpu(record->tag)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | case BI_MAC_MODEL: |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 115 | mac_bi_data.id = be32_to_cpup(data); |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 116 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | case BI_MAC_VADDR: |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 118 | mac_bi_data.videoaddr = be32_to_cpup(data); |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 119 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | case BI_MAC_VDEPTH: |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 121 | mac_bi_data.videodepth = be32_to_cpup(data); |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 122 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | case BI_MAC_VROW: |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 124 | mac_bi_data.videorow = be32_to_cpup(data); |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 125 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | case BI_MAC_VDIM: |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 127 | mac_bi_data.dimensions = be32_to_cpup(data); |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 128 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | case BI_MAC_VLOGICAL: |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 130 | mac_orig_videoaddr = be32_to_cpup(data); |
| 131 | mac_bi_data.videological = |
| 132 | VIDEOMEMBASE + (mac_orig_videoaddr & ~VIDEOMEMMASK); |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 133 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | case BI_MAC_SCCBASE: |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 135 | mac_bi_data.sccbase = be32_to_cpup(data); |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 136 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | case BI_MAC_BTIME: |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 138 | mac_bi_data.boottime = be32_to_cpup(data); |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 139 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | case BI_MAC_GMTBIAS: |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 141 | mac_bi_data.gmtbias = be32_to_cpup(data); |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 142 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | case BI_MAC_MEMSIZE: |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 144 | mac_bi_data.memsize = be32_to_cpup(data); |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 145 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | case BI_MAC_CPUID: |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 147 | mac_bi_data.cpuid = be32_to_cpup(data); |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 148 | break; |
| 149 | case BI_MAC_ROMBASE: |
Geert Uytterhoeven | abe4810 | 2013-10-04 11:41:24 +0200 | [diff] [blame] | 150 | mac_bi_data.rombase = be32_to_cpup(data); |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 151 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | default: |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 153 | unknown = 1; |
| 154 | break; |
| 155 | } |
| 156 | return unknown; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | /* |
| 160 | * Flip into 24bit mode for an instant - flushes the L2 cache card. We |
| 161 | * have to disable interrupts for this. Our IRQ handlers will crap |
| 162 | * themselves if they take an IRQ in 24bit mode! |
| 163 | */ |
| 164 | |
| 165 | static void mac_cache_card_flush(int writeback) |
| 166 | { |
| 167 | unsigned long flags; |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | local_irq_save(flags); |
| 170 | via_flush_cache(); |
| 171 | local_irq_restore(flags); |
| 172 | } |
| 173 | |
| 174 | void __init config_mac(void) |
| 175 | { |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 176 | if (!MACH_IS_MAC) |
Frans Pop | b9b0d8b | 2010-02-06 18:47:11 +0100 | [diff] [blame] | 177 | printk(KERN_ERR "ERROR: no Mac, but config_mac() called!!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 179 | mach_sched_init = mac_sched_init; |
| 180 | mach_init_IRQ = mac_init_IRQ; |
| 181 | mach_get_model = mac_get_model; |
Stephen Warren | c8d5ba1 | 2012-11-08 11:34:55 -0700 | [diff] [blame] | 182 | arch_gettimeoffset = mac_gettimeoffset; |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 183 | mach_hwclk = mac_hwclk; |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 184 | mach_set_clock_mmss = mac_set_clock_mmss; |
| 185 | mach_reset = mac_reset; |
| 186 | mach_halt = mac_poweroff; |
| 187 | mach_power_off = mac_poweroff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | mach_max_dma_address = 0xffffffff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | #if defined(CONFIG_INPUT_M68K_BEEP) || defined(CONFIG_INPUT_M68K_BEEP_MODULE) |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 190 | mach_beep = mac_mksound; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
Finn Thain | 93edd02 | 2011-10-24 01:11:12 +1100 | [diff] [blame] | 193 | #ifdef CONFIG_EARLY_PRINTK |
| 194 | register_console(&mac_early_cons); |
| 195 | #endif |
| 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | /* |
| 198 | * Determine hardware present |
| 199 | */ |
| 200 | |
| 201 | mac_identify(); |
| 202 | mac_report_hardware(); |
| 203 | |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 204 | /* |
| 205 | * AFAIK only the IIci takes a cache card. The IIfx has onboard |
| 206 | * cache ... someone needs to figure out how to tell if it's on or |
| 207 | * not. |
| 208 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
| 210 | if (macintosh_config->ident == MAC_MODEL_IICI |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 211 | || macintosh_config->ident == MAC_MODEL_IIFX) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | mach_l2_flush = mac_cache_card_flush; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | |
| 216 | /* |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 217 | * Macintosh Table: hardcoded model configuration data. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | * |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 219 | * Much of this was defined by Alan, based on who knows what docs. |
| 220 | * I've added a lot more, and some of that was pure guesswork based |
| 221 | * on hardware pages present on the Mac web site. Possibly wildly |
| 222 | * inaccurate, so look here if a new Mac model won't run. Example: if |
| 223 | * a Mac crashes immediately after the VIA1 registers have been dumped |
| 224 | * to the screen, it probably died attempting to read DirB on a RBV. |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 225 | * Meaning it should have MAC_VIA_IICI here :-) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | */ |
| 227 | |
| 228 | struct mac_model *macintosh_config; |
| 229 | EXPORT_SYMBOL(macintosh_config); |
| 230 | |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 231 | static struct mac_model mac_data_table[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | /* |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 233 | * We'll pretend to be a Macintosh II, that's pretty safe. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | */ |
| 235 | |
| 236 | { |
| 237 | .ident = MAC_MODEL_II, |
| 238 | .name = "Unknown", |
| 239 | .adb_type = MAC_ADB_II, |
| 240 | .via_type = MAC_VIA_II, |
| 241 | .scsi_type = MAC_SCSI_OLD, |
| 242 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 243 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 244 | .floppy_type = MAC_FLOPPY_IWM, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | }, |
| 246 | |
| 247 | /* |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 248 | * Original Mac II hardware |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | */ |
| 250 | |
| 251 | { |
| 252 | .ident = MAC_MODEL_II, |
| 253 | .name = "II", |
| 254 | .adb_type = MAC_ADB_II, |
| 255 | .via_type = MAC_VIA_II, |
| 256 | .scsi_type = MAC_SCSI_OLD, |
| 257 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 258 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 259 | .floppy_type = MAC_FLOPPY_IWM, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | }, { |
| 261 | .ident = MAC_MODEL_IIX, |
| 262 | .name = "IIx", |
| 263 | .adb_type = MAC_ADB_II, |
| 264 | .via_type = MAC_VIA_II, |
| 265 | .scsi_type = MAC_SCSI_OLD, |
| 266 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 267 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 268 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | }, { |
| 270 | .ident = MAC_MODEL_IICX, |
| 271 | .name = "IIcx", |
| 272 | .adb_type = MAC_ADB_II, |
| 273 | .via_type = MAC_VIA_II, |
| 274 | .scsi_type = MAC_SCSI_OLD, |
| 275 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 276 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 277 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | }, { |
| 279 | .ident = MAC_MODEL_SE30, |
| 280 | .name = "SE/30", |
| 281 | .adb_type = MAC_ADB_II, |
| 282 | .via_type = MAC_VIA_II, |
| 283 | .scsi_type = MAC_SCSI_OLD, |
| 284 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 285 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 286 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | }, |
| 288 | |
| 289 | /* |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 290 | * Weirdified Mac II hardware - all subtly different. Gee thanks |
| 291 | * Apple. All these boxes seem to have VIA2 in a different place to |
| 292 | * the Mac II (+1A000 rather than +4000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | * CSA: see http://developer.apple.com/technotes/hw/hw_09.html |
| 294 | */ |
| 295 | |
| 296 | { |
| 297 | .ident = MAC_MODEL_IICI, |
| 298 | .name = "IIci", |
| 299 | .adb_type = MAC_ADB_II, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 300 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | .scsi_type = MAC_SCSI_OLD, |
| 302 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 303 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 304 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | }, { |
| 306 | .ident = MAC_MODEL_IIFX, |
| 307 | .name = "IIfx", |
| 308 | .adb_type = MAC_ADB_IOP, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 309 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | .scsi_type = MAC_SCSI_OLD, |
| 311 | .scc_type = MAC_SCC_IOP, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 312 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 313 | .floppy_type = MAC_FLOPPY_SWIM_IOP, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | }, { |
| 315 | .ident = MAC_MODEL_IISI, |
| 316 | .name = "IIsi", |
| 317 | .adb_type = MAC_ADB_IISI, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 318 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | .scsi_type = MAC_SCSI_OLD, |
| 320 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 321 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 322 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | }, { |
| 324 | .ident = MAC_MODEL_IIVI, |
| 325 | .name = "IIvi", |
| 326 | .adb_type = MAC_ADB_IISI, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 327 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | .scsi_type = MAC_SCSI_OLD, |
| 329 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 330 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 331 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | }, { |
| 333 | .ident = MAC_MODEL_IIVX, |
| 334 | .name = "IIvx", |
| 335 | .adb_type = MAC_ADB_IISI, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 336 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | .scsi_type = MAC_SCSI_OLD, |
| 338 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 339 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 340 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | }, |
| 342 | |
| 343 | /* |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 344 | * Classic models (guessing: similar to SE/30? Nope, similar to LC...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | */ |
| 346 | |
| 347 | { |
| 348 | .ident = MAC_MODEL_CLII, |
| 349 | .name = "Classic II", |
| 350 | .adb_type = MAC_ADB_IISI, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 351 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | .scsi_type = MAC_SCSI_OLD, |
| 353 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 354 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 355 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | }, { |
| 357 | .ident = MAC_MODEL_CCL, |
| 358 | .name = "Color Classic", |
| 359 | .adb_type = MAC_ADB_CUDA, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 360 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | .scsi_type = MAC_SCSI_OLD, |
| 362 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 363 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 364 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Finn Thain | 1b46010 | 2010-05-29 03:27:18 +1000 | [diff] [blame] | 365 | }, { |
| 366 | .ident = MAC_MODEL_CCLII, |
| 367 | .name = "Color Classic II", |
| 368 | .adb_type = MAC_ADB_CUDA, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 369 | .via_type = MAC_VIA_IICI, |
Finn Thain | 1b46010 | 2010-05-29 03:27:18 +1000 | [diff] [blame] | 370 | .scsi_type = MAC_SCSI_OLD, |
| 371 | .scc_type = MAC_SCC_II, |
| 372 | .nubus_type = MAC_NUBUS, |
| 373 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 374 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
| 376 | /* |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 377 | * Some Mac LC machines. Basically the same as the IIci, ADB like IIsi |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | */ |
| 379 | |
| 380 | { |
| 381 | .ident = MAC_MODEL_LC, |
| 382 | .name = "LC", |
| 383 | .adb_type = MAC_ADB_IISI, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 384 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | .scsi_type = MAC_SCSI_OLD, |
| 386 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 387 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 388 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | }, { |
| 390 | .ident = MAC_MODEL_LCII, |
| 391 | .name = "LC II", |
| 392 | .adb_type = MAC_ADB_IISI, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 393 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | .scsi_type = MAC_SCSI_OLD, |
| 395 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 396 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 397 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | }, { |
| 399 | .ident = MAC_MODEL_LCIII, |
| 400 | .name = "LC III", |
| 401 | .adb_type = MAC_ADB_IISI, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 402 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | .scsi_type = MAC_SCSI_OLD, |
| 404 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 405 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 406 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | }, |
| 408 | |
| 409 | /* |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 410 | * Quadra. Video is at 0xF9000000, via is like a MacII. We label it |
| 411 | * differently as some of the stuff connected to VIA2 seems different. |
| 412 | * Better SCSI chip and onboard ethernet using a NatSemi SONIC except |
| 413 | * the 660AV and 840AV which use an AMD 79C940 (MACE). |
| 414 | * The 700, 900 and 950 have some I/O chips in the wrong place to |
| 415 | * confuse us. The 840AV has a SCSI location of its own (same as |
| 416 | * the 660AV). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | */ |
| 418 | |
| 419 | { |
| 420 | .ident = MAC_MODEL_Q605, |
| 421 | .name = "Quadra 605", |
| 422 | .adb_type = MAC_ADB_CUDA, |
| 423 | .via_type = MAC_VIA_QUADRA, |
| 424 | .scsi_type = MAC_SCSI_QUADRA, |
| 425 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 426 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 427 | .floppy_type = MAC_FLOPPY_SWIM_ADDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | }, { |
| 429 | .ident = MAC_MODEL_Q605_ACC, |
| 430 | .name = "Quadra 605", |
| 431 | .adb_type = MAC_ADB_CUDA, |
| 432 | .via_type = MAC_VIA_QUADRA, |
| 433 | .scsi_type = MAC_SCSI_QUADRA, |
| 434 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 435 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 436 | .floppy_type = MAC_FLOPPY_SWIM_ADDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | }, { |
| 438 | .ident = MAC_MODEL_Q610, |
| 439 | .name = "Quadra 610", |
| 440 | .adb_type = MAC_ADB_II, |
| 441 | .via_type = MAC_VIA_QUADRA, |
| 442 | .scsi_type = MAC_SCSI_QUADRA, |
| 443 | .scc_type = MAC_SCC_QUADRA, |
| 444 | .ether_type = MAC_ETHER_SONIC, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 445 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 446 | .floppy_type = MAC_FLOPPY_SWIM_ADDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | }, { |
| 448 | .ident = MAC_MODEL_Q630, |
| 449 | .name = "Quadra 630", |
| 450 | .adb_type = MAC_ADB_CUDA, |
| 451 | .via_type = MAC_VIA_QUADRA, |
| 452 | .scsi_type = MAC_SCSI_QUADRA, |
| 453 | .ide_type = MAC_IDE_QUADRA, |
| 454 | .scc_type = MAC_SCC_QUADRA, |
| 455 | .ether_type = MAC_ETHER_SONIC, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 456 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 457 | .floppy_type = MAC_FLOPPY_SWIM_ADDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | }, { |
| 459 | .ident = MAC_MODEL_Q650, |
| 460 | .name = "Quadra 650", |
| 461 | .adb_type = MAC_ADB_II, |
| 462 | .via_type = MAC_VIA_QUADRA, |
| 463 | .scsi_type = MAC_SCSI_QUADRA, |
| 464 | .scc_type = MAC_SCC_QUADRA, |
| 465 | .ether_type = MAC_ETHER_SONIC, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 466 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 467 | .floppy_type = MAC_FLOPPY_SWIM_ADDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | }, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 469 | /* The Q700 does have a NS Sonic */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | { |
| 471 | .ident = MAC_MODEL_Q700, |
| 472 | .name = "Quadra 700", |
| 473 | .adb_type = MAC_ADB_II, |
| 474 | .via_type = MAC_VIA_QUADRA, |
| 475 | .scsi_type = MAC_SCSI_QUADRA2, |
| 476 | .scc_type = MAC_SCC_QUADRA, |
| 477 | .ether_type = MAC_ETHER_SONIC, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 478 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 479 | .floppy_type = MAC_FLOPPY_SWIM_ADDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | }, { |
| 481 | .ident = MAC_MODEL_Q800, |
| 482 | .name = "Quadra 800", |
| 483 | .adb_type = MAC_ADB_II, |
| 484 | .via_type = MAC_VIA_QUADRA, |
| 485 | .scsi_type = MAC_SCSI_QUADRA, |
| 486 | .scc_type = MAC_SCC_QUADRA, |
| 487 | .ether_type = MAC_ETHER_SONIC, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 488 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 489 | .floppy_type = MAC_FLOPPY_SWIM_ADDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | }, { |
| 491 | .ident = MAC_MODEL_Q840, |
| 492 | .name = "Quadra 840AV", |
| 493 | .adb_type = MAC_ADB_CUDA, |
| 494 | .via_type = MAC_VIA_QUADRA, |
| 495 | .scsi_type = MAC_SCSI_QUADRA3, |
| 496 | .scc_type = MAC_SCC_PSC, |
| 497 | .ether_type = MAC_ETHER_MACE, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 498 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 499 | .floppy_type = MAC_FLOPPY_AV, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | }, { |
| 501 | .ident = MAC_MODEL_Q900, |
| 502 | .name = "Quadra 900", |
| 503 | .adb_type = MAC_ADB_IOP, |
| 504 | .via_type = MAC_VIA_QUADRA, |
| 505 | .scsi_type = MAC_SCSI_QUADRA2, |
| 506 | .scc_type = MAC_SCC_IOP, |
| 507 | .ether_type = MAC_ETHER_SONIC, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 508 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 509 | .floppy_type = MAC_FLOPPY_SWIM_IOP, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | }, { |
| 511 | .ident = MAC_MODEL_Q950, |
| 512 | .name = "Quadra 950", |
| 513 | .adb_type = MAC_ADB_IOP, |
| 514 | .via_type = MAC_VIA_QUADRA, |
| 515 | .scsi_type = MAC_SCSI_QUADRA2, |
| 516 | .scc_type = MAC_SCC_IOP, |
| 517 | .ether_type = MAC_ETHER_SONIC, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 518 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 519 | .floppy_type = MAC_FLOPPY_SWIM_IOP, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | }, |
| 521 | |
| 522 | /* |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 523 | * Performa - more LC type machines |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | */ |
| 525 | |
| 526 | { |
| 527 | .ident = MAC_MODEL_P460, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 528 | .name = "Performa 460", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | .adb_type = MAC_ADB_IISI, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 530 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | .scsi_type = MAC_SCSI_OLD, |
| 532 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 533 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 534 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | }, { |
| 536 | .ident = MAC_MODEL_P475, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 537 | .name = "Performa 475", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | .adb_type = MAC_ADB_CUDA, |
| 539 | .via_type = MAC_VIA_QUADRA, |
| 540 | .scsi_type = MAC_SCSI_QUADRA, |
| 541 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 542 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 543 | .floppy_type = MAC_FLOPPY_SWIM_ADDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | }, { |
| 545 | .ident = MAC_MODEL_P475F, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 546 | .name = "Performa 475", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | .adb_type = MAC_ADB_CUDA, |
| 548 | .via_type = MAC_VIA_QUADRA, |
| 549 | .scsi_type = MAC_SCSI_QUADRA, |
| 550 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 551 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 552 | .floppy_type = MAC_FLOPPY_SWIM_ADDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | }, { |
| 554 | .ident = MAC_MODEL_P520, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 555 | .name = "Performa 520", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | .adb_type = MAC_ADB_CUDA, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 557 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | .scsi_type = MAC_SCSI_OLD, |
| 559 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 560 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 561 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | }, { |
| 563 | .ident = MAC_MODEL_P550, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 564 | .name = "Performa 550", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | .adb_type = MAC_ADB_CUDA, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 566 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | .scsi_type = MAC_SCSI_OLD, |
| 568 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 569 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 570 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | }, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 572 | /* These have the comm slot, and therefore possibly SONIC ethernet */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | { |
| 574 | .ident = MAC_MODEL_P575, |
| 575 | .name = "Performa 575", |
| 576 | .adb_type = MAC_ADB_CUDA, |
| 577 | .via_type = MAC_VIA_QUADRA, |
| 578 | .scsi_type = MAC_SCSI_QUADRA, |
| 579 | .scc_type = MAC_SCC_II, |
| 580 | .ether_type = MAC_ETHER_SONIC, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 581 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 582 | .floppy_type = MAC_FLOPPY_SWIM_ADDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | }, { |
| 584 | .ident = MAC_MODEL_P588, |
| 585 | .name = "Performa 588", |
| 586 | .adb_type = MAC_ADB_CUDA, |
| 587 | .via_type = MAC_VIA_QUADRA, |
| 588 | .scsi_type = MAC_SCSI_QUADRA, |
| 589 | .ide_type = MAC_IDE_QUADRA, |
| 590 | .scc_type = MAC_SCC_II, |
| 591 | .ether_type = MAC_ETHER_SONIC, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 592 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 593 | .floppy_type = MAC_FLOPPY_SWIM_ADDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | }, { |
| 595 | .ident = MAC_MODEL_TV, |
| 596 | .name = "TV", |
| 597 | .adb_type = MAC_ADB_CUDA, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 598 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | .scsi_type = MAC_SCSI_OLD, |
| 600 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 601 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 602 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | }, { |
| 604 | .ident = MAC_MODEL_P600, |
| 605 | .name = "Performa 600", |
| 606 | .adb_type = MAC_ADB_IISI, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 607 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | .scsi_type = MAC_SCSI_OLD, |
| 609 | .scc_type = MAC_SCC_II, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 610 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 611 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | }, |
| 613 | |
| 614 | /* |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 615 | * Centris - just guessing again; maybe like Quadra. |
| 616 | * The C610 may or may not have SONIC. We probe to make sure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | */ |
| 618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | { |
| 620 | .ident = MAC_MODEL_C610, |
| 621 | .name = "Centris 610", |
| 622 | .adb_type = MAC_ADB_II, |
| 623 | .via_type = MAC_VIA_QUADRA, |
| 624 | .scsi_type = MAC_SCSI_QUADRA, |
| 625 | .scc_type = MAC_SCC_QUADRA, |
| 626 | .ether_type = MAC_ETHER_SONIC, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 627 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 628 | .floppy_type = MAC_FLOPPY_SWIM_ADDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | }, { |
| 630 | .ident = MAC_MODEL_C650, |
| 631 | .name = "Centris 650", |
| 632 | .adb_type = MAC_ADB_II, |
| 633 | .via_type = MAC_VIA_QUADRA, |
| 634 | .scsi_type = MAC_SCSI_QUADRA, |
| 635 | .scc_type = MAC_SCC_QUADRA, |
| 636 | .ether_type = MAC_ETHER_SONIC, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 637 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 638 | .floppy_type = MAC_FLOPPY_SWIM_ADDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | }, { |
| 640 | .ident = MAC_MODEL_C660, |
| 641 | .name = "Centris 660AV", |
| 642 | .adb_type = MAC_ADB_CUDA, |
| 643 | .via_type = MAC_VIA_QUADRA, |
| 644 | .scsi_type = MAC_SCSI_QUADRA3, |
| 645 | .scc_type = MAC_SCC_PSC, |
| 646 | .ether_type = MAC_ETHER_MACE, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 647 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 648 | .floppy_type = MAC_FLOPPY_AV, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | }, |
| 650 | |
| 651 | /* |
| 652 | * The PowerBooks all the same "Combo" custom IC for SCSI and SCC |
| 653 | * and a PMU (in two variations?) for ADB. Most of them use the |
| 654 | * Quadra-style VIAs. A few models also have IDE from hell. |
| 655 | */ |
| 656 | |
| 657 | { |
| 658 | .ident = MAC_MODEL_PB140, |
| 659 | .name = "PowerBook 140", |
| 660 | .adb_type = MAC_ADB_PB1, |
| 661 | .via_type = MAC_VIA_QUADRA, |
| 662 | .scsi_type = MAC_SCSI_OLD, |
| 663 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 664 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 665 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | }, { |
| 667 | .ident = MAC_MODEL_PB145, |
| 668 | .name = "PowerBook 145", |
| 669 | .adb_type = MAC_ADB_PB1, |
| 670 | .via_type = MAC_VIA_QUADRA, |
| 671 | .scsi_type = MAC_SCSI_OLD, |
| 672 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 673 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 674 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | }, { |
| 676 | .ident = MAC_MODEL_PB150, |
| 677 | .name = "PowerBook 150", |
Finn Thain | 4107c45 | 2011-10-24 01:11:20 +1100 | [diff] [blame] | 678 | .adb_type = MAC_ADB_PB2, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 679 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | .scsi_type = MAC_SCSI_OLD, |
| 681 | .ide_type = MAC_IDE_PB, |
| 682 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 683 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 684 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | }, { |
| 686 | .ident = MAC_MODEL_PB160, |
| 687 | .name = "PowerBook 160", |
| 688 | .adb_type = MAC_ADB_PB1, |
| 689 | .via_type = MAC_VIA_QUADRA, |
| 690 | .scsi_type = MAC_SCSI_OLD, |
| 691 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 692 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 693 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | }, { |
| 695 | .ident = MAC_MODEL_PB165, |
| 696 | .name = "PowerBook 165", |
| 697 | .adb_type = MAC_ADB_PB1, |
| 698 | .via_type = MAC_VIA_QUADRA, |
| 699 | .scsi_type = MAC_SCSI_OLD, |
| 700 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 701 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 702 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | }, { |
| 704 | .ident = MAC_MODEL_PB165C, |
| 705 | .name = "PowerBook 165c", |
| 706 | .adb_type = MAC_ADB_PB1, |
| 707 | .via_type = MAC_VIA_QUADRA, |
| 708 | .scsi_type = MAC_SCSI_OLD, |
| 709 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 710 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 711 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | }, { |
| 713 | .ident = MAC_MODEL_PB170, |
| 714 | .name = "PowerBook 170", |
| 715 | .adb_type = MAC_ADB_PB1, |
| 716 | .via_type = MAC_VIA_QUADRA, |
| 717 | .scsi_type = MAC_SCSI_OLD, |
| 718 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 719 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 720 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | }, { |
| 722 | .ident = MAC_MODEL_PB180, |
| 723 | .name = "PowerBook 180", |
| 724 | .adb_type = MAC_ADB_PB1, |
| 725 | .via_type = MAC_VIA_QUADRA, |
| 726 | .scsi_type = MAC_SCSI_OLD, |
| 727 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 728 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 729 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | }, { |
| 731 | .ident = MAC_MODEL_PB180C, |
| 732 | .name = "PowerBook 180c", |
| 733 | .adb_type = MAC_ADB_PB1, |
| 734 | .via_type = MAC_VIA_QUADRA, |
| 735 | .scsi_type = MAC_SCSI_OLD, |
| 736 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 737 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 738 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | }, { |
| 740 | .ident = MAC_MODEL_PB190, |
| 741 | .name = "PowerBook 190", |
| 742 | .adb_type = MAC_ADB_PB2, |
| 743 | .via_type = MAC_VIA_QUADRA, |
| 744 | .scsi_type = MAC_SCSI_OLD, |
| 745 | .ide_type = MAC_IDE_BABOON, |
| 746 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 747 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 748 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | }, { |
| 750 | .ident = MAC_MODEL_PB520, |
| 751 | .name = "PowerBook 520", |
| 752 | .adb_type = MAC_ADB_PB2, |
| 753 | .via_type = MAC_VIA_QUADRA, |
| 754 | .scsi_type = MAC_SCSI_OLD, |
| 755 | .scc_type = MAC_SCC_QUADRA, |
| 756 | .ether_type = MAC_ETHER_SONIC, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 757 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 758 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | }, |
| 760 | |
| 761 | /* |
| 762 | * PowerBook Duos are pretty much like normal PowerBooks |
| 763 | * All of these probably have onboard SONIC in the Dock which |
| 764 | * means we'll have to probe for it eventually. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | */ |
| 766 | |
| 767 | { |
| 768 | .ident = MAC_MODEL_PB210, |
| 769 | .name = "PowerBook Duo 210", |
| 770 | .adb_type = MAC_ADB_PB2, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 771 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | .scsi_type = MAC_SCSI_OLD, |
| 773 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 774 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 775 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | }, { |
| 777 | .ident = MAC_MODEL_PB230, |
| 778 | .name = "PowerBook Duo 230", |
| 779 | .adb_type = MAC_ADB_PB2, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 780 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | .scsi_type = MAC_SCSI_OLD, |
| 782 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 783 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 784 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | }, { |
| 786 | .ident = MAC_MODEL_PB250, |
| 787 | .name = "PowerBook Duo 250", |
| 788 | .adb_type = MAC_ADB_PB2, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 789 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | .scsi_type = MAC_SCSI_OLD, |
| 791 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 792 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 793 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | }, { |
| 795 | .ident = MAC_MODEL_PB270C, |
| 796 | .name = "PowerBook Duo 270c", |
| 797 | .adb_type = MAC_ADB_PB2, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 798 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | .scsi_type = MAC_SCSI_OLD, |
| 800 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 801 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 802 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | }, { |
| 804 | .ident = MAC_MODEL_PB280, |
| 805 | .name = "PowerBook Duo 280", |
| 806 | .adb_type = MAC_ADB_PB2, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 807 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | .scsi_type = MAC_SCSI_OLD, |
| 809 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 810 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 811 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | }, { |
| 813 | .ident = MAC_MODEL_PB280C, |
| 814 | .name = "PowerBook Duo 280c", |
| 815 | .adb_type = MAC_ADB_PB2, |
Finn Thain | 608e287b0 | 2011-10-24 01:11:22 +1100 | [diff] [blame] | 816 | .via_type = MAC_VIA_IICI, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | .scsi_type = MAC_SCSI_OLD, |
| 818 | .scc_type = MAC_SCC_QUADRA, |
Laurent Vivier | 7ad93b4 | 2008-11-06 20:57:41 +0100 | [diff] [blame] | 819 | .nubus_type = MAC_NUBUS, |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 820 | .floppy_type = MAC_FLOPPY_SWIM_ADDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | }, |
| 822 | |
| 823 | /* |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 824 | * Other stuff? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | */ |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 826 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | { |
| 828 | .ident = -1 |
| 829 | } |
| 830 | }; |
| 831 | |
Finn Thain | 80614e5 | 2009-11-17 20:06:48 +1100 | [diff] [blame] | 832 | static struct resource scc_a_rsrcs[] = { |
| 833 | { .flags = IORESOURCE_MEM }, |
| 834 | { .flags = IORESOURCE_IRQ }, |
| 835 | }; |
| 836 | |
| 837 | static struct resource scc_b_rsrcs[] = { |
| 838 | { .flags = IORESOURCE_MEM }, |
| 839 | { .flags = IORESOURCE_IRQ }, |
| 840 | }; |
| 841 | |
| 842 | struct platform_device scc_a_pdev = { |
| 843 | .name = "scc", |
| 844 | .id = 0, |
| 845 | .num_resources = ARRAY_SIZE(scc_a_rsrcs), |
| 846 | .resource = scc_a_rsrcs, |
| 847 | }; |
| 848 | EXPORT_SYMBOL(scc_a_pdev); |
| 849 | |
| 850 | struct platform_device scc_b_pdev = { |
| 851 | .name = "scc", |
| 852 | .id = 1, |
| 853 | .num_resources = ARRAY_SIZE(scc_b_rsrcs), |
| 854 | .resource = scc_b_rsrcs, |
| 855 | }; |
| 856 | EXPORT_SYMBOL(scc_b_pdev); |
| 857 | |
Adrian Bunk | 8dfbdf4 | 2008-07-17 21:16:25 +0200 | [diff] [blame] | 858 | static void __init mac_identify(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | { |
| 860 | struct mac_model *m; |
| 861 | |
| 862 | /* Penguin data useful? */ |
| 863 | int model = mac_bi_data.id; |
| 864 | if (!model) { |
| 865 | /* no bootinfo model id -> NetBSD booter was used! */ |
| 866 | /* XXX FIXME: breaks for model > 31 */ |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 867 | model = (mac_bi_data.cpuid >> 2) & 63; |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 868 | printk(KERN_WARNING "No bootinfo model ID, using cpuid instead " |
| 869 | "(obsolete bootloader?)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | } |
| 871 | |
| 872 | macintosh_config = mac_data_table; |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 873 | for (m = macintosh_config; m->ident != -1; m++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | if (m->ident == model) { |
| 875 | macintosh_config = m; |
| 876 | break; |
| 877 | } |
| 878 | } |
| 879 | |
Finn Thain | 80614e5 | 2009-11-17 20:06:48 +1100 | [diff] [blame] | 880 | /* Set up serial port resources for the console initcall. */ |
| 881 | |
| 882 | scc_a_rsrcs[0].start = (resource_size_t) mac_bi_data.sccbase + 2; |
| 883 | scc_a_rsrcs[0].end = scc_a_rsrcs[0].start; |
| 884 | scc_b_rsrcs[0].start = (resource_size_t) mac_bi_data.sccbase; |
| 885 | scc_b_rsrcs[0].end = scc_b_rsrcs[0].start; |
| 886 | |
| 887 | switch (macintosh_config->scc_type) { |
| 888 | case MAC_SCC_PSC: |
| 889 | scc_a_rsrcs[1].start = scc_a_rsrcs[1].end = IRQ_MAC_SCC_A; |
| 890 | scc_b_rsrcs[1].start = scc_b_rsrcs[1].end = IRQ_MAC_SCC_B; |
| 891 | break; |
| 892 | default: |
Finn Thain | da3fb3c | 2011-10-24 01:11:18 +1100 | [diff] [blame] | 893 | /* On non-PSC machines, the serial ports share an IRQ. */ |
| 894 | if (macintosh_config->ident == MAC_MODEL_IIFX) { |
| 895 | scc_a_rsrcs[1].start = scc_a_rsrcs[1].end = IRQ_MAC_SCC; |
| 896 | scc_b_rsrcs[1].start = scc_b_rsrcs[1].end = IRQ_MAC_SCC; |
| 897 | } else { |
| 898 | scc_a_rsrcs[1].start = scc_a_rsrcs[1].end = IRQ_AUTO_4; |
| 899 | scc_b_rsrcs[1].start = scc_b_rsrcs[1].end = IRQ_AUTO_4; |
| 900 | } |
Finn Thain | 80614e5 | 2009-11-17 20:06:48 +1100 | [diff] [blame] | 901 | break; |
| 902 | } |
| 903 | |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 904 | /* |
| 905 | * We need to pre-init the IOPs, if any. Otherwise |
| 906 | * the serial console won't work if the user had |
| 907 | * the serial ports set to "Faster" mode in MacOS. |
| 908 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | iop_preinit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | |
Frans Pop | b9b0d8b | 2010-02-06 18:47:11 +0100 | [diff] [blame] | 911 | printk(KERN_INFO "Detected Macintosh model: %d\n", model); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | |
| 913 | /* |
| 914 | * Report booter data: |
| 915 | */ |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 916 | printk(KERN_DEBUG " Penguin bootinfo data:\n"); |
Finn Thain | 53aac0a | 2009-11-04 00:39:09 +1100 | [diff] [blame] | 917 | printk(KERN_DEBUG " Video: addr 0x%lx " |
| 918 | "row 0x%lx depth %lx dimensions %ld x %ld\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | mac_bi_data.videoaddr, mac_bi_data.videorow, |
| 920 | mac_bi_data.videodepth, mac_bi_data.dimensions & 0xFFFF, |
| 921 | mac_bi_data.dimensions >> 16); |
Frans Pop | b9b0d8b | 2010-02-06 18:47:11 +0100 | [diff] [blame] | 922 | printk(KERN_DEBUG " Videological 0x%lx phys. 0x%lx, SCC at 0x%lx\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | mac_bi_data.videological, mac_orig_videoaddr, |
| 924 | mac_bi_data.sccbase); |
Frans Pop | b9b0d8b | 2010-02-06 18:47:11 +0100 | [diff] [blame] | 925 | printk(KERN_DEBUG " Boottime: 0x%lx GMTBias: 0x%lx\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | mac_bi_data.boottime, mac_bi_data.gmtbias); |
Frans Pop | b9b0d8b | 2010-02-06 18:47:11 +0100 | [diff] [blame] | 927 | printk(KERN_DEBUG " Machine ID: %ld CPUid: 0x%lx memory size: 0x%lx\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | mac_bi_data.id, mac_bi_data.cpuid, mac_bi_data.memsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | iop_init(); |
| 931 | via_init(); |
| 932 | oss_init(); |
| 933 | psc_init(); |
| 934 | baboon_init(); |
Finn Thain | 18814ee | 2009-11-17 20:03:05 +1100 | [diff] [blame] | 935 | |
| 936 | #ifdef CONFIG_ADB_CUDA |
| 937 | find_via_cuda(); |
| 938 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | } |
| 940 | |
Adrian Bunk | 8dfbdf4 | 2008-07-17 21:16:25 +0200 | [diff] [blame] | 941 | static void __init mac_report_hardware(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | { |
| 943 | printk(KERN_INFO "Apple Macintosh %s\n", macintosh_config->name); |
| 944 | } |
| 945 | |
| 946 | static void mac_get_model(char *str) |
| 947 | { |
Roman Zippel | 6ff5801 | 2007-05-01 22:32:43 +0200 | [diff] [blame] | 948 | strcpy(str, "Macintosh "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | strcat(str, macintosh_config->name); |
| 950 | } |
Laurent Vivier | 8852ecd | 2008-11-15 16:10:10 +0100 | [diff] [blame] | 951 | |
Finn Thain | 2724daf | 2009-11-04 00:39:56 +1100 | [diff] [blame] | 952 | static struct resource swim_rsrc = { .flags = IORESOURCE_MEM }; |
Laurent Vivier | 8852ecd | 2008-11-15 16:10:10 +0100 | [diff] [blame] | 953 | |
Finn Thain | 2724daf | 2009-11-04 00:39:56 +1100 | [diff] [blame] | 954 | static struct platform_device swim_pdev = { |
Laurent Vivier | 8852ecd | 2008-11-15 16:10:10 +0100 | [diff] [blame] | 955 | .name = "swim", |
| 956 | .id = -1, |
Finn Thain | 2724daf | 2009-11-04 00:39:56 +1100 | [diff] [blame] | 957 | .num_resources = 1, |
| 958 | .resource = &swim_rsrc, |
Laurent Vivier | 8852ecd | 2008-11-15 16:10:10 +0100 | [diff] [blame] | 959 | }; |
| 960 | |
Finn Thain | cff75f1 | 2009-11-04 00:41:35 +1100 | [diff] [blame] | 961 | static struct platform_device esp_0_pdev = { |
| 962 | .name = "mac_esp", |
| 963 | .id = 0, |
| 964 | }; |
| 965 | |
| 966 | static struct platform_device esp_1_pdev = { |
| 967 | .name = "mac_esp", |
| 968 | .id = 1, |
| 969 | }; |
| 970 | |
Finn Thain | eeb9c18 | 2009-11-04 00:42:02 +1100 | [diff] [blame] | 971 | static struct platform_device sonic_pdev = { |
| 972 | .name = "macsonic", |
| 973 | .id = -1, |
| 974 | }; |
| 975 | |
| 976 | static struct platform_device mace_pdev = { |
| 977 | .name = "macmace", |
| 978 | .id = -1, |
| 979 | }; |
| 980 | |
Laurent Vivier | 8852ecd | 2008-11-15 16:10:10 +0100 | [diff] [blame] | 981 | int __init mac_platform_init(void) |
| 982 | { |
| 983 | u8 *swim_base; |
| 984 | |
Geert Uytterhoeven | 6cfeba5 | 2012-03-18 13:21:38 +0100 | [diff] [blame] | 985 | if (!MACH_IS_MAC) |
| 986 | return -ENODEV; |
| 987 | |
Finn Thain | 2724daf | 2009-11-04 00:39:56 +1100 | [diff] [blame] | 988 | /* |
Finn Thain | 80614e5 | 2009-11-17 20:06:48 +1100 | [diff] [blame] | 989 | * Serial devices |
| 990 | */ |
| 991 | |
| 992 | platform_device_register(&scc_a_pdev); |
| 993 | platform_device_register(&scc_b_pdev); |
| 994 | |
| 995 | /* |
Finn Thain | 2724daf | 2009-11-04 00:39:56 +1100 | [diff] [blame] | 996 | * Floppy device |
| 997 | */ |
| 998 | |
Laurent Vivier | 8852ecd | 2008-11-15 16:10:10 +0100 | [diff] [blame] | 999 | switch (macintosh_config->floppy_type) { |
| 1000 | case MAC_FLOPPY_SWIM_ADDR1: |
| 1001 | swim_base = (u8 *)(VIA1_BASE + 0x1E000); |
| 1002 | break; |
| 1003 | case MAC_FLOPPY_SWIM_ADDR2: |
| 1004 | swim_base = (u8 *)(VIA1_BASE + 0x16000); |
| 1005 | break; |
| 1006 | default: |
Finn Thain | 2724daf | 2009-11-04 00:39:56 +1100 | [diff] [blame] | 1007 | swim_base = NULL; |
| 1008 | break; |
Laurent Vivier | 8852ecd | 2008-11-15 16:10:10 +0100 | [diff] [blame] | 1009 | } |
| 1010 | |
Finn Thain | 2724daf | 2009-11-04 00:39:56 +1100 | [diff] [blame] | 1011 | if (swim_base) { |
| 1012 | swim_rsrc.start = (resource_size_t) swim_base, |
| 1013 | swim_rsrc.end = (resource_size_t) swim_base + 0x2000, |
| 1014 | platform_device_register(&swim_pdev); |
| 1015 | } |
Laurent Vivier | 8852ecd | 2008-11-15 16:10:10 +0100 | [diff] [blame] | 1016 | |
Finn Thain | cff75f1 | 2009-11-04 00:41:35 +1100 | [diff] [blame] | 1017 | /* |
| 1018 | * SCSI device(s) |
| 1019 | */ |
| 1020 | |
| 1021 | switch (macintosh_config->scsi_type) { |
| 1022 | case MAC_SCSI_QUADRA: |
| 1023 | case MAC_SCSI_QUADRA3: |
| 1024 | platform_device_register(&esp_0_pdev); |
| 1025 | break; |
| 1026 | case MAC_SCSI_QUADRA2: |
| 1027 | platform_device_register(&esp_0_pdev); |
| 1028 | if ((macintosh_config->ident == MAC_MODEL_Q900) || |
| 1029 | (macintosh_config->ident == MAC_MODEL_Q950)) |
| 1030 | platform_device_register(&esp_1_pdev); |
| 1031 | break; |
| 1032 | } |
| 1033 | |
Finn Thain | eeb9c18 | 2009-11-04 00:42:02 +1100 | [diff] [blame] | 1034 | /* |
| 1035 | * Ethernet device |
| 1036 | */ |
| 1037 | |
| 1038 | switch (macintosh_config->ether_type) { |
| 1039 | case MAC_ETHER_SONIC: |
| 1040 | platform_device_register(&sonic_pdev); |
| 1041 | break; |
| 1042 | case MAC_ETHER_MACE: |
| 1043 | platform_device_register(&mace_pdev); |
| 1044 | break; |
| 1045 | } |
| 1046 | |
Finn Thain | 2724daf | 2009-11-04 00:39:56 +1100 | [diff] [blame] | 1047 | return 0; |
Laurent Vivier | 8852ecd | 2008-11-15 16:10:10 +0100 | [diff] [blame] | 1048 | } |
| 1049 | |
| 1050 | arch_initcall(mac_platform_init); |