| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 | /* 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,	.xres		= 800,	.yres		= 480,};/* 405566 clocks per frame => 60Hz refresh requires 24333960Hz clock */static struct s3c_fb_platdata smdk6410_lcd_pdata __initdata = {	.setup_gpio	= s3c64xx_fb_gpio_setup_24bpp,	.vtiming	= &smdk6410_lcd_timing,	.win[0]		= &smdk6410_fb_win0,	.vidcon0	= VIDCON0_VIDOUT_RGB | VIDCON0_PNRMODE_RGB,	.vidcon1	= VIDCON1_INV_HSYNC | VIDCON1_INV_VSYNC,};/* * Configuring Ethernet on SMDK6410 * * Both CS8900A and LAN9115 chips share one chip select mediated by CFG6. * The constant address below corresponds to nCS1 * *  1) Set CFGB2 p3 ON others off, no other CFGB selects "ethernet" *  2) CFG6 needs to be switched to "LAN9115" side */static struct resource smdk6410_smsc911x_resources[] = {	[0] = DEFINE_RES_MEM(S3C64XX_PA_XM0CSN1, SZ_64K),	[1] = DEFINE_RES_NAMED(S3C_EINT(10), 1, NULL, IORESOURCE_IRQ \					| IRQ_TYPE_LEVEL_LOW),};static struct smsc911x_platform_config smdk6410_smsc911x_pdata = {	.irq_polarity  = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,	.irq_type      = SMSC911X_IRQ_TYPE_OPEN_DRAIN,	.flags         = SMSC911X_USE_32BIT | SMSC911X_FORCE_INTERNAL_PHY,	.phy_interface = PHY_INTERFACE_MODE_MII,};static struct platform_device smdk6410_smsc911x = {	.name          = "smsc911x",	.id            = -1,	.num_resources = ARRAY_SIZE(smdk6410_smsc911x_resources),	.resource      = &smdk6410_smsc911x_resources[0],	.dev = {		.platform_data = &smdk6410_smsc911x_pdata,	},};#ifdef CONFIG_REGULATORstatic struct regulator_consumer_supply smdk6410_b_pwr_5v_consumers[] __initdata = {	REGULATOR_SUPPLY("PVDD", "0-001b"),	REGULATOR_SUPPLY("AVDD", "0-001b"),};static struct regulator_init_data smdk6410_b_pwr_5v_data = {	.constraints = {		.always_on = 1,	},	.num_consumer_supplies = ARRAY_SIZE(smdk6410_b_pwr_5v_consumers),	.consumer_supplies = smdk6410_b_pwr_5v_consumers,};static struct fixed_voltage_config smdk6410_b_pwr_5v_pdata = {	.supply_name = "B_PWR_5V",	.microvolts = 5000000,	.init_data = &smdk6410_b_pwr_5v_data,	.gpio = -EINVAL,};static struct platform_device smdk6410_b_pwr_5v = {	.name          = "reg-fixed-voltage",	.id            = -1,	.dev = {		.platform_data = &smdk6410_b_pwr_5v_pdata,	},};#endifstatic struct s3c_ide_platdata smdk6410_ide_pdata __initdata = {	.setup_gpio	= s3c64xx_ide_setup_gpio,};static uint32_t smdk6410_keymap[] __initdata = {	/* KEY(row, col, keycode) */	KEY(0, 3, KEY_1), KEY(0, 4, KEY_2), KEY(0, 5, KEY_3),	KEY(0, 6, KEY_4), KEY(0, 7, KEY_5),	KEY(1, 3, KEY_A), KEY(1, 4, KEY_B), KEY(1, 5, KEY_C),	KEY(1, 6, KEY_D), KEY(1, 7, KEY_E)};static struct matrix_keymap_data smdk6410_keymap_data __initdata = {	.keymap		= smdk6410_keymap,	.keymap_size	= ARRAY_SIZE(smdk6410_keymap),};static struct samsung_keypad_platdata smdk6410_keypad_data __initdata = {	.keymap_data	= &smdk6410_keymap_data,	.rows		= 2,	.cols		= 8,};static struct map_desc smdk6410_iodesc[] = {};static struct platform_device *smdk6410_devices[] __initdata = {#ifdef CONFIG_SMDK6410_SD_CH0	&s3c_device_hsmmc0,#endif#ifdef CONFIG_SMDK6410_SD_CH1	&s3c_device_hsmmc1,#endif	&s3c_device_i2c0,	&s3c_device_i2c1,	&s3c_device_fb,	&s3c_device_ohci,	&s3c_device_usb_hsotg,	&s3c64xx_device_iisv4,	&samsung_device_keypad,#ifdef CONFIG_REGULATOR	&smdk6410_b_pwr_5v,#endif	&smdk6410_lcd_powerdev,	&smdk6410_smsc911x,	&s3c_device_adc,	&s3c_device_cfcon,	&s3c_device_rtc,	&s3c_device_ts,	&s3c_device_wdt,};#ifdef CONFIG_REGULATOR/* ARM core */static struct regulator_consumer_supply smdk6410_vddarm_consumers[] = {	REGULATOR_SUPPLY("vddarm", NULL),};/* VDDARM, BUCK1 on J5 */static struct regulator_init_data smdk6410_vddarm = {	.constraints = {		.name = "PVDD_ARM",
 |