1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#include <linux/mm.h>
16#include <linux/init.h>
17#include <linux/f75375s.h>
18#include <linux/kernel.h>
19#include <linux/pci.h>
20#include <linux/pm.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>
27#include <linux/io.h>
28#include <mach/hardware.h>
29#include <asm/irq.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>
35#include <asm/page.h>
36#include <mach/time.h>
37
38
39
40
41static void __init glantank_timer_init(void)
42{
43
44 iop_init_time(200000000);
45}
46
47
48
49
50
51static struct map_desc glantank_io_desc[] __initdata = {
52 {
53 .virtual = GLANTANK_UART,
54 .pfn = __phys_to_pfn(GLANTANK_UART),
55 .length = 0x00100000,
56 .type = MT_DEVICE
57 },
58};
59
60void __init glantank_map_io(void)
61{
62 iop3xx_map_io();
63 iotable_init(glantank_io_desc, ARRAY_SIZE(glantank_io_desc));
64}
65
66
67
68
69
70#define INTA IRQ_IOP32X_XINT0
71#define INTB IRQ_IOP32X_XINT1
72#define INTC IRQ_IOP32X_XINT2
73#define INTD IRQ_IOP32X_XINT3
74
75static int __init
76glantank_pci_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
77{
78 static int pci_irq_table[][4] = {
79
80
81
82
83 {INTD, INTD, INTD, INTD},
84 {INTA, INTA, INTA, INTA},
85 {INTB, INTB, INTB, INTB},
86 {INTC, INTC, INTC, INTC},
87 };
88
89 BUG_ON(pin < 1 || pin > 4);
90
91 return pci_irq_table[slot % 4][pin - 1];
92}
93
94static struct hw_pci glantank_pci __initdata = {
95 .nr_controllers = 1,
96 .ops = &iop3xx_ops,
97 .setup = iop3xx_pci_setup,
98 .preinit = iop3xx_pci_preinit,
99 .map_irq = glantank_pci_map_irq,
100};
101
102static int __init glantank_pci_init(void)
103{
104 if (machine_is_glantank())
105 pci_common_init(&glantank_pci);
106
107 return 0;
108}
109
110subsys_initcall(glantank_pci_init);
111
112
113
114
115
116static struct physmap_flash_data glantank_flash_data = {
117 .width = 2,
118};
119
120static struct resource glantank_flash_resource = {
121 .start = 0xf0000000,
122 .end = 0xf007ffff,
123 .flags = IORESOURCE_MEM,
124};
125
126static struct platform_device glantank_flash_device = {
127 .name = "physmap-flash",
128 .id = 0,
129 .dev = {
130 .platform_data = &glantank_flash_data,
131 },
132 .num_resources = 1,
133 .resource = &glantank_flash_resource,
134};
135
136static struct plat_serial8250_port glantank_serial_port[] = {
137 {
138 .mapbase = GLANTANK_UART,
139 .membase = (char *)GLANTANK_UART,
140 .irq = IRQ_IOP32X_XINT3,
141 .flags = UPF_SKIP_TEST,
142 .iotype = UPIO_MEM,
143 .regshift = 0,
144 .uartclk = 1843200,
145 },
146 { },
147};
148
149static struct resource glantank_uart_resource = {
150 .start = GLANTANK_UART,
151 .end = GLANTANK_UART + 7,
152 .flags = IORESOURCE_MEM,
153};
154
155static struct platform_device glantank_serial_device = {
156 .name = "serial8250",
157 .id = PLAT8250_DEV_PLATFORM,
158 .dev = {
159 .platform_data = glantank_serial_port,
160 },
161 .num_resources = 1,
162 .resource = &glantank_uart_resource,
163};
164
165static struct f75375s_platform_data glantank_f75375s = {
166 .pwm = { 255, 255 },
167 .pwm_enable = { 0, 0 },
168};
169
170static struct i2c_board_info __initdata glantank_i2c_devices[] = {
171 {
172 I2C_BOARD_INFO("rs5c372a", 0x32),
173 },
174 {
175 I2C_BOARD_INFO("f75375", 0x2e),
176 .platform_data = &glantank_f75375s,
177 },
178};
179
180static void glantank_power_off(void)
181{
182 __raw_writeb(0x01, IOMEM(0xfe8d0004));
183
184 while (1)
185 ;
186}
187
188static void __init glantank_init_machine(void)
189{
190 platform_device_register(&iop3xx_i2c0_device);
191 platform_device_register(&iop3xx_i2c1_device);
192 platform_device_register(&glantank_flash_device);
193 platform_device_register(&glantank_serial_device);
194 platform_device_register(&iop3xx_dma_0_channel);
195 platform_device_register(&iop3xx_dma_1_channel);
196
197 i2c_register_board_info(0, glantank_i2c_devices,
198 ARRAY_SIZE(glantank_i2c_devices));
199
200 pm_power_off = glantank_power_off;
201}
202
203MACHINE_START(GLANTANK, "GLAN Tank")
204
205 .atag_offset = 0x100,
206 .map_io = glantank_map_io,
207 .init_irq = iop32x_init_irq,
208 .init_time = glantank_timer_init,
209 .init_machine = glantank_init_machine,
210 .restart = iop3xx_restart,
211MACHINE_END
212