MERGE-master-patchset-edits
[linux-2.6/openmoko-kernel.git] / arch / arm / mach-s3c6410 / mach-smdk6410.c
blobcf4167e88ecbd74e5be279a57f3e7ff730d8853e
1 /* linux/arch/arm/mach-s3c6410/mach-smdk6410.c
3 * Copyright 2008 Openmoko, Inc.
4 * Copyright 2008 Simtec Electronics
5 * Ben Dooks <ben@simtec.co.uk>
6 * http://armlinux.simtec.co.uk/
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/types.h>
16 #include <linux/interrupt.h>
17 #include <linux/list.h>
18 #include <linux/timer.h>
19 #include <linux/init.h>
20 #include <linux/serial_core.h>
21 #include <linux/platform_device.h>
22 #include <linux/io.h>
23 #include <linux/i2c.h>
24 #include <linux/fb.h>
25 #include <linux/gpio.h>
26 #include <linux/delay.h>
28 #include <video/platform_lcd.h>
30 #include <asm/mach/arch.h>
31 #include <asm/mach/map.h>
32 #include <asm/mach/irq.h>
34 #include <mach/hardware.h>
35 #include <mach/regs-fb.h>
36 #include <mach/map.h>
38 #include <asm/irq.h>
39 #include <asm/mach-types.h>
41 #include <plat/regs-serial.h>
42 #include <plat/regs-modem.h>
43 #include <plat/regs-gpio.h>
44 #include <plat/regs-sys.h>
45 #include <plat/iic.h>
46 #include <plat/fb.h>
47 #include <plat/pm.h>
49 #include <plat/s3c6410.h>
50 #include <plat/clock.h>
51 #include <plat/devs.h>
52 #include <plat/cpu.h>
54 #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
55 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
56 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
58 static struct s3c2410_uartcfg smdk6410_uartcfgs[] __initdata = {
59 [0] = {
60 .hwport = 0,
61 .flags = 0,
62 .ucon = 0x3c5,
63 .ulcon = 0x03,
64 .ufcon = 0x51,
66 [1] = {
67 .hwport = 1,
68 .flags = 0,
69 .ucon = 0x3c5,
70 .ulcon = 0x03,
71 .ufcon = 0x51,
75 /* framebuffer and LCD setup. */
77 /* GPF15 = LCD backlight control
78 * GPF13 => Panel power
79 * GPN5 = LCD nRESET signal
80 * PWM_TOUT1 => backlight brightness
83 static void smdk6410_lcd_power_set(struct plat_lcd_data *pd,
84 unsigned int power)
86 if (power) {
87 gpio_direction_output(S3C64XX_GPF(13), 1);
88 gpio_direction_output(S3C64XX_GPF(15), 1);
90 /* fire nRESET on power up */
91 gpio_direction_output(S3C64XX_GPN(5), 0);
92 msleep(10);
93 gpio_direction_output(S3C64XX_GPN(5), 1);
94 msleep(1);
95 } else {
96 gpio_direction_output(S3C64XX_GPF(15), 0);
97 gpio_direction_output(S3C64XX_GPF(13), 0);
101 static struct plat_lcd_data smdk6410_lcd_power_data = {
102 .set_power = smdk6410_lcd_power_set,
105 static struct platform_device smdk6410_lcd_powerdev = {
106 .name = "platform-lcd",
107 .dev.parent = &s3c_device_fb.dev,
108 .dev.platform_data = &smdk6410_lcd_power_data,
111 static struct s3c_fb_pd_win smdk6410_fb_win0 = {
112 /* this is to ensure we use win0 */
113 .win_mode = {
114 .pixclock = 41094,
115 .left_margin = 8,
116 .right_margin = 13,
117 .upper_margin = 7,
118 .lower_margin = 5,
119 .hsync_len = 3,
120 .vsync_len = 1,
121 .xres = 800,
122 .yres = 480,
124 .max_bpp = 32,
125 .default_bpp = 16,
128 /* 405566 clocks per frame => 60Hz refresh requires 24333960Hz clock */
129 static struct s3c_fb_platdata smdk6410_lcd_pdata __initdata = {
130 .setup_gpio = s3c64xx_fb_gpio_setup_24bpp,
131 .win[0] = &smdk6410_fb_win0,
132 .vidcon0 = VIDCON0_VIDOUT_RGB | VIDCON0_PNRMODE_RGB,
133 .vidcon1 = VIDCON1_INV_HSYNC | VIDCON1_INV_VSYNC,
136 struct map_desc smdk6410_iodesc[] = {};
138 static struct platform_device *smdk6410_devices[] __initdata = {
139 #ifdef CONFIG_SMDK6410_SD_CH0
140 &s3c_device_hsmmc0,
141 #endif
142 #ifdef CONFIG_SMDK6410_SD_CH1
143 &s3c_device_hsmmc1,
144 #endif
145 &s3c_device_i2c0,
146 &s3c_device_i2c1,
147 &s3c_device_fb,
148 &smdk6410_lcd_powerdev,
151 static struct i2c_board_info i2c_devs0[] __initdata = {
152 { I2C_BOARD_INFO("24c08", 0x50), },
153 { I2C_BOARD_INFO("WM8580", 0X1b), },
156 static struct i2c_board_info i2c_devs1[] __initdata = {
157 { I2C_BOARD_INFO("24c128", 0x57), }, /* Samsung S524AD0XD1 */
160 static void __init smdk6410_map_io(void)
162 u32 tmp;
164 s3c64xx_init_io(smdk6410_iodesc, ARRAY_SIZE(smdk6410_iodesc));
165 s3c24xx_init_clocks(12000000);
166 s3c24xx_init_uarts(smdk6410_uartcfgs, ARRAY_SIZE(smdk6410_uartcfgs));
168 /* set the LCD type */
170 tmp = __raw_readl(S3C64XX_SPCON);
171 tmp &= ~S3C64XX_SPCON_LCD_SEL_MASK;
172 tmp |= S3C64XX_SPCON_LCD_SEL_RGB;
173 __raw_writel(tmp, S3C64XX_SPCON);
175 /* remove the lcd bypass */
176 tmp = __raw_readl(S3C64XX_MODEM_MIFPCON);
177 tmp &= ~MIFPCON_LCD_BYPASS;
178 __raw_writel(tmp, S3C64XX_MODEM_MIFPCON);
181 static void __init smdk6410_machine_init(void)
183 s3c_pm_init();
185 s3c_i2c0_set_platdata(NULL);
186 s3c_i2c1_set_platdata(NULL);
187 s3c_fb_set_platdata(&smdk6410_lcd_pdata);
189 i2c_register_board_info(0, i2c_devs0, ARRAY_SIZE(i2c_devs0));
190 i2c_register_board_info(1, i2c_devs1, ARRAY_SIZE(i2c_devs1));
192 platform_add_devices(smdk6410_devices, ARRAY_SIZE(smdk6410_devices));
195 MACHINE_START(SMDK6410, "SMDK6410")
196 /* Maintainer: Ben Dooks <ben@fluff.org> */
197 .phys_io = S3C_PA_UART & 0xfff00000,
198 .io_pg_offst = (((u32)S3C_VA_UART) >> 18) & 0xfffc,
199 .boot_params = S3C64XX_PA_SDRAM + 0x100,
201 .init_irq = s3c6410_init_irq,
202 .map_io = smdk6410_map_io,
203 .init_machine = smdk6410_machine_init,
204 .timer = &s3c24xx_timer,
205 MACHINE_END