]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/plat-omap/devices.c
OMAP: DSP: N800: remaining updates for dsp parts
[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 <asm/hardware.h>
18 #include <asm/io.h>
19 #include <asm/mach-types.h>
20 #include <asm/mach/map.h>
21
22 #include <asm/arch/tc.h>
23 #include <asm/arch/board.h>
24 #include <asm/arch/mux.h>
25 #include <asm/arch/gpio.h>
26 #include <asm/arch/menelaus.h>
27
28 #if     defined(CONFIG_OMAP_DSP) || defined(CONFIG_OMAP_DSP_MODULE)
29
30 #include "../plat-omap/dsp/dsp_common.h"
31
32 static struct dsp_platform_data dsp_pdata = {
33         .kdev_list = LIST_HEAD_INIT(dsp_pdata.kdev_list),
34 };
35
36 static struct resource omap_dsp_resources[] = {
37         {
38                 .name   = "dsp_mmu",
39                 .start  = -1,
40                 .flags  = IORESOURCE_IRQ,
41         },
42 };
43
44 static struct platform_device omap_dsp_device = {
45         .name           = "dsp",
46         .id             = -1,
47         .num_resources  = ARRAY_SIZE(omap_dsp_resources),
48         .resource       = omap_dsp_resources,
49         .dev = {
50                 .platform_data = &dsp_pdata,
51         },
52 };
53
54 static inline void omap_init_dsp(void)
55 {
56         struct resource *res;
57         int irq;
58
59         if (cpu_is_omap15xx())
60                 irq = INT_1510_DSP_MMU;
61         else if (cpu_is_omap16xx())
62                 irq = INT_1610_DSP_MMU;
63         else if (cpu_is_omap24xx())
64                 irq = INT_24XX_DSP_MMU;
65
66         res = platform_get_resource_byname(&omap_dsp_device,
67                                            IORESOURCE_IRQ, "dsp_mmu");
68         res->start = irq;
69
70         platform_device_register(&omap_dsp_device);
71 }
72
73 int dsp_kfunc_device_register(struct dsp_kfunc_device *kdev)
74 {
75         static DEFINE_MUTEX(dsp_pdata_lock);
76
77         spin_lock_init(&kdev->lock);
78
79         mutex_lock(&dsp_pdata_lock);
80         list_add_tail(&kdev->entry, &dsp_pdata.kdev_list);
81         mutex_unlock(&dsp_pdata_lock);
82
83         return 0;
84 }
85 EXPORT_SYMBOL(dsp_kfunc_device_register);
86
87 #else
88 static inline void omap_init_dsp(void) { }
89 #endif  /* CONFIG_OMAP_DSP */
90
91 /*-------------------------------------------------------------------------*/
92 #if     defined(CONFIG_I2C_OMAP) || defined(CONFIG_I2C_OMAP_MODULE)
93
94 #define OMAP1_I2C_BASE          0xfffb3800
95 #define OMAP2_I2C_BASE1         0x48070000
96 #define OMAP_I2C_SIZE           0x3f
97 #define OMAP1_I2C_INT           INT_I2C
98 #define OMAP2_I2C_INT1          56
99
100 static struct resource i2c_resources1[] = {
101         {
102                 .start          = 0,
103                 .end            = 0,
104                 .flags          = IORESOURCE_MEM,
105         },
106         {
107                 .start          = 0,
108                 .flags          = IORESOURCE_IRQ,
109         },
110 };
111
112 /* DMA not used; works around erratum writing to non-empty i2c fifo */
113
114 static struct platform_device omap_i2c_device1 = {
115         .name           = "i2c_omap",
116         .id             = 1,
117         .num_resources  = ARRAY_SIZE(i2c_resources1),
118         .resource       = i2c_resources1,
119 };
120
121 /* See also arch/arm/mach-omap2/devices.c for second I2C on 24xx */
122 static void omap_init_i2c(void)
123 {
124         if (cpu_is_omap24xx()) {
125                 i2c_resources1[0].start = OMAP2_I2C_BASE1;
126                 i2c_resources1[0].end = OMAP2_I2C_BASE1 + OMAP_I2C_SIZE;
127                 i2c_resources1[1].start = OMAP2_I2C_INT1;
128         } else {
129                 i2c_resources1[0].start = OMAP1_I2C_BASE;
130                 i2c_resources1[0].end = OMAP1_I2C_BASE + OMAP_I2C_SIZE;
131                 i2c_resources1[1].start = OMAP1_I2C_INT;
132         }
133
134         /* FIXME define and use a boot tag, in case of boards that
135          * either don't wire up I2C, or chips that mux it differently...
136          * it can include clocking and address info, maybe more.
137          */
138         if (cpu_is_omap24xx()) {
139                 if (machine_is_omap_h4()) {
140                         omap_cfg_reg(M19_24XX_I2C1_SCL);
141                         omap_cfg_reg(L15_24XX_I2C1_SDA);
142                 }
143         } else {
144                 omap_cfg_reg(I2C_SCL);
145                 omap_cfg_reg(I2C_SDA);
146         }
147
148         (void) platform_device_register(&omap_i2c_device1);
149 }
150
151 #else
152 static inline void omap_init_i2c(void) {}
153 #endif
154
155 /*-------------------------------------------------------------------------*/
156 #if     defined(CONFIG_KEYBOARD_OMAP) || defined(CONFIG_KEYBOARD_OMAP_MODULE)
157
158 static void omap_init_kp(void)
159 {
160         if (machine_is_omap_h2() || machine_is_omap_h3()) {
161                 omap_cfg_reg(F18_1610_KBC0);
162                 omap_cfg_reg(D20_1610_KBC1);
163                 omap_cfg_reg(D19_1610_KBC2);
164                 omap_cfg_reg(E18_1610_KBC3);
165                 omap_cfg_reg(C21_1610_KBC4);
166
167                 omap_cfg_reg(G18_1610_KBR0);
168                 omap_cfg_reg(F19_1610_KBR1);
169                 omap_cfg_reg(H14_1610_KBR2);
170                 omap_cfg_reg(E20_1610_KBR3);
171                 omap_cfg_reg(E19_1610_KBR4);
172                 omap_cfg_reg(N19_1610_KBR5);
173         } else if (machine_is_omap_perseus2() || machine_is_omap_fsample()) {
174                 omap_cfg_reg(E2_730_KBR0);
175                 omap_cfg_reg(J7_730_KBR1);
176                 omap_cfg_reg(E1_730_KBR2);
177                 omap_cfg_reg(F3_730_KBR3);
178                 omap_cfg_reg(D2_730_KBR4);
179
180                 omap_cfg_reg(C2_730_KBC0);
181                 omap_cfg_reg(D3_730_KBC1);
182                 omap_cfg_reg(E4_730_KBC2);
183                 omap_cfg_reg(F4_730_KBC3);
184                 omap_cfg_reg(E3_730_KBC4);
185         } else if (machine_is_omap_h4()) {
186                 omap_cfg_reg(T19_24XX_KBR0);
187                 omap_cfg_reg(R19_24XX_KBR1);
188                 omap_cfg_reg(V18_24XX_KBR2);
189                 omap_cfg_reg(M21_24XX_KBR3);
190                 omap_cfg_reg(E5__24XX_KBR4);
191                 if (omap_has_menelaus()) {
192                         omap_cfg_reg(B3__24XX_KBR5);
193                         omap_cfg_reg(AA4_24XX_KBC2);
194                         omap_cfg_reg(B13_24XX_KBC6);
195                 } else {
196                         omap_cfg_reg(M18_24XX_KBR5);
197                         omap_cfg_reg(H19_24XX_KBC2);
198                         omap_cfg_reg(N19_24XX_KBC6);
199                 }
200                 omap_cfg_reg(R20_24XX_KBC0);
201                 omap_cfg_reg(M14_24XX_KBC1);
202                 omap_cfg_reg(V17_24XX_KBC3);
203                 omap_cfg_reg(P21_24XX_KBC4);
204                 omap_cfg_reg(L14_24XX_KBC5);
205         }
206 }
207 #else
208 static inline void omap_init_kp(void) {}
209 #endif
210
211 /*-------------------------------------------------------------------------*/
212
213 #if     defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
214
215 #ifdef CONFIG_ARCH_OMAP24XX
216 #define OMAP_MMC1_BASE          0x4809c000
217 #define OMAP_MMC1_INT           INT_24XX_MMC_IRQ
218 #else
219 #define OMAP_MMC1_BASE          0xfffb7800
220 #define OMAP_MMC1_INT           INT_MMC
221 #endif
222 #define OMAP_MMC2_BASE          0xfffb7c00      /* omap16xx only */
223
224 static struct omap_mmc_conf mmc1_conf;
225
226 static u64 mmc1_dmamask = 0xffffffff;
227
228 static struct resource mmc1_resources[] = {
229         {
230                 .start          = OMAP_MMC1_BASE,
231                 .end            = OMAP_MMC1_BASE + 0x7f,
232                 .flags          = IORESOURCE_MEM,
233         },
234         {
235                 .start          = OMAP_MMC1_INT,
236                 .flags          = IORESOURCE_IRQ,
237         },
238 };
239
240 static struct platform_device mmc_omap_device1 = {
241         .name           = "mmci-omap",
242         .id             = 1,
243         .dev = {
244                 .dma_mask       = &mmc1_dmamask,
245                 .platform_data  = &mmc1_conf,
246         },
247         .num_resources  = ARRAY_SIZE(mmc1_resources),
248         .resource       = mmc1_resources,
249 };
250
251 #ifdef  CONFIG_ARCH_OMAP16XX
252
253 static struct omap_mmc_conf mmc2_conf;
254
255 static u64 mmc2_dmamask = 0xffffffff;
256
257 static struct resource mmc2_resources[] = {
258         {
259                 .start          = OMAP_MMC2_BASE,
260                 .end            = OMAP_MMC2_BASE + 0x7f,
261                 .flags          = IORESOURCE_MEM,
262         },
263         {
264                 .start          = INT_1610_MMC2,
265                 .flags          = IORESOURCE_IRQ,
266         },
267 };
268
269 static struct platform_device mmc_omap_device2 = {
270         .name           = "mmci-omap",
271         .id             = 2,
272         .dev = {
273                 .dma_mask       = &mmc2_dmamask,
274                 .platform_data  = &mmc2_conf,
275         },
276         .num_resources  = ARRAY_SIZE(mmc2_resources),
277         .resource       = mmc2_resources,
278 };
279 #endif
280
281 static void __init omap_init_mmc(void)
282 {
283         const struct omap_mmc_config    *mmc_conf;
284         const struct omap_mmc_conf      *mmc;
285
286         /* NOTE:  assumes MMC was never (wrongly) enabled */
287         mmc_conf = omap_get_config(OMAP_TAG_MMC, struct omap_mmc_config);
288         if (!mmc_conf)
289                 return;
290
291         /* block 1 is always available and has just one pinout option */
292         mmc = &mmc_conf->mmc[0];
293         if (mmc->enabled) {
294                 if (cpu_is_omap24xx()) {
295                         omap_cfg_reg(H18_24XX_MMC_CMD);
296                         omap_cfg_reg(H15_24XX_MMC_CLKI);
297                         omap_cfg_reg(G19_24XX_MMC_CLKO);
298                         omap_cfg_reg(F20_24XX_MMC_DAT0);
299                         omap_cfg_reg(F19_24XX_MMC_DAT_DIR0);
300                         omap_cfg_reg(G18_24XX_MMC_CMD_DIR);
301                 } else {
302                         omap_cfg_reg(MMC_CMD);
303                         omap_cfg_reg(MMC_CLK);
304                         omap_cfg_reg(MMC_DAT0);
305                         if (cpu_is_omap1710()) {
306                                 omap_cfg_reg(M15_1710_MMC_CLKI);
307                                 omap_cfg_reg(P19_1710_MMC_CMDDIR);
308                                 omap_cfg_reg(P20_1710_MMC_DATDIR0);
309                         }
310                 }
311                 if (mmc->wire4) {
312                         if (cpu_is_omap24xx()) {
313                                 omap_cfg_reg(H14_24XX_MMC_DAT1);
314                                 omap_cfg_reg(E19_24XX_MMC_DAT2);
315                                 omap_cfg_reg(D19_24XX_MMC_DAT3);
316                                 omap_cfg_reg(E20_24XX_MMC_DAT_DIR1);
317                                 omap_cfg_reg(F18_24XX_MMC_DAT_DIR2);
318                                 omap_cfg_reg(E18_24XX_MMC_DAT_DIR3);
319                         } else {
320                                 omap_cfg_reg(MMC_DAT1);
321                                 /* NOTE:  DAT2 can be on W10 (here) or M15 */
322                                 if (!mmc->nomux)
323                                         omap_cfg_reg(MMC_DAT2);
324                                 omap_cfg_reg(MMC_DAT3);
325                         }
326                 }
327                 mmc1_conf = *mmc;
328                 (void) platform_device_register(&mmc_omap_device1);
329         }
330
331 #ifdef  CONFIG_ARCH_OMAP16XX
332         /* block 2 is on newer chips, and has many pinout options */
333         mmc = &mmc_conf->mmc[1];
334         if (mmc->enabled) {
335                 if (!mmc->nomux) {
336                         omap_cfg_reg(Y8_1610_MMC2_CMD);
337                         omap_cfg_reg(Y10_1610_MMC2_CLK);
338                         omap_cfg_reg(R18_1610_MMC2_CLKIN);
339                         omap_cfg_reg(W8_1610_MMC2_DAT0);
340                         if (mmc->wire4) {
341                                 omap_cfg_reg(V8_1610_MMC2_DAT1);
342                                 omap_cfg_reg(W15_1610_MMC2_DAT2);
343                                 omap_cfg_reg(R10_1610_MMC2_DAT3);
344                         }
345
346                         /* These are needed for the level shifter */
347                         omap_cfg_reg(V9_1610_MMC2_CMDDIR);
348                         omap_cfg_reg(V5_1610_MMC2_DATDIR0);
349                         omap_cfg_reg(W19_1610_MMC2_DATDIR1);
350                 }
351
352                 /* Feedback clock must be set on OMAP-1710 MMC2 */
353                 if (cpu_is_omap1710())
354                         omap_writel(omap_readl(MOD_CONF_CTRL_1) | (1 << 24),
355                                      MOD_CONF_CTRL_1);
356                 mmc2_conf = *mmc;
357                 (void) platform_device_register(&mmc_omap_device2);
358         }
359 #endif
360         return;
361 }
362 #else
363 static inline void omap_init_mmc(void) {}
364 #endif
365
366 /*-------------------------------------------------------------------------*/
367
368 /* Numbering for the SPI-capable controllers when used for SPI:
369  * spi          = 1
370  * uwire        = 2
371  * mmc1..2      = 3..4
372  * mcbsp1..3    = 5..7
373  */
374
375 #if defined(CONFIG_SPI_OMAP_UWIRE) || defined(CONFIG_SPI_OMAP_UWIRE_MODULE)
376
377 #define OMAP_UWIRE_BASE         0xfffb3000
378
379 static struct resource uwire_resources[] = {
380         {
381                 .start          = OMAP_UWIRE_BASE,
382                 .end            = OMAP_UWIRE_BASE + 0x20,
383                 .flags          = IORESOURCE_MEM,
384         },
385 };
386
387 static struct platform_device omap_uwire_device = {
388         .name      = "omap_uwire",
389         .id          = -1,
390         .num_resources  = ARRAY_SIZE(uwire_resources),
391         .resource       = uwire_resources,
392 };
393
394 static void omap_init_uwire(void)
395 {
396         /* FIXME define and use a boot tag; not all boards will be hooking
397          * up devices to the microwire controller, and multi-board configs
398          * mean that CONFIG_SPI_OMAP_UWIRE may be configured anyway...
399          */
400
401         /* board-specific code must configure chipselects (only a few
402          * are normally used) and SCLK/SDI/SDO (each has two choices).
403          */
404         (void) platform_device_register(&omap_uwire_device);
405 }
406 #else
407 static inline void omap_init_uwire(void) {}
408 #endif
409
410 /*-------------------------------------------------------------------------*/
411
412 #if     defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
413
414 #ifdef CONFIG_ARCH_OMAP24XX
415 #define OMAP_WDT_BASE           0x48022000
416 #else
417 #define OMAP_WDT_BASE           0xfffeb000
418 #endif
419
420 static struct resource wdt_resources[] = {
421         {
422                 .start          = OMAP_WDT_BASE,
423                 .end            = OMAP_WDT_BASE + 0x4f,
424                 .flags          = IORESOURCE_MEM,
425         },
426 };
427
428 static struct platform_device omap_wdt_device = {
429         .name      = "omap_wdt",
430         .id          = -1,
431         .num_resources  = ARRAY_SIZE(wdt_resources),
432         .resource       = wdt_resources,
433 };
434
435 static void omap_init_wdt(void)
436 {
437         (void) platform_device_register(&omap_wdt_device);
438 }
439 #else
440 static inline void omap_init_wdt(void) {}
441 #endif
442
443 /*-------------------------------------------------------------------------*/
444
445 #if defined(CONFIG_HW_RANDOM_OMAP) || defined(CONFIG_HW_RANDOM_OMAP_MODULE)
446
447 #ifdef CONFIG_ARCH_OMAP24XX
448 #define OMAP_RNG_BASE           0x480A0000
449 #else
450 #define OMAP_RNG_BASE           0xfffe5000
451 #endif
452
453 static struct resource rng_resources[] = {
454         {
455                 .start          = OMAP_RNG_BASE,
456                 .end            = OMAP_RNG_BASE + 0x4f,
457                 .flags          = IORESOURCE_MEM,
458         },
459 };
460
461 static struct platform_device omap_rng_device = {
462         .name      = "omap_rng",
463         .id          = -1,
464         .num_resources  = ARRAY_SIZE(rng_resources),
465         .resource       = rng_resources,
466 };
467
468 static void omap_init_rng(void)
469 {
470         (void) platform_device_register(&omap_rng_device);
471 }
472 #else
473 static inline void omap_init_rng(void) {}
474 #endif
475
476 /*
477  * This gets called after board-specific INIT_MACHINE, and initializes most
478  * on-chip peripherals accessible on this board (except for few like USB):
479  *
480  *  (a) Does any "standard config" pin muxing needed.  Board-specific
481  *      code will have muxed GPIO pins and done "nonstandard" setup;
482  *      that code could live in the boot loader.
483  *  (b) Populating board-specific platform_data with the data drivers
484  *      rely on to handle wiring variations.
485  *  (c) Creating platform devices as meaningful on this board and
486  *      with this kernel configuration.
487  *
488  * Claiming GPIOs, and setting their direction and initial values, is the
489  * responsibility of the device drivers.  So is responding to probe().
490  *
491  * Board-specific knowlege like creating devices or pin setup is to be
492  * kept out of drivers as much as possible.  In particular, pin setup
493  * may be handled by the boot loader, and drivers should expect it will
494  * normally have been done by the time they're probed.
495  */
496 static int __init omap_init_devices(void)
497 {
498 /*
499  * Need to enable relevant once for 2430 SDP
500  */
501 #ifndef CONFIG_MACH_OMAP_2430SDP
502         /* please keep these calls, and their implementations above,
503          * in alphabetical order so they're easier to sort through.
504          */
505         omap_init_dsp();
506         omap_init_kp();
507         omap_init_mmc();
508         omap_init_uwire();
509         omap_init_wdt();
510         omap_init_rng();
511 #endif
512         omap_init_i2c();
513         return 0;
514 }
515 arch_initcall(omap_init_devices);