blob: 7f750920ed90708afc818a3237ba2c071c04d69b [file] [log] [blame]
Magnus Dammfbc83b72013-02-27 17:15:01 +09001/*
2 * Renesas IRQC 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 Uytterhoeven6f46aed2015-04-01 14:00:06 +020020#include <linux/clk.h>
Magnus Dammfbc83b72013-02-27 17:15:01 +090021#include <linux/init.h>
22#include <linux/platform_device.h>
23#include <linux/spinlock.h>
24#include <linux/interrupt.h>
25#include <linux/ioport.h>
26#include <linux/io.h>
27#include <linux/irq.h>
28#include <linux/irqdomain.h>
29#include <linux/err.h>
30#include <linux/slab.h>
31#include <linux/module.h>
Geert Uytterhoeven51b05f62015-03-18 19:55:56 +010032#include <linux/pm_runtime.h>
Magnus Dammfbc83b72013-02-27 17:15:01 +090033
Geert Uytterhoeven1cd5ec732015-03-18 19:55:55 +010034#define IRQC_IRQ_MAX 32 /* maximum 32 interrupts per driver instance */
Magnus Dammfbc83b72013-02-27 17:15:01 +090035
Geert Uytterhoeven1cd5ec732015-03-18 19:55:55 +010036#define IRQC_REQ_STS 0x00 /* Interrupt Request Status Register */
37#define IRQC_EN_STS 0x04 /* Interrupt Enable Status Register */
38#define IRQC_EN_SET 0x08 /* Interrupt Enable Set Register */
Magnus Dammfbc83b72013-02-27 17:15:01 +090039#define IRQC_INT_CPU_BASE(n) (0x000 + ((n) * 0x10))
Geert Uytterhoeven1cd5ec732015-03-18 19:55:55 +010040 /* SYS-CPU vs. RT-CPU */
41#define DETECT_STATUS 0x100 /* IRQn Detect Status Register */
42#define MONITOR 0x104 /* IRQn Signal Level Monitor Register */
43#define HLVL_STS 0x108 /* IRQn High Level Detect Status Register */
44#define LLVL_STS 0x10c /* IRQn Low Level Detect Status Register */
45#define S_R_EDGE_STS 0x110 /* IRQn Sync Rising Edge Detect Status Reg. */
46#define S_F_EDGE_STS 0x114 /* IRQn Sync Falling Edge Detect Status Reg. */
47#define A_R_EDGE_STS 0x118 /* IRQn Async Rising Edge Detect Status Reg. */
48#define A_F_EDGE_STS 0x11c /* IRQn Async Falling Edge Detect Status Reg. */
49#define CHTEN_STS 0x120 /* Chattering Reduction Status Register */
Magnus Dammfbc83b72013-02-27 17:15:01 +090050#define IRQC_CONFIG(n) (0x180 + ((n) * 0x04))
Geert Uytterhoeven1cd5ec732015-03-18 19:55:55 +010051 /* IRQn Configuration Register */
Magnus Dammfbc83b72013-02-27 17:15:01 +090052
53struct irqc_irq {
54 int hw_irq;
55 int requested_irq;
56 int domain_irq;
57 struct irqc_priv *p;
58};
59
60struct irqc_priv {
61 void __iomem *iomem;
62 void __iomem *cpu_int_base;
63 struct irqc_irq irq[IRQC_IRQ_MAX];
Magnus Dammfbc83b72013-02-27 17:15:01 +090064 unsigned int number_of_irqs;
65 struct platform_device *pdev;
66 struct irq_chip irq_chip;
67 struct irq_domain *irq_domain;
Geert Uytterhoeven6f46aed2015-04-01 14:00:06 +020068 struct clk *clk;
Magnus Dammfbc83b72013-02-27 17:15:01 +090069};
70
71static void irqc_dbg(struct irqc_irq *i, char *str)
72{
73 dev_dbg(&i->p->pdev->dev, "%s (%d:%d:%d)\n",
74 str, i->requested_irq, i->hw_irq, i->domain_irq);
75}
76
77static void irqc_irq_enable(struct irq_data *d)
78{
79 struct irqc_priv *p = irq_data_get_irq_chip_data(d);
80 int hw_irq = irqd_to_hwirq(d);
81
82 irqc_dbg(&p->irq[hw_irq], "enable");
83 iowrite32(BIT(hw_irq), p->cpu_int_base + IRQC_EN_SET);
84}
85
86static void irqc_irq_disable(struct irq_data *d)
87{
88 struct irqc_priv *p = irq_data_get_irq_chip_data(d);
89 int hw_irq = irqd_to_hwirq(d);
90
91 irqc_dbg(&p->irq[hw_irq], "disable");
92 iowrite32(BIT(hw_irq), p->cpu_int_base + IRQC_EN_STS);
93}
94
Magnus Dammfbc83b72013-02-27 17:15:01 +090095static unsigned char irqc_sense[IRQ_TYPE_SENSE_MASK + 1] = {
Sergei Shtylyovce70af12013-12-14 03:09:31 +030096 [IRQ_TYPE_LEVEL_LOW] = 0x01,
97 [IRQ_TYPE_LEVEL_HIGH] = 0x02,
98 [IRQ_TYPE_EDGE_FALLING] = 0x04, /* Synchronous */
99 [IRQ_TYPE_EDGE_RISING] = 0x08, /* Synchronous */
100 [IRQ_TYPE_EDGE_BOTH] = 0x0c, /* Synchronous */
Magnus Dammfbc83b72013-02-27 17:15:01 +0900101};
102
103static int irqc_irq_set_type(struct irq_data *d, unsigned int type)
104{
105 struct irqc_priv *p = irq_data_get_irq_chip_data(d);
106 int hw_irq = irqd_to_hwirq(d);
107 unsigned char value = irqc_sense[type & IRQ_TYPE_SENSE_MASK];
Geert Uytterhoevenf791e3c2015-02-26 11:43:32 +0100108 u32 tmp;
Magnus Dammfbc83b72013-02-27 17:15:01 +0900109
110 irqc_dbg(&p->irq[hw_irq], "sense");
111
Sergei Shtylyovce70af12013-12-14 03:09:31 +0300112 if (!value)
Magnus Dammfbc83b72013-02-27 17:15:01 +0900113 return -EINVAL;
114
115 tmp = ioread32(p->iomem + IRQC_CONFIG(hw_irq));
116 tmp &= ~0x3f;
Sergei Shtylyovce70af12013-12-14 03:09:31 +0300117 tmp |= value;
Magnus Dammfbc83b72013-02-27 17:15:01 +0900118 iowrite32(tmp, p->iomem + IRQC_CONFIG(hw_irq));
119 return 0;
120}
121
Geert Uytterhoeven6f46aed2015-04-01 14:00:06 +0200122static int irqc_irq_set_wake(struct irq_data *d, unsigned int on)
123{
124 struct irqc_priv *p = irq_data_get_irq_chip_data(d);
125
126 if (!p->clk)
127 return 0;
128
129 if (on)
130 clk_enable(p->clk);
131 else
132 clk_disable(p->clk);
133
134 return 0;
135}
136
Magnus Dammfbc83b72013-02-27 17:15:01 +0900137static irqreturn_t irqc_irq_handler(int irq, void *dev_id)
138{
139 struct irqc_irq *i = dev_id;
140 struct irqc_priv *p = i->p;
Geert Uytterhoevenf791e3c2015-02-26 11:43:32 +0100141 u32 bit = BIT(i->hw_irq);
Magnus Dammfbc83b72013-02-27 17:15:01 +0900142
143 irqc_dbg(i, "demux1");
144
145 if (ioread32(p->iomem + DETECT_STATUS) & bit) {
146 iowrite32(bit, p->iomem + DETECT_STATUS);
147 irqc_dbg(i, "demux2");
148 generic_handle_irq(i->domain_irq);
149 return IRQ_HANDLED;
150 }
151 return IRQ_NONE;
152}
153
154static int irqc_irq_domain_map(struct irq_domain *h, unsigned int virq,
155 irq_hw_number_t hw)
156{
157 struct irqc_priv *p = h->host_data;
158
159 p->irq[hw].domain_irq = virq;
160 p->irq[hw].hw_irq = hw;
161
162 irqc_dbg(&p->irq[hw], "map");
163 irq_set_chip_data(virq, h->host_data);
164 irq_set_chip_and_handler(virq, &p->irq_chip, handle_level_irq);
Magnus Dammfbc83b72013-02-27 17:15:01 +0900165 return 0;
166}
167
Krzysztof Kozlowski96009732015-04-27 21:54:24 +0900168static const struct irq_domain_ops irqc_irq_domain_ops = {
Magnus Dammfbc83b72013-02-27 17:15:01 +0900169 .map = irqc_irq_domain_map,
Magnus Damm3b8dfa72013-03-06 15:23:39 +0900170 .xlate = irq_domain_xlate_twocell,
Magnus Dammfbc83b72013-02-27 17:15:01 +0900171};
172
173static int irqc_probe(struct platform_device *pdev)
174{
Magnus Dammfbc83b72013-02-27 17:15:01 +0900175 struct irqc_priv *p;
176 struct resource *io;
177 struct resource *irq;
178 struct irq_chip *irq_chip;
179 const char *name = dev_name(&pdev->dev);
180 int ret;
181 int k;
182
183 p = kzalloc(sizeof(*p), GFP_KERNEL);
184 if (!p) {
185 dev_err(&pdev->dev, "failed to allocate driver data\n");
186 ret = -ENOMEM;
187 goto err0;
188 }
189
Magnus Dammfbc83b72013-02-27 17:15:01 +0900190 p->pdev = pdev;
191 platform_set_drvdata(pdev, p);
192
Geert Uytterhoeven6f46aed2015-04-01 14:00:06 +0200193 p->clk = devm_clk_get(&pdev->dev, NULL);
194 if (IS_ERR(p->clk)) {
195 dev_warn(&pdev->dev, "unable to get clock\n");
196 p->clk = NULL;
197 }
198
Geert Uytterhoeven51b05f62015-03-18 19:55:56 +0100199 pm_runtime_enable(&pdev->dev);
200 pm_runtime_get_sync(&pdev->dev);
201
Magnus Dammfbc83b72013-02-27 17:15:01 +0900202 /* get hold of manadatory IOMEM */
203 io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
204 if (!io) {
205 dev_err(&pdev->dev, "not enough IOMEM resources\n");
206 ret = -EINVAL;
207 goto err1;
208 }
209
210 /* allow any number of IRQs between 1 and IRQC_IRQ_MAX */
211 for (k = 0; k < IRQC_IRQ_MAX; k++) {
212 irq = platform_get_resource(pdev, IORESOURCE_IRQ, k);
213 if (!irq)
214 break;
215
216 p->irq[k].p = p;
217 p->irq[k].requested_irq = irq->start;
218 }
219
220 p->number_of_irqs = k;
221 if (p->number_of_irqs < 1) {
222 dev_err(&pdev->dev, "not enough IRQ resources\n");
223 ret = -EINVAL;
224 goto err1;
225 }
226
227 /* ioremap IOMEM and setup read/write callbacks */
228 p->iomem = ioremap_nocache(io->start, resource_size(io));
229 if (!p->iomem) {
230 dev_err(&pdev->dev, "failed to remap IOMEM\n");
231 ret = -ENXIO;
232 goto err2;
233 }
234
235 p->cpu_int_base = p->iomem + IRQC_INT_CPU_BASE(0); /* SYS-SPI */
236
237 irq_chip = &p->irq_chip;
238 irq_chip->name = name;
239 irq_chip->irq_mask = irqc_irq_disable;
240 irq_chip->irq_unmask = irqc_irq_enable;
Magnus Dammfbc83b72013-02-27 17:15:01 +0900241 irq_chip->irq_set_type = irqc_irq_set_type;
Geert Uytterhoeven6f46aed2015-04-01 14:00:06 +0200242 irq_chip->irq_set_wake = irqc_irq_set_wake;
243 irq_chip->flags = IRQCHIP_MASK_ON_SUSPEND;
Magnus Dammfbc83b72013-02-27 17:15:01 +0900244
Magnus Damm7d153752015-07-20 19:06:25 +0900245 p->irq_domain = irq_domain_add_linear(pdev->dev.of_node,
246 p->number_of_irqs,
Magnus Dammfbc83b72013-02-27 17:15:01 +0900247 &irqc_irq_domain_ops, p);
248 if (!p->irq_domain) {
249 ret = -ENXIO;
250 dev_err(&pdev->dev, "cannot initialize irq domain\n");
251 goto err2;
252 }
253
254 /* request interrupts one by one */
255 for (k = 0; k < p->number_of_irqs; k++) {
256 if (request_irq(p->irq[k].requested_irq, irqc_irq_handler,
257 0, name, &p->irq[k])) {
258 dev_err(&pdev->dev, "failed to request IRQ\n");
259 ret = -ENOENT;
260 goto err3;
261 }
262 }
263
264 dev_info(&pdev->dev, "driving %d irqs\n", p->number_of_irqs);
265
Magnus Dammfbc83b72013-02-27 17:15:01 +0900266 return 0;
267err3:
Axel Lindfaf8202013-05-06 17:03:32 +0800268 while (--k >= 0)
269 free_irq(p->irq[k].requested_irq, &p->irq[k]);
Magnus Dammfbc83b72013-02-27 17:15:01 +0900270
271 irq_domain_remove(p->irq_domain);
272err2:
273 iounmap(p->iomem);
274err1:
Geert Uytterhoeven51b05f62015-03-18 19:55:56 +0100275 pm_runtime_put(&pdev->dev);
276 pm_runtime_disable(&pdev->dev);
Magnus Dammfbc83b72013-02-27 17:15:01 +0900277 kfree(p);
278err0:
279 return ret;
280}
281
282static int irqc_remove(struct platform_device *pdev)
283{
284 struct irqc_priv *p = platform_get_drvdata(pdev);
285 int k;
286
287 for (k = 0; k < p->number_of_irqs; k++)
288 free_irq(p->irq[k].requested_irq, &p->irq[k]);
289
290 irq_domain_remove(p->irq_domain);
291 iounmap(p->iomem);
Geert Uytterhoeven51b05f62015-03-18 19:55:56 +0100292 pm_runtime_put(&pdev->dev);
293 pm_runtime_disable(&pdev->dev);
Magnus Dammfbc83b72013-02-27 17:15:01 +0900294 kfree(p);
295 return 0;
296}
297
Magnus Damm3b8dfa72013-03-06 15:23:39 +0900298static const struct of_device_id irqc_dt_ids[] = {
299 { .compatible = "renesas,irqc", },
300 {},
301};
302MODULE_DEVICE_TABLE(of, irqc_dt_ids);
303
Magnus Dammfbc83b72013-02-27 17:15:01 +0900304static struct platform_driver irqc_device_driver = {
305 .probe = irqc_probe,
306 .remove = irqc_remove,
307 .driver = {
308 .name = "renesas_irqc",
Magnus Damm3b8dfa72013-03-06 15:23:39 +0900309 .of_match_table = irqc_dt_ids,
Magnus Dammfbc83b72013-02-27 17:15:01 +0900310 }
311};
312
313static int __init irqc_init(void)
314{
315 return platform_driver_register(&irqc_device_driver);
316}
317postcore_initcall(irqc_init);
318
319static void __exit irqc_exit(void)
320{
321 platform_driver_unregister(&irqc_device_driver);
322}
323module_exit(irqc_exit);
324
325MODULE_AUTHOR("Magnus Damm");
326MODULE_DESCRIPTION("Renesas IRQC Driver");
327MODULE_LICENSE("GPL v2");