blob: c325806561bedd932db973470d4bedfaf3950886 [file] [log] [blame]
Magnus Damm44358042013-02-18 23:28:34 +09001/*
2 * Renesas INTC External IRQ Pin Driver
3 *
4 * Copyright (C) 2013 Magnus Damm
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
Geert Uytterhoeven705bc962014-09-12 15:15:18 +020020#include <linux/clk.h>
Magnus Damm44358042013-02-18 23:28:34 +090021#include <linux/init.h>
Guennadi Liakhovetski894db162013-06-13 11:23:38 +020022#include <linux/of.h>
Magnus Damm44358042013-02-18 23:28:34 +090023#include <linux/platform_device.h>
24#include <linux/spinlock.h>
25#include <linux/interrupt.h>
26#include <linux/ioport.h>
27#include <linux/io.h>
28#include <linux/irq.h>
29#include <linux/irqdomain.h>
30#include <linux/err.h>
31#include <linux/slab.h>
32#include <linux/module.h>
Magnus Damme03f9082014-12-03 21:18:03 +090033#include <linux/of_device.h>
Magnus Damm44358042013-02-18 23:28:34 +090034#include <linux/platform_data/irq-renesas-intc-irqpin.h>
Geert Uytterhoeven705bc962014-09-12 15:15:18 +020035#include <linux/pm_runtime.h>
Magnus Damm44358042013-02-18 23:28:34 +090036
37#define INTC_IRQPIN_MAX 8 /* maximum 8 interrupts per driver instance */
38
39#define INTC_IRQPIN_REG_SENSE 0 /* ICRn */
40#define INTC_IRQPIN_REG_PRIO 1 /* INTPRInn */
41#define INTC_IRQPIN_REG_SOURCE 2 /* INTREQnn */
42#define INTC_IRQPIN_REG_MASK 3 /* INTMSKnn */
43#define INTC_IRQPIN_REG_CLEAR 4 /* INTMSKCLRnn */
Magnus Damme03f9082014-12-03 21:18:03 +090044#define INTC_IRQPIN_REG_NR_MANDATORY 5
45#define INTC_IRQPIN_REG_IRLM 5 /* ICR0 with IRLM bit (optional) */
46#define INTC_IRQPIN_REG_NR 6
Magnus Damm44358042013-02-18 23:28:34 +090047
48/* INTC external IRQ PIN hardware register access:
49 *
50 * SENSE is read-write 32-bit with 2-bits or 4-bits per IRQ (*)
51 * PRIO is read-write 32-bit with 4-bits per IRQ (**)
52 * SOURCE is read-only 32-bit or 8-bit with 1-bit per IRQ (***)
53 * MASK is write-only 32-bit or 8-bit with 1-bit per IRQ (***)
54 * CLEAR is write-only 32-bit or 8-bit with 1-bit per IRQ (***)
55 *
56 * (*) May be accessed by more than one driver instance - lock needed
57 * (**) Read-modify-write access by one driver instance - lock needed
58 * (***) Accessed by one driver instance only - no locking needed
59 */
60
61struct intc_irqpin_iomem {
62 void __iomem *iomem;
63 unsigned long (*read)(void __iomem *iomem);
64 void (*write)(void __iomem *iomem, unsigned long data);
65 int width;
Magnus Damm862d3092013-02-26 20:58:44 +090066};
Magnus Damm44358042013-02-18 23:28:34 +090067
68struct intc_irqpin_irq {
69 int hw_irq;
Magnus Damm33f958f2013-02-26 20:58:54 +090070 int requested_irq;
71 int domain_irq;
Magnus Damm44358042013-02-18 23:28:34 +090072 struct intc_irqpin_priv *p;
Magnus Damm862d3092013-02-26 20:58:44 +090073};
Magnus Damm44358042013-02-18 23:28:34 +090074
75struct intc_irqpin_priv {
76 struct intc_irqpin_iomem iomem[INTC_IRQPIN_REG_NR];
77 struct intc_irqpin_irq irq[INTC_IRQPIN_MAX];
78 struct renesas_intc_irqpin_config config;
79 unsigned int number_of_irqs;
80 struct platform_device *pdev;
81 struct irq_chip irq_chip;
82 struct irq_domain *irq_domain;
Geert Uytterhoeven705bc962014-09-12 15:15:18 +020083 struct clk *clk;
Bastian Hecht427cc722013-03-27 14:54:03 +010084 bool shared_irqs;
85 u8 shared_irq_mask;
Magnus Damm44358042013-02-18 23:28:34 +090086};
87
Magnus Damme03f9082014-12-03 21:18:03 +090088struct intc_irqpin_irlm_config {
89 unsigned int irlm_bit;
90};
91
Magnus Damm44358042013-02-18 23:28:34 +090092static unsigned long intc_irqpin_read32(void __iomem *iomem)
93{
94 return ioread32(iomem);
95}
96
97static unsigned long intc_irqpin_read8(void __iomem *iomem)
98{
99 return ioread8(iomem);
100}
101
102static void intc_irqpin_write32(void __iomem *iomem, unsigned long data)
103{
104 iowrite32(data, iomem);
105}
106
107static void intc_irqpin_write8(void __iomem *iomem, unsigned long data)
108{
109 iowrite8(data, iomem);
110}
111
112static inline unsigned long intc_irqpin_read(struct intc_irqpin_priv *p,
113 int reg)
114{
115 struct intc_irqpin_iomem *i = &p->iomem[reg];
Magnus Damm862d3092013-02-26 20:58:44 +0900116
Magnus Damm44358042013-02-18 23:28:34 +0900117 return i->read(i->iomem);
118}
119
120static inline void intc_irqpin_write(struct intc_irqpin_priv *p,
121 int reg, unsigned long data)
122{
123 struct intc_irqpin_iomem *i = &p->iomem[reg];
Magnus Damm862d3092013-02-26 20:58:44 +0900124
Magnus Damm44358042013-02-18 23:28:34 +0900125 i->write(i->iomem, data);
126}
127
128static inline unsigned long intc_irqpin_hwirq_mask(struct intc_irqpin_priv *p,
129 int reg, int hw_irq)
130{
131 return BIT((p->iomem[reg].width - 1) - hw_irq);
132}
133
134static inline void intc_irqpin_irq_write_hwirq(struct intc_irqpin_priv *p,
135 int reg, int hw_irq)
136{
137 intc_irqpin_write(p, reg, intc_irqpin_hwirq_mask(p, reg, hw_irq));
138}
139
140static DEFINE_RAW_SPINLOCK(intc_irqpin_lock); /* only used by slow path */
141
142static void intc_irqpin_read_modify_write(struct intc_irqpin_priv *p,
143 int reg, int shift,
144 int width, int value)
145{
146 unsigned long flags;
147 unsigned long tmp;
148
149 raw_spin_lock_irqsave(&intc_irqpin_lock, flags);
150
151 tmp = intc_irqpin_read(p, reg);
152 tmp &= ~(((1 << width) - 1) << shift);
153 tmp |= value << shift;
154 intc_irqpin_write(p, reg, tmp);
155
156 raw_spin_unlock_irqrestore(&intc_irqpin_lock, flags);
157}
158
159static void intc_irqpin_mask_unmask_prio(struct intc_irqpin_priv *p,
160 int irq, int do_mask)
161{
Laurent Pincharte55bc552013-11-09 13:18:01 +0100162 /* The PRIO register is assumed to be 32-bit with fixed 4-bit fields. */
163 int bitfield_width = 4;
164 int shift = 32 - (irq + 1) * bitfield_width;
Magnus Damm44358042013-02-18 23:28:34 +0900165
166 intc_irqpin_read_modify_write(p, INTC_IRQPIN_REG_PRIO,
167 shift, bitfield_width,
168 do_mask ? 0 : (1 << bitfield_width) - 1);
169}
170
171static int intc_irqpin_set_sense(struct intc_irqpin_priv *p, int irq, int value)
172{
Laurent Pincharte55bc552013-11-09 13:18:01 +0100173 /* The SENSE register is assumed to be 32-bit. */
Magnus Damm44358042013-02-18 23:28:34 +0900174 int bitfield_width = p->config.sense_bitfield_width;
Laurent Pincharte55bc552013-11-09 13:18:01 +0100175 int shift = 32 - (irq + 1) * bitfield_width;
Magnus Damm44358042013-02-18 23:28:34 +0900176
177 dev_dbg(&p->pdev->dev, "sense irq = %d, mode = %d\n", irq, value);
178
179 if (value >= (1 << bitfield_width))
180 return -EINVAL;
181
182 intc_irqpin_read_modify_write(p, INTC_IRQPIN_REG_SENSE, shift,
183 bitfield_width, value);
184 return 0;
185}
186
187static void intc_irqpin_dbg(struct intc_irqpin_irq *i, char *str)
188{
189 dev_dbg(&i->p->pdev->dev, "%s (%d:%d:%d)\n",
Magnus Damm33f958f2013-02-26 20:58:54 +0900190 str, i->requested_irq, i->hw_irq, i->domain_irq);
Magnus Damm44358042013-02-18 23:28:34 +0900191}
192
193static void intc_irqpin_irq_enable(struct irq_data *d)
194{
195 struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d);
196 int hw_irq = irqd_to_hwirq(d);
197
198 intc_irqpin_dbg(&p->irq[hw_irq], "enable");
199 intc_irqpin_irq_write_hwirq(p, INTC_IRQPIN_REG_CLEAR, hw_irq);
200}
201
202static void intc_irqpin_irq_disable(struct irq_data *d)
203{
204 struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d);
205 int hw_irq = irqd_to_hwirq(d);
206
207 intc_irqpin_dbg(&p->irq[hw_irq], "disable");
208 intc_irqpin_irq_write_hwirq(p, INTC_IRQPIN_REG_MASK, hw_irq);
209}
210
Bastian Hecht427cc722013-03-27 14:54:03 +0100211static void intc_irqpin_shared_irq_enable(struct irq_data *d)
212{
213 struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d);
214 int hw_irq = irqd_to_hwirq(d);
215
216 intc_irqpin_dbg(&p->irq[hw_irq], "shared enable");
217 intc_irqpin_irq_write_hwirq(p, INTC_IRQPIN_REG_CLEAR, hw_irq);
218
219 p->shared_irq_mask &= ~BIT(hw_irq);
220}
221
222static void intc_irqpin_shared_irq_disable(struct irq_data *d)
223{
224 struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d);
225 int hw_irq = irqd_to_hwirq(d);
226
227 intc_irqpin_dbg(&p->irq[hw_irq], "shared disable");
228 intc_irqpin_irq_write_hwirq(p, INTC_IRQPIN_REG_MASK, hw_irq);
229
230 p->shared_irq_mask |= BIT(hw_irq);
231}
232
Magnus Damm44358042013-02-18 23:28:34 +0900233static void intc_irqpin_irq_enable_force(struct irq_data *d)
234{
235 struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d);
Magnus Damm33f958f2013-02-26 20:58:54 +0900236 int irq = p->irq[irqd_to_hwirq(d)].requested_irq;
Magnus Damm44358042013-02-18 23:28:34 +0900237
238 intc_irqpin_irq_enable(d);
Magnus Dammd1b6aec2013-02-26 20:59:04 +0900239
240 /* enable interrupt through parent interrupt controller,
241 * assumes non-shared interrupt with 1:1 mapping
242 * needed for busted IRQs on some SoCs like sh73a0
243 */
Magnus Damm44358042013-02-18 23:28:34 +0900244 irq_get_chip(irq)->irq_unmask(irq_get_irq_data(irq));
245}
246
247static void intc_irqpin_irq_disable_force(struct irq_data *d)
248{
249 struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d);
Magnus Damm33f958f2013-02-26 20:58:54 +0900250 int irq = p->irq[irqd_to_hwirq(d)].requested_irq;
Magnus Damm44358042013-02-18 23:28:34 +0900251
Magnus Dammd1b6aec2013-02-26 20:59:04 +0900252 /* disable interrupt through parent interrupt controller,
253 * assumes non-shared interrupt with 1:1 mapping
254 * needed for busted IRQs on some SoCs like sh73a0
255 */
Magnus Damm44358042013-02-18 23:28:34 +0900256 irq_get_chip(irq)->irq_mask(irq_get_irq_data(irq));
257 intc_irqpin_irq_disable(d);
258}
259
260#define INTC_IRQ_SENSE_VALID 0x10
261#define INTC_IRQ_SENSE(x) (x + INTC_IRQ_SENSE_VALID)
262
263static unsigned char intc_irqpin_sense[IRQ_TYPE_SENSE_MASK + 1] = {
264 [IRQ_TYPE_EDGE_FALLING] = INTC_IRQ_SENSE(0x00),
265 [IRQ_TYPE_EDGE_RISING] = INTC_IRQ_SENSE(0x01),
266 [IRQ_TYPE_LEVEL_LOW] = INTC_IRQ_SENSE(0x02),
267 [IRQ_TYPE_LEVEL_HIGH] = INTC_IRQ_SENSE(0x03),
268 [IRQ_TYPE_EDGE_BOTH] = INTC_IRQ_SENSE(0x04),
269};
270
271static int intc_irqpin_irq_set_type(struct irq_data *d, unsigned int type)
272{
273 unsigned char value = intc_irqpin_sense[type & IRQ_TYPE_SENSE_MASK];
274 struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d);
275
276 if (!(value & INTC_IRQ_SENSE_VALID))
277 return -EINVAL;
278
279 return intc_irqpin_set_sense(p, irqd_to_hwirq(d),
280 value ^ INTC_IRQ_SENSE_VALID);
281}
282
Geert Uytterhoeven705bc962014-09-12 15:15:18 +0200283static int intc_irqpin_irq_set_wake(struct irq_data *d, unsigned int on)
284{
285 struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d);
Geert Uytterhoevenf4e209c2015-09-08 19:00:35 +0200286 int hw_irq = irqd_to_hwirq(d);
287
288 irq_set_irq_wake(p->irq[hw_irq].requested_irq, on);
Geert Uytterhoeven705bc962014-09-12 15:15:18 +0200289
290 if (!p->clk)
291 return 0;
292
293 if (on)
294 clk_enable(p->clk);
295 else
296 clk_disable(p->clk);
297
298 return 0;
299}
300
Magnus Damm44358042013-02-18 23:28:34 +0900301static irqreturn_t intc_irqpin_irq_handler(int irq, void *dev_id)
302{
303 struct intc_irqpin_irq *i = dev_id;
304 struct intc_irqpin_priv *p = i->p;
305 unsigned long bit;
306
307 intc_irqpin_dbg(i, "demux1");
308 bit = intc_irqpin_hwirq_mask(p, INTC_IRQPIN_REG_SOURCE, i->hw_irq);
309
310 if (intc_irqpin_read(p, INTC_IRQPIN_REG_SOURCE) & bit) {
311 intc_irqpin_write(p, INTC_IRQPIN_REG_SOURCE, ~bit);
312 intc_irqpin_dbg(i, "demux2");
Magnus Damm33f958f2013-02-26 20:58:54 +0900313 generic_handle_irq(i->domain_irq);
Magnus Damm44358042013-02-18 23:28:34 +0900314 return IRQ_HANDLED;
315 }
316 return IRQ_NONE;
317}
318
Bastian Hecht427cc722013-03-27 14:54:03 +0100319static irqreturn_t intc_irqpin_shared_irq_handler(int irq, void *dev_id)
320{
321 struct intc_irqpin_priv *p = dev_id;
322 unsigned int reg_source = intc_irqpin_read(p, INTC_IRQPIN_REG_SOURCE);
323 irqreturn_t status = IRQ_NONE;
324 int k;
325
326 for (k = 0; k < 8; k++) {
327 if (reg_source & BIT(7 - k)) {
328 if (BIT(k) & p->shared_irq_mask)
329 continue;
330
331 status |= intc_irqpin_irq_handler(irq, &p->irq[k]);
332 }
333 }
334
335 return status;
336}
337
Geert Uytterhoeven769b5cf2015-09-09 13:42:54 +0200338/*
339 * This lock class tells lockdep that INTC External IRQ Pin irqs are in a
340 * different category than their parents, so it won't report false recursion.
341 */
342static struct lock_class_key intc_irqpin_irq_lock_class;
343
Magnus Damm44358042013-02-18 23:28:34 +0900344static int intc_irqpin_irq_domain_map(struct irq_domain *h, unsigned int virq,
345 irq_hw_number_t hw)
346{
347 struct intc_irqpin_priv *p = h->host_data;
348
Magnus Damm33f958f2013-02-26 20:58:54 +0900349 p->irq[hw].domain_irq = virq;
350 p->irq[hw].hw_irq = hw;
351
Magnus Damm44358042013-02-18 23:28:34 +0900352 intc_irqpin_dbg(&p->irq[hw], "map");
353 irq_set_chip_data(virq, h->host_data);
Geert Uytterhoeven769b5cf2015-09-09 13:42:54 +0200354 irq_set_lockdep_class(virq, &intc_irqpin_irq_lock_class);
Magnus Damm44358042013-02-18 23:28:34 +0900355 irq_set_chip_and_handler(virq, &p->irq_chip, handle_level_irq);
Magnus Damm44358042013-02-18 23:28:34 +0900356 return 0;
357}
358
Krzysztof Kozlowski96009732015-04-27 21:54:24 +0900359static const struct irq_domain_ops intc_irqpin_irq_domain_ops = {
Magnus Damm44358042013-02-18 23:28:34 +0900360 .map = intc_irqpin_irq_domain_map,
Magnus Damm9d833bbe2013-03-06 15:16:08 +0900361 .xlate = irq_domain_xlate_twocell,
Magnus Damm44358042013-02-18 23:28:34 +0900362};
363
Ulrich Hecht26c21dd2015-09-30 12:03:07 +0200364static const struct intc_irqpin_irlm_config intc_irqpin_irlm_r8a777x = {
Magnus Damme03f9082014-12-03 21:18:03 +0900365 .irlm_bit = 23, /* ICR0.IRLM0 */
366};
367
368static const struct of_device_id intc_irqpin_dt_ids[] = {
369 { .compatible = "renesas,intc-irqpin", },
Ulrich Hecht26c21dd2015-09-30 12:03:07 +0200370 { .compatible = "renesas,intc-irqpin-r8a7778",
371 .data = &intc_irqpin_irlm_r8a777x },
Magnus Damme03f9082014-12-03 21:18:03 +0900372 { .compatible = "renesas,intc-irqpin-r8a7779",
Ulrich Hecht26c21dd2015-09-30 12:03:07 +0200373 .data = &intc_irqpin_irlm_r8a777x },
Magnus Damme03f9082014-12-03 21:18:03 +0900374 {},
375};
376MODULE_DEVICE_TABLE(of, intc_irqpin_dt_ids);
377
Magnus Damm44358042013-02-18 23:28:34 +0900378static int intc_irqpin_probe(struct platform_device *pdev)
379{
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200380 struct device *dev = &pdev->dev;
381 struct renesas_intc_irqpin_config *pdata = dev->platform_data;
Magnus Damme03f9082014-12-03 21:18:03 +0900382 const struct of_device_id *of_id;
Magnus Damm44358042013-02-18 23:28:34 +0900383 struct intc_irqpin_priv *p;
384 struct intc_irqpin_iomem *i;
385 struct resource *io[INTC_IRQPIN_REG_NR];
386 struct resource *irq;
387 struct irq_chip *irq_chip;
388 void (*enable_fn)(struct irq_data *d);
389 void (*disable_fn)(struct irq_data *d);
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200390 const char *name = dev_name(dev);
Bastian Hecht427cc722013-03-27 14:54:03 +0100391 int ref_irq;
Magnus Damm44358042013-02-18 23:28:34 +0900392 int ret;
393 int k;
394
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200395 p = devm_kzalloc(dev, sizeof(*p), GFP_KERNEL);
Magnus Damm44358042013-02-18 23:28:34 +0900396 if (!p) {
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200397 dev_err(dev, "failed to allocate driver data\n");
Geert Uytterhoeven705bc962014-09-12 15:15:18 +0200398 return -ENOMEM;
Magnus Damm44358042013-02-18 23:28:34 +0900399 }
400
401 /* deal with driver instance configuration */
Guennadi Liakhovetskic4fa4942013-06-19 07:53:09 +0200402 if (pdata) {
Magnus Damm44358042013-02-18 23:28:34 +0900403 memcpy(&p->config, pdata, sizeof(*pdata));
Guennadi Liakhovetskic4fa4942013-06-19 07:53:09 +0200404 } else {
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200405 of_property_read_u32(dev->of_node, "sense-bitfield-width",
Guennadi Liakhovetski894db162013-06-13 11:23:38 +0200406 &p->config.sense_bitfield_width);
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200407 p->config.control_parent = of_property_read_bool(dev->of_node,
Guennadi Liakhovetskic4fa4942013-06-19 07:53:09 +0200408 "control-parent");
409 }
Magnus Damm44358042013-02-18 23:28:34 +0900410 if (!p->config.sense_bitfield_width)
411 p->config.sense_bitfield_width = 4; /* default to 4 bits */
412
413 p->pdev = pdev;
414 platform_set_drvdata(pdev, p);
415
Geert Uytterhoeven705bc962014-09-12 15:15:18 +0200416 p->clk = devm_clk_get(dev, NULL);
417 if (IS_ERR(p->clk)) {
418 dev_warn(dev, "unable to get clock\n");
419 p->clk = NULL;
420 }
421
422 pm_runtime_enable(dev);
423 pm_runtime_get_sync(dev);
424
Magnus Damme03f9082014-12-03 21:18:03 +0900425 /* get hold of register banks */
426 memset(io, 0, sizeof(io));
Magnus Damm44358042013-02-18 23:28:34 +0900427 for (k = 0; k < INTC_IRQPIN_REG_NR; k++) {
428 io[k] = platform_get_resource(pdev, IORESOURCE_MEM, k);
Magnus Damme03f9082014-12-03 21:18:03 +0900429 if (!io[k] && k < INTC_IRQPIN_REG_NR_MANDATORY) {
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200430 dev_err(dev, "not enough IOMEM resources\n");
Magnus Damm44358042013-02-18 23:28:34 +0900431 ret = -EINVAL;
Magnus Damm08eba5b2013-02-26 20:59:13 +0900432 goto err0;
Magnus Damm44358042013-02-18 23:28:34 +0900433 }
434 }
435
436 /* allow any number of IRQs between 1 and INTC_IRQPIN_MAX */
437 for (k = 0; k < INTC_IRQPIN_MAX; k++) {
438 irq = platform_get_resource(pdev, IORESOURCE_IRQ, k);
439 if (!irq)
440 break;
441
Magnus Damm44358042013-02-18 23:28:34 +0900442 p->irq[k].p = p;
Magnus Damm33f958f2013-02-26 20:58:54 +0900443 p->irq[k].requested_irq = irq->start;
Magnus Damm44358042013-02-18 23:28:34 +0900444 }
445
446 p->number_of_irqs = k;
447 if (p->number_of_irqs < 1) {
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200448 dev_err(dev, "not enough IRQ resources\n");
Magnus Damm44358042013-02-18 23:28:34 +0900449 ret = -EINVAL;
Magnus Damm08eba5b2013-02-26 20:59:13 +0900450 goto err0;
Magnus Damm44358042013-02-18 23:28:34 +0900451 }
452
453 /* ioremap IOMEM and setup read/write callbacks */
454 for (k = 0; k < INTC_IRQPIN_REG_NR; k++) {
455 i = &p->iomem[k];
456
Magnus Damme03f9082014-12-03 21:18:03 +0900457 /* handle optional registers */
458 if (!io[k])
459 continue;
460
Magnus Damm44358042013-02-18 23:28:34 +0900461 switch (resource_size(io[k])) {
462 case 1:
463 i->width = 8;
464 i->read = intc_irqpin_read8;
465 i->write = intc_irqpin_write8;
466 break;
467 case 4:
468 i->width = 32;
469 i->read = intc_irqpin_read32;
470 i->write = intc_irqpin_write32;
471 break;
472 default:
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200473 dev_err(dev, "IOMEM size mismatch\n");
Magnus Damm44358042013-02-18 23:28:34 +0900474 ret = -EINVAL;
Magnus Damm08eba5b2013-02-26 20:59:13 +0900475 goto err0;
Magnus Damm44358042013-02-18 23:28:34 +0900476 }
477
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200478 i->iomem = devm_ioremap_nocache(dev, io[k]->start,
Magnus Damm08eba5b2013-02-26 20:59:13 +0900479 resource_size(io[k]));
Magnus Damm44358042013-02-18 23:28:34 +0900480 if (!i->iomem) {
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200481 dev_err(dev, "failed to remap IOMEM\n");
Magnus Damm44358042013-02-18 23:28:34 +0900482 ret = -ENXIO;
Magnus Damm08eba5b2013-02-26 20:59:13 +0900483 goto err0;
Magnus Damm44358042013-02-18 23:28:34 +0900484 }
485 }
486
Magnus Damme03f9082014-12-03 21:18:03 +0900487 /* configure "individual IRQ mode" where needed */
488 of_id = of_match_device(intc_irqpin_dt_ids, dev);
489 if (of_id && of_id->data) {
490 const struct intc_irqpin_irlm_config *irlm_config = of_id->data;
491
492 if (io[INTC_IRQPIN_REG_IRLM])
493 intc_irqpin_read_modify_write(p, INTC_IRQPIN_REG_IRLM,
494 irlm_config->irlm_bit,
495 1, 1);
496 else
497 dev_warn(dev, "unable to select IRLM mode\n");
498 }
499
Magnus Damm44358042013-02-18 23:28:34 +0900500 /* mask all interrupts using priority */
501 for (k = 0; k < p->number_of_irqs; k++)
502 intc_irqpin_mask_unmask_prio(p, k, 1);
503
Bastian Hecht427cc722013-03-27 14:54:03 +0100504 /* clear all pending interrupts */
505 intc_irqpin_write(p, INTC_IRQPIN_REG_SOURCE, 0x0);
506
507 /* scan for shared interrupt lines */
508 ref_irq = p->irq[0].requested_irq;
509 p->shared_irqs = true;
510 for (k = 1; k < p->number_of_irqs; k++) {
511 if (ref_irq != p->irq[k].requested_irq) {
512 p->shared_irqs = false;
513 break;
514 }
515 }
516
Magnus Damm44358042013-02-18 23:28:34 +0900517 /* use more severe masking method if requested */
518 if (p->config.control_parent) {
519 enable_fn = intc_irqpin_irq_enable_force;
520 disable_fn = intc_irqpin_irq_disable_force;
Bastian Hecht427cc722013-03-27 14:54:03 +0100521 } else if (!p->shared_irqs) {
Magnus Damm44358042013-02-18 23:28:34 +0900522 enable_fn = intc_irqpin_irq_enable;
523 disable_fn = intc_irqpin_irq_disable;
Bastian Hecht427cc722013-03-27 14:54:03 +0100524 } else {
525 enable_fn = intc_irqpin_shared_irq_enable;
526 disable_fn = intc_irqpin_shared_irq_disable;
Magnus Damm44358042013-02-18 23:28:34 +0900527 }
528
529 irq_chip = &p->irq_chip;
530 irq_chip->name = name;
531 irq_chip->irq_mask = disable_fn;
532 irq_chip->irq_unmask = enable_fn;
Magnus Damm44358042013-02-18 23:28:34 +0900533 irq_chip->irq_set_type = intc_irqpin_irq_set_type;
Geert Uytterhoeven705bc962014-09-12 15:15:18 +0200534 irq_chip->irq_set_wake = intc_irqpin_irq_set_wake;
535 irq_chip->flags = IRQCHIP_MASK_ON_SUSPEND;
Magnus Damm44358042013-02-18 23:28:34 +0900536
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200537 p->irq_domain = irq_domain_add_simple(dev->of_node,
Magnus Damm44358042013-02-18 23:28:34 +0900538 p->number_of_irqs,
539 p->config.irq_base,
540 &intc_irqpin_irq_domain_ops, p);
541 if (!p->irq_domain) {
542 ret = -ENXIO;
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200543 dev_err(dev, "cannot initialize irq domain\n");
Magnus Damm08eba5b2013-02-26 20:59:13 +0900544 goto err0;
Magnus Damm44358042013-02-18 23:28:34 +0900545 }
546
Bastian Hecht427cc722013-03-27 14:54:03 +0100547 if (p->shared_irqs) {
548 /* request one shared interrupt */
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200549 if (devm_request_irq(dev, p->irq[0].requested_irq,
Bastian Hecht427cc722013-03-27 14:54:03 +0100550 intc_irqpin_shared_irq_handler,
551 IRQF_SHARED, name, p)) {
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200552 dev_err(dev, "failed to request low IRQ\n");
Magnus Damm44358042013-02-18 23:28:34 +0900553 ret = -ENOENT;
Magnus Damm08eba5b2013-02-26 20:59:13 +0900554 goto err1;
Magnus Damm44358042013-02-18 23:28:34 +0900555 }
Bastian Hecht427cc722013-03-27 14:54:03 +0100556 } else {
557 /* request interrupts one by one */
558 for (k = 0; k < p->number_of_irqs; k++) {
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200559 if (devm_request_irq(dev, p->irq[k].requested_irq,
560 intc_irqpin_irq_handler, 0, name,
561 &p->irq[k])) {
562 dev_err(dev, "failed to request low IRQ\n");
Bastian Hecht427cc722013-03-27 14:54:03 +0100563 ret = -ENOENT;
564 goto err1;
565 }
566 }
Magnus Damm44358042013-02-18 23:28:34 +0900567 }
568
Bastian Hecht427cc722013-03-27 14:54:03 +0100569 /* unmask all interrupts on prio level */
570 for (k = 0; k < p->number_of_irqs; k++)
571 intc_irqpin_mask_unmask_prio(p, k, 0);
572
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200573 dev_info(dev, "driving %d irqs\n", p->number_of_irqs);
Magnus Damm44358042013-02-18 23:28:34 +0900574
575 /* warn in case of mismatch if irq base is specified */
576 if (p->config.irq_base) {
Magnus Damm33f958f2013-02-26 20:58:54 +0900577 if (p->config.irq_base != p->irq[0].domain_irq)
Geert Uytterhoeven36845f12014-09-12 15:15:17 +0200578 dev_warn(dev, "irq base mismatch (%d/%d)\n",
Magnus Damm33f958f2013-02-26 20:58:54 +0900579 p->config.irq_base, p->irq[0].domain_irq);
Magnus Damm44358042013-02-18 23:28:34 +0900580 }
Magnus Damm862d3092013-02-26 20:58:44 +0900581
Magnus Damm44358042013-02-18 23:28:34 +0900582 return 0;
583
Magnus Damm44358042013-02-18 23:28:34 +0900584err1:
Magnus Damm08eba5b2013-02-26 20:59:13 +0900585 irq_domain_remove(p->irq_domain);
Magnus Damm44358042013-02-18 23:28:34 +0900586err0:
Geert Uytterhoeven705bc962014-09-12 15:15:18 +0200587 pm_runtime_put(dev);
588 pm_runtime_disable(dev);
Magnus Damm44358042013-02-18 23:28:34 +0900589 return ret;
590}
591
592static int intc_irqpin_remove(struct platform_device *pdev)
593{
594 struct intc_irqpin_priv *p = platform_get_drvdata(pdev);
Magnus Damm44358042013-02-18 23:28:34 +0900595
596 irq_domain_remove(p->irq_domain);
Geert Uytterhoeven705bc962014-09-12 15:15:18 +0200597 pm_runtime_put(&pdev->dev);
598 pm_runtime_disable(&pdev->dev);
Magnus Damm44358042013-02-18 23:28:34 +0900599 return 0;
600}
601
602static struct platform_driver intc_irqpin_device_driver = {
603 .probe = intc_irqpin_probe,
604 .remove = intc_irqpin_remove,
605 .driver = {
606 .name = "renesas_intc_irqpin",
Magnus Damm9d833bbe2013-03-06 15:16:08 +0900607 .of_match_table = intc_irqpin_dt_ids,
Magnus Damm44358042013-02-18 23:28:34 +0900608 }
609};
610
611static int __init intc_irqpin_init(void)
612{
613 return platform_driver_register(&intc_irqpin_device_driver);
614}
615postcore_initcall(intc_irqpin_init);
616
617static void __exit intc_irqpin_exit(void)
618{
619 platform_driver_unregister(&intc_irqpin_device_driver);
620}
621module_exit(intc_irqpin_exit);
622
623MODULE_AUTHOR("Magnus Damm");
624MODULE_DESCRIPTION("Renesas INTC External IRQ Pin Driver");
625MODULE_LICENSE("GPL v2");