| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370 | 
							- /*
 
-  * board-devkit8000.c - TimLL Devkit8000
 
-  *
 
-  * Copyright (C) 2009 Kim Botherway
 
-  * Copyright (C) 2010 Thomas Weber
 
-  *
 
-  * Modified from mach-omap2/board-omap3beagle.c
 
-  *
 
-  * Initial code: Syed Mohammed Khasim
 
-  *
 
-  * 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/init.h>
 
- #include <linux/platform_device.h>
 
- #include <linux/delay.h>
 
- #include <linux/err.h>
 
- #include <linux/clk.h>
 
- #include <linux/io.h>
 
- #include <linux/leds.h>
 
- #include <linux/gpio.h>
 
- #include <linux/input.h>
 
- #include <linux/gpio_keys.h>
 
- #include <linux/mtd/mtd.h>
 
- #include <linux/mtd/partitions.h>
 
- #include <linux/mtd/nand.h>
 
- #include <linux/mmc/host.h>
 
- #include <linux/regulator/machine.h>
 
- #include <linux/i2c/twl.h>
 
- #include "id.h"
 
- #include <asm/mach-types.h>
 
- #include <asm/mach/arch.h>
 
- #include <asm/mach/map.h>
 
- #include <asm/mach/flash.h>
 
- #include "common.h"
 
- #include "gpmc.h"
 
- #include <linux/platform_data/mtd-nand-omap2.h>
 
- #include <video/omapdss.h>
 
- #include <video/omap-panel-generic-dpi.h>
 
- #include <video/omap-panel-tfp410.h>
 
- #include <linux/platform_data/spi-omap2-mcspi.h>
 
- #include <linux/input/matrix_keypad.h>
 
- #include <linux/spi/spi.h>
 
- #include <linux/dm9000.h>
 
- #include <linux/interrupt.h>
 
- #include "sdram-micron-mt46h32m32lf-6.h"
 
- #include "mux.h"
 
- #include "hsmmc.h"
 
- #include "board-flash.h"
 
- #include "common-board-devices.h"
 
- #define	NAND_CS			0
 
- #define OMAP_DM9000_GPIO_IRQ	25
 
- #define OMAP3_DEVKIT_TS_GPIO	27
 
- static struct mtd_partition devkit8000_nand_partitions[] = {
 
- 	/* All the partition sizes are listed in terms of NAND block size */
 
- 	{
 
- 		.name		= "X-Loader",
 
- 		.offset		= 0,
 
- 		.size		= 4 * NAND_BLOCK_SIZE,
 
- 		.mask_flags	= MTD_WRITEABLE,	/* force read-only */
 
- 	},
 
- 	{
 
- 		.name		= "U-Boot",
 
- 		.offset		= MTDPART_OFS_APPEND,	/* Offset = 0x80000 */
 
- 		.size		= 15 * NAND_BLOCK_SIZE,
 
- 		.mask_flags	= MTD_WRITEABLE,	/* force read-only */
 
- 	},
 
- 	{
 
- 		.name		= "U-Boot Env",
 
- 		.offset		= MTDPART_OFS_APPEND,	/* Offset = 0x260000 */
 
- 		.size		= 1 * NAND_BLOCK_SIZE,
 
- 	},
 
- 	{
 
- 		.name		= "Kernel",
 
- 		.offset		= MTDPART_OFS_APPEND,	/* Offset = 0x280000 */
 
- 		.size		= 32 * NAND_BLOCK_SIZE,
 
- 	},
 
- 	{
 
- 		.name		= "File System",
 
- 		.offset		= MTDPART_OFS_APPEND,	/* Offset = 0x680000 */
 
- 		.size		= MTDPART_SIZ_FULL,
 
- 	},
 
- };
 
- static struct omap2_hsmmc_info mmc[] = {
 
- 	{
 
- 		.mmc		= 1,
 
- 		.caps		= MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
 
- 		.gpio_wp	= 29,
 
- 		.deferred	= true,
 
- 	},
 
- 	{}	/* Terminator */
 
- };
 
