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
25 #define ATH79_MISC_PERF_IRQ 5
27 static int ath79_perfcount_irq
;
29 int get_c0_perfcount_int(void)
31 return ath79_perfcount_irq
;
33 EXPORT_SYMBOL_GPL(get_c0_perfcount_int
);
35 static void ath79_misc_irq_handler(struct irq_desc
*desc
)
37 struct irq_domain
*domain
= irq_desc_get_handler_data(desc
);
38 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
39 void __iomem
*base
= domain
->host_data
;
42 chained_irq_enter(chip
, desc
);
44 pending
= __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_STATUS
) &
45 __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
49 chained_irq_exit(chip
, desc
);
54 int bit
= __ffs(pending
);
56 generic_handle_irq(irq_linear_revmap(domain
, bit
));
60 chained_irq_exit(chip
, desc
);
63 static void ar71xx_misc_irq_unmask(struct irq_data
*d
)
65 void __iomem
*base
= irq_data_get_irq_chip_data(d
);
66 unsigned int irq
= d
->hwirq
;
69 t
= __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
70 __raw_writel(t
| BIT(irq
), base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
73 __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
76 static void ar71xx_misc_irq_mask(struct irq_data
*d
)
78 void __iomem
*base
= irq_data_get_irq_chip_data(d
);
79 unsigned int irq
= d
->hwirq
;
82 t
= __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
83 __raw_writel(t
& ~BIT(irq
), base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
86 __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
89 static void ar724x_misc_irq_ack(struct irq_data
*d
)
91 void __iomem
*base
= irq_data_get_irq_chip_data(d
);
92 unsigned int irq
= d
->hwirq
;
95 t
= __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_STATUS
);
96 __raw_writel(t
& ~BIT(irq
), base
+ AR71XX_RESET_REG_MISC_INT_STATUS
);
99 __raw_readl(base
+ AR71XX_RESET_REG_MISC_INT_STATUS
);
102 static struct irq_chip ath79_misc_irq_chip
= {
104 .irq_unmask
= ar71xx_misc_irq_unmask
,
105 .irq_mask
= ar71xx_misc_irq_mask
,
108 static int misc_map(struct irq_domain
*d
, unsigned int irq
, irq_hw_number_t hw
)
110 irq_set_chip_and_handler(irq
, &ath79_misc_irq_chip
, handle_level_irq
);
111 irq_set_chip_data(irq
, d
->host_data
);
115 static const struct irq_domain_ops misc_irq_domain_ops
= {
116 .xlate
= irq_domain_xlate_onecell
,
120 static void __init
ath79_misc_intc_domain_init(
121 struct irq_domain
*domain
, int irq
)
123 void __iomem
*base
= domain
->host_data
;
125 ath79_perfcount_irq
= irq_create_mapping(domain
, ATH79_MISC_PERF_IRQ
);
127 /* Disable and clear all interrupts */
128 __raw_writel(0, base
+ AR71XX_RESET_REG_MISC_INT_ENABLE
);
129 __raw_writel(0, base
+ AR71XX_RESET_REG_MISC_INT_STATUS
);
131 irq_set_chained_handler_and_data(irq
, ath79_misc_irq_handler
, domain
);
134 static int __init
ath79_misc_intc_of_init(
135 struct device_node
*node
, struct device_node
*parent
)
137 struct irq_domain
*domain
;
141 irq
= irq_of_parse_and_map(node
, 0);
143 pr_err("Failed to get MISC IRQ\n");
147 base
= of_iomap(node
, 0);
149 pr_err("Failed to get MISC IRQ registers\n");
153 domain
= irq_domain_add_linear(node
, ATH79_MISC_IRQ_COUNT
,
154 &misc_irq_domain_ops
, base
);
156 pr_err("Failed to add MISC irqdomain\n");
160 ath79_misc_intc_domain_init(domain
, irq
);
164 static int __init
ar7100_misc_intc_of_init(
165 struct device_node
*node
, struct device_node
*parent
)
167 ath79_misc_irq_chip
.irq_mask_ack
= ar71xx_misc_irq_mask
;
168 return ath79_misc_intc_of_init(node
, parent
);
171 IRQCHIP_DECLARE(ar7100_misc_intc
, "qca,ar7100-misc-intc",
172 ar7100_misc_intc_of_init
);
174 static int __init
ar7240_misc_intc_of_init(
175 struct device_node
*node
, struct device_node
*parent
)
177 ath79_misc_irq_chip
.irq_ack
= ar724x_misc_irq_ack
;
178 return ath79_misc_intc_of_init(node
, parent
);
181 IRQCHIP_DECLARE(ar7240_misc_intc
, "qca,ar7240-misc-intc",
182 ar7240_misc_intc_of_init
);
184 void __init
ath79_misc_irq_init(void __iomem
*regs
, int irq
,
185 int irq_base
, bool is_ar71xx
)
187 struct irq_domain
*domain
;
190 ath79_misc_irq_chip
.irq_mask_ack
= ar71xx_misc_irq_mask
;
192 ath79_misc_irq_chip
.irq_ack
= ar724x_misc_irq_ack
;
194 domain
= irq_domain_add_legacy(NULL
, ATH79_MISC_IRQ_COUNT
,
195 irq_base
, 0, &misc_irq_domain_ops
, regs
);
197 panic("Failed to create MISC irqdomain");
199 ath79_misc_intc_domain_init(domain
, irq
);