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>
18 #include <linux/spi/spi.h>
20 #include <mach/hardware.h>
21 #include <asm/mach/map.h>
24 #include <plat/board.h>
26 #include <mach/gpio.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
= {
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
);
65 static inline void omap_init_rtc(void) {}
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
,
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
);
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),
128 void __init
omap1_init_mmc(struct omap_mmc_platform_data
**mmc_data
,
133 for (i
= 0; i
< nr_controllers
; i
++) {
134 unsigned long base
, size
;
135 unsigned int irq
= 0;
140 omap1_mmc_mux(mmc_data
[i
], i
);
144 base
= OMAP1_MMC1_BASE
;
148 if (!cpu_is_omap16xx())
150 base
= OMAP1_MMC2_BASE
;
156 size
= OMAP1_MMC_SIZE
;
158 omap_mmc_add("mmci-omap", i
, base
, size
, irq
, mmc_data
[i
]);
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",
174 struct platform_device omap_spi2
= {
175 .name
= "omap1_spi100k",
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
);
191 static inline void omap_init_spi100k(void)
197 #define OMAP1_CAMERA_BASE 0xfffb6800
198 #define OMAP1_CAMERA_IOSIZE 0x1c
200 static struct resource omap1_camera_resources
[] = {
202 .start
= OMAP1_CAMERA_BASE
,
203 .end
= OMAP1_CAMERA_BASE
+ OMAP1_CAMERA_IOSIZE
- 1,
204 .flags
= IORESOURCE_MEM
,
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 */
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
;
230 dev
->dev
.platform_data
= info
;
232 ret
= platform_device_register(dev
);
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",
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
);
263 static inline void omap_init_audio(void) {}
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.
302 arch_initcall(omap1_init_devices
);
304 #if defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
306 static struct resource wdt_resources
[] = {
310 .flags
= IORESOURCE_MEM
,
314 static struct platform_device omap_wdt_device
= {
317 .num_resources
= ARRAY_SIZE(wdt_resources
),
318 .resource
= wdt_resources
,
321 static int __init
omap_init_wdt(void)
323 if (!cpu_is_omap16xx())
326 platform_device_register(&omap_wdt_device
);
329 subsys_initcall(omap_init_wdt
);