blob: bc08ac42e7cc7bcd41b29d46cf7837656b236c9c [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>
Naveen Krishna Ch170d7412010-07-21 09:21:56 +053013#include <linux/i2c.h>
Kukjin Kim98174412010-02-24 16:40:49 +090014#include <linux/init.h>
15#include <linux/serial_core.h>
Abhilash Kesavan9adf2622010-10-08 09:07:19 +053016#include <linux/sysdev.h>
Thomas Abraham9b580cd2010-12-02 18:16:20 +090017#include <linux/dm9000.h>
Thomas Abraham8f497202010-11-26 13:19:49 +090018#include <linux/fb.h>
Thomas Abraham9b580cd2010-12-02 18:16:20 +090019#include <linux/gpio.h>
Thomas Abraham8f497202010-11-26 13:19:49 +090020#include <linux/delay.h>
Banajit Goswami5cd435b2011-02-28 23:02:32 +053021#include <linux/pwm_backlight.h>
Kukjin Kim98174412010-02-24 16:40:49 +090022
23#include <asm/mach/arch.h>
24#include <asm/mach/map.h>
25#include <asm/setup.h>
26#include <asm/mach-types.h>
27
Thomas Abraham8f497202010-11-26 13:19:49 +090028#include <video/platform_lcd.h>
29
Kukjin Kim98174412010-02-24 16:40:49 +090030#include <mach/map.h>
31#include <mach/regs-clock.h>
Thomas Abraham8f497202010-11-26 13:19:49 +090032#include <mach/regs-fb.h>
Kukjin Kim98174412010-02-24 16:40:49 +090033
34#include <plat/regs-serial.h>
Thomas Abraham9b580cd2010-12-02 18:16:20 +090035#include <plat/regs-srom.h>
36#include <plat/gpio-cfg.h>
Kukjin Kim98174412010-02-24 16:40:49 +090037#include <plat/s5pv210.h>
38#include <plat/devs.h>
39#include <plat/cpu.h>
Naveen Krishna Ch41d82892010-05-20 11:39:54 +090040#include <plat/adc.h>
41#include <plat/ts.h>
Abhilash Kesavan4b9a5ad2010-06-08 17:11:43 +090042#include <plat/ata.h>
Naveen Krishna Ch170d7412010-07-21 09:21:56 +053043#include <plat/iic.h>
Naveen Krishna Ch88a1cc42010-06-21 16:47:16 +090044#include <plat/keypad.h>
Jongpill Leeea31fd42010-10-02 19:13:42 +090045#include <plat/pm.h>
Thomas Abraham8f497202010-11-26 13:19:49 +090046#include <plat/fb.h>
Banajit Goswami5cd435b2011-02-28 23:02:32 +053047#include <plat/gpio-cfg.h>
Sangbeom Kim20780fc2011-03-12 08:02:12 +090048#include <plat/s5p-time.h>
Kukjin Kim98174412010-02-24 16:40:49 +090049
50/* Following are default values for UCON, ULCON and UFCON UART registers */
Kukjin Kimc8def082010-07-21 09:19:51 +090051#define SMDKV210_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \
Kukjin Kim98174412010-02-24 16:40:49 +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 SMDKV210_ULCON_DEFAULT S3C2410_LCON_CS8
Kukjin Kim98174412010-02-24 16:40:49 +090059
Kukjin Kimc8def082010-07-21 09:19:51 +090060#define SMDKV210_UFCON_DEFAULT (S3C2410_UFCON_FIFOMODE | \
Kukjin Kim98174412010-02-24 16:40:49 +090061 S5PV210_UFCON_TXTRIG4 | \
62 S5PV210_UFCON_RXTRIG4)
63
64static struct s3c2410_uartcfg smdkv210_uartcfgs[] __initdata = {
65 [0] = {
66 .hwport = 0,
67 .flags = 0,
Kukjin Kimc8def082010-07-21 09:19:51 +090068 .ucon = SMDKV210_UCON_DEFAULT,
69 .ulcon = SMDKV210_ULCON_DEFAULT,
70 .ufcon = SMDKV210_UFCON_DEFAULT,
Kukjin Kim98174412010-02-24 16:40:49 +090071 },
72 [1] = {
73 .hwport = 1,
74 .flags = 0,
Kukjin Kimc8def082010-07-21 09:19:51 +090075 .ucon = SMDKV210_UCON_DEFAULT,
76 .ulcon = SMDKV210_ULCON_DEFAULT,
77 .ufcon = SMDKV210_UFCON_DEFAULT,
Kukjin Kim98174412010-02-24 16:40:49 +090078 },
79 [2] = {
80 .hwport = 2,
81 .flags = 0,
Kukjin Kimc8def082010-07-21 09:19:51 +090082 .ucon = SMDKV210_UCON_DEFAULT,
83 .ulcon = SMDKV210_ULCON_DEFAULT,
84 .ufcon = SMDKV210_UFCON_DEFAULT,
Kukjin Kim98174412010-02-24 16:40:49 +090085 },
86 [3] = {
87 .hwport = 3,
88 .flags = 0,
Kukjin Kimc8def082010-07-21 09:19:51 +090089 .ucon = SMDKV210_UCON_DEFAULT,
90 .ulcon = SMDKV210_ULCON_DEFAULT,
91 .ufcon = SMDKV210_UFCON_DEFAULT,
Kukjin Kim98174412010-02-24 16:40:49 +090092 },
93};
94
Abhilash Kesavan4b9a5ad2010-06-08 17:11:43 +090095static struct s3c_ide_platdata smdkv210_ide_pdata __initdata = {
96 .setup_gpio = s5pv210_ide_setup_gpio,
97};
98
Naveen Krishna Ch88a1cc42010-06-21 16:47:16 +090099static uint32_t smdkv210_keymap[] __initdata = {
100 /* KEY(row, col, keycode) */
101 KEY(0, 3, KEY_1), KEY(0, 4, KEY_2), KEY(0, 5, KEY_3),
102 KEY(0, 6, KEY_4), KEY(0, 7, KEY_5),
103 KEY(1, 3, KEY_A), KEY(1, 4, KEY_B), KEY(1, 5, KEY_C),
104 KEY(1, 6, KEY_D), KEY(1, 7, KEY_E)
105};
106
107static struct matrix_keymap_data smdkv210_keymap_data __initdata = {
108 .keymap = smdkv210_keymap,
109 .keymap_size = ARRAY_SIZE(smdkv210_keymap),
110};
111
112static struct samsung_keypad_platdata smdkv210_keypad_data __initdata = {
113 .keymap_data = &smdkv210_keymap_data,
114 .rows = 8,
115 .cols = 8,
116};
117
Thomas Abraham9b580cd2010-12-02 18:16:20 +0900118static struct resource smdkv210_dm9000_resources[] = {
119 [0] = {
120 .start = S5PV210_PA_SROM_BANK5,
121 .end = S5PV210_PA_SROM_BANK5,
122 .flags = IORESOURCE_MEM,
123 },
124 [1] = {
125 .start = S5PV210_PA_SROM_BANK5 + 2,
126 .end = S5PV210_PA_SROM_BANK5 + 2,
127 .flags = IORESOURCE_MEM,
128 },
129 [2] = {
130 .start = IRQ_EINT(9),
131 .end = IRQ_EINT(9),
132 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
133 },
134};
135
136static struct dm9000_plat_data smdkv210_dm9000_platdata = {
137 .flags = DM9000_PLATF_16BITONLY | DM9000_PLATF_NO_EEPROM,
138 .dev_addr = { 0x00, 0x09, 0xc0, 0xff, 0xec, 0x48 },
139};
140
141struct platform_device smdkv210_dm9000 = {
142 .name = "dm9000",
143 .id = -1,
144 .num_resources = ARRAY_SIZE(smdkv210_dm9000_resources),
145 .resource = smdkv210_dm9000_resources,
146 .dev = {
147 .platform_data = &smdkv210_dm9000_platdata,
148 },
149};
150
Thomas Abraham8f497202010-11-26 13:19:49 +0900151static void smdkv210_lte480wv_set_power(struct plat_lcd_data *pd,
152 unsigned int power)
153{
154 if (power) {
155#if !defined(CONFIG_BACKLIGHT_PWM)
156 gpio_request(S5PV210_GPD0(3), "GPD0");
157 gpio_direction_output(S5PV210_GPD0(3), 1);
158 gpio_free(S5PV210_GPD0(3));
159#endif
160
161 /* fire nRESET on power up */
162 gpio_request(S5PV210_GPH0(6), "GPH0");
163
164 gpio_direction_output(S5PV210_GPH0(6), 1);
165
166 gpio_set_value(S5PV210_GPH0(6), 0);
167 mdelay(10);
168
169 gpio_set_value(S5PV210_GPH0(6), 1);
170 mdelay(10);
171
172 gpio_free(S5PV210_GPH0(6));
173 } else {
174#if !defined(CONFIG_BACKLIGHT_PWM)
175 gpio_request(S5PV210_GPD0(3), "GPD0");
176 gpio_direction_output(S5PV210_GPD0(3), 0);
177 gpio_free(S5PV210_GPD0(3));
178#endif
179 }
180}
181
182static struct plat_lcd_data smdkv210_lcd_lte480wv_data = {
183 .set_power = smdkv210_lte480wv_set_power,
184};
185
186static struct platform_device smdkv210_lcd_lte480wv = {
187 .name = "platform-lcd",
188 .dev.parent = &s3c_device_fb.dev,
189 .dev.platform_data = &smdkv210_lcd_lte480wv_data,
190};
191
192static struct s3c_fb_pd_win smdkv210_fb_win0 = {
193 .win_mode = {
194 .left_margin = 13,
195 .right_margin = 8,
196 .upper_margin = 7,
197 .lower_margin = 5,
198 .hsync_len = 3,
199 .vsync_len = 1,
200 .xres = 800,
201 .yres = 480,
202 },
203 .max_bpp = 32,
204 .default_bpp = 24,
205};
206
207static struct s3c_fb_platdata smdkv210_lcd0_pdata __initdata = {
208 .win[0] = &smdkv210_fb_win0,
209 .vidcon0 = VIDCON0_VIDOUT_RGB | VIDCON0_PNRMODE_RGB,
210 .vidcon1 = VIDCON1_INV_HSYNC | VIDCON1_INV_VSYNC,
211 .setup_gpio = s5pv210_fb_gpio_setup_24bpp,
212};
213
Banajit Goswami5cd435b2011-02-28 23:02:32 +0530214static int smdkv210_backlight_init(struct device *dev)
215{
216 int ret;
217
218 ret = gpio_request(S5PV210_GPD0(3), "Backlight");
219 if (ret) {
220 printk(KERN_ERR "failed to request GPD for PWM-OUT 3\n");
221 return ret;
222 }
223
224 /* Configure GPIO pin with S5PV210_GPD_0_3_TOUT_3 */
225 s3c_gpio_cfgpin(S5PV210_GPD0(3), S3C_GPIO_SFN(2));
226
227 return 0;
228}
229
230static void smdkv210_backlight_exit(struct device *dev)
231{
232 s3c_gpio_cfgpin(S5PV210_GPD0(3), S3C_GPIO_OUTPUT);
233 gpio_free(S5PV210_GPD0(3));
234}
235
236static struct platform_pwm_backlight_data smdkv210_backlight_data = {
237 .pwm_id = 3,
238 .max_brightness = 255,
239 .dft_brightness = 255,
240 .pwm_period_ns = 78770,
241 .init = smdkv210_backlight_init,
242 .exit = smdkv210_backlight_exit,
243};
244
245static struct platform_device smdkv210_backlight_device = {
246 .name = "pwm-backlight",
247 .dev = {
248 .parent = &s3c_device_timer[3].dev,
249 .platform_data = &smdkv210_backlight_data,
250 },
251};
252
Kukjin Kim98174412010-02-24 16:40:49 +0900253static struct platform_device *smdkv210_devices[] __initdata = {
Naveen Krishna Ch41d82892010-05-20 11:39:54 +0900254 &s3c_device_adc,
Abhilash Kesavan4b9a5ad2010-06-08 17:11:43 +0900255 &s3c_device_cfcon,
Thomas Abraham8f497202010-11-26 13:19:49 +0900256 &s3c_device_fb,
Hyuk Lee976a62f2010-06-14 10:18:56 +0900257 &s3c_device_hsmmc0,
258 &s3c_device_hsmmc1,
259 &s3c_device_hsmmc2,
260 &s3c_device_hsmmc3,
Naveen Krishna Ch170d7412010-07-21 09:21:56 +0530261 &s3c_device_i2c0,
262 &s3c_device_i2c1,
263 &s3c_device_i2c2,
Atul Dahiyaf5807262010-07-21 17:36:02 +0900264 &s3c_device_rtc,
Naveen Krishna Ch41d82892010-05-20 11:39:54 +0900265 &s3c_device_ts,
Banajit Goswami5b7d7b22010-05-20 16:21:32 +0900266 &s3c_device_wdt,
Kukjin Kim0ae9a222010-12-30 10:52:32 +0900267 &s5pv210_device_ac97,
268 &s5pv210_device_iis0,
269 &s5pv210_device_spdif,
Jassi Brarb9368f32010-12-30 09:13:23 +0900270 &samsung_asoc_dma,
Kukjin Kim0ae9a222010-12-30 10:52:32 +0900271 &samsung_device_keypad,
Thomas Abraham9b580cd2010-12-02 18:16:20 +0900272 &smdkv210_dm9000,
Thomas Abraham8f497202010-11-26 13:19:49 +0900273 &smdkv210_lcd_lte480wv,
Banajit Goswami5cd435b2011-02-28 23:02:32 +0530274 &s3c_device_timer[3],
275 &smdkv210_backlight_device,
Naveen Krishna Ch41d82892010-05-20 11:39:54 +0900276};
277
Thomas Abraham9b580cd2010-12-02 18:16:20 +0900278static void __init smdkv210_dm9000_init(void)
279{
280 unsigned int tmp;
281
282 gpio_request(S5PV210_MP01(5), "nCS5");
283 s3c_gpio_cfgpin(S5PV210_MP01(5), S3C_GPIO_SFN(2));
284 gpio_free(S5PV210_MP01(5));
285
286 tmp = (5 << S5P_SROM_BCX__TACC__SHIFT);
287 __raw_writel(tmp, S5P_SROM_BC5);
288
289 tmp = __raw_readl(S5P_SROM_BW);
290 tmp &= (S5P_SROM_BW__CS_MASK << S5P_SROM_BW__NCS5__SHIFT);
291 tmp |= (1 << S5P_SROM_BW__NCS5__SHIFT);
292 __raw_writel(tmp, S5P_SROM_BW);
293}
294
Naveen Krishna Ch170d7412010-07-21 09:21:56 +0530295static struct i2c_board_info smdkv210_i2c_devs0[] __initdata = {
296 { I2C_BOARD_INFO("24c08", 0x50), }, /* Samsung S524AD0XD1 */
Jassi Brard8710bc2010-12-21 09:48:37 +0900297 { I2C_BOARD_INFO("wm8580", 0x1b), },
Naveen Krishna Ch170d7412010-07-21 09:21:56 +0530298};
299
300static struct i2c_board_info smdkv210_i2c_devs1[] __initdata = {
301 /* To Be Updated */
302};
303
304static struct i2c_board_info smdkv210_i2c_devs2[] __initdata = {
305 /* To Be Updated */
306};
307
Naveen Krishna Ch41d82892010-05-20 11:39:54 +0900308static struct s3c2410_ts_mach_info s3c_ts_platform __initdata = {
309 .delay = 10000,
310 .presc = 49,
311 .oversampling_shift = 2,
Kukjin Kim98174412010-02-24 16:40:49 +0900312};
313
314static void __init smdkv210_map_io(void)
315{
316 s5p_init_io(NULL, 0, S5P_VA_CHIPID);
317 s3c24xx_init_clocks(24000000);
318 s3c24xx_init_uarts(smdkv210_uartcfgs, ARRAY_SIZE(smdkv210_uartcfgs));
Sangbeom Kim20780fc2011-03-12 08:02:12 +0900319 s5p_set_timer_source(S5P_PWM2, S5P_PWM4);
Kukjin Kim98174412010-02-24 16:40:49 +0900320}
321
322static void __init smdkv210_machine_init(void)
323{
Jongpill Leeea31fd42010-10-02 19:13:42 +0900324 s3c_pm_init();
325
Thomas Abraham9b580cd2010-12-02 18:16:20 +0900326 smdkv210_dm9000_init();
327
Naveen Krishna Ch88a1cc42010-06-21 16:47:16 +0900328 samsung_keypad_set_platdata(&smdkv210_keypad_data);
Naveen Krishna Ch41d82892010-05-20 11:39:54 +0900329 s3c24xx_ts_set_platdata(&s3c_ts_platform);
Naveen Krishna Ch170d7412010-07-21 09:21:56 +0530330
331 s3c_i2c0_set_platdata(NULL);
332 s3c_i2c1_set_platdata(NULL);
333 s3c_i2c2_set_platdata(NULL);
334 i2c_register_board_info(0, smdkv210_i2c_devs0,
335 ARRAY_SIZE(smdkv210_i2c_devs0));
336 i2c_register_board_info(1, smdkv210_i2c_devs1,
337 ARRAY_SIZE(smdkv210_i2c_devs1));
338 i2c_register_board_info(2, smdkv210_i2c_devs2,
339 ARRAY_SIZE(smdkv210_i2c_devs2));
340
Abhilash Kesavan4b9a5ad2010-06-08 17:11:43 +0900341 s3c_ide_set_platdata(&smdkv210_ide_pdata);
342
Thomas Abraham8f497202010-11-26 13:19:49 +0900343 s3c_fb_set_platdata(&smdkv210_lcd0_pdata);
344
Kukjin Kim98174412010-02-24 16:40:49 +0900345 platform_add_devices(smdkv210_devices, ARRAY_SIZE(smdkv210_devices));
346}
347
348MACHINE_START(SMDKV210, "SMDKV210")
349 /* Maintainer: Kukjin Kim <kgene.kim@samsung.com> */
Kukjin Kim98174412010-02-24 16:40:49 +0900350 .boot_params = S5P_PA_SDRAM + 0x100,
351 .init_irq = s5pv210_init_irq,
352 .map_io = smdkv210_map_io,
353 .init_machine = smdkv210_machine_init,
Sangbeom Kim20780fc2011-03-12 08:02:12 +0900354 .timer = &s5p_timer,
Kukjin Kim98174412010-02-24 16:40:49 +0900355MACHINE_END