2 * arch/arm/mach-iop32x/glantank.c
4 * Board support code for the GLAN Tank.
6 * Copyright (C) 2006, 2007 Martin Michlmayr <tbm@cyrius.com>
7 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
16 #include <linux/init.h>
17 #include <linux/f75375s.h>
18 #include <linux/kernel.h>
19 #include <linux/pci.h>
21 #include <linux/string.h>
22 #include <linux/serial_core.h>
23 #include <linux/serial_8250.h>
24 #include <linux/mtd/physmap.h>
25 #include <linux/i2c.h>
26 #include <linux/platform_device.h>
28 #include <mach/hardware.h>
30 #include <asm/mach/arch.h>
31 #include <asm/mach/map.h>
32 #include <asm/mach/pci.h>
33 #include <asm/mach/time.h>
34 #include <asm/mach-types.h>
36 #include <mach/time.h>
39 * GLAN Tank timer tick configuration.
41 static void __init
glantank_timer_init(void)
43 /* 33.333 MHz crystal. */
44 iop_init_time(200000000);
47 static struct sys_timer glantank_timer
= {
48 .init
= glantank_timer_init
,
55 static struct map_desc glantank_io_desc
[] __initdata
= {
56 { /* on-board devices */
57 .virtual = GLANTANK_UART
,
58 .pfn
= __phys_to_pfn(GLANTANK_UART
),
64 void __init
glantank_map_io(void)
67 iotable_init(glantank_io_desc
, ARRAY_SIZE(glantank_io_desc
));
74 #define INTA IRQ_IOP32X_XINT0
75 #define INTB IRQ_IOP32X_XINT1
76 #define INTC IRQ_IOP32X_XINT2
77 #define INTD IRQ_IOP32X_XINT3
80 glantank_pci_map_irq(const struct pci_dev
*dev
, u8 slot
, u8 pin
)
82 static int pci_irq_table
[][4] = {
84 * PCI IDSEL/INTPIN->INTLINE
87 {INTD
, INTD
, INTD
, INTD
}, /* UART (8250) */
88 {INTA
, INTA
, INTA
, INTA
}, /* Ethernet (E1000) */
89 {INTB
, INTB
, INTB
, INTB
}, /* IDE (AEC6280R) */
90 {INTC
, INTC
, INTC
, INTC
}, /* USB (NEC) */
93 BUG_ON(pin
< 1 || pin
> 4);
95 return pci_irq_table
[slot
% 4][pin
- 1];
98 static struct hw_pci glantank_pci __initdata
= {
101 .setup
= iop3xx_pci_setup
,
102 .preinit
= iop3xx_pci_preinit
,
103 .map_irq
= glantank_pci_map_irq
,
106 static int __init
glantank_pci_init(void)
108 if (machine_is_glantank())
109 pci_common_init(&glantank_pci
);
114 subsys_initcall(glantank_pci_init
);
118 * GLAN Tank machine initialization.
120 static struct physmap_flash_data glantank_flash_data
= {
124 static struct resource glantank_flash_resource
= {
127 .flags
= IORESOURCE_MEM
,
130 static struct platform_device glantank_flash_device
= {
131 .name
= "physmap-flash",
134 .platform_data
= &glantank_flash_data
,
137 .resource
= &glantank_flash_resource
,
140 static struct plat_serial8250_port glantank_serial_port
[] = {
142 .mapbase
= GLANTANK_UART
,
143 .membase
= (char *)GLANTANK_UART
,
144 .irq
= IRQ_IOP32X_XINT3
,
145 .flags
= UPF_SKIP_TEST
,
153 static struct resource glantank_uart_resource
= {
154 .start
= GLANTANK_UART
,
155 .end
= GLANTANK_UART
+ 7,
156 .flags
= IORESOURCE_MEM
,
159 static struct platform_device glantank_serial_device
= {
160 .name
= "serial8250",
161 .id
= PLAT8250_DEV_PLATFORM
,
163 .platform_data
= glantank_serial_port
,
166 .resource
= &glantank_uart_resource
,
169 static struct f75375s_platform_data glantank_f75375s
= {
171 .pwm_enable
= { 0, 0 },
174 static struct i2c_board_info __initdata glantank_i2c_devices
[] = {
176 I2C_BOARD_INFO("rs5c372a", 0x32),
179 I2C_BOARD_INFO("f75375", 0x2e),
180 .platform_data
= &glantank_f75375s
,
184 static void glantank_power_off(void)
186 __raw_writeb(0x01, 0xfe8d0004);
192 static void __init
glantank_init_machine(void)
194 platform_device_register(&iop3xx_i2c0_device
);
195 platform_device_register(&iop3xx_i2c1_device
);
196 platform_device_register(&glantank_flash_device
);
197 platform_device_register(&glantank_serial_device
);
198 platform_device_register(&iop3xx_dma_0_channel
);
199 platform_device_register(&iop3xx_dma_1_channel
);
201 i2c_register_board_info(0, glantank_i2c_devices
,
202 ARRAY_SIZE(glantank_i2c_devices
));
204 pm_power_off
= glantank_power_off
;
207 MACHINE_START(GLANTANK
, "GLAN Tank")
208 /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
209 .atag_offset
= 0x100,
210 .map_io
= glantank_map_io
,
211 .init_irq
= iop32x_init_irq
,
212 .timer
= &glantank_timer
,
213 .init_machine
= glantank_init_machine
,
214 .restart
= iop3xx_restart
,