blob: b853f6110a440794f660fb50c84a0d3a5397a321 [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 Lindgrence491cf2009-10-20 09:40:47 -070022#include <plat/tc.h>
23#include <plat/board.h>
24#include <plat/mux.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070025#include <plat/mmc.h>
Cory Maccarronec5c4dce2010-01-08 10:29:05 -080026#include <plat/omap7xx.h>
Tony Lindgren7c38cf02005-09-08 23:07:38 +010027
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080028#include <mach/camera.h>
29#include <mach/hardware.h>
30
31#include "common.h"
Tony Lindgrene9b70862011-11-11 10:15:11 -080032#include "clock.h"
33
Tony Lindgrenfcc76a82012-05-09 09:59:25 -070034#if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
35
36static struct platform_device omap_pcm = {
37 .name = "omap-pcm-audio",
38 .id = -1,
39};
40
41static void omap_init_audio(void)
42{
43 platform_device_register(&omap_pcm);
44}
45
46#else
47static inline void omap_init_audio(void) {}
48#endif
49
Tony Lindgren7c38cf02005-09-08 23:07:38 +010050/*-------------------------------------------------------------------------*/
51
David Brownelldb68b182006-12-06 20:38:36 -080052#if defined(CONFIG_RTC_DRV_OMAP) || defined(CONFIG_RTC_DRV_OMAP_MODULE)
Tony Lindgren7c38cf02005-09-08 23:07:38 +010053
54#define OMAP_RTC_BASE 0xfffb4800
55
56static 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
72static struct platform_device omap_rtc_device = {
73 .name = "omap_rtc",
74 .id = -1,
Tony Lindgren7c38cf02005-09-08 23:07:38 +010075 .num_resources = ARRAY_SIZE(rtc_resources),
76 .resource = rtc_resources,
77};
78
79static void omap_init_rtc(void)
80{
81 (void) platform_device_register(&omap_rtc_device);
82}
83#else
84static inline void omap_init_rtc(void) {}
85#endif
86
Tony Lindgrenc40fae952006-12-07 13:58:10 -080087static inline void omap_init_mbox(void) { }
Tony Lindgrenc40fae952006-12-07 13:58:10 -080088
Tony Lindgrend8874662008-12-10 17:37:16 -080089/*-------------------------------------------------------------------------*/
90
91#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
92
93static inline void omap1_mmc_mux(struct omap_mmc_platform_data *mmc_controller,
94 int controller_nr)
95{
96 if (controller_nr == 0) {
Cory Maccarrone490a5662009-11-22 10:10:50 -080097 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 Lindgrend8874662008-12-10 17:37:16 -0800107 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 Maccarrone490a5662009-11-22 10:10:50 -0800112 if (mmc_controller->slots[0].wires == 4 && !cpu_is_omap7xx()) {
Tony Lindgrend8874662008-12-10 17:37:16 -0800113 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 Lindgren90c62bf2008-12-10 17:37:17 -0800128 if (mmc_controller->slots[1].wires == 4) {
Tony Lindgrend8874662008-12-10 17:37:16 -0800129 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
147void __init omap1_init_mmc(struct omap_mmc_platform_data **mmc_data,
148 int nr_controllers)
149{
150 int i;
151
152 for (i = 0; i < nr_controllers; i++) {
153 unsigned long base, size;
154 unsigned int irq = 0;
155
156 if (!mmc_data[i])
157 continue;
158
159 omap1_mmc_mux(mmc_data[i], i);
160
161 switch (i) {
162 case 0:
163 base = OMAP1_MMC1_BASE;
164 irq = INT_MMC;
165 break;
166 case 1:
167 if (!cpu_is_omap16xx())
168 return;
169 base = OMAP1_MMC2_BASE;
170 irq = INT_1610_MMC2;
171 break;
172 default:
173 continue;
174 }
175 size = OMAP1_MMC_SIZE;
176
Tony Lindgren0dffb5c2009-01-29 08:57:16 -0800177 omap_mmc_add("mmci-omap", i, base, size, irq, mmc_data[i]);
Tony Lindgrend8874662008-12-10 17:37:16 -0800178 };
179}
180
181#endif
182
183/*-------------------------------------------------------------------------*/
184
Cory Maccarronec5c4dce2010-01-08 10:29:05 -0800185/* OMAP7xx SPI support */
186#if defined(CONFIG_SPI_OMAP_100K) || defined(CONFIG_SPI_OMAP_100K_MODULE)
187
188struct platform_device omap_spi1 = {
189 .name = "omap1_spi100k",
190 .id = 1,
191};
192
193struct platform_device omap_spi2 = {
194 .name = "omap1_spi100k",
195 .id = 2,
196};
197
198static void omap_init_spi100k(void)
199{
200 omap_spi1.dev.platform_data = ioremap(OMAP7XX_SPI1_BASE, 0x7ff);
201 if (omap_spi1.dev.platform_data)
202 platform_device_register(&omap_spi1);
203
204 omap_spi2.dev.platform_data = ioremap(OMAP7XX_SPI2_BASE, 0x7ff);
205 if (omap_spi2.dev.platform_data)
206 platform_device_register(&omap_spi2);
207}
208
209#else
210static inline void omap_init_spi100k(void)
211{
212}
213#endif
214
Janusz Krzysztofik1a96edd2010-10-01 16:37:00 -0700215
216#define OMAP1_CAMERA_BASE 0xfffb6800
217#define OMAP1_CAMERA_IOSIZE 0x1c
218
219static struct resource omap1_camera_resources[] = {
220 [0] = {
221 .start = OMAP1_CAMERA_BASE,
222 .end = OMAP1_CAMERA_BASE + OMAP1_CAMERA_IOSIZE - 1,
223 .flags = IORESOURCE_MEM,
224 },
225 [1] = {
226 .start = INT_CAMERA,
227 .flags = IORESOURCE_IRQ,
228 },
229};
230
231static u64 omap1_camera_dma_mask = DMA_BIT_MASK(32);
232
233static struct platform_device omap1_camera_device = {
234 .name = "omap1-camera",
235 .id = 0, /* This is used to put cameras on this interface */
236 .dev = {
237 .dma_mask = &omap1_camera_dma_mask,
238 .coherent_dma_mask = DMA_BIT_MASK(32),
239 },
240 .num_resources = ARRAY_SIZE(omap1_camera_resources),
241 .resource = omap1_camera_resources,
242};
243
244void __init omap1_camera_init(void *info)
245{
246 struct platform_device *dev = &omap1_camera_device;
247 int ret;
248
249 dev->dev.platform_data = info;
250
251 ret = platform_device_register(dev);
252 if (ret)
253 dev_err(&dev->dev, "unable to register device: %d\n", ret);
254}
255
256
Cory Maccarronec5c4dce2010-01-08 10:29:05 -0800257/*-------------------------------------------------------------------------*/
258
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100259static inline void omap_init_sti(void) {}
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100260
Tony Lindgren49b1a612012-05-09 09:59:25 -0700261/* Numbering for the SPI-capable controllers when used for SPI:
262 * spi = 1
263 * uwire = 2
264 * mmc1..2 = 3..4
265 * mcbsp1..3 = 5..7
266 */
267
268#if defined(CONFIG_SPI_OMAP_UWIRE) || defined(CONFIG_SPI_OMAP_UWIRE_MODULE)
269
270#define OMAP_UWIRE_BASE 0xfffb3000
271
272static struct resource uwire_resources[] = {
273 {
274 .start = OMAP_UWIRE_BASE,
275 .end = OMAP_UWIRE_BASE + 0x20,
276 .flags = IORESOURCE_MEM,
277 },
278};
279
280static struct platform_device omap_uwire_device = {
281 .name = "omap_uwire",
282 .id = -1,
283 .num_resources = ARRAY_SIZE(uwire_resources),
284 .resource = uwire_resources,
285};
286
287static void omap_init_uwire(void)
288{
289 /* FIXME define and use a boot tag; not all boards will be hooking
290 * up devices to the microwire controller, and multi-board configs
291 * mean that CONFIG_SPI_OMAP_UWIRE may be configured anyway...
292 */
293
294 /* board-specific code must configure chipselects (only a few
295 * are normally used) and SCLK/SDI/SDO (each has two choices).
296 */
297 (void) platform_device_register(&omap_uwire_device);
298}
299#else
300static inline void omap_init_uwire(void) {}
301#endif
302
303
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100304/*
305 * This gets called after board-specific INIT_MACHINE, and initializes most
306 * on-chip peripherals accessible on this board (except for few like USB):
307 *
308 * (a) Does any "standard config" pin muxing needed. Board-specific
309 * code will have muxed GPIO pins and done "nonstandard" setup;
310 * that code could live in the boot loader.
311 * (b) Populating board-specific platform_data with the data drivers
312 * rely on to handle wiring variations.
313 * (c) Creating platform devices as meaningful on this board and
314 * with this kernel configuration.
315 *
316 * Claiming GPIOs, and setting their direction and initial values, is the
317 * responsibility of the device drivers. So is responding to probe().
318 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300319 * Board-specific knowledge like creating devices or pin setup is to be
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100320 * kept out of drivers as much as possible. In particular, pin setup
321 * may be handled by the boot loader, and drivers should expect it will
322 * normally have been done by the time they're probed.
323 */
Tony Lindgren3179a012005-11-10 14:26:48 +0000324static int __init omap1_init_devices(void)
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100325{
Tony Lindgren7f9187c2010-12-10 09:46:24 -0800326 if (!cpu_class_is_omap1())
327 return -ENODEV;
328
Tony Lindgrena66cb342011-10-04 13:52:57 -0700329 omap_sram_init();
Tony Lindgrene9b70862011-11-11 10:15:11 -0800330 omap1_clk_late_init();
Tony Lindgrena66cb342011-10-04 13:52:57 -0700331
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100332 /* please keep these calls, and their implementations above,
333 * in alphabetical order so they're easier to sort through.
334 */
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800335
Tony Lindgrenfcc76a82012-05-09 09:59:25 -0700336 omap_init_audio();
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800337 omap_init_mbox();
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100338 omap_init_rtc();
Cory Maccarronec5c4dce2010-01-08 10:29:05 -0800339 omap_init_spi100k();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100340 omap_init_sti();
Tony Lindgren49b1a612012-05-09 09:59:25 -0700341 omap_init_uwire();
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100342
343 return 0;
344}
Tony Lindgren3179a012005-11-10 14:26:48 +0000345arch_initcall(omap1_init_devices);
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100346
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530347#if defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
348
349static struct resource wdt_resources[] = {
350 {
351 .start = 0xfffeb000,
352 .end = 0xfffeb07F,
353 .flags = IORESOURCE_MEM,
354 },
355};
356
357static struct platform_device omap_wdt_device = {
358 .name = "omap_wdt",
359 .id = -1,
360 .num_resources = ARRAY_SIZE(wdt_resources),
361 .resource = wdt_resources,
362};
363
364static int __init omap_init_wdt(void)
365{
366 if (!cpu_is_omap16xx())
Felipe Balbidfcccd32010-11-08 06:48:00 +0000367 return -ENODEV;
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530368
Felipe Balbidfcccd32010-11-08 06:48:00 +0000369 return platform_device_register(&omap_wdt_device);
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530370}
371subsys_initcall(omap_init_wdt);
372#endif