- static int devkit8000_panel_enable_lcd(struct omap_dss_device *dssdev)
 
- {
 
- 	if (gpio_is_valid(dssdev->reset_gpio))
 
- 		gpio_set_value_cansleep(dssdev->reset_gpio, 1);
 
- 	return 0;
 
- }
 
- static void devkit8000_panel_disable_lcd(struct omap_dss_device *dssdev)
 
- {
 
- 	if (gpio_is_valid(dssdev->reset_gpio))
 
- 		gpio_set_value_cansleep(dssdev->reset_gpio, 0);
 
- }
 
- static struct regulator_consumer_supply devkit8000_vmmc1_supply[] = {
 
- 	REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
 
- };
 
- /* ads7846 on SPI */
 
- static struct regulator_consumer_supply devkit8000_vio_supply[] = {
 
- 	REGULATOR_SUPPLY("vcc", "spi2.0"),
 
- };
 
- static struct panel_generic_dpi_data lcd_panel = {
 
- 	.name			= "innolux_at070tn83",
 
- 	.platform_enable        = devkit8000_panel_enable_lcd,
 
- 	.platform_disable       = devkit8000_panel_disable_lcd,
 
- };
 
- static struct omap_dss_device devkit8000_lcd_device = {
 
- 	.name                   = "lcd",
 
- 	.type                   = OMAP_DISPLAY_TYPE_DPI,
 
- 	.driver_name            = "generic_dpi_panel",
 
- 	.data			= &lcd_panel,
 
- 	.phy.dpi.data_lines     = 24,
 
- };
 
- static struct tfp410_platform_data dvi_panel = {
 
- 	.power_down_gpio	= -1,
 
- 	.i2c_bus_num		= 1,
 
- };
 
- static struct omap_dss_device devkit8000_dvi_device = {
 
- 	.name                   = "dvi",
 
- 	.type                   = OMAP_DISPLAY_TYPE_DPI,
 
- 	.driver_name            = "tfp410",
 
- 	.data			= &dvi_panel,
 
- 	.phy.dpi.data_lines     = 24,
 
- };
 
- static struct omap_dss_device devkit8000_tv_device = {
 
- 	.name                   = "tv",
 
- 	.driver_name            = "venc",
 
- 	.type                   = OMAP_DISPLAY_TYPE_VENC,
 
- 	.phy.venc.type          = OMAP_DSS_VENC_TYPE_SVIDEO,
 
- };
 
- static struct omap_dss_device *devkit8000_dss_devices[] = {
 
- 	&devkit8000_lcd_device,
 
- 	&devkit8000_dvi_device,
 
- 	&devkit8000_tv_device,
 
- };
 
- static struct omap_dss_board_info devkit8000_dss_data = {
 
- 	.num_devices = ARRAY_SIZE(devkit8000_dss_devices),
 
- 	.devices = devkit8000_dss_devices,
 
- 	.default_device = &devkit8000_lcd_device,
 
- };
 
- static uint32_t board_keymap[] = {
 
- 	KEY(0, 0, KEY_1),
 
- 	KEY(1, 0, KEY_2),
 
- 	KEY(2, 0, KEY_3),
 
- 	KEY(0, 1, KEY_4),
 
- 	KEY(1, 1, KEY_5),
 
- 	KEY(2, 1, KEY_6),
 
- 	KEY(3, 1, KEY_F5),
 
- 	KEY(0, 2, KEY_7),
 
- 	KEY(1, 2, KEY_8),
 
- 	KEY(2, 2, KEY_9),
 
- 	KEY(3, 2, KEY_F6),
 
- 	KEY(0, 3, KEY_F7),
 
- 	KEY(1, 3, KEY_0),
 
- 	KEY(2, 3, KEY_F8),
 
- 	PERSISTENT_KEY(4, 5),
 
- 	KEY(4, 4, KEY_VOLUMEUP),
 
- 	KEY(5, 5, KEY_VOLUMEDOWN),
 
- 	0
 
- };
 
