2010-02-24 07:40:49 +00:00
|
|
|
/* linux/arch/arm/mach-s5pv210/mach-smdkv210.c
|
|
|
|
*
|
|
|
|
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
|
|
|
|
* http://www.samsung.com/
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/serial_core.h>
|
|
|
|
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
#include <asm/mach/map.h>
|
|
|
|
#include <asm/setup.h>
|
|
|
|
#include <asm/mach-types.h>
|
|
|
|
|
|
|
|
#include <mach/map.h>
|
|
|
|
#include <mach/regs-clock.h>
|
|
|
|
|
|
|
|
#include <plat/regs-serial.h>
|
|
|
|
#include <plat/s5pv210.h>
|
|
|
|
#include <plat/devs.h>
|
|
|
|
#include <plat/cpu.h>
|
2010-05-20 02:39:54 +00:00
|
|
|
#include <plat/adc.h>
|
|
|
|
#include <plat/ts.h>
|
2010-06-08 08:11:43 +00:00
|
|
|
#include <plat/ata.h>
|
2010-06-21 07:47:16 +00:00
|
|
|
#include <plat/keypad.h>
|
2010-02-24 07:40:49 +00:00
|
|
|
|
|
|
|
/* Following are default values for UCON, ULCON and UFCON UART registers */
|
|
|
|
#define S5PV210_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \
|
|
|
|
S3C2410_UCON_RXILEVEL | \
|
|
|
|
S3C2410_UCON_TXIRQMODE | \
|
|
|
|
S3C2410_UCON_RXIRQMODE | \
|
|
|
|
S3C2410_UCON_RXFIFO_TOI | \
|
|
|
|
S3C2443_UCON_RXERR_IRQEN)
|
|
|
|
|
|
|
|
#define S5PV210_ULCON_DEFAULT S3C2410_LCON_CS8
|
|
|
|
|
|
|
|
#define S5PV210_UFCON_DEFAULT (S3C2410_UFCON_FIFOMODE | \
|
|
|
|
S5PV210_UFCON_TXTRIG4 | \
|
|
|
|
S5PV210_UFCON_RXTRIG4)
|
|
|
|
|
|
|
|
static struct s3c2410_uartcfg smdkv210_uartcfgs[] __initdata = {
|
|
|
|
[0] = {
|
|
|
|
.hwport = 0,
|
|
|
|
.flags = 0,
|
|
|
|
.ucon = S5PV210_UCON_DEFAULT,
|
|
|
|
.ulcon = S5PV210_ULCON_DEFAULT,
|
|
|
|
.ufcon = S5PV210_UFCON_DEFAULT,
|
|
|
|
},
|
|
|
|
[1] = {
|
|
|
|
.hwport = 1,
|
|
|
|
.flags = 0,
|
|
|
|
.ucon = S5PV210_UCON_DEFAULT,
|
|
|
|
.ulcon = S5PV210_ULCON_DEFAULT,
|
|
|
|
.ufcon = S5PV210_UFCON_DEFAULT,
|
|
|
|
},
|
|
|
|
[2] = {
|
|
|
|
.hwport = 2,
|
|
|
|
.flags = 0,
|
|
|
|
.ucon = S5PV210_UCON_DEFAULT,
|
|
|
|
.ulcon = S5PV210_ULCON_DEFAULT,
|
|
|
|
.ufcon = S5PV210_UFCON_DEFAULT,
|
|
|
|
},
|
|
|
|
[3] = {
|
|
|
|
.hwport = 3,
|
|
|
|
.flags = 0,
|
|
|
|
.ucon = S5PV210_UCON_DEFAULT,
|
|
|
|
.ulcon = S5PV210_ULCON_DEFAULT,
|
|
|
|
.ufcon = S5PV210_UFCON_DEFAULT,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2010-06-08 08:11:43 +00:00
|
|
|
static struct s3c_ide_platdata smdkv210_ide_pdata __initdata = {
|
|
|
|
.setup_gpio = s5pv210_ide_setup_gpio,
|
|
|
|
};
|
|
|
|
|
2010-06-21 07:47:16 +00:00
|
|
|
static uint32_t smdkv210_keymap[] __initdata = {
|
|
|
|
/* KEY(row, col, keycode) */
|
|
|
|
KEY(0, 3, KEY_1), KEY(0, 4, KEY_2), KEY(0, 5, KEY_3),
|
|
|
|
KEY(0, 6, KEY_4), KEY(0, 7, KEY_5),
|
|
|
|
KEY(1, 3, KEY_A), KEY(1, 4, KEY_B), KEY(1, 5, KEY_C),
|
|
|
|
KEY(1, 6, KEY_D), KEY(1, 7, KEY_E)
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct matrix_keymap_data smdkv210_keymap_data __initdata = {
|
|
|
|
.keymap = smdkv210_keymap,
|
|
|
|
.keymap_size = ARRAY_SIZE(smdkv210_keymap),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct samsung_keypad_platdata smdkv210_keypad_data __initdata = {
|
|
|
|
.keymap_data = &smdkv210_keymap_data,
|
|
|
|
.rows = 8,
|
|
|
|
.cols = 8,
|
|
|
|
};
|
|
|
|
|
2010-02-24 07:40:49 +00:00
|
|
|
static struct platform_device *smdkv210_devices[] __initdata = {
|
2010-05-18 07:02:30 +00:00
|
|
|
&s5pv210_device_iis0,
|
|
|
|
&s5pv210_device_ac97,
|
2010-05-20 02:39:54 +00:00
|
|
|
&s3c_device_adc,
|
2010-06-08 08:11:43 +00:00
|
|
|
&s3c_device_cfcon,
|
2010-06-14 01:18:56 +00:00
|
|
|
&s3c_device_hsmmc0,
|
|
|
|
&s3c_device_hsmmc1,
|
|
|
|
&s3c_device_hsmmc2,
|
|
|
|
&s3c_device_hsmmc3,
|
2010-06-21 07:47:16 +00:00
|
|
|
&samsung_device_keypad,
|
2010-05-20 02:39:54 +00:00
|
|
|
&s3c_device_ts,
|
2010-05-20 07:21:32 +00:00
|
|
|
&s3c_device_wdt,
|
2010-05-20 02:39:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct s3c2410_ts_mach_info s3c_ts_platform __initdata = {
|
|
|
|
.delay = 10000,
|
|
|
|
.presc = 49,
|
|
|
|
.oversampling_shift = 2,
|
2010-02-24 07:40:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void __init smdkv210_map_io(void)
|
|
|
|
{
|
|
|
|
s5p_init_io(NULL, 0, S5P_VA_CHIPID);
|
|
|
|
s3c24xx_init_clocks(24000000);
|
|
|
|
s3c24xx_init_uarts(smdkv210_uartcfgs, ARRAY_SIZE(smdkv210_uartcfgs));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init smdkv210_machine_init(void)
|
|
|
|
{
|
2010-06-21 07:47:16 +00:00
|
|
|
samsung_keypad_set_platdata(&smdkv210_keypad_data);
|
2010-05-20 02:39:54 +00:00
|
|
|
s3c24xx_ts_set_platdata(&s3c_ts_platform);
|
2010-06-08 08:11:43 +00:00
|
|
|
s3c_ide_set_platdata(&smdkv210_ide_pdata);
|
|
|
|
|
2010-02-24 07:40:49 +00:00
|
|
|
platform_add_devices(smdkv210_devices, ARRAY_SIZE(smdkv210_devices));
|
|
|
|
}
|
|
|
|
|
|
|
|
MACHINE_START(SMDKV210, "SMDKV210")
|
|
|
|
/* Maintainer: Kukjin Kim <kgene.kim@samsung.com> */
|
|
|
|
.phys_io = S3C_PA_UART & 0xfff00000,
|
|
|
|
.io_pg_offst = (((u32)S3C_VA_UART) >> 18) & 0xfffc,
|
|
|
|
.boot_params = S5P_PA_SDRAM + 0x100,
|
|
|
|
.init_irq = s5pv210_init_irq,
|
|
|
|
.map_io = smdkv210_map_io,
|
|
|
|
.init_machine = smdkv210_machine_init,
|
|
|
|
.timer = &s3c24xx_timer,
|
|
|
|
MACHINE_END
|