]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/plat-omap/devices.c
Revert "ARM: OMAP: Get rid of controller vs slot confusion, initialize MMC devices...
[linux-2.6-omap-h63xx.git] / arch / arm / plat-omap / devices.c
1 /*
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
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/io.h>
17 #include <linux/i2c/menelaus.h>
18
19 #include <mach/hardware.h>
20 #include <asm/mach-types.h>
21 #include <asm/mach/map.h>
22
23 #include <mach/tc.h>
24 #include <mach/board.h>
25 #include <mach/mmc.h>
26 #include <mach/mux.h>
27 #include <mach/gpio.h>
28 #include <mach/dsp_common.h>
29 #include <mach/mcbsp.h>
30
31 #if     defined(CONFIG_OMAP_DSP) || defined(CONFIG_OMAP_DSP_MODULE)
32
33 static struct dsp_platform_data dsp_pdata = {
34         .kdev_list = LIST_HEAD_INIT(dsp_pdata.kdev_list),
35 };
36
37 static struct resource omap_dsp_resources[] = {
38         {
39                 .name   = "dsp_mmu",
40                 .start  = -1,
41                 .flags  = IORESOURCE_IRQ,
42         },
43 };
44
45 static struct platform_device omap_dsp_device = {
46         .name           = "dsp",
47         .id             = -1,
48         .num_resources  = ARRAY_SIZE(omap_dsp_resources),
49         .resource       = omap_dsp_resources,
50         .dev = {
51                 .platform_data = &dsp_pdata,
52         },
53 };
54
55 static inline void omap_init_dsp(void)
56 {
57         struct resource *res;
58         int irq;
59
60         if (cpu_is_omap15xx())
61                 irq = INT_1510_DSP_MMU;
62         else if (cpu_is_omap16xx())
63                 irq = INT_1610_DSP_MMU;
64         else if (cpu_is_omap24xx())
65                 irq = INT_24XX_DSP_MMU;
66
67         res = platform_get_resource_byname(&omap_dsp_device,
68                                            IORESOURCE_IRQ, "dsp_mmu");
69         res->start = irq;
70
71         platform_device_register(&omap_dsp_device);
72 }
73
74 int dsp_kfunc_device_register(struct dsp_kfunc_device *kdev)
75 {
76         static DEFINE_MUTEX(dsp_pdata_lock);
77
78         spin_lock_init(&kdev->lock);
79
80         mutex_lock(&dsp_pdata_lock);
81         list_add_tail(&kdev->entry, &dsp_pdata.kdev_list);
82         mutex_unlock(&dsp_pdata_lock);
83
84         return 0;
85 }
86 EXPORT_SYMBOL(dsp_kfunc_device_register);
87
88 #else
89 static inline void omap_init_dsp(void) { }
90 #endif  /* CONFIG_OMAP_DSP */
91
92 /*-------------------------------------------------------------------------*/
93 #if     defined(CONFIG_KEYBOARD_OMAP) || defined(CONFIG_KEYBOARD_OMAP_MODULE)
94
95 static void omap_init_kp(void)
96 {
97         /* REVISIT: 2430 keypad is on TWL4030 */
98         if (cpu_is_omap2430() || cpu_is_omap34xx())
99                 return;
100
101         if (machine_is_omap_h2() || machine_is_omap_h3()) {
102                 omap_cfg_reg(F18_1610_KBC0);
103                 omap_cfg_reg(D20_1610_KBC1);
104                 omap_cfg_reg(D19_1610_KBC2);
105                 omap_cfg_reg(E18_1610_KBC3);
106                 omap_cfg_reg(C21_1610_KBC4);
107
108                 omap_cfg_reg(G18_1610_KBR0);
109                 omap_cfg_reg(F19_1610_KBR1);
110                 omap_cfg_reg(H14_1610_KBR2);
111                 omap_cfg_reg(E20_1610_KBR3);
112                 omap_cfg_reg(E19_1610_KBR4);
113                 omap_cfg_reg(N19_1610_KBR5);
114         } else if (machine_is_omap_perseus2() || machine_is_omap_fsample()) {
115                 omap_cfg_reg(E2_730_KBR0);
116                 omap_cfg_reg(J7_730_KBR1);
117                 omap_cfg_reg(E1_730_KBR2);
118                 omap_cfg_reg(F3_730_KBR3);
119                 omap_cfg_reg(D2_730_KBR4);
120
121                 omap_cfg_reg(C2_730_KBC0);
122                 omap_cfg_reg(D3_730_KBC1);
123                 omap_cfg_reg(E4_730_KBC2);
124                 omap_cfg_reg(F4_730_KBC3);
125                 omap_cfg_reg(E3_730_KBC4);
126         } else if (machine_is_omap_h4()) {
127                 omap_cfg_reg(T19_24XX_KBR0);
128                 omap_cfg_reg(R19_24XX_KBR1);
129                 omap_cfg_reg(V18_24XX_KBR2);
130                 omap_cfg_reg(M21_24XX_KBR3);
131                 omap_cfg_reg(E5__24XX_KBR4);
132                 if (omap_has_menelaus()) {
133                         omap_cfg_reg(B3__24XX_KBR5);
134                         omap_cfg_reg(AA4_24XX_KBC2);
135                         omap_cfg_reg(B13_24XX_KBC6);
136                 } else {
137                         omap_cfg_reg(M18_24XX_KBR5);
138                         omap_cfg_reg(H19_24XX_KBC2);
139                         omap_cfg_reg(N19_24XX_KBC6);
140                 }
141                 omap_cfg_reg(R20_24XX_KBC0);
142                 omap_cfg_reg(M14_24XX_KBC1);
143                 omap_cfg_reg(V17_24XX_KBC3);
144                 omap_cfg_reg(P21_24XX_KBC4);
145                 omap_cfg_reg(L14_24XX_KBC5);
146         }
147 }
148 #else
149 static inline void omap_init_kp(void) {}
150 #endif
151
152 /*-------------------------------------------------------------------------*/
153 #if defined(CONFIG_OMAP_MCBSP) || defined(CONFIG_OMAP_MCBSP_MODULE)
154
155 static struct platform_device **omap_mcbsp_devices;
156
157 void omap_mcbsp_register_board_cfg(struct omap_mcbsp_platform_data *config,
158                                         int size)
159 {
160         int i;
161
162         omap_mcbsp_devices = kzalloc(size * sizeof(struct platform_device *),
163                                      GFP_KERNEL);
164         if (!omap_mcbsp_devices) {
165                 printk(KERN_ERR "Could not register McBSP devices\n");
166                 return;
167         }
168
169         for (i = 0; i < size; i++) {
170                 struct platform_device *new_mcbsp;
171                 int ret;
172
173                 new_mcbsp = platform_device_alloc("omap-mcbsp", i + 1);
174                 if (!new_mcbsp)
175                         continue;
176                 new_mcbsp->dev.platform_data = &config[i];
177                 ret = platform_device_add(new_mcbsp);
178                 if (ret) {
179                         platform_device_put(new_mcbsp);
180                         continue;
181                 }
182                 omap_mcbsp_devices[i] = new_mcbsp;
183         }
184 }
185
186 #else
187 void omap_mcbsp_register_board_cfg(struct omap_mcbsp_platform_data *config,
188                                         int size)
189 {  }
190 #endif
191
192 /*-------------------------------------------------------------------------*/
193
194 #if     defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) || \
195         defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE)
196
197 /*
198  * Register MMC devices. Called from mach-omap1 and mach-omap2 device init.
199  */
200 void omap_init_mmc(struct omap_mmc_platform_data *info,
201                 struct platform_device *pdev1, struct platform_device *pdev2)
202 {
203         if (!info)
204                 return;
205
206         if (info->slots[0].enabled && pdev1)
207                 (void) platform_device_register(pdev1);
208
209         if (info->slots[1].enabled && pdev2)
210                 (void) platform_device_register(pdev2);
211 }
212
213 #endif
214
215 /*-------------------------------------------------------------------------*/
216
217 /* Numbering for the SPI-capable controllers when used for SPI:
218  * spi          = 1
219  * uwire        = 2
220  * mmc1..2      = 3..4
221  * mcbsp1..3    = 5..7
222  */
223
224 #if defined(CONFIG_SPI_OMAP_UWIRE) || defined(CONFIG_SPI_OMAP_UWIRE_MODULE)
225
226 #define OMAP_UWIRE_BASE         0xfffb3000
227
228 static struct resource uwire_resources[] = {
229         {
230                 .start          = OMAP_UWIRE_BASE,
231                 .end            = OMAP_UWIRE_BASE + 0x20,
232                 .flags          = IORESOURCE_MEM,
233         },
234 };
235
236 static struct platform_device omap_uwire_device = {
237         .name      = "omap_uwire",
238         .id          = -1,
239         .num_resources  = ARRAY_SIZE(uwire_resources),
240         .resource       = uwire_resources,
241 };
242
243 static void omap_init_uwire(void)
244 {
245         /* FIXME define and use a boot tag; not all boards will be hooking
246          * up devices to the microwire controller, and multi-board configs
247          * mean that CONFIG_SPI_OMAP_UWIRE may be configured anyway...
248          */
249
250         /* board-specific code must configure chipselects (only a few
251          * are normally used) and SCLK/SDI/SDO (each has two choices).
252          */
253         (void) platform_device_register(&omap_uwire_device);
254 }
255 #else
256 static inline void omap_init_uwire(void) {}
257 #endif
258
259 /*-------------------------------------------------------------------------*/
260
261 #if     defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
262
263 static struct resource wdt_resources[] = {
264         {
265                 .flags          = IORESOURCE_MEM,
266         },
267 };
268
269 static struct platform_device omap_wdt_device = {
270         .name      = "omap_wdt",
271         .id          = -1,
272         .num_resources  = ARRAY_SIZE(wdt_resources),
273         .resource       = wdt_resources,
274 };
275
276 static void omap_init_wdt(void)
277 {
278         if (cpu_is_omap16xx())
279                 wdt_resources[0].start = 0xfffeb000;
280         else if (cpu_is_omap2420())
281                 wdt_resources[0].start = 0x48022000; /* WDT2 */
282         else if (cpu_is_omap2430())
283                 wdt_resources[0].start = 0x49016000; /* WDT2 */
284         else if (cpu_is_omap343x())
285                 wdt_resources[0].start = 0x48314000; /* WDT2 */
286         else
287                 return;
288
289         wdt_resources[0].end = wdt_resources[0].start + 0x4f;
290
291         (void) platform_device_register(&omap_wdt_device);
292 }
293 #else
294 static inline void omap_init_wdt(void) {}
295 #endif
296
297 /*-------------------------------------------------------------------------*/
298
299 #if defined(CONFIG_HW_RANDOM_OMAP) || defined(CONFIG_HW_RANDOM_OMAP_MODULE)
300
301 #ifdef CONFIG_ARCH_OMAP24XX
302 #define OMAP_RNG_BASE           0x480A0000
303 #else
304 #define OMAP_RNG_BASE           0xfffe5000
305 #endif
306
307 static struct resource rng_resources[] = {
308         {
309                 .start          = OMAP_RNG_BASE,
310                 .end            = OMAP_RNG_BASE + 0x4f,
311                 .flags          = IORESOURCE_MEM,
312         },
313 };
314
315 static struct platform_device omap_rng_device = {
316         .name      = "omap_rng",
317         .id          = -1,
318         .num_resources  = ARRAY_SIZE(rng_resources),
319         .resource       = rng_resources,
320 };
321
322 static void omap_init_rng(void)
323 {
324         (void) platform_device_register(&omap_rng_device);
325 }
326 #else
327 static inline void omap_init_rng(void) {}
328 #endif
329
330 /*
331  * This gets called after board-specific INIT_MACHINE, and initializes most
332  * on-chip peripherals accessible on this board (except for few like USB):
333  *
334  *  (a) Does any "standard config" pin muxing needed.  Board-specific
335  *      code will have muxed GPIO pins and done "nonstandard" setup;
336  *      that code could live in the boot loader.
337  *  (b) Populating board-specific platform_data with the data drivers
338  *      rely on to handle wiring variations.
339  *  (c) Creating platform devices as meaningful on this board and
340  *      with this kernel configuration.
341  *
342  * Claiming GPIOs, and setting their direction and initial values, is the
343  * responsibility of the device drivers.  So is responding to probe().
344  *
345  * Board-specific knowlege like creating devices or pin setup is to be
346  * kept out of drivers as much as possible.  In particular, pin setup
347  * may be handled by the boot loader, and drivers should expect it will
348  * normally have been done by the time they're probed.
349  */
350 static int __init omap_init_devices(void)
351 {
352         /* please keep these calls, and their implementations above,
353          * in alphabetical order so they're easier to sort through.
354          */
355         omap_init_dsp();
356         omap_init_kp();
357         omap_init_uwire();
358         omap_init_wdt();
359         omap_init_rng();
360         return 0;
361 }
362 arch_initcall(omap_init_devices);