3 * Written by Joshua M. Thompson (funaho@jurai.org)
6 * This chip is used in the IIfx in place of VIA #2. It acts like a fancy
7 * VIA chip with prorammable interrupt levels.
9 * 990502 (jmt) - Major rewrite for new interrupt architecture as well as some
10 * recent insights into OSS operational details.
11 * 990610 (jmt) - Now taking full advantage of the OSS. Interrupts are mapped
12 * to mostly match the A/UX interrupt scheme supported on the
13 * VIA side. Also added support for enabling the ISM irq again
14 * since we now have a functional IOP manager.
17 #include <linux/types.h>
18 #include <linux/kernel.h>
20 #include <linux/delay.h>
21 #include <linux/init.h>
23 #include <asm/bootinfo.h>
24 #include <asm/macintosh.h>
25 #include <asm/macints.h>
26 #include <asm/mac_via.h>
27 #include <asm/mac_oss.h>
30 volatile struct mac_oss *oss;
32 static irqreturn_t oss_irq(int, void *);
33 static irqreturn_t oss_nubus_irq(int, void *);
35 extern irqreturn_t via1_irq(int, void *);
36 extern irqreturn_t mac_scc_dispatch(int, void *);
41 * The OSS "detection" code is actually in via_init() which is always called
42 * before us. Thus we can count on oss_present being valid on entry.
45 void __init oss_init(void)
49 if (!oss_present) return;
51 oss = (struct mac_oss *) OSS_BASE;
53 /* Disable all interrupts. Unlike a VIA it looks like we */
54 /* do this by setting the source's interrupt level to zero. */
56 for (i = 0; i <= OSS_NUM_SOURCES; i++) {
57 oss->irq_level[i] = OSS_IRQLEV_DISABLED;
59 /* If we disable VIA1 here, we never really handle it... */
60 oss->irq_level[OSS_VIA1] = OSS_IRQLEV_VIA1;
64 * Register the OSS and NuBus interrupt dispatchers.
67 void __init oss_register_interrupts(void)
69 request_irq(OSS_IRQLEV_SCSI, oss_irq, IRQ_FLG_LOCK,
70 "scsi", (void *) oss);
71 request_irq(OSS_IRQLEV_IOPSCC, mac_scc_dispatch, IRQ_FLG_LOCK,
72 "scc", mac_scc_dispatch);
73 request_irq(OSS_IRQLEV_NUBUS, oss_nubus_irq, IRQ_FLG_LOCK,
74 "nubus", (void *) oss);
75 request_irq(OSS_IRQLEV_SOUND, oss_irq, IRQ_FLG_LOCK,
76 "sound", (void *) oss);
77 request_irq(OSS_IRQLEV_VIA1, via1_irq, IRQ_FLG_LOCK,
78 "via1", (void *) via1);
82 * Initialize OSS for Nubus access
85 void __init oss_nubus_init(void)
90 * Handle miscellaneous OSS interrupts. Right now that's just sound
91 * and SCSI; everything else is routed to its own autovector IRQ.
94 static irqreturn_t oss_irq(int irq, void *dev_id)
98 events = oss->irq_pending & (OSS_IP_SOUND|OSS_IP_SCSI);
103 if ((console_loglevel == 10) && !(events & OSS_IP_SCSI)) {
104 printk("oss_irq: irq %d events = 0x%04X\n", irq,
105 (int) oss->irq_pending);
108 /* FIXME: how do you clear a pending IRQ? */
110 if (events & OSS_IP_SOUND) {
111 oss->irq_pending &= ~OSS_IP_SOUND;
112 /* FIXME: call sound handler */
113 } else if (events & OSS_IP_SCSI) {
114 oss->irq_pending &= ~OSS_IP_SCSI;
115 m68k_handle_int(IRQ_MAC_SCSI);
117 /* FIXME: error check here? */
123 * Nubus IRQ handler, OSS style
125 * Unlike the VIA/RBV this is on its own autovector interrupt level.
128 static irqreturn_t oss_nubus_irq(int irq, void *dev_id)
130 int events, irq_bit, i;
132 events = oss->irq_pending & OSS_IP_NUBUS;
136 #ifdef DEBUG_NUBUS_INT
137 if (console_loglevel > 7) {
138 printk("oss_nubus_irq: events = 0x%04X\n", events);
141 /* There are only six slots on the OSS, not seven */
148 if (events & irq_bit) {
149 oss->irq_pending &= ~irq_bit;
150 m68k_handle_int(NUBUS_SOURCE_BASE + i);
152 } while(events & (irq_bit - 1));
157 * Enable an OSS interrupt
159 * It looks messy but it's rather straightforward. The switch() statement
160 * just maps the machspec interrupt numbers to the right OSS interrupt
161 * source (if the OSS handles that interrupt) and then sets the interrupt
162 * level for that source to nonzero, thus enabling the interrupt.
165 void oss_irq_enable(int irq) {
167 printk("oss_irq_enable(%d)\n", irq);
173 oss->irq_level[OSS_IOPSCC] = OSS_IRQLEV_IOPSCC;
176 oss->irq_level[OSS_IOPISM] = OSS_IRQLEV_IOPISM;
179 oss->irq_level[OSS_SCSI] = OSS_IRQLEV_SCSI;
187 irq -= NUBUS_SOURCE_BASE;
188 oss->irq_level[irq] = OSS_IRQLEV_NUBUS;
192 printk("%s unknown irq %d\n", __func__, irq);
199 * Disable an OSS interrupt
201 * Same as above except we set the source's interrupt level to zero,
202 * to disable the interrupt.
205 void oss_irq_disable(int irq) {
207 printk("oss_irq_disable(%d)\n", irq);
213 oss->irq_level[OSS_IOPSCC] = OSS_IRQLEV_DISABLED;
216 oss->irq_level[OSS_IOPISM] = OSS_IRQLEV_DISABLED;
219 oss->irq_level[OSS_SCSI] = OSS_IRQLEV_DISABLED;
227 irq -= NUBUS_SOURCE_BASE;
228 oss->irq_level[irq] = OSS_IRQLEV_DISABLED;
232 printk("%s unknown irq %d\n", __func__, irq);
239 * Clear an OSS interrupt
241 * Not sure if this works or not but it's the only method I could
242 * think of based on the contents of the mac_oss structure.
245 void oss_irq_clear(int irq) {
246 /* FIXME: how to do this on OSS? */
251 oss->irq_pending &= ~OSS_IP_IOPSCC;
254 oss->irq_pending &= ~OSS_IP_IOPISM;
257 oss->irq_pending &= ~OSS_IP_SCSI;
265 irq -= NUBUS_SOURCE_BASE;
266 oss->irq_pending &= ~(1 << irq);
272 * Check to see if a specific OSS interrupt is pending
275 int oss_irq_pending(int irq)
281 return oss->irq_pending & OSS_IP_IOPSCC;
284 return oss->irq_pending & OSS_IP_IOPISM;
287 return oss->irq_pending & OSS_IP_SCSI;
295 irq -= NUBUS_SOURCE_BASE;
296 return oss->irq_pending & (1 << irq);