Merge tag 'usb-5.11-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
[linux/fpc-iii.git] / arch / arm / mach-iop32x / n2100.c
blob78b9a5ee41c922a0871900af387f3533226a8bc5
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * arch/arm/mach-iop32x/n2100.c
5 * Board support code for the Thecus N2100 platform.
7 * Author: Rory Bolt <rorybolt@pacbell.net>
8 * Copyright (C) 2002 Rory Bolt
9 * Copyright 2003 (c) MontaVista, Software, Inc.
10 * Copyright (C) 2004 Intel Corp.
13 #include <linux/mm.h>
14 #include <linux/init.h>
15 #include <linux/f75375s.h>
16 #include <linux/leds-pca9532.h>
17 #include <linux/delay.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/reboot.h>
28 #include <linux/io.h>
29 #include <linux/gpio.h>
30 #include <linux/gpio/machine.h>
31 #include <asm/irq.h>
32 #include <asm/mach/arch.h>
33 #include <asm/mach/map.h>
34 #include <asm/mach/pci.h>
35 #include <asm/mach/time.h>
36 #include <asm/mach-types.h>
37 #include <asm/page.h>
39 #include "hardware.h"
40 #include "irqs.h"
41 #include "gpio-iop32x.h"
44 * N2100 timer tick configuration.
46 static void __init n2100_timer_init(void)
48 /* 33.000 MHz crystal. */
49 iop_init_time(198000000);
54 * N2100 I/O.
56 static struct map_desc n2100_io_desc[] __initdata = {
57 { /* on-board devices */
58 .virtual = N2100_UART,
59 .pfn = __phys_to_pfn(N2100_UART),
60 .length = 0x00100000,
61 .type = MT_DEVICE
65 void __init n2100_map_io(void)
67 iop3xx_map_io();
68 iotable_init(n2100_io_desc, ARRAY_SIZE(n2100_io_desc));
73 * N2100 PCI.
75 static int n2100_pci_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
77 int irq;
79 if (PCI_SLOT(dev->devfn) == 1) {
80 /* RTL8110SB #1 */
81 irq = IRQ_IOP32X_XINT0;
82 } else if (PCI_SLOT(dev->devfn) == 2) {
83 /* RTL8110SB #2 */
84 irq = IRQ_IOP32X_XINT3;
85 } else if (PCI_SLOT(dev->devfn) == 3) {
86 /* Sil3512 */
87 irq = IRQ_IOP32X_XINT2;
88 } else if (PCI_SLOT(dev->devfn) == 4 && pin == 1) {
89 /* VT6212 INTA */
90 irq = IRQ_IOP32X_XINT1;
91 } else if (PCI_SLOT(dev->devfn) == 4 && pin == 2) {
92 /* VT6212 INTB */
93 irq = IRQ_IOP32X_XINT0;
94 } else if (PCI_SLOT(dev->devfn) == 4 && pin == 3) {
95 /* VT6212 INTC */
96 irq = IRQ_IOP32X_XINT2;
97 } else if (PCI_SLOT(dev->devfn) == 5) {
98 /* Mini-PCI slot */
99 irq = IRQ_IOP32X_XINT3;
100 } else {
101 printk(KERN_ERR "n2100_pci_map_irq() called for unknown "
102 "device PCI:%d:%d:%d\n", dev->bus->number,
103 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn));
104 irq = -1;
107 return irq;
110 static struct hw_pci n2100_pci __initdata = {
111 .nr_controllers = 1,
112 .ops = &iop3xx_ops,
113 .setup = iop3xx_pci_setup,
114 .preinit = iop3xx_pci_preinit,
115 .map_irq = n2100_pci_map_irq,
119 * Both r8169 chips on the n2100 exhibit PCI parity problems. Set
120 * the ->broken_parity_status flag for both ports so that the r8169
121 * driver knows it should ignore error interrupts.
123 static void n2100_fixup_r8169(struct pci_dev *dev)
125 if (dev->bus->number == 0 &&
126 (dev->devfn == PCI_DEVFN(1, 0) ||
127 dev->devfn == PCI_DEVFN(2, 0)))
128 dev->broken_parity_status = 1;
130 DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_REALTEK, PCI_ANY_ID, n2100_fixup_r8169);
132 static int __init n2100_pci_init(void)
134 if (machine_is_n2100())
135 pci_common_init(&n2100_pci);
137 return 0;
140 subsys_initcall(n2100_pci_init);
144 * N2100 machine initialisation.
146 static struct physmap_flash_data n2100_flash_data = {
147 .width = 2,
150 static struct resource n2100_flash_resource = {
151 .start = 0xf0000000,
152 .end = 0xf0ffffff,
153 .flags = IORESOURCE_MEM,
156 static struct platform_device n2100_flash_device = {
157 .name = "physmap-flash",
158 .id = 0,
159 .dev = {
160 .platform_data = &n2100_flash_data,
162 .num_resources = 1,
163 .resource = &n2100_flash_resource,
167 static struct plat_serial8250_port n2100_serial_port[] = {
169 .mapbase = N2100_UART,
170 .membase = (char *)N2100_UART,
171 .irq = 0,
172 .flags = UPF_SKIP_TEST | UPF_AUTO_IRQ | UPF_SHARE_IRQ,
173 .iotype = UPIO_MEM,
174 .regshift = 0,
175 .uartclk = 1843200,
177 { },
180 static struct resource n2100_uart_resource = {
181 .start = N2100_UART,
182 .end = N2100_UART + 7,
183 .flags = IORESOURCE_MEM,
186 static struct platform_device n2100_serial_device = {
187 .name = "serial8250",
188 .id = PLAT8250_DEV_PLATFORM,
189 .dev = {
190 .platform_data = n2100_serial_port,
192 .num_resources = 1,
193 .resource = &n2100_uart_resource,
196 static struct f75375s_platform_data n2100_f75375s = {
197 .pwm = { 255, 255 },
198 .pwm_enable = { 0, 0 },
201 static struct pca9532_platform_data n2100_leds = {
202 .leds = {
203 { .name = "n2100:red:satafail0",
204 .state = PCA9532_OFF,
205 .type = PCA9532_TYPE_LED,
207 { .name = "n2100:red:satafail1",
208 .state = PCA9532_OFF,
209 .type = PCA9532_TYPE_LED,
211 { .name = "n2100:blue:usb",
212 .state = PCA9532_OFF,
213 .type = PCA9532_TYPE_LED,
215 { .type = PCA9532_TYPE_NONE },
217 { .type = PCA9532_TYPE_NONE },
218 { .type = PCA9532_TYPE_NONE },
219 { .type = PCA9532_TYPE_NONE },
220 { .name = "n2100:red:usb",
221 .state = PCA9532_OFF,
222 .type = PCA9532_TYPE_LED,
225 { .type = PCA9532_TYPE_NONE }, /* power OFF gpio */
226 { .type = PCA9532_TYPE_NONE }, /* reset gpio */
227 { .type = PCA9532_TYPE_NONE },
228 { .type = PCA9532_TYPE_NONE },
230 { .type = PCA9532_TYPE_NONE },
231 { .name = "n2100:orange:system",
232 .state = PCA9532_OFF,
233 .type = PCA9532_TYPE_LED,
235 { .name = "n2100:red:system",
236 .state = PCA9532_OFF,
237 .type = PCA9532_TYPE_LED,
239 { .name = "N2100 beeper" ,
240 .state = PCA9532_OFF,
241 .type = PCA9532_TYPE_N2100_BEEP,
244 .psc = { 0, 0 },
245 .pwm = { 0, 0 },
248 static struct i2c_board_info __initdata n2100_i2c_devices[] = {
250 I2C_BOARD_INFO("rs5c372b", 0x32),
253 I2C_BOARD_INFO("f75375", 0x2e),
254 .platform_data = &n2100_f75375s,
257 I2C_BOARD_INFO("pca9532", 0x60),
258 .platform_data = &n2100_leds,
263 * Pull PCA9532 GPIO #8 low to power off the machine.
265 static void n2100_power_off(void)
267 local_irq_disable();
269 /* Start condition, I2C address of PCA9532, write transaction. */
270 *IOP3XX_IDBR0 = 0xc0;
271 *IOP3XX_ICR0 = 0xe9;
272 mdelay(1);
274 /* Write address 0x08. */
275 *IOP3XX_IDBR0 = 0x08;
276 *IOP3XX_ICR0 = 0xe8;
277 mdelay(1);
279 /* Write data 0x01, stop condition. */
280 *IOP3XX_IDBR0 = 0x01;
281 *IOP3XX_ICR0 = 0xea;
283 while (1)
287 static void n2100_restart(enum reboot_mode mode, const char *cmd)
289 int ret;
291 ret = gpio_direction_output(N2100_HARDWARE_RESET, 0);
292 if (ret) {
293 pr_crit("could not drive reset GPIO low\n");
294 return;
296 /* Wait for reset to happen */
297 while (1)
302 static struct timer_list power_button_poll_timer;
304 static void power_button_poll(struct timer_list *unused)
306 if (gpio_get_value(N2100_POWER_BUTTON) == 0) {
307 ctrl_alt_del();
308 return;
311 power_button_poll_timer.expires = jiffies + (HZ / 10);
312 add_timer(&power_button_poll_timer);
315 static int __init n2100_request_gpios(void)
317 int ret;
319 if (!machine_is_n2100())
320 return 0;
322 ret = gpio_request(N2100_HARDWARE_RESET, "reset");
323 if (ret)
324 pr_err("could not request reset GPIO\n");
326 ret = gpio_request(N2100_POWER_BUTTON, "power");
327 if (ret)
328 pr_err("could not request power GPIO\n");
329 else {
330 ret = gpio_direction_input(N2100_POWER_BUTTON);
331 if (ret)
332 pr_err("could not set power GPIO as input\n");
334 /* Set up power button poll timer */
335 timer_setup(&power_button_poll_timer, power_button_poll, 0);
336 power_button_poll_timer.expires = jiffies + (HZ / 10);
337 add_timer(&power_button_poll_timer);
338 return 0;
340 device_initcall(n2100_request_gpios);
342 static void __init n2100_init_machine(void)
344 register_iop32x_gpio();
345 gpiod_add_lookup_table(&iop3xx_i2c0_gpio_lookup);
346 platform_device_register(&iop3xx_i2c0_device);
347 platform_device_register(&n2100_flash_device);
348 platform_device_register(&n2100_serial_device);
349 platform_device_register(&iop3xx_dma_0_channel);
350 platform_device_register(&iop3xx_dma_1_channel);
352 i2c_register_board_info(0, n2100_i2c_devices,
353 ARRAY_SIZE(n2100_i2c_devices));
355 pm_power_off = n2100_power_off;
358 MACHINE_START(N2100, "Thecus N2100")
359 /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
360 .atag_offset = 0x100,
361 .map_io = n2100_map_io,
362 .init_irq = iop32x_init_irq,
363 .init_time = n2100_timer_init,
364 .init_machine = n2100_init_machine,
365 .restart = n2100_restart,
366 MACHINE_END