1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * arch/arm/mach-ixp4xx/gtwx5715-setup.c
5 * Gemtek GTWX5715 (Linksys WRV54G) board setup
7 * Copyright (C) 2004 George T. Joseph
11 #include <linux/init.h>
12 #include <linux/device.h>
13 #include <linux/serial.h>
14 #include <linux/tty.h>
15 #include <linux/serial_8250.h>
16 #include <asm/types.h>
17 #include <asm/setup.h>
18 #include <asm/memory.h>
19 #include <mach/hardware.h>
21 #include <asm/mach-types.h>
22 #include <asm/mach/arch.h>
23 #include <asm/mach/flash.h>
27 /* GPIO 5,6,7 and 12 are hard wired to the Kendin KS8995M Switch
28 and operate as an SPI type interface. The details of the interface
29 are available on Kendin/Micrel's web site. */
31 #define GTWX5715_KSSPI_SELECT 5
32 #define GTWX5715_KSSPI_TXD 6
33 #define GTWX5715_KSSPI_CLOCK 7
34 #define GTWX5715_KSSPI_RXD 12
36 /* The "reset" button is wired to GPIO 3.
37 The GPIO is brought "low" when the button is pushed. */
39 #define GTWX5715_BUTTON_GPIO 3
41 /* Board Label Front Label
44 LED3 not populated but could be
46 LED5 - LED8 Controlled by KS8995M Switch
49 #define GTWX5715_LED1_GPIO 2
50 #define GTWX5715_LED2_GPIO 9
51 #define GTWX5715_LED3_GPIO 8
52 #define GTWX5715_LED4_GPIO 1
53 #define GTWX5715_LED9_GPIO 4
56 * Xscale UART registers are 32 bits wide with only the least
57 * significant 8 bits having any meaning. From a configuration
58 * perspective, this means 2 things...
60 * Setting .regshift = 2 so that the standard 16550 registers
61 * line up on every 4th byte.
63 * Shifting the register start virtual address +3 bytes when
64 * compiled big-endian. Since register writes are done on a
65 * single byte basis, if the shift isn't done the driver will
66 * write the value into the most significant byte of the register,
67 * which is ignored, instead of the least significant.
77 * Only the second or "console" uart is connected on the gtwx5715.
80 static struct resource gtwx5715_uart_resources
[] = {
82 .start
= IXP4XX_UART2_BASE_PHYS
,
83 .end
= IXP4XX_UART2_BASE_PHYS
+ 0x0fff,
84 .flags
= IORESOURCE_MEM
,
87 .start
= IRQ_IXP4XX_UART2
,
88 .end
= IRQ_IXP4XX_UART2
,
89 .flags
= IORESOURCE_IRQ
,
95 static struct plat_serial8250_port gtwx5715_uart_platform_data
[] = {
97 .mapbase
= IXP4XX_UART2_BASE_PHYS
,
98 .membase
= (char *)IXP4XX_UART2_BASE_VIRT
+ REG_OFFSET
,
99 .irq
= IRQ_IXP4XX_UART2
,
100 .flags
= UPF_BOOT_AUTOCONF
| UPF_SKIP_TEST
,
103 .uartclk
= IXP4XX_UART_XTAL
,
108 static struct platform_device gtwx5715_uart_device
= {
109 .name
= "serial8250",
110 .id
= PLAT8250_DEV_PLATFORM
,
112 .platform_data
= gtwx5715_uart_platform_data
,
115 .resource
= gtwx5715_uart_resources
,
118 static struct flash_platform_data gtwx5715_flash_data
= {
119 .map_name
= "cfi_probe",
123 static struct resource gtwx5715_flash_resource
= {
124 .flags
= IORESOURCE_MEM
,
127 static struct platform_device gtwx5715_flash
= {
128 .name
= "IXP4XX-Flash",
131 .platform_data
= >wx5715_flash_data
,
134 .resource
= >wx5715_flash_resource
,
137 static struct platform_device
*gtwx5715_devices
[] __initdata
= {
138 >wx5715_uart_device
,
142 static void __init
gtwx5715_init(void)
146 gtwx5715_flash_resource
.start
= IXP4XX_EXP_BUS_BASE(0);
147 gtwx5715_flash_resource
.end
= IXP4XX_EXP_BUS_BASE(0) + SZ_8M
- 1;
149 platform_add_devices(gtwx5715_devices
, ARRAY_SIZE(gtwx5715_devices
));
153 MACHINE_START(GTWX5715
, "Gemtek GTWX5715 (Linksys WRV54G)")
154 /* Maintainer: George Joseph */
155 .map_io
= ixp4xx_map_io
,
156 .init_early
= ixp4xx_init_early
,
157 .init_irq
= ixp4xx_init_irq
,
158 .init_time
= ixp4xx_timer_init
,
159 .atag_offset
= 0x100,
160 .init_machine
= gtwx5715_init
,
161 #if defined(CONFIG_PCI)
162 .dma_zone_size
= SZ_64M
,
164 .restart
= ixp4xx_restart
,