2 * OMAP7xx specific gpio init
4 * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
7 * Charulatha V <charu@ti.com>
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.
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.
19 #include <linux/gpio.h>
20 #include <linux/platform_data/gpio-omap.h>
22 #include <mach/irqs.h>
24 #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
33 static struct __initdata resource omap7xx_mpu_gpio_resources[] = {
35 .start = OMAP1_MPUIO_VBASE,
36 .end = OMAP1_MPUIO_VBASE + SZ_2K - 1,
37 .flags = IORESOURCE_MEM,
40 .start = INT_7XX_MPUIO,
41 .flags = IORESOURCE_IRQ,
45 static struct omap_gpio_reg_offs omap7xx_mpuio_regs = {
46 .revision = USHRT_MAX,
47 .direction = OMAP_MPUIO_IO_CNTL / 2,
48 .datain = OMAP_MPUIO_INPUT_LATCH / 2,
49 .dataout = OMAP_MPUIO_OUTPUT / 2,
50 .irqstatus = OMAP_MPUIO_GPIO_INT / 2,
51 .irqenable = OMAP_MPUIO_GPIO_MASKIT / 2,
52 .irqenable_inv = true,
53 .irqctrl = OMAP_MPUIO_GPIO_INT_EDGE >> 1,
56 static struct __initdata omap_gpio_platform_data omap7xx_mpu_gpio_config = {
60 .regs = &omap7xx_mpuio_regs,
63 static struct platform_device omap7xx_mpu_gpio = {
67 .platform_data = &omap7xx_mpu_gpio_config,
69 .num_resources = ARRAY_SIZE(omap7xx_mpu_gpio_resources),
70 .resource = omap7xx_mpu_gpio_resources,
74 static struct __initdata resource omap7xx_gpio1_resources[] = {
76 .start = OMAP7XX_GPIO1_BASE,
77 .end = OMAP7XX_GPIO1_BASE + SZ_2K - 1,
78 .flags = IORESOURCE_MEM,
81 .start = INT_7XX_GPIO_BANK1,
82 .flags = IORESOURCE_IRQ,
86 static struct omap_gpio_reg_offs omap7xx_gpio_regs = {
87 .revision = USHRT_MAX,
88 .direction = OMAP7XX_GPIO_DIR_CONTROL,
89 .datain = OMAP7XX_GPIO_DATA_INPUT,
90 .dataout = OMAP7XX_GPIO_DATA_OUTPUT,
91 .irqstatus = OMAP7XX_GPIO_INT_STATUS,
92 .irqenable = OMAP7XX_GPIO_INT_MASK,
93 .irqenable_inv = true,
94 .irqctrl = OMAP7XX_GPIO_INT_CONTROL,
97 static struct __initdata omap_gpio_platform_data omap7xx_gpio1_config = {
99 .regs = &omap7xx_gpio_regs,
102 static struct platform_device omap7xx_gpio1 = {
106 .platform_data = &omap7xx_gpio1_config,
108 .num_resources = ARRAY_SIZE(omap7xx_gpio1_resources),
109 .resource = omap7xx_gpio1_resources,
113 static struct __initdata resource omap7xx_gpio2_resources[] = {
115 .start = OMAP7XX_GPIO2_BASE,
116 .end = OMAP7XX_GPIO2_BASE + SZ_2K - 1,
117 .flags = IORESOURCE_MEM,
120 .start = INT_7XX_GPIO_BANK2,
121 .flags = IORESOURCE_IRQ,
125 static struct __initdata omap_gpio_platform_data omap7xx_gpio2_config = {
127 .regs = &omap7xx_gpio_regs,
130 static struct platform_device omap7xx_gpio2 = {
134 .platform_data = &omap7xx_gpio2_config,
136 .num_resources = ARRAY_SIZE(omap7xx_gpio2_resources),
137 .resource = omap7xx_gpio2_resources,
141 static struct __initdata resource omap7xx_gpio3_resources[] = {
143 .start = OMAP7XX_GPIO3_BASE,
144 .end = OMAP7XX_GPIO3_BASE + SZ_2K - 1,
145 .flags = IORESOURCE_MEM,
148 .start = INT_7XX_GPIO_BANK3,
149 .flags = IORESOURCE_IRQ,
153 static struct __initdata omap_gpio_platform_data omap7xx_gpio3_config = {
155 .regs = &omap7xx_gpio_regs,
158 static struct platform_device omap7xx_gpio3 = {
162 .platform_data = &omap7xx_gpio3_config,
164 .num_resources = ARRAY_SIZE(omap7xx_gpio3_resources),
165 .resource = omap7xx_gpio3_resources,
169 static struct __initdata resource omap7xx_gpio4_resources[] = {
171 .start = OMAP7XX_GPIO4_BASE,
172 .end = OMAP7XX_GPIO4_BASE + SZ_2K - 1,
173 .flags = IORESOURCE_MEM,
176 .start = INT_7XX_GPIO_BANK4,
177 .flags = IORESOURCE_IRQ,
181 static struct __initdata omap_gpio_platform_data omap7xx_gpio4_config = {
183 .regs = &omap7xx_gpio_regs,
186 static struct platform_device omap7xx_gpio4 = {
190 .platform_data = &omap7xx_gpio4_config,
192 .num_resources = ARRAY_SIZE(omap7xx_gpio4_resources),
193 .resource = omap7xx_gpio4_resources,
197 static struct __initdata resource omap7xx_gpio5_resources[] = {
199 .start = OMAP7XX_GPIO5_BASE,
200 .end = OMAP7XX_GPIO5_BASE + SZ_2K - 1,
201 .flags = IORESOURCE_MEM,
204 .start = INT_7XX_GPIO_BANK5,
205 .flags = IORESOURCE_IRQ,
209 static struct __initdata omap_gpio_platform_data omap7xx_gpio5_config = {
211 .regs = &omap7xx_gpio_regs,
214 static struct platform_device omap7xx_gpio5 = {
218 .platform_data = &omap7xx_gpio5_config,
220 .num_resources = ARRAY_SIZE(omap7xx_gpio5_resources),
221 .resource = omap7xx_gpio5_resources,
225 static struct __initdata resource omap7xx_gpio6_resources[] = {
227 .start = OMAP7XX_GPIO6_BASE,
228 .end = OMAP7XX_GPIO6_BASE + SZ_2K - 1,
229 .flags = IORESOURCE_MEM,
232 .start = INT_7XX_GPIO_BANK6,
233 .flags = IORESOURCE_IRQ,
237 static struct __initdata omap_gpio_platform_data omap7xx_gpio6_config = {
239 .regs = &omap7xx_gpio_regs,
242 static struct platform_device omap7xx_gpio6 = {
246 .platform_data = &omap7xx_gpio6_config,
248 .num_resources = ARRAY_SIZE(omap7xx_gpio6_resources),
249 .resource = omap7xx_gpio6_resources,
252 static struct __initdata platform_device * omap7xx_gpio_dev[] = {
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.
267 static int __init omap7xx_gpio_init(void)
271 if (!cpu_is_omap7xx())
274 for (i = 0; i < ARRAY_SIZE(omap7xx_gpio_dev); i++)
275 platform_device_register(omap7xx_gpio_dev[i]);
279 postcore_initcall(omap7xx_gpio_init);