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>
18 #include <linux/platform_data/i2c-davinci.h>
19 #include <mach/irqs.h>
20 #include <mach/cputype.h>
22 #include <mach/edma.h>
23 #include <linux/platform_data/mmc-davinci.h>
24 #include <mach/time.h>
29 #define DAVINCI_I2C_BASE 0x01C21000
30 #define DAVINCI_ATA_BASE 0x01C66000
31 #define DAVINCI_MMCSD0_BASE 0x01E10000
32 #define DM355_MMCSD0_BASE 0x01E11000
33 #define DM355_MMCSD1_BASE 0x01E00000
34 #define DM365_MMCSD0_BASE 0x01D11000
35 #define DM365_MMCSD1_BASE 0x01D00000
37 void __iomem
*davinci_sysmod_base
;
39 void davinci_map_sysmod(void)
41 davinci_sysmod_base
= ioremap_nocache(DAVINCI_SYSTEM_MODULE_BASE
,
44 * Throw a bug since a lot of board initialization code depends
45 * on system module availability. ioremap() failing this early
46 * need careful looking into anyway.
48 BUG_ON(!davinci_sysmod_base
);
51 static struct resource i2c_resources
[] = {
53 .start
= DAVINCI_I2C_BASE
,
54 .end
= DAVINCI_I2C_BASE
+ 0x40,
55 .flags
= IORESOURCE_MEM
,
59 .flags
= IORESOURCE_IRQ
,
63 static struct platform_device davinci_i2c_device
= {
64 .name
= "i2c_davinci",
66 .num_resources
= ARRAY_SIZE(i2c_resources
),
67 .resource
= i2c_resources
,
70 void __init
davinci_init_i2c(struct davinci_i2c_platform_data
*pdata
)
72 if (cpu_is_davinci_dm644x())
73 davinci_cfg_reg(DM644X_I2C
);
75 davinci_i2c_device
.dev
.platform_data
= pdata
;
76 (void) platform_device_register(&davinci_i2c_device
);
79 static struct resource ide_resources
[] = {
81 .start
= DAVINCI_ATA_BASE
,
82 .end
= DAVINCI_ATA_BASE
+ 0x7ff,
83 .flags
= IORESOURCE_MEM
,
88 .flags
= IORESOURCE_IRQ
,
92 static u64 ide_dma_mask
= DMA_BIT_MASK(32);
94 static struct platform_device ide_device
= {
95 .name
= "palm_bk3710",
97 .resource
= ide_resources
,
98 .num_resources
= ARRAY_SIZE(ide_resources
),
100 .dma_mask
= &ide_dma_mask
,
101 .coherent_dma_mask
= DMA_BIT_MASK(32),
105 void __init
davinci_init_ide(void)
107 if (cpu_is_davinci_dm644x()) {
108 davinci_cfg_reg(DM644X_HPIEN_DISABLE
);
109 davinci_cfg_reg(DM644X_ATAEN
);
110 davinci_cfg_reg(DM644X_HDIREN
);
111 } else if (cpu_is_davinci_dm646x()) {
112 /* IRQ_DM646X_IDE is the same as IRQ_IDE */
113 davinci_cfg_reg(DM646X_ATAEN
);
119 platform_device_register(&ide_device
);
122 #if IS_ENABLED(CONFIG_MMC_DAVINCI)
124 static u64 mmcsd0_dma_mask
= DMA_BIT_MASK(32);
126 static struct resource mmcsd0_resources
[] = {
128 /* different on dm355 */
129 .start
= DAVINCI_MMCSD0_BASE
,
130 .end
= DAVINCI_MMCSD0_BASE
+ SZ_4K
- 1,
131 .flags
= IORESOURCE_MEM
,
133 /* IRQs: MMC/SD, then SDIO */
136 .flags
= IORESOURCE_IRQ
,
138 /* different on dm355 */
139 .start
= IRQ_SDIOINT
,
140 .flags
= IORESOURCE_IRQ
,
142 /* DMA channels: RX, then TX */
144 .start
= EDMA_CTLR_CHAN(0, DAVINCI_DMA_MMCRXEVT
),
145 .flags
= IORESOURCE_DMA
,
147 .start
= EDMA_CTLR_CHAN(0, DAVINCI_DMA_MMCTXEVT
),
148 .flags
= IORESOURCE_DMA
,
152 static struct platform_device davinci_mmcsd0_device
= {
153 .name
= "dm6441-mmc",
156 .dma_mask
= &mmcsd0_dma_mask
,
157 .coherent_dma_mask
= DMA_BIT_MASK(32),
159 .num_resources
= ARRAY_SIZE(mmcsd0_resources
),
160 .resource
= mmcsd0_resources
,
163 static u64 mmcsd1_dma_mask
= DMA_BIT_MASK(32);
165 static struct resource mmcsd1_resources
[] = {
167 .start
= DM355_MMCSD1_BASE
,
168 .end
= DM355_MMCSD1_BASE
+ SZ_4K
- 1,
169 .flags
= IORESOURCE_MEM
,
171 /* IRQs: MMC/SD, then SDIO */
173 .start
= IRQ_DM355_MMCINT1
,
174 .flags
= IORESOURCE_IRQ
,
176 .start
= IRQ_DM355_SDIOINT1
,
177 .flags
= IORESOURCE_IRQ
,
179 /* DMA channels: RX, then TX */
181 .start
= EDMA_CTLR_CHAN(0, 30), /* rx */
182 .flags
= IORESOURCE_DMA
,
184 .start
= EDMA_CTLR_CHAN(0, 31), /* tx */
185 .flags
= IORESOURCE_DMA
,
189 static struct platform_device davinci_mmcsd1_device
= {
190 .name
= "dm6441-mmc",
193 .dma_mask
= &mmcsd1_dma_mask
,
194 .coherent_dma_mask
= DMA_BIT_MASK(32),
196 .num_resources
= ARRAY_SIZE(mmcsd1_resources
),
197 .resource
= mmcsd1_resources
,
201 void __init
davinci_setup_mmc(int module
, struct davinci_mmc_config
*config
)
203 struct platform_device
*pdev
= NULL
;
205 if (WARN_ON(cpu_is_davinci_dm646x()))
208 /* REVISIT: update PINMUX, ARM_IRQMUX, and EDMA_EVTMUX here too;
209 * for example if MMCSD1 is used for SDIO, maybe DAT2 is unused.
211 * FIXME dm6441 (no MMC/SD), dm357 (one), and dm335 (two) are
212 * not handled right here ...
216 if (cpu_is_davinci_dm355()) {
217 /* REVISIT we may not need all these pins if e.g. this
218 * is a hard-wired SDIO device...
220 davinci_cfg_reg(DM355_SD1_CMD
);
221 davinci_cfg_reg(DM355_SD1_CLK
);
222 davinci_cfg_reg(DM355_SD1_DATA0
);
223 davinci_cfg_reg(DM355_SD1_DATA1
);
224 davinci_cfg_reg(DM355_SD1_DATA2
);
225 davinci_cfg_reg(DM355_SD1_DATA3
);
226 } else if (cpu_is_davinci_dm365()) {
227 /* Configure pull down control */
230 v
= __raw_readl(DAVINCI_SYSMOD_VIRT(SYSMOD_PUPDCTL1
));
231 __raw_writel(v
& ~0xfc0,
232 DAVINCI_SYSMOD_VIRT(SYSMOD_PUPDCTL1
));
234 mmcsd1_resources
[0].start
= DM365_MMCSD1_BASE
;
235 mmcsd1_resources
[0].end
= DM365_MMCSD1_BASE
+
237 mmcsd1_resources
[2].start
= IRQ_DM365_SDIOINT1
;
238 davinci_mmcsd1_device
.name
= "da830-mmc";
242 pdev
= &davinci_mmcsd1_device
;
245 if (cpu_is_davinci_dm355()) {
246 mmcsd0_resources
[0].start
= DM355_MMCSD0_BASE
;
247 mmcsd0_resources
[0].end
= DM355_MMCSD0_BASE
+ SZ_4K
- 1;
248 mmcsd0_resources
[2].start
= IRQ_DM355_SDIOINT0
;
250 /* expose all 6 MMC0 signals: CLK, CMD, DATA[0..3] */
251 davinci_cfg_reg(DM355_MMCSD0
);
254 davinci_cfg_reg(DM355_EVT26_MMC0_RX
);
255 } else if (cpu_is_davinci_dm365()) {
256 mmcsd0_resources
[0].start
= DM365_MMCSD0_BASE
;
257 mmcsd0_resources
[0].end
= DM365_MMCSD0_BASE
+
259 mmcsd0_resources
[2].start
= IRQ_DM365_SDIOINT0
;
260 davinci_mmcsd0_device
.name
= "da830-mmc";
261 } else if (cpu_is_davinci_dm644x()) {
262 /* REVISIT: should this be in board-init code? */
263 /* Power-on 3.3V IO cells */
265 DAVINCI_SYSMOD_VIRT(SYSMOD_VDD3P3VPWDN
));
266 /*Set up the pull regiter for MMC */
267 davinci_cfg_reg(DM644X_MSTK
);
270 pdev
= &davinci_mmcsd0_device
;
277 pdev
->dev
.platform_data
= config
;
278 platform_device_register(pdev
);
283 void __init
davinci_setup_mmc(int module
, struct davinci_mmc_config
*config
)
289 /*-------------------------------------------------------------------------*/
291 static struct resource wdt_resources
[] = {
293 .start
= DAVINCI_WDOG_BASE
,
294 .end
= DAVINCI_WDOG_BASE
+ SZ_1K
- 1,
295 .flags
= IORESOURCE_MEM
,
299 struct platform_device davinci_wdt_device
= {
302 .num_resources
= ARRAY_SIZE(wdt_resources
),
303 .resource
= wdt_resources
,
306 void davinci_restart(char mode
, const char *cmd
)
308 davinci_watchdog_reset(&davinci_wdt_device
);
311 static void davinci_init_wdt(void)
313 platform_device_register(&davinci_wdt_device
);
316 /*-------------------------------------------------------------------------*/
318 /*-------------------------------------------------------------------------*/
320 struct davinci_timer_instance davinci_timer_instance
[2] = {
322 .base
= DAVINCI_TIMER0_BASE
,
323 .bottom_irq
= IRQ_TINT0_TINT12
,
324 .top_irq
= IRQ_TINT0_TINT34
,
327 .base
= DAVINCI_TIMER1_BASE
,
328 .bottom_irq
= IRQ_TINT1_TINT12
,
329 .top_irq
= IRQ_TINT1_TINT34
,
333 /*-------------------------------------------------------------------------*/
335 static int __init
davinci_init_devices(void)
337 /* please keep these calls, and their implementations above,
338 * in alphabetical order so they're easier to sort through.
344 arch_initcall(davinci_init_devices
);