blob: 5c3d07cf2e7953acc946f9e128dd4b2123857611 [file] [log] [blame]
Krzysztof Kozlowski84b21702017-12-25 20:54:32 +01001// SPDX-License-Identifier: GPL-2.0
2//
3// Copyright (c) 2003-2008 Simtec Electronics
4// Ben Dooks <ben@simtec.co.uk>
5//
6// Machine support for Thorcom VR1000 board. Designed for Thorcom by
7// Simtec Electronics, http://www.simtec.co.uk/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9#include <linux/kernel.h>
10#include <linux/types.h>
11#include <linux/interrupt.h>
12#include <linux/list.h>
13#include <linux/timer.h>
14#include <linux/init.h>
Ben Dooksec976d62009-05-13 22:52:24 +010015#include <linux/gpio.h>
Linus Walleijf7f611f2020-07-08 09:11:49 +020016#include <linux/gpio/machine.h>
Ben Dooksd97a6662005-06-23 21:56:47 +010017#include <linux/dm9000.h>
Ben Dooks60d66982008-07-03 11:24:42 +010018#include <linux/i2c.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <linux/serial.h>
21#include <linux/tty.h>
22#include <linux/serial_8250.h>
23#include <linux/serial_reg.h>
Tushar Behera334a1c72014-02-14 10:32:45 +090024#include <linux/serial_s3c.h>
Russell Kingfced80c2008-09-06 12:10:45 +010025#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include <asm/mach/arch.h>
28#include <asm/mach/map.h>
29#include <asm/mach/irq.h>
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/irq.h>
32#include <asm/mach-types.h>
33
Arnd Bergmann436d42c2012-08-24 15:22:12 +020034#include <linux/platform_data/leds-s3c24xx.h>
Arnd Bergmann436d42c2012-08-24 15:22:12 +020035#include <linux/platform_data/i2c-s3c2410.h>
36#include <linux/platform_data/asoc-s3c24xx_simtec.h>
Ben Dooks9d529c62008-07-03 11:24:39 +010037
Arnd Bergmannc6ff1322019-09-02 18:37:30 +020038#include "regs-gpio.h"
39#include "gpio-samsung.h"
40#include "gpio-cfg.h"
Kukjin Kimdb8304e2013-01-02 10:47:40 -080041
Arnd Bergmannc6ff1322019-09-02 18:37:30 +020042#include "cpu.h"
43#include "devs.h"
Kukjin Kimdb8304e2013-01-02 10:47:40 -080044
Kukjin Kimbbd7e5e2013-01-01 19:56:20 -080045#include "bast.h"
Arnd Bergmann71b91142019-09-02 17:47:55 +020046#include "s3c24xx.h"
Kukjin Kimbbd7e5e2013-01-01 19:56:20 -080047#include "simtec.h"
Kukjin Kimdb8304e2013-01-02 10:47:40 -080048#include "vr1000.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/* macros for virtual address mods for the io space entries */
51#define VA_C5(item) ((unsigned long)(item) + BAST_VAM_CS5)
52#define VA_C4(item) ((unsigned long)(item) + BAST_VAM_CS4)
53#define VA_C3(item) ((unsigned long)(item) + BAST_VAM_CS3)
54#define VA_C2(item) ((unsigned long)(item) + BAST_VAM_CS2)
55
56/* macros to modify the physical addresses for io space */
57
Ben Dooksdf1ec6d2005-11-08 19:15:30 +000058#define PA_CS2(item) (__phys_to_pfn((item) + S3C2410_CS2))
59#define PA_CS3(item) (__phys_to_pfn((item) + S3C2410_CS3))
60#define PA_CS4(item) (__phys_to_pfn((item) + S3C2410_CS4))
61#define PA_CS5(item) (__phys_to_pfn((item) + S3C2410_CS5))
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63static struct map_desc vr1000_iodesc[] __initdata = {
64 /* ISA IO areas */
Ben Dooksdf1ec6d2005-11-08 19:15:30 +000065 {
66 .virtual = (u32)S3C24XX_VA_ISA_BYTE,
67 .pfn = PA_CS2(BAST_PA_ISAIO),
68 .length = SZ_16M,
69 .type = MT_DEVICE,
70 }, {
71 .virtual = (u32)S3C24XX_VA_ISA_WORD,
72 .pfn = PA_CS3(BAST_PA_ISAIO),
73 .length = SZ_16M,
74 .type = MT_DEVICE,
75 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Ben Dooksdf1ec6d2005-11-08 19:15:30 +000077 /* CPLD control registers, and external interrupt controls */
78 {
79 .virtual = (u32)VR1000_VA_CTRL1,
80 .pfn = __phys_to_pfn(VR1000_PA_CTRL1),
81 .length = SZ_1M,
82 .type = MT_DEVICE,
83 }, {
84 .virtual = (u32)VR1000_VA_CTRL2,
85 .pfn = __phys_to_pfn(VR1000_PA_CTRL2),
86 .length = SZ_1M,
87 .type = MT_DEVICE,
88 }, {
89 .virtual = (u32)VR1000_VA_CTRL3,
90 .pfn = __phys_to_pfn(VR1000_PA_CTRL3),
91 .length = SZ_1M,
92 .type = MT_DEVICE,
93 }, {
94 .virtual = (u32)VR1000_VA_CTRL4,
95 .pfn = __phys_to_pfn(VR1000_PA_CTRL4),
96 .length = SZ_1M,
97 .type = MT_DEVICE,
98 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070099};
100
101#define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
102#define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
103#define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
104
Ben Dooks66a9b492006-06-18 23:04:05 +0100105static struct s3c2410_uartcfg vr1000_uartcfgs[] __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 [0] = {
107 .hwport = 0,
108 .flags = 0,
109 .ucon = UCON,
110 .ulcon = ULCON,
111 .ufcon = UFCON,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 },
113 [1] = {
114 .hwport = 1,
115 .flags = 0,
116 .ucon = UCON,
117 .ulcon = ULCON,
118 .ufcon = UFCON,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 },
120 /* port 2 is not actually used */
121 [2] = {
122 .hwport = 2,
123 .flags = 0,
124 .ucon = UCON,
125 .ulcon = ULCON,
126 .ufcon = UFCON,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 }
128};
129
130/* definitions for the vr1000 extra 16550 serial ports */
131
132#define VR1000_BAUDBASE (3692307)
133
134#define VR1000_SERIAL_MAPBASE(x) (VR1000_PA_SERIAL + 0x80 + ((x) << 5))
135
136static struct plat_serial8250_port serial_platform_data[] = {
137 [0] = {
138 .mapbase = VR1000_SERIAL_MAPBASE(0),
Kukjin Kimdb8304e2013-01-02 10:47:40 -0800139 .irq = VR1000_IRQ_SERIAL + 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 .flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP,
141 .iotype = UPIO_MEM,
142 .regshift = 0,
143 .uartclk = VR1000_BAUDBASE,
144 },
145 [1] = {
146 .mapbase = VR1000_SERIAL_MAPBASE(1),
Kukjin Kimdb8304e2013-01-02 10:47:40 -0800147 .irq = VR1000_IRQ_SERIAL + 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 .flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP,
149 .iotype = UPIO_MEM,
150 .regshift = 0,
151 .uartclk = VR1000_BAUDBASE,
152 },
153 [2] = {
154 .mapbase = VR1000_SERIAL_MAPBASE(2),
Kukjin Kimdb8304e2013-01-02 10:47:40 -0800155 .irq = VR1000_IRQ_SERIAL + 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 .flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP,
157 .iotype = UPIO_MEM,
158 .regshift = 0,
159 .uartclk = VR1000_BAUDBASE,
160 },
161 [3] = {
162 .mapbase = VR1000_SERIAL_MAPBASE(3),
Kukjin Kimdb8304e2013-01-02 10:47:40 -0800163 .irq = VR1000_IRQ_SERIAL + 3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 .flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP,
165 .iotype = UPIO_MEM,
166 .regshift = 0,
167 .uartclk = VR1000_BAUDBASE,
168 },
169 { },
170};
171
172static struct platform_device serial_device = {
173 .name = "serial8250",
Russell King6df29de2005-09-08 16:04:41 +0100174 .id = PLAT8250_DEV_PLATFORM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 .dev = {
176 .platform_data = serial_platform_data,
177 },
178};
179
Ben Dooksd97a6662005-06-23 21:56:47 +0100180/* DM9000 ethernet devices */
181
182static struct resource vr1000_dm9k0_resource[] = {
Tushar Behera940e46a2012-05-12 16:12:25 +0900183 [0] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000, 4),
184 [1] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0x40, 0x40),
Kukjin Kimdb8304e2013-01-02 10:47:40 -0800185 [2] = DEFINE_RES_NAMED(VR1000_IRQ_DM9000A, 1, NULL, IORESOURCE_IRQ \
Tushar Behera940e46a2012-05-12 16:12:25 +0900186 | IORESOURCE_IRQ_HIGHLEVEL),
Ben Dooksd97a6662005-06-23 21:56:47 +0100187};
188
189static struct resource vr1000_dm9k1_resource[] = {
Tushar Behera940e46a2012-05-12 16:12:25 +0900190 [0] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0x80, 4),
191 [1] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0xC0, 0x40),
Kukjin Kimdb8304e2013-01-02 10:47:40 -0800192 [2] = DEFINE_RES_NAMED(VR1000_IRQ_DM9000N, 1, NULL, IORESOURCE_IRQ \
Tushar Behera940e46a2012-05-12 16:12:25 +0900193 | IORESOURCE_IRQ_HIGHLEVEL),
Ben Dooksd97a6662005-06-23 21:56:47 +0100194};
195
196/* for the moment we limit ourselves to 16bit IO until some
197 * better IO routines can be written and tested
198*/
199
Ben Dooks9f693d72005-10-12 19:58:07 +0100200static struct dm9000_plat_data vr1000_dm9k_platdata = {
Ben Dooksd97a6662005-06-23 21:56:47 +0100201 .flags = DM9000_PLATF_16BITONLY,
202};
203
204static struct platform_device vr1000_dm9k0 = {
205 .name = "dm9000",
206 .id = 0,
207 .num_resources = ARRAY_SIZE(vr1000_dm9k0_resource),
208 .resource = vr1000_dm9k0_resource,
209 .dev = {
210 .platform_data = &vr1000_dm9k_platdata,
211 }
212};
213
214static struct platform_device vr1000_dm9k1 = {
215 .name = "dm9000",
216 .id = 1,
217 .num_resources = ARRAY_SIZE(vr1000_dm9k1_resource),
218 .resource = vr1000_dm9k1_resource,
219 .dev = {
220 .platform_data = &vr1000_dm9k_platdata,
221 }
222};
223
Ben Dooksb2eba6b2006-12-07 20:28:23 +0100224/* LEDS */
225
Linus Walleijf7f611f2020-07-08 09:11:49 +0200226static struct gpiod_lookup_table vr1000_led1_gpio_table = {
227 .dev_id = "s3c24xx_led.1",
228 .table = {
229 GPIO_LOOKUP("GPB", 0, NULL, GPIO_ACTIVE_HIGH),
230 { },
231 },
232};
233
234static struct gpiod_lookup_table vr1000_led2_gpio_table = {
235 .dev_id = "s3c24xx_led.2",
236 .table = {
237 GPIO_LOOKUP("GPB", 1, NULL, GPIO_ACTIVE_HIGH),
238 { },
239 },
240};
241
242static struct gpiod_lookup_table vr1000_led3_gpio_table = {
243 .dev_id = "s3c24xx_led.3",
244 .table = {
245 GPIO_LOOKUP("GPB", 2, NULL, GPIO_ACTIVE_HIGH),
246 { },
247 },
248};
249
Ben Dooksb2eba6b2006-12-07 20:28:23 +0100250static struct s3c24xx_led_platdata vr1000_led1_pdata = {
251 .name = "led1",
Ben Dooksb2eba6b2006-12-07 20:28:23 +0100252 .def_trigger = "",
253};
254
255static struct s3c24xx_led_platdata vr1000_led2_pdata = {
256 .name = "led2",
Ben Dooksb2eba6b2006-12-07 20:28:23 +0100257 .def_trigger = "",
258};
259
260static struct s3c24xx_led_platdata vr1000_led3_pdata = {
261 .name = "led3",
Ben Dooksb2eba6b2006-12-07 20:28:23 +0100262 .def_trigger = "",
263};
264
265static struct platform_device vr1000_led1 = {
266 .name = "s3c24xx_led",
267 .id = 1,
268 .dev = {
269 .platform_data = &vr1000_led1_pdata,
270 },
271};
272
273static struct platform_device vr1000_led2 = {
274 .name = "s3c24xx_led",
275 .id = 2,
276 .dev = {
277 .platform_data = &vr1000_led2_pdata,
278 },
279};
280
281static struct platform_device vr1000_led3 = {
282 .name = "s3c24xx_led",
Ben Dooksabac08d72006-12-19 19:10:13 +0100283 .id = 3,
Ben Dooksb2eba6b2006-12-07 20:28:23 +0100284 .dev = {
285 .platform_data = &vr1000_led3_pdata,
286 },
287};
288
Ben Dooks60d66982008-07-03 11:24:42 +0100289/* I2C devices. */
290
291static struct i2c_board_info vr1000_i2c_devs[] __initdata = {
292 {
293 I2C_BOARD_INFO("tlv320aic23", 0x1a),
294 }, {
Ben Dooks9c3871c2008-07-03 11:24:44 +0100295 I2C_BOARD_INFO("tmp101", 0x48),
296 }, {
Ben Dooks60d66982008-07-03 11:24:42 +0100297 I2C_BOARD_INFO("m41st87", 0x68),
298 },
299};
300
Ben Dooksd97a6662005-06-23 21:56:47 +0100301/* devices for this board */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303static struct platform_device *vr1000_devices[] __initdata = {
Heiko Stuebner51cb1282014-05-09 05:48:57 +0900304 &s3c2410_device_dclk,
Ben Dooksb8132482009-11-23 00:13:39 +0000305 &s3c_device_ohci,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 &s3c_device_lcd,
307 &s3c_device_wdt,
Ben Dooks3e1b7762008-10-31 16:14:40 +0000308 &s3c_device_i2c0,
Ben Dooksd97a6662005-06-23 21:56:47 +0100309 &s3c_device_adc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 &serial_device,
Ben Dooksd97a6662005-06-23 21:56:47 +0100311 &vr1000_dm9k0,
Ben Dooksb2eba6b2006-12-07 20:28:23 +0100312 &vr1000_dm9k1,
313 &vr1000_led1,
314 &vr1000_led2,
315 &vr1000_led3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316};
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318static void vr1000_power_off(void)
319{
Ben Dooks7614e1d2010-05-04 12:53:11 +0900320 gpio_direction_output(S3C2410_GPB(9), 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Ben Dooks5fe10ab2005-09-20 17:24:33 +0100323static void __init vr1000_map_io(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 pm_power_off = vr1000_power_off;
326
327 s3c24xx_init_io(vr1000_iodesc, ARRAY_SIZE(vr1000_iodesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 s3c24xx_init_uarts(vr1000_uartcfgs, ARRAY_SIZE(vr1000_uartcfgs));
Krzysztof Kozlowskia1342f62020-08-20 22:42:03 +0200329 s3c24xx_set_timer_source(S3C24XX_PWM3, S3C24XX_PWM4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
Heiko Stuebner07ee5e72014-05-09 05:49:29 +0900332static void __init vr1000_init_time(void)
333{
334 s3c2410_init_clocks(12000000);
Krzysztof Kozlowskia1342f62020-08-20 22:42:03 +0200335 s3c24xx_timer_init();
Heiko Stuebner07ee5e72014-05-09 05:49:29 +0900336}
337
Ben Dooks57e51712007-04-20 11:19:16 +0100338static void __init vr1000_init(void)
339{
Ben Dooks3e1b7762008-10-31 16:14:40 +0000340 s3c_i2c0_set_platdata(NULL);
Linus Walleijf7f611f2020-07-08 09:11:49 +0200341
342 /* Disable pull-up on LED lines and register GPIO lookups */
343 s3c_gpio_setpull(S3C2410_GPB(0), S3C_GPIO_PULL_NONE);
344 s3c_gpio_setpull(S3C2410_GPB(1), S3C_GPIO_PULL_NONE);
345 s3c_gpio_setpull(S3C2410_GPB(2), S3C_GPIO_PULL_NONE);
346 gpiod_add_lookup_table(&vr1000_led1_gpio_table);
347 gpiod_add_lookup_table(&vr1000_led2_gpio_table);
348 gpiod_add_lookup_table(&vr1000_led3_gpio_table);
349
Ben Dooks57e51712007-04-20 11:19:16 +0100350 platform_add_devices(vr1000_devices, ARRAY_SIZE(vr1000_devices));
Ben Dooks9d529c62008-07-03 11:24:39 +0100351
Ben Dooks60d66982008-07-03 11:24:42 +0100352 i2c_register_board_info(0, vr1000_i2c_devs,
353 ARRAY_SIZE(vr1000_i2c_devs));
354
Ben Dooks9d529c62008-07-03 11:24:39 +0100355 nor_simtec_init();
Ben Dooks4d3a3462009-11-13 22:34:20 +0000356 simtec_audio_add(NULL, true, NULL);
Ben Dooks7614e1d2010-05-04 12:53:11 +0900357
358 WARN_ON(gpio_request(S3C2410_GPB(9), "power off"));
Ben Dooks57e51712007-04-20 11:19:16 +0100359}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361MACHINE_START(VR1000, "Thorcom-VR1000")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100362 /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
Nicolas Pitre69d50712011-07-05 22:38:17 -0400363 .atag_offset = 0x100,
Ben Dooks6904b242005-06-29 11:09:15 +0100364 .map_io = vr1000_map_io,
Ben Dooks57e51712007-04-20 11:19:16 +0100365 .init_machine = vr1000_init,
Heiko Stuebnerf182aa12013-03-07 12:38:19 +0900366 .init_irq = s3c2410_init_irq,
Heiko Stuebner07ee5e72014-05-09 05:49:29 +0900367 .init_time = vr1000_init_time,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368MACHINE_END