2 * mach-davinci/devices.c
4 * DaVinci platform device setup/initialization
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/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/dma-mapping.h>
17 #include <mach/hardware.h>
19 #include <mach/irqs.h>
20 #include <mach/cputype.h>
22 #include <mach/edma.h>
24 #include <mach/time.h>
26 #define DAVINCI_I2C_BASE 0x01C21000
27 #define DAVINCI_MMCSD0_BASE 0x01E10000
28 #define DM355_MMCSD0_BASE 0x01E11000
29 #define DM355_MMCSD1_BASE 0x01E00000
30 #define DM365_MMCSD0_BASE 0x01D11000
31 #define DM365_MMCSD1_BASE 0x01D00000
33 static struct resource i2c_resources
[] = {
35 .start
= DAVINCI_I2C_BASE
,
36 .end
= DAVINCI_I2C_BASE
+ 0x40,
37 .flags
= IORESOURCE_MEM
,
41 .flags
= IORESOURCE_IRQ
,
45 static struct platform_device davinci_i2c_device
= {
46 .name
= "i2c_davinci",
48 .num_resources
= ARRAY_SIZE(i2c_resources
),
49 .resource
= i2c_resources
,
52 void __init
davinci_init_i2c(struct davinci_i2c_platform_data
*pdata
)
54 if (cpu_is_davinci_dm644x())
55 davinci_cfg_reg(DM644X_I2C
);
57 davinci_i2c_device
.dev
.platform_data
= pdata
;
58 (void) platform_device_register(&davinci_i2c_device
);
61 #if defined(CONFIG_MMC_DAVINCI) || defined(CONFIG_MMC_DAVINCI_MODULE)
63 static u64 mmcsd0_dma_mask
= DMA_BIT_MASK(32);
65 static struct resource mmcsd0_resources
[] = {
67 /* different on dm355 */
68 .start
= DAVINCI_MMCSD0_BASE
,
69 .end
= DAVINCI_MMCSD0_BASE
+ SZ_4K
- 1,
70 .flags
= IORESOURCE_MEM
,
72 /* IRQs: MMC/SD, then SDIO */
75 .flags
= IORESOURCE_IRQ
,
77 /* different on dm355 */
79 .flags
= IORESOURCE_IRQ
,
81 /* DMA channels: RX, then TX */
83 .start
= EDMA_CTLR_CHAN(0, DAVINCI_DMA_MMCRXEVT
),
84 .flags
= IORESOURCE_DMA
,
86 .start
= EDMA_CTLR_CHAN(0, DAVINCI_DMA_MMCTXEVT
),
87 .flags
= IORESOURCE_DMA
,
91 static struct platform_device davinci_mmcsd0_device
= {
92 .name
= "davinci_mmc",
95 .dma_mask
= &mmcsd0_dma_mask
,
96 .coherent_dma_mask
= DMA_BIT_MASK(32),
98 .num_resources
= ARRAY_SIZE(mmcsd0_resources
),
99 .resource
= mmcsd0_resources
,
102 static u64 mmcsd1_dma_mask
= DMA_BIT_MASK(32);
104 static struct resource mmcsd1_resources
[] = {
106 .start
= DM355_MMCSD1_BASE
,
107 .end
= DM355_MMCSD1_BASE
+ SZ_4K
- 1,
108 .flags
= IORESOURCE_MEM
,
110 /* IRQs: MMC/SD, then SDIO */
112 .start
= IRQ_DM355_MMCINT1
,
113 .flags
= IORESOURCE_IRQ
,
115 .start
= IRQ_DM355_SDIOINT1
,
116 .flags
= IORESOURCE_IRQ
,
118 /* DMA channels: RX, then TX */
120 .start
= EDMA_CTLR_CHAN(0, 30), /* rx */
121 .flags
= IORESOURCE_DMA
,
123 .start
= EDMA_CTLR_CHAN(0, 31), /* tx */
124 .flags
= IORESOURCE_DMA
,
128 static struct platform_device davinci_mmcsd1_device
= {
129 .name
= "davinci_mmc",
132 .dma_mask
= &mmcsd1_dma_mask
,
133 .coherent_dma_mask
= DMA_BIT_MASK(32),
135 .num_resources
= ARRAY_SIZE(mmcsd1_resources
),
136 .resource
= mmcsd1_resources
,
140 void __init
davinci_setup_mmc(int module
, struct davinci_mmc_config
*config
)
142 struct platform_device
*pdev
= NULL
;
144 if (WARN_ON(cpu_is_davinci_dm646x()))
147 /* REVISIT: update PINMUX, ARM_IRQMUX, and EDMA_EVTMUX here too;
148 * for example if MMCSD1 is used for SDIO, maybe DAT2 is unused.
150 * FIXME dm6441 (no MMC/SD), dm357 (one), and dm335 (two) are
151 * not handled right here ...
155 if (cpu_is_davinci_dm355()) {
156 /* REVISIT we may not need all these pins if e.g. this
157 * is a hard-wired SDIO device...
159 davinci_cfg_reg(DM355_SD1_CMD
);
160 davinci_cfg_reg(DM355_SD1_CLK
);
161 davinci_cfg_reg(DM355_SD1_DATA0
);
162 davinci_cfg_reg(DM355_SD1_DATA1
);
163 davinci_cfg_reg(DM355_SD1_DATA2
);
164 davinci_cfg_reg(DM355_SD1_DATA3
);
165 } else if (cpu_is_davinci_dm365()) {
166 void __iomem
*pupdctl1
=
167 IO_ADDRESS(DAVINCI_SYSTEM_MODULE_BASE
+ 0x7c);
169 /* Configure pull down control */
170 __raw_writel((__raw_readl(pupdctl1
) & ~0x400),
173 mmcsd1_resources
[0].start
= DM365_MMCSD1_BASE
;
174 mmcsd1_resources
[0].end
= DM365_MMCSD1_BASE
+
176 mmcsd1_resources
[2].start
= IRQ_DM365_SDIOINT1
;
180 pdev
= &davinci_mmcsd1_device
;
183 if (cpu_is_davinci_dm355()) {
184 mmcsd0_resources
[0].start
= DM355_MMCSD0_BASE
;
185 mmcsd0_resources
[0].end
= DM355_MMCSD0_BASE
+ SZ_4K
- 1;
186 mmcsd0_resources
[2].start
= IRQ_DM355_SDIOINT0
;
188 /* expose all 6 MMC0 signals: CLK, CMD, DATA[0..3] */
189 davinci_cfg_reg(DM355_MMCSD0
);
192 davinci_cfg_reg(DM355_EVT26_MMC0_RX
);
193 } else if (cpu_is_davinci_dm365()) {
194 mmcsd0_resources
[0].start
= DM365_MMCSD0_BASE
;
195 mmcsd0_resources
[0].end
= DM365_MMCSD0_BASE
+
197 mmcsd0_resources
[2].start
= IRQ_DM365_SDIOINT0
;
198 } else if (cpu_is_davinci_dm644x()) {
199 /* REVISIT: should this be in board-init code? */
201 IO_ADDRESS(DAVINCI_SYSTEM_MODULE_BASE
);
203 /* Power-on 3.3V IO cells */
204 __raw_writel(0, base
+ DM64XX_VDD3P3V_PWDN
);
205 /*Set up the pull regiter for MMC */
206 davinci_cfg_reg(DM644X_MSTK
);
209 pdev
= &davinci_mmcsd0_device
;
216 pdev
->dev
.platform_data
= config
;
217 platform_device_register(pdev
);
222 void __init
davinci_setup_mmc(int module
, struct davinci_mmc_config
*config
)
228 /*-------------------------------------------------------------------------*/
230 static struct resource wdt_resources
[] = {
232 .start
= DAVINCI_WDOG_BASE
,
233 .end
= DAVINCI_WDOG_BASE
+ SZ_1K
- 1,
234 .flags
= IORESOURCE_MEM
,
238 struct platform_device davinci_wdt_device
= {
241 .num_resources
= ARRAY_SIZE(wdt_resources
),
242 .resource
= wdt_resources
,
245 static void davinci_init_wdt(void)
247 platform_device_register(&davinci_wdt_device
);
250 /*-------------------------------------------------------------------------*/
252 struct davinci_timer_instance davinci_timer_instance
[2] = {
254 .base
= IO_ADDRESS(DAVINCI_TIMER0_BASE
),
255 .bottom_irq
= IRQ_TINT0_TINT12
,
256 .top_irq
= IRQ_TINT0_TINT34
,
259 .base
= IO_ADDRESS(DAVINCI_TIMER1_BASE
),
260 .bottom_irq
= IRQ_TINT1_TINT12
,
261 .top_irq
= IRQ_TINT1_TINT34
,
265 /*-------------------------------------------------------------------------*/
267 static int __init
davinci_init_devices(void)
269 /* please keep these calls, and their implementations above,
270 * in alphabetical order so they're easier to sort through.
276 arch_initcall(davinci_init_devices
);