staging/easycap: don't cast NULL pointer
[wandboard.git] / arch / sparc / kernel / leon_kernel.c
blobfdab7f854f80be72d57c80f8ad00056e75ad8d27
1 /*
2 * Copyright (C) 2009 Daniel Hellstrom (daniel@gaisler.com) Aeroflex Gaisler AB
3 * Copyright (C) 2009 Konrad Eisele (konrad@gaisler.com) Aeroflex Gaisler AB
4 */
6 #include <linux/kernel.h>
7 #include <linux/module.h>
8 #include <linux/errno.h>
9 #include <linux/mutex.h>
10 #include <linux/of.h>
11 #include <linux/of_platform.h>
12 #include <linux/interrupt.h>
13 #include <linux/of_device.h>
15 #include <asm/oplib.h>
16 #include <asm/timer.h>
17 #include <asm/prom.h>
18 #include <asm/leon.h>
19 #include <asm/leon_amba.h>
20 #include <asm/traps.h>
21 #include <asm/cacheflush.h>
23 #include "prom.h"
24 #include "irq.h"
26 struct leon3_irqctrl_regs_map *leon3_irqctrl_regs; /* interrupt controller base address */
27 struct leon3_gptimer_regs_map *leon3_gptimer_regs; /* timer controller base address */
28 struct amba_apb_device leon_percpu_timer_dev[16];
30 int leondebug_irq_disable;
31 int leon_debug_irqout;
32 static int dummy_master_l10_counter;
34 unsigned long leon3_gptimer_irq; /* interrupt controller irq number */
35 unsigned long leon3_gptimer_idx; /* Timer Index (0..6) within Timer Core */
36 unsigned int sparc_leon_eirq;
37 #define LEON_IMASK ((&leon3_irqctrl_regs->mask[0]))
39 /* Return the IRQ of the pending IRQ on the extended IRQ controller */
40 int sparc_leon_eirq_get(int eirq, int cpu)
42 return LEON3_BYPASS_LOAD_PA(&leon3_irqctrl_regs->intid[cpu]) & 0x1f;
45 irqreturn_t sparc_leon_eirq_isr(int dummy, void *dev_id)
47 printk(KERN_ERR "sparc_leon_eirq_isr: ERROR EXTENDED IRQ\n");
48 return IRQ_HANDLED;
51 /* The extended IRQ controller has been found, this function registers it */
52 void sparc_leon_eirq_register(int eirq)
54 int irq;
56 /* Register a "BAD" handler for this interrupt, it should never happen */
57 irq = request_irq(eirq, sparc_leon_eirq_isr,
58 (IRQF_DISABLED | SA_STATIC_ALLOC), "extirq", NULL);
60 if (irq) {
61 printk(KERN_ERR
62 "sparc_leon_eirq_register: unable to attach IRQ%d\n",
63 eirq);
64 } else {
65 sparc_leon_eirq = eirq;
70 static inline unsigned long get_irqmask(unsigned int irq)
72 unsigned long mask;
74 if (!irq || ((irq > 0xf) && !sparc_leon_eirq)
75 || ((irq > 0x1f) && sparc_leon_eirq)) {
76 printk(KERN_ERR
77 "leon_get_irqmask: false irq number: %d\n", irq);
78 mask = 0;
79 } else {
80 mask = LEON_HARD_INT(irq);
82 return mask;
85 static void leon_enable_irq(unsigned int irq_nr)
87 unsigned long mask, flags;
88 mask = get_irqmask(irq_nr);
89 local_irq_save(flags);
90 LEON3_BYPASS_STORE_PA(LEON_IMASK,
91 (LEON3_BYPASS_LOAD_PA(LEON_IMASK) | (mask)));
92 local_irq_restore(flags);
95 static void leon_disable_irq(unsigned int irq_nr)
97 unsigned long mask, flags;
98 mask = get_irqmask(irq_nr);
99 local_irq_save(flags);
100 LEON3_BYPASS_STORE_PA(LEON_IMASK,
101 (LEON3_BYPASS_LOAD_PA(LEON_IMASK) & ~(mask)));
102 local_irq_restore(flags);
106 void __init leon_init_timers(irq_handler_t counter_fn)
108 int irq;
109 struct device_node *rootnp, *np, *nnp;
110 struct property *pp;
111 int len;
112 int cpu, icsel;
113 int ampopts;
115 leondebug_irq_disable = 0;
116 leon_debug_irqout = 0;
117 master_l10_counter = (unsigned int *)&dummy_master_l10_counter;
118 dummy_master_l10_counter = 0;
120 /*Find IRQMP IRQ Controller Registers base address otherwise bail out.*/
121 rootnp = of_find_node_by_path("/ambapp0");
122 if (!rootnp)
123 goto bad;
124 np = of_find_node_by_name(rootnp, "GAISLER_IRQMP");
125 if (!np) {
126 np = of_find_node_by_name(rootnp, "01_00d");
127 if (!np)
128 goto bad;
130 pp = of_find_property(np, "reg", &len);
131 if (!pp)
132 goto bad;
133 leon3_irqctrl_regs = *(struct leon3_irqctrl_regs_map **)pp->value;
135 /* Find GPTIMER Timer Registers base address otherwise bail out. */
136 nnp = rootnp;
137 do {
138 np = of_find_node_by_name(nnp, "GAISLER_GPTIMER");
139 if (!np) {
140 np = of_find_node_by_name(nnp, "01_011");
141 if (!np)
142 goto bad;
145 ampopts = 0;
146 pp = of_find_property(np, "ampopts", &len);
147 if (pp) {
148 ampopts = *(int *)pp->value;
149 if (ampopts == 0) {
150 /* Skip this instance, resource already
151 * allocated by other OS */
152 nnp = np;
153 continue;
157 /* Select Timer-Instance on Timer Core. Default is zero */
158 leon3_gptimer_idx = ampopts & 0x7;
160 pp = of_find_property(np, "reg", &len);
161 if (pp)
162 leon3_gptimer_regs = *(struct leon3_gptimer_regs_map **)
163 pp->value;
164 pp = of_find_property(np, "interrupts", &len);
165 if (pp)
166 leon3_gptimer_irq = *(unsigned int *)pp->value;
167 } while (0);
169 if (leon3_gptimer_regs && leon3_irqctrl_regs && leon3_gptimer_irq) {
170 LEON3_BYPASS_STORE_PA(
171 &leon3_gptimer_regs->e[leon3_gptimer_idx].val, 0);
172 LEON3_BYPASS_STORE_PA(
173 &leon3_gptimer_regs->e[leon3_gptimer_idx].rld,
174 (((1000000 / HZ) - 1)));
175 LEON3_BYPASS_STORE_PA(
176 &leon3_gptimer_regs->e[leon3_gptimer_idx].ctrl, 0);
178 #ifdef CONFIG_SMP
179 leon_percpu_timer_dev[0].start = (int)leon3_gptimer_regs;
180 leon_percpu_timer_dev[0].irq = leon3_gptimer_irq + 1 +
181 leon3_gptimer_idx;
183 if (!(LEON3_BYPASS_LOAD_PA(&leon3_gptimer_regs->config) &
184 (1<<LEON3_GPTIMER_SEPIRQ))) {
185 prom_printf("irq timer not configured with separate irqs\n");
186 BUG();
189 LEON3_BYPASS_STORE_PA(
190 &leon3_gptimer_regs->e[leon3_gptimer_idx+1].val, 0);
191 LEON3_BYPASS_STORE_PA(
192 &leon3_gptimer_regs->e[leon3_gptimer_idx+1].rld,
193 (((1000000/HZ) - 1)));
194 LEON3_BYPASS_STORE_PA(
195 &leon3_gptimer_regs->e[leon3_gptimer_idx+1].ctrl, 0);
196 # endif
199 * The IRQ controller may (if implemented) consist of multiple
200 * IRQ controllers, each mapped on a 4Kb boundary.
201 * Each CPU may be routed to different IRQCTRLs, however
202 * we assume that all CPUs (in SMP system) is routed to the
203 * same IRQ Controller, and for non-SMP only one IRQCTRL is
204 * accessed anyway.
205 * In AMP systems, Linux must run on CPU0 for the time being.
207 cpu = sparc_leon3_cpuid();
208 icsel = LEON3_BYPASS_LOAD_PA(&leon3_irqctrl_regs->icsel[cpu/8]);
209 icsel = (icsel >> ((7 - (cpu&0x7)) * 4)) & 0xf;
210 leon3_irqctrl_regs += icsel;
211 } else {
212 goto bad;
215 irq = request_irq(leon3_gptimer_irq+leon3_gptimer_idx,
216 counter_fn,
217 (IRQF_DISABLED | SA_STATIC_ALLOC), "timer", NULL);
219 if (irq) {
220 printk(KERN_ERR "leon_time_init: unable to attach IRQ%d\n",
221 LEON_INTERRUPT_TIMER1);
222 prom_halt();
225 # ifdef CONFIG_SMP
227 unsigned long flags;
228 struct tt_entry *trap_table = &sparc_ttable[SP_TRAP_IRQ1 + (leon_percpu_timer_dev[0].irq - 1)];
230 /* For SMP we use the level 14 ticker, however the bootup code
231 * has copied the firmwares level 14 vector into boot cpu's
232 * trap table, we must fix this now or we get squashed.
234 local_irq_save(flags);
236 patchme_maybe_smp_msg[0] = 0x01000000; /* NOP out the branch */
238 /* Adjust so that we jump directly to smpleon_ticker */
239 trap_table->inst_three += smpleon_ticker - real_irq_entry;
241 local_flush_cache_all();
242 local_irq_restore(flags);
244 # endif
246 if (leon3_gptimer_regs) {
247 LEON3_BYPASS_STORE_PA(&leon3_gptimer_regs->e[leon3_gptimer_idx].ctrl,
248 LEON3_GPTIMER_EN |
249 LEON3_GPTIMER_RL |
250 LEON3_GPTIMER_LD | LEON3_GPTIMER_IRQEN);
252 #ifdef CONFIG_SMP
253 LEON3_BYPASS_STORE_PA(&leon3_gptimer_regs->e[leon3_gptimer_idx+1].ctrl,
254 LEON3_GPTIMER_EN |
255 LEON3_GPTIMER_RL |
256 LEON3_GPTIMER_LD |
257 LEON3_GPTIMER_IRQEN);
258 #endif
261 return;
262 bad:
263 printk(KERN_ERR "No Timer/irqctrl found\n");
264 BUG();
265 return;
268 void leon_clear_clock_irq(void)
272 void leon_load_profile_irq(int cpu, unsigned int limit)
274 BUG();
280 void __init leon_trans_init(struct device_node *dp)
282 if (strcmp(dp->type, "cpu") == 0 && strcmp(dp->name, "<NULL>") == 0) {
283 struct property *p;
284 p = of_find_property(dp, "mid", (void *)0);
285 if (p) {
286 int mid;
287 dp->name = prom_early_alloc(5 + 1);
288 memcpy(&mid, p->value, p->length);
289 sprintf((char *)dp->name, "cpu%.2d", mid);
294 void __initdata (*prom_amba_init)(struct device_node *dp, struct device_node ***nextp) = 0;
296 void __init leon_node_init(struct device_node *dp, struct device_node ***nextp)
298 if (prom_amba_init &&
299 strcmp(dp->type, "ambapp") == 0 &&
300 strcmp(dp->name, "ambapp0") == 0) {
301 prom_amba_init(dp, nextp);
305 #ifdef CONFIG_SMP
307 void leon_set_cpu_int(int cpu, int level)
309 unsigned long mask;
310 mask = get_irqmask(level);
311 LEON3_BYPASS_STORE_PA(&leon3_irqctrl_regs->force[cpu], mask);
314 static void leon_clear_ipi(int cpu, int level)
316 unsigned long mask;
317 mask = get_irqmask(level);
318 LEON3_BYPASS_STORE_PA(&leon3_irqctrl_regs->force[cpu], mask<<16);
321 static void leon_set_udt(int cpu)
325 void leon_clear_profile_irq(int cpu)
329 void leon_enable_irq_cpu(unsigned int irq_nr, unsigned int cpu)
331 unsigned long mask, flags, *addr;
332 mask = get_irqmask(irq_nr);
333 local_irq_save(flags);
334 addr = (unsigned long *)&(leon3_irqctrl_regs->mask[cpu]);
335 LEON3_BYPASS_STORE_PA(addr, (LEON3_BYPASS_LOAD_PA(addr) | (mask)));
336 local_irq_restore(flags);
339 #endif
341 void __init leon_init_IRQ(void)
343 sparc_init_timers = leon_init_timers;
345 BTFIXUPSET_CALL(enable_irq, leon_enable_irq, BTFIXUPCALL_NORM);
346 BTFIXUPSET_CALL(disable_irq, leon_disable_irq, BTFIXUPCALL_NORM);
347 BTFIXUPSET_CALL(enable_pil_irq, leon_enable_irq, BTFIXUPCALL_NORM);
348 BTFIXUPSET_CALL(disable_pil_irq, leon_disable_irq, BTFIXUPCALL_NORM);
350 BTFIXUPSET_CALL(clear_clock_irq, leon_clear_clock_irq,
351 BTFIXUPCALL_NORM);
352 BTFIXUPSET_CALL(load_profile_irq, leon_load_profile_irq,
353 BTFIXUPCALL_NOP);
355 #ifdef CONFIG_SMP
356 BTFIXUPSET_CALL(set_cpu_int, leon_set_cpu_int, BTFIXUPCALL_NORM);
357 BTFIXUPSET_CALL(clear_cpu_int, leon_clear_ipi, BTFIXUPCALL_NORM);
358 BTFIXUPSET_CALL(set_irq_udt, leon_set_udt, BTFIXUPCALL_NORM);
359 #endif
363 void __init leon_init(void)
365 of_pdt_build_more = &leon_node_init;