blob: 950e53a636fabb2101712f0e6f9ec0cd5a775a00 [file] [log] [blame]
Juergen Beisert07bd1a62008-07-05 10:02:49 +02001/*
2 * MXC GPIO support. (c) 2008 Daniel Mack <daniel@caiaq.de>
3 * Copyright 2008 Juergen Beisert, kernel@pengutronix.de
4 *
5 * Based on code from Freescale,
Dinh Nguyene24798e2010-04-22 16:28:42 +03006 * Copyright (C) 2004-2010 Freescale Semiconductor, Inc. All Rights Reserved.
Juergen Beisert07bd1a62008-07-05 10:02:49 +02007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 */
21
22#include <linux/init.h>
Dinh Nguyena3484ff2010-10-23 09:12:48 -050023#include <linux/interrupt.h>
Juergen Beisert07bd1a62008-07-05 10:02:49 +020024#include <linux/io.h>
25#include <linux/irq.h>
26#include <linux/gpio.h>
Shawn Guob78d8e52011-06-06 00:07:55 +080027#include <linux/platform_device.h>
28#include <linux/slab.h>
Shawn Guo2ce420d2011-06-06 13:22:41 +080029#include <linux/basic_mmio_gpio.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010030#include <mach/hardware.h>
Juergen Beisert07bd1a62008-07-05 10:02:49 +020031#include <asm-generic/bug.h>
32
Shawn Guob78d8e52011-06-06 00:07:55 +080033struct mxc_gpio_port {
34 struct list_head node;
35 void __iomem *base;
36 int irq;
37 int irq_high;
38 int virtual_irq_start;
Shawn Guo2ce420d2011-06-06 13:22:41 +080039 struct bgpio_chip bgc;
Shawn Guob78d8e52011-06-06 00:07:55 +080040 u32 both_edges;
Shawn Guob78d8e52011-06-06 00:07:55 +080041};
42
43/*
44 * MX2 has one interrupt *for all* gpio ports. The list is used
45 * to save the references to all ports, so that mx2_gpio_irq_handler
46 * can walk through all interrupt status registers.
47 */
48static LIST_HEAD(mxc_gpio_ports);
Juergen Beisert07bd1a62008-07-05 10:02:49 +020049
Sascha Hauer494f22d2009-05-27 18:26:51 +020050#define cpu_is_mx1_mx2() (cpu_is_mx1() || cpu_is_mx2())
51
52#define GPIO_DR (cpu_is_mx1_mx2() ? 0x1c : 0x00)
53#define GPIO_GDIR (cpu_is_mx1_mx2() ? 0x00 : 0x04)
54#define GPIO_PSR (cpu_is_mx1_mx2() ? 0x24 : 0x08)
55#define GPIO_ICR1 (cpu_is_mx1_mx2() ? 0x28 : 0x0C)
56#define GPIO_ICR2 (cpu_is_mx1_mx2() ? 0x2C : 0x10)
57#define GPIO_IMR (cpu_is_mx1_mx2() ? 0x30 : 0x14)
58#define GPIO_ISR (cpu_is_mx1_mx2() ? 0x34 : 0x18)
Sascha Hauer494f22d2009-05-27 18:26:51 +020059
60#define GPIO_INT_LOW_LEV (cpu_is_mx1_mx2() ? 0x3 : 0x0)
61#define GPIO_INT_HIGH_LEV (cpu_is_mx1_mx2() ? 0x2 : 0x1)
62#define GPIO_INT_RISE_EDGE (cpu_is_mx1_mx2() ? 0x0 : 0x2)
63#define GPIO_INT_FALL_EDGE (cpu_is_mx1_mx2() ? 0x1 : 0x3)
64#define GPIO_INT_NONE 0x4
65
Juergen Beisert07bd1a62008-07-05 10:02:49 +020066/* Note: This driver assumes 32 GPIOs are handled in one register */
67
Lennert Buytenhek4d935792010-11-29 11:16:23 +010068static int gpio_set_irq_type(struct irq_data *d, u32 type)
Juergen Beisert07bd1a62008-07-05 10:02:49 +020069{
Lennert Buytenhek4d935792010-11-29 11:16:23 +010070 u32 gpio = irq_to_gpio(d->irq);
Shawn Guoe4ea9332011-06-07 16:25:37 +080071 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
72 struct mxc_gpio_port *port = gc->private;
Juergen Beisert07bd1a62008-07-05 10:02:49 +020073 u32 bit, val;
74 int edge;
75 void __iomem *reg = port->base;
76
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +010077 port->both_edges &= ~(1 << (gpio & 31));
Juergen Beisert07bd1a62008-07-05 10:02:49 +020078 switch (type) {
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010079 case IRQ_TYPE_EDGE_RISING:
Juergen Beisert07bd1a62008-07-05 10:02:49 +020080 edge = GPIO_INT_RISE_EDGE;
81 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010082 case IRQ_TYPE_EDGE_FALLING:
Juergen Beisert07bd1a62008-07-05 10:02:49 +020083 edge = GPIO_INT_FALL_EDGE;
84 break;
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +010085 case IRQ_TYPE_EDGE_BOTH:
Shawn Guo2ce420d2011-06-06 13:22:41 +080086 val = gpio_get_value(gpio & 31);
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +010087 if (val) {
88 edge = GPIO_INT_LOW_LEV;
89 pr_debug("mxc: set GPIO %d to low trigger\n", gpio);
90 } else {
91 edge = GPIO_INT_HIGH_LEV;
92 pr_debug("mxc: set GPIO %d to high trigger\n", gpio);
93 }
94 port->both_edges |= 1 << (gpio & 31);
95 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010096 case IRQ_TYPE_LEVEL_LOW:
Juergen Beisert07bd1a62008-07-05 10:02:49 +020097 edge = GPIO_INT_LOW_LEV;
98 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010099 case IRQ_TYPE_LEVEL_HIGH:
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200100 edge = GPIO_INT_HIGH_LEV;
101 break;
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100102 default:
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200103 return -EINVAL;
104 }
105
106 reg += GPIO_ICR1 + ((gpio & 0x10) >> 2); /* lower or upper register */
107 bit = gpio & 0xf;
Shawn Guob78d8e52011-06-06 00:07:55 +0800108 val = readl(reg) & ~(0x3 << (bit << 1));
109 writel(val | (edge << (bit << 1)), reg);
Shawn Guoe4ea9332011-06-07 16:25:37 +0800110 writel(1 << (gpio & 0x1f), port->base + GPIO_ISR);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200111
112 return 0;
113}
114
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100115static void mxc_flip_edge(struct mxc_gpio_port *port, u32 gpio)
116{
117 void __iomem *reg = port->base;
118 u32 bit, val;
119 int edge;
120
121 reg += GPIO_ICR1 + ((gpio & 0x10) >> 2); /* lower or upper register */
122 bit = gpio & 0xf;
Shawn Guob78d8e52011-06-06 00:07:55 +0800123 val = readl(reg);
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100124 edge = (val >> (bit << 1)) & 3;
125 val &= ~(0x3 << (bit << 1));
Uwe Kleine-König3d40f7f2010-02-05 22:14:37 +0100126 if (edge == GPIO_INT_HIGH_LEV) {
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100127 edge = GPIO_INT_LOW_LEV;
128 pr_debug("mxc: switch GPIO %d to low trigger\n", gpio);
Uwe Kleine-König3d40f7f2010-02-05 22:14:37 +0100129 } else if (edge == GPIO_INT_LOW_LEV) {
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100130 edge = GPIO_INT_HIGH_LEV;
131 pr_debug("mxc: switch GPIO %d to high trigger\n", gpio);
Uwe Kleine-König3d40f7f2010-02-05 22:14:37 +0100132 } else {
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100133 pr_err("mxc: invalid configuration for GPIO %d: %x\n",
134 gpio, edge);
135 return;
136 }
Shawn Guob78d8e52011-06-06 00:07:55 +0800137 writel(val | (edge << (bit << 1)), reg);
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100138}
139
Uwe Kleine-König3621f182010-02-08 21:02:30 +0100140/* handle 32 interrupts in one status register */
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200141static void mxc_gpio_irq_handler(struct mxc_gpio_port *port, u32 irq_stat)
142{
Uwe Kleine-König3621f182010-02-08 21:02:30 +0100143 u32 gpio_irq_no_base = port->virtual_irq_start;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200144
Uwe Kleine-König3621f182010-02-08 21:02:30 +0100145 while (irq_stat != 0) {
146 int irqoffset = fls(irq_stat) - 1;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200147
Uwe Kleine-König3621f182010-02-08 21:02:30 +0100148 if (port->both_edges & (1 << irqoffset))
149 mxc_flip_edge(port, irqoffset);
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100150
Uwe Kleine-König3621f182010-02-08 21:02:30 +0100151 generic_handle_irq(gpio_irq_no_base + irqoffset);
Guennadi Liakhovetski910862e2009-03-12 12:46:41 +0100152
Uwe Kleine-König3621f182010-02-08 21:02:30 +0100153 irq_stat &= ~(1 << irqoffset);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200154 }
155}
156
Paulius Zaleckascfca8b52008-11-14 11:01:38 +0100157/* MX1 and MX3 has one interrupt *per* gpio port */
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200158static void mx3_gpio_irq_handler(u32 irq, struct irq_desc *desc)
159{
160 u32 irq_stat;
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100161 struct mxc_gpio_port *port = irq_get_handler_data(irq);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200162
Shawn Guob78d8e52011-06-06 00:07:55 +0800163 irq_stat = readl(port->base + GPIO_ISR) & readl(port->base + GPIO_IMR);
Sascha Hauere2c97e72009-04-21 12:39:59 +0200164
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200165 mxc_gpio_irq_handler(port, irq_stat);
166}
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200167
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200168/* MX2 has one interrupt *for all* gpio ports */
169static void mx2_gpio_irq_handler(u32 irq, struct irq_desc *desc)
170{
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200171 u32 irq_msk, irq_stat;
Shawn Guob78d8e52011-06-06 00:07:55 +0800172 struct mxc_gpio_port *port;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200173
174 /* walk through all interrupt status registers */
Shawn Guob78d8e52011-06-06 00:07:55 +0800175 list_for_each_entry(port, &mxc_gpio_ports, node) {
176 irq_msk = readl(port->base + GPIO_IMR);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200177 if (!irq_msk)
178 continue;
179
Shawn Guob78d8e52011-06-06 00:07:55 +0800180 irq_stat = readl(port->base + GPIO_ISR) & irq_msk;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200181 if (irq_stat)
Shawn Guob78d8e52011-06-06 00:07:55 +0800182 mxc_gpio_irq_handler(port, irq_stat);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200183 }
184}
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200185
Dinh Nguyena3484ff2010-10-23 09:12:48 -0500186/*
187 * Set interrupt number "irq" in the GPIO as a wake-up source.
188 * While system is running, all registered GPIO interrupts need to have
189 * wake-up enabled. When system is suspended, only selected GPIO interrupts
190 * need to have wake-up enabled.
191 * @param irq interrupt source number
192 * @param enable enable as wake-up if equal to non-zero
193 * @return This function returns 0 on success.
194 */
Lennert Buytenhek4d935792010-11-29 11:16:23 +0100195static int gpio_set_wake_irq(struct irq_data *d, u32 enable)
Dinh Nguyena3484ff2010-10-23 09:12:48 -0500196{
Lennert Buytenhek4d935792010-11-29 11:16:23 +0100197 u32 gpio = irq_to_gpio(d->irq);
Dinh Nguyena3484ff2010-10-23 09:12:48 -0500198 u32 gpio_idx = gpio & 0x1F;
Shawn Guoe4ea9332011-06-07 16:25:37 +0800199 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
200 struct mxc_gpio_port *port = gc->private;
Dinh Nguyena3484ff2010-10-23 09:12:48 -0500201
202 if (enable) {
203 if (port->irq_high && (gpio_idx >= 16))
204 enable_irq_wake(port->irq_high);
205 else
206 enable_irq_wake(port->irq);
207 } else {
208 if (port->irq_high && (gpio_idx >= 16))
209 disable_irq_wake(port->irq_high);
210 else
211 disable_irq_wake(port->irq);
212 }
213
214 return 0;
215}
216
Shawn Guoe4ea9332011-06-07 16:25:37 +0800217static void __init mxc_gpio_init_gc(struct mxc_gpio_port *port)
218{
219 struct irq_chip_generic *gc;
220 struct irq_chip_type *ct;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200221
Shawn Guoe4ea9332011-06-07 16:25:37 +0800222 gc = irq_alloc_generic_chip("gpio-mxc", 1, port->virtual_irq_start,
223 port->base, handle_level_irq);
224 gc->private = port;
225
226 ct = gc->chip_types;
227 ct->chip.irq_ack = irq_gc_ack,
228 ct->chip.irq_mask = irq_gc_mask_clr_bit;
229 ct->chip.irq_unmask = irq_gc_mask_set_bit;
230 ct->chip.irq_set_type = gpio_set_irq_type;
231 ct->chip.irq_set_wake = gpio_set_wake_irq,
232 ct->regs.ack = GPIO_ISR;
233 ct->regs.mask = GPIO_IMR;
234
235 irq_setup_generic_chip(gc, IRQ_MSK(32), IRQ_GC_INIT_NESTED_LOCK,
236 IRQ_NOREQUEST, 0);
237}
Thomas Gleixnerb5eee2f2011-04-04 14:29:58 +0200238
Shawn Guob78d8e52011-06-06 00:07:55 +0800239static int __devinit mxc_gpio_probe(struct platform_device *pdev)
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200240{
Shawn Guob78d8e52011-06-06 00:07:55 +0800241 struct mxc_gpio_port *port;
242 struct resource *iores;
Shawn Guoe4ea9332011-06-07 16:25:37 +0800243 int err;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200244
Shawn Guob78d8e52011-06-06 00:07:55 +0800245 port = kzalloc(sizeof(struct mxc_gpio_port), GFP_KERNEL);
246 if (!port)
247 return -ENOMEM;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200248
Shawn Guob78d8e52011-06-06 00:07:55 +0800249 port->virtual_irq_start = MXC_GPIO_IRQ_START + pdev->id * 32;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200250
Shawn Guob78d8e52011-06-06 00:07:55 +0800251 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
252 if (!iores) {
253 err = -ENODEV;
254 goto out_kfree;
255 }
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200256
Shawn Guob78d8e52011-06-06 00:07:55 +0800257 if (!request_mem_region(iores->start, resource_size(iores),
258 pdev->name)) {
259 err = -EBUSY;
260 goto out_kfree;
261 }
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200262
Shawn Guob78d8e52011-06-06 00:07:55 +0800263 port->base = ioremap(iores->start, resource_size(iores));
264 if (!port->base) {
265 err = -ENOMEM;
266 goto out_release_mem;
267 }
Baruch Siach14cb0de2010-07-06 14:03:22 +0300268
Shawn Guob78d8e52011-06-06 00:07:55 +0800269 port->irq_high = platform_get_irq(pdev, 1);
270 port->irq = platform_get_irq(pdev, 0);
271 if (port->irq < 0) {
272 err = -EINVAL;
273 goto out_iounmap;
274 }
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200275
Shawn Guob78d8e52011-06-06 00:07:55 +0800276 /* disable the interrupt and clear the status */
277 writel(0, port->base + GPIO_IMR);
278 writel(~0, port->base + GPIO_ISR);
279
Shawn Guoe4ea9332011-06-07 16:25:37 +0800280 /* gpio-mxc can be a generic irq chip */
281 mxc_gpio_init_gc(port);
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200282
Sascha Hauer8afaada2009-06-15 12:36:25 +0200283 if (cpu_is_mx2()) {
284 /* setup one handler for all GPIO interrupts */
Shawn Guob78d8e52011-06-06 00:07:55 +0800285 if (pdev->id == 0)
286 irq_set_chained_handler(port->irq,
287 mx2_gpio_irq_handler);
288 } else {
289 /* setup one handler for each entry */
290 irq_set_chained_handler(port->irq, mx3_gpio_irq_handler);
291 irq_set_handler_data(port->irq, port);
292 if (port->irq_high > 0) {
293 /* setup handler for GPIO 16 to 31 */
294 irq_set_chained_handler(port->irq_high,
295 mx3_gpio_irq_handler);
296 irq_set_handler_data(port->irq_high, port);
297 }
Sascha Hauer8afaada2009-06-15 12:36:25 +0200298 }
299
Shawn Guo2ce420d2011-06-06 13:22:41 +0800300 err = bgpio_init(&port->bgc, &pdev->dev, 4,
301 port->base + GPIO_PSR,
302 port->base + GPIO_DR, NULL,
303 port->base + GPIO_GDIR, NULL, false);
Shawn Guob78d8e52011-06-06 00:07:55 +0800304 if (err)
305 goto out_iounmap;
306
Shawn Guo2ce420d2011-06-06 13:22:41 +0800307 port->bgc.gc.base = pdev->id * 32;
308
309 err = gpiochip_add(&port->bgc.gc);
310 if (err)
311 goto out_bgpio_remove;
312
Shawn Guob78d8e52011-06-06 00:07:55 +0800313 list_add_tail(&port->node, &mxc_gpio_ports);
314
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200315 return 0;
Shawn Guob78d8e52011-06-06 00:07:55 +0800316
Shawn Guo2ce420d2011-06-06 13:22:41 +0800317out_bgpio_remove:
318 bgpio_remove(&port->bgc);
Shawn Guob78d8e52011-06-06 00:07:55 +0800319out_iounmap:
320 iounmap(port->base);
321out_release_mem:
322 release_mem_region(iores->start, resource_size(iores));
323out_kfree:
324 kfree(port);
325 dev_info(&pdev->dev, "%s failed with errno %d\n", __func__, err);
326 return err;
Juergen Beisert07bd1a62008-07-05 10:02:49 +0200327}
Shawn Guob78d8e52011-06-06 00:07:55 +0800328
329static struct platform_driver mxc_gpio_driver = {
330 .driver = {
331 .name = "gpio-mxc",
332 .owner = THIS_MODULE,
333 },
334 .probe = mxc_gpio_probe,
335};
336
337static int __init gpio_mxc_init(void)
338{
339 return platform_driver_register(&mxc_gpio_driver);
340}
341postcore_initcall(gpio_mxc_init);
342
343MODULE_AUTHOR("Freescale Semiconductor, "
344 "Daniel Mack <danielncaiaq.de>, "
345 "Juergen Beisert <kernel@pengutronix.de>");
346MODULE_DESCRIPTION("Freescale MXC GPIO");
347MODULE_LICENSE("GPL");