blob: 6fbd624fc5305490934fcada7e19b7ac5b1ab26e [file] [log] [blame]
Juergen Beisertfc80a5e2008-07-05 10:02:57 +02001/*
2 * Author: MontaVista Software, Inc.
3 * <source@mvista.com>
4 *
5 * Based on the OMAP devices.c
6 *
7 * 2005 (c) MontaVista Software, Inc. This file is licensed under the
8 * terms of the GNU General Public License version 2. This program is
9 * licensed "as is" without any warranty of any kind, whether express
10 * or implied.
11 *
12 * Copyright 2006-2007 Freescale Semiconductor, Inc. All Rights Reserved.
13 * Copyright 2008 Juergen Beisert, kernel@pengutronix.de
Uwe Kleine-König07469492010-06-14 15:56:58 +020014 * Copyright 2008 Sascha Hauer, kernel@pengutronix.de
15 * Copyright (c) 2008 Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
16 * Copyright (c) 2008 Darius Augulis <darius.augulis@teltonika.lt>
Juergen Beisertfc80a5e2008-07-05 10:02:57 +020017 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version 2
21 * of the License, or (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
30 * MA 02110-1301, USA.
31 */
32#include <linux/module.h>
33#include <linux/kernel.h>
34#include <linux/init.h>
35#include <linux/platform_device.h>
36#include <linux/gpio.h>
Martin Fuzzey3eb352c2009-11-21 12:14:54 +010037#include <linux/dma-mapping.h>
Uwe Kleine-Könige9ec2a12010-06-10 17:34:59 +020038#include <linux/serial.h>
Juergen Beisertfc80a5e2008-07-05 10:02:57 +020039
Russell King80b02c12009-01-08 10:01:47 +000040#include <mach/irqs.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010041#include <mach/hardware.h>
Holger Schurig058b7a62009-01-26 16:34:51 +010042#include <mach/common.h>
Sascha Hauer1a02be02008-12-19 14:32:07 +010043#include <mach/mmc.h>
Holger Schurig058b7a62009-01-26 16:34:51 +010044
45#include "devices.h"
Juergen Beisertfc80a5e2008-07-05 10:02:57 +020046
Uwe Kleine-König07469492010-06-14 15:56:58 +020047#if defined(CONFIG_ARCH_MX1)
48static struct resource imx1_camera_resources[] = {
49 {
50 .start = 0x00224000,
51 .end = 0x00224010,
52 .flags = IORESOURCE_MEM,
53 }, {
54 .start = MX1_CSI_INT,
55 .end = MX1_CSI_INT,
56 .flags = IORESOURCE_IRQ,
57 },
58};
59
60static u64 imx1_camera_dmamask = DMA_BIT_MASK(32);
61
62struct platform_device imx1_camera_device = {
63 .name = "mx1-camera",
64 .id = 0, /* This is used to put cameras on this interface */
65 .dev = {
66 .dma_mask = &imx1_camera_dmamask,
67 .coherent_dma_mask = DMA_BIT_MASK(32),
68 },
69 .resource = imx1_camera_resources,
70 .num_resources = ARRAY_SIZE(imx1_camera_resources),
71};
72
Uwe Kleine-König07469492010-06-14 15:56:58 +020073static struct resource imx_rtc_resources[] = {
74 {
75 .start = 0x00204000,
76 .end = 0x00204024,
77 .flags = IORESOURCE_MEM,
78 }, {
79 .start = MX1_RTC_INT,
80 .end = MX1_RTC_INT,
81 .flags = IORESOURCE_IRQ,
82 }, {
83 .start = MX1_RTC_SAMINT,
84 .end = MX1_RTC_SAMINT,
85 .flags = IORESOURCE_IRQ,
86 },
87};
88
89struct platform_device imx_rtc_device = {
90 .name = "rtc-imx",
91 .id = 0,
92 .resource = imx_rtc_resources,
93 .num_resources = ARRAY_SIZE(imx_rtc_resources),
94};
95
96static struct resource imx_wdt_resources[] = {
97 {
98 .start = 0x00201000,
99 .end = 0x00201008,
100 .flags = IORESOURCE_MEM,
101 }, {
102 .start = MX1_WDT_INT,
103 .end = MX1_WDT_INT,
104 .flags = IORESOURCE_IRQ,
105 },
106};
107
108struct platform_device imx_wdt_device = {
109 .name = "imx-wdt",
110 .id = 0,
111 .resource = imx_wdt_resources,
112 .num_resources = ARRAY_SIZE(imx_wdt_resources),
113};
114
115static struct resource imx_usb_resources[] = {
116 {
117 .start = 0x00212000,
118 .end = 0x00212148,
119 .flags = IORESOURCE_MEM,
120 }, {
121 .start = MX1_USBD_INT0,
122 .end = MX1_USBD_INT0,
123 .flags = IORESOURCE_IRQ,
124 }, {
125 .start = MX1_USBD_INT1,
126 .end = MX1_USBD_INT1,
127 .flags = IORESOURCE_IRQ,
128 }, {
129 .start = MX1_USBD_INT2,
130 .end = MX1_USBD_INT2,
131 .flags = IORESOURCE_IRQ,
132 }, {
133 .start = MX1_USBD_INT3,
134 .end = MX1_USBD_INT3,
135 .flags = IORESOURCE_IRQ,
136 }, {
137 .start = MX1_USBD_INT4,
138 .end = MX1_USBD_INT4,
139 .flags = IORESOURCE_IRQ,
140 }, {
141 .start = MX1_USBD_INT5,
142 .end = MX1_USBD_INT5,
143 .flags = IORESOURCE_IRQ,
144 }, {
145 .start = MX1_USBD_INT6,
146 .end = MX1_USBD_INT6,
147 .flags = IORESOURCE_IRQ,
148 },
149};
150
151struct platform_device imx_usb_device = {
152 .name = "imx_udc",
153 .id = 0,
154 .num_resources = ARRAY_SIZE(imx_usb_resources),
155 .resource = imx_usb_resources,
156};
157
158/* GPIO port description */
159static struct mxc_gpio_port imx_gpio_ports[] = {
160 {
161 .chip.label = "gpio-0",
Uwe Kleine-Königcf3a6ab2010-10-25 15:54:58 +0200162 .base = MX1_IO_ADDRESS(MX1_GPIO_BASE_ADDR),
Uwe Kleine-König07469492010-06-14 15:56:58 +0200163 .irq = MX1_GPIO_INT_PORTA,
164 .virtual_irq_start = MXC_GPIO_IRQ_START,
165 }, {
166 .chip.label = "gpio-1",
Uwe Kleine-Königcf3a6ab2010-10-25 15:54:58 +0200167 .base = MX1_IO_ADDRESS(MX1_GPIO_BASE_ADDR + 0x100),
Uwe Kleine-König07469492010-06-14 15:56:58 +0200168 .irq = MX1_GPIO_INT_PORTB,
169 .virtual_irq_start = MXC_GPIO_IRQ_START + 32,
170 }, {
171 .chip.label = "gpio-2",
Uwe Kleine-Königcf3a6ab2010-10-25 15:54:58 +0200172 .base = MX1_IO_ADDRESS(MX1_GPIO_BASE_ADDR + 0x200),
Uwe Kleine-König07469492010-06-14 15:56:58 +0200173 .irq = MX1_GPIO_INT_PORTC,
174 .virtual_irq_start = MXC_GPIO_IRQ_START + 64,
175 }, {
176 .chip.label = "gpio-3",
Uwe Kleine-Königcf3a6ab2010-10-25 15:54:58 +0200177 .base = MX1_IO_ADDRESS(MX1_GPIO_BASE_ADDR + 0x300),
Uwe Kleine-König07469492010-06-14 15:56:58 +0200178 .irq = MX1_GPIO_INT_PORTD,
179 .virtual_irq_start = MXC_GPIO_IRQ_START + 96,
180 }
181};
182
183int __init imx1_register_gpios(void)
184{
185 return mxc_gpio_init(imx_gpio_ports, ARRAY_SIZE(imx_gpio_ports));
186}
187#endif
188
189#if defined(CONFIG_MACH_MX21) || defined(CONFIG_MACH_MX27)
Uwe Kleine-König2dcf78c2010-06-30 12:16:24 +0200190
Baruch Siach94d35952010-06-21 08:15:59 +0300191#ifdef CONFIG_MACH_MX27
192static struct resource mx27_camera_resources[] = {
193 {
194 .start = MX27_CSI_BASE_ADDR,
195 .end = MX27_CSI_BASE_ADDR + 0x1f,
196 .flags = IORESOURCE_MEM,
197 }, {
198 .start = MX27_EMMA_PRP_BASE_ADDR,
199 .end = MX27_EMMA_PRP_BASE_ADDR + 0x1f,
200 .flags = IORESOURCE_MEM,
201 }, {
202 .start = MX27_INT_CSI,
203 .end = MX27_INT_CSI,
204 .flags = IORESOURCE_IRQ,
205 },{
206 .start = MX27_INT_EMMAPRP,
207 .end = MX27_INT_EMMAPRP,
208 .flags = IORESOURCE_IRQ,
209 },
210};
211struct platform_device mx27_camera_device = {
212 .name = "mx2-camera",
213 .id = 0,
214 .num_resources = ARRAY_SIZE(mx27_camera_resources),
215 .resource = mx27_camera_resources,
216 .dev = {
217 .coherent_dma_mask = 0xffffffff,
218 },
219};
220#endif
221
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200222/*
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200223 * General Purpose Timer
Sascha Hauerbf50bcc2009-06-23 12:04:36 +0200224 * - i.MX21: 3 timers
225 * - i.MX27: 6 timers
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200226 */
Uwe Kleine-König2b84a3642010-02-04 14:11:02 +0100227#define DEFINE_IMX_GPT_DEVICE(n, baseaddr, irq) \
228 static struct resource timer ## n ##_resources[] = { \
229 { \
230 .start = baseaddr, \
231 .end = baseaddr + SZ_4K - 1, \
232 .flags = IORESOURCE_MEM, \
233 }, { \
234 .start = irq, \
235 .end = irq, \
236 .flags = IORESOURCE_IRQ, \
237 } \
238 }; \
239 \
240 struct platform_device mxc_gpt ## n = { \
241 .name = "imx_gpt", \
242 .id = n, \
243 .num_resources = ARRAY_SIZE(timer ## n ## _resources), \
244 .resource = timer ## n ## _resources, \
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200245 }
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200246
Uwe Kleine-König2b84a3642010-02-04 14:11:02 +0100247/* We use gpt1 as system timer, so do not add a device for this one */
248DEFINE_IMX_GPT_DEVICE(1, MX2x_GPT2_BASE_ADDR, MX2x_INT_GPT2);
249DEFINE_IMX_GPT_DEVICE(2, MX2x_GPT3_BASE_ADDR, MX2x_INT_GPT3);
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200250
251#ifdef CONFIG_MACH_MX27
Uwe Kleine-König2b84a3642010-02-04 14:11:02 +0100252DEFINE_IMX_GPT_DEVICE(3, MX27_GPT4_BASE_ADDR, MX27_INT_GPT4);
253DEFINE_IMX_GPT_DEVICE(4, MX27_GPT5_BASE_ADDR, MX27_INT_GPT5);
254DEFINE_IMX_GPT_DEVICE(5, MX27_GPT6_BASE_ADDR, MX27_INT_GPT6);
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200255#endif
256
Wolfram Sang6d38c1c2010-04-29 10:03:18 +0200257/* Watchdog: i.MX1 has seperate driver, i.MX21 and i.MX27 are equal */
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200258static struct resource mxc_wdt_resources[] = {
259 {
Uwe Kleine-König58152a12010-02-05 11:42:54 +0100260 .start = MX2x_WDOG_BASE_ADDR,
261 .end = MX2x_WDOG_BASE_ADDR + SZ_4K - 1,
262 .flags = IORESOURCE_MEM,
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200263 },
264};
265
266struct platform_device mxc_wdt = {
Wolfram Sang6d38c1c2010-04-29 10:03:18 +0200267 .name = "imx2-wdt",
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200268 .id = 0,
269 .num_resources = ARRAY_SIZE(mxc_wdt_resources),
270 .resource = mxc_wdt_resources,
271};
272
Holger Schurige4813552009-01-26 16:34:56 +0100273/*
274 * lcdc:
275 * - i.MX1: the basic controller
276 * - i.MX21: to be checked
277 * - i.MX27: like i.MX1, with slightly variations
278 */
279static struct resource mxc_fb[] = {
280 {
Uwe Kleine-König58152a12010-02-05 11:42:54 +0100281 .start = MX2x_LCDC_BASE_ADDR,
282 .end = MX2x_LCDC_BASE_ADDR + SZ_4K - 1,
Holger Schurige4813552009-01-26 16:34:56 +0100283 .flags = IORESOURCE_MEM,
Sascha Hauerbf50bcc2009-06-23 12:04:36 +0200284 }, {
Uwe Kleine-König58152a12010-02-05 11:42:54 +0100285 .start = MX2x_INT_LCDC,
286 .end = MX2x_INT_LCDC,
Holger Schurige4813552009-01-26 16:34:56 +0100287 .flags = IORESOURCE_IRQ,
288 }
289};
290
291/* mxc lcd driver */
292struct platform_device mxc_fb_device = {
293 .name = "imx-fb",
294 .id = 0,
295 .num_resources = ARRAY_SIZE(mxc_fb),
296 .resource = mxc_fb,
297 .dev = {
Martin Fuzzey3eb352c2009-11-21 12:14:54 +0100298 .coherent_dma_mask = DMA_BIT_MASK(32),
Holger Schurige4813552009-01-26 16:34:56 +0100299 },
300};
301
Sascha Hauer824b16e2009-01-16 15:17:46 +0100302static struct resource mxc_pwm_resources[] = {
Sascha Hauerbf50bcc2009-06-23 12:04:36 +0200303 {
Uwe Kleine-König58152a12010-02-05 11:42:54 +0100304 .start = MX2x_PWM_BASE_ADDR,
305 .end = MX2x_PWM_BASE_ADDR + SZ_4K - 1,
306 .flags = IORESOURCE_MEM,
Sascha Hauerbf50bcc2009-06-23 12:04:36 +0200307 }, {
Uwe Kleine-König58152a12010-02-05 11:42:54 +0100308 .start = MX2x_INT_PWM,
309 .end = MX2x_INT_PWM,
310 .flags = IORESOURCE_IRQ,
Sascha Hauer824b16e2009-01-16 15:17:46 +0100311 }
312};
313
314struct platform_device mxc_pwm_device = {
315 .name = "mxc_pwm",
316 .id = 0,
317 .num_resources = ARRAY_SIZE(mxc_pwm_resources),
Sascha Hauerbf50bcc2009-06-23 12:04:36 +0200318 .resource = mxc_pwm_resources,
Sascha Hauer824b16e2009-01-16 15:17:46 +0100319};
320
Uwe Kleine-Königccd0e422010-02-05 10:46:56 +0100321#define DEFINE_MXC_MMC_DEVICE(n, baseaddr, irq, dmareq) \
322 static struct resource mxc_sdhc_resources ## n[] = { \
323 { \
324 .start = baseaddr, \
325 .end = baseaddr + SZ_4K - 1, \
326 .flags = IORESOURCE_MEM, \
327 }, { \
328 .start = irq, \
329 .end = irq, \
330 .flags = IORESOURCE_IRQ, \
331 }, { \
332 .start = dmareq, \
333 .end = dmareq, \
334 .flags = IORESOURCE_DMA, \
335 }, \
336 }; \
337 \
Russell King988addf2010-03-08 20:21:04 +0000338 static u64 mxc_sdhc ## n ## _dmamask = DMA_BIT_MASK(32); \
Uwe Kleine-Königccd0e422010-02-05 10:46:56 +0100339 \
340 struct platform_device mxc_sdhc_device ## n = { \
341 .name = "mxc-mmc", \
342 .id = n, \
343 .dev = { \
344 .dma_mask = &mxc_sdhc ## n ## _dmamask, \
Russell King988addf2010-03-08 20:21:04 +0000345 .coherent_dma_mask = DMA_BIT_MASK(32), \
Uwe Kleine-Königccd0e422010-02-05 10:46:56 +0100346 }, \
347 .num_resources = ARRAY_SIZE(mxc_sdhc_resources ## n), \
348 .resource = mxc_sdhc_resources ## n, \
349 }
Sascha Hauer1a02be02008-12-19 14:32:07 +0100350
Uwe Kleine-Königccd0e422010-02-05 10:46:56 +0100351DEFINE_MXC_MMC_DEVICE(0, MX2x_SDHC1_BASE_ADDR, MX2x_INT_SDHC1, MX2x_DMA_REQ_SDHC1);
352DEFINE_MXC_MMC_DEVICE(1, MX2x_SDHC2_BASE_ADDR, MX2x_INT_SDHC2, MX2x_DMA_REQ_SDHC2);
Sascha Hauer1a02be02008-12-19 14:32:07 +0100353
Sascha Hauerf6d2fa72009-08-13 10:02:30 +0200354#ifdef CONFIG_MACH_MX27
javier Martin627fb3b2009-07-15 15:26:21 +0200355static struct resource otg_resources[] = {
356 {
Uwe Kleine-König58152a12010-02-05 11:42:54 +0100357 .start = MX27_USBOTG_BASE_ADDR,
358 .end = MX27_USBOTG_BASE_ADDR + 0x1ff,
359 .flags = IORESOURCE_MEM,
javier Martin627fb3b2009-07-15 15:26:21 +0200360 }, {
Uwe Kleine-König58152a12010-02-05 11:42:54 +0100361 .start = MX27_INT_USB3,
362 .end = MX27_INT_USB3,
363 .flags = IORESOURCE_IRQ,
javier Martin627fb3b2009-07-15 15:26:21 +0200364 },
365};
366
Martin Fuzzey3eb352c2009-11-21 12:14:54 +0100367static u64 otg_dmamask = DMA_BIT_MASK(32);
javier Martin627fb3b2009-07-15 15:26:21 +0200368
369/* OTG gadget device */
370struct platform_device mxc_otg_udc_device = {
371 .name = "fsl-usb2-udc",
372 .id = -1,
373 .dev = {
374 .dma_mask = &otg_dmamask,
Martin Fuzzey3eb352c2009-11-21 12:14:54 +0100375 .coherent_dma_mask = DMA_BIT_MASK(32),
javier Martin627fb3b2009-07-15 15:26:21 +0200376 },
377 .resource = otg_resources,
378 .num_resources = ARRAY_SIZE(otg_resources),
379};
380
381/* OTG host */
382struct platform_device mxc_otg_host = {
383 .name = "mxc-ehci",
384 .id = 0,
385 .dev = {
Martin Fuzzey3eb352c2009-11-21 12:14:54 +0100386 .coherent_dma_mask = DMA_BIT_MASK(32),
javier Martin627fb3b2009-07-15 15:26:21 +0200387 .dma_mask = &otg_dmamask,
388 },
389 .resource = otg_resources,
390 .num_resources = ARRAY_SIZE(otg_resources),
391};
392
393/* USB host 1 */
394
Martin Fuzzey3eb352c2009-11-21 12:14:54 +0100395static u64 usbh1_dmamask = DMA_BIT_MASK(32);
javier Martin627fb3b2009-07-15 15:26:21 +0200396
397static struct resource mxc_usbh1_resources[] = {
398 {
Uwe Kleine-König58152a12010-02-05 11:42:54 +0100399 .start = MX27_USBOTG_BASE_ADDR + 0x200,
400 .end = MX27_USBOTG_BASE_ADDR + 0x3ff,
javier Martin627fb3b2009-07-15 15:26:21 +0200401 .flags = IORESOURCE_MEM,
402 }, {
Uwe Kleine-König58152a12010-02-05 11:42:54 +0100403 .start = MX27_INT_USB1,
404 .end = MX27_INT_USB1,
javier Martin627fb3b2009-07-15 15:26:21 +0200405 .flags = IORESOURCE_IRQ,
406 },
407};
408
409struct platform_device mxc_usbh1 = {
410 .name = "mxc-ehci",
411 .id = 1,
412 .dev = {
Martin Fuzzey3eb352c2009-11-21 12:14:54 +0100413 .coherent_dma_mask = DMA_BIT_MASK(32),
javier Martin627fb3b2009-07-15 15:26:21 +0200414 .dma_mask = &usbh1_dmamask,
415 },
416 .resource = mxc_usbh1_resources,
417 .num_resources = ARRAY_SIZE(mxc_usbh1_resources),
418};
419
420/* USB host 2 */
Martin Fuzzey3eb352c2009-11-21 12:14:54 +0100421static u64 usbh2_dmamask = DMA_BIT_MASK(32);
javier Martin627fb3b2009-07-15 15:26:21 +0200422
423static struct resource mxc_usbh2_resources[] = {
424 {
Uwe Kleine-König58152a12010-02-05 11:42:54 +0100425 .start = MX27_USBOTG_BASE_ADDR + 0x400,
426 .end = MX27_USBOTG_BASE_ADDR + 0x5ff,
javier Martin627fb3b2009-07-15 15:26:21 +0200427 .flags = IORESOURCE_MEM,
428 }, {
Uwe Kleine-König58152a12010-02-05 11:42:54 +0100429 .start = MX27_INT_USB2,
430 .end = MX27_INT_USB2,
javier Martin627fb3b2009-07-15 15:26:21 +0200431 .flags = IORESOURCE_IRQ,
432 },
433};
434
435struct platform_device mxc_usbh2 = {
436 .name = "mxc-ehci",
437 .id = 2,
438 .dev = {
Martin Fuzzey3eb352c2009-11-21 12:14:54 +0100439 .coherent_dma_mask = DMA_BIT_MASK(32),
javier Martin627fb3b2009-07-15 15:26:21 +0200440 .dma_mask = &usbh2_dmamask,
441 },
442 .resource = mxc_usbh2_resources,
443 .num_resources = ARRAY_SIZE(mxc_usbh2_resources),
444};
Sascha Hauerf6d2fa72009-08-13 10:02:30 +0200445#endif
javier Martin627fb3b2009-07-15 15:26:21 +0200446
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200447/* GPIO port description */
Uwe Kleine-König897359d2010-02-05 17:40:28 +0100448#define DEFINE_MXC_GPIO_PORT_IRQ(SOC, n, _irq) \
449 { \
450 .chip.label = "gpio-" #n, \
451 .irq = _irq, \
452 .base = SOC ## _IO_ADDRESS(MX2x_GPIO_BASE_ADDR + \
453 n * 0x100), \
454 .virtual_irq_start = MXC_GPIO_IRQ_START + n * 32, \
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200455 }
Uwe Kleine-König897359d2010-02-05 17:40:28 +0100456
457#define DEFINE_MXC_GPIO_PORT(SOC, n) \
458 { \
459 .chip.label = "gpio-" #n, \
460 .base = SOC ## _IO_ADDRESS(MX2x_GPIO_BASE_ADDR + \
461 n * 0x100), \
462 .virtual_irq_start = MXC_GPIO_IRQ_START + n * 32, \
463 }
464
465#define DEFINE_MXC_GPIO_PORTS(SOC, pfx) \
466 static struct mxc_gpio_port pfx ## _gpio_ports[] = { \
467 DEFINE_MXC_GPIO_PORT_IRQ(SOC, 0, SOC ## _INT_GPIO), \
468 DEFINE_MXC_GPIO_PORT(SOC, 1), \
469 DEFINE_MXC_GPIO_PORT(SOC, 2), \
470 DEFINE_MXC_GPIO_PORT(SOC, 3), \
471 DEFINE_MXC_GPIO_PORT(SOC, 4), \
472 DEFINE_MXC_GPIO_PORT(SOC, 5), \
473 }
474
475#ifdef CONFIG_MACH_MX21
476DEFINE_MXC_GPIO_PORTS(MX21, imx21);
Uwe Kleine-König9a763bf2010-06-10 17:11:06 +0200477
478int __init imx21_register_gpios(void)
479{
480 return mxc_gpio_init(imx21_gpio_ports, ARRAY_SIZE(imx21_gpio_ports));
481}
Uwe Kleine-König897359d2010-02-05 17:40:28 +0100482#endif
483
484#ifdef CONFIG_MACH_MX27
485DEFINE_MXC_GPIO_PORTS(MX27, imx27);
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200486
Uwe Kleine-König9a763bf2010-06-10 17:11:06 +0200487int __init imx27_register_gpios(void)
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200488{
Uwe Kleine-König9a763bf2010-06-10 17:11:06 +0200489 return mxc_gpio_init(imx27_gpio_ports, ARRAY_SIZE(imx27_gpio_ports));
Juergen Beisertfc80a5e2008-07-05 10:02:57 +0200490}
Uwe Kleine-König9a763bf2010-06-10 17:11:06 +0200491#endif
Martin Fuzzey4e0fa902009-11-21 12:14:58 +0100492
493#ifdef CONFIG_MACH_MX21
494static struct resource mx21_usbhc_resources[] = {
495 {
Wolfram Sange1695302010-05-15 11:25:35 +0100496 .start = MX21_USBOTG_BASE_ADDR,
497 .end = MX21_USBOTG_BASE_ADDR + SZ_8K - 1,
Martin Fuzzey4e0fa902009-11-21 12:14:58 +0100498 .flags = IORESOURCE_MEM,
499 },
500 {
Russell King988addf2010-03-08 20:21:04 +0000501 .start = MX21_INT_USBHOST,
502 .end = MX21_INT_USBHOST,
Martin Fuzzey4e0fa902009-11-21 12:14:58 +0100503 .flags = IORESOURCE_IRQ,
504 },
505};
506
507struct platform_device mx21_usbhc_device = {
508 .name = "imx21-hcd",
509 .id = 0,
510 .dev = {
511 .dma_mask = &mx21_usbhc_device.dev.coherent_dma_mask,
512 .coherent_dma_mask = DMA_BIT_MASK(32),
513 },
514 .num_resources = ARRAY_SIZE(mx21_usbhc_resources),
515 .resource = mx21_usbhc_resources,
516};
517#endif
518
Eric Bénard0896a9e2010-05-19 18:46:06 +0200519static struct resource imx_kpp_resources[] = {
520 {
521 .start = MX2x_KPP_BASE_ADDR,
522 .end = MX2x_KPP_BASE_ADDR + 0xf,
523 .flags = IORESOURCE_MEM
524 }, {
525 .start = MX2x_INT_KPP,
526 .end = MX2x_INT_KPP,
527 .flags = IORESOURCE_IRQ,
528 },
529};
530
531struct platform_device imx_kpp_device = {
532 .name = "imx-keypad",
533 .id = -1,
534 .num_resources = ARRAY_SIZE(imx_kpp_resources),
535 .resource = imx_kpp_resources,
536};
Uwe Kleine-König2dcf78c2010-06-30 12:16:24 +0200537
Uwe Kleine-König07469492010-06-14 15:56:58 +0200538#endif