2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2008 Maxime Bizon <mbizon@freebox.fr>
7 * Copyright (C) 2008 Nicolas Schichan <nschichan@freebox.fr>
10 #include <linux/kernel.h>
11 #include <linux/init.h>
12 #include <linux/interrupt.h>
13 #include <linux/module.h>
14 #include <linux/irq.h>
15 #include <asm/irq_cpu.h>
16 #include <asm/mipsregs.h>
17 #include <bcm63xx_cpu.h>
18 #include <bcm63xx_regs.h>
19 #include <bcm63xx_io.h>
20 #include <bcm63xx_irq.h>
22 static void __dispatch_internal(void) __maybe_unused
;
23 static void __dispatch_internal_64(void) __maybe_unused
;
24 static void __internal_irq_mask_32(unsigned int irq
) __maybe_unused
;
25 static void __internal_irq_mask_64(unsigned int irq
) __maybe_unused
;
26 static void __internal_irq_unmask_32(unsigned int irq
) __maybe_unused
;
27 static void __internal_irq_unmask_64(unsigned int irq
) __maybe_unused
;
29 #ifndef BCMCPU_RUNTIME_DETECT
30 #ifdef CONFIG_BCM63XX_CPU_6328
31 #define irq_stat_reg PERF_IRQSTAT_6328_REG
32 #define irq_mask_reg PERF_IRQMASK_6328_REG
34 #define is_ext_irq_cascaded 1
35 #define ext_irq_start (BCM_6328_EXT_IRQ0 - IRQ_INTERNAL_BASE)
36 #define ext_irq_end (BCM_6328_EXT_IRQ3 - IRQ_INTERNAL_BASE)
37 #define ext_irq_count 4
38 #define ext_irq_cfg_reg1 PERF_EXTIRQ_CFG_REG_6328
39 #define ext_irq_cfg_reg2 0
41 #ifdef CONFIG_BCM63XX_CPU_6338
42 #define irq_stat_reg PERF_IRQSTAT_6338_REG
43 #define irq_mask_reg PERF_IRQMASK_6338_REG
45 #define is_ext_irq_cascaded 0
46 #define ext_irq_start 0
48 #define ext_irq_count 4
49 #define ext_irq_cfg_reg1 PERF_EXTIRQ_CFG_REG_6338
50 #define ext_irq_cfg_reg2 0
52 #ifdef CONFIG_BCM63XX_CPU_6345
53 #define irq_stat_reg PERF_IRQSTAT_6345_REG
54 #define irq_mask_reg PERF_IRQMASK_6345_REG
56 #define is_ext_irq_cascaded 0
57 #define ext_irq_start 0
59 #define ext_irq_count 0
60 #define ext_irq_cfg_reg1 0
61 #define ext_irq_cfg_reg2 0
63 #ifdef CONFIG_BCM63XX_CPU_6348
64 #define irq_stat_reg PERF_IRQSTAT_6348_REG
65 #define irq_mask_reg PERF_IRQMASK_6348_REG
67 #define is_ext_irq_cascaded 0
68 #define ext_irq_start 0
70 #define ext_irq_count 4
71 #define ext_irq_cfg_reg1 PERF_EXTIRQ_CFG_REG_6348
72 #define ext_irq_cfg_reg2 0
74 #ifdef CONFIG_BCM63XX_CPU_6358
75 #define irq_stat_reg PERF_IRQSTAT_6358_REG
76 #define irq_mask_reg PERF_IRQMASK_6358_REG
78 #define is_ext_irq_cascaded 1
79 #define ext_irq_start (BCM_6358_EXT_IRQ0 - IRQ_INTERNAL_BASE)
80 #define ext_irq_end (BCM_6358_EXT_IRQ3 - IRQ_INTERNAL_BASE)
81 #define ext_irq_count 4
82 #define ext_irq_cfg_reg1 PERF_EXTIRQ_CFG_REG_6358
83 #define ext_irq_cfg_reg2 0
85 #ifdef CONFIG_BCM63XX_CPU_6368
86 #define irq_stat_reg PERF_IRQSTAT_6368_REG
87 #define irq_mask_reg PERF_IRQMASK_6368_REG
89 #define is_ext_irq_cascaded 1
90 #define ext_irq_start (BCM_6368_EXT_IRQ0 - IRQ_INTERNAL_BASE)
91 #define ext_irq_end (BCM_6368_EXT_IRQ5 - IRQ_INTERNAL_BASE)
92 #define ext_irq_count 6
93 #define ext_irq_cfg_reg1 PERF_EXTIRQ_CFG_REG_6368
94 #define ext_irq_cfg_reg2 PERF_EXTIRQ_CFG_REG2_6368
98 #define dispatch_internal __dispatch_internal
99 #define internal_irq_mask __internal_irq_mask_32
100 #define internal_irq_unmask __internal_irq_unmask_32
102 #define dispatch_internal __dispatch_internal_64
103 #define internal_irq_mask __internal_irq_mask_64
104 #define internal_irq_unmask __internal_irq_unmask_64
107 #define irq_stat_addr (bcm63xx_regset_address(RSET_PERF) + irq_stat_reg)
108 #define irq_mask_addr (bcm63xx_regset_address(RSET_PERF) + irq_mask_reg)
110 static inline void bcm63xx_init_irq(void)
113 #else /* ! BCMCPU_RUNTIME_DETECT */
115 static u32 irq_stat_addr
, irq_mask_addr
;
116 static void (*dispatch_internal
)(void);
117 static int is_ext_irq_cascaded
;
118 static unsigned int ext_irq_count
;
119 static unsigned int ext_irq_start
, ext_irq_end
;
120 static unsigned int ext_irq_cfg_reg1
, ext_irq_cfg_reg2
;
121 static void (*internal_irq_mask
)(unsigned int irq
);
122 static void (*internal_irq_unmask
)(unsigned int irq
);
124 static void bcm63xx_init_irq(void)
128 irq_stat_addr
= bcm63xx_regset_address(RSET_PERF
);
129 irq_mask_addr
= bcm63xx_regset_address(RSET_PERF
);
131 switch (bcm63xx_get_cpu_id()) {
133 irq_stat_addr
+= PERF_IRQSTAT_6328_REG
;
134 irq_mask_addr
+= PERF_IRQMASK_6328_REG
;
137 is_ext_irq_cascaded
= 1;
138 ext_irq_start
= BCM_6328_EXT_IRQ0
- IRQ_INTERNAL_BASE
;
139 ext_irq_end
= BCM_6328_EXT_IRQ3
- IRQ_INTERNAL_BASE
;
140 ext_irq_cfg_reg1
= PERF_EXTIRQ_CFG_REG_6328
;
143 irq_stat_addr
+= PERF_IRQSTAT_6338_REG
;
144 irq_mask_addr
+= PERF_IRQMASK_6338_REG
;
148 irq_stat_addr
+= PERF_IRQSTAT_6345_REG
;
149 irq_mask_addr
+= PERF_IRQMASK_6345_REG
;
153 irq_stat_addr
+= PERF_IRQSTAT_6348_REG
;
154 irq_mask_addr
+= PERF_IRQMASK_6348_REG
;
157 ext_irq_cfg_reg1
= PERF_EXTIRQ_CFG_REG_6348
;
160 irq_stat_addr
+= PERF_IRQSTAT_6358_REG
;
161 irq_mask_addr
+= PERF_IRQMASK_6358_REG
;
164 is_ext_irq_cascaded
= 1;
165 ext_irq_start
= BCM_6358_EXT_IRQ0
- IRQ_INTERNAL_BASE
;
166 ext_irq_end
= BCM_6358_EXT_IRQ3
- IRQ_INTERNAL_BASE
;
167 ext_irq_cfg_reg1
= PERF_EXTIRQ_CFG_REG_6358
;
170 irq_stat_addr
+= PERF_IRQSTAT_6368_REG
;
171 irq_mask_addr
+= PERF_IRQMASK_6368_REG
;
174 is_ext_irq_cascaded
= 1;
175 ext_irq_start
= BCM_6368_EXT_IRQ0
- IRQ_INTERNAL_BASE
;
176 ext_irq_end
= BCM_6368_EXT_IRQ5
- IRQ_INTERNAL_BASE
;
177 ext_irq_cfg_reg1
= PERF_EXTIRQ_CFG_REG_6368
;
178 ext_irq_cfg_reg2
= PERF_EXTIRQ_CFG_REG2_6368
;
184 if (irq_bits
== 32) {
185 dispatch_internal
= __dispatch_internal
;
186 internal_irq_mask
= __internal_irq_mask_32
;
187 internal_irq_unmask
= __internal_irq_unmask_32
;
189 dispatch_internal
= __dispatch_internal_64
;
190 internal_irq_mask
= __internal_irq_mask_64
;
191 internal_irq_unmask
= __internal_irq_unmask_64
;
194 #endif /* ! BCMCPU_RUNTIME_DETECT */
196 static inline u32
get_ext_irq_perf_reg(int irq
)
199 return ext_irq_cfg_reg1
;
200 return ext_irq_cfg_reg2
;
203 static inline void handle_internal(int intbit
)
205 if (is_ext_irq_cascaded
&&
206 intbit
>= ext_irq_start
&& intbit
<= ext_irq_end
)
207 do_IRQ(intbit
- ext_irq_start
+ IRQ_EXTERNAL_BASE
);
209 do_IRQ(intbit
+ IRQ_INTERNAL_BASE
);
213 * dispatch internal devices IRQ (uart, enet, watchdog, ...). do not
214 * prioritize any interrupt relatively to another. the static counter
215 * will resume the loop where it ended the last time we left this
218 static void __dispatch_internal(void)
223 pending
= bcm_readl(irq_stat_addr
) & bcm_readl(irq_mask_addr
);
232 if (pending
& (1 << to_call
)) {
233 handle_internal(to_call
);
239 static void __dispatch_internal_64(void)
244 pending
= bcm_readq(irq_stat_addr
) & bcm_readq(irq_mask_addr
);
253 if (pending
& (1ull << to_call
)) {
254 handle_internal(to_call
);
260 asmlinkage
void plat_irq_dispatch(void)
265 cause
= read_c0_cause() & read_c0_status() & ST0_IM
;
270 if (cause
& CAUSEF_IP7
)
272 if (cause
& CAUSEF_IP2
)
274 if (!is_ext_irq_cascaded
) {
275 if (cause
& CAUSEF_IP3
)
277 if (cause
& CAUSEF_IP4
)
279 if (cause
& CAUSEF_IP5
)
281 if (cause
& CAUSEF_IP6
)
288 * internal IRQs operations: only mask/unmask on PERF irq mask
291 static void __internal_irq_mask_32(unsigned int irq
)
295 mask
= bcm_readl(irq_mask_addr
);
297 bcm_writel(mask
, irq_mask_addr
);
300 static void __internal_irq_mask_64(unsigned int irq
)
304 mask
= bcm_readq(irq_mask_addr
);
305 mask
&= ~(1ull << irq
);
306 bcm_writeq(mask
, irq_mask_addr
);
309 static void __internal_irq_unmask_32(unsigned int irq
)
313 mask
= bcm_readl(irq_mask_addr
);
315 bcm_writel(mask
, irq_mask_addr
);
318 static void __internal_irq_unmask_64(unsigned int irq
)
322 mask
= bcm_readq(irq_mask_addr
);
323 mask
|= (1ull << irq
);
324 bcm_writeq(mask
, irq_mask_addr
);
327 static void bcm63xx_internal_irq_mask(struct irq_data
*d
)
329 internal_irq_mask(d
->irq
- IRQ_INTERNAL_BASE
);
332 static void bcm63xx_internal_irq_unmask(struct irq_data
*d
)
334 internal_irq_unmask(d
->irq
- IRQ_INTERNAL_BASE
);
338 * external IRQs operations: mask/unmask and clear on PERF external
339 * irq control register.
341 static void bcm63xx_external_irq_mask(struct irq_data
*d
)
343 unsigned int irq
= d
->irq
- IRQ_EXTERNAL_BASE
;
346 regaddr
= get_ext_irq_perf_reg(irq
);
347 reg
= bcm_perf_readl(regaddr
);
349 if (BCMCPU_IS_6348())
350 reg
&= ~EXTIRQ_CFG_MASK_6348(irq
% 4);
352 reg
&= ~EXTIRQ_CFG_MASK(irq
% 4);
354 bcm_perf_writel(reg
, regaddr
);
355 if (is_ext_irq_cascaded
)
356 internal_irq_mask(irq
+ ext_irq_start
);
359 static void bcm63xx_external_irq_unmask(struct irq_data
*d
)
361 unsigned int irq
= d
->irq
- IRQ_EXTERNAL_BASE
;
364 regaddr
= get_ext_irq_perf_reg(irq
);
365 reg
= bcm_perf_readl(regaddr
);
367 if (BCMCPU_IS_6348())
368 reg
|= EXTIRQ_CFG_MASK_6348(irq
% 4);
370 reg
|= EXTIRQ_CFG_MASK(irq
% 4);
372 bcm_perf_writel(reg
, regaddr
);
374 if (is_ext_irq_cascaded
)
375 internal_irq_unmask(irq
+ ext_irq_start
);
378 static void bcm63xx_external_irq_clear(struct irq_data
*d
)
380 unsigned int irq
= d
->irq
- IRQ_EXTERNAL_BASE
;
383 regaddr
= get_ext_irq_perf_reg(irq
);
384 reg
= bcm_perf_readl(regaddr
);
386 if (BCMCPU_IS_6348())
387 reg
|= EXTIRQ_CFG_CLEAR_6348(irq
% 4);
389 reg
|= EXTIRQ_CFG_CLEAR(irq
% 4);
391 bcm_perf_writel(reg
, regaddr
);
394 static int bcm63xx_external_irq_set_type(struct irq_data
*d
,
395 unsigned int flow_type
)
397 unsigned int irq
= d
->irq
- IRQ_EXTERNAL_BASE
;
399 int levelsense
, sense
, bothedge
;
401 flow_type
&= IRQ_TYPE_SENSE_MASK
;
403 if (flow_type
== IRQ_TYPE_NONE
)
404 flow_type
= IRQ_TYPE_LEVEL_LOW
;
406 levelsense
= sense
= bothedge
= 0;
408 case IRQ_TYPE_EDGE_BOTH
:
412 case IRQ_TYPE_EDGE_RISING
:
416 case IRQ_TYPE_EDGE_FALLING
:
419 case IRQ_TYPE_LEVEL_HIGH
:
424 case IRQ_TYPE_LEVEL_LOW
:
429 printk(KERN_ERR
"bogus flow type combination given !\n");
433 regaddr
= get_ext_irq_perf_reg(irq
);
434 reg
= bcm_perf_readl(regaddr
);
437 if (BCMCPU_IS_6348()) {
439 reg
|= EXTIRQ_CFG_LEVELSENSE_6348(irq
);
441 reg
&= ~EXTIRQ_CFG_LEVELSENSE_6348(irq
);
443 reg
|= EXTIRQ_CFG_SENSE_6348(irq
);
445 reg
&= ~EXTIRQ_CFG_SENSE_6348(irq
);
447 reg
|= EXTIRQ_CFG_BOTHEDGE_6348(irq
);
449 reg
&= ~EXTIRQ_CFG_BOTHEDGE_6348(irq
);
452 if (BCMCPU_IS_6338() || BCMCPU_IS_6358() || BCMCPU_IS_6368()) {
454 reg
|= EXTIRQ_CFG_LEVELSENSE(irq
);
456 reg
&= ~EXTIRQ_CFG_LEVELSENSE(irq
);
458 reg
|= EXTIRQ_CFG_SENSE(irq
);
460 reg
&= ~EXTIRQ_CFG_SENSE(irq
);
462 reg
|= EXTIRQ_CFG_BOTHEDGE(irq
);
464 reg
&= ~EXTIRQ_CFG_BOTHEDGE(irq
);
467 bcm_perf_writel(reg
, regaddr
);
469 irqd_set_trigger_type(d
, flow_type
);
470 if (flow_type
& (IRQ_TYPE_LEVEL_LOW
| IRQ_TYPE_LEVEL_HIGH
))
471 __irq_set_handler_locked(d
->irq
, handle_level_irq
);
473 __irq_set_handler_locked(d
->irq
, handle_edge_irq
);
475 return IRQ_SET_MASK_OK_NOCOPY
;
478 static struct irq_chip bcm63xx_internal_irq_chip
= {
479 .name
= "bcm63xx_ipic",
480 .irq_mask
= bcm63xx_internal_irq_mask
,
481 .irq_unmask
= bcm63xx_internal_irq_unmask
,
484 static struct irq_chip bcm63xx_external_irq_chip
= {
485 .name
= "bcm63xx_epic",
486 .irq_ack
= bcm63xx_external_irq_clear
,
488 .irq_mask
= bcm63xx_external_irq_mask
,
489 .irq_unmask
= bcm63xx_external_irq_unmask
,
491 .irq_set_type
= bcm63xx_external_irq_set_type
,
494 static struct irqaction cpu_ip2_cascade_action
= {
495 .handler
= no_action
,
496 .name
= "cascade_ip2",
497 .flags
= IRQF_NO_THREAD
,
500 static struct irqaction cpu_ext_cascade_action
= {
501 .handler
= no_action
,
502 .name
= "cascade_extirq",
503 .flags
= IRQF_NO_THREAD
,
506 void __init
arch_init_irq(void)
512 for (i
= IRQ_INTERNAL_BASE
; i
< NR_IRQS
; ++i
)
513 irq_set_chip_and_handler(i
, &bcm63xx_internal_irq_chip
,
516 for (i
= IRQ_EXTERNAL_BASE
; i
< IRQ_EXTERNAL_BASE
+ ext_irq_count
; ++i
)
517 irq_set_chip_and_handler(i
, &bcm63xx_external_irq_chip
,
520 if (!is_ext_irq_cascaded
) {
521 for (i
= 3; i
< 3 + ext_irq_count
; ++i
)
522 setup_irq(MIPS_CPU_IRQ_BASE
+ i
, &cpu_ext_cascade_action
);
525 setup_irq(MIPS_CPU_IRQ_BASE
+ 2, &cpu_ip2_cascade_action
);