Sascha Hauer | e3d13ff | 2008-07-05 10:02:48 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2006-2007 Freescale Semiconductor, Inc. All Rights Reserved. |
| 3 | * Copyright 2008 Sascha Hauer, kernel@pengutronix.de |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License |
| 7 | * as published by the Free Software Foundation; either version 2 |
| 8 | * of the License, or (at your option) any later version. |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 17 | * Boston, MA 02110-1301, USA. |
| 18 | */ |
| 19 | |
Guennadi Liakhovetski | eb05bbe | 2009-05-04 13:13:52 +0200 | [diff] [blame] | 20 | #include <linux/dma-mapping.h> |
Sascha Hauer | e3d13ff | 2008-07-05 10:02:48 +0200 | [diff] [blame] | 21 | #include <linux/module.h> |
| 22 | #include <linux/platform_device.h> |
| 23 | #include <linux/serial.h> |
Juergen Beisert | 07bd1a6 | 2008-07-05 10:02:49 +0200 | [diff] [blame] | 24 | #include <linux/gpio.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 25 | #include <mach/hardware.h> |
Russell King | 80b02c1 | 2009-01-08 10:01:47 +0000 | [diff] [blame] | 26 | #include <mach/irqs.h> |
Alan Carvalho de Assis | 45001e9 | 2009-04-02 12:38:41 -0300 | [diff] [blame] | 27 | #include <mach/common.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 28 | #include <mach/imx-uart.h> |
Valentin Longchamp | 9c70e22 | 2009-05-07 11:51:42 +0200 | [diff] [blame] | 29 | #include <mach/mx3_camera.h> |
Sascha Hauer | e3d13ff | 2008-07-05 10:02:48 +0200 | [diff] [blame] | 30 | |
Sascha Hauer | 87bbb19 | 2009-01-29 16:00:23 +0100 | [diff] [blame] | 31 | #include "devices.h" |
| 32 | |
Sascha Hauer | e3d13ff | 2008-07-05 10:02:48 +0200 | [diff] [blame] | 33 | static struct resource uart0[] = { |
| 34 | { |
| 35 | .start = UART1_BASE_ADDR, |
| 36 | .end = UART1_BASE_ADDR + 0x0B5, |
| 37 | .flags = IORESOURCE_MEM, |
| 38 | }, { |
| 39 | .start = MXC_INT_UART1, |
| 40 | .end = MXC_INT_UART1, |
| 41 | .flags = IORESOURCE_IRQ, |
| 42 | }, |
| 43 | }; |
| 44 | |
Sascha Hauer | 5cf0942 | 2008-09-09 10:19:41 +0200 | [diff] [blame] | 45 | struct platform_device mxc_uart_device0 = { |
Sascha Hauer | e3d13ff | 2008-07-05 10:02:48 +0200 | [diff] [blame] | 46 | .name = "imx-uart", |
| 47 | .id = 0, |
| 48 | .resource = uart0, |
| 49 | .num_resources = ARRAY_SIZE(uart0), |
| 50 | }; |
| 51 | |
| 52 | static struct resource uart1[] = { |
| 53 | { |
| 54 | .start = UART2_BASE_ADDR, |
| 55 | .end = UART2_BASE_ADDR + 0x0B5, |
| 56 | .flags = IORESOURCE_MEM, |
| 57 | }, { |
| 58 | .start = MXC_INT_UART2, |
| 59 | .end = MXC_INT_UART2, |
| 60 | .flags = IORESOURCE_IRQ, |
| 61 | }, |
| 62 | }; |
| 63 | |
Sascha Hauer | 5cf0942 | 2008-09-09 10:19:41 +0200 | [diff] [blame] | 64 | struct platform_device mxc_uart_device1 = { |
Sascha Hauer | e3d13ff | 2008-07-05 10:02:48 +0200 | [diff] [blame] | 65 | .name = "imx-uart", |
| 66 | .id = 1, |
| 67 | .resource = uart1, |
| 68 | .num_resources = ARRAY_SIZE(uart1), |
| 69 | }; |
| 70 | |
| 71 | static struct resource uart2[] = { |
| 72 | { |
| 73 | .start = UART3_BASE_ADDR, |
| 74 | .end = UART3_BASE_ADDR + 0x0B5, |
| 75 | .flags = IORESOURCE_MEM, |
| 76 | }, { |
| 77 | .start = MXC_INT_UART3, |
| 78 | .end = MXC_INT_UART3, |
| 79 | .flags = IORESOURCE_IRQ, |
| 80 | }, |
| 81 | }; |
| 82 | |
Sascha Hauer | 5cf0942 | 2008-09-09 10:19:41 +0200 | [diff] [blame] | 83 | struct platform_device mxc_uart_device2 = { |
Sascha Hauer | e3d13ff | 2008-07-05 10:02:48 +0200 | [diff] [blame] | 84 | .name = "imx-uart", |
| 85 | .id = 2, |
| 86 | .resource = uart2, |
| 87 | .num_resources = ARRAY_SIZE(uart2), |
| 88 | }; |
| 89 | |
Sascha Hauer | 9536ff3 | 2009-02-06 15:38:51 +0100 | [diff] [blame] | 90 | #ifdef CONFIG_ARCH_MX31 |
Sascha Hauer | e3d13ff | 2008-07-05 10:02:48 +0200 | [diff] [blame] | 91 | static struct resource uart3[] = { |
| 92 | { |
| 93 | .start = UART4_BASE_ADDR, |
| 94 | .end = UART4_BASE_ADDR + 0x0B5, |
| 95 | .flags = IORESOURCE_MEM, |
| 96 | }, { |
| 97 | .start = MXC_INT_UART4, |
| 98 | .end = MXC_INT_UART4, |
| 99 | .flags = IORESOURCE_IRQ, |
| 100 | }, |
| 101 | }; |
| 102 | |
Sascha Hauer | 5cf0942 | 2008-09-09 10:19:41 +0200 | [diff] [blame] | 103 | struct platform_device mxc_uart_device3 = { |
Sascha Hauer | e3d13ff | 2008-07-05 10:02:48 +0200 | [diff] [blame] | 104 | .name = "imx-uart", |
| 105 | .id = 3, |
| 106 | .resource = uart3, |
| 107 | .num_resources = ARRAY_SIZE(uart3), |
| 108 | }; |
| 109 | |
| 110 | static struct resource uart4[] = { |
| 111 | { |
| 112 | .start = UART5_BASE_ADDR, |
| 113 | .end = UART5_BASE_ADDR + 0x0B5, |
| 114 | .flags = IORESOURCE_MEM, |
| 115 | }, { |
| 116 | .start = MXC_INT_UART5, |
| 117 | .end = MXC_INT_UART5, |
| 118 | .flags = IORESOURCE_IRQ, |
| 119 | }, |
| 120 | }; |
| 121 | |
Sascha Hauer | 5cf0942 | 2008-09-09 10:19:41 +0200 | [diff] [blame] | 122 | struct platform_device mxc_uart_device4 = { |
Sascha Hauer | e3d13ff | 2008-07-05 10:02:48 +0200 | [diff] [blame] | 123 | .name = "imx-uart", |
| 124 | .id = 4, |
| 125 | .resource = uart4, |
| 126 | .num_resources = ARRAY_SIZE(uart4), |
| 127 | }; |
Sascha Hauer | 9536ff3 | 2009-02-06 15:38:51 +0100 | [diff] [blame] | 128 | #endif /* CONFIG_ARCH_MX31 */ |
Sascha Hauer | e3d13ff | 2008-07-05 10:02:48 +0200 | [diff] [blame] | 129 | |
Juergen Beisert | 07bd1a6 | 2008-07-05 10:02:49 +0200 | [diff] [blame] | 130 | /* GPIO port description */ |
| 131 | static struct mxc_gpio_port imx_gpio_ports[] = { |
Sascha Hauer | 3f4f54b | 2009-06-23 12:12:00 +0200 | [diff] [blame] | 132 | { |
Juergen Beisert | 07bd1a6 | 2008-07-05 10:02:49 +0200 | [diff] [blame] | 133 | .chip.label = "gpio-0", |
| 134 | .base = IO_ADDRESS(GPIO1_BASE_ADDR), |
| 135 | .irq = MXC_INT_GPIO1, |
Sascha Hauer | 9d631b8 | 2008-12-18 11:08:55 +0100 | [diff] [blame] | 136 | .virtual_irq_start = MXC_GPIO_IRQ_START, |
Sascha Hauer | 3f4f54b | 2009-06-23 12:12:00 +0200 | [diff] [blame] | 137 | }, { |
Juergen Beisert | 07bd1a6 | 2008-07-05 10:02:49 +0200 | [diff] [blame] | 138 | .chip.label = "gpio-1", |
| 139 | .base = IO_ADDRESS(GPIO2_BASE_ADDR), |
| 140 | .irq = MXC_INT_GPIO2, |
Sascha Hauer | 9d631b8 | 2008-12-18 11:08:55 +0100 | [diff] [blame] | 141 | .virtual_irq_start = MXC_GPIO_IRQ_START + 32, |
Sascha Hauer | 3f4f54b | 2009-06-23 12:12:00 +0200 | [diff] [blame] | 142 | }, { |
Juergen Beisert | 07bd1a6 | 2008-07-05 10:02:49 +0200 | [diff] [blame] | 143 | .chip.label = "gpio-2", |
| 144 | .base = IO_ADDRESS(GPIO3_BASE_ADDR), |
| 145 | .irq = MXC_INT_GPIO3, |
Sascha Hauer | 9d631b8 | 2008-12-18 11:08:55 +0100 | [diff] [blame] | 146 | .virtual_irq_start = MXC_GPIO_IRQ_START + 64, |
Juergen Beisert | 07bd1a6 | 2008-07-05 10:02:49 +0200 | [diff] [blame] | 147 | } |
| 148 | }; |
| 149 | |
| 150 | int __init mxc_register_gpios(void) |
| 151 | { |
| 152 | return mxc_gpio_init(imx_gpio_ports, ARRAY_SIZE(imx_gpio_ports)); |
| 153 | } |
Sascha Hauer | a840592 | 2008-12-01 14:15:39 -0800 | [diff] [blame] | 154 | |
| 155 | static struct resource mxc_w1_master_resources[] = { |
| 156 | { |
| 157 | .start = OWIRE_BASE_ADDR, |
| 158 | .end = OWIRE_BASE_ADDR + SZ_4K - 1, |
| 159 | .flags = IORESOURCE_MEM, |
| 160 | }, |
| 161 | }; |
| 162 | |
| 163 | struct platform_device mxc_w1_master_device = { |
| 164 | .name = "mxc_w1", |
| 165 | .id = 0, |
| 166 | .num_resources = ARRAY_SIZE(mxc_w1_master_resources), |
| 167 | .resource = mxc_w1_master_resources, |
| 168 | }; |
Sascha Hauer | cb96cf1 | 2008-11-11 15:15:39 +0100 | [diff] [blame] | 169 | |
| 170 | static struct resource mxc_nand_resources[] = { |
| 171 | { |
Sascha Hauer | 9536ff3 | 2009-02-06 15:38:51 +0100 | [diff] [blame] | 172 | .start = 0, /* runtime dependent */ |
| 173 | .end = 0, |
Sascha Hauer | 3f4f54b | 2009-06-23 12:12:00 +0200 | [diff] [blame] | 174 | .flags = IORESOURCE_MEM, |
Sascha Hauer | cb96cf1 | 2008-11-11 15:15:39 +0100 | [diff] [blame] | 175 | }, { |
| 176 | .start = MXC_INT_NANDFC, |
| 177 | .end = MXC_INT_NANDFC, |
Sascha Hauer | 3f4f54b | 2009-06-23 12:12:00 +0200 | [diff] [blame] | 178 | .flags = IORESOURCE_IRQ, |
Sascha Hauer | cb96cf1 | 2008-11-11 15:15:39 +0100 | [diff] [blame] | 179 | }, |
| 180 | }; |
| 181 | |
| 182 | struct platform_device mxc_nand_device = { |
| 183 | .name = "mxc_nand", |
| 184 | .id = 0, |
| 185 | .num_resources = ARRAY_SIZE(mxc_nand_resources), |
| 186 | .resource = mxc_nand_resources, |
| 187 | }; |
Mark Brown | 39d1dc0 | 2009-01-15 16:14:27 +0000 | [diff] [blame] | 188 | |
| 189 | static struct resource mxc_i2c0_resources[] = { |
| 190 | { |
| 191 | .start = I2C_BASE_ADDR, |
| 192 | .end = I2C_BASE_ADDR + SZ_4K - 1, |
| 193 | .flags = IORESOURCE_MEM, |
Sascha Hauer | 3f4f54b | 2009-06-23 12:12:00 +0200 | [diff] [blame] | 194 | }, { |
Mark Brown | 39d1dc0 | 2009-01-15 16:14:27 +0000 | [diff] [blame] | 195 | .start = MXC_INT_I2C, |
| 196 | .end = MXC_INT_I2C, |
| 197 | .flags = IORESOURCE_IRQ, |
| 198 | }, |
| 199 | }; |
| 200 | |
| 201 | struct platform_device mxc_i2c_device0 = { |
| 202 | .name = "imx-i2c", |
| 203 | .id = 0, |
| 204 | .num_resources = ARRAY_SIZE(mxc_i2c0_resources), |
| 205 | .resource = mxc_i2c0_resources, |
| 206 | }; |
| 207 | |
| 208 | static struct resource mxc_i2c1_resources[] = { |
| 209 | { |
| 210 | .start = I2C2_BASE_ADDR, |
| 211 | .end = I2C2_BASE_ADDR + SZ_4K - 1, |
| 212 | .flags = IORESOURCE_MEM, |
Sascha Hauer | 3f4f54b | 2009-06-23 12:12:00 +0200 | [diff] [blame] | 213 | }, { |
Mark Brown | 39d1dc0 | 2009-01-15 16:14:27 +0000 | [diff] [blame] | 214 | .start = MXC_INT_I2C2, |
| 215 | .end = MXC_INT_I2C2, |
| 216 | .flags = IORESOURCE_IRQ, |
| 217 | }, |
| 218 | }; |
| 219 | |
| 220 | struct platform_device mxc_i2c_device1 = { |
| 221 | .name = "imx-i2c", |
| 222 | .id = 1, |
| 223 | .num_resources = ARRAY_SIZE(mxc_i2c1_resources), |
| 224 | .resource = mxc_i2c1_resources, |
| 225 | }; |
| 226 | |
| 227 | static struct resource mxc_i2c2_resources[] = { |
| 228 | { |
| 229 | .start = I2C3_BASE_ADDR, |
| 230 | .end = I2C3_BASE_ADDR + SZ_4K - 1, |
| 231 | .flags = IORESOURCE_MEM, |
Sascha Hauer | 3f4f54b | 2009-06-23 12:12:00 +0200 | [diff] [blame] | 232 | }, { |
Mark Brown | 39d1dc0 | 2009-01-15 16:14:27 +0000 | [diff] [blame] | 233 | .start = MXC_INT_I2C3, |
| 234 | .end = MXC_INT_I2C3, |
| 235 | .flags = IORESOURCE_IRQ, |
| 236 | }, |
| 237 | }; |
| 238 | |
| 239 | struct platform_device mxc_i2c_device2 = { |
| 240 | .name = "imx-i2c", |
| 241 | .id = 2, |
| 242 | .num_resources = ARRAY_SIZE(mxc_i2c2_resources), |
| 243 | .resource = mxc_i2c2_resources, |
| 244 | }; |
Valentin Longchamp | ca489f8 | 2009-02-16 12:47:52 +0100 | [diff] [blame] | 245 | |
Sascha Hauer | 2adc1d6 | 2008-12-19 14:32:06 +0100 | [diff] [blame] | 246 | #ifdef CONFIG_ARCH_MX31 |
| 247 | static struct resource mxcsdhc0_resources[] = { |
| 248 | { |
| 249 | .start = MMC_SDHC1_BASE_ADDR, |
| 250 | .end = MMC_SDHC1_BASE_ADDR + SZ_16K - 1, |
| 251 | .flags = IORESOURCE_MEM, |
| 252 | }, { |
| 253 | .start = MXC_INT_MMC_SDHC1, |
| 254 | .end = MXC_INT_MMC_SDHC1, |
| 255 | .flags = IORESOURCE_IRQ, |
| 256 | }, |
| 257 | }; |
| 258 | |
| 259 | static struct resource mxcsdhc1_resources[] = { |
| 260 | { |
| 261 | .start = MMC_SDHC2_BASE_ADDR, |
| 262 | .end = MMC_SDHC2_BASE_ADDR + SZ_16K - 1, |
| 263 | .flags = IORESOURCE_MEM, |
| 264 | }, { |
| 265 | .start = MXC_INT_MMC_SDHC2, |
| 266 | .end = MXC_INT_MMC_SDHC2, |
| 267 | .flags = IORESOURCE_IRQ, |
| 268 | }, |
| 269 | }; |
| 270 | |
| 271 | struct platform_device mxcsdhc_device0 = { |
| 272 | .name = "mxc-mmc", |
| 273 | .id = 0, |
| 274 | .num_resources = ARRAY_SIZE(mxcsdhc0_resources), |
| 275 | .resource = mxcsdhc0_resources, |
| 276 | }; |
| 277 | |
| 278 | struct platform_device mxcsdhc_device1 = { |
| 279 | .name = "mxc-mmc", |
| 280 | .id = 1, |
| 281 | .num_resources = ARRAY_SIZE(mxcsdhc1_resources), |
| 282 | .resource = mxcsdhc1_resources, |
| 283 | }; |
Alan Carvalho de Assis | 45001e9 | 2009-04-02 12:38:41 -0300 | [diff] [blame] | 284 | |
| 285 | static struct resource rnga_resources[] = { |
| 286 | { |
| 287 | .start = RNGA_BASE_ADDR, |
| 288 | .end = RNGA_BASE_ADDR + 0x28, |
| 289 | .flags = IORESOURCE_MEM, |
| 290 | }, |
| 291 | }; |
| 292 | |
| 293 | struct platform_device mxc_rnga_device = { |
| 294 | .name = "mxc_rnga", |
| 295 | .id = -1, |
| 296 | .num_resources = 1, |
| 297 | .resource = rnga_resources, |
| 298 | }; |
Sascha Hauer | 2adc1d6 | 2008-12-19 14:32:06 +0100 | [diff] [blame] | 299 | #endif /* CONFIG_ARCH_MX31 */ |
| 300 | |
Valentin Longchamp | ca489f8 | 2009-02-16 12:47:52 +0100 | [diff] [blame] | 301 | /* i.MX31 Image Processing Unit */ |
| 302 | |
| 303 | /* The resource order is important! */ |
| 304 | static struct resource mx3_ipu_rsrc[] = { |
| 305 | { |
| 306 | .start = IPU_CTRL_BASE_ADDR, |
| 307 | .end = IPU_CTRL_BASE_ADDR + 0x5F, |
| 308 | .flags = IORESOURCE_MEM, |
| 309 | }, { |
| 310 | .start = IPU_CTRL_BASE_ADDR + 0x88, |
| 311 | .end = IPU_CTRL_BASE_ADDR + 0xB3, |
| 312 | .flags = IORESOURCE_MEM, |
| 313 | }, { |
| 314 | .start = MXC_INT_IPU_SYN, |
| 315 | .end = MXC_INT_IPU_SYN, |
| 316 | .flags = IORESOURCE_IRQ, |
| 317 | }, { |
| 318 | .start = MXC_INT_IPU_ERR, |
| 319 | .end = MXC_INT_IPU_ERR, |
| 320 | .flags = IORESOURCE_IRQ, |
| 321 | }, |
| 322 | }; |
| 323 | |
| 324 | struct platform_device mx3_ipu = { |
| 325 | .name = "ipu-core", |
| 326 | .id = -1, |
| 327 | .num_resources = ARRAY_SIZE(mx3_ipu_rsrc), |
| 328 | .resource = mx3_ipu_rsrc, |
| 329 | }; |
| 330 | |
| 331 | static struct resource fb_resources[] = { |
| 332 | { |
| 333 | .start = IPU_CTRL_BASE_ADDR + 0xB4, |
| 334 | .end = IPU_CTRL_BASE_ADDR + 0x1BF, |
| 335 | .flags = IORESOURCE_MEM, |
| 336 | }, |
| 337 | }; |
| 338 | |
| 339 | struct platform_device mx3_fb = { |
| 340 | .name = "mx3_sdc_fb", |
| 341 | .id = -1, |
| 342 | .num_resources = ARRAY_SIZE(fb_resources), |
| 343 | .resource = fb_resources, |
| 344 | .dev = { |
Valentin Longchamp | 9c70e22 | 2009-05-07 11:51:42 +0200 | [diff] [blame] | 345 | .coherent_dma_mask = DMA_BIT_MASK(32), |
Valentin Longchamp | ca489f8 | 2009-02-16 12:47:52 +0100 | [diff] [blame] | 346 | }, |
| 347 | }; |
Sascha Hauer | 9536ff3 | 2009-02-06 15:38:51 +0100 | [diff] [blame] | 348 | |
Valentin Longchamp | 9c70e22 | 2009-05-07 11:51:42 +0200 | [diff] [blame] | 349 | static struct resource camera_resources[] = { |
| 350 | { |
| 351 | .start = IPU_CTRL_BASE_ADDR + 0x60, |
| 352 | .end = IPU_CTRL_BASE_ADDR + 0x87, |
| 353 | .flags = IORESOURCE_MEM, |
| 354 | }, |
| 355 | }; |
| 356 | |
| 357 | struct platform_device mx3_camera = { |
| 358 | .name = "mx3-camera", |
| 359 | .id = 0, |
| 360 | .num_resources = ARRAY_SIZE(camera_resources), |
| 361 | .resource = camera_resources, |
| 362 | .dev = { |
| 363 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 364 | }, |
| 365 | }; |
| 366 | |
Guennadi Liakhovetski | eb05bbe | 2009-05-04 13:13:52 +0200 | [diff] [blame] | 367 | static struct resource otg_resources[] = { |
| 368 | { |
Sascha Hauer | 7bc07eb | 2009-04-17 16:52:25 +0200 | [diff] [blame] | 369 | .start = MX31_OTG_BASE_ADDR, |
| 370 | .end = MX31_OTG_BASE_ADDR + 0x1ff, |
Guennadi Liakhovetski | eb05bbe | 2009-05-04 13:13:52 +0200 | [diff] [blame] | 371 | .flags = IORESOURCE_MEM, |
| 372 | }, { |
| 373 | .start = MXC_INT_USB3, |
| 374 | .end = MXC_INT_USB3, |
| 375 | .flags = IORESOURCE_IRQ, |
| 376 | }, |
| 377 | }; |
| 378 | |
| 379 | static u64 otg_dmamask = DMA_BIT_MASK(32); |
| 380 | |
| 381 | /* OTG gadget device */ |
| 382 | struct platform_device mxc_otg_udc_device = { |
| 383 | .name = "fsl-usb2-udc", |
| 384 | .id = -1, |
| 385 | .dev = { |
| 386 | .dma_mask = &otg_dmamask, |
| 387 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 388 | }, |
| 389 | .resource = otg_resources, |
| 390 | .num_resources = ARRAY_SIZE(otg_resources), |
| 391 | }; |
| 392 | |
Daniel Mack | c13a482 | 2009-06-25 14:11:50 +0200 | [diff] [blame] | 393 | /* OTG host */ |
| 394 | struct platform_device mxc_otg_host = { |
| 395 | .name = "mxc-ehci", |
| 396 | .id = 0, |
| 397 | .dev = { |
| 398 | .coherent_dma_mask = 0xffffffff, |
| 399 | .dma_mask = &otg_dmamask, |
| 400 | }, |
| 401 | .resource = otg_resources, |
| 402 | .num_resources = ARRAY_SIZE(otg_resources), |
| 403 | }; |
| 404 | |
| 405 | /* USB host 1 */ |
| 406 | |
| 407 | static u64 usbh1_dmamask = ~(u32)0; |
| 408 | |
| 409 | static struct resource mxc_usbh1_resources[] = { |
| 410 | { |
Sascha Hauer | 7bc07eb | 2009-04-17 16:52:25 +0200 | [diff] [blame] | 411 | .start = MX31_OTG_BASE_ADDR + 0x200, |
| 412 | .end = MX31_OTG_BASE_ADDR + 0x3ff, |
Daniel Mack | c13a482 | 2009-06-25 14:11:50 +0200 | [diff] [blame] | 413 | .flags = IORESOURCE_MEM, |
| 414 | }, { |
| 415 | .start = MXC_INT_USB1, |
| 416 | .end = MXC_INT_USB1, |
| 417 | .flags = IORESOURCE_IRQ, |
| 418 | }, |
| 419 | }; |
| 420 | |
| 421 | struct platform_device mxc_usbh1 = { |
| 422 | .name = "mxc-ehci", |
| 423 | .id = 1, |
| 424 | .dev = { |
| 425 | .coherent_dma_mask = 0xffffffff, |
| 426 | .dma_mask = &usbh1_dmamask, |
| 427 | }, |
| 428 | .resource = mxc_usbh1_resources, |
| 429 | .num_resources = ARRAY_SIZE(mxc_usbh1_resources), |
| 430 | }; |
| 431 | |
| 432 | /* USB host 2 */ |
| 433 | static u64 usbh2_dmamask = ~(u32)0; |
| 434 | |
| 435 | static struct resource mxc_usbh2_resources[] = { |
| 436 | { |
Sascha Hauer | 7bc07eb | 2009-04-17 16:52:25 +0200 | [diff] [blame] | 437 | .start = MX31_OTG_BASE_ADDR + 0x400, |
| 438 | .end = MX31_OTG_BASE_ADDR + 0x5ff, |
Daniel Mack | c13a482 | 2009-06-25 14:11:50 +0200 | [diff] [blame] | 439 | .flags = IORESOURCE_MEM, |
| 440 | }, { |
| 441 | .start = MXC_INT_USB2, |
| 442 | .end = MXC_INT_USB2, |
| 443 | .flags = IORESOURCE_IRQ, |
| 444 | }, |
| 445 | }; |
| 446 | |
| 447 | struct platform_device mxc_usbh2 = { |
| 448 | .name = "mxc-ehci", |
| 449 | .id = 2, |
| 450 | .dev = { |
| 451 | .coherent_dma_mask = 0xffffffff, |
| 452 | .dma_mask = &usbh2_dmamask, |
| 453 | }, |
| 454 | .resource = mxc_usbh2_resources, |
| 455 | .num_resources = ARRAY_SIZE(mxc_usbh2_resources), |
| 456 | }; |
| 457 | |
Sascha Hauer | d37ba97 | 2008-12-19 14:32:15 +0100 | [diff] [blame] | 458 | /* |
| 459 | * SPI master controller |
| 460 | * 3 channels |
| 461 | */ |
Guennadi Liakhovetski | d9e8b88 | 2009-10-05 16:49:12 +0200 | [diff] [blame] | 462 | static struct resource mxc_spi_0_resources[] = { |
Sascha Hauer | d37ba97 | 2008-12-19 14:32:15 +0100 | [diff] [blame] | 463 | { |
| 464 | .start = CSPI1_BASE_ADDR, |
| 465 | .end = CSPI1_BASE_ADDR + SZ_4K - 1, |
| 466 | .flags = IORESOURCE_MEM, |
| 467 | }, { |
| 468 | .start = MXC_INT_CSPI1, |
| 469 | .end = MXC_INT_CSPI1, |
| 470 | .flags = IORESOURCE_IRQ, |
| 471 | }, |
| 472 | }; |
| 473 | |
Guennadi Liakhovetski | d9e8b88 | 2009-10-05 16:49:12 +0200 | [diff] [blame] | 474 | static struct resource mxc_spi_1_resources[] = { |
Sascha Hauer | d37ba97 | 2008-12-19 14:32:15 +0100 | [diff] [blame] | 475 | { |
| 476 | .start = CSPI2_BASE_ADDR, |
| 477 | .end = CSPI2_BASE_ADDR + SZ_4K - 1, |
| 478 | .flags = IORESOURCE_MEM, |
| 479 | }, { |
| 480 | .start = MXC_INT_CSPI2, |
| 481 | .end = MXC_INT_CSPI2, |
| 482 | .flags = IORESOURCE_IRQ, |
| 483 | }, |
| 484 | }; |
| 485 | |
Guennadi Liakhovetski | d9e8b88 | 2009-10-05 16:49:12 +0200 | [diff] [blame] | 486 | static struct resource mxc_spi_2_resources[] = { |
Sascha Hauer | d37ba97 | 2008-12-19 14:32:15 +0100 | [diff] [blame] | 487 | { |
| 488 | .start = CSPI3_BASE_ADDR, |
| 489 | .end = CSPI3_BASE_ADDR + SZ_4K - 1, |
| 490 | .flags = IORESOURCE_MEM, |
| 491 | }, { |
| 492 | .start = MXC_INT_CSPI3, |
| 493 | .end = MXC_INT_CSPI3, |
| 494 | .flags = IORESOURCE_IRQ, |
| 495 | }, |
| 496 | }; |
| 497 | |
Guennadi Liakhovetski | d9e8b88 | 2009-10-05 16:49:12 +0200 | [diff] [blame] | 498 | struct platform_device mxc_spi_device0 = { |
Sascha Hauer | d37ba97 | 2008-12-19 14:32:15 +0100 | [diff] [blame] | 499 | .name = "spi_imx", |
| 500 | .id = 0, |
Guennadi Liakhovetski | d9e8b88 | 2009-10-05 16:49:12 +0200 | [diff] [blame] | 501 | .num_resources = ARRAY_SIZE(mxc_spi_0_resources), |
| 502 | .resource = mxc_spi_0_resources, |
Sascha Hauer | d37ba97 | 2008-12-19 14:32:15 +0100 | [diff] [blame] | 503 | }; |
| 504 | |
Guennadi Liakhovetski | d9e8b88 | 2009-10-05 16:49:12 +0200 | [diff] [blame] | 505 | struct platform_device mxc_spi_device1 = { |
Sascha Hauer | d37ba97 | 2008-12-19 14:32:15 +0100 | [diff] [blame] | 506 | .name = "spi_imx", |
| 507 | .id = 1, |
Guennadi Liakhovetski | d9e8b88 | 2009-10-05 16:49:12 +0200 | [diff] [blame] | 508 | .num_resources = ARRAY_SIZE(mxc_spi_1_resources), |
| 509 | .resource = mxc_spi_1_resources, |
Sascha Hauer | d37ba97 | 2008-12-19 14:32:15 +0100 | [diff] [blame] | 510 | }; |
| 511 | |
Guennadi Liakhovetski | d9e8b88 | 2009-10-05 16:49:12 +0200 | [diff] [blame] | 512 | struct platform_device mxc_spi_device2 = { |
Sascha Hauer | d37ba97 | 2008-12-19 14:32:15 +0100 | [diff] [blame] | 513 | .name = "spi_imx", |
| 514 | .id = 2, |
Guennadi Liakhovetski | d9e8b88 | 2009-10-05 16:49:12 +0200 | [diff] [blame] | 515 | .num_resources = ARRAY_SIZE(mxc_spi_2_resources), |
| 516 | .resource = mxc_spi_2_resources, |
Sascha Hauer | d37ba97 | 2008-12-19 14:32:15 +0100 | [diff] [blame] | 517 | }; |
| 518 | |
Sascha Hauer | 9536ff3 | 2009-02-06 15:38:51 +0100 | [diff] [blame] | 519 | #ifdef CONFIG_ARCH_MX35 |
| 520 | static struct resource mxc_fec_resources[] = { |
| 521 | { |
| 522 | .start = MXC_FEC_BASE_ADDR, |
| 523 | .end = MXC_FEC_BASE_ADDR + 0xfff, |
Sascha Hauer | 3f4f54b | 2009-06-23 12:12:00 +0200 | [diff] [blame] | 524 | .flags = IORESOURCE_MEM, |
Sascha Hauer | 9536ff3 | 2009-02-06 15:38:51 +0100 | [diff] [blame] | 525 | }, { |
| 526 | .start = MXC_INT_FEC, |
| 527 | .end = MXC_INT_FEC, |
Sascha Hauer | 3f4f54b | 2009-06-23 12:12:00 +0200 | [diff] [blame] | 528 | .flags = IORESOURCE_IRQ, |
Sascha Hauer | 9536ff3 | 2009-02-06 15:38:51 +0100 | [diff] [blame] | 529 | }, |
| 530 | }; |
| 531 | |
| 532 | struct platform_device mxc_fec_device = { |
| 533 | .name = "fec", |
| 534 | .id = 0, |
| 535 | .num_resources = ARRAY_SIZE(mxc_fec_resources), |
| 536 | .resource = mxc_fec_resources, |
| 537 | }; |
| 538 | #endif |
| 539 | |
Sascha Hauer | d8d982b | 2009-10-29 17:17:42 +0100 | [diff] [blame] | 540 | static struct resource imx_ssi_resources0[] = { |
| 541 | { |
| 542 | .start = SSI1_BASE_ADDR, |
| 543 | .end = SSI1_BASE_ADDR + 0xfff, |
| 544 | .flags = IORESOURCE_MEM, |
| 545 | }, { |
| 546 | .start = MX31_INT_SSI1, |
| 547 | .end = MX31_INT_SSI1, |
| 548 | .flags = IORESOURCE_IRQ, |
| 549 | }, |
| 550 | }; |
| 551 | |
| 552 | static struct resource imx_ssi_resources1[] = { |
| 553 | { |
| 554 | .start = SSI2_BASE_ADDR, |
| 555 | .end = SSI2_BASE_ADDR + 0xfff, |
| 556 | .flags = IORESOURCE_MEM |
| 557 | }, { |
| 558 | .start = MX31_INT_SSI2, |
| 559 | .end = MX31_INT_SSI2, |
| 560 | .flags = IORESOURCE_IRQ, |
| 561 | }, |
| 562 | }; |
| 563 | |
| 564 | struct platform_device imx_ssi_device0 = { |
| 565 | .name = "imx-ssi", |
| 566 | .id = 0, |
| 567 | .num_resources = ARRAY_SIZE(imx_ssi_resources0), |
| 568 | .resource = imx_ssi_resources0, |
| 569 | }; |
| 570 | |
| 571 | struct platform_device imx_ssi_device1 = { |
| 572 | .name = "imx-ssi", |
| 573 | .id = 1, |
| 574 | .num_resources = ARRAY_SIZE(imx_ssi_resources1), |
| 575 | .resource = imx_ssi_resources1, |
| 576 | }; |
| 577 | |
Vladimir Zapolskiy | a7dc12b | 2010-03-19 18:16:37 +0300 | [diff] [blame] | 578 | static struct resource imx_wdt_resources[] = { |
| 579 | { |
| 580 | .flags = IORESOURCE_MEM, |
| 581 | }, |
| 582 | }; |
| 583 | |
| 584 | struct platform_device imx_wdt_device0 = { |
Wolfram Sang | 6d38c1cf | 2010-04-29 10:03:18 +0200 | [diff] [blame^] | 585 | .name = "imx2-wdt", |
Vladimir Zapolskiy | a7dc12b | 2010-03-19 18:16:37 +0300 | [diff] [blame] | 586 | .id = 0, |
| 587 | .num_resources = ARRAY_SIZE(imx_wdt_resources), |
| 588 | .resource = imx_wdt_resources, |
| 589 | }; |
| 590 | |
Vladimir Zapolskiy | ded518c | 2010-03-24 14:32:17 +0300 | [diff] [blame] | 591 | static struct resource imx_rtc_resources[] = { |
| 592 | { |
| 593 | .start = MX31_RTC_BASE_ADDR, |
| 594 | .end = MX31_RTC_BASE_ADDR + 0x3fff, |
| 595 | .flags = IORESOURCE_MEM, |
| 596 | }, |
| 597 | { |
| 598 | .start = MX31_INT_RTC, |
| 599 | .flags = IORESOURCE_IRQ, |
| 600 | }, |
| 601 | }; |
| 602 | |
| 603 | struct platform_device imx_rtc_device0 = { |
| 604 | .name = "mxc_rtc", |
| 605 | .id = -1, |
| 606 | .num_resources = ARRAY_SIZE(imx_rtc_resources), |
| 607 | .resource = imx_rtc_resources, |
| 608 | }; |
| 609 | |
Vladimir Zapolskiy | a7dc12b | 2010-03-19 18:16:37 +0300 | [diff] [blame] | 610 | static int __init mx3_devices_init(void) |
Sascha Hauer | 9536ff3 | 2009-02-06 15:38:51 +0100 | [diff] [blame] | 611 | { |
| 612 | if (cpu_is_mx31()) { |
| 613 | mxc_nand_resources[0].start = MX31_NFC_BASE_ADDR; |
| 614 | mxc_nand_resources[0].end = MX31_NFC_BASE_ADDR + 0xfff; |
Vladimir Zapolskiy | a7dc12b | 2010-03-19 18:16:37 +0300 | [diff] [blame] | 615 | imx_wdt_resources[0].start = MX31_WDOG_BASE_ADDR; |
| 616 | imx_wdt_resources[0].end = MX31_WDOG_BASE_ADDR + 0x3fff; |
Alan Carvalho de Assis | 45001e9 | 2009-04-02 12:38:41 -0300 | [diff] [blame] | 617 | mxc_register_device(&mxc_rnga_device, NULL); |
Sascha Hauer | 9536ff3 | 2009-02-06 15:38:51 +0100 | [diff] [blame] | 618 | } |
| 619 | if (cpu_is_mx35()) { |
| 620 | mxc_nand_resources[0].start = MX35_NFC_BASE_ADDR; |
Juergen Beisert | fcebfc8 | 2009-10-02 11:25:45 +0200 | [diff] [blame] | 621 | mxc_nand_resources[0].end = MX35_NFC_BASE_ADDR + 0x1fff; |
Sascha Hauer | 7bc07eb | 2009-04-17 16:52:25 +0200 | [diff] [blame] | 622 | otg_resources[0].start = MX35_OTG_BASE_ADDR; |
| 623 | otg_resources[0].end = MX35_OTG_BASE_ADDR + 0x1ff; |
| 624 | otg_resources[1].start = MXC_INT_USBOTG; |
| 625 | otg_resources[1].end = MXC_INT_USBOTG; |
| 626 | mxc_usbh1_resources[0].start = MX35_OTG_BASE_ADDR + 0x400; |
| 627 | mxc_usbh1_resources[0].end = MX35_OTG_BASE_ADDR + 0x5ff; |
| 628 | mxc_usbh1_resources[1].start = MXC_INT_USBHS; |
| 629 | mxc_usbh1_resources[1].end = MXC_INT_USBHS; |
Sascha Hauer | d8d982b | 2009-10-29 17:17:42 +0100 | [diff] [blame] | 630 | imx_ssi_resources0[1].start = MX35_INT_SSI1; |
| 631 | imx_ssi_resources0[1].end = MX35_INT_SSI1; |
| 632 | imx_ssi_resources1[1].start = MX35_INT_SSI2; |
| 633 | imx_ssi_resources1[1].end = MX35_INT_SSI2; |
Vladimir Zapolskiy | a7dc12b | 2010-03-19 18:16:37 +0300 | [diff] [blame] | 634 | imx_wdt_resources[0].start = MX35_WDOG_BASE_ADDR; |
| 635 | imx_wdt_resources[0].end = MX35_WDOG_BASE_ADDR + 0x3fff; |
Sascha Hauer | 9536ff3 | 2009-02-06 15:38:51 +0100 | [diff] [blame] | 636 | } |
| 637 | |
| 638 | return 0; |
| 639 | } |
| 640 | |
| 641 | subsys_initcall(mx3_devices_init); |