| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 | /* * linux/arch/arm/mach-omap1/board-osk.c * * Board specific init for OMAP5912 OSK * * Written by Dirk Behme <dirk.behme@de.bosch.com> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * You should have received a copy of the  GNU General Public License along * with this program; if not, write  to the Free Software Foundation, Inc., * 675 Mass Ave, Cambridge, MA 02139, USA. */#include <linux/gpio.h>#include <linux/kernel.h>#include <linux/init.h>#include <linux/platform_device.h>#include <linux/interrupt.h>#include <linux/irq.h>#include <linux/i2c.h>#include <linux/leds.h>#include <linux/smc91x.h>#include <linux/omapfb.h>#include <linux/mtd/mtd.h>#include <linux/mtd/partitions.h>#include <linux/mtd/physmap.h>#include <linux/i2c/tps65010.h>#include <linux/platform_data/gpio-omap.h>#include <linux/platform_data/omap1_bl.h>#include <asm/mach-types.h>#include <asm/mach/arch.h>#include <asm/mach/map.h>#include <mach/flash.h>#include <mach/mux.h>#include <mach/tc.h>#include <mach/hardware.h>#include <mach/usb.h>#include "common.h"/* At OMAP5912 OSK the Ethernet is directly connected to CS1 */#define OMAP_OSK_ETHR_START		0x04800300/* TPS65010 has four GPIOs.  nPG and LED2 can be treated like GPIOs with * alternate pin configurations for hardware-controlled blinking. */#define OSK_TPS_GPIO_BASE		(OMAP_MAX_GPIO_LINES + 16 /* MPUIO */)#	define OSK_TPS_GPIO_USB_PWR_EN	(OSK_TPS_GPIO_BASE + 0)#	define OSK_TPS_GPIO_LED_D3	(OSK_TPS_GPIO_BASE + 1)#	define OSK_TPS_GPIO_LAN_RESET	(OSK_TPS_GPIO_BASE + 2)#	define OSK_TPS_GPIO_DSP_PWR_EN	(OSK_TPS_GPIO_BASE + 3)#	define OSK_TPS_GPIO_LED_D9	(OSK_TPS_GPIO_BASE + 4)#	define OSK_TPS_GPIO_LED_D2	(OSK_TPS_GPIO_BASE + 5)static struct mtd_partition osk_partitions[] = {	/* bootloader (U-Boot, etc) in first sector */	{	      .name		= "bootloader",	      .offset		= 0,	      .size		= SZ_128K,	      .mask_flags	= MTD_WRITEABLE, /* force read-only */	},	/* bootloader params in the next sector */	{	      .name		= "params",	      .offset		= MTDPART_OFS_APPEND,	      .size		= SZ_128K,	      .mask_flags	= 0,	}, {	      .name		= "kernel",	      .offset		= MTDPART_OFS_APPEND,	      .size		= SZ_2M,	      .mask_flags	= 0	}, {	      .name		= "filesystem",	      .offset		= MTDPART_OFS_APPEND,	      .size		= MTDPART_SIZ_FULL,	      .mask_flags	= 0	}};static struct physmap_flash_data osk_flash_data = {	.width		= 2,	.set_vpp	= omap1_set_vpp,	.parts		= osk_partitions,	.nr_parts	= ARRAY_SIZE(osk_partitions),};static struct resource osk_flash_resource = {	/* this is on CS3, wherever it's mapped */	.flags		= IORESOURCE_MEM,};static struct platform_device osk5912_flash_device = {	.name		= "physmap-flash",	.id		= 0,	.dev		= {		.platform_data	= &osk_flash_data,	},	.num_resources	= 1,	.resource	= &osk_flash_resource,};static struct smc91x_platdata osk5912_smc91x_info = {	.flags	= SMC91X_USE_16BIT | SMC91X_NOWAIT,	.leda	= RPC_LED_100_10,	.ledb	= RPC_LED_TX_RX,};static struct resource osk5912_smc91x_resources[] = {	[0] = {		.start	= OMAP_OSK_ETHR_START,		/* Physical */		.end	= OMAP_OSK_ETHR_START + 0xf,		.flags	= IORESOURCE_MEM,	},	[1] = {		.flags	= IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,	},};static struct platform_device osk5912_smc91x_device = {	.name		= "smc91x",	.id		= -1,	.dev	= {		.platform_data	= &osk5912_smc91x_info,	},	.num_resources	= ARRAY_SIZE(osk5912_smc91x_resources),	.resource	= osk5912_smc91x_resources,};static struct resource osk5912_cf_resources[] = {	[0] = {		.flags	= IORESOURCE_IRQ,	},};static struct platform_device osk5912_cf_device = {	.name		= "omap_cf",	.id		= -1,	.dev = {		.platform_data	= (void *) 2 /* CS2 */,	},	.num_resources	= ARRAY_SIZE(osk5912_cf_resources),	.resource	= osk5912_cf_resources,};static struct platform_device *osk5912_devices[] __initdata = {	&osk5912_flash_device,	&osk5912_smc91x_device,	&osk5912_cf_device,};static struct gpio_led tps_leds[] = {	/* NOTE:  D9 and D2 have hardware blink support.	 * Also, D9 requires non-battery power.	 */	{ .gpio = OSK_TPS_GPIO_LED_D9, .name = "d9",			.default_trigger = "ide-disk", },	{ .gpio = OSK_TPS_GPIO_LED_D2, .name = "d2", },	{ .gpio = OSK_TPS_GPIO_LED_D3, .name = "d3", .active_low = 1,			.default_trigger = "heartbeat", },};static struct gpio_led_platform_data tps_leds_data = {	.num_leds	= 3,	.leds		= tps_leds,};static struct platform_device osk5912_tps_leds = {	.name			= "leds-gpio",	.id			= 0,	.dev.platform_data	= &tps_leds_data,};static int osk_tps_setup(struct i2c_client *client, void *context){	/* Set GPIO 1 HIGH to disable VBUS power supply;	 * OHCI driver powers it up/down as needed.	 */	gpio_request(OSK_TPS_GPIO_USB_PWR_EN, "n_vbus_en");	gpio_direction_output(OSK_TPS_GPIO_USB_PWR_EN, 1);	/* Set GPIO 2 high so LED D3 is off by default */	tps65010_set_gpio_out_value(GPIO2, HIGH);	/* Set GPIO 3 low to take ethernet out of reset */	gpio_request(OSK_TPS_GPIO_LAN_RESET, "smc_reset");	gpio_direction_output(OSK_TPS_GPIO_LAN_RESET, 0);	/* GPIO4 is VDD_DSP */	gpio_request(OSK_TPS_GPIO_DSP_PWR_EN, "dsp_power");	gpio_direction_output(OSK_TPS_GPIO_DSP_PWR_EN, 1);	/* REVISIT if DSP support isn't configured, power it off ... */	/* Let LED1 (D9) blink; leds-gpio may override it */	tps65010_set_led(LED1, BLINK);	/* Set LED2 off by default */	tps65010_set_led(LED2, OFF);	/* Enable LOW_PWR handshake */	tps65010_set_low_pwr(ON);	/* Switch VLDO2 to 3.0V for AIC23 */	tps65010_config_vregs1(TPS_LDO2_ENABLE | TPS_VLDO2_3_0V			| TPS_LDO1_ENABLE);	/* register these three LEDs */	osk5912_tps_leds.dev.parent = &client->dev;	platform_device_register(&osk5912_tps_leds);	return 0;}static struct tps65010_board tps_board = {	.base		= OSK_TPS_GPIO_BASE,	.outmask	= 0x0f,	.setup		= osk_tps_setup,};static struct i2c_board_info __initdata osk_i2c_board_info[] = {	{		I2C_BOARD_INFO("tps65010", 0x48),		.platform_data	= &tps_board,	},	{		I2C_BOARD_INFO("tlv320aic23", 0x1B),	},	/* TODO when driver support is ready:	 *  - optionally on Mistral, ov9640 camera sensor at 0x30	 */};static void __init osk_init_smc91x(void){	u32 l;	if ((gpio_request(0, "smc_irq")) < 0) {		printk("Error requesting gpio 0 for smc91x irq\n");		return;	}	/* Check EMIFS wait states to fix errors with SMC_GET_PKT_HDR */	l = omap_readl(EMIFS_CCS(1));	l |= 0x3;	omap_writel(l, EMIFS_CCS(1));}static void __init osk_init_cf(void){	omap_cfg_reg(M7_1610_GPIO62);	if ((gpio_request(62, "cf_irq")) < 0) {		printk("Error requesting gpio 62 for CF irq\n");		return;	}	/* the CF I/O IRQ is really active-low */	irq_set_irq_type(gpio_to_irq(62), IRQ_TYPE_EDGE_FALLING);}static struct omap_usb_config osk_usb_config __initdata = {	/* has usb host connector (A) ... for development it can also	 * be used, with a NONSTANDARD gender-bending cable/dongle, as	 * a peripheral.	 */#ifdef	CONFIG_USB_GADGET_OMAP	.register_dev	= 1,	.hmc_mode	= 0,#else	.register_host	= 1,	.hmc_mode	= 16,	.rwc		= 1,#endif	.pins[0]	= 2,};#ifdef	CONFIG_OMAP_OSK_MISTRALstatic struct omap_lcd_config osk_lcd_config __initdata = {	.ctrl_name	= "internal",};#endif#ifdef	CONFIG_OMAP_OSK_MISTRAL#include <linux/input.h>#include <linux/i2c/at24.h>#include <linux/spi/spi.h>#include <linux/spi/ads7846.h>#include <linux/platform_data/keypad-omap.h>static struct at24_platform_data at24c04 = {	.byte_len	= SZ_4K / 8,	.page_size	= 16,};static struct i2c_board_info __initdata mistral_i2c_board_info[] = {	{		/* NOTE:  powered from LCD supply */		I2C_BOARD_INFO("24c04", 0x50),		.platform_data	= &at24c04,	},	/* TODO when driver support is ready:	 *  - optionally ov9640 camera sensor at 0x30	 */};static const unsigned int osk_keymap[] = {	/* KEY(col, row, code) */	KEY(0, 0, KEY_F1),		/* SW4 */
 |