2 * linux/arch/arm/mach-iop3xx/iop321-setup.c
4 * Author: Nicolas Pitre <nico@cam.org>
5 * Copyright (C) 2001 MontaVista Software, Inc.
6 * Copyright (C) 2004 Intel Corporation.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
14 #include <linux/init.h>
15 #include <linux/config.h>
16 #include <linux/init.h>
17 #include <linux/major.h>
19 #include <linux/device.h>
20 #include <linux/serial.h>
21 #include <linux/tty.h>
22 #include <linux/serial_core.h>
25 #include <asm/pgtable.h>
27 #include <asm/mach/map.h>
28 #include <asm/setup.h>
29 #include <asm/system.h>
30 #include <asm/memory.h>
31 #include <asm/hardware.h>
32 #include <asm/mach-types.h>
33 #include <asm/mach/arch.h>
35 #define IOP321_UART_XTAL 1843200
38 * Standard IO mapping for all IOP321 based systems
40 static struct map_desc iop321_std_desc[] __initdata = {
41 /* virtual physical length type */
43 /* mem mapped registers */
44 { IOP321_VIRT_MEM_BASE, IOP321_PHYS_MEM_BASE, 0x00002000, MT_DEVICE },
47 { IOP321_PCI_LOWER_IO_VA, IOP321_PCI_LOWER_IO_PA, IOP321_PCI_IO_WINDOW_SIZE, MT_DEVICE }
50 #ifdef CONFIG_ARCH_IQ80321
51 #define UARTBASE IQ80321_UART
52 #define IRQ_UART IRQ_IQ80321_UART
55 #ifdef CONFIG_ARCH_IQ31244
56 #define UARTBASE IQ31244_UART
57 #define IRQ_UART IRQ_IQ31244_UART
60 static struct uart_port iop321_serial_ports[] = {
62 .membase = (char*)(UARTBASE),
63 .mapbase = (UARTBASE),
65 .flags = UPF_SKIP_TEST,
68 .uartclk = IOP321_UART_XTAL,
75 static struct resource iop32x_i2c_0_resources[] = {
79 .flags = IORESOURCE_MEM,
82 .start = IRQ_IOP321_I2C_0,
83 .end = IRQ_IOP321_I2C_0,
84 .flags = IORESOURCE_IRQ
88 static struct resource iop32x_i2c_1_resources[] = {
92 .flags = IORESOURCE_MEM,
95 .start = IRQ_IOP321_I2C_1,
96 .end = IRQ_IOP321_I2C_1,
97 .flags = IORESOURCE_IRQ
101 static struct platform_device iop32x_i2c_0_controller = {
102 .name = "IOP3xx-I2C",
105 .resource = iop32x_i2c_0_resources
108 static struct platform_device iop32x_i2c_1_controller = {
109 .name = "IOP3xx-I2C",
112 .resource = iop32x_i2c_1_resources
115 static struct platform_device *iop32x_devices[] __initdata = {
116 &iop32x_i2c_0_controller,
117 &iop32x_i2c_1_controller
120 void __init iop32x_init(void)
124 platform_add_devices(iop32x_devices,
125 ARRAY_SIZE(iop32x_devices));
129 void __init iop321_map_io(void)
131 iotable_init(iop321_std_desc, ARRAY_SIZE(iop321_std_desc));
132 early_serial_setup(&iop321_serial_ports[0]);
135 #ifdef CONFIG_ARCH_IQ80321
136 extern void iq80321_map_io(void);
137 extern struct sys_timer iop321_timer;
138 extern void iop321_init_time(void);
141 #ifdef CONFIG_ARCH_IQ31244
142 extern void iq31244_map_io(void);
143 extern struct sys_timer iop321_timer;
144 extern void iop321_init_time(void);
147 #if defined(CONFIG_ARCH_IQ80321)
148 MACHINE_START(IQ80321, "Intel IQ80321")
149 /* Maintainer: Intel Corporation */
150 .phys_ram = PHYS_OFFSET,
151 .phys_io = IQ80321_UART,
152 .io_pg_offst = ((IQ80321_UART) >> 18) & 0xfffc,
153 .map_io = iq80321_map_io,
154 .init_irq = iop321_init_irq,
155 .timer = &iop321_timer,
156 .boot_params = 0xa0000100,
157 .init_machine = iop32x_init,
159 #elif defined(CONFIG_ARCH_IQ31244)
160 MACHINE_START(IQ31244, "Intel IQ31244")
161 /* Maintainer: Intel Corp. */
162 .phys_ram = PHYS_OFFSET,
163 .phys_io = IQ31244_UART,
164 .io_pg_offst = ((IQ31244_UART) >> 18) & 0xfffc,
165 .map_io = iq31244_map_io,
166 .init_irq = iop321_init_irq,
167 .timer = &iop321_timer,
168 .boot_params = 0xa0000100,
169 .init_machine = iop32x_init,
172 #error No machine descriptor defined for this IOP3XX implementation