blob: ec190361bf2e551352a265fd2bcb576e71bd06f1 [file] [log] [blame]
Magnus Damma07e1032012-05-17 15:22:23 +09001/*
2 * Emma Mobile GPIO Support - GIO
3 *
4 * Copyright (C) 2012 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
20#include <linux/init.h>
21#include <linux/platform_device.h>
22#include <linux/spinlock.h>
23#include <linux/interrupt.h>
24#include <linux/ioport.h>
25#include <linux/io.h>
26#include <linux/irq.h>
27#include <linux/irqdomain.h>
28#include <linux/bitops.h>
29#include <linux/err.h>
30#include <linux/gpio.h>
31#include <linux/slab.h>
32#include <linux/module.h>
Magnus Damm640efa02013-07-03 13:14:32 +090033#include <linux/pinctrl/consumer.h>
Magnus Damma07e1032012-05-17 15:22:23 +090034#include <linux/platform_data/gpio-em.h>
35
36struct em_gio_priv {
37 void __iomem *base0;
38 void __iomem *base1;
Magnus Damma07e1032012-05-17 15:22:23 +090039 spinlock_t sense_lock;
40 struct platform_device *pdev;
41 struct gpio_chip gpio_chip;
42 struct irq_chip irq_chip;
43 struct irq_domain *irq_domain;
44};
45
46#define GIO_E1 0x00
47#define GIO_E0 0x04
48#define GIO_EM 0x04
49#define GIO_OL 0x08
50#define GIO_OH 0x0c
51#define GIO_I 0x10
52#define GIO_IIA 0x14
53#define GIO_IEN 0x18
54#define GIO_IDS 0x1c
55#define GIO_IIM 0x1c
56#define GIO_RAW 0x20
57#define GIO_MST 0x24
58#define GIO_IIR 0x28
59
60#define GIO_IDT0 0x40
61#define GIO_IDT1 0x44
62#define GIO_IDT2 0x48
63#define GIO_IDT3 0x4c
64#define GIO_RAWBL 0x50
65#define GIO_RAWBH 0x54
66#define GIO_IRBL 0x58
67#define GIO_IRBH 0x5c
68
69#define GIO_IDT(n) (GIO_IDT0 + ((n) * 4))
70
71static inline unsigned long em_gio_read(struct em_gio_priv *p, int offs)
72{
73 if (offs < GIO_IDT0)
74 return ioread32(p->base0 + offs);
75 else
76 return ioread32(p->base1 + (offs - GIO_IDT0));
77}
78
79static inline void em_gio_write(struct em_gio_priv *p, int offs,
80 unsigned long value)
81{
82 if (offs < GIO_IDT0)
83 iowrite32(value, p->base0 + offs);
84 else
85 iowrite32(value, p->base1 + (offs - GIO_IDT0));
86}
87
Magnus Damma07e1032012-05-17 15:22:23 +090088static void em_gio_irq_disable(struct irq_data *d)
89{
Axel Lina9f77c92012-09-04 21:58:33 +080090 struct em_gio_priv *p = irq_data_get_irq_chip_data(d);
Magnus Damma07e1032012-05-17 15:22:23 +090091
92 em_gio_write(p, GIO_IDS, BIT(irqd_to_hwirq(d)));
93}
94
95static void em_gio_irq_enable(struct irq_data *d)
96{
Axel Lina9f77c92012-09-04 21:58:33 +080097 struct em_gio_priv *p = irq_data_get_irq_chip_data(d);
Magnus Damma07e1032012-05-17 15:22:23 +090098
99 em_gio_write(p, GIO_IEN, BIT(irqd_to_hwirq(d)));
100}
101
102#define GIO_ASYNC(x) (x + 8)
103
104static unsigned char em_gio_sense_table[IRQ_TYPE_SENSE_MASK + 1] = {
105 [IRQ_TYPE_EDGE_RISING] = GIO_ASYNC(0x00),
106 [IRQ_TYPE_EDGE_FALLING] = GIO_ASYNC(0x01),
107 [IRQ_TYPE_LEVEL_HIGH] = GIO_ASYNC(0x02),
108 [IRQ_TYPE_LEVEL_LOW] = GIO_ASYNC(0x03),
109 [IRQ_TYPE_EDGE_BOTH] = GIO_ASYNC(0x04),
110};
111
112static int em_gio_irq_set_type(struct irq_data *d, unsigned int type)
113{
114 unsigned char value = em_gio_sense_table[type & IRQ_TYPE_SENSE_MASK];
Axel Lina9f77c92012-09-04 21:58:33 +0800115 struct em_gio_priv *p = irq_data_get_irq_chip_data(d);
Magnus Damma07e1032012-05-17 15:22:23 +0900116 unsigned int reg, offset, shift;
117 unsigned long flags;
118 unsigned long tmp;
119
120 if (!value)
121 return -EINVAL;
122
123 offset = irqd_to_hwirq(d);
124
125 pr_debug("gio: sense irq = %d, mode = %d\n", offset, value);
126
127 /* 8 x 4 bit fields in 4 IDT registers */
128 reg = GIO_IDT(offset >> 3);
129 shift = (offset & 0x07) << 4;
130
131 spin_lock_irqsave(&p->sense_lock, flags);
132
133 /* disable the interrupt in IIA */
134 tmp = em_gio_read(p, GIO_IIA);
135 tmp &= ~BIT(offset);
136 em_gio_write(p, GIO_IIA, tmp);
137
138 /* change the sense setting in IDT */
139 tmp = em_gio_read(p, reg);
140 tmp &= ~(0xf << shift);
141 tmp |= value << shift;
142 em_gio_write(p, reg, tmp);
143
144 /* clear pending interrupts */
145 em_gio_write(p, GIO_IIR, BIT(offset));
146
147 /* enable the interrupt in IIA */
148 tmp = em_gio_read(p, GIO_IIA);
149 tmp |= BIT(offset);
150 em_gio_write(p, GIO_IIA, tmp);
151
152 spin_unlock_irqrestore(&p->sense_lock, flags);
153
154 return 0;
155}
156
157static irqreturn_t em_gio_irq_handler(int irq, void *dev_id)
158{
159 struct em_gio_priv *p = dev_id;
160 unsigned long pending;
161 unsigned int offset, irqs_handled = 0;
162
163 while ((pending = em_gio_read(p, GIO_MST))) {
164 offset = __ffs(pending);
165 em_gio_write(p, GIO_IIR, BIT(offset));
166 generic_handle_irq(irq_find_mapping(p->irq_domain, offset));
167 irqs_handled++;
168 }
169
170 return irqs_handled ? IRQ_HANDLED : IRQ_NONE;
171}
172
173static inline struct em_gio_priv *gpio_to_priv(struct gpio_chip *chip)
174{
175 return container_of(chip, struct em_gio_priv, gpio_chip);
176}
177
178static int em_gio_direction_input(struct gpio_chip *chip, unsigned offset)
179{
180 em_gio_write(gpio_to_priv(chip), GIO_E0, BIT(offset));
181 return 0;
182}
183
184static int em_gio_get(struct gpio_chip *chip, unsigned offset)
185{
186 return (int)(em_gio_read(gpio_to_priv(chip), GIO_I) & BIT(offset));
187}
188
189static void __em_gio_set(struct gpio_chip *chip, unsigned int reg,
190 unsigned shift, int value)
191{
192 /* upper 16 bits contains mask and lower 16 actual value */
193 em_gio_write(gpio_to_priv(chip), reg,
194 (1 << (shift + 16)) | (value << shift));
195}
196
197static void em_gio_set(struct gpio_chip *chip, unsigned offset, int value)
198{
199 /* output is split into two registers */
200 if (offset < 16)
201 __em_gio_set(chip, GIO_OL, offset, value);
202 else
203 __em_gio_set(chip, GIO_OH, offset - 16, value);
204}
205
206static int em_gio_direction_output(struct gpio_chip *chip, unsigned offset,
207 int value)
208{
209 /* write GPIO value to output before selecting output mode of pin */
210 em_gio_set(chip, offset, value);
211 em_gio_write(gpio_to_priv(chip), GIO_E1, BIT(offset));
212 return 0;
213}
214
215static int em_gio_to_irq(struct gpio_chip *chip, unsigned offset)
216{
Linus Walleij73855002012-10-16 20:15:02 +0200217 return irq_create_mapping(gpio_to_priv(chip)->irq_domain, offset);
Magnus Damma07e1032012-05-17 15:22:23 +0900218}
219
Magnus Damm640efa02013-07-03 13:14:32 +0900220static int em_gio_request(struct gpio_chip *chip, unsigned offset)
221{
222 return pinctrl_request_gpio(chip->base + offset);
223}
224
225static void em_gio_free(struct gpio_chip *chip, unsigned offset)
226{
227 pinctrl_free_gpio(chip->base + offset);
228
229 /* Set the GPIO as an input to ensure that the next GPIO request won't
230 * drive the GPIO pin as an output.
231 */
232 em_gio_direction_input(chip, offset);
233}
234
Linus Walleij2d61e3e2013-10-11 19:21:34 +0200235static int em_gio_irq_domain_map(struct irq_domain *h, unsigned int irq,
236 irq_hw_number_t hwirq)
Magnus Damma07e1032012-05-17 15:22:23 +0900237{
238 struct em_gio_priv *p = h->host_data;
239
Linus Walleij2d61e3e2013-10-11 19:21:34 +0200240 pr_debug("gio: map hw irq = %d, irq = %d\n", (int)hwirq, irq);
Magnus Damma07e1032012-05-17 15:22:23 +0900241
Linus Walleij2d61e3e2013-10-11 19:21:34 +0200242 irq_set_chip_data(irq, h->host_data);
243 irq_set_chip_and_handler(irq, &p->irq_chip, handle_level_irq);
244 set_irq_flags(irq, IRQF_VALID); /* kill me now */
Magnus Damma07e1032012-05-17 15:22:23 +0900245 return 0;
246}
247
248static struct irq_domain_ops em_gio_irq_domain_ops = {
249 .map = em_gio_irq_domain_map,
Magnus Damm753c5982013-02-26 22:26:23 +0900250 .xlate = irq_domain_xlate_twocell,
Magnus Damma07e1032012-05-17 15:22:23 +0900251};
252
Bill Pemberton38363092012-11-19 13:22:34 -0500253static int em_gio_probe(struct platform_device *pdev)
Magnus Damma07e1032012-05-17 15:22:23 +0900254{
Magnus Damm753c5982013-02-26 22:26:23 +0900255 struct gpio_em_config pdata_dt;
Jingoo Hane56aee12013-07-30 17:08:05 +0900256 struct gpio_em_config *pdata = dev_get_platdata(&pdev->dev);
Magnus Damma07e1032012-05-17 15:22:23 +0900257 struct em_gio_priv *p;
258 struct resource *io[2], *irq[2];
259 struct gpio_chip *gpio_chip;
260 struct irq_chip *irq_chip;
261 const char *name = dev_name(&pdev->dev);
262 int ret;
263
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900264 p = devm_kzalloc(&pdev->dev, sizeof(*p), GFP_KERNEL);
Magnus Damma07e1032012-05-17 15:22:23 +0900265 if (!p) {
266 dev_err(&pdev->dev, "failed to allocate driver data\n");
267 ret = -ENOMEM;
268 goto err0;
269 }
270
271 p->pdev = pdev;
272 platform_set_drvdata(pdev, p);
273 spin_lock_init(&p->sense_lock);
274
275 io[0] = platform_get_resource(pdev, IORESOURCE_MEM, 0);
276 io[1] = platform_get_resource(pdev, IORESOURCE_MEM, 1);
277 irq[0] = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
278 irq[1] = platform_get_resource(pdev, IORESOURCE_IRQ, 1);
279
Magnus Damm753c5982013-02-26 22:26:23 +0900280 if (!io[0] || !io[1] || !irq[0] || !irq[1]) {
281 dev_err(&pdev->dev, "missing IRQ or IOMEM\n");
Magnus Damma07e1032012-05-17 15:22:23 +0900282 ret = -EINVAL;
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900283 goto err0;
Magnus Damma07e1032012-05-17 15:22:23 +0900284 }
285
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900286 p->base0 = devm_ioremap_nocache(&pdev->dev, io[0]->start,
287 resource_size(io[0]));
Magnus Damma07e1032012-05-17 15:22:23 +0900288 if (!p->base0) {
289 dev_err(&pdev->dev, "failed to remap low I/O memory\n");
290 ret = -ENXIO;
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900291 goto err0;
Magnus Damma07e1032012-05-17 15:22:23 +0900292 }
293
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900294 p->base1 = devm_ioremap_nocache(&pdev->dev, io[1]->start,
295 resource_size(io[1]));
Magnus Damma07e1032012-05-17 15:22:23 +0900296 if (!p->base1) {
297 dev_err(&pdev->dev, "failed to remap high I/O memory\n");
298 ret = -ENXIO;
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900299 goto err0;
Magnus Damma07e1032012-05-17 15:22:23 +0900300 }
301
Magnus Damm753c5982013-02-26 22:26:23 +0900302 if (!pdata) {
303 memset(&pdata_dt, 0, sizeof(pdata_dt));
304 pdata = &pdata_dt;
305
306 if (of_property_read_u32(pdev->dev.of_node, "ngpios",
307 &pdata->number_of_pins)) {
308 dev_err(&pdev->dev, "Missing ngpios OF property\n");
309 ret = -EINVAL;
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900310 goto err0;
Magnus Damm753c5982013-02-26 22:26:23 +0900311 }
312
313 ret = of_alias_get_id(pdev->dev.of_node, "gpio");
314 if (ret < 0) {
315 dev_err(&pdev->dev, "Couldn't get OF id\n");
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900316 goto err0;
Magnus Damm753c5982013-02-26 22:26:23 +0900317 }
318 pdata->gpio_base = ret * 32; /* 32 GPIOs per instance */
319 }
320
Magnus Damma07e1032012-05-17 15:22:23 +0900321 gpio_chip = &p->gpio_chip;
Ian Moltonb5927852013-09-02 16:44:55 +0100322 gpio_chip->of_node = pdev->dev.of_node;
Magnus Damma07e1032012-05-17 15:22:23 +0900323 gpio_chip->direction_input = em_gio_direction_input;
324 gpio_chip->get = em_gio_get;
325 gpio_chip->direction_output = em_gio_direction_output;
326 gpio_chip->set = em_gio_set;
327 gpio_chip->to_irq = em_gio_to_irq;
Magnus Damm640efa02013-07-03 13:14:32 +0900328 gpio_chip->request = em_gio_request;
329 gpio_chip->free = em_gio_free;
Magnus Damma07e1032012-05-17 15:22:23 +0900330 gpio_chip->label = name;
331 gpio_chip->owner = THIS_MODULE;
332 gpio_chip->base = pdata->gpio_base;
333 gpio_chip->ngpio = pdata->number_of_pins;
334
335 irq_chip = &p->irq_chip;
336 irq_chip->name = name;
337 irq_chip->irq_mask = em_gio_irq_disable;
338 irq_chip->irq_unmask = em_gio_irq_enable;
339 irq_chip->irq_enable = em_gio_irq_enable;
340 irq_chip->irq_disable = em_gio_irq_disable;
341 irq_chip->irq_set_type = em_gio_irq_set_type;
342 irq_chip->flags = IRQCHIP_SKIP_SET_WAKE;
343
Magnus Dammc7886b12013-02-13 00:56:13 +0900344 p->irq_domain = irq_domain_add_simple(pdev->dev.of_node,
Linus Walleij73855002012-10-16 20:15:02 +0200345 pdata->number_of_pins,
Magnus Dammc7886b12013-02-13 00:56:13 +0900346 pdata->irq_base,
Linus Walleij73855002012-10-16 20:15:02 +0200347 &em_gio_irq_domain_ops, p);
Axel Lin16310812012-10-31 17:03:33 +0800348 if (!p->irq_domain) {
349 ret = -ENXIO;
Magnus Damma07e1032012-05-17 15:22:23 +0900350 dev_err(&pdev->dev, "cannot initialize irq domain\n");
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900351 goto err0;
Magnus Damma07e1032012-05-17 15:22:23 +0900352 }
353
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900354 if (devm_request_irq(&pdev->dev, irq[0]->start,
355 em_gio_irq_handler, 0, name, p)) {
Magnus Damma07e1032012-05-17 15:22:23 +0900356 dev_err(&pdev->dev, "failed to request low IRQ\n");
357 ret = -ENOENT;
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900358 goto err1;
Magnus Damma07e1032012-05-17 15:22:23 +0900359 }
360
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900361 if (devm_request_irq(&pdev->dev, irq[1]->start,
362 em_gio_irq_handler, 0, name, p)) {
Magnus Damma07e1032012-05-17 15:22:23 +0900363 dev_err(&pdev->dev, "failed to request high IRQ\n");
364 ret = -ENOENT;
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900365 goto err1;
Magnus Damma07e1032012-05-17 15:22:23 +0900366 }
367
368 ret = gpiochip_add(gpio_chip);
369 if (ret) {
370 dev_err(&pdev->dev, "failed to add GPIO controller\n");
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900371 goto err1;
Magnus Damma07e1032012-05-17 15:22:23 +0900372 }
Magnus Damm640efa02013-07-03 13:14:32 +0900373
374 if (pdata->pctl_name) {
375 ret = gpiochip_add_pin_range(gpio_chip, pdata->pctl_name, 0,
376 gpio_chip->base, gpio_chip->ngpio);
377 if (ret < 0)
378 dev_warn(&pdev->dev, "failed to add pin range\n");
379 }
Magnus Damma07e1032012-05-17 15:22:23 +0900380 return 0;
381
Magnus Damma07e1032012-05-17 15:22:23 +0900382err1:
Magnus Damm1cfe6f82013-03-13 20:06:30 +0900383 irq_domain_remove(p->irq_domain);
Magnus Damma07e1032012-05-17 15:22:23 +0900384err0:
385 return ret;
386}
387
Bill Pemberton206210c2012-11-19 13:25:50 -0500388static int em_gio_remove(struct platform_device *pdev)
Magnus Damma07e1032012-05-17 15:22:23 +0900389{
390 struct em_gio_priv *p = platform_get_drvdata(pdev);
Magnus Damma07e1032012-05-17 15:22:23 +0900391 int ret;
392
393 ret = gpiochip_remove(&p->gpio_chip);
394 if (ret)
395 return ret;
396
Axel Lin16310812012-10-31 17:03:33 +0800397 irq_domain_remove(p->irq_domain);
Magnus Damma07e1032012-05-17 15:22:23 +0900398 return 0;
399}
400
Magnus Damm753c5982013-02-26 22:26:23 +0900401static const struct of_device_id em_gio_dt_ids[] = {
402 { .compatible = "renesas,em-gio", },
403 {},
404};
405MODULE_DEVICE_TABLE(of, em_gio_dt_ids);
406
Magnus Damma07e1032012-05-17 15:22:23 +0900407static struct platform_driver em_gio_device_driver = {
408 .probe = em_gio_probe,
Bill Pemberton8283c4f2012-11-19 13:20:08 -0500409 .remove = em_gio_remove,
Magnus Damma07e1032012-05-17 15:22:23 +0900410 .driver = {
411 .name = "em_gio",
Magnus Damm753c5982013-02-26 22:26:23 +0900412 .of_match_table = em_gio_dt_ids,
413 .owner = THIS_MODULE,
Magnus Damma07e1032012-05-17 15:22:23 +0900414 }
415};
416
Magnus Damm753c5982013-02-26 22:26:23 +0900417static int __init em_gio_init(void)
418{
419 return platform_driver_register(&em_gio_device_driver);
420}
421postcore_initcall(em_gio_init);
422
423static void __exit em_gio_exit(void)
424{
425 platform_driver_unregister(&em_gio_device_driver);
426}
427module_exit(em_gio_exit);
Magnus Damma07e1032012-05-17 15:22:23 +0900428
429MODULE_AUTHOR("Magnus Damm");
430MODULE_DESCRIPTION("Renesas Emma Mobile GIO Driver");
431MODULE_LICENSE("GPL v2");