staging:iio:adc:ad7606 move to info_mask_(shared_by_type/separate)
[linux/fpc-iii.git] / arch / arm / mach-iop32x / em7210.c
blob31fbb6c61b25c304adc2f0ee940ac1df38ac33f1
1 /*
2 * arch/arm/mach-iop32x/em7210.c
4 * Board support code for the Lanner EM7210 platforms.
6 * Based on arch/arm/mach-iop32x/iq31244.c file.
8 * Copyright (C) 2007 Arnaud Patard <arnaud.patard@rtp-net.org>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
16 #include <linux/mm.h>
17 #include <linux/init.h>
18 #include <linux/kernel.h>
19 #include <linux/pci.h>
20 #include <linux/pm.h>
21 #include <linux/serial_core.h>
22 #include <linux/serial_8250.h>
23 #include <linux/mtd/physmap.h>
24 #include <linux/platform_device.h>
25 #include <linux/i2c.h>
26 #include <mach/hardware.h>
27 #include <linux/io.h>
28 #include <linux/irq.h>
29 #include <asm/mach/arch.h>
30 #include <asm/mach/map.h>
31 #include <asm/mach/pci.h>
32 #include <asm/mach/time.h>
33 #include <asm/mach-types.h>
34 #include <mach/time.h>
36 static void __init em7210_timer_init(void)
38 /* http://www.kwaak.net/fotos/fotos-nas/slide_24.html */
39 /* 33.333 MHz crystal. */
40 iop_init_time(200000000);
44 * EM7210 RTC
46 static struct i2c_board_info __initdata em7210_i2c_devices[] = {
48 I2C_BOARD_INFO("rs5c372a", 0x32),
53 * EM7210 I/O
55 static struct map_desc em7210_io_desc[] __initdata = {
56 { /* on-board devices */
57 .virtual = IQ31244_UART,
58 .pfn = __phys_to_pfn(IQ31244_UART),
59 .length = 0x00100000,
60 .type = MT_DEVICE,
64 void __init em7210_map_io(void)
66 iop3xx_map_io();
67 iotable_init(em7210_io_desc, ARRAY_SIZE(em7210_io_desc));
72 * EM7210 PCI
74 #define INTA IRQ_IOP32X_XINT0
75 #define INTB IRQ_IOP32X_XINT1
76 #define INTC IRQ_IOP32X_XINT2
77 #define INTD IRQ_IOP32X_XINT3
79 static int __init
80 em7210_pci_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
82 static int pci_irq_table[][4] = {
84 * PCI IDSEL/INTPIN->INTLINE
85 * A B C D
87 {INTB, INTB, INTB, INTB}, /* console / uart */
88 {INTA, INTA, INTA, INTA}, /* 1st 82541 */
89 {INTD, INTD, INTD, INTD}, /* 2nd 82541 */
90 {INTC, INTC, INTC, INTC}, /* GD31244 */
91 {INTD, INTA, INTA, INTA}, /* mini-PCI */
92 {INTD, INTC, INTA, INTA}, /* NEC USB */
95 if (pin < 1 || pin > 4)
96 return -1;
98 return pci_irq_table[slot % 6][pin - 1];
101 static struct hw_pci em7210_pci __initdata = {
102 .nr_controllers = 1,
103 .ops = &iop3xx_ops,
104 .setup = iop3xx_pci_setup,
105 .preinit = iop3xx_pci_preinit,
106 .map_irq = em7210_pci_map_irq,
109 static int __init em7210_pci_init(void)
111 if (machine_is_em7210())
112 pci_common_init(&em7210_pci);
114 return 0;
117 subsys_initcall(em7210_pci_init);
121 * EM7210 Flash
123 static struct physmap_flash_data em7210_flash_data = {
124 .width = 2,
127 static struct resource em7210_flash_resource = {
128 .start = 0xf0000000,
129 .end = 0xf1ffffff,
130 .flags = IORESOURCE_MEM,
133 static struct platform_device em7210_flash_device = {
134 .name = "physmap-flash",
135 .id = 0,
136 .dev = {
137 .platform_data = &em7210_flash_data,
139 .num_resources = 1,
140 .resource = &em7210_flash_resource,
145 * EM7210 UART
146 * The physical address of the serial port is 0xfe800000,
147 * so it can be used for physical and virtual address.
149 static struct plat_serial8250_port em7210_serial_port[] = {
151 .mapbase = IQ31244_UART,
152 .membase = (char *)IQ31244_UART,
153 .irq = IRQ_IOP32X_XINT1,
154 .flags = UPF_SKIP_TEST,
155 .iotype = UPIO_MEM,
156 .regshift = 0,
157 .uartclk = 1843200,
159 { },
162 static struct resource em7210_uart_resource = {
163 .start = IQ31244_UART,
164 .end = IQ31244_UART + 7,
165 .flags = IORESOURCE_MEM,
168 static struct platform_device em7210_serial_device = {
169 .name = "serial8250",
170 .id = PLAT8250_DEV_PLATFORM,
171 .dev = {
172 .platform_data = em7210_serial_port,
174 .num_resources = 1,
175 .resource = &em7210_uart_resource,
178 void em7210_power_off(void)
180 *IOP3XX_GPOE &= 0xfe;
181 *IOP3XX_GPOD |= 0x01;
184 static void __init em7210_init_machine(void)
186 platform_device_register(&em7210_serial_device);
187 platform_device_register(&iop3xx_i2c0_device);
188 platform_device_register(&iop3xx_i2c1_device);
189 platform_device_register(&em7210_flash_device);
190 platform_device_register(&iop3xx_dma_0_channel);
191 platform_device_register(&iop3xx_dma_1_channel);
193 i2c_register_board_info(0, em7210_i2c_devices,
194 ARRAY_SIZE(em7210_i2c_devices));
197 pm_power_off = em7210_power_off;
200 MACHINE_START(EM7210, "Lanner EM7210")
201 .atag_offset = 0x100,
202 .map_io = em7210_map_io,
203 .init_irq = iop32x_init_irq,
204 .init_time = em7210_timer_init,
205 .init_machine = em7210_init_machine,
206 .restart = iop3xx_restart,
207 MACHINE_END