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