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_6338
31 #define irq_stat_reg PERF_IRQSTAT_6338_REG
32 #define irq_mask_reg PERF_IRQMASK_6338_REG
34 #define is_ext_irq_cascaded 0
35 #define ext_irq_start 0
37 #define ext_irq_count 4
38 #define ext_irq_cfg_reg1 PERF_EXTIRQ_CFG_REG_6338
39 #define ext_irq_cfg_reg2 0
41 #ifdef CONFIG_BCM63XX_CPU_6345
42 #define irq_stat_reg PERF_IRQSTAT_6345_REG
43 #define irq_mask_reg PERF_IRQMASK_6345_REG
45 #define is_ext_irq_cascaded 0
46 #define ext_irq_start 0
48 #define ext_irq_count 0
49 #define ext_irq_cfg_reg1 0
50 #define ext_irq_cfg_reg2 0
52 #ifdef CONFIG_BCM63XX_CPU_6348
53 #define irq_stat_reg PERF_IRQSTAT_6348_REG
54 #define irq_mask_reg PERF_IRQMASK_6348_REG
56 #define is_ext_irq_cascaded 0
57 #define ext_irq_start 0
59 #define ext_irq_count 4
60 #define ext_irq_cfg_reg1 PERF_EXTIRQ_CFG_REG_6348
61 #define ext_irq_cfg_reg2 0
63 #ifdef CONFIG_BCM63XX_CPU_6358
64 #define irq_stat_reg PERF_IRQSTAT_6358_REG
65 #define irq_mask_reg PERF_IRQMASK_6358_REG
67 #define is_ext_irq_cascaded 1
68 #define ext_irq_start (BCM_6358_EXT_IRQ0 - IRQ_INTERNAL_BASE)
69 #define ext_irq_end (BCM_6358_EXT_IRQ3 - IRQ_INTERNAL_BASE)
70 #define ext_irq_count 4
71 #define ext_irq_cfg_reg1 PERF_EXTIRQ_CFG_REG_6358
72 #define ext_irq_cfg_reg2 0
74 #ifdef CONFIG_BCM63XX_CPU_6368
75 #define irq_stat_reg PERF_IRQSTAT_6368_REG
76 #define irq_mask_reg PERF_IRQMASK_6368_REG
78 #define is_ext_irq_cascaded 1
79 #define ext_irq_start (BCM_6368_EXT_IRQ0 - IRQ_INTERNAL_BASE)
80 #define ext_irq_end (BCM_6368_EXT_IRQ5 - IRQ_INTERNAL_BASE)
81 #define ext_irq_count 6
82 #define ext_irq_cfg_reg1 PERF_EXTIRQ_CFG_REG_6368
83 #define ext_irq_cfg_reg2 PERF_EXTIRQ_CFG_REG2_6368
87 #define dispatch_internal __dispatch_internal
88 #define internal_irq_mask __internal_irq_mask_32
89 #define internal_irq_unmask __internal_irq_unmask_32
91 #define dispatch_internal __dispatch_internal_64
92 #define internal_irq_mask __internal_irq_mask_64
93 #define internal_irq_unmask __internal_irq_unmask_64
96 #define irq_stat_addr (bcm63xx_regset_address(RSET_PERF) + irq_stat_reg)
97 #define irq_mask_addr (bcm63xx_regset_address(RSET_PERF) + irq_mask_reg)
99 static inline void bcm63xx_init_irq(void)
102 #else /* ! BCMCPU_RUNTIME_DETECT */
104 static u32 irq_stat_addr
, irq_mask_addr
;
105 static void (*dispatch_internal
)(void);
106 static int is_ext_irq_cascaded
;
107 static unsigned int ext_irq_count
;
108 static unsigned int ext_irq_start
, ext_irq_end
;
109 static unsigned int ext_irq_cfg_reg1
, ext_irq_cfg_reg2
;
110 static void (*internal_irq_mask
)(unsigned int irq
);
111 static void (*internal_irq_unmask
)(unsigned int irq
);
113 static void bcm63xx_init_irq(void)
117 irq_stat_addr
= bcm63xx_regset_address(RSET_PERF
);
118 irq_mask_addr
= bcm63xx_regset_address(RSET_PERF
);
120 switch (bcm63xx_get_cpu_id()) {
122 irq_stat_addr
+= PERF_IRQSTAT_6338_REG
;
123 irq_mask_addr
+= PERF_IRQMASK_6338_REG
;
127 irq_stat_addr
+= PERF_IRQSTAT_6345_REG
;
128 irq_mask_addr
+= PERF_IRQMASK_6345_REG
;
132 irq_stat_addr
+= PERF_IRQSTAT_6348_REG
;
133 irq_mask_addr
+= PERF_IRQMASK_6348_REG
;
136 ext_irq_cfg_reg1
= PERF_EXTIRQ_CFG_REG_6348
;
139 irq_stat_addr
+= PERF_IRQSTAT_6358_REG
;
140 irq_mask_addr
+= PERF_IRQMASK_6358_REG
;
143 is_ext_irq_cascaded
= 1;
144 ext_irq_start
= BCM_6358_EXT_IRQ0
- IRQ_INTERNAL_BASE
;
145 ext_irq_end
= BCM_6358_EXT_IRQ3
- IRQ_INTERNAL_BASE
;
146 ext_irq_cfg_reg1
= PERF_EXTIRQ_CFG_REG_6358
;
149 irq_stat_addr
+= PERF_IRQSTAT_6368_REG
;
150 irq_mask_addr
+= PERF_IRQMASK_6368_REG
;
153 is_ext_irq_cascaded
= 1;
154 ext_irq_start
= BCM_6368_EXT_IRQ0
- IRQ_INTERNAL_BASE
;
155 ext_irq_end
= BCM_6368_EXT_IRQ5
- IRQ_INTERNAL_BASE
;
156 ext_irq_cfg_reg1
= PERF_EXTIRQ_CFG_REG_6368
;
157 ext_irq_cfg_reg2
= PERF_EXTIRQ_CFG_REG2_6368
;
163 if (irq_bits
== 32) {
164 dispatch_internal
= __dispatch_internal
;
165 internal_irq_mask
= __internal_irq_mask_32
;
166 internal_irq_unmask
= __internal_irq_unmask_32
;
168 dispatch_internal
= __dispatch_internal_64
;
169 internal_irq_mask
= __internal_irq_mask_64
;
170 internal_irq_unmask
= __internal_irq_unmask_64
;
173 #endif /* ! BCMCPU_RUNTIME_DETECT */
175 static inline u32
get_ext_irq_perf_reg(int irq
)
178 return ext_irq_cfg_reg1
;
179 return ext_irq_cfg_reg2
;
182 static inline void handle_internal(int intbit
)
184 if (is_ext_irq_cascaded
&&
185 intbit
>= ext_irq_start
&& intbit
<= ext_irq_end
)
186 do_IRQ(intbit
- ext_irq_start
+ IRQ_EXTERNAL_BASE
);
188 do_IRQ(intbit
+ IRQ_INTERNAL_BASE
);
192 * dispatch internal devices IRQ (uart, enet, watchdog, ...). do not
193 * prioritize any interrupt relatively to another. the static counter
194 * will resume the loop where it ended the last time we left this
197 static void __dispatch_internal(void)
202 pending
= bcm_readl(irq_stat_addr
) & bcm_readl(irq_mask_addr
);
211 if (pending
& (1 << to_call
)) {
212 handle_internal(to_call
);
218 static void __dispatch_internal_64(void)
223 pending
= bcm_readq(irq_stat_addr
) & bcm_readq(irq_mask_addr
);
232 if (pending
& (1ull << to_call
)) {
233 handle_internal(to_call
);
239 asmlinkage
void plat_irq_dispatch(void)
244 cause
= read_c0_cause() & read_c0_status() & ST0_IM
;
249 if (cause
& CAUSEF_IP7
)
251 if (cause
& CAUSEF_IP2
)
253 if (!is_ext_irq_cascaded
) {
254 if (cause
& CAUSEF_IP3
)
256 if (cause
& CAUSEF_IP4
)
258 if (cause
& CAUSEF_IP5
)
260 if (cause
& CAUSEF_IP6
)
267 * internal IRQs operations: only mask/unmask on PERF irq mask
270 static void __internal_irq_mask_32(unsigned int irq
)
274 mask
= bcm_readl(irq_mask_addr
);
276 bcm_writel(mask
, irq_mask_addr
);
279 static void __internal_irq_mask_64(unsigned int irq
)
283 mask
= bcm_readq(irq_mask_addr
);
284 mask
&= ~(1ull << irq
);
285 bcm_writeq(mask
, irq_mask_addr
);
288 static void __internal_irq_unmask_32(unsigned int irq
)
292 mask
= bcm_readl(irq_mask_addr
);
294 bcm_writel(mask
, irq_mask_addr
);
297 static void __internal_irq_unmask_64(unsigned int irq
)
301 mask
= bcm_readq(irq_mask_addr
);
302 mask
|= (1ull << irq
);
303 bcm_writeq(mask
, irq_mask_addr
);
306 static void bcm63xx_internal_irq_mask(struct irq_data
*d
)
308 internal_irq_mask(d
->irq
- IRQ_INTERNAL_BASE
);
311 static void bcm63xx_internal_irq_unmask(struct irq_data
*d
)
313 internal_irq_unmask(d
->irq
- IRQ_INTERNAL_BASE
);
317 * external IRQs operations: mask/unmask and clear on PERF external
318 * irq control register.
320 static void bcm63xx_external_irq_mask(struct irq_data
*d
)
322 unsigned int irq
= d
->irq
- IRQ_EXTERNAL_BASE
;
325 regaddr
= get_ext_irq_perf_reg(irq
);
326 reg
= bcm_perf_readl(regaddr
);
328 if (BCMCPU_IS_6348())
329 reg
&= ~EXTIRQ_CFG_MASK_6348(irq
% 4);
331 reg
&= ~EXTIRQ_CFG_MASK(irq
% 4);
333 bcm_perf_writel(reg
, regaddr
);
334 if (is_ext_irq_cascaded
)
335 internal_irq_mask(irq
+ ext_irq_start
);
338 static void bcm63xx_external_irq_unmask(struct irq_data
*d
)
340 unsigned int irq
= d
->irq
- IRQ_EXTERNAL_BASE
;
343 regaddr
= get_ext_irq_perf_reg(irq
);
344 reg
= bcm_perf_readl(regaddr
);
346 if (BCMCPU_IS_6348())
347 reg
|= EXTIRQ_CFG_MASK_6348(irq
% 4);
349 reg
|= EXTIRQ_CFG_MASK(irq
% 4);
351 bcm_perf_writel(reg
, regaddr
);
353 if (is_ext_irq_cascaded
)
354 internal_irq_unmask(irq
+ ext_irq_start
);
357 static void bcm63xx_external_irq_clear(struct irq_data
*d
)
359 unsigned int irq
= d
->irq
- IRQ_EXTERNAL_BASE
;
362 regaddr
= get_ext_irq_perf_reg(irq
);
363 reg
= bcm_perf_readl(regaddr
);
365 if (BCMCPU_IS_6348())
366 reg
|= EXTIRQ_CFG_CLEAR_6348(irq
% 4);
368 reg
|= EXTIRQ_CFG_CLEAR(irq
% 4);
370 bcm_perf_writel(reg
, regaddr
);
373 static int bcm63xx_external_irq_set_type(struct irq_data
*d
,
374 unsigned int flow_type
)
376 unsigned int irq
= d
->irq
- IRQ_EXTERNAL_BASE
;
378 int levelsense
, sense
, bothedge
;
380 flow_type
&= IRQ_TYPE_SENSE_MASK
;
382 if (flow_type
== IRQ_TYPE_NONE
)
383 flow_type
= IRQ_TYPE_LEVEL_LOW
;
385 levelsense
= sense
= bothedge
= 0;
387 case IRQ_TYPE_EDGE_BOTH
:
391 case IRQ_TYPE_EDGE_RISING
:
395 case IRQ_TYPE_EDGE_FALLING
:
398 case IRQ_TYPE_LEVEL_HIGH
:
403 case IRQ_TYPE_LEVEL_LOW
:
408 printk(KERN_ERR
"bogus flow type combination given !\n");
412 regaddr
= get_ext_irq_perf_reg(irq
);
413 reg
= bcm_perf_readl(regaddr
);
416 if (BCMCPU_IS_6348()) {
418 reg
|= EXTIRQ_CFG_LEVELSENSE_6348(irq
);
420 reg
&= ~EXTIRQ_CFG_LEVELSENSE_6348(irq
);
422 reg
|= EXTIRQ_CFG_SENSE_6348(irq
);
424 reg
&= ~EXTIRQ_CFG_SENSE_6348(irq
);
426 reg
|= EXTIRQ_CFG_BOTHEDGE_6348(irq
);
428 reg
&= ~EXTIRQ_CFG_BOTHEDGE_6348(irq
);
431 if (BCMCPU_IS_6338() || BCMCPU_IS_6358() || BCMCPU_IS_6368()) {
433 reg
|= EXTIRQ_CFG_LEVELSENSE(irq
);
435 reg
&= ~EXTIRQ_CFG_LEVELSENSE(irq
);
437 reg
|= EXTIRQ_CFG_SENSE(irq
);
439 reg
&= ~EXTIRQ_CFG_SENSE(irq
);
441 reg
|= EXTIRQ_CFG_BOTHEDGE(irq
);
443 reg
&= ~EXTIRQ_CFG_BOTHEDGE(irq
);
446 bcm_perf_writel(reg
, regaddr
);
448 irqd_set_trigger_type(d
, flow_type
);
449 if (flow_type
& (IRQ_TYPE_LEVEL_LOW
| IRQ_TYPE_LEVEL_HIGH
))
450 __irq_set_handler_locked(d
->irq
, handle_level_irq
);
452 __irq_set_handler_locked(d
->irq
, handle_edge_irq
);
454 return IRQ_SET_MASK_OK_NOCOPY
;
457 static struct irq_chip bcm63xx_internal_irq_chip
= {
458 .name
= "bcm63xx_ipic",
459 .irq_mask
= bcm63xx_internal_irq_mask
,
460 .irq_unmask
= bcm63xx_internal_irq_unmask
,
463 static struct irq_chip bcm63xx_external_irq_chip
= {
464 .name
= "bcm63xx_epic",
465 .irq_ack
= bcm63xx_external_irq_clear
,
467 .irq_mask
= bcm63xx_external_irq_mask
,
468 .irq_unmask
= bcm63xx_external_irq_unmask
,
470 .irq_set_type
= bcm63xx_external_irq_set_type
,
473 static struct irqaction cpu_ip2_cascade_action
= {
474 .handler
= no_action
,
475 .name
= "cascade_ip2",
476 .flags
= IRQF_NO_THREAD
,
479 static struct irqaction cpu_ext_cascade_action
= {
480 .handler
= no_action
,
481 .name
= "cascade_extirq",
482 .flags
= IRQF_NO_THREAD
,
485 void __init
arch_init_irq(void)
491 for (i
= IRQ_INTERNAL_BASE
; i
< NR_IRQS
; ++i
)
492 irq_set_chip_and_handler(i
, &bcm63xx_internal_irq_chip
,
495 for (i
= IRQ_EXTERNAL_BASE
; i
< IRQ_EXTERNAL_BASE
+ ext_irq_count
; ++i
)
496 irq_set_chip_and_handler(i
, &bcm63xx_external_irq_chip
,
499 if (!is_ext_irq_cascaded
) {
500 for (i
= 3; i
< 3 + ext_irq_count
; ++i
)
501 setup_irq(MIPS_CPU_IRQ_BASE
+ i
, &cpu_ext_cascade_action
);
504 setup_irq(MIPS_CPU_IRQ_BASE
+ 2, &cpu_ip2_cascade_action
);