2 * Platform device support for Au1x00 SoCs.
4 * Copyright 2004, Matt Porter <mporter@kernel.crashing.org>
6 * (C) Copyright Embedded Alley Solutions, Inc 2005
7 * Author: Pantelis Antoniou <pantelis@embeddedalley.com>
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
14 #include <linux/dma-mapping.h>
15 #include <linux/platform_device.h>
16 #include <linux/serial_8250.h>
17 #include <linux/init.h>
19 #include <asm/mach-au1x00/au1xxx.h>
20 #include <asm/mach-au1x00/au1xxx_dbdma.h>
21 #include <asm/mach-au1x00/au1100_mmc.h>
23 #define PORT(_base, _irq) \
26 .membase = (void __iomem *)_base,\
27 .mapbase = CPHYSADDR(_base), \
31 .flags = UPF_SKIP_TEST \
34 static struct plat_serial8250_port au1x00_uart_data
[] = {
35 #if defined(CONFIG_SERIAL_8250_AU1X00)
36 #if defined(CONFIG_SOC_AU1000)
37 PORT(UART0_ADDR
, AU1000_UART0_INT
),
38 PORT(UART1_ADDR
, AU1000_UART1_INT
),
39 PORT(UART2_ADDR
, AU1000_UART2_INT
),
40 PORT(UART3_ADDR
, AU1000_UART3_INT
),
41 #elif defined(CONFIG_SOC_AU1500)
42 PORT(UART0_ADDR
, AU1500_UART0_INT
),
43 PORT(UART3_ADDR
, AU1500_UART3_INT
),
44 #elif defined(CONFIG_SOC_AU1100)
45 PORT(UART0_ADDR
, AU1100_UART0_INT
),
46 PORT(UART1_ADDR
, AU1100_UART1_INT
),
47 PORT(UART3_ADDR
, AU1100_UART3_INT
),
48 #elif defined(CONFIG_SOC_AU1550)
49 PORT(UART0_ADDR
, AU1550_UART0_INT
),
50 PORT(UART1_ADDR
, AU1550_UART1_INT
),
51 PORT(UART3_ADDR
, AU1550_UART3_INT
),
52 #elif defined(CONFIG_SOC_AU1200)
53 PORT(UART0_ADDR
, AU1200_UART0_INT
),
54 PORT(UART1_ADDR
, AU1200_UART1_INT
),
56 #endif /* CONFIG_SERIAL_8250_AU1X00 */
60 static struct platform_device au1xx0_uart_device
= {
62 .id
= PLAT8250_DEV_AU1X00
,
64 .platform_data
= au1x00_uart_data
,
68 /* OHCI (USB full speed host controller) */
69 static struct resource au1xxx_usb_ohci_resources
[] = {
71 .start
= USB_OHCI_BASE
,
72 .end
= USB_OHCI_BASE
+ USB_OHCI_LEN
- 1,
73 .flags
= IORESOURCE_MEM
,
76 .start
= AU1000_USB_HOST_INT
,
77 .end
= AU1000_USB_HOST_INT
,
78 .flags
= IORESOURCE_IRQ
,
82 /* The dmamask must be set for OHCI to work */
83 static u64 ohci_dmamask
= DMA_32BIT_MASK
;
85 static struct platform_device au1xxx_usb_ohci_device
= {
86 .name
= "au1xxx-ohci",
89 .dma_mask
= &ohci_dmamask
,
90 .coherent_dma_mask
= DMA_32BIT_MASK
,
92 .num_resources
= ARRAY_SIZE(au1xxx_usb_ohci_resources
),
93 .resource
= au1xxx_usb_ohci_resources
,
96 /*** AU1100 LCD controller ***/
98 #ifdef CONFIG_FB_AU1100
99 static struct resource au1100_lcd_resources
[] = {
101 .start
= LCD_PHYS_ADDR
,
102 .end
= LCD_PHYS_ADDR
+ 0x800 - 1,
103 .flags
= IORESOURCE_MEM
,
106 .start
= AU1100_LCD_INT
,
107 .end
= AU1100_LCD_INT
,
108 .flags
= IORESOURCE_IRQ
,
112 static u64 au1100_lcd_dmamask
= DMA_32BIT_MASK
;
114 static struct platform_device au1100_lcd_device
= {
115 .name
= "au1100-lcd",
118 .dma_mask
= &au1100_lcd_dmamask
,
119 .coherent_dma_mask
= DMA_32BIT_MASK
,
121 .num_resources
= ARRAY_SIZE(au1100_lcd_resources
),
122 .resource
= au1100_lcd_resources
,
126 #ifdef CONFIG_SOC_AU1200
127 /* EHCI (USB high speed host controller) */
128 static struct resource au1xxx_usb_ehci_resources
[] = {
130 .start
= USB_EHCI_BASE
,
131 .end
= USB_EHCI_BASE
+ USB_EHCI_LEN
- 1,
132 .flags
= IORESOURCE_MEM
,
135 .start
= AU1000_USB_HOST_INT
,
136 .end
= AU1000_USB_HOST_INT
,
137 .flags
= IORESOURCE_IRQ
,
141 static u64 ehci_dmamask
= DMA_32BIT_MASK
;
143 static struct platform_device au1xxx_usb_ehci_device
= {
144 .name
= "au1xxx-ehci",
147 .dma_mask
= &ehci_dmamask
,
148 .coherent_dma_mask
= DMA_32BIT_MASK
,
150 .num_resources
= ARRAY_SIZE(au1xxx_usb_ehci_resources
),
151 .resource
= au1xxx_usb_ehci_resources
,
154 /* Au1200 UDC (USB gadget controller) */
155 static struct resource au1xxx_usb_gdt_resources
[] = {
157 .start
= USB_UDC_BASE
,
158 .end
= USB_UDC_BASE
+ USB_UDC_LEN
- 1,
159 .flags
= IORESOURCE_MEM
,
162 .start
= AU1200_USB_INT
,
163 .end
= AU1200_USB_INT
,
164 .flags
= IORESOURCE_IRQ
,
168 static u64 udc_dmamask
= DMA_32BIT_MASK
;
170 static struct platform_device au1xxx_usb_gdt_device
= {
171 .name
= "au1xxx-udc",
174 .dma_mask
= &udc_dmamask
,
175 .coherent_dma_mask
= DMA_32BIT_MASK
,
177 .num_resources
= ARRAY_SIZE(au1xxx_usb_gdt_resources
),
178 .resource
= au1xxx_usb_gdt_resources
,
181 /* Au1200 UOC (USB OTG controller) */
182 static struct resource au1xxx_usb_otg_resources
[] = {
184 .start
= USB_UOC_BASE
,
185 .end
= USB_UOC_BASE
+ USB_UOC_LEN
- 1,
186 .flags
= IORESOURCE_MEM
,
189 .start
= AU1200_USB_INT
,
190 .end
= AU1200_USB_INT
,
191 .flags
= IORESOURCE_IRQ
,
195 static u64 uoc_dmamask
= DMA_32BIT_MASK
;
197 static struct platform_device au1xxx_usb_otg_device
= {
198 .name
= "au1xxx-uoc",
201 .dma_mask
= &uoc_dmamask
,
202 .coherent_dma_mask
= DMA_32BIT_MASK
,
204 .num_resources
= ARRAY_SIZE(au1xxx_usb_otg_resources
),
205 .resource
= au1xxx_usb_otg_resources
,
208 static struct resource au1200_lcd_resources
[] = {
210 .start
= LCD_PHYS_ADDR
,
211 .end
= LCD_PHYS_ADDR
+ 0x800 - 1,
212 .flags
= IORESOURCE_MEM
,
215 .start
= AU1200_LCD_INT
,
216 .end
= AU1200_LCD_INT
,
217 .flags
= IORESOURCE_IRQ
,
221 static u64 au1200_lcd_dmamask
= DMA_32BIT_MASK
;
223 static struct platform_device au1200_lcd_device
= {
224 .name
= "au1200-lcd",
227 .dma_mask
= &au1200_lcd_dmamask
,
228 .coherent_dma_mask
= DMA_32BIT_MASK
,
230 .num_resources
= ARRAY_SIZE(au1200_lcd_resources
),
231 .resource
= au1200_lcd_resources
,
234 static u64 au1xxx_mmc_dmamask
= DMA_32BIT_MASK
;
236 extern struct au1xmmc_platform_data au1xmmc_platdata
[2];
238 static struct resource au1200_mmc0_resources
[] = {
240 .start
= SD0_PHYS_ADDR
,
241 .end
= SD0_PHYS_ADDR
+ 0x7ffff,
242 .flags
= IORESOURCE_MEM
,
245 .start
= AU1200_SD_INT
,
246 .end
= AU1200_SD_INT
,
247 .flags
= IORESOURCE_IRQ
,
250 .start
= DSCR_CMD0_SDMS_TX0
,
251 .end
= DSCR_CMD0_SDMS_TX0
,
252 .flags
= IORESOURCE_DMA
,
255 .start
= DSCR_CMD0_SDMS_RX0
,
256 .end
= DSCR_CMD0_SDMS_RX0
,
257 .flags
= IORESOURCE_DMA
,
261 static struct platform_device au1200_mmc0_device
= {
262 .name
= "au1xxx-mmc",
265 .dma_mask
= &au1xxx_mmc_dmamask
,
266 .coherent_dma_mask
= DMA_32BIT_MASK
,
267 .platform_data
= &au1xmmc_platdata
[0],
269 .num_resources
= ARRAY_SIZE(au1200_mmc0_resources
),
270 .resource
= au1200_mmc0_resources
,
273 #ifndef CONFIG_MIPS_DB1200
274 static struct resource au1200_mmc1_resources
[] = {
276 .start
= SD1_PHYS_ADDR
,
277 .end
= SD1_PHYS_ADDR
+ 0x7ffff,
278 .flags
= IORESOURCE_MEM
,
281 .start
= AU1200_SD_INT
,
282 .end
= AU1200_SD_INT
,
283 .flags
= IORESOURCE_IRQ
,
286 .start
= DSCR_CMD0_SDMS_TX1
,
287 .end
= DSCR_CMD0_SDMS_TX1
,
288 .flags
= IORESOURCE_DMA
,
291 .start
= DSCR_CMD0_SDMS_RX1
,
292 .end
= DSCR_CMD0_SDMS_RX1
,
293 .flags
= IORESOURCE_DMA
,
297 static struct platform_device au1200_mmc1_device
= {
298 .name
= "au1xxx-mmc",
301 .dma_mask
= &au1xxx_mmc_dmamask
,
302 .coherent_dma_mask
= DMA_32BIT_MASK
,
303 .platform_data
= &au1xmmc_platdata
[1],
305 .num_resources
= ARRAY_SIZE(au1200_mmc1_resources
),
306 .resource
= au1200_mmc1_resources
,
308 #endif /* #ifndef CONFIG_MIPS_DB1200 */
309 #endif /* #ifdef CONFIG_SOC_AU1200 */
311 static struct platform_device au1x00_pcmcia_device
= {
312 .name
= "au1x00-pcmcia",
316 /* All Alchemy demoboards with I2C have this #define in their headers */
317 #ifdef SMBUS_PSC_BASE
318 static struct resource pbdb_smbus_resources
[] = {
320 .start
= CPHYSADDR(SMBUS_PSC_BASE
),
321 .end
= CPHYSADDR(SMBUS_PSC_BASE
+ 0xfffff),
322 .flags
= IORESOURCE_MEM
,
326 static struct platform_device pbdb_smbus_device
= {
327 .name
= "au1xpsc_smbus",
328 .id
= 0, /* bus number */
329 .num_resources
= ARRAY_SIZE(pbdb_smbus_resources
),
330 .resource
= pbdb_smbus_resources
,
334 static struct platform_device
*au1xxx_platform_devices
[] __initdata
= {
336 &au1xxx_usb_ohci_device
,
337 &au1x00_pcmcia_device
,
338 #ifdef CONFIG_FB_AU1100
341 #ifdef CONFIG_SOC_AU1200
342 &au1xxx_usb_ehci_device
,
343 &au1xxx_usb_gdt_device
,
344 &au1xxx_usb_otg_device
,
347 #ifndef CONFIG_MIPS_DB1200
351 #ifdef SMBUS_PSC_BASE
356 static int __init
au1xxx_platform_init(void)
358 unsigned int uartclk
= get_au1x00_uart_baud_base() * 16;
361 /* Fill up uartclk. */
362 for (i
= 0; au1x00_uart_data
[i
].flags
; i
++)
363 au1x00_uart_data
[i
].uartclk
= uartclk
;
365 return platform_add_devices(au1xxx_platform_devices
,
366 ARRAY_SIZE(au1xxx_platform_devices
));
369 arch_initcall(au1xxx_platform_init
);