| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 | /* linux/arch/arm/mach-s3c64xx/mach-smdk6410.c * * Copyright 2008 Openmoko, Inc. * Copyright 2008 Simtec Electronics *	Ben Dooks <ben@simtec.co.uk> *	http://armlinux.simtec.co.uk/ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. **/#include <linux/kernel.h>#include <linux/types.h>#include <linux/interrupt.h>#include <linux/list.h>#include <linux/timer.h>#include <linux/init.h>#include <linux/input.h>#include <linux/serial_core.h>#include <linux/platform_device.h>#include <linux/io.h>#include <linux/i2c.h>#include <linux/leds.h>#include <linux/fb.h>#include <linux/gpio.h>#include <linux/delay.h>#include <linux/smsc911x.h>#include <linux/regulator/fixed.h>#include <linux/regulator/machine.h>#include <linux/pwm_backlight.h>#include <linux/platform_data/s3c-hsotg.h>#ifdef CONFIG_SMDK6410_WM1190_EV1#include <linux/mfd/wm8350/core.h>#include <linux/mfd/wm8350/pmic.h>#endif#ifdef CONFIG_SMDK6410_WM1192_EV1#include <linux/mfd/wm831x/core.h>#include <linux/mfd/wm831x/pdata.h>#endif#include <video/platform_lcd.h>#include <video/samsung_fimd.h>#include <asm/hardware/vic.h>#include <asm/mach/arch.h>#include <asm/mach/map.h>#include <asm/mach/irq.h>#include <mach/hardware.h>#include <mach/map.h>#include <asm/irq.h>#include <asm/mach-types.h>#include <plat/regs-serial.h>#include <mach/regs-modem.h>#include <mach/regs-gpio.h>#include <mach/regs-sys.h>#include <mach/regs-srom.h>#include <linux/platform_data/ata-samsung_cf.h>#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_FIFOMODEstatic 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,
 |