2 * Copyright (C) 2009 Daniel Hellstrom (daniel@gaisler.com) Aeroflex Gaisler AB
3 * Copyright (C) 2009 Konrad Eisele (konrad@gaisler.com) Aeroflex Gaisler AB
6 #include <linux/kernel.h>
7 #include <linux/module.h>
8 #include <linux/errno.h>
9 #include <linux/mutex.h>
10 #include <linux/slab.h>
12 #include <linux/of_platform.h>
13 #include <linux/interrupt.h>
14 #include <linux/of_device.h>
15 #include <asm/oplib.h>
16 #include <asm/timer.h>
19 #include <asm/leon_amba.h>
24 struct leon3_irqctrl_regs_map
*leon3_irqctrl_regs
; /* interrupt controller base address, initialized by amba_init() */
25 struct leon3_gptimer_regs_map
*leon3_gptimer_regs
; /* timer controller base address, initialized by amba_init() */
26 struct amba_apb_device leon_percpu_timer_dev
[16];
28 int leondebug_irq_disable
;
29 int leon_debug_irqout
;
30 static int dummy_master_l10_counter
;
32 unsigned long leon3_gptimer_irq
; /* interrupt controller irq number, initialized by amba_init() */
33 unsigned int sparc_leon_eirq
;
34 #define LEON_IMASK ((&leon3_irqctrl_regs->mask[0]))
36 /* Return the IRQ of the pending IRQ on the extended IRQ controller */
37 int sparc_leon_eirq_get(int eirq
, int cpu
)
39 return LEON3_BYPASS_LOAD_PA(&leon3_irqctrl_regs
->intid
[cpu
]) & 0x1f;
42 irqreturn_t
sparc_leon_eirq_isr(int dummy
, void *dev_id
)
44 printk(KERN_ERR
"sparc_leon_eirq_isr: ERROR EXTENDED IRQ\n");
48 /* The extended IRQ controller has been found, this function registers it */
49 void sparc_leon_eirq_register(int eirq
)
53 /* Register a "BAD" handler for this interrupt, it should never happen */
54 irq
= request_irq(eirq
, sparc_leon_eirq_isr
,
55 (IRQF_DISABLED
| SA_STATIC_ALLOC
), "extirq", NULL
);
59 "sparc_leon_eirq_register: unable to attach IRQ%d\n",
62 sparc_leon_eirq
= eirq
;
67 static inline unsigned long get_irqmask(unsigned int irq
)
71 if (!irq
|| ((irq
> 0xf) && !sparc_leon_eirq
)
72 || ((irq
> 0x1f) && sparc_leon_eirq
)) {
74 "leon_get_irqmask: false irq number: %d\n", irq
);
77 mask
= LEON_HARD_INT(irq
);
82 static void leon_enable_irq(unsigned int irq_nr
)
84 unsigned long mask
, flags
;
85 mask
= get_irqmask(irq_nr
);
86 local_irq_save(flags
);
87 LEON3_BYPASS_STORE_PA(LEON_IMASK
,
88 (LEON3_BYPASS_LOAD_PA(LEON_IMASK
) | (mask
)));
89 local_irq_restore(flags
);
92 static void leon_disable_irq(unsigned int irq_nr
)
94 unsigned long mask
, flags
;
95 mask
= get_irqmask(irq_nr
);
96 local_irq_save(flags
);
97 LEON3_BYPASS_STORE_PA(LEON_IMASK
,
98 (LEON3_BYPASS_LOAD_PA(LEON_IMASK
) & ~(mask
)));
99 local_irq_restore(flags
);
103 void __init
leon_init_timers(irq_handler_t counter_fn
)
107 leondebug_irq_disable
= 0;
108 leon_debug_irqout
= 0;
109 master_l10_counter
= (unsigned int *)&dummy_master_l10_counter
;
110 dummy_master_l10_counter
= 0;
112 if (leon3_gptimer_regs
&& leon3_irqctrl_regs
) {
113 LEON3_BYPASS_STORE_PA(&leon3_gptimer_regs
->e
[0].val
, 0);
114 LEON3_BYPASS_STORE_PA(&leon3_gptimer_regs
->e
[0].rld
,
115 (((1000000 / 100) - 1)));
116 LEON3_BYPASS_STORE_PA(&leon3_gptimer_regs
->e
[0].ctrl
, 0);
119 printk(KERN_ERR
"No Timer/irqctrl found\n");
123 irq
= request_irq(leon3_gptimer_irq
,
125 (IRQF_DISABLED
| SA_STATIC_ALLOC
), "timer", NULL
);
128 printk(KERN_ERR
"leon_time_init: unable to attach IRQ%d\n",
129 LEON_INTERRUPT_TIMER1
);
133 if (leon3_gptimer_regs
) {
134 LEON3_BYPASS_STORE_PA(&leon3_gptimer_regs
->e
[0].ctrl
,
137 LEON3_GPTIMER_LD
| LEON3_GPTIMER_IRQEN
);
141 void leon_clear_clock_irq(void)
145 void leon_load_profile_irq(int cpu
, unsigned int limit
)
153 void __init
leon_trans_init(struct device_node
*dp
)
155 if (strcmp(dp
->type
, "cpu") == 0 && strcmp(dp
->name
, "<NULL>") == 0) {
157 p
= of_find_property(dp
, "mid", (void *)0);
160 dp
->name
= prom_early_alloc(5 + 1);
161 memcpy(&mid
, p
->value
, p
->length
);
162 sprintf((char *)dp
->name
, "cpu%.2d", mid
);
167 void __initdata (*prom_amba_init
)(struct device_node
*dp
, struct device_node
***nextp
) = 0;
169 void __init
leon_node_init(struct device_node
*dp
, struct device_node
***nextp
)
171 if (prom_amba_init
&&
172 strcmp(dp
->type
, "ambapp") == 0 &&
173 strcmp(dp
->name
, "ambapp0") == 0) {
174 prom_amba_init(dp
, nextp
);
178 void __init
leon_init_IRQ(void)
180 sparc_init_timers
= leon_init_timers
;
182 BTFIXUPSET_CALL(enable_irq
, leon_enable_irq
, BTFIXUPCALL_NORM
);
183 BTFIXUPSET_CALL(disable_irq
, leon_disable_irq
, BTFIXUPCALL_NORM
);
184 BTFIXUPSET_CALL(enable_pil_irq
, leon_enable_irq
, BTFIXUPCALL_NORM
);
185 BTFIXUPSET_CALL(disable_pil_irq
, leon_disable_irq
, BTFIXUPCALL_NORM
);
187 BTFIXUPSET_CALL(clear_clock_irq
, leon_clear_clock_irq
,
189 BTFIXUPSET_CALL(load_profile_irq
, leon_load_profile_irq
,
193 BTFIXUPSET_CALL(set_cpu_int
, leon_set_cpu_int
, BTFIXUPCALL_NORM
);
194 BTFIXUPSET_CALL(clear_cpu_int
, leon_clear_ipi
, BTFIXUPCALL_NORM
);
195 BTFIXUPSET_CALL(set_irq_udt
, leon_set_udt
, BTFIXUPCALL_NORM
);
200 void __init
leon_init(void)
202 prom_build_more
= &leon_node_init
;