| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | /*
 | 
					
						
							|  |  |  | * linux/arch/arm/mach-omap1/board-sx1.c | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * Modified from board-generic.c | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * Support for the Siemens SX1 mobile phone. | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * Original version : Vladimir Ananiev (Vovan888-at-gmail com) | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * Maintainters : Vladimir Ananiev (aka Vovan888), Sergge | 
					
						
							|  |  |  | *		oslik.ru | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * 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. | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2011-07-26 10:53:52 +01:00
										 |  |  | #include <linux/gpio.h>
 | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/input.h>
 | 
					
						
							|  |  |  | #include <linux/platform_device.h>
 | 
					
						
							|  |  |  | #include <linux/notifier.h>
 | 
					
						
							|  |  |  | #include <linux/mtd/mtd.h>
 | 
					
						
							|  |  |  | #include <linux/mtd/partitions.h>
 | 
					
						
							| 
									
										
										
										
											2010-02-15 10:03:32 -08:00
										 |  |  | #include <linux/mtd/physmap.h>
 | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <linux/i2c.h>
 | 
					
						
							|  |  |  | #include <linux/errno.h>
 | 
					
						
							| 
									
										
										
										
											2011-07-31 16:17:29 -04:00
										 |  |  | #include <linux/export.h>
 | 
					
						
							| 
									
										
										
										
											2011-09-20 15:23:13 +03:00
										 |  |  | #include <linux/omapfb.h>
 | 
					
						
							| 
									
										
										
										
											2012-08-24 15:21:06 +02:00
										 |  |  | #include <linux/platform_data/keypad-omap.h>
 | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <asm/mach-types.h>
 | 
					
						
							|  |  |  | #include <asm/mach/arch.h>
 | 
					
						
							|  |  |  | #include <asm/mach/map.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-20 11:41:37 -07:00
										 |  |  | #include <mach/flash.h>
 | 
					
						
							| 
									
										
										
										
											2012-09-19 10:46:56 -07:00
										 |  |  | #include <mach/mux.h>
 | 
					
						
							| 
									
										
										
										
											2012-11-30 08:41:50 -08:00
										 |  |  | #include <linux/omap-dma.h>
 | 
					
						
							| 
									
										
										
										
											2012-10-02 13:39:28 -07:00
										 |  |  | #include <mach/tc.h>
 | 
					
						
							| 
									
										
										
										
											2012-09-20 11:41:22 -07:00
										 |  |  | #include <mach/board-sx1.h>
 | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-24 10:34:34 -08:00
										 |  |  | #include <mach/hardware.h>
 | 
					
						
							| 
									
										
										
										
											2012-06-04 00:56:15 -07:00
										 |  |  | #include <mach/usb.h>
 | 
					
						
							| 
									
										
										
										
											2012-02-24 10:34:34 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "common.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | /* Write to I2C device */ | 
					
						
							| 
									
										
										
										
											2007-11-30 01:52:53 -04:00
										 |  |  | int sx1_i2c_write_byte(u8 devaddr, u8 regoffset, u8 value) | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct i2c_adapter *adap; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 	struct i2c_msg msg[1]; | 
					
						
							|  |  |  | 	unsigned char data[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adap = i2c_get_adapter(0); | 
					
						
							|  |  |  | 	if (!adap) | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 	msg->addr = devaddr;	/* I2C address of chip */ | 
					
						
							|  |  |  | 	msg->flags = 0; | 
					
						
							|  |  |  | 	msg->len = 2; | 
					
						
							|  |  |  | 	msg->buf = data; | 
					
						
							|  |  |  | 	data[0] = regoffset;	/* register num */ | 
					
						
							|  |  |  | 	data[1] = value;		/* register data */ | 
					
						
							|  |  |  | 	err = i2c_transfer(adap, msg, 1); | 
					
						
							| 
									
										
										
										
											2008-02-24 20:03:41 +01:00
										 |  |  | 	i2c_put_adapter(adap); | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	if (err >= 0) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Read from I2C device */ | 
					
						
							| 
									
										
										
										
											2007-11-30 01:52:53 -04:00
										 |  |  | int sx1_i2c_read_byte(u8 devaddr, u8 regoffset, u8 *value) | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct i2c_adapter *adap; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 	struct i2c_msg msg[1]; | 
					
						
							|  |  |  | 	unsigned char data[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adap = i2c_get_adapter(0); | 
					
						
							|  |  |  | 	if (!adap) | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	msg->addr = devaddr;	/* I2C address of chip */ | 
					
						
							|  |  |  | 	msg->flags = 0; | 
					
						
							|  |  |  | 	msg->len = 1; | 
					
						
							|  |  |  | 	msg->buf = data; | 
					
						
							|  |  |  | 	data[0] = regoffset;	/* register num */ | 
					
						
							|  |  |  | 	err = i2c_transfer(adap, msg, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	msg->addr = devaddr;	/* I2C address */ | 
					
						
							|  |  |  | 	msg->flags = I2C_M_RD; | 
					
						
							|  |  |  | 	msg->len = 1; | 
					
						
							|  |  |  | 	msg->buf = data; | 
					
						
							|  |  |  | 	err = i2c_transfer(adap, msg, 1); | 
					
						
							|  |  |  | 	*value = data[0]; | 
					
						
							| 
									
										
										
										
											2008-02-24 20:03:41 +01:00
										 |  |  | 	i2c_put_adapter(adap); | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (err >= 0) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | /* set keyboard backlight intensity */ | 
					
						
							|  |  |  | int sx1_setkeylight(u8 keylight) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (keylight > SOFIA_MAX_LIGHT_VAL) | 
					
						
							|  |  |  | 		keylight = SOFIA_MAX_LIGHT_VAL; | 
					
						
							| 
									
										
										
										
											2007-11-30 01:52:53 -04:00
										 |  |  | 	return sx1_i2c_write_byte(SOFIA_I2C_ADDR, SOFIA_KEYLIGHT_REG, keylight); | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | } | 
					
						
							|  |  |  | /* get current keylight intensity */ | 
					
						
							|  |  |  | int sx1_getkeylight(u8 * keylight) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-11-30 01:52:53 -04:00
										 |  |  | 	return sx1_i2c_read_byte(SOFIA_I2C_ADDR, SOFIA_KEYLIGHT_REG, keylight); | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | } | 
					
						
							|  |  |  | /* set LCD backlight intensity */ | 
					
						
							|  |  |  | int sx1_setbacklight(u8 backlight) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (backlight > SOFIA_MAX_LIGHT_VAL) | 
					
						
							|  |  |  | 		backlight = SOFIA_MAX_LIGHT_VAL; | 
					
						
							| 
									
										
										
										
											2007-11-30 01:52:53 -04:00
										 |  |  | 	return sx1_i2c_write_byte(SOFIA_I2C_ADDR, SOFIA_BACKLIGHT_REG, | 
					
						
							|  |  |  | 				  backlight); | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | } | 
					
						
							|  |  |  | /* get current LCD backlight intensity */ | 
					
						
							|  |  |  | int sx1_getbacklight (u8 * backlight) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-11-30 01:52:53 -04:00
										 |  |  | 	return sx1_i2c_read_byte(SOFIA_I2C_ADDR, SOFIA_BACKLIGHT_REG, | 
					
						
							|  |  |  | 				 backlight); | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | } | 
					
						
							|  |  |  | /* set LCD backlight power on/off */ | 
					
						
							|  |  |  | int sx1_setmmipower(u8 onoff) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 	u8 dat = 0; | 
					
						
							| 
									
										
										
										
											2007-11-30 01:52:53 -04:00
										 |  |  | 	err = sx1_i2c_read_byte(SOFIA_I2C_ADDR, SOFIA_POWER1_REG, &dat); | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	if (onoff) | 
					
						
							|  |  |  | 		dat |= SOFIA_MMILIGHT_POWER; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		dat &= ~SOFIA_MMILIGHT_POWER; | 
					
						
							| 
									
										
										
										
											2007-11-30 01:52:53 -04:00
										 |  |  | 	return sx1_i2c_write_byte(SOFIA_I2C_ADDR, SOFIA_POWER1_REG, dat); | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2007-11-30 01:52:53 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | /* set USB power on/off */ | 
					
						
							|  |  |  | int sx1_setusbpower(u8 onoff) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 	u8 dat = 0; | 
					
						
							| 
									
										
										
										
											2007-11-30 01:52:53 -04:00
										 |  |  | 	err = sx1_i2c_read_byte(SOFIA_I2C_ADDR, SOFIA_POWER1_REG, &dat); | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	if (onoff) | 
					
						
							|  |  |  | 		dat |= SOFIA_USB_POWER; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		dat &= ~SOFIA_USB_POWER; | 
					
						
							| 
									
										
										
										
											2007-11-30 01:52:53 -04:00
										 |  |  | 	return sx1_i2c_write_byte(SOFIA_I2C_ADDR, SOFIA_POWER1_REG, dat); | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | EXPORT_SYMBOL(sx1_setkeylight); | 
					
						
							|  |  |  | EXPORT_SYMBOL(sx1_getkeylight); | 
					
						
							|  |  |  | EXPORT_SYMBOL(sx1_setbacklight); | 
					
						
							|  |  |  | EXPORT_SYMBOL(sx1_getbacklight); | 
					
						
							|  |  |  | EXPORT_SYMBOL(sx1_setmmipower); | 
					
						
							|  |  |  | EXPORT_SYMBOL(sx1_setusbpower); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*----------- Keypad -------------------------*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-20 21:09:22 +00:00
										 |  |  | static const unsigned int sx1_keymap[] = { | 
					
						
							|  |  |  | 	KEY(3, 5, GROUP_0 | 117), /* camera Qt::Key_F17 */ | 
					
						
							|  |  |  | 	KEY(4, 0, GROUP_0 | 114), /* voice memo Qt::Key_F14 */ | 
					
						
							|  |  |  | 	KEY(4, 1, GROUP_2 | 114), /* voice memo */ | 
					
						
							|  |  |  | 	KEY(4, 2, GROUP_3 | 114), /* voice memo */ | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	KEY(0, 0, GROUP_1 | KEY_F12),	/* red button Qt::Key_Hangup */ | 
					
						
							| 
									
										
										
										
											2010-12-20 21:09:22 +00:00
										 |  |  | 	KEY(3, 4, GROUP_1 | KEY_LEFT), | 
					
						
							|  |  |  | 	KEY(3, 2, GROUP_1 | KEY_DOWN), | 
					
						
							|  |  |  | 	KEY(3, 1, GROUP_1 | KEY_RIGHT), | 
					
						
							|  |  |  | 	KEY(3, 0, GROUP_1 | KEY_UP), | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	KEY(3, 3, GROUP_1 | KEY_POWER), /* joystick press or Qt::Key_Select */ | 
					
						
							| 
									
										
										
										
											2010-12-20 21:09:22 +00:00
										 |  |  | 	KEY(0, 5, GROUP_1 | KEY_1), | 
					
						
							|  |  |  | 	KEY(0, 4, GROUP_1 | KEY_2), | 
					
						
							|  |  |  | 	KEY(0, 3, GROUP_1 | KEY_3), | 
					
						
							|  |  |  | 	KEY(4, 3, GROUP_1 | KEY_4), | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	KEY(4, 4, GROUP_1 | KEY_5), | 
					
						
							| 
									
										
										
										
											2010-12-20 21:09:22 +00:00
										 |  |  | 	KEY(4, 5, GROUP_1 | KEY_KPASTERISK),/* "*" */ | 
					
						
							|  |  |  | 	KEY(1, 4, GROUP_1 | KEY_6), | 
					
						
							|  |  |  | 	KEY(1, 5, GROUP_1 | KEY_7), | 
					
						
							|  |  |  | 	KEY(1, 3, GROUP_1 | KEY_8), | 
					
						
							|  |  |  | 	KEY(2, 3, GROUP_1 | KEY_9), | 
					
						
							|  |  |  | 	KEY(2, 5, GROUP_1 | KEY_0), | 
					
						
							|  |  |  | 	KEY(2, 4, GROUP_1 | 113), /* # F13 Toggle input method Qt::Key_F13 */ | 
					
						
							|  |  |  | 	KEY(1, 0, GROUP_1 | KEY_F11),	/* green button Qt::Key_Call */ | 
					
						
							|  |  |  | 	KEY(2, 1, GROUP_1 | KEY_YEN),	/* left soft Qt::Key_Context1 */ | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	KEY(2, 2, GROUP_1 | KEY_F8),	/* right soft Qt::Key_Back */ | 
					
						
							| 
									
										
										
										
											2010-12-20 21:09:22 +00:00
										 |  |  | 	KEY(1, 2, GROUP_1 | KEY_LEFTSHIFT), /* shift */ | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	KEY(1, 1, GROUP_1 | KEY_BACKSPACE), /* C (clear) */ | 
					
						
							| 
									
										
										
										
											2010-12-20 21:09:22 +00:00
										 |  |  | 	KEY(2, 0, GROUP_1 | KEY_F7),	/* menu Qt::Key_Menu */ | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource sx1_kp_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start	= INT_KEYBOARD, | 
					
						
							|  |  |  | 		.end	= INT_KEYBOARD, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-20 21:09:22 +00:00
										 |  |  | static const struct matrix_keymap_data sx1_keymap_data = { | 
					
						
							|  |  |  | 	.keymap		= sx1_keymap, | 
					
						
							|  |  |  | 	.keymap_size	= ARRAY_SIZE(sx1_keymap), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | static struct omap_kp_platform_data sx1_kp_data = { | 
					
						
							|  |  |  | 	.rows		= 6, | 
					
						
							|  |  |  | 	.cols		= 6, | 
					
						
							| 
									
										
										
										
											2010-12-20 21:09:22 +00:00
										 |  |  | 	.keymap_data	= &sx1_keymap_data, | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	.delay	= 80, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device sx1_kp_device = { | 
					
						
							|  |  |  | 	.name		= "omap-keypad", | 
					
						
							|  |  |  | 	.id		= -1, | 
					
						
							|  |  |  | 	.dev		= { | 
					
						
							|  |  |  | 		.platform_data = &sx1_kp_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(sx1_kp_resources), | 
					
						
							|  |  |  | 	.resource	= sx1_kp_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*----------- MTD -------------------------*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct mtd_partition sx1_partitions[] = { | 
					
						
							|  |  |  | 	/* bootloader (U-Boot, etc) in first sector */ | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name		= "bootloader", | 
					
						
							|  |  |  | 		.offset		= 0x01800000, | 
					
						
							|  |  |  | 		.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, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	/* kernel */ | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name		= "kernel", | 
					
						
							|  |  |  | 		.offset		= MTDPART_OFS_APPEND, | 
					
						
							|  |  |  | 		.size		= SZ_2M - 2 * SZ_128K, | 
					
						
							|  |  |  | 		.mask_flags	= 0 | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	/* file system */ | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name		= "filesystem", | 
					
						
							|  |  |  | 		.offset		= MTDPART_OFS_APPEND, | 
					
						
							|  |  |  | 		.size		= MTDPART_SIZ_FULL, | 
					
						
							|  |  |  | 		.mask_flags	= 0 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-15 10:03:32 -08:00
										 |  |  | static struct physmap_flash_data sx1_flash_data = { | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	.width		= 2, | 
					
						
							| 
									
										
										
										
											2010-02-15 10:03:32 -08:00
										 |  |  | 	.set_vpp	= omap1_set_vpp, | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	.parts		= sx1_partitions, | 
					
						
							|  |  |  | 	.nr_parts	= ARRAY_SIZE(sx1_partitions), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_SX1_OLD_FLASH
 | 
					
						
							|  |  |  | /* MTD Intel StrataFlash - old flashes */ | 
					
						
							|  |  |  | static struct resource sx1_old_flash_resource[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start	= OMAP_CS0_PHYS,	/* Physical */ | 
					
						
							|  |  |  | 		.end	= OMAP_CS0_PHYS + SZ_16M - 1,, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		.start	= OMAP_CS1_PHYS, | 
					
						
							|  |  |  | 		.end	= OMAP_CS1_PHYS + SZ_8M - 1, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device sx1_flash_device = { | 
					
						
							| 
									
										
										
										
											2010-02-15 10:03:32 -08:00
										 |  |  | 	.name		= "physmap-flash", | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	.id		= 0, | 
					
						
							|  |  |  | 	.dev		= { | 
					
						
							|  |  |  | 		.platform_data	= &sx1_flash_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources	= 2, | 
					
						
							|  |  |  | 	.resource	= &sx1_old_flash_resource, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | /* MTD Intel 4000 flash - new flashes */ | 
					
						
							|  |  |  | static struct resource sx1_new_flash_resource = { | 
					
						
							|  |  |  | 	.start		= OMAP_CS0_PHYS, | 
					
						
							|  |  |  | 	.end		= OMAP_CS0_PHYS + SZ_32M - 1, | 
					
						
							|  |  |  | 	.flags		= IORESOURCE_MEM, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device sx1_flash_device = { | 
					
						
							| 
									
										
										
										
											2010-02-15 10:03:32 -08:00
										 |  |  | 	.name		= "physmap-flash", | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	.id		= 0, | 
					
						
							|  |  |  | 	.dev		= { | 
					
						
							|  |  |  | 		.platform_data	= &sx1_flash_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources	= 1, | 
					
						
							|  |  |  | 	.resource	= &sx1_new_flash_resource, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*----------- USB -------------------------*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct omap_usb_config sx1_usb_config __initdata = { | 
					
						
							|  |  |  | 	.otg		= 0, | 
					
						
							|  |  |  | 	.register_dev	= 1, | 
					
						
							|  |  |  | 	.register_host	= 0, | 
					
						
							|  |  |  | 	.hmc_mode	= 0, | 
					
						
							|  |  |  | 	.pins[0]	= 2, | 
					
						
							|  |  |  | 	.pins[1]	= 0, | 
					
						
							|  |  |  | 	.pins[2]	= 0, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*----------- LCD -------------------------*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct omap_lcd_config sx1_lcd_config __initdata = { | 
					
						
							|  |  |  | 	.ctrl_name	= "internal", | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*-----------------------------------------*/ | 
					
						
							|  |  |  | static struct platform_device *sx1_devices[] __initdata = { | 
					
						
							|  |  |  | 	&sx1_flash_device, | 
					
						
							|  |  |  | 	&sx1_kp_device, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2007-12-18 20:58:32 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | /*-----------------------------------------*/ | 
					
						
							| 
									
										
										
										
											2007-12-18 20:58:32 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | static void __init omap_sx1_init(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-10-22 14:47:42 -07:00
										 |  |  | 	/* mux pins for uarts */ | 
					
						
							|  |  |  | 	omap_cfg_reg(UART1_TX); | 
					
						
							|  |  |  | 	omap_cfg_reg(UART1_RTS); | 
					
						
							|  |  |  | 	omap_cfg_reg(UART2_TX); | 
					
						
							|  |  |  | 	omap_cfg_reg(UART2_RTS); | 
					
						
							|  |  |  | 	omap_cfg_reg(UART3_TX); | 
					
						
							|  |  |  | 	omap_cfg_reg(UART3_RX); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	platform_add_devices(sx1_devices, ARRAY_SIZE(sx1_devices)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	omap_serial_init(); | 
					
						
							| 
									
										
										
										
											2007-11-07 06:54:32 +02:00
										 |  |  | 	omap_register_i2c_bus(1, 100, NULL, 0); | 
					
						
							| 
									
										
										
										
											2010-07-05 16:31:30 +03:00
										 |  |  | 	omap1_usb_init(&sx1_usb_config); | 
					
						
							| 
									
										
										
										
											2007-11-30 01:52:53 -04:00
										 |  |  | 	sx1_mmc_init(); | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* turn on USB power */ | 
					
						
							| 
									
										
										
										
											2011-03-30 22:57:33 -03:00
										 |  |  | 	/* sx1_setusbpower(1); can't do it here because i2c is not ready */ | 
					
						
							| 
									
										
										
										
											2009-01-15 13:09:52 +02:00
										 |  |  | 	gpio_request(1, "A_IRDA_OFF"); | 
					
						
							|  |  |  | 	gpio_request(11, "A_SWITCH"); | 
					
						
							|  |  |  | 	gpio_request(15, "A_USB_ON"); | 
					
						
							| 
									
										
										
										
											2008-12-10 17:35:26 -08:00
										 |  |  | 	gpio_direction_output(1, 1);	/*A_IRDA_OFF = 1 */ | 
					
						
							|  |  |  | 	gpio_direction_output(11, 0);	/*A_SWITCH = 0 */ | 
					
						
							|  |  |  | 	gpio_direction_output(15, 0);	/*A_USB_ON = 0 */ | 
					
						
							| 
									
										
										
										
											2011-09-20 15:23:13 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	omapfb_set_lcd_config(&sx1_lcd_config); | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MACHINE_START(SX1, "OMAP310 based Siemens SX1") | 
					
						
							| 
									
										
										
										
											2011-07-05 22:38:15 -04:00
										 |  |  | 	.atag_offset	= 0x100, | 
					
						
							| 
									
										
										
										
											2011-10-05 15:14:02 -07:00
										 |  |  | 	.map_io		= omap15xx_map_io, | 
					
						
							|  |  |  | 	.init_early     = omap1_init_early, | 
					
						
							|  |  |  | 	.init_irq	= omap1_init_irq, | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | 	.init_machine	= omap_sx1_init, | 
					
						
							| 
									
										
										
										
											2012-04-26 13:49:29 +08:00
										 |  |  | 	.init_late	= omap1_init_late, | 
					
						
							| 
									
										
										
										
											2012-11-08 12:40:59 -07:00
										 |  |  | 	.init_time	= omap1_timer_init, | 
					
						
							| 
									
										
										
										
											2011-11-05 17:06:28 +00:00
										 |  |  | 	.restart	= omap1_restart, | 
					
						
							| 
									
										
										
										
											2006-12-06 17:14:08 -08:00
										 |  |  | MACHINE_END |