1 // SPDX-License-Identifier: GPL-2.0-only
3 * Atheros AR71xx/AR724x/AR913x MISC interrupt controller
5 * Copyright (C) 2015 Alban Bedel <albeu@free.fr>
6 * Copyright (C) 2010-2011 Jaiganesh Narayanan <jnarayanan@atheros.com>
7 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
8 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
10 * Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP
13 #include <linux/irqchip.h>
14 #include <linux/irqchip/chained_irq.h>
15 #include <linux/of_address.h>
16 #include <linux/of_irq.h>
18 #define AR71XX_RESET_REG_MISC_INT_STATUS 0
19 #define AR71XX_RESET_REG_MISC_INT_ENABLE 4
21 #define ATH79_MISC_IRQ_COUNT 32
22 #define ATH79_MISC_PERF_IRQ 5
24 static int ath79_perfcount_irq
;
26 int get_c0_perfcount_int(void)
28 return ath79_perfcount_irq
;
30 EXPORT_SYMBOL_GPL(get_c0_perfcount_int
);
32 static void ath79_misc_irq_handler(struct irq_desc
*desc
)
34 struct irq_domain
*domain
= irq_desc_get_handler_data(desc
);
35 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
36 void __iomem
*base
= domain
->host_data
;
39 chained_irq_enter(chip
, desc
);
41 pending
= __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_STATUS
) &
42 __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
46 chained_irq_exit(chip
, desc
);
51 int bit
= __ffs(pending
);
53 generic_handle_irq(irq_linear_revmap(domain
, bit
));
57 chained_irq_exit(chip
, desc
);
60 static void ar71xx_misc_irq_unmask(struct irq_data
*d
)
62 void __iomem
*base
= irq_data_get_irq_chip_data(d
);
63 unsigned int irq
= d
->hwirq
;
66 t
= __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
67 __raw_writel(t
| BIT(irq
), base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
70 __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
73 static void ar71xx_misc_irq_mask(struct irq_data
*d
)
75 void __iomem
*base
= irq_data_get_irq_chip_data(d
);
76 unsigned int irq
= d
->hwirq
;
79 t
= __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
80 __raw_writel(t
& ~BIT(irq
), base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
83 __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
86 static void ar724x_misc_irq_ack(struct irq_data
*d
)
88 void __iomem
*base
= irq_data_get_irq_chip_data(d
);
89 unsigned int irq
= d
->hwirq
;
92 t
= __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_STATUS
);
93 __raw_writel(t
& ~BIT(irq
), base
+ AR71XX_RESET_REG_MISC_INT_STATUS
);
96 __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_STATUS
);
99 static struct irq_chip ath79_misc_irq_chip
= {
101 .irq_unmask
= ar71xx_misc_irq_unmask
,
102 .irq_mask
= ar71xx_misc_irq_mask
,
105 static int misc_map(struct irq_domain
*d
, unsigned int irq
, irq_hw_number_t hw
)
107 irq_set_chip_and_handler(irq
, &ath79_misc_irq_chip
, handle_level_irq
);
108 irq_set_chip_data(irq
, d
->host_data
);
112 static const struct irq_domain_ops misc_irq_domain_ops
= {
113 .xlate
= irq_domain_xlate_onecell
,
117 static void __init
ath79_misc_intc_domain_init(
118 struct irq_domain
*domain
, int irq
)
120 void __iomem
*base
= domain
->host_data
;
122 ath79_perfcount_irq
= irq_create_mapping(domain
, ATH79_MISC_PERF_IRQ
);
124 /* Disable and clear all interrupts */
125 __raw_writel(0, base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
126 __raw_writel(0, base
+ AR71XX_RESET_REG_MISC_INT_STATUS
);
128 irq_set_chained_handler_and_data(irq
, ath79_misc_irq_handler
, domain
);
131 static int __init
ath79_misc_intc_of_init(
132 struct device_node
*node
, struct device_node
*parent
)
134 struct irq_domain
*domain
;
138 irq
= irq_of_parse_and_map(node
, 0);
140 pr_err("Failed to get MISC IRQ\n");
144 base
= of_iomap(node
, 0);
146 pr_err("Failed to get MISC IRQ registers\n");
150 domain
= irq_domain_add_linear(node
, ATH79_MISC_IRQ_COUNT
,
151 &misc_irq_domain_ops
, base
);
153 pr_err("Failed to add MISC irqdomain\n");
157 ath79_misc_intc_domain_init(domain
, irq
);
161 static int __init
ar7100_misc_intc_of_init(
162 struct device_node
*node
, struct device_node
*parent
)
164 ath79_misc_irq_chip
.irq_mask_ack
= ar71xx_misc_irq_mask
;
165 return ath79_misc_intc_of_init(node
, parent
);
168 IRQCHIP_DECLARE(ar7100_misc_intc
, "qca,ar7100-misc-intc",
169 ar7100_misc_intc_of_init
);
171 static int __init
ar7240_misc_intc_of_init(
172 struct device_node
*node
, struct device_node
*parent
)
174 ath79_misc_irq_chip
.irq_ack
= ar724x_misc_irq_ack
;
175 return ath79_misc_intc_of_init(node
, parent
);
178 IRQCHIP_DECLARE(ar7240_misc_intc
, "qca,ar7240-misc-intc",
179 ar7240_misc_intc_of_init
);
181 void __init
ath79_misc_irq_init(void __iomem
*regs
, int irq
,
182 int irq_base
, bool is_ar71xx
)
184 struct irq_domain
*domain
;
187 ath79_misc_irq_chip
.irq_mask_ack
= ar71xx_misc_irq_mask
;
189 ath79_misc_irq_chip
.irq_ack
= ar724x_misc_irq_ack
;
191 domain
= irq_domain_add_legacy(NULL
, ATH79_MISC_IRQ_COUNT
,
192 irq_base
, 0, &misc_irq_domain_ops
, regs
);
194 panic("Failed to create MISC irqdomain");
196 ath79_misc_intc_domain_init(domain
, irq
);