2 * linux/arch/arm/plat-omap/devices.c
4 * Common platform device setup/initialization for OMAP1 and OMAP2
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/module.h>
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
18 #include <mach/hardware.h>
19 #include <asm/mach-types.h>
20 #include <asm/mach/map.h>
23 #include <mach/control.h>
24 #include <mach/board.h>
27 #include <mach/gpio.h>
28 #include <mach/menelaus.h>
29 #include <mach/mcbsp.h>
30 #include <mach/dsp_common.h>
32 #if defined(CONFIG_OMAP_DSP) || defined(CONFIG_OMAP_DSP_MODULE)
34 static struct dsp_platform_data dsp_pdata
= {
35 .kdev_list
= LIST_HEAD_INIT(dsp_pdata
.kdev_list
),
38 static struct resource omap_dsp_resources
[] = {
42 .flags
= IORESOURCE_IRQ
,
46 static struct platform_device omap_dsp_device
= {
49 .num_resources
= ARRAY_SIZE(omap_dsp_resources
),
50 .resource
= omap_dsp_resources
,
52 .platform_data
= &dsp_pdata
,
56 static inline void omap_init_dsp(void)
61 if (cpu_is_omap15xx())
62 irq
= INT_1510_DSP_MMU
;
63 else if (cpu_is_omap16xx())
64 irq
= INT_1610_DSP_MMU
;
65 else if (cpu_is_omap24xx())
66 irq
= INT_24XX_DSP_MMU
;
68 res
= platform_get_resource_byname(&omap_dsp_device
,
69 IORESOURCE_IRQ
, "dsp_mmu");
72 platform_device_register(&omap_dsp_device
);
75 int dsp_kfunc_device_register(struct dsp_kfunc_device
*kdev
)
77 static DEFINE_MUTEX(dsp_pdata_lock
);
79 spin_lock_init(&kdev
->lock
);
81 mutex_lock(&dsp_pdata_lock
);
82 list_add_tail(&kdev
->entry
, &dsp_pdata
.kdev_list
);
83 mutex_unlock(&dsp_pdata_lock
);
87 EXPORT_SYMBOL(dsp_kfunc_device_register
);
90 static inline void omap_init_dsp(void) { }
91 #endif /* CONFIG_OMAP_DSP */
93 /*-------------------------------------------------------------------------*/
94 #if defined(CONFIG_KEYBOARD_OMAP) || defined(CONFIG_KEYBOARD_OMAP_MODULE)
96 static void omap_init_kp(void)
98 /* 2430 and 34xx keypad is on TWL4030 */
99 if (cpu_is_omap2430() || cpu_is_omap34xx())
102 if (machine_is_omap_h2() || machine_is_omap_h3()) {
103 omap_cfg_reg(F18_1610_KBC0
);
104 omap_cfg_reg(D20_1610_KBC1
);
105 omap_cfg_reg(D19_1610_KBC2
);
106 omap_cfg_reg(E18_1610_KBC3
);
107 omap_cfg_reg(C21_1610_KBC4
);
109 omap_cfg_reg(G18_1610_KBR0
);
110 omap_cfg_reg(F19_1610_KBR1
);
111 omap_cfg_reg(H14_1610_KBR2
);
112 omap_cfg_reg(E20_1610_KBR3
);
113 omap_cfg_reg(E19_1610_KBR4
);
114 omap_cfg_reg(N19_1610_KBR5
);
115 } else if (machine_is_omap_perseus2() || machine_is_omap_fsample()) {
116 omap_cfg_reg(E2_730_KBR0
);
117 omap_cfg_reg(J7_730_KBR1
);
118 omap_cfg_reg(E1_730_KBR2
);
119 omap_cfg_reg(F3_730_KBR3
);
120 omap_cfg_reg(D2_730_KBR4
);
122 omap_cfg_reg(C2_730_KBC0
);
123 omap_cfg_reg(D3_730_KBC1
);
124 omap_cfg_reg(E4_730_KBC2
);
125 omap_cfg_reg(F4_730_KBC3
);
126 omap_cfg_reg(E3_730_KBC4
);
127 } else if (machine_is_omap_h4()) {
128 omap_cfg_reg(T19_24XX_KBR0
);
129 omap_cfg_reg(R19_24XX_KBR1
);
130 omap_cfg_reg(V18_24XX_KBR2
);
131 omap_cfg_reg(M21_24XX_KBR3
);
132 omap_cfg_reg(E5__24XX_KBR4
);
133 if (omap_has_menelaus()) {
134 omap_cfg_reg(B3__24XX_KBR5
);
135 omap_cfg_reg(AA4_24XX_KBC2
);
136 omap_cfg_reg(B13_24XX_KBC6
);
138 omap_cfg_reg(M18_24XX_KBR5
);
139 omap_cfg_reg(H19_24XX_KBC2
);
140 omap_cfg_reg(N19_24XX_KBC6
);
142 omap_cfg_reg(R20_24XX_KBC0
);
143 omap_cfg_reg(M14_24XX_KBC1
);
144 omap_cfg_reg(V17_24XX_KBC3
);
145 omap_cfg_reg(P21_24XX_KBC4
);
146 omap_cfg_reg(L14_24XX_KBC5
);
150 static inline void omap_init_kp(void) {}
153 /*-------------------------------------------------------------------------*/
154 #if defined(CONFIG_OMAP_MCBSP) || defined(CONFIG_OMAP_MCBSP_MODULE)
156 static struct platform_device
**omap_mcbsp_devices
;
158 void omap_mcbsp_register_board_cfg(struct omap_mcbsp_platform_data
*config
,
163 omap_mcbsp_devices
= kzalloc(size
* sizeof(struct platform_device
*),
165 if (!omap_mcbsp_devices
) {
166 printk(KERN_ERR
"Could not register McBSP devices\n");
170 for (i
= 0; i
< size
; i
++) {
171 struct platform_device
*new_mcbsp
;
174 new_mcbsp
= platform_device_alloc("omap-mcbsp", i
+ 1);
177 new_mcbsp
->dev
.platform_data
= &config
[i
];
178 ret
= platform_device_add(new_mcbsp
);
180 platform_device_put(new_mcbsp
);
183 omap_mcbsp_devices
[i
] = new_mcbsp
;
188 void omap_mcbsp_register_board_cfg(struct omap_mcbsp_platform_data
*config
,
193 /*-------------------------------------------------------------------------*/
195 #if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) || \
196 defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE)
198 #define OMAP_MMC_NR_RES 2
201 * Register MMC devices. Called from mach-omap1 and mach-omap2 device init.
203 int __init
omap_mmc_add(const char *name
, int id
, unsigned long base
,
204 unsigned long size
, unsigned int irq
,
205 struct omap_mmc_platform_data
*data
)
207 struct platform_device
*pdev
;
208 struct resource res
[OMAP_MMC_NR_RES
];
211 pdev
= platform_device_alloc(name
, id
);
215 memset(res
, 0, OMAP_MMC_NR_RES
* sizeof(struct resource
));
217 res
[0].end
= base
+ size
- 1;
218 res
[0].flags
= IORESOURCE_MEM
;
219 res
[1].start
= res
[1].end
= irq
;
220 res
[1].flags
= IORESOURCE_IRQ
;
222 ret
= platform_device_add_resources(pdev
, res
, ARRAY_SIZE(res
));
224 ret
= platform_device_add_data(pdev
, data
, sizeof(*data
));
228 ret
= platform_device_add(pdev
);
234 platform_device_put(pdev
);
240 /*-------------------------------------------------------------------------*/
242 /* Numbering for the SPI-capable controllers when used for SPI:
249 #if defined(CONFIG_SPI_OMAP_UWIRE) || defined(CONFIG_SPI_OMAP_UWIRE_MODULE)
251 #define OMAP_UWIRE_BASE 0xfffb3000
253 static struct resource uwire_resources
[] = {
255 .start
= OMAP_UWIRE_BASE
,
256 .end
= OMAP_UWIRE_BASE
+ 0x20,
257 .flags
= IORESOURCE_MEM
,
261 static struct platform_device omap_uwire_device
= {
262 .name
= "omap_uwire",
264 .num_resources
= ARRAY_SIZE(uwire_resources
),
265 .resource
= uwire_resources
,
268 static void omap_init_uwire(void)
270 /* FIXME define and use a boot tag; not all boards will be hooking
271 * up devices to the microwire controller, and multi-board configs
272 * mean that CONFIG_SPI_OMAP_UWIRE may be configured anyway...
275 /* board-specific code must configure chipselects (only a few
276 * are normally used) and SCLK/SDI/SDO (each has two choices).
278 (void) platform_device_register(&omap_uwire_device
);
281 static inline void omap_init_uwire(void) {}
284 /*-------------------------------------------------------------------------*/
286 #if defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
288 static struct resource wdt_resources
[] = {
290 .flags
= IORESOURCE_MEM
,
294 static struct platform_device omap_wdt_device
= {
297 .num_resources
= ARRAY_SIZE(wdt_resources
),
298 .resource
= wdt_resources
,
301 static void omap_init_wdt(void)
303 if (cpu_is_omap16xx())
304 wdt_resources
[0].start
= 0xfffeb000;
305 else if (cpu_is_omap2420())
306 wdt_resources
[0].start
= 0x48022000; /* WDT2 */
307 else if (cpu_is_omap2430())
308 wdt_resources
[0].start
= 0x49016000; /* WDT2 */
309 else if (cpu_is_omap343x())
310 wdt_resources
[0].start
= 0x48314000; /* WDT2 */
314 wdt_resources
[0].end
= wdt_resources
[0].start
+ 0x4f;
316 (void) platform_device_register(&omap_wdt_device
);
319 static inline void omap_init_wdt(void) {}
322 /*-------------------------------------------------------------------------*/
324 #if defined(CONFIG_HW_RANDOM_OMAP) || defined(CONFIG_HW_RANDOM_OMAP_MODULE)
326 #ifdef CONFIG_ARCH_OMAP24XX
327 #define OMAP_RNG_BASE 0x480A0000
329 #define OMAP_RNG_BASE 0xfffe5000
332 static struct resource rng_resources
[] = {
334 .start
= OMAP_RNG_BASE
,
335 .end
= OMAP_RNG_BASE
+ 0x4f,
336 .flags
= IORESOURCE_MEM
,
340 static struct platform_device omap_rng_device
= {
343 .num_resources
= ARRAY_SIZE(rng_resources
),
344 .resource
= rng_resources
,
347 static void omap_init_rng(void)
349 (void) platform_device_register(&omap_rng_device
);
352 static inline void omap_init_rng(void) {}
356 * This gets called after board-specific INIT_MACHINE, and initializes most
357 * on-chip peripherals accessible on this board (except for few like USB):
359 * (a) Does any "standard config" pin muxing needed. Board-specific
360 * code will have muxed GPIO pins and done "nonstandard" setup;
361 * that code could live in the boot loader.
362 * (b) Populating board-specific platform_data with the data drivers
363 * rely on to handle wiring variations.
364 * (c) Creating platform devices as meaningful on this board and
365 * with this kernel configuration.
367 * Claiming GPIOs, and setting their direction and initial values, is the
368 * responsibility of the device drivers. So is responding to probe().
370 * Board-specific knowlege like creating devices or pin setup is to be
371 * kept out of drivers as much as possible. In particular, pin setup
372 * may be handled by the boot loader, and drivers should expect it will
373 * normally have been done by the time they're probed.
375 static int __init
omap_init_devices(void)
377 /* please keep these calls, and their implementations above,
378 * in alphabetical order so they're easier to sort through.
387 arch_initcall(omap_init_devices
);