blob: 105707aa03a29678eeff6e33fc59d6458b125448 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * 6522 Versatile Interface Adapter (VIA)
3 *
Simon Arlott0c79cf62007-10-20 01:20:32 +02004 * There are two of these on the Mac II. Some IRQs are vectored
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * via them as are assorted bits and bobs - eg RTC, ADB.
6 *
7 * CSA: Motorola seems to have removed documentation on the 6522 from
8 * their web site; try
9 * http://nerini.drf.com/vectrex/other/text/chips/6522/
10 * http://www.zymurgy.net/classic/vic20/vicdet1.htm
11 * and
12 * http://193.23.168.87/mikro_laborversuche/via_iobaustein/via6522_1.html
13 * for info. A full-text web search on 6522 AND VIA will probably also
14 * net some usefulness. <cananian@alumni.princeton.edu> 20apr1999
15 *
Finn Thain67dfb152007-05-01 22:32:56 +020016 * Additional data is here (the SY6522 was used in the Mac II etc):
17 * http://www.6502.org/documents/datasheets/synertek/synertek_sy6522.pdf
18 * http://www.6502.org/documents/datasheets/synertek/synertek_sy6522_programming_reference.pdf
19 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * PRAM/RTC access algorithms are from the NetBSD RTC toolkit version 1.08b
21 * by Erik Vogan and adapted to Linux by Joshua M. Thompson (funaho@jurai.org)
22 *
23 */
24
25#include <linux/types.h>
26#include <linux/kernel.h>
27#include <linux/mm.h>
28#include <linux/delay.h>
29#include <linux/init.h>
Adrian Bunkdeea7772008-02-04 22:30:24 -080030#include <linux/module.h>
Geert Uytterhoevenddc7fd22011-07-13 21:48:30 +020031#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/bootinfo.h>
34#include <asm/macintosh.h>
35#include <asm/macints.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/mac_via.h>
37#include <asm/mac_psc.h>
Geert Uytterhoevenc85627f2008-12-21 12:03:37 +010038#include <asm/mac_oss.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40volatile __u8 *via1, *via2;
Adrian Bunkdeea7772008-02-04 22:30:24 -080041int rbv_present;
42int via_alt_mapping;
43EXPORT_SYMBOL(via_alt_mapping);
Adrian Bunk8dfbdf42008-07-17 21:16:25 +020044static __u8 rbv_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
47 * Globals for accessing the VIA chip registers without having to
48 * check if we're hitting a real VIA or an RBV. Normally you could
49 * just hit the combined register (ie, vIER|rIER) but that seems to
50 * break on AV Macs...probably because they actually decode more than
51 * eight address bits. Why can't Apple engineers at least be
52 * _consistently_ lazy? - 1999-05-21 (jmt)
53 */
54
55static int gIER,gIFR,gBufA,gBufB;
56
57/*
58 * Timer defs.
59 */
60
61#define TICK_SIZE 10000
62#define MAC_CLOCK_TICK (783300/HZ) /* ticks per HZ */
63#define MAC_CLOCK_LOW (MAC_CLOCK_TICK&0xFF)
64#define MAC_CLOCK_HIGH (MAC_CLOCK_TICK>>8)
65
Finn Thain4a973592008-11-18 20:45:20 +010066/* To disable a NuBus slot on Quadras we make that slot IRQ line an output set
Finn Thaincd713dd2007-05-01 22:32:57 +020067 * high. On RBV we just use the slot interrupt enable register. On Macs with
68 * genuine VIA chips we must use nubus_disabled to keep track of disabled slot
69 * interrupts. When any slot IRQ is disabled we mask the (edge triggered) CA1
70 * or "SLOTS" interrupt. When no slot is disabled, we unmask the CA1 interrupt.
71 * So, on genuine VIAs, having more than one NuBus IRQ can mean trouble,
72 * because closing one of those drivers can mask all of the NuBus interrupts.
73 * Also, since we can't mask the unregistered slot IRQs on genuine VIAs, it's
74 * possible to get interrupts from cards that MacOS or the ROM has configured
75 * but we have not. FWIW, "Designing Cards and Drivers for Macintosh II and
76 * Macintosh SE", page 9-8, says, a slot IRQ with no driver would crash MacOS.
77 */
78static u8 nubus_disabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80void via_debug_dump(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081void via_irq_enable(int irq);
82void via_irq_disable(int irq);
83void via_irq_clear(int irq);
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/*
86 * Initialize the VIAs
87 *
88 * First we figure out where they actually _are_ as well as what type of
89 * VIA we have for VIA2 (it could be a real VIA or an RBV or even an OSS.)
90 * Then we pretty much clear them out and disable all IRQ sources.
91 *
92 * Note: the OSS is actually "detected" here and not in oss_init(). It just
93 * seems more logical to do it here since via_init() needs to know
94 * these things anyways.
95 */
96
97void __init via_init(void)
98{
99 switch(macintosh_config->via_type) {
100
101 /* IIci, IIsi, IIvx, IIvi (P6xx), LC series */
102
103 case MAC_VIA_IIci:
104 via1 = (void *) VIA1_BASE;
105 if (macintosh_config->ident == MAC_MODEL_IIFX) {
106 via2 = NULL;
107 rbv_present = 0;
108 oss_present = 1;
109 } else {
110 via2 = (void *) RBV_BASE;
111 rbv_present = 1;
112 oss_present = 0;
113 }
114 if (macintosh_config->ident == MAC_MODEL_LCIII) {
115 rbv_clear = 0x00;
116 } else {
117 /* on most RBVs (& unlike the VIAs), you */
118 /* need to set bit 7 when you write to IFR */
119 /* in order for your clear to occur. */
120 rbv_clear = 0x80;
121 }
122 gIER = rIER;
123 gIFR = rIFR;
124 gBufA = rSIFR;
125 gBufB = rBufB;
126 break;
127
128 /* Quadra and early MacIIs agree on the VIA locations */
129
130 case MAC_VIA_QUADRA:
131 case MAC_VIA_II:
132 via1 = (void *) VIA1_BASE;
133 via2 = (void *) VIA2_BASE;
134 rbv_present = 0;
135 oss_present = 0;
136 rbv_clear = 0x00;
137 gIER = vIER;
138 gIFR = vIFR;
139 gBufA = vBufA;
140 gBufB = vBufB;
141 break;
142 default:
143 panic("UNKNOWN VIA TYPE");
144 }
145
146 printk(KERN_INFO "VIA1 at %p is a 6522 or clone\n", via1);
147
148 printk(KERN_INFO "VIA2 at %p is ", via2);
149 if (rbv_present) {
Finn Thain67dfb152007-05-01 22:32:56 +0200150 printk("an RBV\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 } else if (oss_present) {
Finn Thain67dfb152007-05-01 22:32:56 +0200152 printk("an OSS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 } else {
Finn Thain67dfb152007-05-01 22:32:56 +0200154 printk("a 6522 or clone\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
156
157#ifdef DEBUG_VIA
158 via_debug_dump();
159#endif
160
161 /*
162 * Shut down all IRQ sources, reset the timers, and
163 * kill the timer latch on VIA1.
164 */
165
166 via1[vIER] = 0x7F;
167 via1[vIFR] = 0x7F;
168 via1[vT1LL] = 0;
169 via1[vT1LH] = 0;
170 via1[vT1CL] = 0;
171 via1[vT1CH] = 0;
172 via1[vT2CL] = 0;
173 via1[vT2CH] = 0;
Finn Thain4a973592008-11-18 20:45:20 +0100174 via1[vACR] &= ~0xC0; /* setup T1 timer with no PB7 output */
Finn Thain67dfb152007-05-01 22:32:56 +0200175 via1[vACR] &= ~0x03; /* disable port A & B latches */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 /*
178 * SE/30: disable video IRQ
179 * XXX: testing for SE/30 VBL
180 */
181
182 if (macintosh_config->ident == MAC_MODEL_SE30) {
183 via1[vDirB] |= 0x40;
184 via1[vBufB] |= 0x40;
185 }
186
187 /*
188 * Set the RTC bits to a known state: all lines to outputs and
189 * RTC disabled (yes that's 0 to enable and 1 to disable).
190 */
191
192 via1[vDirB] |= (VIA1B_vRTCEnb | VIA1B_vRTCClk | VIA1B_vRTCData);
193 via1[vBufB] |= (VIA1B_vRTCEnb | VIA1B_vRTCClk);
194
195 /* Everything below this point is VIA2/RBV only... */
196
Finn Thain4a973592008-11-18 20:45:20 +0100197 if (oss_present)
198 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 /* Some machines support an alternate IRQ mapping that spreads */
201 /* Ethernet and Sound out to their own autolevel IRQs and moves */
202 /* VIA1 to level 6. A/UX uses this mapping and we do too. Note */
203 /* that the IIfx emulates this alternate mapping using the OSS. */
204
Finn Thain4a973592008-11-18 20:45:20 +0100205 via_alt_mapping = 0;
206 if (macintosh_config->via_type == MAC_VIA_QUADRA)
207 switch (macintosh_config->ident) {
208 case MAC_MODEL_C660:
209 case MAC_MODEL_Q840:
210 /* not applicable */
211 break;
212 case MAC_MODEL_P588:
213 case MAC_MODEL_TV:
214 case MAC_MODEL_PB140:
215 case MAC_MODEL_PB145:
216 case MAC_MODEL_PB160:
217 case MAC_MODEL_PB165:
218 case MAC_MODEL_PB165C:
219 case MAC_MODEL_PB170:
220 case MAC_MODEL_PB180:
221 case MAC_MODEL_PB180C:
222 case MAC_MODEL_PB190:
223 case MAC_MODEL_PB520:
224 /* not yet tested */
225 break;
226 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 via_alt_mapping = 1;
228 via1[vDirB] |= 0x40;
229 via1[vBufB] &= ~0x40;
230 break;
Finn Thain4a973592008-11-18 20:45:20 +0100231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 /*
234 * Now initialize VIA2. For RBV we just kill all interrupts;
235 * for a regular VIA we also reset the timers and stuff.
236 */
237
238 via2[gIER] = 0x7F;
239 via2[gIFR] = 0x7F | rbv_clear;
240 if (!rbv_present) {
241 via2[vT1LL] = 0;
242 via2[vT1LH] = 0;
243 via2[vT1CL] = 0;
244 via2[vT1CH] = 0;
245 via2[vT2CL] = 0;
246 via2[vT2CH] = 0;
Finn Thain4a973592008-11-18 20:45:20 +0100247 via2[vACR] &= ~0xC0; /* setup T1 timer with no PB7 output */
Finn Thain67dfb152007-05-01 22:32:56 +0200248 via2[vACR] &= ~0x03; /* disable port A & B latches */
249 }
250
251 /*
Finn Thain4a973592008-11-18 20:45:20 +0100252 * Set vPCR for control line interrupts (but not on RBV)
Finn Thain67dfb152007-05-01 22:32:56 +0200253 */
254 if (!rbv_present) {
Finn Thain4a973592008-11-18 20:45:20 +0100255 /* For all VIA types, CA1 (SLOTS IRQ) and CB1 (ASC IRQ)
256 * are made negative edge triggered here.
257 */
Finn Thain67dfb152007-05-01 22:32:56 +0200258 if (macintosh_config->scsi_type == MAC_SCSI_OLD) {
259 /* CB2 (IRQ) indep. input, positive edge */
260 /* CA2 (DRQ) indep. input, positive edge */
261 via2[vPCR] = 0x66;
262 } else {
263 /* CB2 (IRQ) indep. input, negative edge */
264 /* CA2 (DRQ) indep. input, negative edge */
265 via2[vPCR] = 0x22;
266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268}
269
270/*
271 * Start the 100 Hz clock
272 */
273
David Howells40220c12006-10-09 12:19:47 +0100274void __init via_init_clock(irq_handler_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 via1[vACR] |= 0x40;
277 via1[vT1LL] = MAC_CLOCK_LOW;
278 via1[vT1LH] = MAC_CLOCK_HIGH;
279 via1[vT1CL] = MAC_CLOCK_LOW;
280 via1[vT1CH] = MAC_CLOCK_HIGH;
281
Geert Uytterhoeven5a239452011-07-13 22:33:13 +0200282 if (request_irq(IRQ_MAC_TIMER_1, func, 0, "timer", func))
Geert Uytterhoeven92c3dd12008-12-30 14:02:27 +0100283 pr_err("Couldn't register %s interrupt\n", "timer");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 * Debugging dump, used in various places to see what's going on.
288 */
289
290void via_debug_dump(void)
291{
292 printk(KERN_DEBUG "VIA1: DDRA = 0x%02X DDRB = 0x%02X ACR = 0x%02X\n",
293 (uint) via1[vDirA], (uint) via1[vDirB], (uint) via1[vACR]);
294 printk(KERN_DEBUG " PCR = 0x%02X IFR = 0x%02X IER = 0x%02X\n",
295 (uint) via1[vPCR], (uint) via1[vIFR], (uint) via1[vIER]);
296 if (oss_present) {
297 printk(KERN_DEBUG "VIA2: <OSS>\n");
298 } else if (rbv_present) {
299 printk(KERN_DEBUG "VIA2: IFR = 0x%02X IER = 0x%02X\n",
300 (uint) via2[rIFR], (uint) via2[rIER]);
301 printk(KERN_DEBUG " SIFR = 0x%02X SIER = 0x%02X\n",
302 (uint) via2[rSIFR], (uint) via2[rSIER]);
303 } else {
304 printk(KERN_DEBUG "VIA2: DDRA = 0x%02X DDRB = 0x%02X ACR = 0x%02X\n",
305 (uint) via2[vDirA], (uint) via2[vDirB],
306 (uint) via2[vACR]);
307 printk(KERN_DEBUG " PCR = 0x%02X IFR = 0x%02X IER = 0x%02X\n",
308 (uint) via2[vPCR],
309 (uint) via2[vIFR], (uint) via2[vIER]);
310 }
311}
312
313/*
314 * This is always executed with interrupts disabled.
315 *
316 * TBI: get time offset between scheduling timer ticks
317 */
318
319unsigned long mac_gettimeoffset (void)
320{
321 unsigned long ticks, offset = 0;
322
323 /* read VIA1 timer 2 current value */
324 ticks = via1[vT1CL] | (via1[vT1CH] << 8);
325 /* The probability of underflow is less than 2% */
326 if (ticks > MAC_CLOCK_TICK - MAC_CLOCK_TICK / 50)
327 /* Check for pending timer interrupt in VIA1 IFR */
328 if (via1[vIFR] & 0x40) offset = TICK_SIZE;
329
330 ticks = MAC_CLOCK_TICK - ticks;
331 ticks = ticks * 10000L / MAC_CLOCK_TICK;
332
333 return ticks + offset;
334}
335
336/*
337 * Flush the L2 cache on Macs that have it by flipping
338 * the system into 24-bit mode for an instant.
339 */
340
341void via_flush_cache(void)
342{
343 via2[gBufB] &= ~VIA2B_vMode32;
344 via2[gBufB] |= VIA2B_vMode32;
345}
346
347/*
348 * Return the status of the L2 cache on a IIci
349 */
350
351int via_get_cache_disable(void)
352{
353 /* Safeguard against being called accidentally */
354 if (!via2) {
355 printk(KERN_ERR "via_get_cache_disable called on a non-VIA machine!\n");
356 return 1;
357 }
358
359 return (int) via2[gBufB] & VIA2B_vCDis;
360}
361
362/*
363 * Initialize VIA2 for Nubus access
364 */
365
366void __init via_nubus_init(void)
367{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 /* unlock nubus transactions */
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if ((macintosh_config->adb_type != MAC_ADB_PB1) &&
371 (macintosh_config->adb_type != MAC_ADB_PB2)) {
Finn Thain67dfb152007-05-01 22:32:56 +0200372 /* set the line to be an output on non-RBV machines */
373 if (!rbv_present)
374 via2[vDirB] |= 0x02;
375
376 /* this seems to be an ADB bit on PMU machines */
377 /* according to MkLinux. -- jmt */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 via2[gBufB] |= 0x02;
379 }
380
Finn Thaincd713dd2007-05-01 22:32:57 +0200381 /* Disable all the slot interrupts (where possible). */
382
383 switch (macintosh_config->via_type) {
384 case MAC_VIA_II:
385 /* Just make the port A lines inputs. */
386 switch(macintosh_config->ident) {
387 case MAC_MODEL_II:
388 case MAC_MODEL_IIX:
389 case MAC_MODEL_IICX:
390 case MAC_MODEL_SE30:
391 /* The top two bits are RAM size outputs. */
392 via2[vDirA] &= 0xC0;
393 break;
394 default:
395 via2[vDirA] &= 0x80;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
Finn Thaincd713dd2007-05-01 22:32:57 +0200397 break;
398 case MAC_VIA_IIci:
399 /* RBV. Disable all the slot interrupts. SIER works like IER. */
400 via2[rSIER] = 0x7F;
401 break;
402 case MAC_VIA_QUADRA:
403 /* Disable the inactive slot interrupts by making those lines outputs. */
404 if ((macintosh_config->adb_type != MAC_ADB_PB1) &&
405 (macintosh_config->adb_type != MAC_ADB_PB2)) {
406 via2[vBufA] |= 0x7F;
407 via2[vDirA] |= 0x7F;
408 }
409 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411}
412
413/*
414 * The generic VIA interrupt routines (shamelessly stolen from Alan Cox's
415 * via6522.c :-), disable/pending masks added.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 */
417
Geert Uytterhoeven9145db52011-08-10 12:48:29 +0200418void via1_irq(unsigned int irq, struct irq_desc *desc)
419{
420 int irq_num;
421 unsigned char irq_bit, events;
422
423 events = via1[vIFR] & via1[vIER] & 0x7F;
424 if (!events)
425 return;
426
427 irq_num = VIA1_SOURCE_BASE;
428 irq_bit = 1;
429 do {
430 if (events & irq_bit) {
431 via1[vIFR] = irq_bit;
432 generic_handle_irq(irq_num);
433 }
434 ++irq_num;
435 irq_bit <<= 1;
436 } while (events >= irq_bit);
437}
438
439static void via2_irq(unsigned int irq, struct irq_desc *desc)
440{
441 int irq_num;
442 unsigned char irq_bit, events;
443
444 events = via2[gIFR] & via2[gIER] & 0x7F;
445 if (!events)
446 return;
447
448 irq_num = VIA2_SOURCE_BASE;
449 irq_bit = 1;
450 do {
451 if (events & irq_bit) {
452 via2[gIFR] = irq_bit | rbv_clear;
453 generic_handle_irq(irq_num);
454 }
455 ++irq_num;
456 irq_bit <<= 1;
457 } while (events >= irq_bit);
458}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460/*
461 * Dispatch Nubus interrupts. We are called as a secondary dispatch by the
462 * VIA2 dispatcher as a fast interrupt handler.
463 */
464
Geert Uytterhoeven9145db52011-08-10 12:48:29 +0200465void via_nubus_irq(unsigned int irq, struct irq_desc *desc)
466{
467 int slot_irq;
468 unsigned char slot_bit, events;
469
470 events = ~via2[gBufA] & 0x7F;
471 if (rbv_present)
472 events &= via2[rSIER];
473 else
474 events &= ~via2[vDirA];
475 if (!events)
476 return;
477
478 do {
479 slot_irq = IRQ_NUBUS_F;
480 slot_bit = 0x40;
481 do {
482 if (events & slot_bit) {
483 events &= ~slot_bit;
484 generic_handle_irq(slot_irq);
485 }
486 --slot_irq;
487 slot_bit >>= 1;
488 } while (events);
489
490 /* clear the CA1 interrupt and make certain there's no more. */
491 via2[gIFR] = 0x02 | rbv_clear;
492 events = ~via2[gBufA] & 0x7F;
493 if (rbv_present)
494 events &= via2[rSIER];
495 else
496 events &= ~via2[vDirA];
497 } while (events);
498}
Geert Uytterhoeven9145db52011-08-10 12:48:29 +0200499
500/*
501 * Register the interrupt dispatchers for VIA or RBV machines only.
502 */
503
504void __init via_register_interrupts(void)
505{
Geert Uytterhoeven9145db52011-08-10 12:48:29 +0200506 if (via_alt_mapping) {
507 /* software interrupt */
508 irq_set_chained_handler(IRQ_AUTO_1, via1_irq);
509 /* via1 interrupt */
510 irq_set_chained_handler(IRQ_AUTO_6, via1_irq);
511 } else {
512 irq_set_chained_handler(IRQ_AUTO_1, via1_irq);
513 }
514 irq_set_chained_handler(IRQ_AUTO_2, via2_irq);
515 irq_set_chained_handler(IRQ_MAC_NUBUS, via_nubus_irq);
Geert Uytterhoeven9145db52011-08-10 12:48:29 +0200516}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518void via_irq_enable(int irq) {
519 int irq_src = IRQ_SRC(irq);
520 int irq_idx = IRQ_IDX(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522#ifdef DEBUG_IRQUSE
523 printk(KERN_DEBUG "via_irq_enable(%d)\n", irq);
524#endif
525
526 if (irq_src == 1) {
Finn Thaincd713dd2007-05-01 22:32:57 +0200527 via1[vIER] = IER_SET_BIT(irq_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 } else if (irq_src == 2) {
Finn Thaincd713dd2007-05-01 22:32:57 +0200529 if (irq != IRQ_MAC_NUBUS || nubus_disabled == 0)
530 via2[gIER] = IER_SET_BIT(irq_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 } else if (irq_src == 7) {
Finn Thaincd713dd2007-05-01 22:32:57 +0200532 switch (macintosh_config->via_type) {
533 case MAC_VIA_II:
534 nubus_disabled &= ~(1 << irq_idx);
535 /* Enable the CA1 interrupt when no slot is disabled. */
536 if (!nubus_disabled)
537 via2[gIER] = IER_SET_BIT(1);
538 break;
539 case MAC_VIA_IIci:
540 /* On RBV, enable the slot interrupt.
541 * SIER works like IER.
542 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 via2[rSIER] = IER_SET_BIT(irq_idx);
Finn Thaincd713dd2007-05-01 22:32:57 +0200544 break;
545 case MAC_VIA_QUADRA:
546 /* Make the port A line an input to enable the slot irq.
547 * But not on PowerBooks, that's ADB.
548 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if ((macintosh_config->adb_type != MAC_ADB_PB1) &&
Finn Thaincd713dd2007-05-01 22:32:57 +0200550 (macintosh_config->adb_type != MAC_ADB_PB2))
551 via2[vDirA] &= ~(1 << irq_idx);
552 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555}
556
557void via_irq_disable(int irq) {
558 int irq_src = IRQ_SRC(irq);
559 int irq_idx = IRQ_IDX(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561#ifdef DEBUG_IRQUSE
562 printk(KERN_DEBUG "via_irq_disable(%d)\n", irq);
563#endif
564
565 if (irq_src == 1) {
Finn Thaincd713dd2007-05-01 22:32:57 +0200566 via1[vIER] = IER_CLR_BIT(irq_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 } else if (irq_src == 2) {
Finn Thaincd713dd2007-05-01 22:32:57 +0200568 via2[gIER] = IER_CLR_BIT(irq_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 } else if (irq_src == 7) {
Finn Thaincd713dd2007-05-01 22:32:57 +0200570 switch (macintosh_config->via_type) {
571 case MAC_VIA_II:
572 nubus_disabled |= 1 << irq_idx;
573 if (nubus_disabled)
574 via2[gIER] = IER_CLR_BIT(1);
575 break;
576 case MAC_VIA_IIci:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 via2[rSIER] = IER_CLR_BIT(irq_idx);
Finn Thaincd713dd2007-05-01 22:32:57 +0200578 break;
579 case MAC_VIA_QUADRA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if ((macintosh_config->adb_type != MAC_ADB_PB1) &&
Finn Thaincd713dd2007-05-01 22:32:57 +0200581 (macintosh_config->adb_type != MAC_ADB_PB2))
582 via2[vDirA] |= 1 << irq_idx;
583 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586}
587
Laurent Vivier8852ecd2008-11-15 16:10:10 +0100588void via1_set_head(int head)
589{
590 if (head == 0)
591 via1[vBufA] &= ~VIA1A_vHeadSel;
592 else
593 via1[vBufA] |= VIA1A_vHeadSel;
594}
595EXPORT_SYMBOL(via1_set_head);
Finn Thain30c05272011-10-24 01:11:14 +1100596
597int via2_scsi_drq_pending(void)
598{
599 return via2[gIFR] & (1 << IRQ_IDX(IRQ_MAC_SCSIDRQ));
600}
601EXPORT_SYMBOL(via2_scsi_drq_pending);