blob: 995cf0b9e0b1baa5364dc525850a665ba34c5a98 [file] [log] [blame]
Fabio Estevam014e4202018-05-21 23:32:54 -03001// SPDX-License-Identifier: GPL-2.0+
2//
3// MXC GPIO support. (c) 2008 Daniel Mack <daniel@caiaq.de>
4// Copyright 2008 Juergen Beisert, kernel@pengutronix.de
5//
6// Based on code from Freescale Semiconductor,
7// Authors: Daniel Mack, Juergen Beisert.
8// Copyright (C) 2004-2010 Freescale Semiconductor, Inc. All Rights Reserved.
Juergen Beisert07bd1a62008-07-05 10:02:49 +02009
Anson Huang28088012018-05-22 11:05:40 +080010#include <linux/clk.h>
Fabio Estevam18f92b12013-07-22 18:17:52 -030011#include <linux/err.h>
Juergen Beisert07bd1a62008-07-05 10:02:49 +020012#include <linux/init.h>
Dinh Nguyena3484ff2010-10-23 09:12:48 -050013#include <linux/interrupt.h>
Juergen Beisert07bd1a62008-07-05 10:02:49 +020014#include <linux/io.h>
15#include <linux/irq.h>
Shawn Guo1ab7ef12012-06-13 09:04:03 +080016#include <linux/irqdomain.h>
Catalin Marinasde88cbb2013-01-18 15:31:37 +000017#include <linux/irqchip/chained_irq.h>
Shawn Guob78d8e52011-06-06 00:07:55 +080018#include <linux/platform_device.h>
19#include <linux/slab.h>
Linus Walleij0f4630f2015-12-04 14:02:58 +010020#include <linux/gpio/driver.h>
Shawn Guo8937cb62011-07-07 00:37:43 +080021#include <linux/of.h>
22#include <linux/of_device.h>
Christoph Hellwig16c3bd32015-08-28 09:27:22 +020023#include <linux/bug.h>
Juergen Beisert07bd1a62008-07-05 10:02:49 +020024
Shawn Guoe7fc6ae2011-07-07 00:37:41 +080025enum mxc_gpio_hwtype {
26 IMX1_GPIO, /* runs on i.mx1 */
27 IMX21_GPIO, /* runs on i.mx21 and i.mx27 */
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +020028 IMX31_GPIO, /* runs on i.mx31 */
29 IMX35_GPIO, /* runs on all other i.mx */
Shawn Guoe7fc6ae2011-07-07 00:37:41 +080030};
31
32/* device type dependent stuff */
33struct mxc_gpio_hwdata {
34 unsigned dr_reg;
35 unsigned gdir_reg;
36 unsigned psr_reg;
37 unsigned icr1_reg;
38 unsigned icr2_reg;
39 unsigned imr_reg;
40 unsigned isr_reg;
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +020041 int edge_sel_reg;
Shawn Guoe7fc6ae2011-07-07 00:37:41 +080042 unsigned low_level;
43 unsigned high_level;
44 unsigned rise_edge;
45 unsigned fall_edge;
46};
47
Anson Huangc19fdae2018-07-18 09:25:32 +080048struct mxc_gpio_reg_saved {
49 u32 icr1;
50 u32 icr2;
51 u32 imr;
52 u32 gdir;
53 u32 edge_sel;
54 u32 dr;
55};
56
Shawn Guob78d8e52011-06-06 00:07:55 +080057struct mxc_gpio_port {
58 struct list_head node;
59 void __iomem *base;
Anson Huang28088012018-05-22 11:05:40 +080060 struct clk *clk;
Shawn Guob78d8e52011-06-06 00:07:55 +080061 int irq;
62 int irq_high;
Shawn Guo1ab7ef12012-06-13 09:04:03 +080063 struct irq_domain *domain;
Linus Walleij0f4630f2015-12-04 14:02:58 +010064 struct gpio_chip gc;
Bartosz Golaszewskidb5270a2017-08-09 14:25:06 +020065 struct device *dev;
Shawn Guob78d8e52011-06-06 00:07:55 +080066 u32 both_edges;
Anson Huangc19fdae2018-07-18 09:25:32 +080067 struct mxc_gpio_reg_saved gpio_saved_reg;
68 bool power_off;
Shawn Guob78d8e52011-06-06 00:07:55 +080069};
70
Shawn Guoe7fc6ae2011-07-07 00:37:41 +080071static struct mxc_gpio_hwdata imx1_imx21_gpio_hwdata = {
72 .dr_reg = 0x1c,
73 .gdir_reg = 0x00,
74 .psr_reg = 0x24,
75 .icr1_reg = 0x28,
76 .icr2_reg = 0x2c,
77 .imr_reg = 0x30,
78 .isr_reg = 0x34,
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +020079 .edge_sel_reg = -EINVAL,
Shawn Guoe7fc6ae2011-07-07 00:37:41 +080080 .low_level = 0x03,
81 .high_level = 0x02,
82 .rise_edge = 0x00,
83 .fall_edge = 0x01,
84};
85
86static struct mxc_gpio_hwdata imx31_gpio_hwdata = {
87 .dr_reg = 0x00,
88 .gdir_reg = 0x04,
89 .psr_reg = 0x08,
90 .icr1_reg = 0x0c,
91 .icr2_reg = 0x10,
92 .imr_reg = 0x14,
93 .isr_reg = 0x18,
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +020094 .edge_sel_reg = -EINVAL,
95 .low_level = 0x00,
96 .high_level = 0x01,
97 .rise_edge = 0x02,
98 .fall_edge = 0x03,
99};
100
101static struct mxc_gpio_hwdata imx35_gpio_hwdata = {
102 .dr_reg = 0x00,
103 .gdir_reg = 0x04,
104 .psr_reg = 0x08,
105 .icr1_reg = 0x0c,
106 .icr2_reg = 0x10,
107 .imr_reg = 0x14,
108 .isr_reg = 0x18,
109 .edge_sel_reg = 0x1c,
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800110 .low_level = 0x00,
111 .high_level = 0x01,
112 .rise_edge = 0x02,
113 .fall_edge = 0x03,
114};
115
116static enum mxc_gpio_hwtype mxc_gpio_hwtype;
117static struct mxc_gpio_hwdata *mxc_gpio_hwdata;
118
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)
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200126#define GPIO_EDGE_SEL (mxc_gpio_hwdata->edge_sel_reg)
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800127
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)
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200132#define GPIO_INT_BOTH_EDGES 0x4
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800133
Krzysztof Kozlowskif4f79d42015-05-02 00:56:47 +0900134static const struct platform_device_id mxc_gpio_devtype[] = {
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800135 {
136 .name = "imx1-gpio",
137 .driver_data = IMX1_GPIO,
138 }, {
139 .name = "imx21-gpio",
140 .driver_data = IMX21_GPIO,
141 }, {
142 .name = "imx31-gpio",
143 .driver_data = IMX31_GPIO,
144 }, {
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200145 .name = "imx35-gpio",
146 .driver_data = IMX35_GPIO,
147 }, {
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800148 /* sentinel */
149 }
150};
151
Shawn Guo8937cb62011-07-07 00:37:43 +0800152static 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], },
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200156 { .compatible = "fsl,imx35-gpio", .data = &mxc_gpio_devtype[IMX35_GPIO], },
Anson Huangc19fdae2018-07-18 09:25:32 +0800157 { .compatible = "fsl,imx7d-gpio", .data = &mxc_gpio_devtype[IMX35_GPIO], },
Shawn Guo8937cb62011-07-07 00:37:43 +0800158 { /* sentinel */ }
159};
160
Shawn Guob78d8e52011-06-06 00:07:55 +0800161/*
162 * MX2 has one interrupt *for all* gpio ports. The list is used
163 * to save the references to all ports, so that mx2_gpio_irq_handler
164 * can walk through all interrupt status registers.
165 */
166static LIST_HEAD(mxc_gpio_ports);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200167
168/* Note: This driver assumes 32 GPIOs are handled in one register */
169
Lennert Buytenhek4d935792010-11-29 11:16:23 +0100170static int gpio_set_irq_type(struct irq_data *d, u32 type)
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200171{
Shawn Guoe4ea9332011-06-07 16:25:37 +0800172 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
173 struct mxc_gpio_port *port = gc->private;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200174 u32 bit, val;
Shawn Guo1ab7ef12012-06-13 09:04:03 +0800175 u32 gpio_idx = d->hwirq;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200176 int edge;
177 void __iomem *reg = port->base;
178
Shawn Guo1ab7ef12012-06-13 09:04:03 +0800179 port->both_edges &= ~(1 << gpio_idx);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200180 switch (type) {
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100181 case IRQ_TYPE_EDGE_RISING:
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200182 edge = GPIO_INT_RISE_EDGE;
183 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100184 case IRQ_TYPE_EDGE_FALLING:
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200185 edge = GPIO_INT_FALL_EDGE;
186 break;
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100187 case IRQ_TYPE_EDGE_BOTH:
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200188 if (GPIO_EDGE_SEL >= 0) {
189 edge = GPIO_INT_BOTH_EDGES;
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100190 } else {
Linus Walleij8d0bd9a2018-04-15 22:25:00 +0200191 val = port->gc.get(&port->gc, gpio_idx);
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200192 if (val) {
193 edge = GPIO_INT_LOW_LEV;
Linus Walleij8d0bd9a2018-04-15 22:25:00 +0200194 pr_debug("mxc: set GPIO %d to low trigger\n", gpio_idx);
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200195 } else {
196 edge = GPIO_INT_HIGH_LEV;
Linus Walleij8d0bd9a2018-04-15 22:25:00 +0200197 pr_debug("mxc: set GPIO %d to high trigger\n", gpio_idx);
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200198 }
Linus Torvaldsf948ad02012-07-26 13:56:38 -0700199 port->both_edges |= 1 << gpio_idx;
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100200 }
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100201 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100202 case IRQ_TYPE_LEVEL_LOW:
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200203 edge = GPIO_INT_LOW_LEV;
204 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100205 case IRQ_TYPE_LEVEL_HIGH:
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200206 edge = GPIO_INT_HIGH_LEV;
207 break;
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100208 default:
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200209 return -EINVAL;
210 }
211
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200212 if (GPIO_EDGE_SEL >= 0) {
213 val = readl(port->base + GPIO_EDGE_SEL);
214 if (edge == GPIO_INT_BOTH_EDGES)
Linus Torvaldsf948ad02012-07-26 13:56:38 -0700215 writel(val | (1 << gpio_idx),
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200216 port->base + GPIO_EDGE_SEL);
217 else
Linus Torvaldsf948ad02012-07-26 13:56:38 -0700218 writel(val & ~(1 << gpio_idx),
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200219 port->base + GPIO_EDGE_SEL);
220 }
221
222 if (edge != GPIO_INT_BOTH_EDGES) {
Linus Torvaldsf948ad02012-07-26 13:56:38 -0700223 reg += GPIO_ICR1 + ((gpio_idx & 0x10) >> 2); /* lower or upper register */
224 bit = gpio_idx & 0xf;
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200225 val = readl(reg) & ~(0x3 << (bit << 1));
226 writel(val | (edge << (bit << 1)), reg);
227 }
228
Shawn Guo1ab7ef12012-06-13 09:04:03 +0800229 writel(1 << gpio_idx, port->base + GPIO_ISR);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200230
231 return 0;
232}
233
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100234static void mxc_flip_edge(struct mxc_gpio_port *port, u32 gpio)
235{
236 void __iomem *reg = port->base;
237 u32 bit, val;
238 int edge;
239
240 reg += GPIO_ICR1 + ((gpio & 0x10) >> 2); /* lower or upper register */
241 bit = gpio & 0xf;
Shawn Guob78d8e52011-06-06 00:07:55 +0800242 val = readl(reg);
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100243 edge = (val >> (bit << 1)) & 3;
244 val &= ~(0x3 << (bit << 1));
Uwe Kleine-König3d40f7f2010-02-05 22:14:37 +0100245 if (edge == GPIO_INT_HIGH_LEV) {
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100246 edge = GPIO_INT_LOW_LEV;
247 pr_debug("mxc: switch GPIO %d to low trigger\n", gpio);
Uwe Kleine-König3d40f7f2010-02-05 22:14:37 +0100248 } else if (edge == GPIO_INT_LOW_LEV) {
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100249 edge = GPIO_INT_HIGH_LEV;
250 pr_debug("mxc: switch GPIO %d to high trigger\n", gpio);
Uwe Kleine-König3d40f7f2010-02-05 22:14:37 +0100251 } else {
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100252 pr_err("mxc: invalid configuration for GPIO %d: %x\n",
253 gpio, edge);
254 return;
255 }
Shawn Guob78d8e52011-06-06 00:07:55 +0800256 writel(val | (edge << (bit << 1)), reg);
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100257}
258
Uwe Kleine-König3621f182010-02-08 21:02:30 +0100259/* handle 32 interrupts in one status register */
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200260static void mxc_gpio_irq_handler(struct mxc_gpio_port *port, u32 irq_stat)
261{
Uwe Kleine-König3621f182010-02-08 21:02:30 +0100262 while (irq_stat != 0) {
263 int irqoffset = fls(irq_stat) - 1;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200264
Uwe Kleine-König3621f182010-02-08 21:02:30 +0100265 if (port->both_edges & (1 << irqoffset))
266 mxc_flip_edge(port, irqoffset);
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100267
Shawn Guo1ab7ef12012-06-13 09:04:03 +0800268 generic_handle_irq(irq_find_mapping(port->domain, irqoffset));
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100269
Uwe Kleine-König3621f182010-02-08 21:02:30 +0100270 irq_stat &= ~(1 << irqoffset);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200271 }
272}
273
Paulius Zaleckascfca8b52008-11-14 11:01:38 +0100274/* MX1 and MX3 has one interrupt *per* gpio port */
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200275static void mx3_gpio_irq_handler(struct irq_desc *desc)
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200276{
277 u32 irq_stat;
Jiang Liu476f8b42015-06-04 12:13:15 +0800278 struct mxc_gpio_port *port = irq_desc_get_handler_data(desc);
279 struct irq_chip *chip = irq_desc_get_chip(desc);
Shawn Guo0e44b6e2011-09-21 21:24:04 +0800280
281 chained_irq_enter(chip, desc);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200282
Shawn Guob78d8e52011-06-06 00:07:55 +0800283 irq_stat = readl(port->base + GPIO_ISR) & readl(port->base + GPIO_IMR);
Sascha Hauere2c97e72009-04-21 12:39:59 +0200284
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200285 mxc_gpio_irq_handler(port, irq_stat);
Shawn Guo0e44b6e2011-09-21 21:24:04 +0800286
287 chained_irq_exit(chip, desc);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200288}
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200289
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200290/* MX2 has one interrupt *for all* gpio ports */
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200291static void mx2_gpio_irq_handler(struct irq_desc *desc)
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200292{
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200293 u32 irq_msk, irq_stat;
Shawn Guob78d8e52011-06-06 00:07:55 +0800294 struct mxc_gpio_port *port;
Jiang Liu476f8b42015-06-04 12:13:15 +0800295 struct irq_chip *chip = irq_desc_get_chip(desc);
Uwe Kleine-Königc0e811d2013-07-18 14:58:06 +0200296
297 chained_irq_enter(chip, desc);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200298
299 /* walk through all interrupt status registers */
Shawn Guob78d8e52011-06-06 00:07:55 +0800300 list_for_each_entry(port, &mxc_gpio_ports, node) {
301 irq_msk = readl(port->base + GPIO_IMR);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200302 if (!irq_msk)
303 continue;
304
Shawn Guob78d8e52011-06-06 00:07:55 +0800305 irq_stat = readl(port->base + GPIO_ISR) & irq_msk;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200306 if (irq_stat)
Shawn Guob78d8e52011-06-06 00:07:55 +0800307 mxc_gpio_irq_handler(port, irq_stat);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200308 }
Uwe Kleine-Königc0e811d2013-07-18 14:58:06 +0200309 chained_irq_exit(chip, desc);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200310}
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200311
Dinh Nguyena3484ff2010-10-23 09:12:48 -0500312/*
313 * Set interrupt number "irq" in the GPIO as a wake-up source.
314 * While system is running, all registered GPIO interrupts need to have
315 * wake-up enabled. When system is suspended, only selected GPIO interrupts
316 * need to have wake-up enabled.
317 * @param irq interrupt source number
318 * @param enable enable as wake-up if equal to non-zero
319 * @return This function returns 0 on success.
320 */
Lennert Buytenhek4d935792010-11-29 11:16:23 +0100321static int gpio_set_wake_irq(struct irq_data *d, u32 enable)
Dinh Nguyena3484ff2010-10-23 09:12:48 -0500322{
Shawn Guoe4ea9332011-06-07 16:25:37 +0800323 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
324 struct mxc_gpio_port *port = gc->private;
Shawn Guo1ab7ef12012-06-13 09:04:03 +0800325 u32 gpio_idx = d->hwirq;
Philipp Rosenberger77a4d752017-07-12 10:36:40 +0200326 int ret;
Dinh Nguyena3484ff2010-10-23 09:12:48 -0500327
328 if (enable) {
329 if (port->irq_high && (gpio_idx >= 16))
Philipp Rosenberger77a4d752017-07-12 10:36:40 +0200330 ret = enable_irq_wake(port->irq_high);
Dinh Nguyena3484ff2010-10-23 09:12:48 -0500331 else
Philipp Rosenberger77a4d752017-07-12 10:36:40 +0200332 ret = enable_irq_wake(port->irq);
Dinh Nguyena3484ff2010-10-23 09:12:48 -0500333 } else {
334 if (port->irq_high && (gpio_idx >= 16))
Philipp Rosenberger77a4d752017-07-12 10:36:40 +0200335 ret = disable_irq_wake(port->irq_high);
Dinh Nguyena3484ff2010-10-23 09:12:48 -0500336 else
Philipp Rosenberger77a4d752017-07-12 10:36:40 +0200337 ret = disable_irq_wake(port->irq);
Dinh Nguyena3484ff2010-10-23 09:12:48 -0500338 }
339
Philipp Rosenberger77a4d752017-07-12 10:36:40 +0200340 return ret;
Dinh Nguyena3484ff2010-10-23 09:12:48 -0500341}
342
Peng Fan9e26b0b2015-08-23 21:11:52 +0800343static int mxc_gpio_init_gc(struct mxc_gpio_port *port, int irq_base)
Shawn Guoe4ea9332011-06-07 16:25:37 +0800344{
345 struct irq_chip_generic *gc;
346 struct irq_chip_type *ct;
Bartosz Golaszewskidb5270a2017-08-09 14:25:06 +0200347 int rv;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200348
Bartosz Golaszewskidb5270a2017-08-09 14:25:06 +0200349 gc = devm_irq_alloc_generic_chip(port->dev, "gpio-mxc", 1, irq_base,
350 port->base, handle_level_irq);
Peng Fan9e26b0b2015-08-23 21:11:52 +0800351 if (!gc)
352 return -ENOMEM;
Shawn Guoe4ea9332011-06-07 16:25:37 +0800353 gc->private = port;
354
355 ct = gc->chip_types;
Shawn Guo591567a2011-07-19 21:16:56 +0800356 ct->chip.irq_ack = irq_gc_ack_set_bit;
Shawn Guoe4ea9332011-06-07 16:25:37 +0800357 ct->chip.irq_mask = irq_gc_mask_clr_bit;
358 ct->chip.irq_unmask = irq_gc_mask_set_bit;
359 ct->chip.irq_set_type = gpio_set_irq_type;
Shawn Guo591567a2011-07-19 21:16:56 +0800360 ct->chip.irq_set_wake = gpio_set_wake_irq;
Ulises Brindis952cfbd2015-08-05 10:23:07 -0700361 ct->chip.flags = IRQCHIP_MASK_ON_SUSPEND;
Shawn Guoe4ea9332011-06-07 16:25:37 +0800362 ct->regs.ack = GPIO_ISR;
363 ct->regs.mask = GPIO_IMR;
364
Bartosz Golaszewskidb5270a2017-08-09 14:25:06 +0200365 rv = devm_irq_setup_generic_chip(port->dev, gc, IRQ_MSK(32),
366 IRQ_GC_INIT_NESTED_LOCK,
367 IRQ_NOREQUEST, 0);
Peng Fan9e26b0b2015-08-23 21:11:52 +0800368
Bartosz Golaszewskidb5270a2017-08-09 14:25:06 +0200369 return rv;
Shawn Guoe4ea9332011-06-07 16:25:37 +0800370}
Thomas Gleixnerb5eee2f2011-04-04 14:29:58 +0200371
Bill Pemberton38363092012-11-19 13:22:34 -0500372static void mxc_gpio_get_hw(struct platform_device *pdev)
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800373{
Shawn Guo8937cb62011-07-07 00:37:43 +0800374 const struct of_device_id *of_id =
375 of_match_device(mxc_gpio_dt_ids, &pdev->dev);
376 enum mxc_gpio_hwtype hwtype;
377
378 if (of_id)
379 pdev->id_entry = of_id->data;
380 hwtype = pdev->id_entry->driver_data;
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800381
382 if (mxc_gpio_hwtype) {
383 /*
384 * The driver works with a reasonable presupposition,
385 * that is all gpio ports must be the same type when
386 * running on one soc.
387 */
388 BUG_ON(mxc_gpio_hwtype != hwtype);
389 return;
390 }
391
Benoît Thébaudeauaeb27742012-06-22 21:04:06 +0200392 if (hwtype == IMX35_GPIO)
393 mxc_gpio_hwdata = &imx35_gpio_hwdata;
394 else if (hwtype == IMX31_GPIO)
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800395 mxc_gpio_hwdata = &imx31_gpio_hwdata;
396 else
397 mxc_gpio_hwdata = &imx1_imx21_gpio_hwdata;
398
399 mxc_gpio_hwtype = hwtype;
400}
401
Shawn Guo09ad8032011-08-14 00:14:02 +0800402static int mxc_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
403{
Linus Walleij0f4630f2015-12-04 14:02:58 +0100404 struct mxc_gpio_port *port = gpiochip_get_data(gc);
Shawn Guo09ad8032011-08-14 00:14:02 +0800405
Shawn Guo1ab7ef12012-06-13 09:04:03 +0800406 return irq_find_mapping(port->domain, offset);
Shawn Guo09ad8032011-08-14 00:14:02 +0800407}
408
Bill Pemberton38363092012-11-19 13:22:34 -0500409static int mxc_gpio_probe(struct platform_device *pdev)
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200410{
Shawn Guo8937cb62011-07-07 00:37:43 +0800411 struct device_node *np = pdev->dev.of_node;
Shawn Guob78d8e52011-06-06 00:07:55 +0800412 struct mxc_gpio_port *port;
413 struct resource *iores;
Shawn Guo1ab7ef12012-06-13 09:04:03 +0800414 int irq_base;
Shawn Guoe4ea9332011-06-07 16:25:37 +0800415 int err;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200416
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800417 mxc_gpio_get_hw(pdev);
418
Fabio Estevam8cd73e42013-07-08 17:14:39 -0300419 port = devm_kzalloc(&pdev->dev, sizeof(*port), GFP_KERNEL);
Shawn Guob78d8e52011-06-06 00:07:55 +0800420 if (!port)
421 return -ENOMEM;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200422
Bartosz Golaszewskidb5270a2017-08-09 14:25:06 +0200423 port->dev = &pdev->dev;
424
Shawn Guob78d8e52011-06-06 00:07:55 +0800425 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Fabio Estevam8cd73e42013-07-08 17:14:39 -0300426 port->base = devm_ioremap_resource(&pdev->dev, iores);
427 if (IS_ERR(port->base))
428 return PTR_ERR(port->base);
Baruch Siach14cb0de2010-07-06 14:03:22 +0300429
Shawn Guob78d8e52011-06-06 00:07:55 +0800430 port->irq_high = platform_get_irq(pdev, 1);
Philipp Rosenbergercc9269f2017-07-12 10:36:39 +0200431 if (port->irq_high < 0)
432 port->irq_high = 0;
433
Shawn Guob78d8e52011-06-06 00:07:55 +0800434 port->irq = platform_get_irq(pdev, 0);
Fabio Estevam8cd73e42013-07-08 17:14:39 -0300435 if (port->irq < 0)
Sachin Kamat5ea80e42013-12-21 13:05:57 +0530436 return port->irq;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200437
Anson Huang28088012018-05-22 11:05:40 +0800438 /* the controller clock is optional */
439 port->clk = devm_clk_get(&pdev->dev, NULL);
440 if (IS_ERR(port->clk))
441 port->clk = NULL;
442
443 err = clk_prepare_enable(port->clk);
444 if (err) {
445 dev_err(&pdev->dev, "Unable to enable clock.\n");
446 return err;
447 }
448
Anson Huangc19fdae2018-07-18 09:25:32 +0800449 if (of_device_is_compatible(np, "fsl,imx7d-gpio"))
450 port->power_off = true;
451
Shawn Guob78d8e52011-06-06 00:07:55 +0800452 /* disable the interrupt and clear the status */
453 writel(0, port->base + GPIO_IMR);
454 writel(~0, port->base + GPIO_ISR);
455
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800456 if (mxc_gpio_hwtype == IMX21_GPIO) {
Uwe Kleine-König33a4e982012-06-06 11:49:23 +0200457 /*
458 * Setup one handler for all GPIO interrupts. Actually setting
459 * the handler is needed only once, but doing it for every port
460 * is more robust and easier.
461 */
462 irq_set_chained_handler(port->irq, mx2_gpio_irq_handler);
Shawn Guob78d8e52011-06-06 00:07:55 +0800463 } else {
464 /* setup one handler for each entry */
Russell Kinge65eea52015-06-16 23:06:40 +0100465 irq_set_chained_handler_and_data(port->irq,
466 mx3_gpio_irq_handler, port);
467 if (port->irq_high > 0)
Shawn Guob78d8e52011-06-06 00:07:55 +0800468 /* setup handler for GPIO 16 to 31 */
Russell Kinge65eea52015-06-16 23:06:40 +0100469 irq_set_chained_handler_and_data(port->irq_high,
470 mx3_gpio_irq_handler,
471 port);
Sascha Hauer8afaada2009-06-15 12:36:25 +0200472 }
473
Linus Walleij0f4630f2015-12-04 14:02:58 +0100474 err = bgpio_init(&port->gc, &pdev->dev, 4,
Shawn Guo2ce420d2011-06-06 13:22:41 +0800475 port->base + GPIO_PSR,
476 port->base + GPIO_DR, NULL,
Vladimir Zapolskiy442b2492015-04-29 18:35:01 +0300477 port->base + GPIO_GDIR, NULL,
478 BGPIOF_READ_OUTPUT_REG_SET);
Shawn Guob78d8e52011-06-06 00:07:55 +0800479 if (err)
Fabio Estevam8cd73e42013-07-08 17:14:39 -0300480 goto out_bgio;
Shawn Guob78d8e52011-06-06 00:07:55 +0800481
Vladimir Zapolskiy4c806c92016-09-08 04:48:16 +0300482 if (of_property_read_bool(np, "gpio-ranges")) {
483 port->gc.request = gpiochip_generic_request;
484 port->gc.free = gpiochip_generic_free;
485 }
486
Linus Walleij0f4630f2015-12-04 14:02:58 +0100487 port->gc.to_irq = mxc_gpio_to_irq;
488 port->gc.base = (pdev->id < 0) ? of_alias_get_id(np, "gpio") * 32 :
Shawn Guo7e6086d2012-08-05 14:01:26 +0800489 pdev->id * 32;
Shawn Guo2ce420d2011-06-06 13:22:41 +0800490
Laxman Dewanganffc56632016-02-22 17:43:28 +0530491 err = devm_gpiochip_add_data(&pdev->dev, &port->gc, port);
Shawn Guo2ce420d2011-06-06 13:22:41 +0800492 if (err)
Linus Walleij0f4630f2015-12-04 14:02:58 +0100493 goto out_bgio;
Shawn Guo2ce420d2011-06-06 13:22:41 +0800494
Bartosz Golaszewskic553c3c2017-03-04 17:23:38 +0100495 irq_base = devm_irq_alloc_descs(&pdev->dev, -1, 0, 32, numa_node_id());
Shawn Guo1ab7ef12012-06-13 09:04:03 +0800496 if (irq_base < 0) {
497 err = irq_base;
Laxman Dewanganffc56632016-02-22 17:43:28 +0530498 goto out_bgio;
Shawn Guo1ab7ef12012-06-13 09:04:03 +0800499 }
500
501 port->domain = irq_domain_add_legacy(np, 32, irq_base, 0,
502 &irq_domain_simple_ops, NULL);
503 if (!port->domain) {
504 err = -ENODEV;
Bartosz Golaszewskic553c3c2017-03-04 17:23:38 +0100505 goto out_bgio;
Shawn Guo1ab7ef12012-06-13 09:04:03 +0800506 }
Shawn Guo8937cb62011-07-07 00:37:43 +0800507
508 /* gpio-mxc can be a generic irq chip */
Peng Fan9e26b0b2015-08-23 21:11:52 +0800509 err = mxc_gpio_init_gc(port, irq_base);
510 if (err < 0)
511 goto out_irqdomain_remove;
Shawn Guo8937cb62011-07-07 00:37:43 +0800512
Shawn Guob78d8e52011-06-06 00:07:55 +0800513 list_add_tail(&port->node, &mxc_gpio_ports);
514
Anson Huangc19fdae2018-07-18 09:25:32 +0800515 platform_set_drvdata(pdev, port);
516
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200517 return 0;
Shawn Guob78d8e52011-06-06 00:07:55 +0800518
Peng Fan9e26b0b2015-08-23 21:11:52 +0800519out_irqdomain_remove:
520 irq_domain_remove(port->domain);
Fabio Estevam8cd73e42013-07-08 17:14:39 -0300521out_bgio:
Anson Huang28088012018-05-22 11:05:40 +0800522 clk_disable_unprepare(port->clk);
Shawn Guob78d8e52011-06-06 00:07:55 +0800523 dev_info(&pdev->dev, "%s failed with errno %d\n", __func__, err);
524 return err;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200525}
Shawn Guob78d8e52011-06-06 00:07:55 +0800526
Anson Huangc19fdae2018-07-18 09:25:32 +0800527static void mxc_gpio_save_regs(struct mxc_gpio_port *port)
528{
529 if (!port->power_off)
530 return;
531
532 port->gpio_saved_reg.icr1 = readl(port->base + GPIO_ICR1);
533 port->gpio_saved_reg.icr2 = readl(port->base + GPIO_ICR2);
534 port->gpio_saved_reg.imr = readl(port->base + GPIO_IMR);
535 port->gpio_saved_reg.gdir = readl(port->base + GPIO_GDIR);
536 port->gpio_saved_reg.edge_sel = readl(port->base + GPIO_EDGE_SEL);
537 port->gpio_saved_reg.dr = readl(port->base + GPIO_DR);
538}
539
540static void mxc_gpio_restore_regs(struct mxc_gpio_port *port)
541{
542 if (!port->power_off)
543 return;
544
545 writel(port->gpio_saved_reg.icr1, port->base + GPIO_ICR1);
546 writel(port->gpio_saved_reg.icr2, port->base + GPIO_ICR2);
547 writel(port->gpio_saved_reg.imr, port->base + GPIO_IMR);
548 writel(port->gpio_saved_reg.gdir, port->base + GPIO_GDIR);
549 writel(port->gpio_saved_reg.edge_sel, port->base + GPIO_EDGE_SEL);
550 writel(port->gpio_saved_reg.dr, port->base + GPIO_DR);
551}
552
553static int __maybe_unused mxc_gpio_noirq_suspend(struct device *dev)
554{
555 struct platform_device *pdev = to_platform_device(dev);
556 struct mxc_gpio_port *port = platform_get_drvdata(pdev);
557
558 mxc_gpio_save_regs(port);
559 clk_disable_unprepare(port->clk);
560
561 return 0;
562}
563
564static int __maybe_unused mxc_gpio_noirq_resume(struct device *dev)
565{
566 struct platform_device *pdev = to_platform_device(dev);
567 struct mxc_gpio_port *port = platform_get_drvdata(pdev);
568 int ret;
569
570 ret = clk_prepare_enable(port->clk);
571 if (ret)
572 return ret;
573 mxc_gpio_restore_regs(port);
574
575 return 0;
576}
577
578static const struct dev_pm_ops mxc_gpio_dev_pm_ops = {
579 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(mxc_gpio_noirq_suspend, mxc_gpio_noirq_resume)
580};
581
Shawn Guob78d8e52011-06-06 00:07:55 +0800582static struct platform_driver mxc_gpio_driver = {
583 .driver = {
584 .name = "gpio-mxc",
Shawn Guo8937cb62011-07-07 00:37:43 +0800585 .of_match_table = mxc_gpio_dt_ids,
Bartosz Golaszewski90e1fc42017-08-09 14:25:00 +0200586 .suppress_bind_attrs = true,
Anson Huangc19fdae2018-07-18 09:25:32 +0800587 .pm = &mxc_gpio_dev_pm_ops,
Shawn Guob78d8e52011-06-06 00:07:55 +0800588 },
589 .probe = mxc_gpio_probe,
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800590 .id_table = mxc_gpio_devtype,
Shawn Guob78d8e52011-06-06 00:07:55 +0800591};
592
593static int __init gpio_mxc_init(void)
594{
595 return platform_driver_register(&mxc_gpio_driver);
596}
Vladimir Zapolskiye188cbf2016-09-08 04:48:15 +0300597subsys_initcall(gpio_mxc_init);