2 * MXC GPIO support. (c) 2008 Daniel Mack <daniel@caiaq.de>
3 * Copyright 2008 Juergen Beisert, kernel@pengutronix.de
5 * Based on code from Freescale Semiconductor,
6 * Authors: Daniel Mack, Juergen Beisert.
7 * Copyright (C) 2004-2010 Freescale Semiconductor, Inc. All Rights Reserved.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 #include <linux/err.h>
24 #include <linux/init.h>
25 #include <linux/interrupt.h>
27 #include <linux/irq.h>
28 #include <linux/irqdomain.h>
29 #include <linux/irqchip/chained_irq.h>
30 #include <linux/platform_device.h>
31 #include <linux/slab.h>
32 #include <linux/gpio/driver.h>
34 #include <linux/of_device.h>
35 #include <linux/bug.h>
37 enum mxc_gpio_hwtype {
38 IMX1_GPIO, /* runs on i.mx1 */
39 IMX21_GPIO, /* runs on i.mx21 and i.mx27 */
40 IMX31_GPIO, /* runs on i.mx31 */
41 IMX35_GPIO, /* runs on all other i.mx */
44 /* device type dependent stuff */
45 struct mxc_gpio_hwdata {
60 struct mxc_gpio_port {
61 struct list_head node;
65 struct irq_domain *domain;
71 static struct mxc_gpio_hwdata imx1_imx21_gpio_hwdata = {
79 .edge_sel_reg = -EINVAL,
86 static struct mxc_gpio_hwdata imx31_gpio_hwdata = {
94 .edge_sel_reg = -EINVAL,
101 static struct mxc_gpio_hwdata imx35_gpio_hwdata = {
109 .edge_sel_reg = 0x1c,
116 static enum mxc_gpio_hwtype mxc_gpio_hwtype;
117 static struct mxc_gpio_hwdata *mxc_gpio_hwdata;
119 #define GPIO_DR (mxc_gpio_hwdata->dr_reg)
120 #define GPIO_GDIR (mxc_gpio_hwdata->gdir_reg)
121 #define GPIO_PSR (mxc_gpio_hwdata->psr_reg)
122 #define GPIO_ICR1 (mxc_gpio_hwdata->icr1_reg)
123 #define GPIO_ICR2 (mxc_gpio_hwdata->icr2_reg)
124 #define GPIO_IMR (mxc_gpio_hwdata->imr_reg)
125 #define GPIO_ISR (mxc_gpio_hwdata->isr_reg)
126 #define GPIO_EDGE_SEL (mxc_gpio_hwdata->edge_sel_reg)
128 #define GPIO_INT_LOW_LEV (mxc_gpio_hwdata->low_level)
129 #define GPIO_INT_HIGH_LEV (mxc_gpio_hwdata->high_level)
130 #define GPIO_INT_RISE_EDGE (mxc_gpio_hwdata->rise_edge)
131 #define GPIO_INT_FALL_EDGE (mxc_gpio_hwdata->fall_edge)
132 #define GPIO_INT_BOTH_EDGES 0x4
134 static const struct platform_device_id mxc_gpio_devtype[] = {
137 .driver_data = IMX1_GPIO,
139 .name = "imx21-gpio",
140 .driver_data = IMX21_GPIO,
142 .name = "imx31-gpio",
143 .driver_data = IMX31_GPIO,
145 .name = "imx35-gpio",
146 .driver_data = IMX35_GPIO,
152 static const struct of_device_id mxc_gpio_dt_ids[] = {
153 { .compatible = "fsl,imx1-gpio", .data = &mxc_gpio_devtype[IMX1_GPIO], },
154 { .compatible = "fsl,imx21-gpio", .data = &mxc_gpio_devtype[IMX21_GPIO], },
155 { .compatible = "fsl,imx31-gpio", .data = &mxc_gpio_devtype[IMX31_GPIO], },
156 { .compatible = "fsl,imx35-gpio", .data = &mxc_gpio_devtype[IMX35_GPIO], },
161 * MX2 has one interrupt *for all* gpio ports. The list is used
162 * to save the references to all ports, so that mx2_gpio_irq_handler
163 * can walk through all interrupt status registers.
165 static LIST_HEAD(mxc_gpio_ports);
167 /* Note: This driver assumes 32 GPIOs are handled in one register */
169 static int gpio_set_irq_type(struct irq_data *d, u32 type)
171 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
172 struct mxc_gpio_port *port = gc->private;
174 u32 gpio_idx = d->hwirq;
176 void __iomem *reg = port->base;
178 port->both_edges &= ~(1 << gpio_idx);
180 case IRQ_TYPE_EDGE_RISING:
181 edge = GPIO_INT_RISE_EDGE;
183 case IRQ_TYPE_EDGE_FALLING:
184 edge = GPIO_INT_FALL_EDGE;
186 case IRQ_TYPE_EDGE_BOTH:
187 if (GPIO_EDGE_SEL >= 0) {
188 edge = GPIO_INT_BOTH_EDGES;
190 val = port->gc.get(&port->gc, gpio_idx);
192 edge = GPIO_INT_LOW_LEV;
193 pr_debug("mxc: set GPIO %d to low trigger\n", gpio_idx);
195 edge = GPIO_INT_HIGH_LEV;
196 pr_debug("mxc: set GPIO %d to high trigger\n", gpio_idx);
198 port->both_edges |= 1 << gpio_idx;
201 case IRQ_TYPE_LEVEL_LOW:
202 edge = GPIO_INT_LOW_LEV;
204 case IRQ_TYPE_LEVEL_HIGH:
205 edge = GPIO_INT_HIGH_LEV;
211 if (GPIO_EDGE_SEL >= 0) {
212 val = readl(port->base + GPIO_EDGE_SEL);
213 if (edge == GPIO_INT_BOTH_EDGES)
214 writel(val | (1 << gpio_idx),
215 port->base + GPIO_EDGE_SEL);
217 writel(val & ~(1 << gpio_idx),
218 port->base + GPIO_EDGE_SEL);
221 if (edge != GPIO_INT_BOTH_EDGES) {
222 reg += GPIO_ICR1 + ((gpio_idx & 0x10) >> 2); /* lower or upper register */
223 bit = gpio_idx & 0xf;
224 val = readl(reg) & ~(0x3 << (bit << 1));
225 writel(val | (edge << (bit << 1)), reg);
228 writel(1 << gpio_idx, port->base + GPIO_ISR);
233 static void mxc_flip_edge(struct mxc_gpio_port *port, u32 gpio)
235 void __iomem *reg = port->base;
239 reg += GPIO_ICR1 + ((gpio & 0x10) >> 2); /* lower or upper register */
242 edge = (val >> (bit << 1)) & 3;
243 val &= ~(0x3 << (bit << 1));
244 if (edge == GPIO_INT_HIGH_LEV) {
245 edge = GPIO_INT_LOW_LEV;
246 pr_debug("mxc: switch GPIO %d to low trigger\n", gpio);
247 } else if (edge == GPIO_INT_LOW_LEV) {
248 edge = GPIO_INT_HIGH_LEV;
249 pr_debug("mxc: switch GPIO %d to high trigger\n", gpio);
251 pr_err("mxc: invalid configuration for GPIO %d: %x\n",
255 writel(val | (edge << (bit << 1)), reg);
258 /* handle 32 interrupts in one status register */
259 static void mxc_gpio_irq_handler(struct mxc_gpio_port *port, u32 irq_stat)
261 while (irq_stat != 0) {
262 int irqoffset = fls(irq_stat) - 1;
264 if (port->both_edges & (1 << irqoffset))
265 mxc_flip_edge(port, irqoffset);
267 generic_handle_irq(irq_find_mapping(port->domain, irqoffset));
269 irq_stat &= ~(1 << irqoffset);
273 /* MX1 and MX3 has one interrupt *per* gpio port */
274 static void mx3_gpio_irq_handler(struct irq_desc *desc)
277 struct mxc_gpio_port *port = irq_desc_get_handler_data(desc);
278 struct irq_chip *chip = irq_desc_get_chip(desc);
280 chained_irq_enter(chip, desc);
282 irq_stat = readl(port->base + GPIO_ISR) & readl(port->base + GPIO_IMR);
284 mxc_gpio_irq_handler(port, irq_stat);
286 chained_irq_exit(chip, desc);
289 /* MX2 has one interrupt *for all* gpio ports */
290 static void mx2_gpio_irq_handler(struct irq_desc *desc)
292 u32 irq_msk, irq_stat;
293 struct mxc_gpio_port *port;
294 struct irq_chip *chip = irq_desc_get_chip(desc);
296 chained_irq_enter(chip, desc);
298 /* walk through all interrupt status registers */
299 list_for_each_entry(port, &mxc_gpio_ports, node) {
300 irq_msk = readl(port->base + GPIO_IMR);
304 irq_stat = readl(port->base + GPIO_ISR) & irq_msk;
306 mxc_gpio_irq_handler(port, irq_stat);
308 chained_irq_exit(chip, desc);
312 * Set interrupt number "irq" in the GPIO as a wake-up source.
313 * While system is running, all registered GPIO interrupts need to have
314 * wake-up enabled. When system is suspended, only selected GPIO interrupts
315 * need to have wake-up enabled.
316 * @param irq interrupt source number
317 * @param enable enable as wake-up if equal to non-zero
318 * @return This function returns 0 on success.
320 static int gpio_set_wake_irq(struct irq_data *d, u32 enable)
322 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
323 struct mxc_gpio_port *port = gc->private;
324 u32 gpio_idx = d->hwirq;
328 if (port->irq_high && (gpio_idx >= 16))
329 ret = enable_irq_wake(port->irq_high);
331 ret = enable_irq_wake(port->irq);
333 if (port->irq_high && (gpio_idx >= 16))
334 ret = disable_irq_wake(port->irq_high);
336 ret = disable_irq_wake(port->irq);
342 static int mxc_gpio_init_gc(struct mxc_gpio_port *port, int irq_base)
344 struct irq_chip_generic *gc;
345 struct irq_chip_type *ct;
348 gc = devm_irq_alloc_generic_chip(port->dev, "gpio-mxc", 1, irq_base,
349 port->base, handle_level_irq);
355 ct->chip.irq_ack = irq_gc_ack_set_bit;
356 ct->chip.irq_mask = irq_gc_mask_clr_bit;
357 ct->chip.irq_unmask = irq_gc_mask_set_bit;
358 ct->chip.irq_set_type = gpio_set_irq_type;
359 ct->chip.irq_set_wake = gpio_set_wake_irq;
360 ct->chip.flags = IRQCHIP_MASK_ON_SUSPEND;
361 ct->regs.ack = GPIO_ISR;
362 ct->regs.mask = GPIO_IMR;
364 rv = devm_irq_setup_generic_chip(port->dev, gc, IRQ_MSK(32),
365 IRQ_GC_INIT_NESTED_LOCK,
371 static void mxc_gpio_get_hw(struct platform_device *pdev)
373 const struct of_device_id *of_id =
374 of_match_device(mxc_gpio_dt_ids, &pdev->dev);
375 enum mxc_gpio_hwtype hwtype;
378 pdev->id_entry = of_id->data;
379 hwtype = pdev->id_entry->driver_data;
381 if (mxc_gpio_hwtype) {
383 * The driver works with a reasonable presupposition,
384 * that is all gpio ports must be the same type when
385 * running on one soc.
387 BUG_ON(mxc_gpio_hwtype != hwtype);
391 if (hwtype == IMX35_GPIO)
392 mxc_gpio_hwdata = &imx35_gpio_hwdata;
393 else if (hwtype == IMX31_GPIO)
394 mxc_gpio_hwdata = &imx31_gpio_hwdata;
396 mxc_gpio_hwdata = &imx1_imx21_gpio_hwdata;
398 mxc_gpio_hwtype = hwtype;
401 static int mxc_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
403 struct mxc_gpio_port *port = gpiochip_get_data(gc);
405 return irq_find_mapping(port->domain, offset);
408 static int mxc_gpio_probe(struct platform_device *pdev)
410 struct device_node *np = pdev->dev.of_node;
411 struct mxc_gpio_port *port;
412 struct resource *iores;
416 mxc_gpio_get_hw(pdev);
418 port = devm_kzalloc(&pdev->dev, sizeof(*port), GFP_KERNEL);
422 port->dev = &pdev->dev;
424 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
425 port->base = devm_ioremap_resource(&pdev->dev, iores);
426 if (IS_ERR(port->base))
427 return PTR_ERR(port->base);
429 port->irq_high = platform_get_irq(pdev, 1);
430 if (port->irq_high < 0)
433 port->irq = platform_get_irq(pdev, 0);
437 /* disable the interrupt and clear the status */
438 writel(0, port->base + GPIO_IMR);
439 writel(~0, port->base + GPIO_ISR);
441 if (mxc_gpio_hwtype == IMX21_GPIO) {
443 * Setup one handler for all GPIO interrupts. Actually setting
444 * the handler is needed only once, but doing it for every port
445 * is more robust and easier.
447 irq_set_chained_handler(port->irq, mx2_gpio_irq_handler);
449 /* setup one handler for each entry */
450 irq_set_chained_handler_and_data(port->irq,
451 mx3_gpio_irq_handler, port);
452 if (port->irq_high > 0)
453 /* setup handler for GPIO 16 to 31 */
454 irq_set_chained_handler_and_data(port->irq_high,
455 mx3_gpio_irq_handler,
459 err = bgpio_init(&port->gc, &pdev->dev, 4,
460 port->base + GPIO_PSR,
461 port->base + GPIO_DR, NULL,
462 port->base + GPIO_GDIR, NULL,
463 BGPIOF_READ_OUTPUT_REG_SET);
467 if (of_property_read_bool(np, "gpio-ranges")) {
468 port->gc.request = gpiochip_generic_request;
469 port->gc.free = gpiochip_generic_free;
472 port->gc.to_irq = mxc_gpio_to_irq;
473 port->gc.base = (pdev->id < 0) ? of_alias_get_id(np, "gpio") * 32 :
476 err = devm_gpiochip_add_data(&pdev->dev, &port->gc, port);
480 irq_base = devm_irq_alloc_descs(&pdev->dev, -1, 0, 32, numa_node_id());
486 port->domain = irq_domain_add_legacy(np, 32, irq_base, 0,
487 &irq_domain_simple_ops, NULL);
493 /* gpio-mxc can be a generic irq chip */
494 err = mxc_gpio_init_gc(port, irq_base);
496 goto out_irqdomain_remove;
498 list_add_tail(&port->node, &mxc_gpio_ports);
502 out_irqdomain_remove:
503 irq_domain_remove(port->domain);
505 dev_info(&pdev->dev, "%s failed with errno %d\n", __func__, err);
509 static struct platform_driver mxc_gpio_driver = {
512 .of_match_table = mxc_gpio_dt_ids,
513 .suppress_bind_attrs = true,
515 .probe = mxc_gpio_probe,
516 .id_table = mxc_gpio_devtype,
519 static int __init gpio_mxc_init(void)
521 return platform_driver_register(&mxc_gpio_driver);
523 subsys_initcall(gpio_mxc_init);