]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/plat-omap/devices.c
[ARM] 5305/1: ARM: OMAP: Fix compile of McBSP by removing unnecessary check
[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
17 #include <mach/hardware.h>
18 #include <asm/io.h>
19 #include <asm/mach-types.h>
20 #include <asm/mach/map.h>
21
22 #include <mach/tc.h>
23 #include <mach/control.h>
24 #include <mach/board.h>
25 #include <mach/mux.h>
26 #include <mach/gpio.h>
27 #include <mach/menelaus.h>
28 #include <mach/mcbsp.h>
29 #include <mach/dsp_common.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         /* 2430 and 34xx 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
196 #ifdef CONFIG_ARCH_OMAP24XX
197 #define OMAP_MMC1_BASE          0x4809c000
198 #define OMAP_MMC1_INT           INT_24XX_MMC_IRQ
199 #else
200 #define OMAP_MMC1_BASE          0xfffb7800
201 #define OMAP_MMC1_INT           INT_MMC
202 #endif
203 #define OMAP_MMC2_BASE          0xfffb7c00      /* omap16xx only */
204
205 static struct omap_mmc_conf mmc1_conf;
206
207 static u64 mmc1_dmamask = 0xffffffff;
208
209 static struct resource mmc1_resources[] = {
210         {
211                 .start          = OMAP_MMC1_BASE,
212                 .end            = OMAP_MMC1_BASE + 0x7f,
213                 .flags          = IORESOURCE_MEM,
214         },
215         {
216                 .start          = OMAP_MMC1_INT,
217                 .flags          = IORESOURCE_IRQ,
218         },
219 };
220
221 static struct platform_device mmc_omap_device1 = {
222         .name           = "mmci-omap",
223         .id             = 1,
224         .dev = {
225                 .dma_mask       = &mmc1_dmamask,
226                 .platform_data  = &mmc1_conf,
227         },
228         .num_resources  = ARRAY_SIZE(mmc1_resources),
229         .resource       = mmc1_resources,
230 };
231
232 #ifdef  CONFIG_ARCH_OMAP16XX
233
234 static struct omap_mmc_conf mmc2_conf;
235
236 static u64 mmc2_dmamask = 0xffffffff;
237
238 static struct resource mmc2_resources[] = {
239         {
240                 .start          = OMAP_MMC2_BASE,
241                 .end            = OMAP_MMC2_BASE + 0x7f,
242                 .flags          = IORESOURCE_MEM,
243         },
244         {
245                 .start          = INT_1610_MMC2,
246                 .flags          = IORESOURCE_IRQ,
247         },
248 };
249
250 static struct platform_device mmc_omap_device2 = {
251         .name           = "mmci-omap",
252         .id             = 2,
253         .dev = {
254                 .dma_mask       = &mmc2_dmamask,
255                 .platform_data  = &mmc2_conf,
256         },
257         .num_resources  = ARRAY_SIZE(mmc2_resources),
258         .resource       = mmc2_resources,
259 };
260 #endif
261
262 static void __init omap_init_mmc(void)
263 {
264         const struct omap_mmc_config    *mmc_conf;
265         const struct omap_mmc_conf      *mmc;
266
267         /* NOTE:  assumes MMC was never (wrongly) enabled */
268         mmc_conf = omap_get_config(OMAP_TAG_MMC, struct omap_mmc_config);
269         if (!mmc_conf)
270                 return;
271
272         /* block 1 is always available and has just one pinout option */
273         mmc = &mmc_conf->mmc[0];
274         if (mmc->enabled) {
275                 if (cpu_is_omap24xx()) {
276                         omap_cfg_reg(H18_24XX_MMC_CMD);
277                         omap_cfg_reg(H15_24XX_MMC_CLKI);
278                         omap_cfg_reg(G19_24XX_MMC_CLKO);
279                         omap_cfg_reg(F20_24XX_MMC_DAT0);
280                         omap_cfg_reg(F19_24XX_MMC_DAT_DIR0);
281                         omap_cfg_reg(G18_24XX_MMC_CMD_DIR);
282                 } else {
283                         omap_cfg_reg(MMC_CMD);
284                         omap_cfg_reg(MMC_CLK);
285                         omap_cfg_reg(MMC_DAT0);
286                         if (cpu_is_omap1710()) {
287                                 omap_cfg_reg(M15_1710_MMC_CLKI);
288                                 omap_cfg_reg(P19_1710_MMC_CMDDIR);
289                                 omap_cfg_reg(P20_1710_MMC_DATDIR0);
290                         }
291                 }
292                 if (mmc->wire4) {
293                         if (cpu_is_omap24xx()) {
294                                 omap_cfg_reg(H14_24XX_MMC_DAT1);
295                                 omap_cfg_reg(E19_24XX_MMC_DAT2);
296                                 omap_cfg_reg(D19_24XX_MMC_DAT3);
297                                 omap_cfg_reg(E20_24XX_MMC_DAT_DIR1);
298                                 omap_cfg_reg(F18_24XX_MMC_DAT_DIR2);
299                                 omap_cfg_reg(E18_24XX_MMC_DAT_DIR3);
300                         } else {
301                                 omap_cfg_reg(MMC_DAT1);
302                                 /* NOTE:  DAT2 can be on W10 (here) or M15 */
303                                 if (!mmc->nomux)
304                                         omap_cfg_reg(MMC_DAT2);
305                                 omap_cfg_reg(MMC_DAT3);
306                         }
307                 }
308                 mmc1_conf = *mmc;
309                 (void) platform_device_register(&mmc_omap_device1);
310         }
311
312 #ifdef  CONFIG_ARCH_OMAP16XX
313         /* block 2 is on newer chips, and has many pinout options */
314         mmc = &mmc_conf->mmc[1];
315         if (mmc->enabled) {
316                 if (!mmc->nomux) {
317                         omap_cfg_reg(Y8_1610_MMC2_CMD);
318                         omap_cfg_reg(Y10_1610_MMC2_CLK);
319                         omap_cfg_reg(R18_1610_MMC2_CLKIN);
320                         omap_cfg_reg(W8_1610_MMC2_DAT0);
321                         if (mmc->wire4) {
322                                 omap_cfg_reg(V8_1610_MMC2_DAT1);
323                                 omap_cfg_reg(W15_1610_MMC2_DAT2);
324                                 omap_cfg_reg(R10_1610_MMC2_DAT3);
325                         }
326
327                         /* These are needed for the level shifter */
328                         omap_cfg_reg(V9_1610_MMC2_CMDDIR);
329                         omap_cfg_reg(V5_1610_MMC2_DATDIR0);
330                         omap_cfg_reg(W19_1610_MMC2_DATDIR1);
331                 }
332
333                 /* Feedback clock must be set on OMAP-1710 MMC2 */
334                 if (cpu_is_omap1710())
335                         omap_writel(omap_readl(MOD_CONF_CTRL_1) | (1 << 24),
336                                      MOD_CONF_CTRL_1);
337                 mmc2_conf = *mmc;
338                 (void) platform_device_register(&mmc_omap_device2);
339         }
340 #endif
341         return;
342 }
343 #else
344 static inline void omap_init_mmc(void) {}
345 #endif
346
347 /*-------------------------------------------------------------------------*/
348
349 /* Numbering for the SPI-capable controllers when used for SPI:
350  * spi          = 1
351  * uwire        = 2
352  * mmc1..2      = 3..4
353  * mcbsp1..3    = 5..7
354  */
355
356 #if defined(CONFIG_SPI_OMAP_UWIRE) || defined(CONFIG_SPI_OMAP_UWIRE_MODULE)
357
358 #define OMAP_UWIRE_BASE         0xfffb3000
359
360 static struct resource uwire_resources[] = {
361         {
362                 .start          = OMAP_UWIRE_BASE,
363                 .end            = OMAP_UWIRE_BASE + 0x20,
364                 .flags          = IORESOURCE_MEM,
365         },
366 };
367
368 static struct platform_device omap_uwire_device = {
369         .name      = "omap_uwire",
370         .id          = -1,
371         .num_resources  = ARRAY_SIZE(uwire_resources),
372         .resource       = uwire_resources,
373 };
374
375 static void omap_init_uwire(void)
376 {
377         /* FIXME define and use a boot tag; not all boards will be hooking
378          * up devices to the microwire controller, and multi-board configs
379          * mean that CONFIG_SPI_OMAP_UWIRE may be configured anyway...
380          */
381
382         /* board-specific code must configure chipselects (only a few
383          * are normally used) and SCLK/SDI/SDO (each has two choices).
384          */
385         (void) platform_device_register(&omap_uwire_device);
386 }
387 #else
388 static inline void omap_init_uwire(void) {}
389 #endif
390
391 /*-------------------------------------------------------------------------*/
392
393 #if     defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
394
395 #if defined(CONFIG_ARCH_OMAP34XX)
396 #define OMAP_WDT_BASE           0x48314000
397 #elif defined(CONFIG_ARCH_OMAP24XX)
398
399 #ifdef CONFIG_ARCH_OMAP2430
400 /* WDT2 */
401 #define OMAP_WDT_BASE           0x49016000
402 #else
403 #define OMAP_WDT_BASE           0x48022000
404 #endif
405
406 #else
407 #define OMAP_WDT_BASE           0xfffeb000
408 #endif
409
410 static struct resource wdt_resources[] = {
411         {
412                 .start          = OMAP_WDT_BASE,
413                 .end            = OMAP_WDT_BASE + 0x4f,
414                 .flags          = IORESOURCE_MEM,
415         },
416 };
417
418 static struct platform_device omap_wdt_device = {
419         .name      = "omap_wdt",
420         .id          = -1,
421         .num_resources  = ARRAY_SIZE(wdt_resources),
422         .resource       = wdt_resources,
423 };
424
425 static void omap_init_wdt(void)
426 {
427         (void) platform_device_register(&omap_wdt_device);
428 }
429 #else
430 static inline void omap_init_wdt(void) {}
431 #endif
432
433 /*-------------------------------------------------------------------------*/
434
435 #if defined(CONFIG_HW_RANDOM_OMAP) || defined(CONFIG_HW_RANDOM_OMAP_MODULE)
436
437 #ifdef CONFIG_ARCH_OMAP24XX
438 #define OMAP_RNG_BASE           0x480A0000
439 #else
440 #define OMAP_RNG_BASE           0xfffe5000
441 #endif
442
443 static struct resource rng_resources[] = {
444         {
445                 .start          = OMAP_RNG_BASE,
446                 .end            = OMAP_RNG_BASE + 0x4f,
447                 .flags          = IORESOURCE_MEM,
448         },
449 };
450
451 static struct platform_device omap_rng_device = {
452         .name      = "omap_rng",
453         .id          = -1,
454         .num_resources  = ARRAY_SIZE(rng_resources),
455         .resource       = rng_resources,
456 };
457
458 static void omap_init_rng(void)
459 {
460         (void) platform_device_register(&omap_rng_device);
461 }
462 #else
463 static inline void omap_init_rng(void) {}
464 #endif
465
466 /*
467  * This gets called after board-specific INIT_MACHINE, and initializes most
468  * on-chip peripherals accessible on this board (except for few like USB):
469  *
470  *  (a) Does any "standard config" pin muxing needed.  Board-specific
471  *      code will have muxed GPIO pins and done "nonstandard" setup;
472  *      that code could live in the boot loader.
473  *  (b) Populating board-specific platform_data with the data drivers
474  *      rely on to handle wiring variations.
475  *  (c) Creating platform devices as meaningful on this board and
476  *      with this kernel configuration.
477  *
478  * Claiming GPIOs, and setting their direction and initial values, is the
479  * responsibility of the device drivers.  So is responding to probe().
480  *
481  * Board-specific knowlege like creating devices or pin setup is to be
482  * kept out of drivers as much as possible.  In particular, pin setup
483  * may be handled by the boot loader, and drivers should expect it will
484  * normally have been done by the time they're probed.
485  */
486 static int __init omap_init_devices(void)
487 {
488         /* please keep these calls, and their implementations above,
489          * in alphabetical order so they're easier to sort through.
490          */
491         omap_init_dsp();
492         omap_init_kp();
493         omap_init_mmc();
494         omap_init_uwire();
495         omap_init_wdt();
496         omap_init_rng();
497         return 0;
498 }
499 arch_initcall(omap_init_devices);