- static struct matrix_keymap_data board_map_data = {
 
- 	.keymap			= board_keymap,
 
- 	.keymap_size		= ARRAY_SIZE(board_keymap),
 
- };
 
- static struct twl4030_keypad_data devkit8000_kp_data = {
 
- 	.keymap_data	= &board_map_data,
 
- 	.rows		= 6,
 
- 	.cols		= 6,
 
- 	.rep		= 1,
 
- };
 
- static struct gpio_led gpio_leds[];
 
- static int devkit8000_twl_gpio_setup(struct device *dev,
 
- 		unsigned gpio, unsigned ngpio)
 
- {
 
- 	int ret;
 
- 	/* gpio + 0 is "mmc0_cd" (input/IRQ) */
 
- 	mmc[0].gpio_cd = gpio + 0;
 
- 	omap_hsmmc_late_init(mmc);
 
- 	/* TWL4030_GPIO_MAX + 1 == ledB, PMU_STAT (out, active low LED) */
 
- 	gpio_leds[2].gpio = gpio + TWL4030_GPIO_MAX + 1;
 
- 	/* TWL4030_GPIO_MAX + 0 is "LCD_PWREN" (out, active high) */
 
- 	devkit8000_lcd_device.reset_gpio = gpio + TWL4030_GPIO_MAX + 0;
 
- 	ret = gpio_request_one(devkit8000_lcd_device.reset_gpio,
 
- 			       GPIOF_OUT_INIT_LOW, "LCD_PWREN");
 
- 	if (ret < 0) {
 
- 		devkit8000_lcd_device.reset_gpio = -EINVAL;
 
- 		printk(KERN_ERR "Failed to request GPIO for LCD_PWRN\n");
 
- 	}
 
- 	/* gpio + 7 is "DVI_PD" (out, active low) */
 
- 	dvi_panel.power_down_gpio = gpio + 7;
 
- 	return 0;
 
- }
 
- static struct twl4030_gpio_platform_data devkit8000_gpio_data = {
 
- 	.use_leds	= true,
 
- 	.pulldowns	= BIT(1) | BIT(2) | BIT(6) | BIT(8) | BIT(13)
 
- 				| BIT(15) | BIT(16) | BIT(17),
 
- 	.setup		= devkit8000_twl_gpio_setup,
 
- };
 
- static struct regulator_consumer_supply devkit8000_vpll1_supplies[] = {
 
- 	REGULATOR_SUPPLY("vdds_dsi", "omapdss"),
 
- 	REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi.0"),
 
- };
 
- /* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
 
- static struct regulator_init_data devkit8000_vmmc1 = {
 
- 	.constraints = {
 
- 		.min_uV			= 1850000,
 
- 		.max_uV			= 3150000,
 
- 		.valid_modes_mask	= REGULATOR_MODE_NORMAL
 
- 					| REGULATOR_MODE_STANDBY,
 
- 		.valid_ops_mask		= REGULATOR_CHANGE_VOLTAGE
 
- 					| REGULATOR_CHANGE_MODE
 
- 					| REGULATOR_CHANGE_STATUS,
 
- 	},
 
- 	.num_consumer_supplies	= ARRAY_SIZE(devkit8000_vmmc1_supply),
 
- 	.consumer_supplies	= devkit8000_vmmc1_supply,
 
- };
 
- /* VPLL1 for digital video outputs */
 
- static struct regulator_init_data devkit8000_vpll1 = {
 
- 	.constraints = {
 
- 		.min_uV			= 1800000,
 
- 		.max_uV			= 1800000,
 
- 		.valid_modes_mask	= REGULATOR_MODE_NORMAL
 
- 					| REGULATOR_MODE_STANDBY,
 
- 		.valid_ops_mask		= REGULATOR_CHANGE_MODE
 
- 					| REGULATOR_CHANGE_STATUS,
 
- 	},
 
- 	.num_consumer_supplies	= ARRAY_SIZE(devkit8000_vpll1_supplies),
 
- 	.consumer_supplies	= devkit8000_vpll1_supplies,
 
- };
 
