blob: 12ebe43b008b511839eb5825e08ee16d3fb7adaf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_MACINTOSH_H
2#define __ASM_MACINTOSH_H
3
4#include <linux/seq_file.h>
5#include <linux/interrupt.h>
6
7/*
8 * Apple Macintoshisms
9 */
10
11extern void mac_reset(void);
12extern void mac_poweroff(void);
13extern void mac_init_IRQ(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014extern int mac_irq_pending(unsigned int);
Finn Thain2690e212011-09-11 23:40:50 +100015extern void mac_irq_enable(struct irq_data *data);
16extern void mac_irq_disable(struct irq_data *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -030019 * Floppy driver magic hook - probably shouldn't be here
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
21
22extern void via1_set_head(int);
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024/*
25 * Macintosh Table
26 */
27
28struct mac_model
29{
30 short ident;
31 char *name;
32 char adb_type;
33 char via_type;
34 char scsi_type;
35 char ide_type;
36 char scc_type;
37 char ether_type;
38 char nubus_type;
Laurent Vivier7ad93b42008-11-06 20:57:41 +010039 char floppy_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
42#define MAC_ADB_NONE 0
43#define MAC_ADB_II 1
44#define MAC_ADB_IISI 2
45#define MAC_ADB_CUDA 3
46#define MAC_ADB_PB1 4
47#define MAC_ADB_PB2 5
48#define MAC_ADB_IOP 6
49
50#define MAC_VIA_II 1
51#define MAC_VIA_IIci 2
52#define MAC_VIA_QUADRA 3
53
54#define MAC_SCSI_NONE 0
55#define MAC_SCSI_OLD 1
56#define MAC_SCSI_QUADRA 2
57#define MAC_SCSI_QUADRA2 3
58#define MAC_SCSI_QUADRA3 4
59
60#define MAC_IDE_NONE 0
61#define MAC_IDE_QUADRA 1
62#define MAC_IDE_PB 2
63#define MAC_IDE_BABOON 3
64
65#define MAC_SCC_II 1
66#define MAC_SCC_IOP 2
67#define MAC_SCC_QUADRA 3
68#define MAC_SCC_PSC 4
69
70#define MAC_ETHER_NONE 0
71#define MAC_ETHER_SONIC 1
72#define MAC_ETHER_MACE 2
73
74#define MAC_NO_NUBUS 0
75#define MAC_NUBUS 1
76
Laurent Vivier7ad93b42008-11-06 20:57:41 +010077#define MAC_FLOPPY_IWM 0
78#define MAC_FLOPPY_SWIM_ADDR1 1
79#define MAC_FLOPPY_SWIM_ADDR2 2
80#define MAC_FLOPPY_SWIM_IOP 3
81#define MAC_FLOPPY_AV 4
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/*
84 * Gestalt numbers
85 */
86
87#define MAC_MODEL_II 6
88#define MAC_MODEL_IIX 7
89#define MAC_MODEL_IICX 8
90#define MAC_MODEL_SE30 9
91#define MAC_MODEL_IICI 11
92#define MAC_MODEL_IIFX 13 /* And well numbered it is too */
93#define MAC_MODEL_IISI 18
94#define MAC_MODEL_LC 19
95#define MAC_MODEL_Q900 20
96#define MAC_MODEL_PB170 21
97#define MAC_MODEL_Q700 22
98#define MAC_MODEL_CLII 23 /* aka: P200 */
99#define MAC_MODEL_PB140 25
100#define MAC_MODEL_Q950 26 /* aka: WGS95 */
101#define MAC_MODEL_LCIII 27 /* aka: P450 */
102#define MAC_MODEL_PB210 29
103#define MAC_MODEL_C650 30
104#define MAC_MODEL_PB230 32
105#define MAC_MODEL_PB180 33
106#define MAC_MODEL_PB160 34
107#define MAC_MODEL_Q800 35 /* aka: WGS80 */
108#define MAC_MODEL_Q650 36
109#define MAC_MODEL_LCII 37 /* aka: P400/405/410/430 */
110#define MAC_MODEL_PB250 38
111#define MAC_MODEL_IIVI 44
112#define MAC_MODEL_P600 45 /* aka: P600CD */
113#define MAC_MODEL_IIVX 48
114#define MAC_MODEL_CCL 49 /* aka: P250 */
115#define MAC_MODEL_PB165C 50
116#define MAC_MODEL_C610 52 /* aka: WGS60 */
117#define MAC_MODEL_Q610 53
118#define MAC_MODEL_PB145 54 /* aka: PB145B */
119#define MAC_MODEL_P520 56 /* aka: LC520 */
120#define MAC_MODEL_C660 60
121#define MAC_MODEL_P460 62 /* aka: LCIII+, P466/P467 */
122#define MAC_MODEL_PB180C 71
123#define MAC_MODEL_PB520 72 /* aka: PB520C, PB540, PB540C, PB550C */
124#define MAC_MODEL_PB270C 77
125#define MAC_MODEL_Q840 78
126#define MAC_MODEL_P550 80 /* aka: LC550, P560 */
127#define MAC_MODEL_CCLII 83 /* aka: P275 */
128#define MAC_MODEL_PB165 84
129#define MAC_MODEL_PB190 85 /* aka: PB190CS */
130#define MAC_MODEL_TV 88
131#define MAC_MODEL_P475 89 /* aka: LC475, P476 */
132#define MAC_MODEL_P475F 90 /* aka: P475 w/ FPU (no LC040) */
133#define MAC_MODEL_P575 92 /* aka: LC575, P577/P578 */
134#define MAC_MODEL_Q605 94
135#define MAC_MODEL_Q605_ACC 95 /* Q605 accelerated to 33 MHz */
136#define MAC_MODEL_Q630 98 /* aka: LC630, P630/631/635/636/637/638/640 */
137#define MAC_MODEL_P588 99 /* aka: LC580, P580 */
138#define MAC_MODEL_PB280 102
139#define MAC_MODEL_PB280C 103
140#define MAC_MODEL_PB150 115
141
142extern struct mac_model *macintosh_config;
143
144#endif