blob: cc902c1e8f987fb0eef54da4c88893a80446abe8 [file] [log] [blame]
Kukjin Kim98174412010-02-24 16:40:49 +09001/* linux/arch/arm/mach-s5pv210/mach-smdkv210.c
2 *
3 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com/
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9*/
10
11#include <linux/kernel.h>
12#include <linux/types.h>
13#include <linux/init.h>
14#include <linux/serial_core.h>
15
16#include <asm/mach/arch.h>
17#include <asm/mach/map.h>
18#include <asm/setup.h>
19#include <asm/mach-types.h>
20
21#include <mach/map.h>
22#include <mach/regs-clock.h>
23
24#include <plat/regs-serial.h>
25#include <plat/s5pv210.h>
26#include <plat/devs.h>
27#include <plat/cpu.h>
Naveen Krishna Ch41d82892010-05-20 11:39:54 +090028#include <plat/adc.h>
29#include <plat/ts.h>
Abhilash Kesavan4b9a5ad2010-06-08 17:11:43 +090030#include <plat/ata.h>
Kukjin Kim98174412010-02-24 16:40:49 +090031
32/* Following are default values for UCON, ULCON and UFCON UART registers */
33#define S5PV210_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \
34 S3C2410_UCON_RXILEVEL | \
35 S3C2410_UCON_TXIRQMODE | \
36 S3C2410_UCON_RXIRQMODE | \
37 S3C2410_UCON_RXFIFO_TOI | \
38 S3C2443_UCON_RXERR_IRQEN)
39
40#define S5PV210_ULCON_DEFAULT S3C2410_LCON_CS8
41
42#define S5PV210_UFCON_DEFAULT (S3C2410_UFCON_FIFOMODE | \
43 S5PV210_UFCON_TXTRIG4 | \
44 S5PV210_UFCON_RXTRIG4)
45
46static struct s3c2410_uartcfg smdkv210_uartcfgs[] __initdata = {
47 [0] = {
48 .hwport = 0,
49 .flags = 0,
50 .ucon = S5PV210_UCON_DEFAULT,
51 .ulcon = S5PV210_ULCON_DEFAULT,
52 .ufcon = S5PV210_UFCON_DEFAULT,
53 },
54 [1] = {
55 .hwport = 1,
56 .flags = 0,
57 .ucon = S5PV210_UCON_DEFAULT,
58 .ulcon = S5PV210_ULCON_DEFAULT,
59 .ufcon = S5PV210_UFCON_DEFAULT,
60 },
61 [2] = {
62 .hwport = 2,
63 .flags = 0,
64 .ucon = S5PV210_UCON_DEFAULT,
65 .ulcon = S5PV210_ULCON_DEFAULT,
66 .ufcon = S5PV210_UFCON_DEFAULT,
67 },
68 [3] = {
69 .hwport = 3,
70 .flags = 0,
71 .ucon = S5PV210_UCON_DEFAULT,
72 .ulcon = S5PV210_ULCON_DEFAULT,
73 .ufcon = S5PV210_UFCON_DEFAULT,
74 },
75};
76
Abhilash Kesavan4b9a5ad2010-06-08 17:11:43 +090077static struct s3c_ide_platdata smdkv210_ide_pdata __initdata = {
78 .setup_gpio = s5pv210_ide_setup_gpio,
79};
80
Kukjin Kim98174412010-02-24 16:40:49 +090081static struct platform_device *smdkv210_devices[] __initdata = {
Jassi Brar9b5f1e02010-05-18 16:02:30 +090082 &s5pv210_device_iis0,
83 &s5pv210_device_ac97,
Naveen Krishna Ch41d82892010-05-20 11:39:54 +090084 &s3c_device_adc,
Abhilash Kesavan4b9a5ad2010-06-08 17:11:43 +090085 &s3c_device_cfcon,
Naveen Krishna Ch41d82892010-05-20 11:39:54 +090086 &s3c_device_ts,
Banajit Goswami5b7d7b22010-05-20 16:21:32 +090087 &s3c_device_wdt,
Naveen Krishna Ch41d82892010-05-20 11:39:54 +090088};
89
90static struct s3c2410_ts_mach_info s3c_ts_platform __initdata = {
91 .delay = 10000,
92 .presc = 49,
93 .oversampling_shift = 2,
Kukjin Kim98174412010-02-24 16:40:49 +090094};
95
96static void __init smdkv210_map_io(void)
97{
98 s5p_init_io(NULL, 0, S5P_VA_CHIPID);
99 s3c24xx_init_clocks(24000000);
100 s3c24xx_init_uarts(smdkv210_uartcfgs, ARRAY_SIZE(smdkv210_uartcfgs));
101}
102
103static void __init smdkv210_machine_init(void)
104{
Naveen Krishna Ch41d82892010-05-20 11:39:54 +0900105 s3c24xx_ts_set_platdata(&s3c_ts_platform);
Abhilash Kesavan4b9a5ad2010-06-08 17:11:43 +0900106 s3c_ide_set_platdata(&smdkv210_ide_pdata);
107
Kukjin Kim98174412010-02-24 16:40:49 +0900108 platform_add_devices(smdkv210_devices, ARRAY_SIZE(smdkv210_devices));
109}
110
111MACHINE_START(SMDKV210, "SMDKV210")
112 /* Maintainer: Kukjin Kim <kgene.kim@samsung.com> */
113 .phys_io = S3C_PA_UART & 0xfff00000,
114 .io_pg_offst = (((u32)S3C_VA_UART) >> 18) & 0xfffc,
115 .boot_params = S5P_PA_SDRAM + 0x100,
116 .init_irq = s5pv210_init_irq,
117 .map_io = smdkv210_map_io,
118 .init_machine = smdkv210_machine_init,
119 .timer = &s3c24xx_timer,
120MACHINE_END