- /* VAUX4 for ads7846 and nubs */
 
- static struct regulator_init_data devkit8000_vio = {
 
- 	.constraints = {
 
- 		.min_uV                 = 1800000,
 
- 		.max_uV                 = 1800000,
 
- 		.apply_uV               = true,
 
- 		.valid_modes_mask       = REGULATOR_MODE_NORMAL
 
- 			| REGULATOR_MODE_STANDBY,
 
- 		.valid_ops_mask         = REGULATOR_CHANGE_MODE
 
- 			| REGULATOR_CHANGE_STATUS,
 
- 	},
 
- 	.num_consumer_supplies  = ARRAY_SIZE(devkit8000_vio_supply),
 
- 	.consumer_supplies      = devkit8000_vio_supply,
 
- };
 
- static struct twl4030_platform_data devkit8000_twldata = {
 
- 	/* platform_data for children goes here */
 
- 	.gpio		= &devkit8000_gpio_data,
 
- 	.vmmc1		= &devkit8000_vmmc1,
 
- 	.vpll1		= &devkit8000_vpll1,
 
- 	.vio		= &devkit8000_vio,
 
- 	.keypad		= &devkit8000_kp_data,
 
- };
 
- static int __init devkit8000_i2c_init(void)
 
- {
 
- 	omap3_pmic_get_config(&devkit8000_twldata,
 
- 			  TWL_COMMON_PDATA_USB | TWL_COMMON_PDATA_AUDIO,
 
- 			  TWL_COMMON_REGULATOR_VDAC);
 
- 	omap3_pmic_init("tps65930", &devkit8000_twldata);
 
- 	/* Bus 3 is attached to the DVI port where devices like the pico DLP
 
- 	 * projector don't work reliably with 400kHz */
 
- 	omap_register_i2c_bus(3, 400, NULL, 0);
 
- 	return 0;
 
- }
 
- static struct gpio_led gpio_leds[] = {
 
- 	{
 
- 		.name			= "led1",
 
- 		.default_trigger	= "heartbeat",
 
- 		.gpio			= 186,
 
- 		.active_low		= true,
 
- 	},
 
- 	{
 
- 		.name			= "led2",
 
- 		.default_trigger	= "mmc0",
 
- 		.gpio			= 163,
 
- 		.active_low		= true,
 
- 	},
 
- 	{
 
- 		.name			= "ledB",
 
- 		.default_trigger	= "none",
 
- 		.gpio			= 153,
 
- 		.active_low             = true,
 
- 	},
 
- 	{
 
- 		.name			= "led3",
 
- 		.default_trigger	= "none",
 
- 		.gpio			= 164,
 
- 		.active_low             = true,
 
- 	},
 
- };
 
- static struct gpio_led_platform_data gpio_led_info = {
 
- 	.leds		= gpio_leds,
 
- 	.num_leds	= ARRAY_SIZE(gpio_leds),
 
- };
 
- static struct platform_device leds_gpio = {
 
- 	.name	= "leds-gpio",
 
- 	.id	= -1,
 
- 	.dev	= {
 
- 		.platform_data	= &gpio_led_info,
 
- 	},
 
- };
 
- static struct gpio_keys_button gpio_buttons[] = {
 
- 	{
 
- 		.code			= BTN_EXTRA,
 
- 		.gpio			= 26,
 
- 		.desc			= "user",
 
- 		.wakeup			= 1,
 
- 	},
 
- };
 
- static struct gpio_keys_platform_data gpio_key_info = {
 
- 	.buttons	= gpio_buttons,
 
- 	.nbuttons	= ARRAY_SIZE(gpio_buttons),
 
- };
 
- static struct platform_device keys_gpio = {
 
- 	.name	= "gpio-keys",
 
- 	.id	= -1,
 
 
  |