blob: cb2b1a3a2b62d97fb12aa14993749cab1de85544 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Apple Peripheral System Controller (PSC)
3 *
4 * The PSC is used on the AV Macs to control IO functions not handled
5 * by the VIAs (Ethernet, DSP, SCC).
6 *
7 * TO DO:
8 *
9 * Try to figure out what's going on in pIFR5 and pIFR6. There seem to be
10 * persisant interrupt conditions in those registers and I have no idea what
11 * they are. Granted it doesn't affect since we're not enabling any interrupts
12 * on those levels at the moment, but it would be nice to know. I have a feeling
13 * they aren't actually interrupt lines but data lines (to the DSP?)
14 */
15
16#include <linux/types.h>
17#include <linux/kernel.h>
18#include <linux/mm.h>
19#include <linux/delay.h>
20#include <linux/init.h>
Geert Uytterhoevenddc7fd22011-07-13 21:48:30 +020021#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <asm/traps.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/macintosh.h>
25#include <asm/macints.h>
26#include <asm/mac_psc.h>
27
28#define DEBUG_PSC
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030volatile __u8 *psc;
Geert Uytterhoevena77cdaa2015-09-29 10:24:05 +020031EXPORT_SYMBOL_GPL(psc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/*
34 * Debugging dump, used in various places to see what's going on.
35 */
36
Adrian Bunk8dfbdf42008-07-17 21:16:25 +020037static void psc_debug_dump(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
39 int i;
40
Geert Uytterhoeven70bc53b2015-09-29 09:27:22 +020041 if (!psc)
42 return;
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 for (i = 0x30 ; i < 0x70 ; i += 0x10) {
45 printk("PSC #%d: IFR = 0x%02X IER = 0x%02X\n",
46 i >> 4,
47 (int) psc_read_byte(pIFRbase + i),
48 (int) psc_read_byte(pIERbase + i));
49 }
50}
51
52/*
53 * Try to kill all DMA channels on the PSC. Not sure how this his
54 * supposed to work; this is code lifted from macmace.c and then
55 * expanded to cover what I think are the other 7 channels.
56 */
57
Geert Uytterhoevena4df02a2013-06-25 21:15:24 +020058static __init void psc_dma_die_die_die(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 int i;
61
62 printk("Killing all PSC DMA channels...");
63 for (i = 0 ; i < 9 ; i++) {
64 psc_write_word(PSC_CTL_BASE + (i << 4), 0x8800);
65 psc_write_word(PSC_CTL_BASE + (i << 4), 0x1000);
66 psc_write_word(PSC_CMD_BASE + (i << 5), 0x1100);
67 psc_write_word(PSC_CMD_BASE + (i << 5) + 0x10, 0x1100);
68 }
69 printk("done!\n");
70}
71
72/*
73 * Initialize the PSC. For now this just involves shutting down all
74 * interrupt sources using the IERs.
75 */
76
77void __init psc_init(void)
78{
79 int i;
80
81 if (macintosh_config->ident != MAC_MODEL_C660
82 && macintosh_config->ident != MAC_MODEL_Q840)
83 {
84 psc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return;
86 }
87
88 /*
89 * The PSC is always at the same spot, but using psc
Uwe Kleine-Königa34f0b32010-12-10 14:55:42 +010090 * keeps things consistent with the psc_xxxx functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 */
92
93 psc = (void *) PSC_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 printk("PSC detected at %p\n", psc);
96
97 psc_dma_die_die_die();
98
99#ifdef DEBUG_PSC
100 psc_debug_dump();
101#endif
102 /*
103 * Mask and clear all possible interrupts
104 */
105
106 for (i = 0x30 ; i < 0x70 ; i += 0x10) {
107 psc_write_byte(pIERbase + i, 0x0F);
108 psc_write_byte(pIFRbase + i, 0x0F);
109 }
110}
111
112/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * PSC interrupt handler. It's a lot like the VIA interrupt handler.
114 */
115
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200116static void psc_irq(struct irq_desc *desc)
Geert Uytterhoeven9145db52011-08-10 12:48:29 +0200117{
118 unsigned int offset = (unsigned int)irq_desc_get_handler_data(desc);
Thomas Gleixner625b86a2015-07-31 21:56:10 +0200119 unsigned int irq = irq_desc_get_irq(desc);
Geert Uytterhoeven9145db52011-08-10 12:48:29 +0200120 int pIFR = pIFRbase + offset;
121 int pIER = pIERbase + offset;
122 int irq_num;
123 unsigned char irq_bit, events;
124
125#ifdef DEBUG_IRQS
126 printk("psc_irq: irq %u pIFR = 0x%02X pIER = 0x%02X\n",
127 irq, (int) psc_read_byte(pIFR), (int) psc_read_byte(pIER));
128#endif
129
130 events = psc_read_byte(pIFR) & psc_read_byte(pIER) & 0xF;
131 if (!events)
132 return;
133
134 irq_num = irq << 3;
135 irq_bit = 1;
136 do {
137 if (events & irq_bit) {
138 psc_write_byte(pIFR, irq_bit);
139 generic_handle_irq(irq_num);
140 }
141 irq_num++;
142 irq_bit <<= 1;
143 } while (events >= irq_bit);
144}
Geert Uytterhoeven9145db52011-08-10 12:48:29 +0200145
146/*
147 * Register the PSC interrupt dispatchers for autovector interrupts 3-6.
148 */
149
150void __init psc_register_interrupts(void)
151{
Thomas Gleixner09c5cb92015-06-21 21:00:30 +0200152 irq_set_chained_handler_and_data(IRQ_AUTO_3, psc_irq, (void *)0x30);
153 irq_set_chained_handler_and_data(IRQ_AUTO_4, psc_irq, (void *)0x40);
154 irq_set_chained_handler_and_data(IRQ_AUTO_5, psc_irq, (void *)0x50);
155 irq_set_chained_handler_and_data(IRQ_AUTO_6, psc_irq, (void *)0x60);
Geert Uytterhoeven9145db52011-08-10 12:48:29 +0200156}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158void psc_irq_enable(int irq) {
159 int irq_src = IRQ_SRC(irq);
160 int irq_idx = IRQ_IDX(irq);
161 int pIER = pIERbase + (irq_src << 4);
162
163#ifdef DEBUG_IRQUSE
164 printk("psc_irq_enable(%d)\n", irq);
165#endif
166 psc_write_byte(pIER, (1 << irq_idx) | 0x80);
167}
168
169void psc_irq_disable(int irq) {
170 int irq_src = IRQ_SRC(irq);
171 int irq_idx = IRQ_IDX(irq);
172 int pIER = pIERbase + (irq_src << 4);
173
174#ifdef DEBUG_IRQUSE
175 printk("psc_irq_disable(%d)\n", irq);
176#endif
177 psc_write_byte(pIER, 1 << irq_idx);
178}