Merge branch 'stable/bug-fixes-rc2' of git://git.kernel.org/pub/scm/linux/kernel...
[pandora-kernel.git] / arch / sparc / kernel / sun4c_irq.c
1 /*
2  * sun4c irq support
3  *
4  *  djhr: Hacked out of irq.c into a CPU dependent version.
5  *
6  *  Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
7  *  Copyright (C) 1995 Miguel de Icaza (miguel@nuclecu.unam.mx)
8  *  Copyright (C) 1995 Pete A. Zaitcev (zaitcev@yahoo.com)
9  *  Copyright (C) 1996 Dave Redman (djhr@tadpole.co.uk)
10  */
11
12 #include <linux/init.h>
13
14 #include <asm/oplib.h>
15 #include <asm/timer.h>
16 #include <asm/irq.h>
17 #include <asm/io.h>
18
19 #include "irq.h"
20
21 /* Sun4c interrupts are typically laid out as follows:
22  *
23  *  1 - Software interrupt, SBUS level 1
24  *  2 - SBUS level 2
25  *  3 - ESP SCSI, SBUS level 3
26  *  4 - Software interrupt
27  *  5 - Lance ethernet, SBUS level 4
28  *  6 - Software interrupt
29  *  7 - Graphics card, SBUS level 5
30  *  8 - SBUS level 6
31  *  9 - SBUS level 7
32  * 10 - Counter timer
33  * 11 - Floppy
34  * 12 - Zilog uart
35  * 13 - CS4231 audio
36  * 14 - Profiling timer
37  * 15 - NMI
38  *
39  * The interrupt enable bits in the interrupt mask register are
40  * really only used to enable/disable the timer interrupts, and
41  * for signalling software interrupts.  There is also a master
42  * interrupt enable bit in this register.
43  *
44  * Interrupts are enabled by setting the SUN4C_INT_* bits, they
45  * are disabled by clearing those bits.
46  */
47
48 /*
49  * Bit field defines for the interrupt registers on various
50  * Sparc machines.
51  */
52
53 /* The sun4c interrupt register. */
54 #define SUN4C_INT_ENABLE  0x01     /* Allow interrupts. */
55 #define SUN4C_INT_E14     0x80     /* Enable level 14 IRQ. */
56 #define SUN4C_INT_E10     0x20     /* Enable level 10 IRQ. */
57 #define SUN4C_INT_E8      0x10     /* Enable level 8 IRQ. */
58 #define SUN4C_INT_E6      0x08     /* Enable level 6 IRQ. */
59 #define SUN4C_INT_E4      0x04     /* Enable level 4 IRQ. */
60 #define SUN4C_INT_E1      0x02     /* Enable level 1 IRQ. */
61
62 /*
63  * Pointer to the interrupt enable byte
64  * Used by entry.S
65  */
66 unsigned char __iomem *interrupt_enable;
67
68 static void sun4c_disable_irq(unsigned int irq_nr)
69 {
70         unsigned long flags;
71         unsigned char current_mask, new_mask;
72
73         local_irq_save(flags);
74         irq_nr &= (NR_IRQS - 1);
75         current_mask = sbus_readb(interrupt_enable);
76         switch (irq_nr) {
77         case 1:
78                 new_mask = ((current_mask) & (~(SUN4C_INT_E1)));
79                 break;
80         case 8:
81                 new_mask = ((current_mask) & (~(SUN4C_INT_E8)));
82                 break;
83         case 10:
84                 new_mask = ((current_mask) & (~(SUN4C_INT_E10)));
85                 break;
86         case 14:
87                 new_mask = ((current_mask) & (~(SUN4C_INT_E14)));
88                 break;
89         default:
90                 local_irq_restore(flags);
91                 return;
92         }
93         sbus_writeb(new_mask, interrupt_enable);
94         local_irq_restore(flags);
95 }
96
97 static void sun4c_enable_irq(unsigned int irq_nr)
98 {
99         unsigned long flags;
100         unsigned char current_mask, new_mask;
101
102         local_irq_save(flags);
103         irq_nr &= (NR_IRQS - 1);
104         current_mask = sbus_readb(interrupt_enable);
105         switch (irq_nr) {
106         case 1:
107                 new_mask = ((current_mask) | SUN4C_INT_E1);
108                 break;
109         case 8:
110                 new_mask = ((current_mask) | SUN4C_INT_E8);
111                 break;
112         case 10:
113                 new_mask = ((current_mask) | SUN4C_INT_E10);
114                 break;
115         case 14:
116                 new_mask = ((current_mask) | SUN4C_INT_E14);
117                 break;
118         default:
119                 local_irq_restore(flags);
120                 return;
121         }
122         sbus_writeb(new_mask, interrupt_enable);
123         local_irq_restore(flags);
124 }
125
126 struct sun4c_timer_info {
127         u32             l10_count;
128         u32             l10_limit;
129         u32             l14_count;
130         u32             l14_limit;
131 };
132
133 static struct sun4c_timer_info __iomem *sun4c_timers;
134
135 static void sun4c_clear_clock_irq(void)
136 {
137         sbus_readl(&sun4c_timers->l10_limit);
138 }
139
140 static void sun4c_load_profile_irq(int cpu, unsigned int limit)
141 {
142         /* Errm.. not sure how to do this.. */
143 }
144
145 static void __init sun4c_init_timers(irq_handler_t counter_fn)
146 {
147         const struct linux_prom_irqs *irq;
148         struct device_node *dp;
149         const u32 *addr;
150         int err;
151
152         dp = of_find_node_by_name(NULL, "counter-timer");
153         if (!dp) {
154                 prom_printf("sun4c_init_timers: Unable to find counter-timer\n");
155                 prom_halt();
156         }
157
158         addr = of_get_property(dp, "address", NULL);
159         if (!addr) {
160                 prom_printf("sun4c_init_timers: No address property\n");
161                 prom_halt();
162         }
163
164         sun4c_timers = (void __iomem *) (unsigned long) addr[0];
165
166         irq = of_get_property(dp, "intr", NULL);
167         of_node_put(dp);
168         if (!irq) {
169                 prom_printf("sun4c_init_timers: No intr property\n");
170                 prom_halt();
171         }
172
173         /* Have the level 10 timer tick at 100HZ.  We don't touch the
174          * level 14 timer limit since we are letting the prom handle
175          * them until we have a real console driver so L1-A works.
176          */
177         sbus_writel((((1000000/HZ) + 1) << 10), &sun4c_timers->l10_limit);
178
179         master_l10_counter = &sun4c_timers->l10_count;
180
181         err = request_irq(irq[0].pri, counter_fn,
182                           (IRQF_DISABLED | SA_STATIC_ALLOC),
183                           "timer", NULL);
184         if (err) {
185                 prom_printf("sun4c_init_timers: request_irq() fails with %d\n", err);
186                 prom_halt();
187         }
188
189         sun4c_disable_irq(irq[1].pri);
190 }
191
192 #ifdef CONFIG_SMP
193 static void sun4c_nop(void)
194 {
195 }
196 #endif
197
198 void __init sun4c_init_IRQ(void)
199 {
200         struct device_node *dp;
201         const u32 *addr;
202
203         dp = of_find_node_by_name(NULL, "interrupt-enable");
204         if (!dp) {
205                 prom_printf("sun4c_init_IRQ: Unable to find interrupt-enable\n");
206                 prom_halt();
207         }
208
209         addr = of_get_property(dp, "address", NULL);
210         of_node_put(dp);
211         if (!addr) {
212                 prom_printf("sun4c_init_IRQ: No address property\n");
213                 prom_halt();
214         }
215
216         interrupt_enable = (void __iomem *) (unsigned long) addr[0];
217
218         BTFIXUPSET_CALL(enable_irq, sun4c_enable_irq, BTFIXUPCALL_NORM);
219         BTFIXUPSET_CALL(disable_irq, sun4c_disable_irq, BTFIXUPCALL_NORM);
220         BTFIXUPSET_CALL(enable_pil_irq, sun4c_enable_irq, BTFIXUPCALL_NORM);
221         BTFIXUPSET_CALL(disable_pil_irq, sun4c_disable_irq, BTFIXUPCALL_NORM);
222         BTFIXUPSET_CALL(clear_clock_irq, sun4c_clear_clock_irq, BTFIXUPCALL_NORM);
223         BTFIXUPSET_CALL(load_profile_irq, sun4c_load_profile_irq, BTFIXUPCALL_NOP);
224
225         sparc_irq_config.init_timers = sun4c_init_timers;
226
227 #ifdef CONFIG_SMP
228         BTFIXUPSET_CALL(set_cpu_int, sun4c_nop, BTFIXUPCALL_NOP);
229         BTFIXUPSET_CALL(clear_cpu_int, sun4c_nop, BTFIXUPCALL_NOP);
230         BTFIXUPSET_CALL(set_irq_udt, sun4c_nop, BTFIXUPCALL_NOP);
231 #endif
232         sbus_writeb(SUN4C_INT_ENABLE, interrupt_enable);
233         /* Cannot enable interrupts until OBP ticker is disabled. */
234 }