mm: fix exec activate_mm vs TLB shootdown and lazy tlb switching race
[linux/fpc-iii.git] / arch / arm / mach-iop32x / n2100.c
bloba904244264ce55f8171610006472e5c95e3fb38f
1 /*
2 * arch/arm/mach-iop32x/n2100.c
4 * Board support code for the Thecus N2100 platform.
6 * Author: Rory Bolt <rorybolt@pacbell.net>
7 * Copyright (C) 2002 Rory Bolt
8 * Copyright 2003 (c) MontaVista, Software, Inc.
9 * Copyright (C) 2004 Intel Corp.
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
17 #include <linux/mm.h>
18 #include <linux/init.h>
19 #include <linux/f75375s.h>
20 #include <linux/leds-pca9532.h>
21 #include <linux/delay.h>
22 #include <linux/kernel.h>
23 #include <linux/pci.h>
24 #include <linux/pm.h>
25 #include <linux/string.h>
26 #include <linux/serial_core.h>
27 #include <linux/serial_8250.h>
28 #include <linux/mtd/physmap.h>
29 #include <linux/i2c.h>
30 #include <linux/platform_device.h>
31 #include <linux/reboot.h>
32 #include <linux/io.h>
33 #include <linux/gpio.h>
34 #include <mach/hardware.h>
35 #include <asm/irq.h>
36 #include <asm/mach/arch.h>
37 #include <asm/mach/map.h>
38 #include <asm/mach/pci.h>
39 #include <asm/mach/time.h>
40 #include <asm/mach-types.h>
41 #include <asm/page.h>
42 #include <asm/pgtable.h>
43 #include <mach/time.h>
44 #include "gpio-iop32x.h"
47 * N2100 timer tick configuration.
49 static void __init n2100_timer_init(void)
51 /* 33.000 MHz crystal. */
52 iop_init_time(198000000);
57 * N2100 I/O.
59 static struct map_desc n2100_io_desc[] __initdata = {
60 { /* on-board devices */
61 .virtual = N2100_UART,
62 .pfn = __phys_to_pfn(N2100_UART),
63 .length = 0x00100000,
64 .type = MT_DEVICE
68 void __init n2100_map_io(void)
70 iop3xx_map_io();
71 iotable_init(n2100_io_desc, ARRAY_SIZE(n2100_io_desc));
76 * N2100 PCI.
78 static int n2100_pci_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
80 int irq;
82 if (PCI_SLOT(dev->devfn) == 1) {
83 /* RTL8110SB #1 */
84 irq = IRQ_IOP32X_XINT0;
85 } else if (PCI_SLOT(dev->devfn) == 2) {
86 /* RTL8110SB #2 */
87 irq = IRQ_IOP32X_XINT3;
88 } else if (PCI_SLOT(dev->devfn) == 3) {
89 /* Sil3512 */
90 irq = IRQ_IOP32X_XINT2;
91 } else if (PCI_SLOT(dev->devfn) == 4 && pin == 1) {
92 /* VT6212 INTA */
93 irq = IRQ_IOP32X_XINT1;
94 } else if (PCI_SLOT(dev->devfn) == 4 && pin == 2) {
95 /* VT6212 INTB */
96 irq = IRQ_IOP32X_XINT0;
97 } else if (PCI_SLOT(dev->devfn) == 4 && pin == 3) {
98 /* VT6212 INTC */
99 irq = IRQ_IOP32X_XINT2;
100 } else if (PCI_SLOT(dev->devfn) == 5) {
101 /* Mini-PCI slot */
102 irq = IRQ_IOP32X_XINT3;
103 } else {
104 printk(KERN_ERR "n2100_pci_map_irq() called for unknown "
105 "device PCI:%d:%d:%d\n", dev->bus->number,
106 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn));
107 irq = -1;
110 return irq;
113 static struct hw_pci n2100_pci __initdata = {
114 .nr_controllers = 1,
115 .ops = &iop3xx_ops,
116 .setup = iop3xx_pci_setup,
117 .preinit = iop3xx_pci_preinit,
118 .map_irq = n2100_pci_map_irq,
122 * Both r8169 chips on the n2100 exhibit PCI parity problems. Set
123 * the ->broken_parity_status flag for both ports so that the r8169
124 * driver knows it should ignore error interrupts.
126 static void n2100_fixup_r8169(struct pci_dev *dev)
128 if (dev->bus->number == 0 &&
129 (dev->devfn == PCI_DEVFN(1, 0) ||
130 dev->devfn == PCI_DEVFN(2, 0)))
131 dev->broken_parity_status = 1;
133 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_REALTEK, PCI_ANY_ID, n2100_fixup_r8169);
135 static int __init n2100_pci_init(void)
137 if (machine_is_n2100())
138 pci_common_init(&n2100_pci);
140 return 0;
143 subsys_initcall(n2100_pci_init);
147 * N2100 machine initialisation.
149 static struct physmap_flash_data n2100_flash_data = {
150 .width = 2,
153 static struct resource n2100_flash_resource = {
154 .start = 0xf0000000,
155 .end = 0xf0ffffff,
156 .flags = IORESOURCE_MEM,
159 static struct platform_device n2100_flash_device = {
160 .name = "physmap-flash",
161 .id = 0,
162 .dev = {
163 .platform_data = &n2100_flash_data,
165 .num_resources = 1,
166 .resource = &n2100_flash_resource,
170 static struct plat_serial8250_port n2100_serial_port[] = {
172 .mapbase = N2100_UART,
173 .membase = (char *)N2100_UART,
174 .irq = 0,
175 .flags = UPF_SKIP_TEST | UPF_AUTO_IRQ | UPF_SHARE_IRQ,
176 .iotype = UPIO_MEM,
177 .regshift = 0,
178 .uartclk = 1843200,
180 { },
183 static struct resource n2100_uart_resource = {
184 .start = N2100_UART,
185 .end = N2100_UART + 7,
186 .flags = IORESOURCE_MEM,
189 static struct platform_device n2100_serial_device = {
190 .name = "serial8250",
191 .id = PLAT8250_DEV_PLATFORM,
192 .dev = {
193 .platform_data = n2100_serial_port,
195 .num_resources = 1,
196 .resource = &n2100_uart_resource,
199 static struct f75375s_platform_data n2100_f75375s = {
200 .pwm = { 255, 255 },
201 .pwm_enable = { 0, 0 },
204 static struct pca9532_platform_data n2100_leds = {
205 .leds = {
206 { .name = "n2100:red:satafail0",
207 .state = PCA9532_OFF,
208 .type = PCA9532_TYPE_LED,
210 { .name = "n2100:red:satafail1",
211 .state = PCA9532_OFF,
212 .type = PCA9532_TYPE_LED,
214 { .name = "n2100:blue:usb",
215 .state = PCA9532_OFF,
216 .type = PCA9532_TYPE_LED,
218 { .type = PCA9532_TYPE_NONE },
220 { .type = PCA9532_TYPE_NONE },
221 { .type = PCA9532_TYPE_NONE },
222 { .type = PCA9532_TYPE_NONE },
223 { .name = "n2100:red:usb",
224 .state = PCA9532_OFF,
225 .type = PCA9532_TYPE_LED,
228 { .type = PCA9532_TYPE_NONE }, /* power OFF gpio */
229 { .type = PCA9532_TYPE_NONE }, /* reset gpio */
230 { .type = PCA9532_TYPE_NONE },
231 { .type = PCA9532_TYPE_NONE },
233 { .type = PCA9532_TYPE_NONE },
234 { .name = "n2100:orange:system",
235 .state = PCA9532_OFF,
236 .type = PCA9532_TYPE_LED,
238 { .name = "n2100:red:system",
239 .state = PCA9532_OFF,
240 .type = PCA9532_TYPE_LED,
242 { .name = "N2100 beeper" ,
243 .state = PCA9532_OFF,
244 .type = PCA9532_TYPE_N2100_BEEP,
247 .psc = { 0, 0 },
248 .pwm = { 0, 0 },
251 static struct i2c_board_info __initdata n2100_i2c_devices[] = {
253 I2C_BOARD_INFO("rs5c372b", 0x32),
256 I2C_BOARD_INFO("f75375", 0x2e),
257 .platform_data = &n2100_f75375s,
260 I2C_BOARD_INFO("pca9532", 0x60),
261 .platform_data = &n2100_leds,
266 * Pull PCA9532 GPIO #8 low to power off the machine.
268 static void n2100_power_off(void)
270 local_irq_disable();
272 /* Start condition, I2C address of PCA9532, write transaction. */
273 *IOP3XX_IDBR0 = 0xc0;
274 *IOP3XX_ICR0 = 0xe9;
275 mdelay(1);
277 /* Write address 0x08. */
278 *IOP3XX_IDBR0 = 0x08;
279 *IOP3XX_ICR0 = 0xe8;
280 mdelay(1);
282 /* Write data 0x01, stop condition. */
283 *IOP3XX_IDBR0 = 0x01;
284 *IOP3XX_ICR0 = 0xea;
286 while (1)
290 static void n2100_restart(enum reboot_mode mode, const char *cmd)
292 int ret;
294 ret = gpio_direction_output(N2100_HARDWARE_RESET, 0);
295 if (ret) {
296 pr_crit("could not drive reset GPIO low\n");
297 return;
299 /* Wait for reset to happen */
300 while (1)
305 static struct timer_list power_button_poll_timer;
307 static void power_button_poll(unsigned long dummy)
309 if (gpio_get_value(N2100_POWER_BUTTON) == 0) {
310 ctrl_alt_del();
311 return;
314 power_button_poll_timer.expires = jiffies + (HZ / 10);
315 add_timer(&power_button_poll_timer);
318 static int __init n2100_request_gpios(void)
320 int ret;
322 if (!machine_is_n2100())
323 return 0;
325 ret = gpio_request(N2100_HARDWARE_RESET, "reset");
326 if (ret)
327 pr_err("could not request reset GPIO\n");
329 ret = gpio_request(N2100_POWER_BUTTON, "power");
330 if (ret)
331 pr_err("could not request power GPIO\n");
332 else {
333 ret = gpio_direction_input(N2100_POWER_BUTTON);
334 if (ret)
335 pr_err("could not set power GPIO as input\n");
337 /* Set up power button poll timer */
338 init_timer(&power_button_poll_timer);
339 power_button_poll_timer.function = power_button_poll;
340 power_button_poll_timer.expires = jiffies + (HZ / 10);
341 add_timer(&power_button_poll_timer);
342 return 0;
344 device_initcall(n2100_request_gpios);
346 static void __init n2100_init_machine(void)
348 register_iop32x_gpio();
349 platform_device_register(&iop3xx_i2c0_device);
350 platform_device_register(&n2100_flash_device);
351 platform_device_register(&n2100_serial_device);
352 platform_device_register(&iop3xx_dma_0_channel);
353 platform_device_register(&iop3xx_dma_1_channel);
355 i2c_register_board_info(0, n2100_i2c_devices,
356 ARRAY_SIZE(n2100_i2c_devices));
358 pm_power_off = n2100_power_off;
361 MACHINE_START(N2100, "Thecus N2100")
362 /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
363 .atag_offset = 0x100,
364 .map_io = n2100_map_io,
365 .init_irq = iop32x_init_irq,
366 .init_time = n2100_timer_init,
367 .init_machine = n2100_init_machine,
368 .restart = n2100_restart,
369 MACHINE_END