]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/m68k/mac/via.c
m68k/mac: Disentangle VIA and OSS initialization
[mirror_ubuntu-jammy-kernel.git] / arch / m68k / mac / via.c
CommitLineData
1da177e4
LT
1/*
2 * 6522 Versatile Interface Adapter (VIA)
3 *
0c79cf6a 4 * There are two of these on the Mac II. Some IRQs are vectored
1da177e4
LT
5 * 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 *
67dfb153
FT
16 * 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 *
1da177e4
LT
20 * 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>
deea7775 30#include <linux/module.h>
ddc7fd25 31#include <linux/irq.h>
1da177e4 32
1da177e4
LT
33#include <asm/macintosh.h>
34#include <asm/macints.h>
1da177e4
LT
35#include <asm/mac_via.h>
36#include <asm/mac_psc.h>
c85627fb 37#include <asm/mac_oss.h>
1da177e4
LT
38
39volatile __u8 *via1, *via2;
deea7775
AB
40int rbv_present;
41int via_alt_mapping;
42EXPORT_SYMBOL(via_alt_mapping);
8dfbdf4a 43static __u8 rbv_clear;
1da177e4
LT
44
45/*
46 * Globals for accessing the VIA chip registers without having to
47 * check if we're hitting a real VIA or an RBV. Normally you could
48 * just hit the combined register (ie, vIER|rIER) but that seems to
49 * break on AV Macs...probably because they actually decode more than
50 * eight address bits. Why can't Apple engineers at least be
51 * _consistently_ lazy? - 1999-05-21 (jmt)
52 */
53
54static int gIER,gIFR,gBufA,gBufB;
55
56/*
57 * Timer defs.
58 */
59
60#define TICK_SIZE 10000
61#define MAC_CLOCK_TICK (783300/HZ) /* ticks per HZ */
62#define MAC_CLOCK_LOW (MAC_CLOCK_TICK&0xFF)
63#define MAC_CLOCK_HIGH (MAC_CLOCK_TICK>>8)
64
c4af5da7
FT
65
66/*
67 * On Macs with a genuine VIA chip there is no way to mask an individual slot
68 * interrupt. This limitation also seems to apply to VIA clone logic cores in
69 * Quadra-like ASICs. (RBV and OSS machines don't have this limitation.)
70 *
efbec135 71 * We used to fake it by configuring the relevant VIA pin as an output
c4af5da7
FT
72 * (to mask the interrupt) or input (to unmask). That scheme did not work on
73 * (at least) the Quadra 700. A NuBus card's /NMRQ signal is an open-collector
74 * circuit (see Designing Cards and Drivers for Macintosh II and Macintosh SE,
75 * p. 10-11 etc) but VIA outputs are not (see datasheet).
76 *
77 * Driving these outputs high must cause the VIA to source current and the
78 * card to sink current when it asserts /NMRQ. Current will flow but the pin
79 * voltage is uncertain and so the /NMRQ condition may still cause a transition
80 * at the VIA2 CA1 input (which explains the lost interrupts). A side effect
81 * is that a disabled slot IRQ can never be tested as pending or not.
82 *
83 * Driving these outputs low doesn't work either. All the slot /NMRQ lines are
84 * (active low) OR'd together to generate the CA1 (aka "SLOTS") interrupt (see
85 * The Guide To Macintosh Family Hardware, 2nd edition p. 167). If we drive a
86 * disabled /NMRQ line low, the falling edge immediately triggers a CA1
87 * interrupt and all slot interrupts after that will generate no transition
88 * and therefore no interrupt, even after being re-enabled.
89 *
90 * So we make the VIA port A I/O lines inputs and use nubus_disabled to keep
91 * track of their states. When any slot IRQ becomes disabled we mask the CA1
92 * umbrella interrupt. Only when all slot IRQs become enabled do we unmask
93 * the CA1 interrupt. It must remain enabled even when cards have no interrupt
94 * handler registered. Drivers must therefore disable a slot interrupt at the
95 * device before they call free_irq (like shared and autovector interrupts).
96 *
97 * There is also a related problem when MacOS is used to boot Linux. A network
98 * card brought up by a MacOS driver may raise an interrupt while Linux boots.
99 * This can be fatal since it can't be handled until the right driver loads
100 * (if such a driver exists at all). Apparently related to this hardware
101 * limitation, "Designing Cards and Drivers", p. 9-8, says that a slot
102 * interrupt with no driver would crash MacOS (the book was written before
103 * the appearance of Macs with RBV or OSS).
cd713ddc 104 */
c4af5da7 105
cd713ddc 106static u8 nubus_disabled;
1da177e4
LT
107
108void via_debug_dump(void);
1da177e4 109
1da177e4
LT
110/*
111 * Initialize the VIAs
112 *
113 * First we figure out where they actually _are_ as well as what type of
114 * VIA we have for VIA2 (it could be a real VIA or an RBV or even an OSS.)
115 * Then we pretty much clear them out and disable all IRQ sources.
1da177e4
LT
116 */
117
118void __init via_init(void)
119{
0e37a23e
FT
120 via1 = (void *)VIA1_BASE;
121 pr_debug("VIA1 detected at %p\n", via1);
122
7a0bb442
FT
123 if (oss_present) {
124 via2 = NULL;
125 rbv_present = 0;
126 } else {
127 switch (macintosh_config->via_type) {
1da177e4
LT
128
129 /* IIci, IIsi, IIvx, IIvi (P6xx), LC series */
130
608e287b 131 case MAC_VIA_IICI:
7a0bb442
FT
132 via2 = (void *)RBV_BASE;
133 pr_debug("VIA2 (RBV) detected at %p\n", via2);
134 rbv_present = 1;
1da177e4
LT
135 if (macintosh_config->ident == MAC_MODEL_LCIII) {
136 rbv_clear = 0x00;
137 } else {
138 /* on most RBVs (& unlike the VIAs), you */
139 /* need to set bit 7 when you write to IFR */
140 /* in order for your clear to occur. */
141 rbv_clear = 0x80;
142 }
143 gIER = rIER;
144 gIFR = rIFR;
145 gBufA = rSIFR;
146 gBufB = rBufB;
147 break;
148
149 /* Quadra and early MacIIs agree on the VIA locations */
150
151 case MAC_VIA_QUADRA:
152 case MAC_VIA_II:
1da177e4 153 via2 = (void *) VIA2_BASE;
0e37a23e 154 pr_debug("VIA2 detected at %p\n", via2);
1da177e4 155 rbv_present = 0;
1da177e4
LT
156 rbv_clear = 0x00;
157 gIER = vIER;
158 gIFR = vIFR;
159 gBufA = vBufA;
160 gBufB = vBufB;
161 break;
7a0bb442 162
1da177e4
LT
163 default:
164 panic("UNKNOWN VIA TYPE");
7a0bb442 165 }
1da177e4
LT
166 }
167
1da177e4
LT
168#ifdef DEBUG_VIA
169 via_debug_dump();
170#endif
171
172 /*
173 * Shut down all IRQ sources, reset the timers, and
174 * kill the timer latch on VIA1.
175 */
176
177 via1[vIER] = 0x7F;
178 via1[vIFR] = 0x7F;
179 via1[vT1LL] = 0;
180 via1[vT1LH] = 0;
181 via1[vT1CL] = 0;
182 via1[vT1CH] = 0;
183 via1[vT2CL] = 0;
184 via1[vT2CH] = 0;
4a973592 185 via1[vACR] &= ~0xC0; /* setup T1 timer with no PB7 output */
67dfb153 186 via1[vACR] &= ~0x03; /* disable port A & B latches */
1da177e4
LT
187
188 /*
189 * SE/30: disable video IRQ
190 * XXX: testing for SE/30 VBL
191 */
192
193 if (macintosh_config->ident == MAC_MODEL_SE30) {
194 via1[vDirB] |= 0x40;
195 via1[vBufB] |= 0x40;
196 }
197
198 /*
199 * Set the RTC bits to a known state: all lines to outputs and
200 * RTC disabled (yes that's 0 to enable and 1 to disable).
201 */
202
203 via1[vDirB] |= (VIA1B_vRTCEnb | VIA1B_vRTCClk | VIA1B_vRTCData);
204 via1[vBufB] |= (VIA1B_vRTCEnb | VIA1B_vRTCClk);
205
206 /* Everything below this point is VIA2/RBV only... */
207
4a973592
FT
208 if (oss_present)
209 return;
1da177e4 210
8d9f014a
FT
211 if ((macintosh_config->via_type == MAC_VIA_QUADRA) &&
212 (macintosh_config->adb_type != MAC_ADB_PB1) &&
213 (macintosh_config->adb_type != MAC_ADB_PB2) &&
214 (macintosh_config->ident != MAC_MODEL_C660) &&
215 (macintosh_config->ident != MAC_MODEL_Q840)) {
216 via_alt_mapping = 1;
217 via1[vDirB] |= 0x40;
218 via1[vBufB] &= ~0x40;
219 } else {
220 via_alt_mapping = 0;
221 }
1da177e4
LT
222
223 /*
224 * Now initialize VIA2. For RBV we just kill all interrupts;
225 * for a regular VIA we also reset the timers and stuff.
226 */
227
228 via2[gIER] = 0x7F;
229 via2[gIFR] = 0x7F | rbv_clear;
230 if (!rbv_present) {
231 via2[vT1LL] = 0;
232 via2[vT1LH] = 0;
233 via2[vT1CL] = 0;
234 via2[vT1CH] = 0;
235 via2[vT2CL] = 0;
236 via2[vT2CH] = 0;
4a973592 237 via2[vACR] &= ~0xC0; /* setup T1 timer with no PB7 output */
67dfb153
FT
238 via2[vACR] &= ~0x03; /* disable port A & B latches */
239 }
240
aa8a9fbe
FT
241 /* Everything below this point is VIA2 only... */
242
243 if (rbv_present)
244 return;
245
67dfb153 246 /*
aa8a9fbe
FT
247 * Set vPCR for control line interrupts.
248 *
249 * CA1 (SLOTS IRQ), CB1 (ASC IRQ): negative edge trigger.
250 *
251 * Macs with ESP SCSI have a negative edge triggered SCSI interrupt.
252 * Testing reveals that PowerBooks do too. However, the SE/30
253 * schematic diagram shows an active high NCR5380 IRQ line.
67dfb153 254 */
aa8a9fbe
FT
255
256 pr_debug("VIA2 vPCR is 0x%02X\n", via2[vPCR]);
257 if (macintosh_config->via_type == MAC_VIA_II) {
258 /* CA2 (SCSI DRQ), CB2 (SCSI IRQ): indep. input, pos. edge */
259 via2[vPCR] = 0x66;
260 } else {
261 /* CA2 (SCSI DRQ), CB2 (SCSI IRQ): indep. input, neg. edge */
262 via2[vPCR] = 0x22;
1da177e4
LT
263 }
264}
265
266/*
267 * Start the 100 Hz clock
268 */
269
40220c1a 270void __init via_init_clock(irq_handler_t func)
1da177e4
LT
271{
272 via1[vACR] |= 0x40;
273 via1[vT1LL] = MAC_CLOCK_LOW;
274 via1[vT1LH] = MAC_CLOCK_HIGH;
275 via1[vT1CL] = MAC_CLOCK_LOW;
276 via1[vT1CH] = MAC_CLOCK_HIGH;
277
5a239453 278 if (request_irq(IRQ_MAC_TIMER_1, func, 0, "timer", func))
92c3dd15 279 pr_err("Couldn't register %s interrupt\n", "timer");
1da177e4
LT
280}
281
1da177e4
LT
282/*
283 * Debugging dump, used in various places to see what's going on.
284 */
285
286void via_debug_dump(void)
287{
288 printk(KERN_DEBUG "VIA1: DDRA = 0x%02X DDRB = 0x%02X ACR = 0x%02X\n",
289 (uint) via1[vDirA], (uint) via1[vDirB], (uint) via1[vACR]);
290 printk(KERN_DEBUG " PCR = 0x%02X IFR = 0x%02X IER = 0x%02X\n",
291 (uint) via1[vPCR], (uint) via1[vIFR], (uint) via1[vIER]);
7a0bb442
FT
292 if (!via2)
293 return;
294 if (rbv_present) {
1da177e4
LT
295 printk(KERN_DEBUG "VIA2: IFR = 0x%02X IER = 0x%02X\n",
296 (uint) via2[rIFR], (uint) via2[rIER]);
297 printk(KERN_DEBUG " SIFR = 0x%02X SIER = 0x%02X\n",
298 (uint) via2[rSIFR], (uint) via2[rSIER]);
299 } else {
300 printk(KERN_DEBUG "VIA2: DDRA = 0x%02X DDRB = 0x%02X ACR = 0x%02X\n",
301 (uint) via2[vDirA], (uint) via2[vDirB],
302 (uint) via2[vACR]);
303 printk(KERN_DEBUG " PCR = 0x%02X IFR = 0x%02X IER = 0x%02X\n",
304 (uint) via2[vPCR],
305 (uint) via2[vIFR], (uint) via2[vIER]);
306 }
307}
308
309/*
310 * This is always executed with interrupts disabled.
311 *
312 * TBI: get time offset between scheduling timer ticks
313 */
314
c8d5ba18 315u32 mac_gettimeoffset(void)
1da177e4
LT
316{
317 unsigned long ticks, offset = 0;
318
319 /* read VIA1 timer 2 current value */
320 ticks = via1[vT1CL] | (via1[vT1CH] << 8);
321 /* The probability of underflow is less than 2% */
322 if (ticks > MAC_CLOCK_TICK - MAC_CLOCK_TICK / 50)
323 /* Check for pending timer interrupt in VIA1 IFR */
324 if (via1[vIFR] & 0x40) offset = TICK_SIZE;
325
326 ticks = MAC_CLOCK_TICK - ticks;
327 ticks = ticks * 10000L / MAC_CLOCK_TICK;
328
c8d5ba18 329 return (ticks + offset) * 1000;
1da177e4
LT
330}
331
332/*
333 * Flush the L2 cache on Macs that have it by flipping
334 * the system into 24-bit mode for an instant.
335 */
336
337void via_flush_cache(void)
338{
339 via2[gBufB] &= ~VIA2B_vMode32;
340 via2[gBufB] |= VIA2B_vMode32;
341}
342
343/*
344 * Return the status of the L2 cache on a IIci
345 */
346
347int via_get_cache_disable(void)
348{
349 /* Safeguard against being called accidentally */
350 if (!via2) {
351 printk(KERN_ERR "via_get_cache_disable called on a non-VIA machine!\n");
352 return 1;
353 }
354
355 return (int) via2[gBufB] & VIA2B_vCDis;
356}
357
358/*
359 * Initialize VIA2 for Nubus access
360 */
361
362void __init via_nubus_init(void)
363{
1da177e4
LT
364 /* unlock nubus transactions */
365
67dfb153
FT
366 if ((macintosh_config->adb_type != MAC_ADB_PB1) &&
367 (macintosh_config->adb_type != MAC_ADB_PB2)) {
1da177e4 368 /* set the line to be an output on non-RBV machines */
67dfb153 369 if (!rbv_present)
1da177e4 370 via2[vDirB] |= 0x02;
1da177e4 371
67dfb153
FT
372 /* this seems to be an ADB bit on PMU machines */
373 /* according to MkLinux. -- jmt */
1da177e4
LT
374 via2[gBufB] |= 0x02;
375 }
376
c4af5da7
FT
377 /*
378 * Disable the slot interrupts. On some hardware that's not possible.
379 * On some hardware it's unclear what all of these I/O lines do.
380 */
cd713ddc
FT
381
382 switch (macintosh_config->via_type) {
383 case MAC_VIA_II:
c4af5da7
FT
384 case MAC_VIA_QUADRA:
385 pr_debug("VIA2 vDirA is 0x%02X\n", via2[vDirA]);
cd713ddc 386 break;
608e287b 387 case MAC_VIA_IICI:
cd713ddc 388 /* RBV. Disable all the slot interrupts. SIER works like IER. */
1da177e4 389 via2[rSIER] = 0x7F;
cd713ddc 390 break;
c4af5da7
FT
391 }
392}
393
394void via_nubus_irq_startup(int irq)
395{
396 int irq_idx = IRQ_IDX(irq);
397
398 switch (macintosh_config->via_type) {
399 case MAC_VIA_II:
cd713ddc 400 case MAC_VIA_QUADRA:
c4af5da7
FT
401 /* Make the port A line an input. Probably redundant. */
402 if (macintosh_config->via_type == MAC_VIA_II) {
403 /* The top two bits are RAM size outputs. */
404 via2[vDirA] &= 0xC0 | ~(1 << irq_idx);
405 } else {
406 /* Allow NuBus slots 9 through F. */
407 via2[vDirA] &= 0x80 | ~(1 << irq_idx);
1da177e4 408 }
c4af5da7 409 /* fall through */
608e287b 410 case MAC_VIA_IICI:
c4af5da7
FT
411 via_irq_enable(irq);
412 break;
413 }
414}
415
416void via_nubus_irq_shutdown(int irq)
417{
418 switch (macintosh_config->via_type) {
419 case MAC_VIA_II:
420 case MAC_VIA_QUADRA:
421 /* Ensure that the umbrella CA1 interrupt remains enabled. */
422 via_irq_enable(irq);
423 break;
608e287b 424 case MAC_VIA_IICI:
c4af5da7 425 via_irq_disable(irq);
cd713ddc 426 break;
1da177e4
LT
427 }
428}
429
430/*
431 * The generic VIA interrupt routines (shamelessly stolen from Alan Cox's
432 * via6522.c :-), disable/pending masks added.
1da177e4
LT
433 */
434
bd0b9ac4 435void via1_irq(struct irq_desc *desc)
9145db56
GU
436{
437 int irq_num;
438 unsigned char irq_bit, events;
439
440 events = via1[vIFR] & via1[vIER] & 0x7F;
441 if (!events)
442 return;
443
444 irq_num = VIA1_SOURCE_BASE;
445 irq_bit = 1;
446 do {
447 if (events & irq_bit) {
448 via1[vIFR] = irq_bit;
449 generic_handle_irq(irq_num);
450 }
451 ++irq_num;
452 irq_bit <<= 1;
453 } while (events >= irq_bit);
454}
455
bd0b9ac4 456static void via2_irq(struct irq_desc *desc)
9145db56
GU
457{
458 int irq_num;
459 unsigned char irq_bit, events;
460
461 events = via2[gIFR] & via2[gIER] & 0x7F;
462 if (!events)
463 return;
464
465 irq_num = VIA2_SOURCE_BASE;
466 irq_bit = 1;
467 do {
468 if (events & irq_bit) {
469 via2[gIFR] = irq_bit | rbv_clear;
470 generic_handle_irq(irq_num);
471 }
472 ++irq_num;
473 irq_bit <<= 1;
474 } while (events >= irq_bit);
475}
1da177e4
LT
476
477/*
478 * Dispatch Nubus interrupts. We are called as a secondary dispatch by the
479 * VIA2 dispatcher as a fast interrupt handler.
480 */
481
bd0b9ac4 482static void via_nubus_irq(struct irq_desc *desc)
9145db56
GU
483{
484 int slot_irq;
485 unsigned char slot_bit, events;
486
487 events = ~via2[gBufA] & 0x7F;
488 if (rbv_present)
489 events &= via2[rSIER];
490 else
491 events &= ~via2[vDirA];
492 if (!events)
493 return;
494
495 do {
496 slot_irq = IRQ_NUBUS_F;
497 slot_bit = 0x40;
498 do {
499 if (events & slot_bit) {
500 events &= ~slot_bit;
501 generic_handle_irq(slot_irq);
502 }
503 --slot_irq;
504 slot_bit >>= 1;
505 } while (events);
506
507 /* clear the CA1 interrupt and make certain there's no more. */
508 via2[gIFR] = 0x02 | rbv_clear;
509 events = ~via2[gBufA] & 0x7F;
510 if (rbv_present)
511 events &= via2[rSIER];
512 else
513 events &= ~via2[vDirA];
514 } while (events);
515}
9145db56
GU
516
517/*
518 * Register the interrupt dispatchers for VIA or RBV machines only.
519 */
520
521void __init via_register_interrupts(void)
522{
9145db56
GU
523 if (via_alt_mapping) {
524 /* software interrupt */
525 irq_set_chained_handler(IRQ_AUTO_1, via1_irq);
526 /* via1 interrupt */
527 irq_set_chained_handler(IRQ_AUTO_6, via1_irq);
528 } else {
529 irq_set_chained_handler(IRQ_AUTO_1, via1_irq);
530 }
531 irq_set_chained_handler(IRQ_AUTO_2, via2_irq);
532 irq_set_chained_handler(IRQ_MAC_NUBUS, via_nubus_irq);
9145db56 533}
1da177e4
LT
534
535void via_irq_enable(int irq) {
536 int irq_src = IRQ_SRC(irq);
537 int irq_idx = IRQ_IDX(irq);
1da177e4 538
1da177e4 539 if (irq_src == 1) {
cd713ddc 540 via1[vIER] = IER_SET_BIT(irq_idx);
1da177e4 541 } else if (irq_src == 2) {
cd713ddc
FT
542 if (irq != IRQ_MAC_NUBUS || nubus_disabled == 0)
543 via2[gIER] = IER_SET_BIT(irq_idx);
1da177e4 544 } else if (irq_src == 7) {
cd713ddc
FT
545 switch (macintosh_config->via_type) {
546 case MAC_VIA_II:
c4af5da7 547 case MAC_VIA_QUADRA:
cd713ddc
FT
548 nubus_disabled &= ~(1 << irq_idx);
549 /* Enable the CA1 interrupt when no slot is disabled. */
550 if (!nubus_disabled)
551 via2[gIER] = IER_SET_BIT(1);
552 break;
608e287b 553 case MAC_VIA_IICI:
cd713ddc
FT
554 /* On RBV, enable the slot interrupt.
555 * SIER works like IER.
556 */
1da177e4 557 via2[rSIER] = IER_SET_BIT(irq_idx);
cd713ddc 558 break;
1da177e4 559 }
1da177e4
LT
560 }
561}
562
563void via_irq_disable(int irq) {
564 int irq_src = IRQ_SRC(irq);
565 int irq_idx = IRQ_IDX(irq);
1da177e4 566
1da177e4 567 if (irq_src == 1) {
cd713ddc 568 via1[vIER] = IER_CLR_BIT(irq_idx);
1da177e4 569 } else if (irq_src == 2) {
cd713ddc 570 via2[gIER] = IER_CLR_BIT(irq_idx);
1da177e4 571 } else if (irq_src == 7) {
cd713ddc
FT
572 switch (macintosh_config->via_type) {
573 case MAC_VIA_II:
c4af5da7 574 case MAC_VIA_QUADRA:
cd713ddc
FT
575 nubus_disabled |= 1 << irq_idx;
576 if (nubus_disabled)
577 via2[gIER] = IER_CLR_BIT(1);
578 break;
608e287b 579 case MAC_VIA_IICI:
1da177e4 580 via2[rSIER] = IER_CLR_BIT(irq_idx);
cd713ddc 581 break;
1da177e4 582 }
1da177e4
LT
583 }
584}
585
8852ecd9
LV
586void via1_set_head(int head)
587{
588 if (head == 0)
589 via1[vBufA] &= ~VIA1A_vHeadSel;
590 else
591 via1[vBufA] |= VIA1A_vHeadSel;
592}
593EXPORT_SYMBOL(via1_set_head);
30c0527d
FT
594
595int via2_scsi_drq_pending(void)
596{
597 return via2[gIFR] & (1 << IRQ_IDX(IRQ_MAC_SCSIDRQ));
598}
599EXPORT_SYMBOL(via2_scsi_drq_pending);