1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Copyright (C) 2009 Yoichi Yuasa <yuasa@linux-mips.org>
6 * based on code for MX31ADS,
7 * Copyright (C) 2000 Deep Blue Solutions Ltd
8 * Copyright (C) 2002 Shane Nay (shane@minirl.com)
9 * Copyright 2005-2007 Freescale Semiconductor, Inc. All Rights Reserved.
12 #include <linux/gpio.h>
13 #include <linux/init.h>
14 #include <linux/platform_device.h>
15 #include <linux/serial_8250.h>
16 #include <linux/smsc911x.h>
17 #include <linux/types.h>
18 #include <linux/regulator/machine.h>
19 #include <linux/regulator/fixed.h>
22 #include <asm/mach-types.h>
23 #include <asm/memory.h>
24 #include <asm/setup.h>
25 #include <asm/mach/arch.h>
26 #include <asm/mach/irq.h>
27 #include <asm/mach/map.h>
28 #include <asm/mach/time.h>
31 #include "devices-imx31.h"
33 #include "iomux-mx3.h"
35 #define KZM_ARM11_IO_ADDRESS(x) (IOMEM( \
36 IMX_IO_P2V_MODULE(x, MX31_CS4) ?: \
37 IMX_IO_P2V_MODULE(x, MX31_CS5)) ?: \
41 * KZM-ARM11-01 Board Control Registers on FPGA
43 #define KZM_ARM11_CTL1 (MX31_CS4_BASE_ADDR + 0x1000)
44 #define KZM_ARM11_CTL2 (MX31_CS4_BASE_ADDR + 0x1001)
45 #define KZM_ARM11_RSW1 (MX31_CS4_BASE_ADDR + 0x1002)
46 #define KZM_ARM11_BACK_LIGHT (MX31_CS4_BASE_ADDR + 0x1004)
47 #define KZM_ARM11_FPGA_REV (MX31_CS4_BASE_ADDR + 0x1008)
48 #define KZM_ARM11_7SEG_LED (MX31_CS4_BASE_ADDR + 0x1010)
49 #define KZM_ARM11_LEDS (MX31_CS4_BASE_ADDR + 0x1020)
50 #define KZM_ARM11_DIPSW2 (MX31_CS4_BASE_ADDR + 0x1003)
53 * External UART for touch panel on FPGA
55 #define KZM_ARM11_16550 (MX31_CS4_BASE_ADDR + 0x1050)
57 #if IS_ENABLED(CONFIG_SERIAL_8250)
59 * KZM-ARM11-01 has an external UART on FPGA
61 static struct plat_serial8250_port serial_platform_data
[] = {
63 .membase
= KZM_ARM11_IO_ADDRESS(KZM_ARM11_16550
),
64 .mapbase
= KZM_ARM11_16550
,
65 /* irq number is run-time assigned */
66 .irqflags
= IRQ_TYPE_EDGE_RISING
,
70 .flags
= UPF_BOOT_AUTOCONF
| UPF_SKIP_TEST
|
76 static struct resource serial8250_resources
[] = {
78 .start
= KZM_ARM11_16550
,
79 .end
= KZM_ARM11_16550
+ 0x10,
80 .flags
= IORESOURCE_MEM
,
83 /* irq number is run-time assigned */
84 .flags
= IORESOURCE_IRQ
,
88 static struct platform_device serial_device
= {
90 .id
= PLAT8250_DEV_PLATFORM
,
92 .platform_data
= serial_platform_data
,
94 .num_resources
= ARRAY_SIZE(serial8250_resources
),
95 .resource
= serial8250_resources
,
98 static int __init
kzm_init_ext_uart(void)
103 * GPIO 1-1: external UART interrupt line
105 mxc_iomux_mode(IOMUX_MODE(MX31_PIN_GPIO1_1
, IOMUX_CONFIG_GPIO
));
106 gpio_request(IOMUX_TO_GPIO(MX31_PIN_GPIO1_1
), "ext-uart-int");
107 gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_GPIO1_1
));
110 * Unmask UART interrupt
112 tmp
= __raw_readb(KZM_ARM11_IO_ADDRESS(KZM_ARM11_CTL1
));
114 __raw_writeb(tmp
, KZM_ARM11_IO_ADDRESS(KZM_ARM11_CTL1
));
116 serial_platform_data
[0].irq
=
117 gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_GPIO1_1
));
118 serial8250_resources
[1].start
=
119 gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_GPIO1_1
));
120 serial8250_resources
[1].end
=
121 gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_GPIO1_1
));
123 return platform_device_register(&serial_device
);
126 static inline int kzm_init_ext_uart(void)
135 #if IS_ENABLED(CONFIG_SMSC911X)
136 static struct smsc911x_platform_config kzm_smsc9118_config
= {
137 .phy_interface
= PHY_INTERFACE_MODE_MII
,
138 .irq_polarity
= SMSC911X_IRQ_POLARITY_ACTIVE_HIGH
,
139 .irq_type
= SMSC911X_IRQ_TYPE_PUSH_PULL
,
140 .flags
= SMSC911X_USE_32BIT
| SMSC911X_SAVE_MAC_ADDRESS
,
143 static struct resource kzm_smsc9118_resources
[] = {
145 .start
= MX31_CS5_BASE_ADDR
,
146 .end
= MX31_CS5_BASE_ADDR
+ SZ_128K
- 1,
147 .flags
= IORESOURCE_MEM
,
150 /* irq number is run-time assigned */
151 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHEDGE
,
155 static struct platform_device kzm_smsc9118_device
= {
158 .num_resources
= ARRAY_SIZE(kzm_smsc9118_resources
),
159 .resource
= kzm_smsc9118_resources
,
161 .platform_data
= &kzm_smsc9118_config
,
165 static struct regulator_consumer_supply dummy_supplies
[] = {
166 REGULATOR_SUPPLY("vdd33a", "smsc911x"),
167 REGULATOR_SUPPLY("vddvario", "smsc911x"),
170 static int __init
kzm_init_smsc9118(void)
173 * GPIO 1-2: SMSC9118 interrupt line
175 mxc_iomux_mode(IOMUX_MODE(MX31_PIN_GPIO1_2
, IOMUX_CONFIG_GPIO
));
176 gpio_request(IOMUX_TO_GPIO(MX31_PIN_GPIO1_2
), "smsc9118-int");
177 gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_GPIO1_2
));
179 regulator_register_fixed(0, dummy_supplies
, ARRAY_SIZE(dummy_supplies
));
181 kzm_smsc9118_resources
[1].start
=
182 gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_GPIO1_2
));
183 kzm_smsc9118_resources
[1].end
=
184 gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_GPIO1_2
));
186 return platform_device_register(&kzm_smsc9118_device
);
189 static inline int kzm_init_smsc9118(void)
195 #if IS_ENABLED(CONFIG_SERIAL_IMX)
196 static const struct imxuart_platform_data uart_pdata __initconst
= {
197 .flags
= IMXUART_HAVE_RTSCTS
,
200 static void __init
kzm_init_imx_uart(void)
202 imx31_add_imx_uart0(&uart_pdata
);
203 imx31_add_imx_uart1(&uart_pdata
);
206 static inline void kzm_init_imx_uart(void)
211 static int kzm_pins
[] __initdata
= {
216 MX31_PIN_DCD_DCE1__DCD_DCE1
,
217 MX31_PIN_RI_DCE1__RI_DCE1
,
218 MX31_PIN_DSR_DCE1__DSR_DCE1
,
219 MX31_PIN_DTR_DCE1__DTR_DCE1
,
224 MX31_PIN_DCD_DTE1__DCD_DTE2
,
225 MX31_PIN_RI_DTE1__RI_DTE2
,
226 MX31_PIN_DSR_DTE1__DSR_DTE2
,
227 MX31_PIN_DTR_DTE1__DTR_DTE2
,
231 * Board specific initialization.
233 static void __init
kzm_board_init(void)
237 mxc_iomux_setup_multiple_pins(kzm_pins
,
238 ARRAY_SIZE(kzm_pins
), "kzm");
241 pr_info("Clock input source is 26MHz\n");
244 static void __init
kzm_late_init(void)
251 * This structure defines static mappings for the kzm-arm11-01 board.
253 static struct map_desc kzm_io_desc
[] __initdata
= {
255 .virtual = (unsigned long)MX31_CS4_BASE_ADDR_VIRT
,
256 .pfn
= __phys_to_pfn(MX31_CS4_BASE_ADDR
),
257 .length
= MX31_CS4_SIZE
,
261 .virtual = (unsigned long)MX31_CS5_BASE_ADDR_VIRT
,
262 .pfn
= __phys_to_pfn(MX31_CS5_BASE_ADDR
),
263 .length
= MX31_CS5_SIZE
,
269 * Set up static virtual mappings.
271 static void __init
kzm_map_io(void)
274 iotable_init(kzm_io_desc
, ARRAY_SIZE(kzm_io_desc
));
277 static void __init
kzm_timer_init(void)
279 mx31_clocks_init(26000000);
282 MACHINE_START(KZM_ARM11_01
, "Kyoto Microcomputer Co., Ltd. KZM-ARM11-01")
283 .atag_offset
= 0x100,
284 .map_io
= kzm_map_io
,
285 .init_early
= imx31_init_early
,
286 .init_irq
= mx31_init_irq
,
287 .init_time
= kzm_timer_init
,
288 .init_machine
= kzm_board_init
,
289 .init_late
= kzm_late_init
,
290 .restart
= mxc_restart
,