blob: ac15c23fd5da840e5816e6223b3456d60b24c0c6 [file] [log] [blame]
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001/*
2 * linux/arch/arm/plat-omap/devices.c
3 *
4 * Common platform device setup/initialization for OMAP1 and OMAP2
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
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000012#include <linux/module.h>
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/platform_device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010016#include <linux/io.h>
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000017
Russell Kinga09e64f2008-08-05 16:14:15 +010018#include <mach/hardware.h>
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000019#include <asm/mach-types.h>
20#include <asm/mach/map.h>
21
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/tc.h>
Tony Lindgren646e3ed2008-10-06 15:49:36 +030023#include <mach/control.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010024#include <mach/board.h>
Russell King7736c092008-09-09 10:16:22 +010025#include <mach/mmc.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/mux.h>
27#include <mach/gpio.h>
28#include <mach/menelaus.h>
29#include <mach/mcbsp.h>
Tony Lindgren646e3ed2008-10-06 15:49:36 +030030#include <mach/dsp_common.h>
Tony Lindgren1a8bfa12005-11-10 14:26:50 +000031
Tony Lindgrenc40fae952006-12-07 13:58:10 -080032#if defined(CONFIG_OMAP_DSP) || defined(CONFIG_OMAP_DSP_MODULE)
33
Tony Lindgrenc40fae952006-12-07 13:58:10 -080034static struct dsp_platform_data dsp_pdata = {
35 .kdev_list = LIST_HEAD_INIT(dsp_pdata.kdev_list),
36};
37
38static struct resource omap_dsp_resources[] = {
39 {
40 .name = "dsp_mmu",
41 .start = -1,
42 .flags = IORESOURCE_IRQ,
43 },
44};
45
46static struct platform_device omap_dsp_device = {
47 .name = "dsp",
48 .id = -1,
49 .num_resources = ARRAY_SIZE(omap_dsp_resources),
50 .resource = omap_dsp_resources,
51 .dev = {
52 .platform_data = &dsp_pdata,
53 },
54};
55
56static inline void omap_init_dsp(void)
57{
58 struct resource *res;
59 int irq;
60
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;
67
68 res = platform_get_resource_byname(&omap_dsp_device,
69 IORESOURCE_IRQ, "dsp_mmu");
70 res->start = irq;
71
72 platform_device_register(&omap_dsp_device);
73}
74
75int dsp_kfunc_device_register(struct dsp_kfunc_device *kdev)
76{
77 static DEFINE_MUTEX(dsp_pdata_lock);
78
Tony Lindgren646e3ed2008-10-06 15:49:36 +030079 spin_lock_init(&kdev->lock);
Tony Lindgrenc40fae952006-12-07 13:58:10 -080080
81 mutex_lock(&dsp_pdata_lock);
82 list_add_tail(&kdev->entry, &dsp_pdata.kdev_list);
83 mutex_unlock(&dsp_pdata_lock);
84
85 return 0;
86}
87EXPORT_SYMBOL(dsp_kfunc_device_register);
88
89#else
90static inline void omap_init_dsp(void) { }
91#endif /* CONFIG_OMAP_DSP */
92
93/*-------------------------------------------------------------------------*/
Tony Lindgren9b6553c2006-04-02 17:46:30 +010094#if defined(CONFIG_KEYBOARD_OMAP) || defined(CONFIG_KEYBOARD_OMAP_MODULE)
95
96static void omap_init_kp(void)
97{
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +030098 /* 2430 and 34xx keypad is on TWL4030 */
99 if (cpu_is_omap2430() || cpu_is_omap34xx())
100 return;
101
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100102 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);
108
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);
Brian Swetland495f71d2006-06-26 16:16:03 -0700115 } else if (machine_is_omap_perseus2() || machine_is_omap_fsample()) {
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100116 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);
121
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);
137 } else {
138 omap_cfg_reg(M18_24XX_KBR5);
139 omap_cfg_reg(H19_24XX_KBC2);
140 omap_cfg_reg(N19_24XX_KBC6);
141 }
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);
147 }
148}
149#else
150static inline void omap_init_kp(void) {}
151#endif
152
153/*-------------------------------------------------------------------------*/
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300154#if defined(CONFIG_OMAP_MCBSP) || defined(CONFIG_OMAP_MCBSP_MODULE)
155
156static struct platform_device **omap_mcbsp_devices;
157
158void omap_mcbsp_register_board_cfg(struct omap_mcbsp_platform_data *config,
159 int size)
160{
161 int i;
162
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300163 omap_mcbsp_devices = kzalloc(size * sizeof(struct platform_device *),
164 GFP_KERNEL);
165 if (!omap_mcbsp_devices) {
166 printk(KERN_ERR "Could not register McBSP devices\n");
167 return;
168 }
169
170 for (i = 0; i < size; i++) {
171 struct platform_device *new_mcbsp;
172 int ret;
173
174 new_mcbsp = platform_device_alloc("omap-mcbsp", i + 1);
175 if (!new_mcbsp)
176 continue;
177 new_mcbsp->dev.platform_data = &config[i];
178 ret = platform_device_add(new_mcbsp);
179 if (ret) {
180 platform_device_put(new_mcbsp);
181 continue;
182 }
183 omap_mcbsp_devices[i] = new_mcbsp;
184 }
185}
186
187#else
188void omap_mcbsp_register_board_cfg(struct omap_mcbsp_platform_data *config,
189 int size)
190{ }
191#endif
192
193/*-------------------------------------------------------------------------*/
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000194
Tony Lindgrend8874662008-12-10 17:37:16 -0800195#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) || \
Russell King7736c092008-09-09 10:16:22 +0100196 defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE)
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000197
Tony Lindgrend8874662008-12-10 17:37:16 -0800198#define OMAP_MMC_NR_RES 2
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000199
Tony Lindgrend8874662008-12-10 17:37:16 -0800200/*
201 * Register MMC devices. Called from mach-omap1 and mach-omap2 device init.
202 */
203int __init omap_mmc_add(int id, unsigned long base, unsigned long size,
204 unsigned int irq, struct omap_mmc_platform_data *data)
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000205{
Tony Lindgrend8874662008-12-10 17:37:16 -0800206 struct platform_device *pdev;
207 struct resource res[OMAP_MMC_NR_RES];
208 int ret;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000209
Tony Lindgrend8874662008-12-10 17:37:16 -0800210 pdev = platform_device_alloc("mmci-omap", id);
211 if (!pdev)
212 return -ENOMEM;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000213
Tony Lindgrend8874662008-12-10 17:37:16 -0800214 memset(res, 0, OMAP_MMC_NR_RES * sizeof(struct resource));
215 res[0].start = base;
216 res[0].end = base + size - 1;
217 res[0].flags = IORESOURCE_MEM;
218 res[1].start = res[1].end = irq;
219 res[1].flags = IORESOURCE_IRQ;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000220
Tony Lindgrend8874662008-12-10 17:37:16 -0800221 ret = platform_device_add_resources(pdev, res, ARRAY_SIZE(res));
222 if (ret == 0)
223 ret = platform_device_add_data(pdev, data, sizeof(*data));
224 if (ret)
225 goto fail;
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000226
Tony Lindgrend8874662008-12-10 17:37:16 -0800227 ret = platform_device_add(pdev);
228 if (ret)
229 goto fail;
230 return 0;
231
232fail:
233 platform_device_put(pdev);
234 return ret;
Russell King7736c092008-09-09 10:16:22 +0100235}
236
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000237#endif
238
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100239/*-------------------------------------------------------------------------*/
240
241/* Numbering for the SPI-capable controllers when used for SPI:
242 * spi = 1
243 * uwire = 2
244 * mmc1..2 = 3..4
245 * mcbsp1..3 = 5..7
246 */
247
248#if defined(CONFIG_SPI_OMAP_UWIRE) || defined(CONFIG_SPI_OMAP_UWIRE_MODULE)
249
250#define OMAP_UWIRE_BASE 0xfffb3000
251
252static struct resource uwire_resources[] = {
253 {
254 .start = OMAP_UWIRE_BASE,
255 .end = OMAP_UWIRE_BASE + 0x20,
256 .flags = IORESOURCE_MEM,
257 },
258};
259
260static struct platform_device omap_uwire_device = {
261 .name = "omap_uwire",
262 .id = -1,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100263 .num_resources = ARRAY_SIZE(uwire_resources),
264 .resource = uwire_resources,
265};
266
267static void omap_init_uwire(void)
268{
269 /* FIXME define and use a boot tag; not all boards will be hooking
270 * up devices to the microwire controller, and multi-board configs
271 * mean that CONFIG_SPI_OMAP_UWIRE may be configured anyway...
272 */
273
274 /* board-specific code must configure chipselects (only a few
275 * are normally used) and SCLK/SDI/SDO (each has two choices).
276 */
277 (void) platform_device_register(&omap_uwire_device);
278}
279#else
280static inline void omap_init_uwire(void) {}
281#endif
282
283/*-------------------------------------------------------------------------*/
284
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000285#if defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
286
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000287static struct resource wdt_resources[] = {
288 {
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000289 .flags = IORESOURCE_MEM,
290 },
291};
292
293static struct platform_device omap_wdt_device = {
294 .name = "omap_wdt",
295 .id = -1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000296 .num_resources = ARRAY_SIZE(wdt_resources),
297 .resource = wdt_resources,
298};
299
300static void omap_init_wdt(void)
301{
Felipe Balbi28171422008-09-20 04:14:01 +0300302 if (cpu_is_omap16xx())
303 wdt_resources[0].start = 0xfffeb000;
304 else if (cpu_is_omap2420())
305 wdt_resources[0].start = 0x48022000; /* WDT2 */
306 else if (cpu_is_omap2430())
307 wdt_resources[0].start = 0x49016000; /* WDT2 */
308 else if (cpu_is_omap343x())
309 wdt_resources[0].start = 0x48314000; /* WDT2 */
310 else
311 return;
312
313 wdt_resources[0].end = wdt_resources[0].start + 0x4f;
314
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000315 (void) platform_device_register(&omap_wdt_device);
316}
317#else
318static inline void omap_init_wdt(void) {}
319#endif
320
321/*-------------------------------------------------------------------------*/
322
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800323#if defined(CONFIG_HW_RANDOM_OMAP) || defined(CONFIG_HW_RANDOM_OMAP_MODULE)
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000324
325#ifdef CONFIG_ARCH_OMAP24XX
326#define OMAP_RNG_BASE 0x480A0000
327#else
328#define OMAP_RNG_BASE 0xfffe5000
329#endif
330
331static struct resource rng_resources[] = {
332 {
333 .start = OMAP_RNG_BASE,
334 .end = OMAP_RNG_BASE + 0x4f,
335 .flags = IORESOURCE_MEM,
336 },
337};
338
339static struct platform_device omap_rng_device = {
340 .name = "omap_rng",
341 .id = -1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000342 .num_resources = ARRAY_SIZE(rng_resources),
343 .resource = rng_resources,
344};
345
346static void omap_init_rng(void)
347{
348 (void) platform_device_register(&omap_rng_device);
349}
350#else
351static inline void omap_init_rng(void) {}
352#endif
353
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000354/*
355 * This gets called after board-specific INIT_MACHINE, and initializes most
356 * on-chip peripherals accessible on this board (except for few like USB):
357 *
358 * (a) Does any "standard config" pin muxing needed. Board-specific
359 * code will have muxed GPIO pins and done "nonstandard" setup;
360 * that code could live in the boot loader.
361 * (b) Populating board-specific platform_data with the data drivers
362 * rely on to handle wiring variations.
363 * (c) Creating platform devices as meaningful on this board and
364 * with this kernel configuration.
365 *
366 * Claiming GPIOs, and setting their direction and initial values, is the
367 * responsibility of the device drivers. So is responding to probe().
368 *
369 * Board-specific knowlege like creating devices or pin setup is to be
370 * kept out of drivers as much as possible. In particular, pin setup
371 * may be handled by the boot loader, and drivers should expect it will
372 * normally have been done by the time they're probed.
373 */
374static int __init omap_init_devices(void)
375{
376 /* please keep these calls, and their implementations above,
377 * in alphabetical order so they're easier to sort through.
378 */
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800379 omap_init_dsp();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100380 omap_init_kp();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100381 omap_init_uwire();
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000382 omap_init_wdt();
383 omap_init_rng();
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000384 return 0;
385}
386arch_initcall(omap_init_devices);