2 * NEC VR4100 series SIU platform device.
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.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 #include <linux/errno.h>
21 #include <linux/init.h>
22 #include <linux/ioport.h>
23 #include <linux/platform_device.h>
24 #include <linux/serial_core.h>
25 #include <linux/irq.h>
28 #include <asm/vr41xx/siu.h>
30 static unsigned int siu_type1_ports[SIU_PORTS_MAX] __initdata = {
35 static struct resource siu_type1_resource[] __initdata = {
39 .flags = IORESOURCE_MEM,
44 .flags = IORESOURCE_IRQ,
48 static unsigned int siu_type2_ports[SIU_PORTS_MAX] __initdata = {
53 static struct resource siu_type2_resource[] __initdata = {
57 .flags = IORESOURCE_MEM,
62 .flags = IORESOURCE_MEM,
67 .flags = IORESOURCE_IRQ,
72 .flags = IORESOURCE_IRQ,
76 static int __init vr41xx_siu_add(void)
78 struct platform_device *pdev;
83 pdev = platform_device_alloc("SIU", -1);
87 switch (current_cpu_type()) {
90 pdev->dev.platform_data = siu_type1_ports;
91 res = siu_type1_resource;
92 num = ARRAY_SIZE(siu_type1_resource);
97 pdev->dev.platform_data = siu_type2_ports;
98 res = siu_type2_resource;
99 num = ARRAY_SIZE(siu_type2_resource);
103 goto err_free_device;
106 retval = platform_device_add_resources(pdev, res, num);
108 goto err_free_device;
110 retval = platform_device_add(pdev);
112 goto err_free_device;
117 platform_device_put(pdev);
121 device_initcall(vr41xx_siu_add);
123 void __init vr41xx_siu_setup(void)
125 struct uart_port port;
126 struct resource *res;
130 switch (current_cpu_type()) {
133 type = siu_type1_ports;
134 res = siu_type1_resource;
139 type = siu_type2_ports;
140 res = siu_type2_resource;
146 for (i = 0; i < SIU_PORTS_MAX; i++) {
149 if (port.type == PORT_UNKNOWN)
151 port.mapbase = res[i].start;
152 port.membase = (unsigned char __iomem *)KSEG1ADDR(res[i].start);
153 vr41xx_siu_early_setup(&port);