blob: 5436b4b97455f8ce95fffed943685d7eee5fda48 [file] [log] [blame]
Pete Popovbdf21b12005-07-14 17:47:57 +00001/*
2 * Platform device support for Philips PNX8550 SoCs
3 *
4 * Copyright 2005, Embedded Alley Solutions, Inc
5 *
6 * Based on arch/mips/au1000/common/platform.c
7 * Platform device support for Au1x00 SoCs.
8 *
9 * Copyright 2004, Matt Porter <mporter@kernel.crashing.org>
10 *
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.
14 */
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>
Ralf Baechle41d4f0e2006-04-01 21:25:28 +010021#include <linux/platform_device.h>
Pete Popovbdf21b12005-07-14 17:47:57 +000022
23#include <int.h>
24#include <usb.h>
25#include <uart.h>
26
27extern struct uart_ops ip3106_pops;
28
29static struct resource pnx8550_usb_ohci_resources[] = {
30 [0] = {
31 .start = PNX8550_USB_OHCI_OP_BASE,
32 .end = PNX8550_USB_OHCI_OP_BASE +
33 PNX8550_USB_OHCI_OP_LEN,
34 .flags = IORESOURCE_MEM,
35 },
36 [1] = {
37 .start = PNX8550_INT_USB,
38 .end = PNX8550_INT_USB,
39 .flags = IORESOURCE_IRQ,
40 },
41};
42
43static struct resource pnx8550_uart_resources[] = {
44 [0] = {
45 .start = PNX8550_UART_PORT0,
46 .end = PNX8550_UART_PORT0 + 0xfff,
47 .flags = IORESOURCE_MEM,
48 },
49 [1] = {
50 .start = PNX8550_UART_INT(0),
51 .end = PNX8550_UART_INT(0),
52 .flags = IORESOURCE_IRQ,
53 },
54 [2] = {
55 .start = PNX8550_UART_PORT1,
56 .end = PNX8550_UART_PORT1 + 0xfff,
57 .flags = IORESOURCE_MEM,
58 },
59 [3] = {
60 .start = PNX8550_UART_INT(1),
61 .end = PNX8550_UART_INT(1),
62 .flags = IORESOURCE_IRQ,
63 },
64};
65
66struct ip3106_port ip3106_ports[] = {
67 [0] = {
68 .port = {
69 .type = PORT_IP3106,
Russell King9b4a1612006-02-05 10:48:10 +000070 .iotype = UPIO_MEM,
Pete Popovbdf21b12005-07-14 17:47:57 +000071 .membase = (void __iomem *)PNX8550_UART_PORT0,
72 .mapbase = PNX8550_UART_PORT0,
73 .irq = PNX8550_UART_INT(0),
74 .uartclk = 3692300,
75 .fifosize = 16,
76 .ops = &ip3106_pops,
Russell King59a675b2006-02-05 10:52:29 +000077 .flags = UPF_BOOT_AUTOCONF,
Pete Popovbdf21b12005-07-14 17:47:57 +000078 .line = 0,
79 },
80 },
81 [1] = {
82 .port = {
83 .type = PORT_IP3106,
Russell King9b4a1612006-02-05 10:48:10 +000084 .iotype = UPIO_MEM,
Pete Popovbdf21b12005-07-14 17:47:57 +000085 .membase = (void __iomem *)PNX8550_UART_PORT1,
86 .mapbase = PNX8550_UART_PORT1,
87 .irq = PNX8550_UART_INT(1),
88 .uartclk = 3692300,
89 .fifosize = 16,
90 .ops = &ip3106_pops,
Russell King59a675b2006-02-05 10:52:29 +000091 .flags = UPF_BOOT_AUTOCONF,
Pete Popovbdf21b12005-07-14 17:47:57 +000092 .line = 1,
93 },
94 },
95};
96
97/* The dmamask must be set for OHCI to work */
98static u64 ohci_dmamask = ~(u32)0;
99
100static u64 uart_dmamask = ~(u32)0;
101
102static struct platform_device pnx8550_usb_ohci_device = {
103 .name = "pnx8550-ohci",
104 .id = -1,
105 .dev = {
106 .dma_mask = &ohci_dmamask,
107 .coherent_dma_mask = 0xffffffff,
108 },
109 .num_resources = ARRAY_SIZE(pnx8550_usb_ohci_resources),
110 .resource = pnx8550_usb_ohci_resources,
111};
112
113static struct platform_device pnx8550_uart_device = {
114 .name = "ip3106-uart",
115 .id = -1,
116 .dev = {
117 .dma_mask = &uart_dmamask,
118 .coherent_dma_mask = 0xffffffff,
119 .platform_data = ip3106_ports,
120 },
121 .num_resources = ARRAY_SIZE(pnx8550_uart_resources),
122 .resource = pnx8550_uart_resources,
123};
124
125static struct platform_device *pnx8550_platform_devices[] __initdata = {
126 &pnx8550_usb_ohci_device,
127 &pnx8550_uart_device,
128};
129
130int pnx8550_platform_init(void)
131{
132 return platform_add_devices(pnx8550_platform_devices,
133 ARRAY_SIZE(pnx8550_platform_devices));
134}
135
136arch_initcall(pnx8550_platform_init);