Kukjin Kim | 9817441 | 2010-02-24 16:40:49 +0900 | [diff] [blame] | 1 | /* 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 Ch | 41d8289 | 2010-05-20 11:39:54 +0900 | [diff] [blame] | 28 | #include <plat/adc.h> |
| 29 | #include <plat/ts.h> |
Abhilash Kesavan | 4b9a5ad | 2010-06-08 17:11:43 +0900 | [diff] [blame] | 30 | #include <plat/ata.h> |
Kukjin Kim | 9817441 | 2010-02-24 16:40:49 +0900 | [diff] [blame] | 31 | |
| 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 | |
| 46 | static 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 Kesavan | 4b9a5ad | 2010-06-08 17:11:43 +0900 | [diff] [blame] | 77 | static struct s3c_ide_platdata smdkv210_ide_pdata __initdata = { |
| 78 | .setup_gpio = s5pv210_ide_setup_gpio, |
| 79 | }; |
| 80 | |
Kukjin Kim | 9817441 | 2010-02-24 16:40:49 +0900 | [diff] [blame] | 81 | static struct platform_device *smdkv210_devices[] __initdata = { |
Jassi Brar | 9b5f1e0 | 2010-05-18 16:02:30 +0900 | [diff] [blame] | 82 | &s5pv210_device_iis0, |
| 83 | &s5pv210_device_ac97, |
Naveen Krishna Ch | 41d8289 | 2010-05-20 11:39:54 +0900 | [diff] [blame] | 84 | &s3c_device_adc, |
Abhilash Kesavan | 4b9a5ad | 2010-06-08 17:11:43 +0900 | [diff] [blame] | 85 | &s3c_device_cfcon, |
Naveen Krishna Ch | 41d8289 | 2010-05-20 11:39:54 +0900 | [diff] [blame] | 86 | &s3c_device_ts, |
Banajit Goswami | 5b7d7b2 | 2010-05-20 16:21:32 +0900 | [diff] [blame] | 87 | &s3c_device_wdt, |
Naveen Krishna Ch | 41d8289 | 2010-05-20 11:39:54 +0900 | [diff] [blame] | 88 | }; |
| 89 | |
| 90 | static struct s3c2410_ts_mach_info s3c_ts_platform __initdata = { |
| 91 | .delay = 10000, |
| 92 | .presc = 49, |
| 93 | .oversampling_shift = 2, |
Kukjin Kim | 9817441 | 2010-02-24 16:40:49 +0900 | [diff] [blame] | 94 | }; |
| 95 | |
| 96 | static 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 | |
| 103 | static void __init smdkv210_machine_init(void) |
| 104 | { |
Naveen Krishna Ch | 41d8289 | 2010-05-20 11:39:54 +0900 | [diff] [blame] | 105 | s3c24xx_ts_set_platdata(&s3c_ts_platform); |
Abhilash Kesavan | 4b9a5ad | 2010-06-08 17:11:43 +0900 | [diff] [blame] | 106 | s3c_ide_set_platdata(&smdkv210_ide_pdata); |
| 107 | |
Kukjin Kim | 9817441 | 2010-02-24 16:40:49 +0900 | [diff] [blame] | 108 | platform_add_devices(smdkv210_devices, ARRAY_SIZE(smdkv210_devices)); |
| 109 | } |
| 110 | |
| 111 | MACHINE_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, |
| 120 | MACHINE_END |