blob: 4612d2506a2db5a6e7e22d06a643e6beb6747409 [file] [log] [blame]
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -08001/*
2 * OMAP7xx specific gpio init
3 *
4 * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
5 *
6 * Author:
7 * Charulatha V <charu@ti.com>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation version 2.
12 *
13 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
14 * kind, whether express or implied; without even the implied warranty
15 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 */
18
19#include <linux/gpio.h>
Tony Lindgren4b254082012-08-30 15:37:24 -070020#include <linux/platform_data/gpio-omap.h>
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -080021
Tony Lindgren873e6982012-10-31 09:54:56 -070022#include <mach/irqs.h>
23
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -080024#define OMAP7XX_GPIO1_BASE 0xfffbc000
25#define OMAP7XX_GPIO2_BASE 0xfffbc800
26#define OMAP7XX_GPIO3_BASE 0xfffbd000
27#define OMAP7XX_GPIO4_BASE 0xfffbd800
28#define OMAP7XX_GPIO5_BASE 0xfffbe000
29#define OMAP7XX_GPIO6_BASE 0xfffbe800
30#define OMAP1_MPUIO_VBASE OMAP1_MPUIO_BASE
31
32/* mpu gpio */
Tony Lindgrenffd076e2013-10-18 08:54:16 -070033static struct resource omap7xx_mpu_gpio_resources[] = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -080034 {
35 .start = OMAP1_MPUIO_VBASE,
36 .end = OMAP1_MPUIO_VBASE + SZ_2K - 1,
37 .flags = IORESOURCE_MEM,
38 },
39 {
40 .start = INT_7XX_MPUIO,
41 .flags = IORESOURCE_IRQ,
42 },
43};
44
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070045static struct omap_gpio_reg_offs omap7xx_mpuio_regs = {
Kevin Hilmane5ff4442011-04-22 14:37:16 -070046 .revision = USHRT_MAX,
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070047 .direction = OMAP_MPUIO_IO_CNTL / 2,
48 .datain = OMAP_MPUIO_INPUT_LATCH / 2,
49 .dataout = OMAP_MPUIO_OUTPUT / 2,
Kevin Hilmaneef4bec2011-04-21 09:17:35 -070050 .irqstatus = OMAP_MPUIO_GPIO_INT / 2,
Kevin Hilman28f3b5a2011-04-21 09:53:06 -070051 .irqenable = OMAP_MPUIO_GPIO_MASKIT / 2,
52 .irqenable_inv = true,
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +053053 .irqctrl = OMAP_MPUIO_GPIO_INT_EDGE >> 1,
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070054};
55
Tony Lindgrenffd076e2013-10-18 08:54:16 -070056static struct omap_gpio_platform_data omap7xx_mpu_gpio_config = {
Charulatha Vd0d665a2011-08-31 00:02:21 +053057 .is_mpuio = true,
Charulatha Vec9af5d2011-05-25 12:44:28 +053058 .bank_width = 16,
Tony Lindgren5de62b82010-12-07 16:26:58 -080059 .bank_stride = 2,
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070060 .regs = &omap7xx_mpuio_regs,
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -080061};
62
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -070063static struct platform_device omap7xx_mpu_gpio = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -080064 .name = "omap_gpio",
65 .id = 0,
66 .dev = {
67 .platform_data = &omap7xx_mpu_gpio_config,
68 },
69 .num_resources = ARRAY_SIZE(omap7xx_mpu_gpio_resources),
70 .resource = omap7xx_mpu_gpio_resources,
71};
72
73/* gpio1 */
Tony Lindgrenffd076e2013-10-18 08:54:16 -070074static struct resource omap7xx_gpio1_resources[] = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -080075 {
76 .start = OMAP7XX_GPIO1_BASE,
77 .end = OMAP7XX_GPIO1_BASE + SZ_2K - 1,
78 .flags = IORESOURCE_MEM,
79 },
80 {
81 .start = INT_7XX_GPIO_BANK1,
82 .flags = IORESOURCE_IRQ,
83 },
84};
85
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070086static struct omap_gpio_reg_offs omap7xx_gpio_regs = {
Kevin Hilmane5ff4442011-04-22 14:37:16 -070087 .revision = USHRT_MAX,
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070088 .direction = OMAP7XX_GPIO_DIR_CONTROL,
89 .datain = OMAP7XX_GPIO_DATA_INPUT,
90 .dataout = OMAP7XX_GPIO_DATA_OUTPUT,
Kevin Hilmaneef4bec2011-04-21 09:17:35 -070091 .irqstatus = OMAP7XX_GPIO_INT_STATUS,
Kevin Hilman28f3b5a2011-04-21 09:53:06 -070092 .irqenable = OMAP7XX_GPIO_INT_MASK,
93 .irqenable_inv = true,
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +053094 .irqctrl = OMAP7XX_GPIO_INT_CONTROL,
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070095};
96
Tony Lindgrenffd076e2013-10-18 08:54:16 -070097static struct omap_gpio_platform_data omap7xx_gpio1_config = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -080098 .bank_width = 32,
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070099 .regs = &omap7xx_gpio_regs,
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800100};
101
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700102static struct platform_device omap7xx_gpio1 = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800103 .name = "omap_gpio",
104 .id = 1,
105 .dev = {
106 .platform_data = &omap7xx_gpio1_config,
107 },
108 .num_resources = ARRAY_SIZE(omap7xx_gpio1_resources),
109 .resource = omap7xx_gpio1_resources,
110};
111
112/* gpio2 */
Tony Lindgrenffd076e2013-10-18 08:54:16 -0700113static struct resource omap7xx_gpio2_resources[] = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800114 {
115 .start = OMAP7XX_GPIO2_BASE,
116 .end = OMAP7XX_GPIO2_BASE + SZ_2K - 1,
117 .flags = IORESOURCE_MEM,
118 },
119 {
120 .start = INT_7XX_GPIO_BANK2,
121 .flags = IORESOURCE_IRQ,
122 },
123};
124
Tony Lindgrenffd076e2013-10-18 08:54:16 -0700125static struct omap_gpio_platform_data omap7xx_gpio2_config = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800126 .bank_width = 32,
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700127 .regs = &omap7xx_gpio_regs,
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800128};
129
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700130static struct platform_device omap7xx_gpio2 = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800131 .name = "omap_gpio",
132 .id = 2,
133 .dev = {
134 .platform_data = &omap7xx_gpio2_config,
135 },
136 .num_resources = ARRAY_SIZE(omap7xx_gpio2_resources),
137 .resource = omap7xx_gpio2_resources,
138};
139
140/* gpio3 */
Tony Lindgrenffd076e2013-10-18 08:54:16 -0700141static struct resource omap7xx_gpio3_resources[] = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800142 {
143 .start = OMAP7XX_GPIO3_BASE,
144 .end = OMAP7XX_GPIO3_BASE + SZ_2K - 1,
145 .flags = IORESOURCE_MEM,
146 },
147 {
148 .start = INT_7XX_GPIO_BANK3,
149 .flags = IORESOURCE_IRQ,
150 },
151};
152
Tony Lindgrenffd076e2013-10-18 08:54:16 -0700153static struct omap_gpio_platform_data omap7xx_gpio3_config = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800154 .bank_width = 32,
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700155 .regs = &omap7xx_gpio_regs,
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800156};
157
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700158static struct platform_device omap7xx_gpio3 = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800159 .name = "omap_gpio",
160 .id = 3,
161 .dev = {
162 .platform_data = &omap7xx_gpio3_config,
163 },
164 .num_resources = ARRAY_SIZE(omap7xx_gpio3_resources),
165 .resource = omap7xx_gpio3_resources,
166};
167
168/* gpio4 */
Tony Lindgrenffd076e2013-10-18 08:54:16 -0700169static struct resource omap7xx_gpio4_resources[] = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800170 {
171 .start = OMAP7XX_GPIO4_BASE,
172 .end = OMAP7XX_GPIO4_BASE + SZ_2K - 1,
173 .flags = IORESOURCE_MEM,
174 },
175 {
176 .start = INT_7XX_GPIO_BANK4,
177 .flags = IORESOURCE_IRQ,
178 },
179};
180
Tony Lindgrenffd076e2013-10-18 08:54:16 -0700181static struct omap_gpio_platform_data omap7xx_gpio4_config = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800182 .bank_width = 32,
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700183 .regs = &omap7xx_gpio_regs,
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800184};
185
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700186static struct platform_device omap7xx_gpio4 = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800187 .name = "omap_gpio",
188 .id = 4,
189 .dev = {
190 .platform_data = &omap7xx_gpio4_config,
191 },
192 .num_resources = ARRAY_SIZE(omap7xx_gpio4_resources),
193 .resource = omap7xx_gpio4_resources,
194};
195
196/* gpio5 */
Tony Lindgrenffd076e2013-10-18 08:54:16 -0700197static struct resource omap7xx_gpio5_resources[] = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800198 {
199 .start = OMAP7XX_GPIO5_BASE,
200 .end = OMAP7XX_GPIO5_BASE + SZ_2K - 1,
201 .flags = IORESOURCE_MEM,
202 },
203 {
204 .start = INT_7XX_GPIO_BANK5,
205 .flags = IORESOURCE_IRQ,
206 },
207};
208
Tony Lindgrenffd076e2013-10-18 08:54:16 -0700209static struct omap_gpio_platform_data omap7xx_gpio5_config = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800210 .bank_width = 32,
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700211 .regs = &omap7xx_gpio_regs,
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800212};
213
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700214static struct platform_device omap7xx_gpio5 = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800215 .name = "omap_gpio",
216 .id = 5,
217 .dev = {
218 .platform_data = &omap7xx_gpio5_config,
219 },
220 .num_resources = ARRAY_SIZE(omap7xx_gpio5_resources),
221 .resource = omap7xx_gpio5_resources,
222};
223
224/* gpio6 */
Tony Lindgrenffd076e2013-10-18 08:54:16 -0700225static struct resource omap7xx_gpio6_resources[] = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800226 {
227 .start = OMAP7XX_GPIO6_BASE,
228 .end = OMAP7XX_GPIO6_BASE + SZ_2K - 1,
229 .flags = IORESOURCE_MEM,
230 },
231 {
232 .start = INT_7XX_GPIO_BANK6,
233 .flags = IORESOURCE_IRQ,
234 },
235};
236
Tony Lindgrenffd076e2013-10-18 08:54:16 -0700237static struct omap_gpio_platform_data omap7xx_gpio6_config = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800238 .bank_width = 32,
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700239 .regs = &omap7xx_gpio_regs,
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800240};
241
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700242static struct platform_device omap7xx_gpio6 = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800243 .name = "omap_gpio",
244 .id = 6,
245 .dev = {
246 .platform_data = &omap7xx_gpio6_config,
247 },
248 .num_resources = ARRAY_SIZE(omap7xx_gpio6_resources),
249 .resource = omap7xx_gpio6_resources,
250};
251
Bartlomiej Zolnierkiewiczf8e7ba62013-09-30 15:05:25 +0200252static struct platform_device *omap7xx_gpio_dev[] __initdata = {
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800253 &omap7xx_mpu_gpio,
254 &omap7xx_gpio1,
255 &omap7xx_gpio2,
256 &omap7xx_gpio3,
257 &omap7xx_gpio4,
258 &omap7xx_gpio5,
259 &omap7xx_gpio6,
260};
261
262/*
263 * omap7xx_gpio_init needs to be done before
264 * machine_init functions access gpio APIs.
265 * Hence omap7xx_gpio_init is a postcore_initcall.
266 */
267static int __init omap7xx_gpio_init(void)
268{
269 int i;
270
271 if (!cpu_is_omap7xx())
272 return -EINVAL;
273
274 for (i = 0; i < ARRAY_SIZE(omap7xx_gpio_dev); i++)
275 platform_device_register(omap7xx_gpio_dev[i]);
276
Varadarajan, Charulatha9d523422010-12-07 16:26:56 -0800277 return 0;
278}
279postcore_initcall(omap7xx_gpio_init);