2 * Platform device support for Philips PNX8550 SoCs
4 * Copyright 2005, Embedded Alley Solutions, Inc
6 * Based on arch/mips/au1000/common/platform.c
7 * Platform device support for Au1x00 SoCs.
9 * Copyright 2004, Matt Porter <mporter@kernel.crashing.org>
11 * This file is licensed under the terms of the GNU General Public
12 * License version 2. This program is licensed "as is" without any
13 * warranty of any kind, whether express or implied.
15 #include <linux/device.h>
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/resource.h>
19 #include <linux/serial.h>
20 #include <linux/serial_ip3106.h>
21 #include <linux/platform_device.h>
27 extern struct uart_ops ip3106_pops;
29 static struct resource pnx8550_usb_ohci_resources[] = {
31 .start = PNX8550_USB_OHCI_OP_BASE,
32 .end = PNX8550_USB_OHCI_OP_BASE +
33 PNX8550_USB_OHCI_OP_LEN,
34 .flags = IORESOURCE_MEM,
37 .start = PNX8550_INT_USB,
38 .end = PNX8550_INT_USB,
39 .flags = IORESOURCE_IRQ,
43 static struct resource pnx8550_uart_resources[] = {
45 .start = PNX8550_UART_PORT0,
46 .end = PNX8550_UART_PORT0 + 0xfff,
47 .flags = IORESOURCE_MEM,
50 .start = PNX8550_UART_INT(0),
51 .end = PNX8550_UART_INT(0),
52 .flags = IORESOURCE_IRQ,
55 .start = PNX8550_UART_PORT1,
56 .end = PNX8550_UART_PORT1 + 0xfff,
57 .flags = IORESOURCE_MEM,
60 .start = PNX8550_UART_INT(1),
61 .end = PNX8550_UART_INT(1),
62 .flags = IORESOURCE_IRQ,
66 struct ip3106_port ip3106_ports[] = {
71 .membase = (void __iomem *)PNX8550_UART_PORT0,
72 .mapbase = PNX8550_UART_PORT0,
73 .irq = PNX8550_UART_INT(0),
77 .flags = UPF_BOOT_AUTOCONF,
85 .membase = (void __iomem *)PNX8550_UART_PORT1,
86 .mapbase = PNX8550_UART_PORT1,
87 .irq = PNX8550_UART_INT(1),
91 .flags = UPF_BOOT_AUTOCONF,
97 /* The dmamask must be set for OHCI to work */
98 static u64 ohci_dmamask = ~(u32)0;
100 static u64 uart_dmamask = ~(u32)0;
102 static struct platform_device pnx8550_usb_ohci_device = {
103 .name = "pnx8550-ohci",
106 .dma_mask = &ohci_dmamask,
107 .coherent_dma_mask = 0xffffffff,
109 .num_resources = ARRAY_SIZE(pnx8550_usb_ohci_resources),
110 .resource = pnx8550_usb_ohci_resources,
113 static struct platform_device pnx8550_uart_device = {
114 .name = "ip3106-uart",
117 .dma_mask = &uart_dmamask,
118 .coherent_dma_mask = 0xffffffff,
119 .platform_data = ip3106_ports,
121 .num_resources = ARRAY_SIZE(pnx8550_uart_resources),
122 .resource = pnx8550_uart_resources,
125 static struct platform_device *pnx8550_platform_devices[] __initdata = {
126 &pnx8550_usb_ohci_device,
127 &pnx8550_uart_device,
130 int pnx8550_platform_init(void)
132 return platform_add_devices(pnx8550_platform_devices,
133 ARRAY_SIZE(pnx8550_platform_devices));
136 arch_initcall(pnx8550_platform_init);