2 * Atheros AR71xx/AR724x/AR913x MISC interrupt controller
4 * Copyright (C) 2015 Alban Bedel <albeu@free.fr>
5 * Copyright (C) 2010-2011 Jaiganesh Narayanan <jnarayanan@atheros.com>
6 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
7 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
9 * Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License version 2 as published
13 * by the Free Software Foundation.
16 #include <linux/irqchip.h>
17 #include <linux/irqchip/chained_irq.h>
18 #include <linux/of_address.h>
19 #include <linux/of_irq.h>
21 #define AR71XX_RESET_REG_MISC_INT_STATUS 0
22 #define AR71XX_RESET_REG_MISC_INT_ENABLE 4
24 #define ATH79_MISC_IRQ_COUNT 32
26 static void ath79_misc_irq_handler(struct irq_desc
*desc
)
28 struct irq_domain
*domain
= irq_desc_get_handler_data(desc
);
29 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
30 void __iomem
*base
= domain
->host_data
;
33 chained_irq_enter(chip
, desc
);
35 pending
= __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_STATUS
) &
36 __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
40 chained_irq_exit(chip
, desc
);
45 int bit
= __ffs(pending
);
47 generic_handle_irq(irq_linear_revmap(domain
, bit
));
51 chained_irq_exit(chip
, desc
);
54 static void ar71xx_misc_irq_unmask(struct irq_data
*d
)
56 void __iomem
*base
= irq_data_get_irq_chip_data(d
);
57 unsigned int irq
= d
->hwirq
;
60 t
= __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
61 __raw_writel(t
| BIT(irq
), base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
64 __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
67 static void ar71xx_misc_irq_mask(struct irq_data
*d
)
69 void __iomem
*base
= irq_data_get_irq_chip_data(d
);
70 unsigned int irq
= d
->hwirq
;
73 t
= __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
74 __raw_writel(t
& ~BIT(irq
), base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
77 __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
80 static void ar724x_misc_irq_ack(struct irq_data
*d
)
82 void __iomem
*base
= irq_data_get_irq_chip_data(d
);
83 unsigned int irq
= d
->hwirq
;
86 t
= __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_STATUS
);
87 __raw_writel(t
& ~BIT(irq
), base
+ AR71XX_RESET_REG_MISC_INT_STATUS
);
90 __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_STATUS
);
93 static struct irq_chip ath79_misc_irq_chip
= {
95 .irq_unmask
= ar71xx_misc_irq_unmask
,
96 .irq_mask
= ar71xx_misc_irq_mask
,
99 static int misc_map(struct irq_domain
*d
, unsigned int irq
, irq_hw_number_t hw
)
101 irq_set_chip_and_handler(irq
, &ath79_misc_irq_chip
, handle_level_irq
);
102 irq_set_chip_data(irq
, d
->host_data
);
106 static const struct irq_domain_ops misc_irq_domain_ops
= {
107 .xlate
= irq_domain_xlate_onecell
,
111 static void __init
ath79_misc_intc_domain_init(
112 struct irq_domain
*domain
, int irq
)
114 void __iomem
*base
= domain
->host_data
;
116 /* Disable and clear all interrupts */
117 __raw_writel(0, base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
118 __raw_writel(0, base
+ AR71XX_RESET_REG_MISC_INT_STATUS
);
120 irq_set_chained_handler_and_data(irq
, ath79_misc_irq_handler
, domain
);
123 static int __init
ath79_misc_intc_of_init(
124 struct device_node
*node
, struct device_node
*parent
)
126 struct irq_domain
*domain
;
130 irq
= irq_of_parse_and_map(node
, 0);
132 pr_err("Failed to get MISC IRQ\n");
136 base
= of_iomap(node
, 0);
138 pr_err("Failed to get MISC IRQ registers\n");
142 domain
= irq_domain_add_linear(node
, ATH79_MISC_IRQ_COUNT
,
143 &misc_irq_domain_ops
, base
);
145 pr_err("Failed to add MISC irqdomain\n");
149 ath79_misc_intc_domain_init(domain
, irq
);
153 static int __init
ar7100_misc_intc_of_init(
154 struct device_node
*node
, struct device_node
*parent
)
156 ath79_misc_irq_chip
.irq_mask_ack
= ar71xx_misc_irq_mask
;
157 return ath79_misc_intc_of_init(node
, parent
);
160 IRQCHIP_DECLARE(ar7100_misc_intc
, "qca,ar7100-misc-intc",
161 ar7100_misc_intc_of_init
);
163 static int __init
ar7240_misc_intc_of_init(
164 struct device_node
*node
, struct device_node
*parent
)
166 ath79_misc_irq_chip
.irq_ack
= ar724x_misc_irq_ack
;
167 return ath79_misc_intc_of_init(node
, parent
);
170 IRQCHIP_DECLARE(ar7240_misc_intc
, "qca,ar7240-misc-intc",
171 ar7240_misc_intc_of_init
);
173 void __init
ath79_misc_irq_init(void __iomem
*regs
, int irq
,
174 int irq_base
, bool is_ar71xx
)
176 struct irq_domain
*domain
;
179 ath79_misc_irq_chip
.irq_mask_ack
= ar71xx_misc_irq_mask
;
181 ath79_misc_irq_chip
.irq_ack
= ar724x_misc_irq_ack
;
183 domain
= irq_domain_add_legacy(NULL
, ATH79_MISC_IRQ_COUNT
,
184 irq_base
, 0, &misc_irq_domain_ops
, regs
);
186 panic("Failed to create MISC irqdomain");
188 ath79_misc_intc_domain_init(domain
, irq
);