2 * Copyright (C) 2008, 2009 Provigent Ltd.
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.
8 * Driver for the ARM PrimeCell(tm) General Purpose Input/Output (PL061)
10 * Data sheet: ARM DDI 0190B, September 2000
12 #include <linux/spinlock.h>
13 #include <linux/errno.h>
14 #include <linux/module.h>
16 #include <linux/ioport.h>
17 #include <linux/irq.h>
18 #include <linux/irqchip/chained_irq.h>
19 #include <linux/bitops.h>
20 #include <linux/gpio.h>
21 #include <linux/device.h>
22 #include <linux/amba/bus.h>
23 #include <linux/amba/pl061.h>
24 #include <linux/slab.h>
25 #include <linux/pinctrl/consumer.h>
37 #define PL061_GPIO_NR 8
40 struct pl061_context_save_regs {
58 struct pl061_context_save_regs csave_regs;
62 static int pl061_gpio_request(struct gpio_chip *gc, unsigned offset)
65 * Map back to global GPIO space and request muxing, the direction
66 * parameter does not matter for this controller.
68 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
69 int gpio = gc->base + offset;
71 if (chip->uses_pinctrl)
72 return pinctrl_request_gpio(gpio);
76 static void pl061_gpio_free(struct gpio_chip *gc, unsigned offset)
78 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
79 int gpio = gc->base + offset;
81 if (chip->uses_pinctrl)
82 pinctrl_free_gpio(gpio);
85 static int pl061_direction_input(struct gpio_chip *gc, unsigned offset)
87 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
89 unsigned char gpiodir;
91 if (offset >= gc->ngpio)
94 spin_lock_irqsave(&chip->lock, flags);
95 gpiodir = readb(chip->base + GPIODIR);
96 gpiodir &= ~(BIT(offset));
97 writeb(gpiodir, chip->base + GPIODIR);
98 spin_unlock_irqrestore(&chip->lock, flags);
103 static int pl061_direction_output(struct gpio_chip *gc, unsigned offset,
106 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
108 unsigned char gpiodir;
110 if (offset >= gc->ngpio)
113 spin_lock_irqsave(&chip->lock, flags);
114 writeb(!!value << offset, chip->base + (BIT(offset + 2)));
115 gpiodir = readb(chip->base + GPIODIR);
116 gpiodir |= BIT(offset);
117 writeb(gpiodir, chip->base + GPIODIR);
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.
123 writeb(!!value << offset, chip->base + (BIT(offset + 2)));
124 spin_unlock_irqrestore(&chip->lock, flags);
129 static int pl061_get_value(struct gpio_chip *gc, unsigned offset)
131 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
133 return !!readb(chip->base + (BIT(offset + 2)));
136 static void pl061_set_value(struct gpio_chip *gc, unsigned offset, int value)
138 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
140 writeb(!!value << offset, chip->base + (BIT(offset + 2)));
143 static int pl061_irq_type(struct irq_data *d, unsigned trigger)
145 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
146 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
147 int offset = irqd_to_hwirq(d);
149 u8 gpiois, gpioibe, gpioiev;
150 u8 bit = BIT(offset);
152 if (offset < 0 || offset >= PL061_GPIO_NR)
155 spin_lock_irqsave(&chip->lock, flags);
157 gpioiev = readb(chip->base + GPIOIEV);
158 gpiois = readb(chip->base + GPIOIS);
159 gpioibe = readb(chip->base + GPIOIBE);
161 if (trigger & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
163 if (trigger & IRQ_TYPE_LEVEL_HIGH)
170 if ((trigger & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH)
171 /* Setting this makes GPIOEV be ignored */
175 if (trigger & IRQ_TYPE_EDGE_RISING)
177 else if (trigger & IRQ_TYPE_EDGE_FALLING)
181 writeb(gpiois, chip->base + GPIOIS);
182 writeb(gpioibe, chip->base + GPIOIBE);
183 writeb(gpioiev, chip->base + GPIOIEV);
185 spin_unlock_irqrestore(&chip->lock, flags);
190 static void pl061_irq_handler(struct irq_desc *desc)
192 unsigned long pending;
194 struct gpio_chip *gc = irq_desc_get_handler_data(desc);
195 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
196 struct irq_chip *irqchip = irq_desc_get_chip(desc);
198 chained_irq_enter(irqchip, desc);
200 pending = readb(chip->base + GPIOMIS);
201 writeb(pending, chip->base + GPIOIC);
203 for_each_set_bit(offset, &pending, PL061_GPIO_NR)
204 generic_handle_irq(irq_find_mapping(gc->irqdomain,
208 chained_irq_exit(irqchip, desc);
211 static void pl061_irq_mask(struct irq_data *d)
213 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
214 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
215 u8 mask = BIT(irqd_to_hwirq(d) % PL061_GPIO_NR);
218 spin_lock(&chip->lock);
219 gpioie = readb(chip->base + GPIOIE) & ~mask;
220 writeb(gpioie, chip->base + GPIOIE);
221 spin_unlock(&chip->lock);
224 static void pl061_irq_unmask(struct irq_data *d)
226 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
227 struct pl061_gpio *chip = container_of(gc, struct pl061_gpio, gc);
228 u8 mask = BIT(irqd_to_hwirq(d) % PL061_GPIO_NR);
231 spin_lock(&chip->lock);
232 gpioie = readb(chip->base + GPIOIE) | mask;
233 writeb(gpioie, chip->base + GPIOIE);
234 spin_unlock(&chip->lock);
237 static struct irq_chip pl061_irqchip = {
239 .irq_mask = pl061_irq_mask,
240 .irq_unmask = pl061_irq_unmask,
241 .irq_set_type = pl061_irq_type,
244 static int pl061_probe(struct amba_device *adev, const struct amba_id *id)
246 struct device *dev = &adev->dev;
247 struct pl061_platform_data *pdata = dev_get_platdata(dev);
248 struct pl061_gpio *chip;
249 int ret, irq, i, irq_base;
251 chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
256 chip->gc.base = pdata->gpio_base;
257 irq_base = pdata->irq_base;
259 dev_err(&adev->dev, "invalid IRQ base in pdata\n");
267 chip->base = devm_ioremap_resource(dev, &adev->res);
268 if (IS_ERR(chip->base))
269 return PTR_ERR(chip->base);
271 spin_lock_init(&chip->lock);
272 if (of_property_read_bool(dev->of_node, "gpio-ranges"))
273 chip->uses_pinctrl = true;
275 chip->gc.request = pl061_gpio_request;
276 chip->gc.free = pl061_gpio_free;
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;
281 chip->gc.ngpio = PL061_GPIO_NR;
282 chip->gc.label = dev_name(dev);
284 chip->gc.owner = THIS_MODULE;
286 ret = gpiochip_add(&chip->gc);
293 writeb(0, chip->base + GPIOIE); /* disable irqs */
296 dev_err(&adev->dev, "invalid IRQ\n");
300 ret = gpiochip_irqchip_add(&chip->gc, &pl061_irqchip,
301 irq_base, handle_simple_irq,
304 dev_info(&adev->dev, "could not add irqchip\n");
307 gpiochip_set_chained_irqchip(&chip->gc, &pl061_irqchip,
308 irq, pl061_irq_handler);
310 for (i = 0; i < PL061_GPIO_NR; i++) {
312 if (pdata->directions & (BIT(i)))
313 pl061_direction_output(&chip->gc, i,
314 pdata->values & (BIT(i)));
316 pl061_direction_input(&chip->gc, i);
320 amba_set_drvdata(adev, chip);
321 dev_info(&adev->dev, "PL061 GPIO chip @%pa registered\n",
328 static int pl061_suspend(struct device *dev)
330 struct pl061_gpio *chip = dev_get_drvdata(dev);
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);
340 for (offset = 0; offset < PL061_GPIO_NR; offset++) {
341 if (chip->csave_regs.gpio_dir & (BIT(offset)))
342 chip->csave_regs.gpio_data |=
343 pl061_get_value(&chip->gc, offset) << offset;
349 static int pl061_resume(struct device *dev)
351 struct pl061_gpio *chip = dev_get_drvdata(dev);
354 for (offset = 0; offset < PL061_GPIO_NR; offset++) {
355 if (chip->csave_regs.gpio_dir & (BIT(offset)))
356 pl061_direction_output(&chip->gc, offset,
357 chip->csave_regs.gpio_data &
360 pl061_direction_input(&chip->gc, offset);
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);
371 static 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,
379 static struct amba_id pl061_ids[] = {
387 MODULE_DEVICE_TABLE(amba, pl061_ids);
389 static struct amba_driver pl061_gpio_driver = {
391 .name = "pl061_gpio",
393 .pm = &pl061_dev_pm_ops,
396 .id_table = pl061_ids,
397 .probe = pl061_probe,
400 static int __init pl061_gpio_init(void)
402 return amba_driver_register(&pl061_gpio_driver);
404 module_init(pl061_gpio_init);
407 MODULE_DESCRIPTION("PL061 GPIO driver");
408 MODULE_LICENSE("GPL");