blob: 2c3991a4e512913467e722bacbf708ae524b1c90 [file] [log] [blame]
Gabor Juhosd4a67d92011-01-04 21:28:14 +01001/*
2 * Atheros AR71xx/AR724x/AR913x specific interrupt handling
3 *
Gabor Juhosfce5cc62012-03-14 10:45:25 +01004 * Copyright (C) 2010-2011 Jaiganesh Narayanan <jnarayanan@atheros.com>
Gabor Juhos4dbcbdf2012-03-14 10:45:24 +01005 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
Gabor Juhosd4a67d92011-01-04 21:28:14 +01006 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 *
Gabor Juhosfce5cc62012-03-14 10:45:25 +01008 * Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP
Gabor Juhosd4a67d92011-01-04 21:28:14 +01009 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published
12 * by the Free Software Foundation.
13 */
14
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/interrupt.h>
18#include <linux/irq.h>
19
20#include <asm/irq_cpu.h>
21#include <asm/mipsregs.h>
22
23#include <asm/mach-ath79/ath79.h>
24#include <asm/mach-ath79/ar71xx_regs.h>
25#include "common.h"
26
Gabor Juhosd4a67d92011-01-04 21:28:14 +010027static void ath79_misc_irq_handler(unsigned int irq, struct irq_desc *desc)
28{
29 void __iomem *base = ath79_reset_base;
30 u32 pending;
31
32 pending = __raw_readl(base + AR71XX_RESET_REG_MISC_INT_STATUS) &
33 __raw_readl(base + AR71XX_RESET_REG_MISC_INT_ENABLE);
34
Gabor Juhos9c099c42013-01-29 16:13:17 +000035 if (!pending) {
Gabor Juhosd4a67d92011-01-04 21:28:14 +010036 spurious_interrupt();
Gabor Juhos9c099c42013-01-29 16:13:17 +000037 return;
38 }
39
40 while (pending) {
41 int bit = __ffs(pending);
42
43 generic_handle_irq(ATH79_MISC_IRQ(bit));
44 pending &= ~BIT(bit);
45 }
Gabor Juhosd4a67d92011-01-04 21:28:14 +010046}
47
Thomas Gleixner3fb88182011-03-23 21:08:47 +000048static void ar71xx_misc_irq_unmask(struct irq_data *d)
Gabor Juhosd4a67d92011-01-04 21:28:14 +010049{
Thomas Gleixner3fb88182011-03-23 21:08:47 +000050 unsigned int irq = d->irq - ATH79_MISC_IRQ_BASE;
Gabor Juhosd4a67d92011-01-04 21:28:14 +010051 void __iomem *base = ath79_reset_base;
52 u32 t;
53
Gabor Juhosd4a67d92011-01-04 21:28:14 +010054 t = __raw_readl(base + AR71XX_RESET_REG_MISC_INT_ENABLE);
55 __raw_writel(t | (1 << irq), base + AR71XX_RESET_REG_MISC_INT_ENABLE);
56
57 /* flush write */
58 __raw_readl(base + AR71XX_RESET_REG_MISC_INT_ENABLE);
59}
60
Thomas Gleixner3fb88182011-03-23 21:08:47 +000061static void ar71xx_misc_irq_mask(struct irq_data *d)
Gabor Juhosd4a67d92011-01-04 21:28:14 +010062{
Thomas Gleixner3fb88182011-03-23 21:08:47 +000063 unsigned int irq = d->irq - ATH79_MISC_IRQ_BASE;
Gabor Juhosd4a67d92011-01-04 21:28:14 +010064 void __iomem *base = ath79_reset_base;
65 u32 t;
66
Gabor Juhosd4a67d92011-01-04 21:28:14 +010067 t = __raw_readl(base + AR71XX_RESET_REG_MISC_INT_ENABLE);
68 __raw_writel(t & ~(1 << irq), base + AR71XX_RESET_REG_MISC_INT_ENABLE);
69
70 /* flush write */
71 __raw_readl(base + AR71XX_RESET_REG_MISC_INT_ENABLE);
72}
73
Thomas Gleixner3fb88182011-03-23 21:08:47 +000074static void ar724x_misc_irq_ack(struct irq_data *d)
Gabor Juhosd4a67d92011-01-04 21:28:14 +010075{
Thomas Gleixner3fb88182011-03-23 21:08:47 +000076 unsigned int irq = d->irq - ATH79_MISC_IRQ_BASE;
Gabor Juhosd4a67d92011-01-04 21:28:14 +010077 void __iomem *base = ath79_reset_base;
78 u32 t;
79
Gabor Juhosd4a67d92011-01-04 21:28:14 +010080 t = __raw_readl(base + AR71XX_RESET_REG_MISC_INT_STATUS);
81 __raw_writel(t & ~(1 << irq), base + AR71XX_RESET_REG_MISC_INT_STATUS);
82
83 /* flush write */
84 __raw_readl(base + AR71XX_RESET_REG_MISC_INT_STATUS);
85}
86
87static struct irq_chip ath79_misc_irq_chip = {
88 .name = "MISC",
Thomas Gleixner3fb88182011-03-23 21:08:47 +000089 .irq_unmask = ar71xx_misc_irq_unmask,
90 .irq_mask = ar71xx_misc_irq_mask,
Gabor Juhosd4a67d92011-01-04 21:28:14 +010091};
92
93static void __init ath79_misc_irq_init(void)
94{
95 void __iomem *base = ath79_reset_base;
96 int i;
97
98 __raw_writel(0, base + AR71XX_RESET_REG_MISC_INT_ENABLE);
99 __raw_writel(0, base + AR71XX_RESET_REG_MISC_INT_STATUS);
100
101 if (soc_is_ar71xx() || soc_is_ar913x())
Thomas Gleixner3fb88182011-03-23 21:08:47 +0000102 ath79_misc_irq_chip.irq_mask_ack = ar71xx_misc_irq_mask;
Gabor Juhos53330332013-02-15 18:53:47 +0000103 else if (soc_is_ar724x() ||
104 soc_is_ar933x() ||
105 soc_is_ar934x() ||
106 soc_is_qca955x())
Thomas Gleixner3fb88182011-03-23 21:08:47 +0000107 ath79_misc_irq_chip.irq_ack = ar724x_misc_irq_ack;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100108 else
109 BUG();
110
111 for (i = ATH79_MISC_IRQ_BASE;
112 i < ATH79_MISC_IRQ_BASE + ATH79_MISC_IRQ_COUNT; i++) {
Thomas Gleixnere4ec7982011-03-27 15:19:28 +0200113 irq_set_chip_and_handler(i, &ath79_misc_irq_chip,
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100114 handle_level_irq);
115 }
116
Gabor Juhos7e69c102013-02-07 19:32:23 +0000117 irq_set_chained_handler(ATH79_CPU_IRQ(6), ath79_misc_irq_handler);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100118}
119
Gabor Juhosfce5cc62012-03-14 10:45:25 +0100120static void ar934x_ip2_irq_dispatch(unsigned int irq, struct irq_desc *desc)
121{
122 u32 status;
123
124 disable_irq_nosync(irq);
125
126 status = ath79_reset_rr(AR934X_RESET_REG_PCIE_WMAC_INT_STATUS);
127
128 if (status & AR934X_PCIE_WMAC_INT_PCIE_ALL) {
Alban Bedel24b0e3e2015-04-19 14:30:03 +0200129 ath79_ddr_wb_flush(3);
Gabor Juhosfce5cc62012-03-14 10:45:25 +0100130 generic_handle_irq(ATH79_IP2_IRQ(0));
131 } else if (status & AR934X_PCIE_WMAC_INT_WMAC_ALL) {
Alban Bedel24b0e3e2015-04-19 14:30:03 +0200132 ath79_ddr_wb_flush(4);
Gabor Juhosfce5cc62012-03-14 10:45:25 +0100133 generic_handle_irq(ATH79_IP2_IRQ(1));
134 } else {
135 spurious_interrupt();
136 }
137
138 enable_irq(irq);
139}
140
141static void ar934x_ip2_irq_init(void)
142{
143 int i;
144
145 for (i = ATH79_IP2_IRQ_BASE;
146 i < ATH79_IP2_IRQ_BASE + ATH79_IP2_IRQ_COUNT; i++)
147 irq_set_chip_and_handler(i, &dummy_irq_chip,
148 handle_level_irq);
149
Gabor Juhos7e69c102013-02-07 19:32:23 +0000150 irq_set_chained_handler(ATH79_CPU_IRQ(2), ar934x_ip2_irq_dispatch);
Gabor Juhosfce5cc62012-03-14 10:45:25 +0100151}
152
Gabor Juhos53330332013-02-15 18:53:47 +0000153static void qca955x_ip2_irq_dispatch(unsigned int irq, struct irq_desc *desc)
154{
155 u32 status;
156
157 disable_irq_nosync(irq);
158
159 status = ath79_reset_rr(QCA955X_RESET_REG_EXT_INT_STATUS);
160 status &= QCA955X_EXT_INT_PCIE_RC1_ALL | QCA955X_EXT_INT_WMAC_ALL;
161
162 if (status == 0) {
163 spurious_interrupt();
164 goto enable;
165 }
166
167 if (status & QCA955X_EXT_INT_PCIE_RC1_ALL) {
168 /* TODO: flush DDR? */
169 generic_handle_irq(ATH79_IP2_IRQ(0));
170 }
171
172 if (status & QCA955X_EXT_INT_WMAC_ALL) {
173 /* TODO: flush DDR? */
174 generic_handle_irq(ATH79_IP2_IRQ(1));
175 }
176
177enable:
178 enable_irq(irq);
179}
180
181static void qca955x_ip3_irq_dispatch(unsigned int irq, struct irq_desc *desc)
182{
183 u32 status;
184
185 disable_irq_nosync(irq);
186
187 status = ath79_reset_rr(QCA955X_RESET_REG_EXT_INT_STATUS);
188 status &= QCA955X_EXT_INT_PCIE_RC2_ALL |
189 QCA955X_EXT_INT_USB1 |
190 QCA955X_EXT_INT_USB2;
191
192 if (status == 0) {
193 spurious_interrupt();
194 goto enable;
195 }
196
197 if (status & QCA955X_EXT_INT_USB1) {
198 /* TODO: flush DDR? */
199 generic_handle_irq(ATH79_IP3_IRQ(0));
200 }
201
202 if (status & QCA955X_EXT_INT_USB2) {
203 /* TODO: flush DDR? */
204 generic_handle_irq(ATH79_IP3_IRQ(1));
205 }
206
207 if (status & QCA955X_EXT_INT_PCIE_RC2_ALL) {
208 /* TODO: flush DDR? */
209 generic_handle_irq(ATH79_IP3_IRQ(2));
210 }
211
212enable:
213 enable_irq(irq);
214}
215
216static void qca955x_irq_init(void)
217{
218 int i;
219
220 for (i = ATH79_IP2_IRQ_BASE;
221 i < ATH79_IP2_IRQ_BASE + ATH79_IP2_IRQ_COUNT; i++)
222 irq_set_chip_and_handler(i, &dummy_irq_chip,
223 handle_level_irq);
224
225 irq_set_chained_handler(ATH79_CPU_IRQ(2), qca955x_ip2_irq_dispatch);
226
227 for (i = ATH79_IP3_IRQ_BASE;
228 i < ATH79_IP3_IRQ_BASE + ATH79_IP3_IRQ_COUNT; i++)
229 irq_set_chip_and_handler(i, &dummy_irq_chip,
230 handle_level_irq);
231
232 irq_set_chained_handler(ATH79_CPU_IRQ(3), qca955x_ip3_irq_dispatch);
233}
234
Gabor Juhos4dbcbdf2012-03-14 10:45:24 +0100235/*
236 * The IP2/IP3 lines are tied to a PCI/WMAC/USB device. Drivers for
237 * these devices typically allocate coherent DMA memory, however the
238 * DMA controller may still have some unsynchronized data in the FIFO.
239 * Issue a flush in the handlers to ensure that the driver sees
240 * the update.
Alban Bedel24b0e3e2015-04-19 14:30:03 +0200241 *
242 * This array map the interrupt lines to the DDR write buffer channels.
Gabor Juhos4dbcbdf2012-03-14 10:45:24 +0100243 */
Gabor Juhos53330332013-02-15 18:53:47 +0000244
Alban Bedel24b0e3e2015-04-19 14:30:03 +0200245static unsigned irq_wb_chan[8] = {
246 -1, -1, -1, -1, -1, -1, -1, -1,
247};
Gabor Juhos53330332013-02-15 18:53:47 +0000248
Alban Bedel24b0e3e2015-04-19 14:30:03 +0200249asmlinkage void plat_irq_dispatch(void)
Gabor Juhos53330332013-02-15 18:53:47 +0000250{
Alban Bedel24b0e3e2015-04-19 14:30:03 +0200251 unsigned long pending;
252 int irq;
Gabor Juhos53330332013-02-15 18:53:47 +0000253
Alban Bedel24b0e3e2015-04-19 14:30:03 +0200254 pending = read_c0_status() & read_c0_cause() & ST0_IM;
Gabor Juhos4dbcbdf2012-03-14 10:45:24 +0100255
Alban Bedel24b0e3e2015-04-19 14:30:03 +0200256 if (!pending) {
257 spurious_interrupt();
258 return;
259 }
Gabor Juhos4dbcbdf2012-03-14 10:45:24 +0100260
Alban Bedel24b0e3e2015-04-19 14:30:03 +0200261 pending >>= CAUSEB_IP;
262 while (pending) {
263 irq = fls(pending) - 1;
264 if (irq < ARRAY_SIZE(irq_wb_chan) && irq_wb_chan[irq] != -1)
265 ath79_ddr_wb_flush(irq_wb_chan[irq]);
266 do_IRQ(MIPS_CPU_IRQ_BASE + irq);
267 pending &= ~BIT(irq);
268 }
Gabor Juhosfce5cc62012-03-14 10:45:25 +0100269}
270
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100271void __init arch_init_irq(void)
272{
Alban Bedel24b0e3e2015-04-19 14:30:03 +0200273 if (soc_is_ar71xx() || soc_is_ar724x() ||
274 soc_is_ar913x() || soc_is_ar933x()) {
275 irq_wb_chan[2] = 3;
276 irq_wb_chan[3] = 2;
Gabor Juhosfce5cc62012-03-14 10:45:25 +0100277 } else if (soc_is_ar934x()) {
Alban Bedel24b0e3e2015-04-19 14:30:03 +0200278 irq_wb_chan[3] = 2;
Gabor Juhos4dbcbdf2012-03-14 10:45:24 +0100279 }
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100280
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100281 mips_cpu_irq_init();
282 ath79_misc_irq_init();
Gabor Juhosfce5cc62012-03-14 10:45:25 +0100283
284 if (soc_is_ar934x())
285 ar934x_ip2_irq_init();
Gabor Juhos53330332013-02-15 18:53:47 +0000286 else if (soc_is_qca955x())
287 qca955x_irq_init();
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100288}