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,
6 * Copyright 2004-2006 Freescale Semiconductor, Inc. All Rights Reserved.
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.
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.
22 #include <linux/init.h>
24 #include <linux/irq.h>
25 #include <linux/gpio.h>
26 #include <mach/hardware.h>
27 #include <asm-generic/bug.h>
29 static struct mxc_gpio_port
*mxc_gpio_ports
;
30 static int gpio_table_size
;
32 #define cpu_is_mx1_mx2() (cpu_is_mx1() || cpu_is_mx2())
34 #define GPIO_DR (cpu_is_mx1_mx2() ? 0x1c : 0x00)
35 #define GPIO_GDIR (cpu_is_mx1_mx2() ? 0x00 : 0x04)
36 #define GPIO_PSR (cpu_is_mx1_mx2() ? 0x24 : 0x08)
37 #define GPIO_ICR1 (cpu_is_mx1_mx2() ? 0x28 : 0x0C)
38 #define GPIO_ICR2 (cpu_is_mx1_mx2() ? 0x2C : 0x10)
39 #define GPIO_IMR (cpu_is_mx1_mx2() ? 0x30 : 0x14)
40 #define GPIO_ISR (cpu_is_mx1_mx2() ? 0x34 : 0x18)
41 #define GPIO_ISR (cpu_is_mx1_mx2() ? 0x34 : 0x18)
43 #define GPIO_INT_LOW_LEV (cpu_is_mx1_mx2() ? 0x3 : 0x0)
44 #define GPIO_INT_HIGH_LEV (cpu_is_mx1_mx2() ? 0x2 : 0x1)
45 #define GPIO_INT_RISE_EDGE (cpu_is_mx1_mx2() ? 0x0 : 0x2)
46 #define GPIO_INT_FALL_EDGE (cpu_is_mx1_mx2() ? 0x1 : 0x3)
47 #define GPIO_INT_NONE 0x4
49 /* Note: This driver assumes 32 GPIOs are handled in one register */
51 static void _clear_gpio_irqstatus(struct mxc_gpio_port
*port
, u32 index
)
53 __raw_writel(1 << index
, port
->base
+ GPIO_ISR
);
56 static void _set_gpio_irqenable(struct mxc_gpio_port
*port
, u32 index
,
61 l
= __raw_readl(port
->base
+ GPIO_IMR
);
62 l
= (l
& (~(1 << index
))) | (!!enable
<< index
);
63 __raw_writel(l
, port
->base
+ GPIO_IMR
);
66 static void gpio_ack_irq(u32 irq
)
68 u32 gpio
= irq_to_gpio(irq
);
69 _clear_gpio_irqstatus(&mxc_gpio_ports
[gpio
/ 32], gpio
& 0x1f);
72 static void gpio_mask_irq(u32 irq
)
74 u32 gpio
= irq_to_gpio(irq
);
75 _set_gpio_irqenable(&mxc_gpio_ports
[gpio
/ 32], gpio
& 0x1f, 0);
78 static void gpio_unmask_irq(u32 irq
)
80 u32 gpio
= irq_to_gpio(irq
);
81 _set_gpio_irqenable(&mxc_gpio_ports
[gpio
/ 32], gpio
& 0x1f, 1);
84 static int mxc_gpio_get(struct gpio_chip
*chip
, unsigned offset
);
86 static int gpio_set_irq_type(u32 irq
, u32 type
)
88 u32 gpio
= irq_to_gpio(irq
);
89 struct mxc_gpio_port
*port
= &mxc_gpio_ports
[gpio
/ 32];
92 void __iomem
*reg
= port
->base
;
94 port
->both_edges
&= ~(1 << (gpio
& 31));
96 case IRQ_TYPE_EDGE_RISING
:
97 edge
= GPIO_INT_RISE_EDGE
;
99 case IRQ_TYPE_EDGE_FALLING
:
100 edge
= GPIO_INT_FALL_EDGE
;
102 case IRQ_TYPE_EDGE_BOTH
:
103 val
= mxc_gpio_get(&port
->chip
, gpio
& 31);
105 edge
= GPIO_INT_LOW_LEV
;
106 pr_debug("mxc: set GPIO %d to low trigger\n", gpio
);
108 edge
= GPIO_INT_HIGH_LEV
;
109 pr_debug("mxc: set GPIO %d to high trigger\n", gpio
);
111 port
->both_edges
|= 1 << (gpio
& 31);
113 case IRQ_TYPE_LEVEL_LOW
:
114 edge
= GPIO_INT_LOW_LEV
;
116 case IRQ_TYPE_LEVEL_HIGH
:
117 edge
= GPIO_INT_HIGH_LEV
;
123 reg
+= GPIO_ICR1
+ ((gpio
& 0x10) >> 2); /* lower or upper register */
125 val
= __raw_readl(reg
) & ~(0x3 << (bit
<< 1));
126 __raw_writel(val
| (edge
<< (bit
<< 1)), reg
);
127 _clear_gpio_irqstatus(port
, gpio
& 0x1f);
132 static void mxc_flip_edge(struct mxc_gpio_port
*port
, u32 gpio
)
134 void __iomem
*reg
= port
->base
;
138 reg
+= GPIO_ICR1
+ ((gpio
& 0x10) >> 2); /* lower or upper register */
140 val
= __raw_readl(reg
);
141 edge
= (val
>> (bit
<< 1)) & 3;
142 val
&= ~(0x3 << (bit
<< 1));
144 case GPIO_INT_HIGH_LEV
:
145 edge
= GPIO_INT_LOW_LEV
;
146 pr_debug("mxc: switch GPIO %d to low trigger\n", gpio
);
148 case GPIO_INT_LOW_LEV
:
149 edge
= GPIO_INT_HIGH_LEV
;
150 pr_debug("mxc: switch GPIO %d to high trigger\n", gpio
);
153 pr_err("mxc: invalid configuration for GPIO %d: %x\n",
157 __raw_writel(val
| (edge
<< (bit
<< 1)), reg
);
160 /* handle n interrupts in one status register */
161 static void mxc_gpio_irq_handler(struct mxc_gpio_port
*port
, u32 irq_stat
)
165 gpio_irq_no
= port
->virtual_irq_start
;
166 for (; irq_stat
!= 0; irq_stat
>>= 1, gpio_irq_no
++) {
167 u32 gpio
= irq_to_gpio(gpio_irq_no
);
169 if ((irq_stat
& 1) == 0)
172 BUG_ON(!(irq_desc
[gpio_irq_no
].handle_irq
));
174 if (port
->both_edges
& (1 << (gpio
& 31)))
175 mxc_flip_edge(port
, gpio
);
177 irq_desc
[gpio_irq_no
].handle_irq(gpio_irq_no
,
178 &irq_desc
[gpio_irq_no
]);
182 /* MX1 and MX3 has one interrupt *per* gpio port */
183 static void mx3_gpio_irq_handler(u32 irq
, struct irq_desc
*desc
)
186 struct mxc_gpio_port
*port
= (struct mxc_gpio_port
*)get_irq_data(irq
);
188 irq_stat
= __raw_readl(port
->base
+ GPIO_ISR
) &
189 __raw_readl(port
->base
+ GPIO_IMR
);
191 mxc_gpio_irq_handler(port
, irq_stat
);
194 /* MX2 has one interrupt *for all* gpio ports */
195 static void mx2_gpio_irq_handler(u32 irq
, struct irq_desc
*desc
)
198 u32 irq_msk
, irq_stat
;
199 struct mxc_gpio_port
*port
= (struct mxc_gpio_port
*)get_irq_data(irq
);
201 /* walk through all interrupt status registers */
202 for (i
= 0; i
< gpio_table_size
; i
++) {
203 irq_msk
= __raw_readl(port
[i
].base
+ GPIO_IMR
);
207 irq_stat
= __raw_readl(port
[i
].base
+ GPIO_ISR
) & irq_msk
;
209 mxc_gpio_irq_handler(&port
[i
], irq_stat
);
213 static struct irq_chip gpio_irq_chip
= {
215 .mask
= gpio_mask_irq
,
216 .unmask
= gpio_unmask_irq
,
217 .set_type
= gpio_set_irq_type
,
220 static void _set_gpio_direction(struct gpio_chip
*chip
, unsigned offset
,
223 struct mxc_gpio_port
*port
=
224 container_of(chip
, struct mxc_gpio_port
, chip
);
227 l
= __raw_readl(port
->base
+ GPIO_GDIR
);
232 __raw_writel(l
, port
->base
+ GPIO_GDIR
);
235 static void mxc_gpio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
237 struct mxc_gpio_port
*port
=
238 container_of(chip
, struct mxc_gpio_port
, chip
);
239 void __iomem
*reg
= port
->base
+ GPIO_DR
;
242 l
= (__raw_readl(reg
) & (~(1 << offset
))) | (value
<< offset
);
243 __raw_writel(l
, reg
);
246 static int mxc_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
248 struct mxc_gpio_port
*port
=
249 container_of(chip
, struct mxc_gpio_port
, chip
);
251 return (__raw_readl(port
->base
+ GPIO_PSR
) >> offset
) & 1;
254 static int mxc_gpio_direction_input(struct gpio_chip
*chip
, unsigned offset
)
256 _set_gpio_direction(chip
, offset
, 0);
260 static int mxc_gpio_direction_output(struct gpio_chip
*chip
,
261 unsigned offset
, int value
)
263 mxc_gpio_set(chip
, offset
, value
);
264 _set_gpio_direction(chip
, offset
, 1);
268 int __init
mxc_gpio_init(struct mxc_gpio_port
*port
, int cnt
)
272 /* save for local usage */
273 mxc_gpio_ports
= port
;
274 gpio_table_size
= cnt
;
276 printk(KERN_INFO
"MXC GPIO hardware\n");
278 for (i
= 0; i
< cnt
; i
++) {
279 /* disable the interrupt and clear the status */
280 __raw_writel(0, port
[i
].base
+ GPIO_IMR
);
281 __raw_writel(~0, port
[i
].base
+ GPIO_ISR
);
282 for (j
= port
[i
].virtual_irq_start
;
283 j
< port
[i
].virtual_irq_start
+ 32; j
++) {
284 set_irq_chip(j
, &gpio_irq_chip
);
285 set_irq_handler(j
, handle_level_irq
);
286 set_irq_flags(j
, IRQF_VALID
);
289 /* register gpio chip */
290 port
[i
].chip
.direction_input
= mxc_gpio_direction_input
;
291 port
[i
].chip
.direction_output
= mxc_gpio_direction_output
;
292 port
[i
].chip
.get
= mxc_gpio_get
;
293 port
[i
].chip
.set
= mxc_gpio_set
;
294 port
[i
].chip
.base
= i
* 32;
295 port
[i
].chip
.ngpio
= 32;
297 /* its a serious configuration bug when it fails */
298 BUG_ON( gpiochip_add(&port
[i
].chip
) < 0 );
300 if (cpu_is_mx1() || cpu_is_mx3() || cpu_is_mx25()) {
301 /* setup one handler for each entry */
302 set_irq_chained_handler(port
[i
].irq
, mx3_gpio_irq_handler
);
303 set_irq_data(port
[i
].irq
, &port
[i
]);
308 /* setup one handler for all GPIO interrupts */
309 set_irq_chained_handler(port
[0].irq
, mx2_gpio_irq_handler
);
310 set_irq_data(port
[0].irq
, port
);