|
@@ -65,3 +65,99 @@
|
|
|
#include <linux/platform_data/i2c-s3c2410.h>
|
|
|
#include <plat/fb.h>
|
|
|
#include <plat/gpio-cfg.h>
|
|
|
+
|
|
|
+#include <plat/clock.h>
|
|
|
+#include <plat/devs.h>
|
|
|
+#include <plat/cpu.h>
|
|
|
+#include <plat/adc.h>
|
|
|
+#include <linux/platform_data/touchscreen-s3c2410.h>
|
|
|
+#include <plat/keypad.h>
|
|
|
+#include <plat/backlight.h>
|
|
|
+
|
|
|
+#include "common.h"
|
|
|
+
|
|
|
+#define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
|
|
|
+#define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
|
|
|
+#define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
|
|
|
+
|
|
|
+static struct s3c2410_uartcfg smdk6410_uartcfgs[] __initdata = {
|
|
|
+ [0] = {
|
|
|
+ .hwport = 0,
|
|
|
+ .flags = 0,
|
|
|
+ .ucon = UCON,
|
|
|
+ .ulcon = ULCON,
|
|
|
+ .ufcon = UFCON,
|
|
|
+ },
|
|
|
+ [1] = {
|
|
|
+ .hwport = 1,
|
|
|
+ .flags = 0,
|
|
|
+ .ucon = UCON,
|
|
|
+ .ulcon = ULCON,
|
|
|
+ .ufcon = UFCON,
|
|
|
+ },
|
|
|
+ [2] = {
|
|
|
+ .hwport = 2,
|
|
|
+ .flags = 0,
|
|
|
+ .ucon = UCON,
|
|
|
+ .ulcon = ULCON,
|
|
|
+ .ufcon = UFCON,
|
|
|
+ },
|
|
|
+ [3] = {
|
|
|
+ .hwport = 3,
|
|
|
+ .flags = 0,
|
|
|
+ .ucon = UCON,
|
|
|
+ .ulcon = ULCON,
|
|
|
+ .ufcon = UFCON,
|
|
|
+ },
|
|
|
+};
|
|
|
+
|
|
|
+/* framebuffer and LCD setup. */
|
|
|
+
|
|
|
+/* GPF15 = LCD backlight control
|
|
|
+ * GPF13 => Panel power
|
|
|
+ * GPN5 = LCD nRESET signal
|
|
|
+ * PWM_TOUT1 => backlight brightness
|
|
|
+ */
|
|
|
+
|
|
|
+static void smdk6410_lcd_power_set(struct plat_lcd_data *pd,
|
|
|
+ unsigned int power)
|
|
|
+{
|
|
|
+ if (power) {
|
|
|
+ gpio_direction_output(S3C64XX_GPF(13), 1);
|
|
|
+
|
|
|
+ /* fire nRESET on power up */
|
|
|
+ gpio_direction_output(S3C64XX_GPN(5), 0);
|
|
|
+ msleep(10);
|
|
|
+ gpio_direction_output(S3C64XX_GPN(5), 1);
|
|
|
+ msleep(1);
|
|
|
+ } else {
|
|
|
+ gpio_direction_output(S3C64XX_GPF(13), 0);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static struct plat_lcd_data smdk6410_lcd_power_data = {
|
|
|
+ .set_power = smdk6410_lcd_power_set,
|
|
|
+};
|
|
|
+
|
|
|
+static struct platform_device smdk6410_lcd_powerdev = {
|
|
|
+ .name = "platform-lcd",
|
|
|
+ .dev.parent = &s3c_device_fb.dev,
|
|
|
+ .dev.platform_data = &smdk6410_lcd_power_data,
|
|
|
+};
|
|
|
+
|
|
|
+static struct s3c_fb_pd_win smdk6410_fb_win0 = {
|
|
|
+ .max_bpp = 32,
|
|
|
+ .default_bpp = 16,
|
|
|
+ .xres = 800,
|
|
|
+ .yres = 480,
|
|
|
+ .virtual_y = 480 * 2,
|
|
|
+ .virtual_x = 800,
|
|
|
+};
|
|
|
+
|
|
|
+static struct fb_videomode smdk6410_lcd_timing = {
|
|
|
+ .left_margin = 8,
|
|
|
+ .right_margin = 13,
|
|
|
+ .upper_margin = 7,
|
|
|
+ .lower_margin = 5,
|
|
|
+ .hsync_len = 3,
|
|
|
+ .vsync_len = 1,
|