| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Platform device support for Au1x00 SoCs. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright 2004, Matt Porter <mporter@kernel.crashing.org> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-04-04 00:02:53 +04:00
										 |  |  |  * (C) Copyright Embedded Alley Solutions, Inc 2005 | 
					
						
							|  |  |  |  * Author: Pantelis Antoniou <pantelis@embeddedalley.com> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * This file is licensed under the terms of the GNU General Public | 
					
						
							|  |  |  |  * License version 2.  This program is licensed "as is" without any | 
					
						
							|  |  |  |  * warranty of any kind, whether express or implied. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-04-23 22:43:55 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-15 18:44:29 +01:00
										 |  |  | #include <linux/dma-mapping.h>
 | 
					
						
							| 
									
										
										
										
											2005-10-29 19:07:23 +01:00
										 |  |  | #include <linux/platform_device.h>
 | 
					
						
							| 
									
										
										
										
											2008-04-04 00:02:53 +04:00
										 |  |  | #include <linux/serial_8250.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-15 08:03:12 +00:00
										 |  |  | #include <asm/mach-au1x00/au1xxx.h>
 | 
					
						
							| 
									
										
										
										
											2008-10-21 08:59:14 +02:00
										 |  |  | #include <asm/mach-au1x00/au1xxx_dbdma.h>
 | 
					
						
							|  |  |  | #include <asm/mach-au1x00/au1100_mmc.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-04 00:02:53 +04:00
										 |  |  | #define PORT(_base, _irq)				\
 | 
					
						
							|  |  |  | 	{						\ | 
					
						
							|  |  |  | 		.iobase		= _base,		\ | 
					
						
							|  |  |  | 		.membase	= (void __iomem *)_base,\ | 
					
						
							|  |  |  | 		.mapbase	= CPHYSADDR(_base),	\ | 
					
						
							|  |  |  | 		.irq		= _irq,			\ | 
					
						
							|  |  |  | 		.regshift	= 2,			\ | 
					
						
							|  |  |  | 		.iotype		= UPIO_AU,		\ | 
					
						
							|  |  |  | 		.flags		= UPF_SKIP_TEST 	\ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct plat_serial8250_port au1x00_uart_data[] = { | 
					
						
							|  |  |  | #if defined(CONFIG_SERIAL_8250_AU1X00)
 | 
					
						
							|  |  |  | #if defined(CONFIG_SOC_AU1000)
 | 
					
						
							|  |  |  | 	PORT(UART0_ADDR, AU1000_UART0_INT), | 
					
						
							|  |  |  | 	PORT(UART1_ADDR, AU1000_UART1_INT), | 
					
						
							|  |  |  | 	PORT(UART2_ADDR, AU1000_UART2_INT), | 
					
						
							|  |  |  | 	PORT(UART3_ADDR, AU1000_UART3_INT), | 
					
						
							|  |  |  | #elif defined(CONFIG_SOC_AU1500)
 | 
					
						
							|  |  |  | 	PORT(UART0_ADDR, AU1500_UART0_INT), | 
					
						
							|  |  |  | 	PORT(UART3_ADDR, AU1500_UART3_INT), | 
					
						
							|  |  |  | #elif defined(CONFIG_SOC_AU1100)
 | 
					
						
							|  |  |  | 	PORT(UART0_ADDR, AU1100_UART0_INT), | 
					
						
							|  |  |  | 	PORT(UART1_ADDR, AU1100_UART1_INT), | 
					
						
							|  |  |  | 	PORT(UART3_ADDR, AU1100_UART3_INT), | 
					
						
							|  |  |  | #elif defined(CONFIG_SOC_AU1550)
 | 
					
						
							|  |  |  | 	PORT(UART0_ADDR, AU1550_UART0_INT), | 
					
						
							|  |  |  | 	PORT(UART1_ADDR, AU1550_UART1_INT), | 
					
						
							|  |  |  | 	PORT(UART3_ADDR, AU1550_UART3_INT), | 
					
						
							|  |  |  | #elif defined(CONFIG_SOC_AU1200)
 | 
					
						
							|  |  |  | 	PORT(UART0_ADDR, AU1200_UART0_INT), | 
					
						
							|  |  |  | 	PORT(UART1_ADDR, AU1200_UART1_INT), | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif	/* CONFIG_SERIAL_8250_AU1X00 */
 | 
					
						
							|  |  |  | 	{ }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device au1xx0_uart_device = { | 
					
						
							|  |  |  | 	.name			= "serial8250", | 
					
						
							|  |  |  | 	.id			= PLAT8250_DEV_AU1X00, | 
					
						
							|  |  |  | 	.dev			= { | 
					
						
							|  |  |  | 		.platform_data	= au1x00_uart_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-14 16:17:59 +00:00
										 |  |  | /* OHCI (USB full speed host controller) */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | static struct resource au1xxx_usb_ohci_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start		= USB_OHCI_BASE, | 
					
						
							| 
									
										
										
										
											2006-01-20 14:09:54 -08:00
										 |  |  | 		.end		= USB_OHCI_BASE + USB_OHCI_LEN - 1, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.flags		= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		.start		= AU1000_USB_HOST_INT, | 
					
						
							|  |  |  | 		.end		= AU1000_USB_HOST_INT, | 
					
						
							|  |  |  | 		.flags		= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* The dmamask must be set for OHCI to work */ | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | static u64 ohci_dmamask = DMA_BIT_MASK(32); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device au1xxx_usb_ohci_device = { | 
					
						
							|  |  |  | 	.name		= "au1xxx-ohci", | 
					
						
							|  |  |  | 	.id		= 0, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.dma_mask		= &ohci_dmamask, | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | 		.coherent_dma_mask	= DMA_BIT_MASK(32), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(au1xxx_usb_ohci_resources), | 
					
						
							|  |  |  | 	.resource	= au1xxx_usb_ohci_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-04 01:06:19 +00:00
										 |  |  | /*** AU1100 LCD controller ***/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_FB_AU1100
 | 
					
						
							|  |  |  | static struct resource au1100_lcd_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start          = LCD_PHYS_ADDR, | 
					
						
							|  |  |  | 		.end            = LCD_PHYS_ADDR + 0x800 - 1, | 
					
						
							|  |  |  | 		.flags          = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		.start          = AU1100_LCD_INT, | 
					
						
							|  |  |  | 		.end            = AU1100_LCD_INT, | 
					
						
							|  |  |  | 		.flags          = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | static u64 au1100_lcd_dmamask = DMA_BIT_MASK(32); | 
					
						
							| 
									
										
										
										
											2005-04-04 01:06:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device au1100_lcd_device = { | 
					
						
							|  |  |  | 	.name           = "au1100-lcd", | 
					
						
							|  |  |  | 	.id             = 0, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.dma_mask               = &au1100_lcd_dmamask, | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | 		.coherent_dma_mask      = DMA_BIT_MASK(32), | 
					
						
							| 
									
										
										
										
											2005-04-04 01:06:19 +00:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources  = ARRAY_SIZE(au1100_lcd_resources), | 
					
						
							|  |  |  | 	.resource       = au1100_lcd_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-14 16:17:59 +00:00
										 |  |  | #ifdef CONFIG_SOC_AU1200
 | 
					
						
							|  |  |  | /* EHCI (USB high speed host controller) */ | 
					
						
							|  |  |  | static struct resource au1xxx_usb_ehci_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start		= USB_EHCI_BASE, | 
					
						
							|  |  |  | 		.end		= USB_EHCI_BASE + USB_EHCI_LEN - 1, | 
					
						
							|  |  |  | 		.flags		= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		.start		= AU1000_USB_HOST_INT, | 
					
						
							|  |  |  | 		.end		= AU1000_USB_HOST_INT, | 
					
						
							|  |  |  | 		.flags		= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | static u64 ehci_dmamask = DMA_BIT_MASK(32); | 
					
						
							| 
									
										
										
										
											2005-09-14 16:17:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device au1xxx_usb_ehci_device = { | 
					
						
							|  |  |  | 	.name		= "au1xxx-ehci", | 
					
						
							|  |  |  | 	.id		= 0, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.dma_mask		= &ehci_dmamask, | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | 		.coherent_dma_mask	= DMA_BIT_MASK(32), | 
					
						
							| 
									
										
										
										
											2005-09-14 16:17:59 +00:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(au1xxx_usb_ehci_resources), | 
					
						
							|  |  |  | 	.resource	= au1xxx_usb_ehci_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Au1200 UDC (USB gadget controller) */ | 
					
						
							|  |  |  | static struct resource au1xxx_usb_gdt_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start		= USB_UDC_BASE, | 
					
						
							|  |  |  | 		.end		= USB_UDC_BASE + USB_UDC_LEN - 1, | 
					
						
							|  |  |  | 		.flags		= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		.start		= AU1200_USB_INT, | 
					
						
							|  |  |  | 		.end		= AU1200_USB_INT, | 
					
						
							|  |  |  | 		.flags		= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | static u64 udc_dmamask = DMA_BIT_MASK(32); | 
					
						
							| 
									
										
										
										
											2005-09-14 16:17:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device au1xxx_usb_gdt_device = { | 
					
						
							|  |  |  | 	.name		= "au1xxx-udc", | 
					
						
							|  |  |  | 	.id		= 0, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.dma_mask		= &udc_dmamask, | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | 		.coherent_dma_mask	= DMA_BIT_MASK(32), | 
					
						
							| 
									
										
										
										
											2005-09-14 16:17:59 +00:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(au1xxx_usb_gdt_resources), | 
					
						
							|  |  |  | 	.resource	= au1xxx_usb_gdt_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Au1200 UOC (USB OTG controller) */ | 
					
						
							|  |  |  | static struct resource au1xxx_usb_otg_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start		= USB_UOC_BASE, | 
					
						
							|  |  |  | 		.end		= USB_UOC_BASE + USB_UOC_LEN - 1, | 
					
						
							|  |  |  | 		.flags		= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		.start		= AU1200_USB_INT, | 
					
						
							|  |  |  | 		.end		= AU1200_USB_INT, | 
					
						
							|  |  |  | 		.flags		= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | static u64 uoc_dmamask = DMA_BIT_MASK(32); | 
					
						
							| 
									
										
										
										
											2005-09-14 16:17:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device au1xxx_usb_otg_device = { | 
					
						
							|  |  |  | 	.name		= "au1xxx-uoc", | 
					
						
							|  |  |  | 	.id		= 0, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.dma_mask		= &uoc_dmamask, | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | 		.coherent_dma_mask	= DMA_BIT_MASK(32), | 
					
						
							| 
									
										
										
										
											2005-09-14 16:17:59 +00:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(au1xxx_usb_otg_resources), | 
					
						
							|  |  |  | 	.resource	= au1xxx_usb_otg_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource au1200_lcd_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start          = LCD_PHYS_ADDR, | 
					
						
							|  |  |  | 		.end            = LCD_PHYS_ADDR + 0x800 - 1, | 
					
						
							|  |  |  | 		.flags          = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		.start          = AU1200_LCD_INT, | 
					
						
							|  |  |  | 		.end            = AU1200_LCD_INT, | 
					
						
							|  |  |  | 		.flags          = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | static u64 au1200_lcd_dmamask = DMA_BIT_MASK(32); | 
					
						
							| 
									
										
										
										
											2005-09-14 16:17:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device au1200_lcd_device = { | 
					
						
							|  |  |  | 	.name           = "au1200-lcd", | 
					
						
							|  |  |  | 	.id             = 0, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.dma_mask               = &au1200_lcd_dmamask, | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | 		.coherent_dma_mask      = DMA_BIT_MASK(32), | 
					
						
							| 
									
										
										
										
											2005-09-14 16:17:59 +00:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources  = ARRAY_SIZE(au1200_lcd_resources), | 
					
						
							|  |  |  | 	.resource       = au1200_lcd_resources, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-09-15 08:03:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | static u64 au1xxx_mmc_dmamask =  DMA_BIT_MASK(32); | 
					
						
							| 
									
										
										
										
											2005-09-21 06:18:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-21 08:59:14 +02:00
										 |  |  | extern struct au1xmmc_platform_data au1xmmc_platdata[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource au1200_mmc0_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start          = SD0_PHYS_ADDR, | 
					
						
							|  |  |  | 		.end            = SD0_PHYS_ADDR + 0x7ffff, | 
					
						
							|  |  |  | 		.flags          = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		.start		= AU1200_SD_INT, | 
					
						
							|  |  |  | 		.end		= AU1200_SD_INT, | 
					
						
							|  |  |  | 		.flags		= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[2] = { | 
					
						
							|  |  |  | 		.start		= DSCR_CMD0_SDMS_TX0, | 
					
						
							|  |  |  | 		.end		= DSCR_CMD0_SDMS_TX0, | 
					
						
							|  |  |  | 		.flags		= IORESOURCE_DMA, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[3] = { | 
					
						
							|  |  |  | 		.start          = DSCR_CMD0_SDMS_RX0, | 
					
						
							|  |  |  | 		.end		= DSCR_CMD0_SDMS_RX0, | 
					
						
							|  |  |  | 		.flags          = IORESOURCE_DMA, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device au1200_mmc0_device = { | 
					
						
							| 
									
										
										
										
											2005-09-21 06:18:27 +00:00
										 |  |  | 	.name = "au1xxx-mmc", | 
					
						
							|  |  |  | 	.id = 0, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							| 
									
										
										
										
											2008-10-21 08:59:14 +02:00
										 |  |  | 		.dma_mask		= &au1xxx_mmc_dmamask, | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | 		.coherent_dma_mask	= DMA_BIT_MASK(32), | 
					
						
							| 
									
										
										
										
											2008-10-21 08:59:14 +02:00
										 |  |  | 		.platform_data		= &au1xmmc_platdata[0], | 
					
						
							| 
									
										
										
										
											2005-09-21 06:18:27 +00:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2008-10-21 08:59:14 +02:00
										 |  |  | 	.num_resources	= ARRAY_SIZE(au1200_mmc0_resources), | 
					
						
							|  |  |  | 	.resource	= au1200_mmc0_resources, | 
					
						
							| 
									
										
										
										
											2005-09-21 06:18:27 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-10-21 08:59:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef CONFIG_MIPS_DB1200
 | 
					
						
							|  |  |  | static struct resource au1200_mmc1_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start          = SD1_PHYS_ADDR, | 
					
						
							|  |  |  | 		.end            = SD1_PHYS_ADDR + 0x7ffff, | 
					
						
							|  |  |  | 		.flags          = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		.start		= AU1200_SD_INT, | 
					
						
							|  |  |  | 		.end		= AU1200_SD_INT, | 
					
						
							|  |  |  | 		.flags		= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[2] = { | 
					
						
							|  |  |  | 		.start		= DSCR_CMD0_SDMS_TX1, | 
					
						
							|  |  |  | 		.end		= DSCR_CMD0_SDMS_TX1, | 
					
						
							|  |  |  | 		.flags		= IORESOURCE_DMA, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[3] = { | 
					
						
							|  |  |  | 		.start          = DSCR_CMD0_SDMS_RX1, | 
					
						
							|  |  |  | 		.end		= DSCR_CMD0_SDMS_RX1, | 
					
						
							|  |  |  | 		.flags          = IORESOURCE_DMA, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device au1200_mmc1_device = { | 
					
						
							|  |  |  | 	.name = "au1xxx-mmc", | 
					
						
							|  |  |  | 	.id = 1, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.dma_mask		= &au1xxx_mmc_dmamask, | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | 		.coherent_dma_mask	= DMA_BIT_MASK(32), | 
					
						
							| 
									
										
										
										
											2008-10-21 08:59:14 +02:00
										 |  |  | 		.platform_data		= &au1xmmc_platdata[1], | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(au1200_mmc1_resources), | 
					
						
							|  |  |  | 	.resource	= au1200_mmc1_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif /* #ifndef CONFIG_MIPS_DB1200 */
 | 
					
						
							| 
									
										
										
										
											2005-09-21 06:18:27 +00:00
										 |  |  | #endif /* #ifdef CONFIG_SOC_AU1200 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-15 23:42:27 +00:00
										 |  |  | static struct platform_device au1x00_pcmcia_device = { | 
					
						
							|  |  |  | 	.name 		= "au1x00-pcmcia", | 
					
						
							|  |  |  | 	.id 		= 0, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:52 +01:00
										 |  |  | /* All Alchemy demoboards with I2C have this #define in their headers */ | 
					
						
							|  |  |  | #ifdef SMBUS_PSC_BASE
 | 
					
						
							|  |  |  | static struct resource pbdb_smbus_resources[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2008-04-05 22:16:21 +04:00
										 |  |  | 		.start	= CPHYSADDR(SMBUS_PSC_BASE), | 
					
						
							|  |  |  | 		.end	= CPHYSADDR(SMBUS_PSC_BASE + 0xfffff), | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:52 +01:00
										 |  |  | 		.flags	= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device pbdb_smbus_device = { | 
					
						
							|  |  |  | 	.name		= "au1xpsc_smbus", | 
					
						
							|  |  |  | 	.id		= 0,	/* bus number */ | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(pbdb_smbus_resources), | 
					
						
							|  |  |  | 	.resource	= pbdb_smbus_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | static struct platform_device *au1xxx_platform_devices[] __initdata = { | 
					
						
							| 
									
										
										
										
											2008-04-04 00:02:53 +04:00
										 |  |  | 	&au1xx0_uart_device, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	&au1xxx_usb_ohci_device, | 
					
						
							| 
									
										
										
										
											2005-09-15 23:42:27 +00:00
										 |  |  | 	&au1x00_pcmcia_device, | 
					
						
							| 
									
										
										
										
											2005-04-04 01:06:19 +00:00
										 |  |  | #ifdef CONFIG_FB_AU1100
 | 
					
						
							|  |  |  | 	&au1100_lcd_device, | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-09-14 16:17:59 +00:00
										 |  |  | #ifdef CONFIG_SOC_AU1200
 | 
					
						
							|  |  |  | 	&au1xxx_usb_ehci_device, | 
					
						
							|  |  |  | 	&au1xxx_usb_gdt_device, | 
					
						
							|  |  |  | 	&au1xxx_usb_otg_device, | 
					
						
							|  |  |  | 	&au1200_lcd_device, | 
					
						
							| 
									
										
										
										
											2008-10-21 08:59:14 +02:00
										 |  |  | 	&au1200_mmc0_device, | 
					
						
							|  |  |  | #ifndef CONFIG_MIPS_DB1200
 | 
					
						
							|  |  |  | 	&au1200_mmc1_device, | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-09-14 16:17:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-01-27 18:14:52 +01:00
										 |  |  | #ifdef SMBUS_PSC_BASE
 | 
					
						
							|  |  |  | 	&pbdb_smbus_device, | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | static int __init au1xxx_platform_init(void) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-04-04 00:02:53 +04:00
										 |  |  | 	unsigned int uartclk = get_au1x00_uart_baud_base() * 16; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Fill up uartclk. */ | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	for (i = 0; au1x00_uart_data[i].flags; i++) | 
					
						
							| 
									
										
										
										
											2008-04-04 00:02:53 +04:00
										 |  |  | 		au1x00_uart_data[i].uartclk = uartclk; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-30 23:18:41 +04:00
										 |  |  | 	return platform_add_devices(au1xxx_platform_devices, | 
					
						
							|  |  |  | 				    ARRAY_SIZE(au1xxx_platform_devices)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | arch_initcall(au1xxx_platform_init); |