Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-omap1/devices.c |
| 3 | * |
| 4 | * OMAP1 platform device setup/initialization |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | */ |
| 11 | |
Janusz Krzysztofik | 1a96edd | 2010-10-01 16:37:00 -0700 | [diff] [blame] | 12 | #include <linux/dma-mapping.h> |
Russell King | 2f8163b | 2011-07-26 10:53:52 +0100 | [diff] [blame] | 13 | #include <linux/gpio.h> |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 14 | #include <linux/module.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/init.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 17 | #include <linux/platform_device.h> |
Cory Maccarrone | c5c4dce | 2010-01-08 10:29:05 -0800 | [diff] [blame] | 18 | #include <linux/spi/spi.h> |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 19 | |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 20 | #include <asm/mach/map.h> |
| 21 | |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 22 | #include <plat/tc.h> |
| 23 | #include <plat/board.h> |
| 24 | #include <plat/mux.h> |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 25 | #include <plat/mmc.h> |
Cory Maccarrone | c5c4dce | 2010-01-08 10:29:05 -0800 | [diff] [blame] | 26 | #include <plat/omap7xx.h> |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 27 | |
Tony Lindgren | 2e3ee9f | 2012-02-24 10:34:34 -0800 | [diff] [blame] | 28 | #include <mach/camera.h> |
| 29 | #include <mach/hardware.h> |
| 30 | |
| 31 | #include "common.h" |
Tony Lindgren | e9b7086 | 2011-11-11 10:15:11 -0800 | [diff] [blame] | 32 | #include "clock.h" |
| 33 | |
Tony Lindgren | fcc76a8 | 2012-05-09 09:59:25 -0700 | [diff] [blame] | 34 | #if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE) |
| 35 | |
| 36 | static struct platform_device omap_pcm = { |
| 37 | .name = "omap-pcm-audio", |
| 38 | .id = -1, |
| 39 | }; |
| 40 | |
| 41 | static void omap_init_audio(void) |
| 42 | { |
| 43 | platform_device_register(&omap_pcm); |
| 44 | } |
| 45 | |
| 46 | #else |
| 47 | static inline void omap_init_audio(void) {} |
| 48 | #endif |
| 49 | |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 50 | /*-------------------------------------------------------------------------*/ |
| 51 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 52 | #if defined(CONFIG_RTC_DRV_OMAP) || defined(CONFIG_RTC_DRV_OMAP_MODULE) |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 53 | |
| 54 | #define OMAP_RTC_BASE 0xfffb4800 |
| 55 | |
| 56 | static struct resource rtc_resources[] = { |
| 57 | { |
| 58 | .start = OMAP_RTC_BASE, |
| 59 | .end = OMAP_RTC_BASE + 0x5f, |
| 60 | .flags = IORESOURCE_MEM, |
| 61 | }, |
| 62 | { |
| 63 | .start = INT_RTC_TIMER, |
| 64 | .flags = IORESOURCE_IRQ, |
| 65 | }, |
| 66 | { |
| 67 | .start = INT_RTC_ALARM, |
| 68 | .flags = IORESOURCE_IRQ, |
| 69 | }, |
| 70 | }; |
| 71 | |
| 72 | static struct platform_device omap_rtc_device = { |
| 73 | .name = "omap_rtc", |
| 74 | .id = -1, |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 75 | .num_resources = ARRAY_SIZE(rtc_resources), |
| 76 | .resource = rtc_resources, |
| 77 | }; |
| 78 | |
| 79 | static void omap_init_rtc(void) |
| 80 | { |
| 81 | (void) platform_device_register(&omap_rtc_device); |
| 82 | } |
| 83 | #else |
| 84 | static inline void omap_init_rtc(void) {} |
| 85 | #endif |
| 86 | |
Tony Lindgren | c40fae95 | 2006-12-07 13:58:10 -0800 | [diff] [blame] | 87 | static inline void omap_init_mbox(void) { } |
Tony Lindgren | c40fae95 | 2006-12-07 13:58:10 -0800 | [diff] [blame] | 88 | |
Tony Lindgren | d887466 | 2008-12-10 17:37:16 -0800 | [diff] [blame] | 89 | /*-------------------------------------------------------------------------*/ |
| 90 | |
| 91 | #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) |
| 92 | |
| 93 | static inline void omap1_mmc_mux(struct omap_mmc_platform_data *mmc_controller, |
| 94 | int controller_nr) |
| 95 | { |
| 96 | if (controller_nr == 0) { |
Cory Maccarrone | 490a566 | 2009-11-22 10:10:50 -0800 | [diff] [blame] | 97 | if (cpu_is_omap7xx()) { |
| 98 | omap_cfg_reg(MMC_7XX_CMD); |
| 99 | omap_cfg_reg(MMC_7XX_CLK); |
| 100 | omap_cfg_reg(MMC_7XX_DAT0); |
| 101 | } else { |
| 102 | omap_cfg_reg(MMC_CMD); |
| 103 | omap_cfg_reg(MMC_CLK); |
| 104 | omap_cfg_reg(MMC_DAT0); |
| 105 | } |
| 106 | |
Tony Lindgren | d887466 | 2008-12-10 17:37:16 -0800 | [diff] [blame] | 107 | if (cpu_is_omap1710()) { |
| 108 | omap_cfg_reg(M15_1710_MMC_CLKI); |
| 109 | omap_cfg_reg(P19_1710_MMC_CMDDIR); |
| 110 | omap_cfg_reg(P20_1710_MMC_DATDIR0); |
| 111 | } |
Cory Maccarrone | 490a566 | 2009-11-22 10:10:50 -0800 | [diff] [blame] | 112 | if (mmc_controller->slots[0].wires == 4 && !cpu_is_omap7xx()) { |
Tony Lindgren | d887466 | 2008-12-10 17:37:16 -0800 | [diff] [blame] | 113 | omap_cfg_reg(MMC_DAT1); |
| 114 | /* NOTE: DAT2 can be on W10 (here) or M15 */ |
| 115 | if (!mmc_controller->slots[0].nomux) |
| 116 | omap_cfg_reg(MMC_DAT2); |
| 117 | omap_cfg_reg(MMC_DAT3); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | /* Block 2 is on newer chips, and has many pinout options */ |
| 122 | if (cpu_is_omap16xx() && controller_nr == 1) { |
| 123 | if (!mmc_controller->slots[1].nomux) { |
| 124 | omap_cfg_reg(Y8_1610_MMC2_CMD); |
| 125 | omap_cfg_reg(Y10_1610_MMC2_CLK); |
| 126 | omap_cfg_reg(R18_1610_MMC2_CLKIN); |
| 127 | omap_cfg_reg(W8_1610_MMC2_DAT0); |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 128 | if (mmc_controller->slots[1].wires == 4) { |
Tony Lindgren | d887466 | 2008-12-10 17:37:16 -0800 | [diff] [blame] | 129 | omap_cfg_reg(V8_1610_MMC2_DAT1); |
| 130 | omap_cfg_reg(W15_1610_MMC2_DAT2); |
| 131 | omap_cfg_reg(R10_1610_MMC2_DAT3); |
| 132 | } |
| 133 | |
| 134 | /* These are needed for the level shifter */ |
| 135 | omap_cfg_reg(V9_1610_MMC2_CMDDIR); |
| 136 | omap_cfg_reg(V5_1610_MMC2_DATDIR0); |
| 137 | omap_cfg_reg(W19_1610_MMC2_DATDIR1); |
| 138 | } |
| 139 | |
| 140 | /* Feedback clock must be set on OMAP-1710 MMC2 */ |
| 141 | if (cpu_is_omap1710()) |
| 142 | omap_writel(omap_readl(MOD_CONF_CTRL_1) | (1 << 24), |
| 143 | MOD_CONF_CTRL_1); |
| 144 | } |
| 145 | } |
| 146 | |
Tony Lindgren | 5ff391d | 2012-04-23 15:56:36 -0700 | [diff] [blame^] | 147 | #define OMAP_MMC_NR_RES 2 |
| 148 | |
| 149 | /* |
| 150 | * Register MMC devices. |
| 151 | */ |
| 152 | static int __init omap_mmc_add(const char *name, int id, unsigned long base, |
| 153 | unsigned long size, unsigned int irq, |
| 154 | struct omap_mmc_platform_data *data) |
| 155 | { |
| 156 | struct platform_device *pdev; |
| 157 | struct resource res[OMAP_MMC_NR_RES]; |
| 158 | int ret; |
| 159 | |
| 160 | pdev = platform_device_alloc(name, id); |
| 161 | if (!pdev) |
| 162 | return -ENOMEM; |
| 163 | |
| 164 | memset(res, 0, OMAP_MMC_NR_RES * sizeof(struct resource)); |
| 165 | res[0].start = base; |
| 166 | res[0].end = base + size - 1; |
| 167 | res[0].flags = IORESOURCE_MEM; |
| 168 | res[1].start = res[1].end = irq; |
| 169 | res[1].flags = IORESOURCE_IRQ; |
| 170 | |
| 171 | ret = platform_device_add_resources(pdev, res, ARRAY_SIZE(res)); |
| 172 | if (ret == 0) |
| 173 | ret = platform_device_add_data(pdev, data, sizeof(*data)); |
| 174 | if (ret) |
| 175 | goto fail; |
| 176 | |
| 177 | ret = platform_device_add(pdev); |
| 178 | if (ret) |
| 179 | goto fail; |
| 180 | |
| 181 | /* return device handle to board setup code */ |
| 182 | data->dev = &pdev->dev; |
| 183 | return 0; |
| 184 | |
| 185 | fail: |
| 186 | platform_device_put(pdev); |
| 187 | return ret; |
| 188 | } |
| 189 | |
Tony Lindgren | d887466 | 2008-12-10 17:37:16 -0800 | [diff] [blame] | 190 | void __init omap1_init_mmc(struct omap_mmc_platform_data **mmc_data, |
| 191 | int nr_controllers) |
| 192 | { |
| 193 | int i; |
| 194 | |
| 195 | for (i = 0; i < nr_controllers; i++) { |
| 196 | unsigned long base, size; |
| 197 | unsigned int irq = 0; |
| 198 | |
| 199 | if (!mmc_data[i]) |
| 200 | continue; |
| 201 | |
| 202 | omap1_mmc_mux(mmc_data[i], i); |
| 203 | |
| 204 | switch (i) { |
| 205 | case 0: |
| 206 | base = OMAP1_MMC1_BASE; |
| 207 | irq = INT_MMC; |
| 208 | break; |
| 209 | case 1: |
| 210 | if (!cpu_is_omap16xx()) |
| 211 | return; |
| 212 | base = OMAP1_MMC2_BASE; |
| 213 | irq = INT_1610_MMC2; |
| 214 | break; |
| 215 | default: |
| 216 | continue; |
| 217 | } |
| 218 | size = OMAP1_MMC_SIZE; |
| 219 | |
Tony Lindgren | 0dffb5c | 2009-01-29 08:57:16 -0800 | [diff] [blame] | 220 | omap_mmc_add("mmci-omap", i, base, size, irq, mmc_data[i]); |
Tony Lindgren | d887466 | 2008-12-10 17:37:16 -0800 | [diff] [blame] | 221 | }; |
| 222 | } |
| 223 | |
| 224 | #endif |
| 225 | |
| 226 | /*-------------------------------------------------------------------------*/ |
| 227 | |
Cory Maccarrone | c5c4dce | 2010-01-08 10:29:05 -0800 | [diff] [blame] | 228 | /* OMAP7xx SPI support */ |
| 229 | #if defined(CONFIG_SPI_OMAP_100K) || defined(CONFIG_SPI_OMAP_100K_MODULE) |
| 230 | |
| 231 | struct platform_device omap_spi1 = { |
| 232 | .name = "omap1_spi100k", |
| 233 | .id = 1, |
| 234 | }; |
| 235 | |
| 236 | struct platform_device omap_spi2 = { |
| 237 | .name = "omap1_spi100k", |
| 238 | .id = 2, |
| 239 | }; |
| 240 | |
| 241 | static void omap_init_spi100k(void) |
| 242 | { |
| 243 | omap_spi1.dev.platform_data = ioremap(OMAP7XX_SPI1_BASE, 0x7ff); |
| 244 | if (omap_spi1.dev.platform_data) |
| 245 | platform_device_register(&omap_spi1); |
| 246 | |
| 247 | omap_spi2.dev.platform_data = ioremap(OMAP7XX_SPI2_BASE, 0x7ff); |
| 248 | if (omap_spi2.dev.platform_data) |
| 249 | platform_device_register(&omap_spi2); |
| 250 | } |
| 251 | |
| 252 | #else |
| 253 | static inline void omap_init_spi100k(void) |
| 254 | { |
| 255 | } |
| 256 | #endif |
| 257 | |
Janusz Krzysztofik | 1a96edd | 2010-10-01 16:37:00 -0700 | [diff] [blame] | 258 | |
| 259 | #define OMAP1_CAMERA_BASE 0xfffb6800 |
| 260 | #define OMAP1_CAMERA_IOSIZE 0x1c |
| 261 | |
| 262 | static struct resource omap1_camera_resources[] = { |
| 263 | [0] = { |
| 264 | .start = OMAP1_CAMERA_BASE, |
| 265 | .end = OMAP1_CAMERA_BASE + OMAP1_CAMERA_IOSIZE - 1, |
| 266 | .flags = IORESOURCE_MEM, |
| 267 | }, |
| 268 | [1] = { |
| 269 | .start = INT_CAMERA, |
| 270 | .flags = IORESOURCE_IRQ, |
| 271 | }, |
| 272 | }; |
| 273 | |
| 274 | static u64 omap1_camera_dma_mask = DMA_BIT_MASK(32); |
| 275 | |
| 276 | static struct platform_device omap1_camera_device = { |
| 277 | .name = "omap1-camera", |
| 278 | .id = 0, /* This is used to put cameras on this interface */ |
| 279 | .dev = { |
| 280 | .dma_mask = &omap1_camera_dma_mask, |
| 281 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 282 | }, |
| 283 | .num_resources = ARRAY_SIZE(omap1_camera_resources), |
| 284 | .resource = omap1_camera_resources, |
| 285 | }; |
| 286 | |
| 287 | void __init omap1_camera_init(void *info) |
| 288 | { |
| 289 | struct platform_device *dev = &omap1_camera_device; |
| 290 | int ret; |
| 291 | |
| 292 | dev->dev.platform_data = info; |
| 293 | |
| 294 | ret = platform_device_register(dev); |
| 295 | if (ret) |
| 296 | dev_err(&dev->dev, "unable to register device: %d\n", ret); |
| 297 | } |
| 298 | |
| 299 | |
Cory Maccarrone | c5c4dce | 2010-01-08 10:29:05 -0800 | [diff] [blame] | 300 | /*-------------------------------------------------------------------------*/ |
| 301 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 302 | static inline void omap_init_sti(void) {} |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 303 | |
Tony Lindgren | 49b1a61 | 2012-05-09 09:59:25 -0700 | [diff] [blame] | 304 | /* Numbering for the SPI-capable controllers when used for SPI: |
| 305 | * spi = 1 |
| 306 | * uwire = 2 |
| 307 | * mmc1..2 = 3..4 |
| 308 | * mcbsp1..3 = 5..7 |
| 309 | */ |
| 310 | |
| 311 | #if defined(CONFIG_SPI_OMAP_UWIRE) || defined(CONFIG_SPI_OMAP_UWIRE_MODULE) |
| 312 | |
| 313 | #define OMAP_UWIRE_BASE 0xfffb3000 |
| 314 | |
| 315 | static struct resource uwire_resources[] = { |
| 316 | { |
| 317 | .start = OMAP_UWIRE_BASE, |
| 318 | .end = OMAP_UWIRE_BASE + 0x20, |
| 319 | .flags = IORESOURCE_MEM, |
| 320 | }, |
| 321 | }; |
| 322 | |
| 323 | static struct platform_device omap_uwire_device = { |
| 324 | .name = "omap_uwire", |
| 325 | .id = -1, |
| 326 | .num_resources = ARRAY_SIZE(uwire_resources), |
| 327 | .resource = uwire_resources, |
| 328 | }; |
| 329 | |
| 330 | static void omap_init_uwire(void) |
| 331 | { |
| 332 | /* FIXME define and use a boot tag; not all boards will be hooking |
| 333 | * up devices to the microwire controller, and multi-board configs |
| 334 | * mean that CONFIG_SPI_OMAP_UWIRE may be configured anyway... |
| 335 | */ |
| 336 | |
| 337 | /* board-specific code must configure chipselects (only a few |
| 338 | * are normally used) and SCLK/SDI/SDO (each has two choices). |
| 339 | */ |
| 340 | (void) platform_device_register(&omap_uwire_device); |
| 341 | } |
| 342 | #else |
| 343 | static inline void omap_init_uwire(void) {} |
| 344 | #endif |
| 345 | |
| 346 | |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 347 | /* |
| 348 | * This gets called after board-specific INIT_MACHINE, and initializes most |
| 349 | * on-chip peripherals accessible on this board (except for few like USB): |
| 350 | * |
| 351 | * (a) Does any "standard config" pin muxing needed. Board-specific |
| 352 | * code will have muxed GPIO pins and done "nonstandard" setup; |
| 353 | * that code could live in the boot loader. |
| 354 | * (b) Populating board-specific platform_data with the data drivers |
| 355 | * rely on to handle wiring variations. |
| 356 | * (c) Creating platform devices as meaningful on this board and |
| 357 | * with this kernel configuration. |
| 358 | * |
| 359 | * Claiming GPIOs, and setting their direction and initial values, is the |
| 360 | * responsibility of the device drivers. So is responding to probe(). |
| 361 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 362 | * Board-specific knowledge like creating devices or pin setup is to be |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 363 | * kept out of drivers as much as possible. In particular, pin setup |
| 364 | * may be handled by the boot loader, and drivers should expect it will |
| 365 | * normally have been done by the time they're probed. |
| 366 | */ |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 367 | static int __init omap1_init_devices(void) |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 368 | { |
Tony Lindgren | 7f9187c | 2010-12-10 09:46:24 -0800 | [diff] [blame] | 369 | if (!cpu_class_is_omap1()) |
| 370 | return -ENODEV; |
| 371 | |
Tony Lindgren | a66cb34 | 2011-10-04 13:52:57 -0700 | [diff] [blame] | 372 | omap_sram_init(); |
Tony Lindgren | e9b7086 | 2011-11-11 10:15:11 -0800 | [diff] [blame] | 373 | omap1_clk_late_init(); |
Tony Lindgren | a66cb34 | 2011-10-04 13:52:57 -0700 | [diff] [blame] | 374 | |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 375 | /* please keep these calls, and their implementations above, |
| 376 | * in alphabetical order so they're easier to sort through. |
| 377 | */ |
Tony Lindgren | c40fae95 | 2006-12-07 13:58:10 -0800 | [diff] [blame] | 378 | |
Tony Lindgren | fcc76a8 | 2012-05-09 09:59:25 -0700 | [diff] [blame] | 379 | omap_init_audio(); |
Tony Lindgren | c40fae95 | 2006-12-07 13:58:10 -0800 | [diff] [blame] | 380 | omap_init_mbox(); |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 381 | omap_init_rtc(); |
Cory Maccarrone | c5c4dce | 2010-01-08 10:29:05 -0800 | [diff] [blame] | 382 | omap_init_spi100k(); |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 383 | omap_init_sti(); |
Tony Lindgren | 49b1a61 | 2012-05-09 09:59:25 -0700 | [diff] [blame] | 384 | omap_init_uwire(); |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 385 | |
| 386 | return 0; |
| 387 | } |
Tony Lindgren | 3179a01 | 2005-11-10 14:26:48 +0000 | [diff] [blame] | 388 | arch_initcall(omap1_init_devices); |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 389 | |
Varadarajan, Charulatha | f2ce623 | 2010-09-23 20:02:42 +0530 | [diff] [blame] | 390 | #if defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE) |
| 391 | |
| 392 | static struct resource wdt_resources[] = { |
| 393 | { |
| 394 | .start = 0xfffeb000, |
| 395 | .end = 0xfffeb07F, |
| 396 | .flags = IORESOURCE_MEM, |
| 397 | }, |
| 398 | }; |
| 399 | |
| 400 | static struct platform_device omap_wdt_device = { |
| 401 | .name = "omap_wdt", |
| 402 | .id = -1, |
| 403 | .num_resources = ARRAY_SIZE(wdt_resources), |
| 404 | .resource = wdt_resources, |
| 405 | }; |
| 406 | |
| 407 | static int __init omap_init_wdt(void) |
| 408 | { |
| 409 | if (!cpu_is_omap16xx()) |
Felipe Balbi | dfcccd3 | 2010-11-08 06:48:00 +0000 | [diff] [blame] | 410 | return -ENODEV; |
Varadarajan, Charulatha | f2ce623 | 2010-09-23 20:02:42 +0530 | [diff] [blame] | 411 | |
Felipe Balbi | dfcccd3 | 2010-11-08 06:48:00 +0000 | [diff] [blame] | 412 | return platform_device_register(&omap_wdt_device); |
Varadarajan, Charulatha | f2ce623 | 2010-09-23 20:02:42 +0530 | [diff] [blame] | 413 | } |
| 414 | subsys_initcall(omap_init_wdt); |
| 415 | #endif |