blob: 7155ed8b97f8bce03dcc13b008a4f7526b928103 [file] [log] [blame]
Tony Lindgren7c38cf02005-09-08 23:07:38 +01001/*
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 Krzysztofik1a96edd2010-10-01 16:37:00 -070012#include <linux/dma-mapping.h>
Russell King2f8163b2011-07-26 10:53:52 +010013#include <linux/gpio.h>
Tony Lindgren7c38cf02005-09-08 23:07:38 +010014#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/init.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010017#include <linux/platform_device.h>
Cory Maccarronec5c4dce2010-01-08 10:29:05 -080018#include <linux/spi/spi.h>
Tony Lindgren7c38cf02005-09-08 23:07:38 +010019
Tony Lindgren7c38cf02005-09-08 23:07:38 +010020#include <asm/mach/map.h>
21
Tony Lindgren54b693d2012-10-02 13:39:28 -070022#include <mach/tc.h>
Tony Lindgren70c494c2012-09-19 10:46:56 -070023#include <mach/mux.h>
Tony Lindgren7c38cf02005-09-08 23:07:38 +010024
Tony Lindgren68cb7002012-08-31 17:04:35 -070025#include <mach/omap7xx.h>
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080026#include <mach/camera.h>
27#include <mach/hardware.h>
28
29#include "common.h"
Tony Lindgrene9b70862011-11-11 10:15:11 -080030#include "clock.h"
Lokesh Vutla8c4cc002012-10-15 14:01:01 -070031#include "dma.h"
Tony Lindgren68f39e72012-10-15 12:09:43 -070032#include "mmc.h"
Tony Lindgrenbf027ca2012-10-29 13:54:06 -070033#include "sram.h"
Tony Lindgrene9b70862011-11-11 10:15:11 -080034
Tony Lindgrenfcc76a82012-05-09 09:59:25 -070035#if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
36
37static struct platform_device omap_pcm = {
38 .name = "omap-pcm-audio",
39 .id = -1,
40};
41
42static void omap_init_audio(void)
43{
44 platform_device_register(&omap_pcm);
45}
46
47#else
48static inline void omap_init_audio(void) {}
49#endif
50
Tony Lindgren7c38cf02005-09-08 23:07:38 +010051/*-------------------------------------------------------------------------*/
52
David Brownelldb68b182006-12-06 20:38:36 -080053#if defined(CONFIG_RTC_DRV_OMAP) || defined(CONFIG_RTC_DRV_OMAP_MODULE)
Tony Lindgren7c38cf02005-09-08 23:07:38 +010054
55#define OMAP_RTC_BASE 0xfffb4800
56
57static struct resource rtc_resources[] = {
58 {
59 .start = OMAP_RTC_BASE,
60 .end = OMAP_RTC_BASE + 0x5f,
61 .flags = IORESOURCE_MEM,
62 },
63 {
64 .start = INT_RTC_TIMER,
65 .flags = IORESOURCE_IRQ,
66 },
67 {
68 .start = INT_RTC_ALARM,
69 .flags = IORESOURCE_IRQ,
70 },
71};
72
73static struct platform_device omap_rtc_device = {
74 .name = "omap_rtc",
75 .id = -1,
Tony Lindgren7c38cf02005-09-08 23:07:38 +010076 .num_resources = ARRAY_SIZE(rtc_resources),
77 .resource = rtc_resources,
78};
79
80static void omap_init_rtc(void)
81{
82 (void) platform_device_register(&omap_rtc_device);
83}
84#else
85static inline void omap_init_rtc(void) {}
86#endif
87
Tony Lindgrenc40fae952006-12-07 13:58:10 -080088static inline void omap_init_mbox(void) { }
Tony Lindgrenc40fae952006-12-07 13:58:10 -080089
Tony Lindgrend8874662008-12-10 17:37:16 -080090/*-------------------------------------------------------------------------*/
91
92#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
93
94static inline void omap1_mmc_mux(struct omap_mmc_platform_data *mmc_controller,
95 int controller_nr)
96{
97 if (controller_nr == 0) {
Cory Maccarrone490a5662009-11-22 10:10:50 -080098 if (cpu_is_omap7xx()) {
99 omap_cfg_reg(MMC_7XX_CMD);
100 omap_cfg_reg(MMC_7XX_CLK);
101 omap_cfg_reg(MMC_7XX_DAT0);
102 } else {
103 omap_cfg_reg(MMC_CMD);
104 omap_cfg_reg(MMC_CLK);
105 omap_cfg_reg(MMC_DAT0);
106 }
107
Tony Lindgrend8874662008-12-10 17:37:16 -0800108 if (cpu_is_omap1710()) {
109 omap_cfg_reg(M15_1710_MMC_CLKI);
110 omap_cfg_reg(P19_1710_MMC_CMDDIR);
111 omap_cfg_reg(P20_1710_MMC_DATDIR0);
112 }
Cory Maccarrone490a5662009-11-22 10:10:50 -0800113 if (mmc_controller->slots[0].wires == 4 && !cpu_is_omap7xx()) {
Tony Lindgrend8874662008-12-10 17:37:16 -0800114 omap_cfg_reg(MMC_DAT1);
115 /* NOTE: DAT2 can be on W10 (here) or M15 */
116 if (!mmc_controller->slots[0].nomux)
117 omap_cfg_reg(MMC_DAT2);
118 omap_cfg_reg(MMC_DAT3);
119 }
120 }
121
122 /* Block 2 is on newer chips, and has many pinout options */
123 if (cpu_is_omap16xx() && controller_nr == 1) {
124 if (!mmc_controller->slots[1].nomux) {
125 omap_cfg_reg(Y8_1610_MMC2_CMD);
126 omap_cfg_reg(Y10_1610_MMC2_CLK);
127 omap_cfg_reg(R18_1610_MMC2_CLKIN);
128 omap_cfg_reg(W8_1610_MMC2_DAT0);
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800129 if (mmc_controller->slots[1].wires == 4) {
Tony Lindgrend8874662008-12-10 17:37:16 -0800130 omap_cfg_reg(V8_1610_MMC2_DAT1);
131 omap_cfg_reg(W15_1610_MMC2_DAT2);
132 omap_cfg_reg(R10_1610_MMC2_DAT3);
133 }
134
135 /* These are needed for the level shifter */
136 omap_cfg_reg(V9_1610_MMC2_CMDDIR);
137 omap_cfg_reg(V5_1610_MMC2_DATDIR0);
138 omap_cfg_reg(W19_1610_MMC2_DATDIR1);
139 }
140
141 /* Feedback clock must be set on OMAP-1710 MMC2 */
142 if (cpu_is_omap1710())
143 omap_writel(omap_readl(MOD_CONF_CTRL_1) | (1 << 24),
144 MOD_CONF_CTRL_1);
145 }
146}
147
Tony Lindgren6c432f72012-04-23 15:56:37 -0700148#define OMAP_MMC_NR_RES 4
Tony Lindgren5ff391d2012-04-23 15:56:36 -0700149
150/*
151 * Register MMC devices.
152 */
153static int __init omap_mmc_add(const char *name, int id, unsigned long base,
154 unsigned long size, unsigned int irq,
Tony Lindgren6c432f72012-04-23 15:56:37 -0700155 unsigned rx_req, unsigned tx_req,
Tony Lindgren5ff391d2012-04-23 15:56:36 -0700156 struct omap_mmc_platform_data *data)
157{
158 struct platform_device *pdev;
159 struct resource res[OMAP_MMC_NR_RES];
160 int ret;
161
162 pdev = platform_device_alloc(name, id);
163 if (!pdev)
164 return -ENOMEM;
165
166 memset(res, 0, OMAP_MMC_NR_RES * sizeof(struct resource));
167 res[0].start = base;
168 res[0].end = base + size - 1;
169 res[0].flags = IORESOURCE_MEM;
170 res[1].start = res[1].end = irq;
171 res[1].flags = IORESOURCE_IRQ;
Tony Lindgren6c432f72012-04-23 15:56:37 -0700172 res[2].start = rx_req;
173 res[2].name = "rx";
174 res[2].flags = IORESOURCE_DMA;
175 res[3].start = tx_req;
176 res[3].name = "tx";
177 res[3].flags = IORESOURCE_DMA;
Tony Lindgren5ff391d2012-04-23 15:56:36 -0700178
Tony Lindgren53db20d2012-10-15 12:10:33 -0700179 if (cpu_is_omap7xx())
180 data->slots[0].features = MMC_OMAP7XX;
181 if (cpu_is_omap15xx())
182 data->slots[0].features = MMC_OMAP15XX;
183 if (cpu_is_omap16xx())
184 data->slots[0].features = MMC_OMAP16XX;
185
Tony Lindgren5ff391d2012-04-23 15:56:36 -0700186 ret = platform_device_add_resources(pdev, res, ARRAY_SIZE(res));
187 if (ret == 0)
188 ret = platform_device_add_data(pdev, data, sizeof(*data));
189 if (ret)
190 goto fail;
191
192 ret = platform_device_add(pdev);
193 if (ret)
194 goto fail;
195
196 /* return device handle to board setup code */
197 data->dev = &pdev->dev;
198 return 0;
199
200fail:
201 platform_device_put(pdev);
202 return ret;
203}
204
Tony Lindgrend8874662008-12-10 17:37:16 -0800205void __init omap1_init_mmc(struct omap_mmc_platform_data **mmc_data,
206 int nr_controllers)
207{
208 int i;
209
210 for (i = 0; i < nr_controllers; i++) {
211 unsigned long base, size;
Tony Lindgren6c432f72012-04-23 15:56:37 -0700212 unsigned rx_req, tx_req;
Tony Lindgrend8874662008-12-10 17:37:16 -0800213 unsigned int irq = 0;
214
215 if (!mmc_data[i])
216 continue;
217
218 omap1_mmc_mux(mmc_data[i], i);
219
220 switch (i) {
221 case 0:
222 base = OMAP1_MMC1_BASE;
223 irq = INT_MMC;
Tony Lindgren6c432f72012-04-23 15:56:37 -0700224 rx_req = OMAP_DMA_MMC_RX;
225 tx_req = OMAP_DMA_MMC_TX;
Tony Lindgrend8874662008-12-10 17:37:16 -0800226 break;
227 case 1:
228 if (!cpu_is_omap16xx())
229 return;
230 base = OMAP1_MMC2_BASE;
231 irq = INT_1610_MMC2;
Tony Lindgren6c432f72012-04-23 15:56:37 -0700232 rx_req = OMAP_DMA_MMC2_RX;
233 tx_req = OMAP_DMA_MMC2_TX;
Tony Lindgrend8874662008-12-10 17:37:16 -0800234 break;
235 default:
236 continue;
237 }
238 size = OMAP1_MMC_SIZE;
239
Tony Lindgren6c432f72012-04-23 15:56:37 -0700240 omap_mmc_add("mmci-omap", i, base, size, irq,
241 rx_req, tx_req, mmc_data[i]);
Peter Senna Tschudin11eff272012-09-18 18:36:10 +0200242 }
Tony Lindgrend8874662008-12-10 17:37:16 -0800243}
244
245#endif
246
247/*-------------------------------------------------------------------------*/
248
Cory Maccarronec5c4dce2010-01-08 10:29:05 -0800249/* OMAP7xx SPI support */
250#if defined(CONFIG_SPI_OMAP_100K) || defined(CONFIG_SPI_OMAP_100K_MODULE)
251
252struct platform_device omap_spi1 = {
253 .name = "omap1_spi100k",
254 .id = 1,
255};
256
257struct platform_device omap_spi2 = {
258 .name = "omap1_spi100k",
259 .id = 2,
260};
261
262static void omap_init_spi100k(void)
263{
264 omap_spi1.dev.platform_data = ioremap(OMAP7XX_SPI1_BASE, 0x7ff);
265 if (omap_spi1.dev.platform_data)
266 platform_device_register(&omap_spi1);
267
268 omap_spi2.dev.platform_data = ioremap(OMAP7XX_SPI2_BASE, 0x7ff);
269 if (omap_spi2.dev.platform_data)
270 platform_device_register(&omap_spi2);
271}
272
273#else
274static inline void omap_init_spi100k(void)
275{
276}
277#endif
278
Janusz Krzysztofik1a96edd2010-10-01 16:37:00 -0700279
280#define OMAP1_CAMERA_BASE 0xfffb6800
281#define OMAP1_CAMERA_IOSIZE 0x1c
282
283static struct resource omap1_camera_resources[] = {
284 [0] = {
285 .start = OMAP1_CAMERA_BASE,
286 .end = OMAP1_CAMERA_BASE + OMAP1_CAMERA_IOSIZE - 1,
287 .flags = IORESOURCE_MEM,
288 },
289 [1] = {
290 .start = INT_CAMERA,
291 .flags = IORESOURCE_IRQ,
292 },
293};
294
295static u64 omap1_camera_dma_mask = DMA_BIT_MASK(32);
296
297static struct platform_device omap1_camera_device = {
298 .name = "omap1-camera",
299 .id = 0, /* This is used to put cameras on this interface */
300 .dev = {
301 .dma_mask = &omap1_camera_dma_mask,
302 .coherent_dma_mask = DMA_BIT_MASK(32),
303 },
304 .num_resources = ARRAY_SIZE(omap1_camera_resources),
305 .resource = omap1_camera_resources,
306};
307
308void __init omap1_camera_init(void *info)
309{
310 struct platform_device *dev = &omap1_camera_device;
311 int ret;
312
313 dev->dev.platform_data = info;
314
315 ret = platform_device_register(dev);
316 if (ret)
317 dev_err(&dev->dev, "unable to register device: %d\n", ret);
318}
319
320
Cory Maccarronec5c4dce2010-01-08 10:29:05 -0800321/*-------------------------------------------------------------------------*/
322
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100323static inline void omap_init_sti(void) {}
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100324
Tony Lindgren49b1a612012-05-09 09:59:25 -0700325/* Numbering for the SPI-capable controllers when used for SPI:
326 * spi = 1
327 * uwire = 2
328 * mmc1..2 = 3..4
329 * mcbsp1..3 = 5..7
330 */
331
332#if defined(CONFIG_SPI_OMAP_UWIRE) || defined(CONFIG_SPI_OMAP_UWIRE_MODULE)
333
334#define OMAP_UWIRE_BASE 0xfffb3000
335
336static struct resource uwire_resources[] = {
337 {
338 .start = OMAP_UWIRE_BASE,
339 .end = OMAP_UWIRE_BASE + 0x20,
340 .flags = IORESOURCE_MEM,
341 },
342};
343
344static struct platform_device omap_uwire_device = {
345 .name = "omap_uwire",
346 .id = -1,
347 .num_resources = ARRAY_SIZE(uwire_resources),
348 .resource = uwire_resources,
349};
350
351static void omap_init_uwire(void)
352{
353 /* FIXME define and use a boot tag; not all boards will be hooking
354 * up devices to the microwire controller, and multi-board configs
355 * mean that CONFIG_SPI_OMAP_UWIRE may be configured anyway...
356 */
357
358 /* board-specific code must configure chipselects (only a few
359 * are normally used) and SCLK/SDI/SDO (each has two choices).
360 */
361 (void) platform_device_register(&omap_uwire_device);
362}
363#else
364static inline void omap_init_uwire(void) {}
365#endif
366
367
Paul Walmsley4848d462012-09-23 17:28:27 -0600368#define OMAP1_RNG_BASE 0xfffe5000
369
370static struct resource omap1_rng_resources[] = {
371 {
372 .start = OMAP1_RNG_BASE,
373 .end = OMAP1_RNG_BASE + 0x4f,
374 .flags = IORESOURCE_MEM,
375 },
376};
377
378static struct platform_device omap1_rng_device = {
379 .name = "omap_rng",
380 .id = -1,
381 .num_resources = ARRAY_SIZE(omap1_rng_resources),
382 .resource = omap1_rng_resources,
383};
384
385static void omap1_init_rng(void)
386{
Paul Walmsleyfe47c582012-09-23 17:28:27 -0600387 if (!cpu_is_omap16xx())
388 return;
389
Paul Walmsley4848d462012-09-23 17:28:27 -0600390 (void) platform_device_register(&omap1_rng_device);
391}
392
393/*-------------------------------------------------------------------------*/
394
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100395/*
396 * This gets called after board-specific INIT_MACHINE, and initializes most
397 * on-chip peripherals accessible on this board (except for few like USB):
398 *
399 * (a) Does any "standard config" pin muxing needed. Board-specific
400 * code will have muxed GPIO pins and done "nonstandard" setup;
401 * that code could live in the boot loader.
402 * (b) Populating board-specific platform_data with the data drivers
403 * rely on to handle wiring variations.
404 * (c) Creating platform devices as meaningful on this board and
405 * with this kernel configuration.
406 *
407 * Claiming GPIOs, and setting their direction and initial values, is the
408 * responsibility of the device drivers. So is responding to probe().
409 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300410 * Board-specific knowledge like creating devices or pin setup is to be
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100411 * kept out of drivers as much as possible. In particular, pin setup
412 * may be handled by the boot loader, and drivers should expect it will
413 * normally have been done by the time they're probed.
414 */
Tony Lindgren3179a012005-11-10 14:26:48 +0000415static int __init omap1_init_devices(void)
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100416{
Tony Lindgren7f9187c2010-12-10 09:46:24 -0800417 if (!cpu_class_is_omap1())
418 return -ENODEV;
419
Tony Lindgrena66cb342011-10-04 13:52:57 -0700420 omap_sram_init();
Tony Lindgrene9b70862011-11-11 10:15:11 -0800421 omap1_clk_late_init();
Tony Lindgrena66cb342011-10-04 13:52:57 -0700422
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100423 /* please keep these calls, and their implementations above,
424 * in alphabetical order so they're easier to sort through.
425 */
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800426
Tony Lindgrenfcc76a82012-05-09 09:59:25 -0700427 omap_init_audio();
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800428 omap_init_mbox();
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100429 omap_init_rtc();
Cory Maccarronec5c4dce2010-01-08 10:29:05 -0800430 omap_init_spi100k();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100431 omap_init_sti();
Tony Lindgren49b1a612012-05-09 09:59:25 -0700432 omap_init_uwire();
Paul Walmsley4848d462012-09-23 17:28:27 -0600433 omap1_init_rng();
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100434
435 return 0;
436}
Tony Lindgren3179a012005-11-10 14:26:48 +0000437arch_initcall(omap1_init_devices);
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100438
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530439#if defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
440
441static struct resource wdt_resources[] = {
442 {
443 .start = 0xfffeb000,
444 .end = 0xfffeb07F,
445 .flags = IORESOURCE_MEM,
446 },
447};
448
449static struct platform_device omap_wdt_device = {
450 .name = "omap_wdt",
451 .id = -1,
452 .num_resources = ARRAY_SIZE(wdt_resources),
453 .resource = wdt_resources,
454};
455
456static int __init omap_init_wdt(void)
457{
458 if (!cpu_is_omap16xx())
Felipe Balbidfcccd32010-11-08 06:48:00 +0000459 return -ENODEV;
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530460
Felipe Balbidfcccd32010-11-08 06:48:00 +0000461 return platform_device_register(&omap_wdt_device);
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530462}
463subsys_initcall(omap_init_wdt);
464#endif