]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/arm/mach-s3c24xx/mach-vr1000.c
ARM: exynos: MCPM: Restore big.LITTLE cpuidle support
[mirror_ubuntu-jammy-kernel.git] / arch / arm / mach-s3c24xx / mach-vr1000.c
CommitLineData
84b21701
KK
1// 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/
1da177e4
LT
8
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>
ec976d6e 15#include <linux/gpio.h>
d97a666f 16#include <linux/dm9000.h>
60d6698b 17#include <linux/i2c.h>
1da177e4
LT
18
19#include <linux/serial.h>
20#include <linux/tty.h>
21#include <linux/serial_8250.h>
22#include <linux/serial_reg.h>
334a1c70 23#include <linux/serial_s3c.h>
fced80c7 24#include <linux/io.h>
1da177e4
LT
25
26#include <asm/mach/arch.h>
27#include <asm/mach/map.h>
28#include <asm/mach/irq.h>
29
1da177e4
LT
30#include <asm/irq.h>
31#include <asm/mach-types.h>
32
436d42c6 33#include <linux/platform_data/leds-s3c24xx.h>
db8304ed
KK
34#include <linux/platform_data/i2c-s3c2410.h>
35#include <linux/platform_data/asoc-s3c24xx_simtec.h>
36
37#include <mach/hardware.h>
38#include <mach/regs-gpio.h>
b0161caa 39#include <mach/gpio-samsung.h>
1da177e4 40
a2b7ba9c 41#include <plat/cpu.h>
db8304ed 42#include <plat/devs.h>
7f78b6eb 43#include <plat/samsung-time.h>
9d529c6e 44
bbd7e5e1 45#include "bast.h"
b27b0727 46#include "common.h"
bbd7e5e1 47#include "simtec.h"
db8304ed 48#include "vr1000.h"
1da177e4
LT
49
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
df1ec6de
BD
58#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))
1da177e4
LT
62
63static struct map_desc vr1000_iodesc[] __initdata = {
64 /* ISA IO areas */
df1ec6de
BD
65 {
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 },
76
77 /* 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 },
1da177e4
LT
99};
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
66a9b49a 105static struct s3c2410_uartcfg vr1000_uartcfgs[] __initdata = {
1da177e4
LT
106 [0] = {
107 .hwport = 0,
108 .flags = 0,
109 .ucon = UCON,
110 .ulcon = ULCON,
111 .ufcon = UFCON,
1da177e4
LT
112 },
113 [1] = {
114 .hwport = 1,
115 .flags = 0,
116 .ucon = UCON,
117 .ulcon = ULCON,
118 .ufcon = UFCON,
1da177e4
LT
119 },
120 /* port 2 is not actually used */
121 [2] = {
122 .hwport = 2,
123 .flags = 0,
124 .ucon = UCON,
125 .ulcon = ULCON,
126 .ufcon = UFCON,
1da177e4
LT
127 }
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),
db8304ed 139 .irq = VR1000_IRQ_SERIAL + 0,
1da177e4
LT
140 .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),
db8304ed 147 .irq = VR1000_IRQ_SERIAL + 1,
1da177e4
LT
148 .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),
db8304ed 155 .irq = VR1000_IRQ_SERIAL + 2,
1da177e4
LT
156 .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),
db8304ed 163 .irq = VR1000_IRQ_SERIAL + 3,
1da177e4
LT
164 .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",
6df29deb 174 .id = PLAT8250_DEV_PLATFORM,
1da177e4
LT
175 .dev = {
176 .platform_data = serial_platform_data,
177 },
178};
179
d97a666f
BD
180/* DM9000 ethernet devices */
181
182static struct resource vr1000_dm9k0_resource[] = {
940e46ae
TB
183 [0] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000, 4),
184 [1] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0x40, 0x40),
db8304ed 185 [2] = DEFINE_RES_NAMED(VR1000_IRQ_DM9000A, 1, NULL, IORESOURCE_IRQ \
940e46ae 186 | IORESOURCE_IRQ_HIGHLEVEL),
d97a666f
BD
187};
188
189static struct resource vr1000_dm9k1_resource[] = {
940e46ae
TB
190 [0] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0x80, 4),
191 [1] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0xC0, 0x40),
db8304ed 192 [2] = DEFINE_RES_NAMED(VR1000_IRQ_DM9000N, 1, NULL, IORESOURCE_IRQ \
940e46ae 193 | IORESOURCE_IRQ_HIGHLEVEL),
d97a666f
BD
194};
195
196/* for the moment we limit ourselves to 16bit IO until some
197 * better IO routines can be written and tested
198*/
199
9f693d7b 200static struct dm9000_plat_data vr1000_dm9k_platdata = {
d97a666f
BD
201 .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
b2eba6bb
BD
224/* LEDS */
225
226static struct s3c24xx_led_platdata vr1000_led1_pdata = {
227 .name = "led1",
070276d5 228 .gpio = S3C2410_GPB(0),
b2eba6bb
BD
229 .def_trigger = "",
230};
231
232static struct s3c24xx_led_platdata vr1000_led2_pdata = {
233 .name = "led2",
070276d5 234 .gpio = S3C2410_GPB(1),
b2eba6bb
BD
235 .def_trigger = "",
236};
237
238static struct s3c24xx_led_platdata vr1000_led3_pdata = {
239 .name = "led3",
070276d5 240 .gpio = S3C2410_GPB(2),
b2eba6bb
BD
241 .def_trigger = "",
242};
243
244static struct platform_device vr1000_led1 = {
245 .name = "s3c24xx_led",
246 .id = 1,
247 .dev = {
248 .platform_data = &vr1000_led1_pdata,
249 },
250};
251
252static struct platform_device vr1000_led2 = {
253 .name = "s3c24xx_led",
254 .id = 2,
255 .dev = {
256 .platform_data = &vr1000_led2_pdata,
257 },
258};
259
260static struct platform_device vr1000_led3 = {
261 .name = "s3c24xx_led",
abac08d7 262 .id = 3,
b2eba6bb
BD
263 .dev = {
264 .platform_data = &vr1000_led3_pdata,
265 },
266};
267
60d6698b
BD
268/* I2C devices. */
269
270static struct i2c_board_info vr1000_i2c_devs[] __initdata = {
271 {
272 I2C_BOARD_INFO("tlv320aic23", 0x1a),
9c3871ca
BD
273 }, {
274 I2C_BOARD_INFO("tmp101", 0x48),
60d6698b
BD
275 }, {
276 I2C_BOARD_INFO("m41st87", 0x68),
277 },
278};
279
d97a666f 280/* devices for this board */
1da177e4
LT
281
282static struct platform_device *vr1000_devices[] __initdata = {
51cb1289 283 &s3c2410_device_dclk,
b813248c 284 &s3c_device_ohci,
1da177e4
LT
285 &s3c_device_lcd,
286 &s3c_device_wdt,
3e1b776c 287 &s3c_device_i2c0,
d97a666f 288 &s3c_device_adc,
1da177e4 289 &serial_device,
d97a666f 290 &vr1000_dm9k0,
b2eba6bb
BD
291 &vr1000_dm9k1,
292 &vr1000_led1,
293 &vr1000_led2,
294 &vr1000_led3,
1da177e4
LT
295};
296
1da177e4
LT
297static void vr1000_power_off(void)
298{
7614e1d9 299 gpio_direction_output(S3C2410_GPB(9), 1);
1da177e4
LT
300}
301
5fe10ab1 302static void __init vr1000_map_io(void)
1da177e4 303{
1da177e4
LT
304 pm_power_off = vr1000_power_off;
305
306 s3c24xx_init_io(vr1000_iodesc, ARRAY_SIZE(vr1000_iodesc));
1da177e4 307 s3c24xx_init_uarts(vr1000_uartcfgs, ARRAY_SIZE(vr1000_uartcfgs));
7f78b6eb 308 samsung_set_timer_source(SAMSUNG_PWM3, SAMSUNG_PWM4);
1da177e4
LT
309}
310
07ee5e7c
HS
311static void __init vr1000_init_time(void)
312{
313 s3c2410_init_clocks(12000000);
314 samsung_timer_init();
315}
316
57e5171c
BD
317static void __init vr1000_init(void)
318{
3e1b776c 319 s3c_i2c0_set_platdata(NULL);
57e5171c 320 platform_add_devices(vr1000_devices, ARRAY_SIZE(vr1000_devices));
9d529c6e 321
60d6698b
BD
322 i2c_register_board_info(0, vr1000_i2c_devs,
323 ARRAY_SIZE(vr1000_i2c_devs));
324
9d529c6e 325 nor_simtec_init();
4d3a3469 326 simtec_audio_add(NULL, true, NULL);
7614e1d9
BD
327
328 WARN_ON(gpio_request(S3C2410_GPB(9), "power off"));
57e5171c 329}
1da177e4
LT
330
331MACHINE_START(VR1000, "Thorcom-VR1000")
e9dea0c6 332 /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
69d50710 333 .atag_offset = 0x100,
6904b246 334 .map_io = vr1000_map_io,
57e5171c 335 .init_machine = vr1000_init,
f182aa1d 336 .init_irq = s3c2410_init_irq,
07ee5e7c 337 .init_time = vr1000_init_time,
1da177e4 338MACHINE_END