Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 1 | /* |
| 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önig | 0746949 | 2010-06-14 15:56:58 +0200 | [diff] [blame] | 14 | * 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 Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 17 | * |
| 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 Fuzzey | 3eb352c | 2009-11-21 12:14:54 +0100 | [diff] [blame] | 37 | #include <linux/dma-mapping.h> |
Uwe Kleine-König | e9ec2a1 | 2010-06-10 17:34:59 +0200 | [diff] [blame] | 38 | #include <linux/serial.h> |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 39 | |
Russell King | 80b02c1 | 2009-01-08 10:01:47 +0000 | [diff] [blame] | 40 | #include <mach/irqs.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 41 | #include <mach/hardware.h> |
Holger Schurig | 058b7a6 | 2009-01-26 16:34:51 +0100 | [diff] [blame] | 42 | #include <mach/common.h> |
Sascha Hauer | 1a02be0 | 2008-12-19 14:32:07 +0100 | [diff] [blame] | 43 | #include <mach/mmc.h> |
Holger Schurig | 058b7a6 | 2009-01-26 16:34:51 +0100 | [diff] [blame] | 44 | |
| 45 | #include "devices.h" |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 46 | |
Uwe Kleine-König | 0746949 | 2010-06-14 15:56:58 +0200 | [diff] [blame] | 47 | #if defined(CONFIG_ARCH_MX1) |
| 48 | static 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 | |
| 60 | static u64 imx1_camera_dmamask = DMA_BIT_MASK(32); |
| 61 | |
| 62 | struct 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önig | 0746949 | 2010-06-14 15:56:58 +0200 | [diff] [blame] | 73 | static 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 | |
| 89 | struct 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 | |
| 96 | static 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 | |
| 108 | struct 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 | |
| 115 | static 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 | |
| 151 | struct 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 */ |
| 159 | static struct mxc_gpio_port imx_gpio_ports[] = { |
| 160 | { |
| 161 | .chip.label = "gpio-0", |
| 162 | .base = (void __iomem *)MX1_IO_ADDRESS(MX1_GPIO_BASE_ADDR), |
| 163 | .irq = MX1_GPIO_INT_PORTA, |
| 164 | .virtual_irq_start = MXC_GPIO_IRQ_START, |
| 165 | }, { |
| 166 | .chip.label = "gpio-1", |
| 167 | .base = (void __iomem *)MX1_IO_ADDRESS(MX1_GPIO_BASE_ADDR + 0x100), |
| 168 | .irq = MX1_GPIO_INT_PORTB, |
| 169 | .virtual_irq_start = MXC_GPIO_IRQ_START + 32, |
| 170 | }, { |
| 171 | .chip.label = "gpio-2", |
| 172 | .base = (void __iomem *)MX1_IO_ADDRESS(MX1_GPIO_BASE_ADDR + 0x200), |
| 173 | .irq = MX1_GPIO_INT_PORTC, |
| 174 | .virtual_irq_start = MXC_GPIO_IRQ_START + 64, |
| 175 | }, { |
| 176 | .chip.label = "gpio-3", |
| 177 | .base = (void __iomem *)MX1_IO_ADDRESS(MX1_GPIO_BASE_ADDR + 0x300), |
| 178 | .irq = MX1_GPIO_INT_PORTD, |
| 179 | .virtual_irq_start = MXC_GPIO_IRQ_START + 96, |
| 180 | } |
| 181 | }; |
| 182 | |
| 183 | int __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önig | 2dcf78c | 2010-06-30 12:16:24 +0200 | [diff] [blame] | 190 | |
Baruch Siach | 94d3595 | 2010-06-21 08:15:59 +0300 | [diff] [blame] | 191 | #ifdef CONFIG_MACH_MX27 |
| 192 | static 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 | }; |
| 211 | struct 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 Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 222 | /* |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 223 | * General Purpose Timer |
Sascha Hauer | bf50bcc | 2009-06-23 12:04:36 +0200 | [diff] [blame] | 224 | * - i.MX21: 3 timers |
| 225 | * - i.MX27: 6 timers |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 226 | */ |
Uwe Kleine-König | 2b84a364 | 2010-02-04 14:11:02 +0100 | [diff] [blame] | 227 | #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 Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 245 | } |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 246 | |
Uwe Kleine-König | 2b84a364 | 2010-02-04 14:11:02 +0100 | [diff] [blame] | 247 | /* We use gpt1 as system timer, so do not add a device for this one */ |
| 248 | DEFINE_IMX_GPT_DEVICE(1, MX2x_GPT2_BASE_ADDR, MX2x_INT_GPT2); |
| 249 | DEFINE_IMX_GPT_DEVICE(2, MX2x_GPT3_BASE_ADDR, MX2x_INT_GPT3); |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 250 | |
| 251 | #ifdef CONFIG_MACH_MX27 |
Uwe Kleine-König | 2b84a364 | 2010-02-04 14:11:02 +0100 | [diff] [blame] | 252 | DEFINE_IMX_GPT_DEVICE(3, MX27_GPT4_BASE_ADDR, MX27_INT_GPT4); |
| 253 | DEFINE_IMX_GPT_DEVICE(4, MX27_GPT5_BASE_ADDR, MX27_INT_GPT5); |
| 254 | DEFINE_IMX_GPT_DEVICE(5, MX27_GPT6_BASE_ADDR, MX27_INT_GPT6); |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 255 | #endif |
| 256 | |
Wolfram Sang | 6d38c1c | 2010-04-29 10:03:18 +0200 | [diff] [blame] | 257 | /* Watchdog: i.MX1 has seperate driver, i.MX21 and i.MX27 are equal */ |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 258 | static struct resource mxc_wdt_resources[] = { |
| 259 | { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 260 | .start = MX2x_WDOG_BASE_ADDR, |
| 261 | .end = MX2x_WDOG_BASE_ADDR + SZ_4K - 1, |
| 262 | .flags = IORESOURCE_MEM, |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 263 | }, |
| 264 | }; |
| 265 | |
| 266 | struct platform_device mxc_wdt = { |
Wolfram Sang | 6d38c1c | 2010-04-29 10:03:18 +0200 | [diff] [blame] | 267 | .name = "imx2-wdt", |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 268 | .id = 0, |
| 269 | .num_resources = ARRAY_SIZE(mxc_wdt_resources), |
| 270 | .resource = mxc_wdt_resources, |
| 271 | }; |
| 272 | |
Sascha Hauer | 3d89baa | 2008-12-01 14:15:38 -0800 | [diff] [blame] | 273 | static struct resource mxc_w1_master_resources[] = { |
| 274 | { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 275 | .start = MX2x_OWIRE_BASE_ADDR, |
| 276 | .end = MX2x_OWIRE_BASE_ADDR + SZ_4K - 1, |
Sascha Hauer | 3d89baa | 2008-12-01 14:15:38 -0800 | [diff] [blame] | 277 | .flags = IORESOURCE_MEM, |
| 278 | }, |
| 279 | }; |
| 280 | |
| 281 | struct platform_device mxc_w1_master_device = { |
| 282 | .name = "mxc_w1", |
| 283 | .id = 0, |
| 284 | .num_resources = ARRAY_SIZE(mxc_w1_master_resources), |
| 285 | .resource = mxc_w1_master_resources, |
| 286 | }; |
| 287 | |
Holger Schurig | e481355 | 2009-01-26 16:34:56 +0100 | [diff] [blame] | 288 | /* |
| 289 | * lcdc: |
| 290 | * - i.MX1: the basic controller |
| 291 | * - i.MX21: to be checked |
| 292 | * - i.MX27: like i.MX1, with slightly variations |
| 293 | */ |
| 294 | static struct resource mxc_fb[] = { |
| 295 | { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 296 | .start = MX2x_LCDC_BASE_ADDR, |
| 297 | .end = MX2x_LCDC_BASE_ADDR + SZ_4K - 1, |
Holger Schurig | e481355 | 2009-01-26 16:34:56 +0100 | [diff] [blame] | 298 | .flags = IORESOURCE_MEM, |
Sascha Hauer | bf50bcc | 2009-06-23 12:04:36 +0200 | [diff] [blame] | 299 | }, { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 300 | .start = MX2x_INT_LCDC, |
| 301 | .end = MX2x_INT_LCDC, |
Holger Schurig | e481355 | 2009-01-26 16:34:56 +0100 | [diff] [blame] | 302 | .flags = IORESOURCE_IRQ, |
| 303 | } |
| 304 | }; |
| 305 | |
| 306 | /* mxc lcd driver */ |
| 307 | struct platform_device mxc_fb_device = { |
| 308 | .name = "imx-fb", |
| 309 | .id = 0, |
| 310 | .num_resources = ARRAY_SIZE(mxc_fb), |
| 311 | .resource = mxc_fb, |
| 312 | .dev = { |
Martin Fuzzey | 3eb352c | 2009-11-21 12:14:54 +0100 | [diff] [blame] | 313 | .coherent_dma_mask = DMA_BIT_MASK(32), |
Holger Schurig | e481355 | 2009-01-26 16:34:56 +0100 | [diff] [blame] | 314 | }, |
| 315 | }; |
| 316 | |
Sascha Hauer | 879fea1 | 2009-01-26 17:26:02 +0100 | [diff] [blame] | 317 | #ifdef CONFIG_MACH_MX27 |
| 318 | static struct resource mxc_fec_resources[] = { |
| 319 | { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 320 | .start = MX27_FEC_BASE_ADDR, |
| 321 | .end = MX27_FEC_BASE_ADDR + SZ_4K - 1, |
| 322 | .flags = IORESOURCE_MEM, |
Sascha Hauer | 879fea1 | 2009-01-26 17:26:02 +0100 | [diff] [blame] | 323 | }, { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 324 | .start = MX27_INT_FEC, |
| 325 | .end = MX27_INT_FEC, |
| 326 | .flags = IORESOURCE_IRQ, |
Sascha Hauer | 879fea1 | 2009-01-26 17:26:02 +0100 | [diff] [blame] | 327 | }, |
| 328 | }; |
| 329 | |
| 330 | struct platform_device mxc_fec_device = { |
| 331 | .name = "fec", |
| 332 | .id = 0, |
| 333 | .num_resources = ARRAY_SIZE(mxc_fec_resources), |
| 334 | .resource = mxc_fec_resources, |
| 335 | }; |
Holger Schurig | e481355 | 2009-01-26 16:34:56 +0100 | [diff] [blame] | 336 | #endif |
| 337 | |
Sascha Hauer | 824b16e | 2009-01-16 15:17:46 +0100 | [diff] [blame] | 338 | static struct resource mxc_pwm_resources[] = { |
Sascha Hauer | bf50bcc | 2009-06-23 12:04:36 +0200 | [diff] [blame] | 339 | { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 340 | .start = MX2x_PWM_BASE_ADDR, |
| 341 | .end = MX2x_PWM_BASE_ADDR + SZ_4K - 1, |
| 342 | .flags = IORESOURCE_MEM, |
Sascha Hauer | bf50bcc | 2009-06-23 12:04:36 +0200 | [diff] [blame] | 343 | }, { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 344 | .start = MX2x_INT_PWM, |
| 345 | .end = MX2x_INT_PWM, |
| 346 | .flags = IORESOURCE_IRQ, |
Sascha Hauer | 824b16e | 2009-01-16 15:17:46 +0100 | [diff] [blame] | 347 | } |
| 348 | }; |
| 349 | |
| 350 | struct platform_device mxc_pwm_device = { |
| 351 | .name = "mxc_pwm", |
| 352 | .id = 0, |
| 353 | .num_resources = ARRAY_SIZE(mxc_pwm_resources), |
Sascha Hauer | bf50bcc | 2009-06-23 12:04:36 +0200 | [diff] [blame] | 354 | .resource = mxc_pwm_resources, |
Sascha Hauer | 824b16e | 2009-01-16 15:17:46 +0100 | [diff] [blame] | 355 | }; |
| 356 | |
Uwe Kleine-König | ccd0e42 | 2010-02-05 10:46:56 +0100 | [diff] [blame] | 357 | #define DEFINE_MXC_MMC_DEVICE(n, baseaddr, irq, dmareq) \ |
| 358 | static struct resource mxc_sdhc_resources ## n[] = { \ |
| 359 | { \ |
| 360 | .start = baseaddr, \ |
| 361 | .end = baseaddr + SZ_4K - 1, \ |
| 362 | .flags = IORESOURCE_MEM, \ |
| 363 | }, { \ |
| 364 | .start = irq, \ |
| 365 | .end = irq, \ |
| 366 | .flags = IORESOURCE_IRQ, \ |
| 367 | }, { \ |
| 368 | .start = dmareq, \ |
| 369 | .end = dmareq, \ |
| 370 | .flags = IORESOURCE_DMA, \ |
| 371 | }, \ |
| 372 | }; \ |
| 373 | \ |
Russell King | 988addf | 2010-03-08 20:21:04 +0000 | [diff] [blame] | 374 | static u64 mxc_sdhc ## n ## _dmamask = DMA_BIT_MASK(32); \ |
Uwe Kleine-König | ccd0e42 | 2010-02-05 10:46:56 +0100 | [diff] [blame] | 375 | \ |
| 376 | struct platform_device mxc_sdhc_device ## n = { \ |
| 377 | .name = "mxc-mmc", \ |
| 378 | .id = n, \ |
| 379 | .dev = { \ |
| 380 | .dma_mask = &mxc_sdhc ## n ## _dmamask, \ |
Russell King | 988addf | 2010-03-08 20:21:04 +0000 | [diff] [blame] | 381 | .coherent_dma_mask = DMA_BIT_MASK(32), \ |
Uwe Kleine-König | ccd0e42 | 2010-02-05 10:46:56 +0100 | [diff] [blame] | 382 | }, \ |
| 383 | .num_resources = ARRAY_SIZE(mxc_sdhc_resources ## n), \ |
| 384 | .resource = mxc_sdhc_resources ## n, \ |
| 385 | } |
Sascha Hauer | 1a02be0 | 2008-12-19 14:32:07 +0100 | [diff] [blame] | 386 | |
Uwe Kleine-König | ccd0e42 | 2010-02-05 10:46:56 +0100 | [diff] [blame] | 387 | DEFINE_MXC_MMC_DEVICE(0, MX2x_SDHC1_BASE_ADDR, MX2x_INT_SDHC1, MX2x_DMA_REQ_SDHC1); |
| 388 | DEFINE_MXC_MMC_DEVICE(1, MX2x_SDHC2_BASE_ADDR, MX2x_INT_SDHC2, MX2x_DMA_REQ_SDHC2); |
Sascha Hauer | 1a02be0 | 2008-12-19 14:32:07 +0100 | [diff] [blame] | 389 | |
Sascha Hauer | f6d2fa7 | 2009-08-13 10:02:30 +0200 | [diff] [blame] | 390 | #ifdef CONFIG_MACH_MX27 |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 391 | static struct resource otg_resources[] = { |
| 392 | { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 393 | .start = MX27_USBOTG_BASE_ADDR, |
| 394 | .end = MX27_USBOTG_BASE_ADDR + 0x1ff, |
| 395 | .flags = IORESOURCE_MEM, |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 396 | }, { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 397 | .start = MX27_INT_USB3, |
| 398 | .end = MX27_INT_USB3, |
| 399 | .flags = IORESOURCE_IRQ, |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 400 | }, |
| 401 | }; |
| 402 | |
Martin Fuzzey | 3eb352c | 2009-11-21 12:14:54 +0100 | [diff] [blame] | 403 | static u64 otg_dmamask = DMA_BIT_MASK(32); |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 404 | |
| 405 | /* OTG gadget device */ |
| 406 | struct platform_device mxc_otg_udc_device = { |
| 407 | .name = "fsl-usb2-udc", |
| 408 | .id = -1, |
| 409 | .dev = { |
| 410 | .dma_mask = &otg_dmamask, |
Martin Fuzzey | 3eb352c | 2009-11-21 12:14:54 +0100 | [diff] [blame] | 411 | .coherent_dma_mask = DMA_BIT_MASK(32), |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 412 | }, |
| 413 | .resource = otg_resources, |
| 414 | .num_resources = ARRAY_SIZE(otg_resources), |
| 415 | }; |
| 416 | |
| 417 | /* OTG host */ |
| 418 | struct platform_device mxc_otg_host = { |
| 419 | .name = "mxc-ehci", |
| 420 | .id = 0, |
| 421 | .dev = { |
Martin Fuzzey | 3eb352c | 2009-11-21 12:14:54 +0100 | [diff] [blame] | 422 | .coherent_dma_mask = DMA_BIT_MASK(32), |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 423 | .dma_mask = &otg_dmamask, |
| 424 | }, |
| 425 | .resource = otg_resources, |
| 426 | .num_resources = ARRAY_SIZE(otg_resources), |
| 427 | }; |
| 428 | |
| 429 | /* USB host 1 */ |
| 430 | |
Martin Fuzzey | 3eb352c | 2009-11-21 12:14:54 +0100 | [diff] [blame] | 431 | static u64 usbh1_dmamask = DMA_BIT_MASK(32); |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 432 | |
| 433 | static struct resource mxc_usbh1_resources[] = { |
| 434 | { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 435 | .start = MX27_USBOTG_BASE_ADDR + 0x200, |
| 436 | .end = MX27_USBOTG_BASE_ADDR + 0x3ff, |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 437 | .flags = IORESOURCE_MEM, |
| 438 | }, { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 439 | .start = MX27_INT_USB1, |
| 440 | .end = MX27_INT_USB1, |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 441 | .flags = IORESOURCE_IRQ, |
| 442 | }, |
| 443 | }; |
| 444 | |
| 445 | struct platform_device mxc_usbh1 = { |
| 446 | .name = "mxc-ehci", |
| 447 | .id = 1, |
| 448 | .dev = { |
Martin Fuzzey | 3eb352c | 2009-11-21 12:14:54 +0100 | [diff] [blame] | 449 | .coherent_dma_mask = DMA_BIT_MASK(32), |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 450 | .dma_mask = &usbh1_dmamask, |
| 451 | }, |
| 452 | .resource = mxc_usbh1_resources, |
| 453 | .num_resources = ARRAY_SIZE(mxc_usbh1_resources), |
| 454 | }; |
| 455 | |
| 456 | /* USB host 2 */ |
Martin Fuzzey | 3eb352c | 2009-11-21 12:14:54 +0100 | [diff] [blame] | 457 | static u64 usbh2_dmamask = DMA_BIT_MASK(32); |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 458 | |
| 459 | static struct resource mxc_usbh2_resources[] = { |
| 460 | { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 461 | .start = MX27_USBOTG_BASE_ADDR + 0x400, |
| 462 | .end = MX27_USBOTG_BASE_ADDR + 0x5ff, |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 463 | .flags = IORESOURCE_MEM, |
| 464 | }, { |
Uwe Kleine-König | 58152a1 | 2010-02-05 11:42:54 +0100 | [diff] [blame] | 465 | .start = MX27_INT_USB2, |
| 466 | .end = MX27_INT_USB2, |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 467 | .flags = IORESOURCE_IRQ, |
| 468 | }, |
| 469 | }; |
| 470 | |
| 471 | struct platform_device mxc_usbh2 = { |
| 472 | .name = "mxc-ehci", |
| 473 | .id = 2, |
| 474 | .dev = { |
Martin Fuzzey | 3eb352c | 2009-11-21 12:14:54 +0100 | [diff] [blame] | 475 | .coherent_dma_mask = DMA_BIT_MASK(32), |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 476 | .dma_mask = &usbh2_dmamask, |
| 477 | }, |
| 478 | .resource = mxc_usbh2_resources, |
| 479 | .num_resources = ARRAY_SIZE(mxc_usbh2_resources), |
| 480 | }; |
Sascha Hauer | f6d2fa7 | 2009-08-13 10:02:30 +0200 | [diff] [blame] | 481 | #endif |
javier Martin | 627fb3b | 2009-07-15 15:26:21 +0200 | [diff] [blame] | 482 | |
Uwe Kleine-König | 69ddb48 | 2010-02-05 12:03:37 +0100 | [diff] [blame] | 483 | #define DEFINE_IMX_SSI_DMARES(_name, ssin, suffix) \ |
| 484 | { \ |
| 485 | .name = _name, \ |
| 486 | .start = MX2x_DMA_REQ_SSI ## ssin ## _ ## suffix, \ |
| 487 | .end = MX2x_DMA_REQ_SSI ## ssin ## _ ## suffix, \ |
| 488 | .flags = IORESOURCE_DMA, \ |
| 489 | } |
Sascha Hauer | 23291df | 2009-10-22 14:50:33 +0200 | [diff] [blame] | 490 | |
Uwe Kleine-König | 69ddb48 | 2010-02-05 12:03:37 +0100 | [diff] [blame] | 491 | #define DEFINE_IMX_SSI_DEVICE(n, ssin, baseaddr, irq) \ |
| 492 | static struct resource imx_ssi_resources ## n[] = { \ |
| 493 | { \ |
| 494 | .start = MX2x_SSI ## ssin ## _BASE_ADDR, \ |
| 495 | .end = MX2x_SSI ## ssin ## _BASE_ADDR + 0x6f, \ |
| 496 | .flags = IORESOURCE_MEM, \ |
| 497 | }, { \ |
| 498 | .start = MX2x_INT_SSI1, \ |
| 499 | .end = MX2x_INT_SSI1, \ |
| 500 | .flags = IORESOURCE_IRQ, \ |
| 501 | }, \ |
| 502 | DEFINE_IMX_SSI_DMARES("tx0", ssin, TX0), \ |
| 503 | DEFINE_IMX_SSI_DMARES("rx0", ssin, RX0), \ |
| 504 | DEFINE_IMX_SSI_DMARES("tx1", ssin, TX1), \ |
| 505 | DEFINE_IMX_SSI_DMARES("rx1", ssin, RX1), \ |
| 506 | }; \ |
| 507 | \ |
| 508 | struct platform_device imx_ssi_device ## n = { \ |
| 509 | .name = "imx-ssi", \ |
| 510 | .id = n, \ |
| 511 | .num_resources = ARRAY_SIZE(imx_ssi_resources ## n), \ |
| 512 | .resource = imx_ssi_resources ## n, \ |
| 513 | } |
Sascha Hauer | 23291df | 2009-10-22 14:50:33 +0200 | [diff] [blame] | 514 | |
Uwe Kleine-König | 69ddb48 | 2010-02-05 12:03:37 +0100 | [diff] [blame] | 515 | DEFINE_IMX_SSI_DEVICE(0, 1, MX2x_SSI1_BASE_ADDR, MX2x_INT_SSI1); |
| 516 | DEFINE_IMX_SSI_DEVICE(1, 2, MX2x_SSI1_BASE_ADDR, MX2x_INT_SSI1); |
Sascha Hauer | 23291df | 2009-10-22 14:50:33 +0200 | [diff] [blame] | 517 | |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 518 | /* GPIO port description */ |
Uwe Kleine-König | 897359d | 2010-02-05 17:40:28 +0100 | [diff] [blame] | 519 | #define DEFINE_MXC_GPIO_PORT_IRQ(SOC, n, _irq) \ |
| 520 | { \ |
| 521 | .chip.label = "gpio-" #n, \ |
| 522 | .irq = _irq, \ |
| 523 | .base = SOC ## _IO_ADDRESS(MX2x_GPIO_BASE_ADDR + \ |
| 524 | n * 0x100), \ |
| 525 | .virtual_irq_start = MXC_GPIO_IRQ_START + n * 32, \ |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 526 | } |
Uwe Kleine-König | 897359d | 2010-02-05 17:40:28 +0100 | [diff] [blame] | 527 | |
| 528 | #define DEFINE_MXC_GPIO_PORT(SOC, n) \ |
| 529 | { \ |
| 530 | .chip.label = "gpio-" #n, \ |
| 531 | .base = SOC ## _IO_ADDRESS(MX2x_GPIO_BASE_ADDR + \ |
| 532 | n * 0x100), \ |
| 533 | .virtual_irq_start = MXC_GPIO_IRQ_START + n * 32, \ |
| 534 | } |
| 535 | |
| 536 | #define DEFINE_MXC_GPIO_PORTS(SOC, pfx) \ |
| 537 | static struct mxc_gpio_port pfx ## _gpio_ports[] = { \ |
| 538 | DEFINE_MXC_GPIO_PORT_IRQ(SOC, 0, SOC ## _INT_GPIO), \ |
| 539 | DEFINE_MXC_GPIO_PORT(SOC, 1), \ |
| 540 | DEFINE_MXC_GPIO_PORT(SOC, 2), \ |
| 541 | DEFINE_MXC_GPIO_PORT(SOC, 3), \ |
| 542 | DEFINE_MXC_GPIO_PORT(SOC, 4), \ |
| 543 | DEFINE_MXC_GPIO_PORT(SOC, 5), \ |
| 544 | } |
| 545 | |
| 546 | #ifdef CONFIG_MACH_MX21 |
| 547 | DEFINE_MXC_GPIO_PORTS(MX21, imx21); |
Uwe Kleine-König | 9a763bf | 2010-06-10 17:11:06 +0200 | [diff] [blame] | 548 | |
| 549 | int __init imx21_register_gpios(void) |
| 550 | { |
| 551 | return mxc_gpio_init(imx21_gpio_ports, ARRAY_SIZE(imx21_gpio_ports)); |
| 552 | } |
Uwe Kleine-König | 897359d | 2010-02-05 17:40:28 +0100 | [diff] [blame] | 553 | #endif |
| 554 | |
| 555 | #ifdef CONFIG_MACH_MX27 |
| 556 | DEFINE_MXC_GPIO_PORTS(MX27, imx27); |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 557 | |
Uwe Kleine-König | 9a763bf | 2010-06-10 17:11:06 +0200 | [diff] [blame] | 558 | int __init imx27_register_gpios(void) |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 559 | { |
Uwe Kleine-König | 9a763bf | 2010-06-10 17:11:06 +0200 | [diff] [blame] | 560 | return mxc_gpio_init(imx27_gpio_ports, ARRAY_SIZE(imx27_gpio_ports)); |
Juergen Beisert | fc80a5e | 2008-07-05 10:02:57 +0200 | [diff] [blame] | 561 | } |
Uwe Kleine-König | 9a763bf | 2010-06-10 17:11:06 +0200 | [diff] [blame] | 562 | #endif |
Martin Fuzzey | 4e0fa90 | 2009-11-21 12:14:58 +0100 | [diff] [blame] | 563 | |
| 564 | #ifdef CONFIG_MACH_MX21 |
| 565 | static struct resource mx21_usbhc_resources[] = { |
| 566 | { |
Wolfram Sang | e169530 | 2010-05-15 11:25:35 +0100 | [diff] [blame] | 567 | .start = MX21_USBOTG_BASE_ADDR, |
| 568 | .end = MX21_USBOTG_BASE_ADDR + SZ_8K - 1, |
Martin Fuzzey | 4e0fa90 | 2009-11-21 12:14:58 +0100 | [diff] [blame] | 569 | .flags = IORESOURCE_MEM, |
| 570 | }, |
| 571 | { |
Russell King | 988addf | 2010-03-08 20:21:04 +0000 | [diff] [blame] | 572 | .start = MX21_INT_USBHOST, |
| 573 | .end = MX21_INT_USBHOST, |
Martin Fuzzey | 4e0fa90 | 2009-11-21 12:14:58 +0100 | [diff] [blame] | 574 | .flags = IORESOURCE_IRQ, |
| 575 | }, |
| 576 | }; |
| 577 | |
| 578 | struct platform_device mx21_usbhc_device = { |
| 579 | .name = "imx21-hcd", |
| 580 | .id = 0, |
| 581 | .dev = { |
| 582 | .dma_mask = &mx21_usbhc_device.dev.coherent_dma_mask, |
| 583 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 584 | }, |
| 585 | .num_resources = ARRAY_SIZE(mx21_usbhc_resources), |
| 586 | .resource = mx21_usbhc_resources, |
| 587 | }; |
| 588 | #endif |
| 589 | |
Eric Bénard | 0896a9e | 2010-05-19 18:46:06 +0200 | [diff] [blame] | 590 | static struct resource imx_kpp_resources[] = { |
| 591 | { |
| 592 | .start = MX2x_KPP_BASE_ADDR, |
| 593 | .end = MX2x_KPP_BASE_ADDR + 0xf, |
| 594 | .flags = IORESOURCE_MEM |
| 595 | }, { |
| 596 | .start = MX2x_INT_KPP, |
| 597 | .end = MX2x_INT_KPP, |
| 598 | .flags = IORESOURCE_IRQ, |
| 599 | }, |
| 600 | }; |
| 601 | |
| 602 | struct platform_device imx_kpp_device = { |
| 603 | .name = "imx-keypad", |
| 604 | .id = -1, |
| 605 | .num_resources = ARRAY_SIZE(imx_kpp_resources), |
| 606 | .resource = imx_kpp_resources, |
| 607 | }; |
Uwe Kleine-König | 2dcf78c | 2010-06-30 12:16:24 +0200 | [diff] [blame] | 608 | |
Uwe Kleine-König | 0746949 | 2010-06-14 15:56:58 +0200 | [diff] [blame] | 609 | #endif |