blob: 346f8dfa6f3539d500fbcdbb88c70e4847d0c5e1 [file] [log] [blame]
Kukjin Kim6f315cb2010-09-01 13:03:39 +09001/* linux/arch/arm/mach-s5p64x0/mach-smdk6440.c
Kukjin Kimd25168e2010-01-14 08:22:00 +09002 *
Kukjin Kim6f315cb2010-09-01 13:03:39 +09003 * Copyright (c) 2009-2010 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
Kukjin Kimd25168e2010-01-14 08:22:00 +09005 *
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/interrupt.h>
14#include <linux/list.h>
15#include <linux/timer.h>
16#include <linux/delay.h>
17#include <linux/init.h>
Naveen Krishna Ch2c978862010-08-06 19:32:43 +090018#include <linux/i2c.h>
Kukjin Kimd25168e2010-01-14 08:22:00 +090019#include <linux/serial_core.h>
20#include <linux/platform_device.h>
21#include <linux/io.h>
22#include <linux/module.h>
23#include <linux/clk.h>
Kukjin Kim6f315cb2010-09-01 13:03:39 +090024#include <linux/gpio.h>
Banajit Goswamifec524a2011-02-28 20:31:27 +053025#include <linux/pwm_backlight.h>
Kukjin Kimd25168e2010-01-14 08:22:00 +090026
27#include <asm/mach/arch.h>
28#include <asm/mach/map.h>
Kukjin Kimd25168e2010-01-14 08:22:00 +090029#include <asm/irq.h>
30#include <asm/mach-types.h>
31
Kukjin Kim6f315cb2010-09-01 13:03:39 +090032#include <mach/hardware.h>
33#include <mach/map.h>
34#include <mach/regs-clock.h>
35#include <mach/i2c.h>
Banajit Goswamifec524a2011-02-28 20:31:27 +053036#include <mach/regs-gpio.h>
Kukjin Kimd25168e2010-01-14 08:22:00 +090037
Kukjin Kim6f315cb2010-09-01 13:03:39 +090038#include <plat/regs-serial.h>
39#include <plat/gpio-cfg.h>
Kukjin Kimd25168e2010-01-14 08:22:00 +090040#include <plat/s5p6440.h>
41#include <plat/clock.h>
Kukjin Kimd25168e2010-01-14 08:22:00 +090042#include <plat/devs.h>
43#include <plat/cpu.h>
Naveen Krishna Ch2c978862010-08-06 19:32:43 +090044#include <plat/iic.h>
Kukjin Kimd25168e2010-01-14 08:22:00 +090045#include <plat/pll.h>
Naveen Krishna Ch09cae8f2010-05-20 11:39:53 +090046#include <plat/adc.h>
47#include <plat/ts.h>
Sangbeom Kim20780fc2011-03-12 08:02:12 +090048#include <plat/s5p-time.h>
Banajit Goswami499d2962011-07-20 23:45:22 +090049#include <plat/backlight.h>
Kukjin Kimd25168e2010-01-14 08:22:00 +090050
Kukjin Kimc8def082010-07-21 09:19:51 +090051#define SMDK6440_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \
Kukjin Kimd25168e2010-01-14 08:22:00 +090052 S3C2410_UCON_RXILEVEL | \
53 S3C2410_UCON_TXIRQMODE | \
54 S3C2410_UCON_RXIRQMODE | \
55 S3C2410_UCON_RXFIFO_TOI | \
56 S3C2443_UCON_RXERR_IRQEN)
57
Kukjin Kimc8def082010-07-21 09:19:51 +090058#define SMDK6440_ULCON_DEFAULT S3C2410_LCON_CS8
Kukjin Kimd25168e2010-01-14 08:22:00 +090059
Kukjin Kimc8def082010-07-21 09:19:51 +090060#define SMDK6440_UFCON_DEFAULT (S3C2410_UFCON_FIFOMODE | \
Kukjin Kimd25168e2010-01-14 08:22:00 +090061 S3C2440_UFCON_TXTRIG16 | \
62 S3C2410_UFCON_RXTRIG8)
63
64static struct s3c2410_uartcfg smdk6440_uartcfgs[] __initdata = {
65 [0] = {
Kukjin Kim6f315cb2010-09-01 13:03:39 +090066 .hwport = 0,
67 .flags = 0,
68 .ucon = SMDK6440_UCON_DEFAULT,
69 .ulcon = SMDK6440_ULCON_DEFAULT,
70 .ufcon = SMDK6440_UFCON_DEFAULT,
Kukjin Kimd25168e2010-01-14 08:22:00 +090071 },
72 [1] = {
Kukjin Kim6f315cb2010-09-01 13:03:39 +090073 .hwport = 1,
74 .flags = 0,
75 .ucon = SMDK6440_UCON_DEFAULT,
76 .ulcon = SMDK6440_ULCON_DEFAULT,
77 .ufcon = SMDK6440_UFCON_DEFAULT,
Kukjin Kimd25168e2010-01-14 08:22:00 +090078 },
79 [2] = {
Kukjin Kim6f315cb2010-09-01 13:03:39 +090080 .hwport = 2,
81 .flags = 0,
82 .ucon = SMDK6440_UCON_DEFAULT,
83 .ulcon = SMDK6440_ULCON_DEFAULT,
84 .ufcon = SMDK6440_UFCON_DEFAULT,
Kukjin Kimd25168e2010-01-14 08:22:00 +090085 },
86 [3] = {
Kukjin Kim6f315cb2010-09-01 13:03:39 +090087 .hwport = 3,
88 .flags = 0,
89 .ucon = SMDK6440_UCON_DEFAULT,
90 .ulcon = SMDK6440_ULCON_DEFAULT,
91 .ufcon = SMDK6440_UFCON_DEFAULT,
Kukjin Kimd25168e2010-01-14 08:22:00 +090092 },
93};
94
95static struct platform_device *smdk6440_devices[] __initdata = {
Naveen Krishna Ch09cae8f2010-05-20 11:39:53 +090096 &s3c_device_adc,
Atul Dahiyaff7124a2010-07-21 17:32:56 +090097 &s3c_device_rtc,
Naveen Krishna Ch2c978862010-08-06 19:32:43 +090098 &s3c_device_i2c0,
99 &s3c_device_i2c1,
Naveen Krishna Ch09cae8f2010-05-20 11:39:53 +0900100 &s3c_device_ts,
Banajit Goswamia0cce452010-05-20 16:21:31 +0900101 &s3c_device_wdt,
Jassi Brar8418f882010-12-30 09:11:10 +0900102 &samsung_asoc_dma,
Kukjin Kim6f315cb2010-09-01 13:03:39 +0900103 &s5p6440_device_iis,
104};
105
106static struct s3c2410_platform_i2c s5p6440_i2c0_data __initdata = {
107 .flags = 0,
108 .slave_addr = 0x10,
109 .frequency = 100*1000,
110 .sda_delay = 100,
111 .cfg_gpio = s5p6440_i2c0_cfg_gpio,
112};
113
114static struct s3c2410_platform_i2c s5p6440_i2c1_data __initdata = {
115 .flags = 0,
116 .bus_num = 1,
117 .slave_addr = 0x10,
118 .frequency = 100*1000,
119 .sda_delay = 100,
120 .cfg_gpio = s5p6440_i2c1_cfg_gpio,
Naveen Krishna Ch09cae8f2010-05-20 11:39:53 +0900121};
122
Naveen Krishna Ch2c978862010-08-06 19:32:43 +0900123static struct i2c_board_info smdk6440_i2c_devs0[] __initdata = {
124 { I2C_BOARD_INFO("24c08", 0x50), },
Jassi Brar149bb5b2010-12-21 09:46:29 +0900125 { I2C_BOARD_INFO("wm8580", 0x1b), },
Naveen Krishna Ch2c978862010-08-06 19:32:43 +0900126};
127
128static struct i2c_board_info smdk6440_i2c_devs1[] __initdata = {
129 /* To be populated */
130};
131
Naveen Krishna Ch09cae8f2010-05-20 11:39:53 +0900132static struct s3c2410_ts_mach_info s3c_ts_platform __initdata = {
133 .delay = 10000,
134 .presc = 49,
135 .oversampling_shift = 2,
Kukjin Kimd25168e2010-01-14 08:22:00 +0900136};
137
Banajit Goswami499d2962011-07-20 23:45:22 +0900138/* LCD Backlight data */
139static struct samsung_bl_gpio_info smdk6440_bl_gpio_info = {
140 .no = S5P6440_GPF(15),
141 .func = S3C_GPIO_SFN(2),
142};
143
144static struct platform_pwm_backlight_data smdk6440_bl_data = {
145 .pwm_id = 1,
146};
147
Kukjin Kimd25168e2010-01-14 08:22:00 +0900148static void __init smdk6440_map_io(void)
149{
Kukjin Kim6f315cb2010-09-01 13:03:39 +0900150 s5p_init_io(NULL, 0, S5P64X0_SYS_ID);
Kukjin Kimd25168e2010-01-14 08:22:00 +0900151 s3c24xx_init_clocks(12000000);
152 s3c24xx_init_uarts(smdk6440_uartcfgs, ARRAY_SIZE(smdk6440_uartcfgs));
Sangbeom Kim20780fc2011-03-12 08:02:12 +0900153 s5p_set_timer_source(S5P_PWM3, S5P_PWM4);
Kukjin Kimd25168e2010-01-14 08:22:00 +0900154}
155
156static void __init smdk6440_machine_init(void)
157{
Naveen Krishna Ch09cae8f2010-05-20 11:39:53 +0900158 s3c24xx_ts_set_platdata(&s3c_ts_platform);
159
Kukjin Kim6f315cb2010-09-01 13:03:39 +0900160 s3c_i2c0_set_platdata(&s5p6440_i2c0_data);
161 s3c_i2c1_set_platdata(&s5p6440_i2c1_data);
Naveen Krishna Ch2c978862010-08-06 19:32:43 +0900162 i2c_register_board_info(0, smdk6440_i2c_devs0,
163 ARRAY_SIZE(smdk6440_i2c_devs0));
164 i2c_register_board_info(1, smdk6440_i2c_devs1,
165 ARRAY_SIZE(smdk6440_i2c_devs1));
166
Banajit Goswami499d2962011-07-20 23:45:22 +0900167 samsung_bl_set(&smdk6440_bl_gpio_info, &smdk6440_bl_data);
168
Kukjin Kimd25168e2010-01-14 08:22:00 +0900169 platform_add_devices(smdk6440_devices, ARRAY_SIZE(smdk6440_devices));
170}
171
172MACHINE_START(SMDK6440, "SMDK6440")
173 /* Maintainer: Kukjin Kim <kgene.kim@samsung.com> */
Kukjin Kim6f315cb2010-09-01 13:03:39 +0900174 .boot_params = S5P64X0_PA_SDRAM + 0x100,
Kukjin Kimd25168e2010-01-14 08:22:00 +0900175
176 .init_irq = s5p6440_init_irq,
177 .map_io = smdk6440_map_io,
178 .init_machine = smdk6440_machine_init,
Sangbeom Kim20780fc2011-03-12 08:02:12 +0900179 .timer = &s5p_timer,
Kukjin Kimd25168e2010-01-14 08:22:00 +0900180MACHINE_END