arm: omap1: devices: need to return with a value
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-omap1 / devices.c
blobe7f9ee63dce5f5cd5656dbff364cb4dc149dd2a2
1 /*
2 * linux/arch/arm/mach-omap1/devices.c
4 * OMAP1 platform device setup/initialization
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.
12 #include <linux/dma-mapping.h>
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/platform_device.h>
17 #include <linux/io.h>
18 #include <linux/spi/spi.h>
20 #include <mach/hardware.h>
21 #include <asm/mach/map.h>
23 #include <plat/tc.h>
24 #include <plat/board.h>
25 #include <plat/mux.h>
26 #include <mach/gpio.h>
27 #include <plat/mmc.h>
28 #include <plat/omap7xx.h>
29 #include <plat/mcbsp.h>
31 /*-------------------------------------------------------------------------*/
33 #if defined(CONFIG_RTC_DRV_OMAP) || defined(CONFIG_RTC_DRV_OMAP_MODULE)
35 #define OMAP_RTC_BASE 0xfffb4800
37 static struct resource rtc_resources[] = {
39 .start = OMAP_RTC_BASE,
40 .end = OMAP_RTC_BASE + 0x5f,
41 .flags = IORESOURCE_MEM,
44 .start = INT_RTC_TIMER,
45 .flags = IORESOURCE_IRQ,
48 .start = INT_RTC_ALARM,
49 .flags = IORESOURCE_IRQ,
53 static struct platform_device omap_rtc_device = {
54 .name = "omap_rtc",
55 .id = -1,
56 .num_resources = ARRAY_SIZE(rtc_resources),
57 .resource = rtc_resources,
60 static void omap_init_rtc(void)
62 (void) platform_device_register(&omap_rtc_device);
64 #else
65 static inline void omap_init_rtc(void) {}
66 #endif
68 static inline void omap_init_mbox(void) { }
70 /*-------------------------------------------------------------------------*/
72 #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
74 static inline void omap1_mmc_mux(struct omap_mmc_platform_data *mmc_controller,
75 int controller_nr)
77 if (controller_nr == 0) {
78 if (cpu_is_omap7xx()) {
79 omap_cfg_reg(MMC_7XX_CMD);
80 omap_cfg_reg(MMC_7XX_CLK);
81 omap_cfg_reg(MMC_7XX_DAT0);
82 } else {
83 omap_cfg_reg(MMC_CMD);
84 omap_cfg_reg(MMC_CLK);
85 omap_cfg_reg(MMC_DAT0);
88 if (cpu_is_omap1710()) {
89 omap_cfg_reg(M15_1710_MMC_CLKI);
90 omap_cfg_reg(P19_1710_MMC_CMDDIR);
91 omap_cfg_reg(P20_1710_MMC_DATDIR0);
93 if (mmc_controller->slots[0].wires == 4 && !cpu_is_omap7xx()) {
94 omap_cfg_reg(MMC_DAT1);
95 /* NOTE: DAT2 can be on W10 (here) or M15 */
96 if (!mmc_controller->slots[0].nomux)
97 omap_cfg_reg(MMC_DAT2);
98 omap_cfg_reg(MMC_DAT3);
102 /* Block 2 is on newer chips, and has many pinout options */
103 if (cpu_is_omap16xx() && controller_nr == 1) {
104 if (!mmc_controller->slots[1].nomux) {
105 omap_cfg_reg(Y8_1610_MMC2_CMD);
106 omap_cfg_reg(Y10_1610_MMC2_CLK);
107 omap_cfg_reg(R18_1610_MMC2_CLKIN);
108 omap_cfg_reg(W8_1610_MMC2_DAT0);
109 if (mmc_controller->slots[1].wires == 4) {
110 omap_cfg_reg(V8_1610_MMC2_DAT1);
111 omap_cfg_reg(W15_1610_MMC2_DAT2);
112 omap_cfg_reg(R10_1610_MMC2_DAT3);
115 /* These are needed for the level shifter */
116 omap_cfg_reg(V9_1610_MMC2_CMDDIR);
117 omap_cfg_reg(V5_1610_MMC2_DATDIR0);
118 omap_cfg_reg(W19_1610_MMC2_DATDIR1);
121 /* Feedback clock must be set on OMAP-1710 MMC2 */
122 if (cpu_is_omap1710())
123 omap_writel(omap_readl(MOD_CONF_CTRL_1) | (1 << 24),
124 MOD_CONF_CTRL_1);
128 void __init omap1_init_mmc(struct omap_mmc_platform_data **mmc_data,
129 int nr_controllers)
131 int i;
133 for (i = 0; i < nr_controllers; i++) {
134 unsigned long base, size;
135 unsigned int irq = 0;
137 if (!mmc_data[i])
138 continue;
140 omap1_mmc_mux(mmc_data[i], i);
142 switch (i) {
143 case 0:
144 base = OMAP1_MMC1_BASE;
145 irq = INT_MMC;
146 break;
147 case 1:
148 if (!cpu_is_omap16xx())
149 return;
150 base = OMAP1_MMC2_BASE;
151 irq = INT_1610_MMC2;
152 break;
153 default:
154 continue;
156 size = OMAP1_MMC_SIZE;
158 omap_mmc_add("mmci-omap", i, base, size, irq, mmc_data[i]);
162 #endif
164 /*-------------------------------------------------------------------------*/
166 /* OMAP7xx SPI support */
167 #if defined(CONFIG_SPI_OMAP_100K) || defined(CONFIG_SPI_OMAP_100K_MODULE)
169 struct platform_device omap_spi1 = {
170 .name = "omap1_spi100k",
171 .id = 1,
174 struct platform_device omap_spi2 = {
175 .name = "omap1_spi100k",
176 .id = 2,
179 static void omap_init_spi100k(void)
181 omap_spi1.dev.platform_data = ioremap(OMAP7XX_SPI1_BASE, 0x7ff);
182 if (omap_spi1.dev.platform_data)
183 platform_device_register(&omap_spi1);
185 omap_spi2.dev.platform_data = ioremap(OMAP7XX_SPI2_BASE, 0x7ff);
186 if (omap_spi2.dev.platform_data)
187 platform_device_register(&omap_spi2);
190 #else
191 static inline void omap_init_spi100k(void)
194 #endif
197 #define OMAP1_CAMERA_BASE 0xfffb6800
198 #define OMAP1_CAMERA_IOSIZE 0x1c
200 static struct resource omap1_camera_resources[] = {
201 [0] = {
202 .start = OMAP1_CAMERA_BASE,
203 .end = OMAP1_CAMERA_BASE + OMAP1_CAMERA_IOSIZE - 1,
204 .flags = IORESOURCE_MEM,
206 [1] = {
207 .start = INT_CAMERA,
208 .flags = IORESOURCE_IRQ,
212 static u64 omap1_camera_dma_mask = DMA_BIT_MASK(32);
214 static struct platform_device omap1_camera_device = {
215 .name = "omap1-camera",
216 .id = 0, /* This is used to put cameras on this interface */
217 .dev = {
218 .dma_mask = &omap1_camera_dma_mask,
219 .coherent_dma_mask = DMA_BIT_MASK(32),
221 .num_resources = ARRAY_SIZE(omap1_camera_resources),
222 .resource = omap1_camera_resources,
225 void __init omap1_camera_init(void *info)
227 struct platform_device *dev = &omap1_camera_device;
228 int ret;
230 dev->dev.platform_data = info;
232 ret = platform_device_register(dev);
233 if (ret)
234 dev_err(&dev->dev, "unable to register device: %d\n", ret);
238 /*-------------------------------------------------------------------------*/
240 static inline void omap_init_sti(void) {}
242 #if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
244 static struct platform_device omap_pcm = {
245 .name = "omap-pcm-audio",
246 .id = -1,
249 OMAP_MCBSP_PLATFORM_DEVICE(1);
250 OMAP_MCBSP_PLATFORM_DEVICE(2);
251 OMAP_MCBSP_PLATFORM_DEVICE(3);
253 static void omap_init_audio(void)
255 platform_device_register(&omap_mcbsp1);
256 platform_device_register(&omap_mcbsp2);
257 if (!cpu_is_omap7xx())
258 platform_device_register(&omap_mcbsp3);
259 platform_device_register(&omap_pcm);
262 #else
263 static inline void omap_init_audio(void) {}
264 #endif
266 /*-------------------------------------------------------------------------*/
269 * This gets called after board-specific INIT_MACHINE, and initializes most
270 * on-chip peripherals accessible on this board (except for few like USB):
272 * (a) Does any "standard config" pin muxing needed. Board-specific
273 * code will have muxed GPIO pins and done "nonstandard" setup;
274 * that code could live in the boot loader.
275 * (b) Populating board-specific platform_data with the data drivers
276 * rely on to handle wiring variations.
277 * (c) Creating platform devices as meaningful on this board and
278 * with this kernel configuration.
280 * Claiming GPIOs, and setting their direction and initial values, is the
281 * responsibility of the device drivers. So is responding to probe().
283 * Board-specific knowlege like creating devices or pin setup is to be
284 * kept out of drivers as much as possible. In particular, pin setup
285 * may be handled by the boot loader, and drivers should expect it will
286 * normally have been done by the time they're probed.
288 static int __init omap1_init_devices(void)
290 /* please keep these calls, and their implementations above,
291 * in alphabetical order so they're easier to sort through.
294 omap_init_mbox();
295 omap_init_rtc();
296 omap_init_spi100k();
297 omap_init_sti();
298 omap_init_audio();
300 return 0;
302 arch_initcall(omap1_init_devices);
304 #if defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
306 static struct resource wdt_resources[] = {
308 .start = 0xfffeb000,
309 .end = 0xfffeb07F,
310 .flags = IORESOURCE_MEM,
314 static struct platform_device omap_wdt_device = {
315 .name = "omap_wdt",
316 .id = -1,
317 .num_resources = ARRAY_SIZE(wdt_resources),
318 .resource = wdt_resources,
321 static int __init omap_init_wdt(void)
323 if (!cpu_is_omap16xx())
324 return -ENODEV;
326 return platform_device_register(&omap_wdt_device);
328 subsys_initcall(omap_init_wdt);
329 #endif