Merge remote-tracking branch 'asoc/topic/da7219' into asoc-next
[linux-2.6-block.git] / drivers / gpio / gpio-pl061.c
CommitLineData
1e9c2859 1/*
c103de24 2 * Copyright (C) 2008, 2009 Provigent Ltd.
1e9c2859
BS
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Driver for the ARM PrimeCell(tm) General Purpose Input/Output (PL061)
9 *
10 * Data sheet: ARM DDI 0190B, September 2000
11 */
12#include <linux/spinlock.h>
13#include <linux/errno.h>
14#include <linux/module.h>
1e9c2859
BS
15#include <linux/io.h>
16#include <linux/ioport.h>
17#include <linux/irq.h>
de88cbb7 18#include <linux/irqchip/chained_irq.h>
1e9c2859 19#include <linux/bitops.h>
1e9c2859
BS
20#include <linux/gpio.h>
21#include <linux/device.h>
22#include <linux/amba/bus.h>
23#include <linux/amba/pl061.h>
5a0e3ad6 24#include <linux/slab.h>
39b70ee0 25#include <linux/pinctrl/consumer.h>
e198a8de 26#include <linux/pm.h>
1e9c2859
BS
27
28#define GPIODIR 0x400
29#define GPIOIS 0x404
30#define GPIOIBE 0x408
31#define GPIOIEV 0x40C
32#define GPIOIE 0x410
33#define GPIORIS 0x414
34#define GPIOMIS 0x418
35#define GPIOIC 0x41C
36
37#define PL061_GPIO_NR 8
38
e198a8de
DS
39#ifdef CONFIG_PM
40struct pl061_context_save_regs {
41 u8 gpio_data;
42 u8 gpio_dir;
43 u8 gpio_is;
44 u8 gpio_ibe;
45 u8 gpio_iev;
46 u8 gpio_ie;
47};
48#endif
1e9c2859 49
1e9c2859 50struct pl061_gpio {
835c192f 51 spinlock_t lock;
1e9c2859
BS
52
53 void __iomem *base;
1e9c2859 54 struct gpio_chip gc;
27f9fec5 55 bool uses_pinctrl;
e198a8de
DS
56
57#ifdef CONFIG_PM
58 struct pl061_context_save_regs csave_regs;
59#endif
1e9c2859
BS
60};
61
27f9fec5 62static int pl061_gpio_request(struct gpio_chip *gc, unsigned offset)
39b70ee0
HZ
63{
64 /*
65 * Map back to global GPIO space and request muxing, the direction
66 * parameter does not matter for this controller.
67 */
27f9fec5
YH
68 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
69 int gpio = gc->base + offset;
39b70ee0 70
27f9fec5
YH
71 if (chip->uses_pinctrl)
72 return pinctrl_request_gpio(gpio);
73 return 0;
39b70ee0
HZ
74}
75
27f9fec5 76static void pl061_gpio_free(struct gpio_chip *gc, unsigned offset)
22ce4464 77{
27f9fec5
YH
78 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
79 int gpio = gc->base + offset;
22ce4464 80
27f9fec5
YH
81 if (chip->uses_pinctrl)
82 pinctrl_free_gpio(gpio);
22ce4464
AL
83}
84
1e9c2859
BS
85static int pl061_direction_input(struct gpio_chip *gc, unsigned offset)
86{
87 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
88 unsigned long flags;
89 unsigned char gpiodir;
90
91 if (offset >= gc->ngpio)
92 return -EINVAL;
93
94 spin_lock_irqsave(&chip->lock, flags);
95 gpiodir = readb(chip->base + GPIODIR);
bea41504 96 gpiodir &= ~(BIT(offset));
1e9c2859
BS
97 writeb(gpiodir, chip->base + GPIODIR);
98 spin_unlock_irqrestore(&chip->lock, flags);
99
100 return 0;
101}
102
103static int pl061_direction_output(struct gpio_chip *gc, unsigned offset,
104 int value)
105{
106 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
107 unsigned long flags;
108 unsigned char gpiodir;
109
110 if (offset >= gc->ngpio)
111 return -EINVAL;
112
113 spin_lock_irqsave(&chip->lock, flags);
bea41504 114 writeb(!!value << offset, chip->base + (BIT(offset + 2)));
1e9c2859 115 gpiodir = readb(chip->base + GPIODIR);
bea41504 116 gpiodir |= BIT(offset);
1e9c2859 117 writeb(gpiodir, chip->base + GPIODIR);
64b997c5 118
119 /*
120 * gpio value is set again, because pl061 doesn't allow to set value of
121 * a gpio pin before configuring it in OUT mode.
122 */
bea41504 123 writeb(!!value << offset, chip->base + (BIT(offset + 2)));
1e9c2859
BS
124 spin_unlock_irqrestore(&chip->lock, flags);
125
126 return 0;
127}
128
129static int pl061_get_value(struct gpio_chip *gc, unsigned offset)
130{
131 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
132
bea41504 133 return !!readb(chip->base + (BIT(offset + 2)));
1e9c2859
BS
134}
135
136static void pl061_set_value(struct gpio_chip *gc, unsigned offset, int value)
137{
138 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
139
bea41504 140 writeb(!!value << offset, chip->base + (BIT(offset + 2)));
1e9c2859
BS
141}
142
b2221869 143static int pl061_irq_type(struct irq_data *d, unsigned trigger)
1e9c2859 144{
8d5b24bd
LW
145 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
146 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
f1f70479 147 int offset = irqd_to_hwirq(d);
1e9c2859
BS
148 unsigned long flags;
149 u8 gpiois, gpioibe, gpioiev;
438a2c9a 150 u8 bit = BIT(offset);
1e9c2859 151
c1cc9b97 152 if (offset < 0 || offset >= PL061_GPIO_NR)
1e9c2859
BS
153 return -EINVAL;
154
f1f70479 155 spin_lock_irqsave(&chip->lock, flags);
1e9c2859
BS
156
157 gpioiev = readb(chip->base + GPIOIEV);
1e9c2859 158 gpiois = readb(chip->base + GPIOIS);
438a2c9a
LW
159 gpioibe = readb(chip->base + GPIOIBE);
160
1e9c2859 161 if (trigger & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
438a2c9a 162 gpiois |= bit;
1e9c2859 163 if (trigger & IRQ_TYPE_LEVEL_HIGH)
438a2c9a 164 gpioiev |= bit;
1e9c2859 165 else
438a2c9a 166 gpioiev &= ~bit;
1e9c2859 167 } else
438a2c9a 168 gpiois &= ~bit;
1e9c2859 169
1e9c2859 170 if ((trigger & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH)
438a2c9a
LW
171 /* Setting this makes GPIOEV be ignored */
172 gpioibe |= bit;
1e9c2859 173 else {
438a2c9a 174 gpioibe &= ~bit;
1e9c2859 175 if (trigger & IRQ_TYPE_EDGE_RISING)
438a2c9a 176 gpioiev |= bit;
db7e1bc4 177 else if (trigger & IRQ_TYPE_EDGE_FALLING)
438a2c9a 178 gpioiev &= ~bit;
1e9c2859 179 }
1e9c2859 180
438a2c9a
LW
181 writeb(gpiois, chip->base + GPIOIS);
182 writeb(gpioibe, chip->base + GPIOIBE);
1e9c2859
BS
183 writeb(gpioiev, chip->base + GPIOIEV);
184
f1f70479 185 spin_unlock_irqrestore(&chip->lock, flags);
1e9c2859
BS
186
187 return 0;
188}
189
bd0b9ac4 190static void pl061_irq_handler(struct irq_desc *desc)
1e9c2859 191{
2de0dbc5
RH
192 unsigned long pending;
193 int offset;
8d5b24bd
LW
194 struct gpio_chip *gc = irq_desc_get_handler_data(desc);
195 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
dece904d 196 struct irq_chip *irqchip = irq_desc_get_chip(desc);
1e9c2859 197
dece904d 198 chained_irq_enter(irqchip, desc);
1e9c2859 199
2de0dbc5
RH
200 pending = readb(chip->base + GPIOMIS);
201 writeb(pending, chip->base + GPIOIC);
202 if (pending) {
984b3f57 203 for_each_set_bit(offset, &pending, PL061_GPIO_NR)
8d5b24bd
LW
204 generic_handle_irq(irq_find_mapping(gc->irqdomain,
205 offset));
1e9c2859 206 }
2de0dbc5 207
dece904d 208 chained_irq_exit(irqchip, desc);
1e9c2859
BS
209}
210
f1f70479 211static void pl061_irq_mask(struct irq_data *d)
3ab52475 212{
8d5b24bd
LW
213 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
214 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
bea41504 215 u8 mask = BIT(irqd_to_hwirq(d) % PL061_GPIO_NR);
f1f70479
HZ
216 u8 gpioie;
217
218 spin_lock(&chip->lock);
219 gpioie = readb(chip->base + GPIOIE) & ~mask;
220 writeb(gpioie, chip->base + GPIOIE);
221 spin_unlock(&chip->lock);
222}
3ab52475 223
f1f70479
HZ
224static void pl061_irq_unmask(struct irq_data *d)
225{
8d5b24bd
LW
226 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
227 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
bea41504 228 u8 mask = BIT(irqd_to_hwirq(d) % PL061_GPIO_NR);
f1f70479
HZ
229 u8 gpioie;
230
231 spin_lock(&chip->lock);
232 gpioie = readb(chip->base + GPIOIE) | mask;
233 writeb(gpioie, chip->base + GPIOIE);
234 spin_unlock(&chip->lock);
235}
236
237static struct irq_chip pl061_irqchip = {
9ae7e9e3 238 .name = "pl061",
f1f70479
HZ
239 .irq_mask = pl061_irq_mask,
240 .irq_unmask = pl061_irq_unmask,
241 .irq_set_type = pl061_irq_type,
f1f70479
HZ
242};
243
8944df72 244static int pl061_probe(struct amba_device *adev, const struct amba_id *id)
1e9c2859 245{
8944df72 246 struct device *dev = &adev->dev;
e56aee18 247 struct pl061_platform_data *pdata = dev_get_platdata(dev);
1e9c2859 248 struct pl061_gpio *chip;
f1f70479 249 int ret, irq, i, irq_base;
1e9c2859 250
8944df72 251 chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
1e9c2859
BS
252 if (chip == NULL)
253 return -ENOMEM;
254
76c05c8a
RH
255 if (pdata) {
256 chip->gc.base = pdata->gpio_base;
f1f70479 257 irq_base = pdata->irq_base;
7808755d
LW
258 if (irq_base <= 0) {
259 dev_err(&adev->dev, "invalid IRQ base in pdata\n");
f1f70479 260 return -ENODEV;
7808755d 261 }
f1f70479 262 } else {
76c05c8a 263 chip->gc.base = -1;
f1f70479
HZ
264 irq_base = 0;
265 }
76c05c8a 266
09bafc30
JH
267 chip->base = devm_ioremap_resource(dev, &adev->res);
268 if (IS_ERR(chip->base))
269 return PTR_ERR(chip->base);
1e9c2859
BS
270
271 spin_lock_init(&chip->lock);
27f9fec5
YH
272 if (of_property_read_bool(dev->of_node, "gpio-ranges"))
273 chip->uses_pinctrl = true;
1e9c2859 274
39b70ee0 275 chip->gc.request = pl061_gpio_request;
22ce4464 276 chip->gc.free = pl061_gpio_free;
1e9c2859
BS
277 chip->gc.direction_input = pl061_direction_input;
278 chip->gc.direction_output = pl061_direction_output;
279 chip->gc.get = pl061_get_value;
280 chip->gc.set = pl061_set_value;
1e9c2859 281 chip->gc.ngpio = PL061_GPIO_NR;
8944df72
TK
282 chip->gc.label = dev_name(dev);
283 chip->gc.dev = dev;
1e9c2859
BS
284 chip->gc.owner = THIS_MODULE;
285
1e9c2859
BS
286 ret = gpiochip_add(&chip->gc);
287 if (ret)
8944df72 288 return ret;
1e9c2859
BS
289
290 /*
291 * irq_chip support
292 */
1e9c2859 293 writeb(0, chip->base + GPIOIE); /* disable irqs */
8944df72 294 irq = adev->irq[0];
7808755d
LW
295 if (irq < 0) {
296 dev_err(&adev->dev, "invalid IRQ\n");
8944df72 297 return -ENODEV;
7808755d 298 }
8944df72 299
8d5b24bd
LW
300 ret = gpiochip_irqchip_add(&chip->gc, &pl061_irqchip,
301 irq_base, handle_simple_irq,
302 IRQ_TYPE_NONE);
303 if (ret) {
304 dev_info(&adev->dev, "could not add irqchip\n");
305 return ret;
7808755d 306 }
8d5b24bd
LW
307 gpiochip_set_chained_irqchip(&chip->gc, &pl061_irqchip,
308 irq, pl061_irq_handler);
2ba3154d 309
1e9c2859 310 for (i = 0; i < PL061_GPIO_NR; i++) {
76c05c8a 311 if (pdata) {
bea41504 312 if (pdata->directions & (BIT(i)))
76c05c8a 313 pl061_direction_output(&chip->gc, i,
bea41504 314 pdata->values & (BIT(i)));
76c05c8a
RH
315 else
316 pl061_direction_input(&chip->gc, i);
317 }
1e9c2859
BS
318 }
319
8944df72 320 amba_set_drvdata(adev, chip);
76b3627e
FE
321 dev_info(&adev->dev, "PL061 GPIO chip @%pa registered\n",
322 &adev->res.start);
e198a8de 323
1e9c2859 324 return 0;
1e9c2859
BS
325}
326
e198a8de
DS
327#ifdef CONFIG_PM
328static int pl061_suspend(struct device *dev)
329{
330 struct pl061_gpio *chip = dev_get_drvdata(dev);
331 int offset;
332
333 chip->csave_regs.gpio_data = 0;
334 chip->csave_regs.gpio_dir = readb(chip->base + GPIODIR);
335 chip->csave_regs.gpio_is = readb(chip->base + GPIOIS);
336 chip->csave_regs.gpio_ibe = readb(chip->base + GPIOIBE);
337 chip->csave_regs.gpio_iev = readb(chip->base + GPIOIEV);
338 chip->csave_regs.gpio_ie = readb(chip->base + GPIOIE);
339
340 for (offset = 0; offset < PL061_GPIO_NR; offset++) {
bea41504 341 if (chip->csave_regs.gpio_dir & (BIT(offset)))
e198a8de
DS
342 chip->csave_regs.gpio_data |=
343 pl061_get_value(&chip->gc, offset) << offset;
344 }
345
346 return 0;
347}
348
349static int pl061_resume(struct device *dev)
350{
351 struct pl061_gpio *chip = dev_get_drvdata(dev);
352 int offset;
353
354 for (offset = 0; offset < PL061_GPIO_NR; offset++) {
bea41504 355 if (chip->csave_regs.gpio_dir & (BIT(offset)))
e198a8de
DS
356 pl061_direction_output(&chip->gc, offset,
357 chip->csave_regs.gpio_data &
bea41504 358 (BIT(offset)));
e198a8de
DS
359 else
360 pl061_direction_input(&chip->gc, offset);
361 }
362
363 writeb(chip->csave_regs.gpio_is, chip->base + GPIOIS);
364 writeb(chip->csave_regs.gpio_ibe, chip->base + GPIOIBE);
365 writeb(chip->csave_regs.gpio_iev, chip->base + GPIOIEV);
366 writeb(chip->csave_regs.gpio_ie, chip->base + GPIOIE);
367
368 return 0;
369}
370
6e33aced
VK
371static const struct dev_pm_ops pl061_dev_pm_ops = {
372 .suspend = pl061_suspend,
373 .resume = pl061_resume,
374 .freeze = pl061_suspend,
375 .restore = pl061_resume,
376};
e198a8de
DS
377#endif
378
2c39c9e1 379static struct amba_id pl061_ids[] = {
1e9c2859
BS
380 {
381 .id = 0x00041061,
382 .mask = 0x000fffff,
383 },
384 { 0, 0 },
385};
386
955b678c
DM
387MODULE_DEVICE_TABLE(amba, pl061_ids);
388
1e9c2859
BS
389static struct amba_driver pl061_gpio_driver = {
390 .drv = {
391 .name = "pl061_gpio",
e198a8de
DS
392#ifdef CONFIG_PM
393 .pm = &pl061_dev_pm_ops,
394#endif
1e9c2859
BS
395 },
396 .id_table = pl061_ids,
397 .probe = pl061_probe,
398};
399
400static int __init pl061_gpio_init(void)
401{
402 return amba_driver_register(&pl061_gpio_driver);
403}
5985d76c 404module_init(pl061_gpio_init);
1e9c2859
BS
405
406MODULE_AUTHOR("Baruch Siach <baruch@tkos.co.il>");
407MODULE_DESCRIPTION("PL061 GPIO driver");
408MODULE_LICENSE("GPL");