Merge tag 'gpio-for-v3.11-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6.git] / arch / arm / mach-omap1 / board-sx1.c
blob0a8d3349149c9d99b6973b64a3a732a8a84633a1
1 /*
2 * linux/arch/arm/mach-omap1/board-sx1.c
4 * Modified from board-generic.c
6 * Support for the Siemens SX1 mobile phone.
8 * Original version : Vladimir Ananiev (Vovan888-at-gmail com)
10 * Maintainters : Vladimir Ananiev (aka Vovan888), Sergge
11 * oslik.ru
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
17 #include <linux/gpio.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/input.h>
21 #include <linux/platform_device.h>
22 #include <linux/notifier.h>
23 #include <linux/mtd/mtd.h>
24 #include <linux/mtd/partitions.h>
25 #include <linux/mtd/physmap.h>
26 #include <linux/types.h>
27 #include <linux/i2c.h>
28 #include <linux/errno.h>
29 #include <linux/export.h>
30 #include <linux/omapfb.h>
31 #include <linux/platform_data/keypad-omap.h>
33 #include <asm/mach-types.h>
34 #include <asm/mach/arch.h>
35 #include <asm/mach/map.h>
37 #include <mach/flash.h>
38 #include <mach/mux.h>
39 #include <linux/omap-dma.h>
40 #include <mach/tc.h>
41 #include <mach/board-sx1.h>
43 #include <mach/hardware.h>
44 #include <mach/usb.h>
46 #include "common.h"
48 /* Write to I2C device */
49 int sx1_i2c_write_byte(u8 devaddr, u8 regoffset, u8 value)
51 struct i2c_adapter *adap;
52 int err;
53 struct i2c_msg msg[1];
54 unsigned char data[2];
56 adap = i2c_get_adapter(0);
57 if (!adap)
58 return -ENODEV;
59 msg->addr = devaddr; /* I2C address of chip */
60 msg->flags = 0;
61 msg->len = 2;
62 msg->buf = data;
63 data[0] = regoffset; /* register num */
64 data[1] = value; /* register data */
65 err = i2c_transfer(adap, msg, 1);
66 i2c_put_adapter(adap);
67 if (err >= 0)
68 return 0;
69 return err;
72 /* Read from I2C device */
73 int sx1_i2c_read_byte(u8 devaddr, u8 regoffset, u8 *value)
75 struct i2c_adapter *adap;
76 int err;
77 struct i2c_msg msg[1];
78 unsigned char data[2];
80 adap = i2c_get_adapter(0);
81 if (!adap)
82 return -ENODEV;
84 msg->addr = devaddr; /* I2C address of chip */
85 msg->flags = 0;
86 msg->len = 1;
87 msg->buf = data;
88 data[0] = regoffset; /* register num */
89 err = i2c_transfer(adap, msg, 1);
91 msg->addr = devaddr; /* I2C address */
92 msg->flags = I2C_M_RD;
93 msg->len = 1;
94 msg->buf = data;
95 err = i2c_transfer(adap, msg, 1);
96 *value = data[0];
97 i2c_put_adapter(adap);
99 if (err >= 0)
100 return 0;
101 return err;
103 /* set keyboard backlight intensity */
104 int sx1_setkeylight(u8 keylight)
106 if (keylight > SOFIA_MAX_LIGHT_VAL)
107 keylight = SOFIA_MAX_LIGHT_VAL;
108 return sx1_i2c_write_byte(SOFIA_I2C_ADDR, SOFIA_KEYLIGHT_REG, keylight);
110 /* get current keylight intensity */
111 int sx1_getkeylight(u8 * keylight)
113 return sx1_i2c_read_byte(SOFIA_I2C_ADDR, SOFIA_KEYLIGHT_REG, keylight);
115 /* set LCD backlight intensity */
116 int sx1_setbacklight(u8 backlight)
118 if (backlight > SOFIA_MAX_LIGHT_VAL)
119 backlight = SOFIA_MAX_LIGHT_VAL;
120 return sx1_i2c_write_byte(SOFIA_I2C_ADDR, SOFIA_BACKLIGHT_REG,
121 backlight);
123 /* get current LCD backlight intensity */
124 int sx1_getbacklight (u8 * backlight)
126 return sx1_i2c_read_byte(SOFIA_I2C_ADDR, SOFIA_BACKLIGHT_REG,
127 backlight);
129 /* set LCD backlight power on/off */
130 int sx1_setmmipower(u8 onoff)
132 int err;
133 u8 dat = 0;
134 err = sx1_i2c_read_byte(SOFIA_I2C_ADDR, SOFIA_POWER1_REG, &dat);
135 if (err < 0)
136 return err;
137 if (onoff)
138 dat |= SOFIA_MMILIGHT_POWER;
139 else
140 dat &= ~SOFIA_MMILIGHT_POWER;
141 return sx1_i2c_write_byte(SOFIA_I2C_ADDR, SOFIA_POWER1_REG, dat);
144 /* set USB power on/off */
145 int sx1_setusbpower(u8 onoff)
147 int err;
148 u8 dat = 0;
149 err = sx1_i2c_read_byte(SOFIA_I2C_ADDR, SOFIA_POWER1_REG, &dat);
150 if (err < 0)
151 return err;
152 if (onoff)
153 dat |= SOFIA_USB_POWER;
154 else
155 dat &= ~SOFIA_USB_POWER;
156 return sx1_i2c_write_byte(SOFIA_I2C_ADDR, SOFIA_POWER1_REG, dat);
159 EXPORT_SYMBOL(sx1_setkeylight);
160 EXPORT_SYMBOL(sx1_getkeylight);
161 EXPORT_SYMBOL(sx1_setbacklight);
162 EXPORT_SYMBOL(sx1_getbacklight);
163 EXPORT_SYMBOL(sx1_setmmipower);
164 EXPORT_SYMBOL(sx1_setusbpower);
166 /*----------- Keypad -------------------------*/
168 static const unsigned int sx1_keymap[] = {
169 KEY(3, 5, GROUP_0 | 117), /* camera Qt::Key_F17 */
170 KEY(4, 0, GROUP_0 | 114), /* voice memo Qt::Key_F14 */
171 KEY(4, 1, GROUP_2 | 114), /* voice memo */
172 KEY(4, 2, GROUP_3 | 114), /* voice memo */
173 KEY(0, 0, GROUP_1 | KEY_F12), /* red button Qt::Key_Hangup */
174 KEY(3, 4, GROUP_1 | KEY_LEFT),
175 KEY(3, 2, GROUP_1 | KEY_DOWN),
176 KEY(3, 1, GROUP_1 | KEY_RIGHT),
177 KEY(3, 0, GROUP_1 | KEY_UP),
178 KEY(3, 3, GROUP_1 | KEY_POWER), /* joystick press or Qt::Key_Select */
179 KEY(0, 5, GROUP_1 | KEY_1),
180 KEY(0, 4, GROUP_1 | KEY_2),
181 KEY(0, 3, GROUP_1 | KEY_3),
182 KEY(4, 3, GROUP_1 | KEY_4),
183 KEY(4, 4, GROUP_1 | KEY_5),
184 KEY(4, 5, GROUP_1 | KEY_KPASTERISK),/* "*" */
185 KEY(1, 4, GROUP_1 | KEY_6),
186 KEY(1, 5, GROUP_1 | KEY_7),
187 KEY(1, 3, GROUP_1 | KEY_8),
188 KEY(2, 3, GROUP_1 | KEY_9),
189 KEY(2, 5, GROUP_1 | KEY_0),
190 KEY(2, 4, GROUP_1 | 113), /* # F13 Toggle input method Qt::Key_F13 */
191 KEY(1, 0, GROUP_1 | KEY_F11), /* green button Qt::Key_Call */
192 KEY(2, 1, GROUP_1 | KEY_YEN), /* left soft Qt::Key_Context1 */
193 KEY(2, 2, GROUP_1 | KEY_F8), /* right soft Qt::Key_Back */
194 KEY(1, 2, GROUP_1 | KEY_LEFTSHIFT), /* shift */
195 KEY(1, 1, GROUP_1 | KEY_BACKSPACE), /* C (clear) */
196 KEY(2, 0, GROUP_1 | KEY_F7), /* menu Qt::Key_Menu */
199 static struct resource sx1_kp_resources[] = {
200 [0] = {
201 .start = INT_KEYBOARD,
202 .end = INT_KEYBOARD,
203 .flags = IORESOURCE_IRQ,
207 static const struct matrix_keymap_data sx1_keymap_data = {
208 .keymap = sx1_keymap,
209 .keymap_size = ARRAY_SIZE(sx1_keymap),
212 static struct omap_kp_platform_data sx1_kp_data = {
213 .rows = 6,
214 .cols = 6,
215 .keymap_data = &sx1_keymap_data,
216 .delay = 80,
219 static struct platform_device sx1_kp_device = {
220 .name = "omap-keypad",
221 .id = -1,
222 .dev = {
223 .platform_data = &sx1_kp_data,
225 .num_resources = ARRAY_SIZE(sx1_kp_resources),
226 .resource = sx1_kp_resources,
229 /*----------- MTD -------------------------*/
231 static struct mtd_partition sx1_partitions[] = {
232 /* bootloader (U-Boot, etc) in first sector */
234 .name = "bootloader",
235 .offset = 0x01800000,
236 .size = SZ_128K,
237 .mask_flags = MTD_WRITEABLE, /* force read-only */
239 /* bootloader params in the next sector */
241 .name = "params",
242 .offset = MTDPART_OFS_APPEND,
243 .size = SZ_128K,
244 .mask_flags = 0,
246 /* kernel */
248 .name = "kernel",
249 .offset = MTDPART_OFS_APPEND,
250 .size = SZ_2M - 2 * SZ_128K,
251 .mask_flags = 0
253 /* file system */
255 .name = "filesystem",
256 .offset = MTDPART_OFS_APPEND,
257 .size = MTDPART_SIZ_FULL,
258 .mask_flags = 0
262 static struct physmap_flash_data sx1_flash_data = {
263 .width = 2,
264 .set_vpp = omap1_set_vpp,
265 .parts = sx1_partitions,
266 .nr_parts = ARRAY_SIZE(sx1_partitions),
269 #ifdef CONFIG_SX1_OLD_FLASH
270 /* MTD Intel StrataFlash - old flashes */
271 static struct resource sx1_old_flash_resource[] = {
272 [0] = {
273 .start = OMAP_CS0_PHYS, /* Physical */
274 .end = OMAP_CS0_PHYS + SZ_16M - 1,,
275 .flags = IORESOURCE_MEM,
277 [1] = {
278 .start = OMAP_CS1_PHYS,
279 .end = OMAP_CS1_PHYS + SZ_8M - 1,
280 .flags = IORESOURCE_MEM,
284 static struct platform_device sx1_flash_device = {
285 .name = "physmap-flash",
286 .id = 0,
287 .dev = {
288 .platform_data = &sx1_flash_data,
290 .num_resources = 2,
291 .resource = &sx1_old_flash_resource,
293 #else
294 /* MTD Intel 4000 flash - new flashes */
295 static struct resource sx1_new_flash_resource = {
296 .start = OMAP_CS0_PHYS,
297 .end = OMAP_CS0_PHYS + SZ_32M - 1,
298 .flags = IORESOURCE_MEM,
301 static struct platform_device sx1_flash_device = {
302 .name = "physmap-flash",
303 .id = 0,
304 .dev = {
305 .platform_data = &sx1_flash_data,
307 .num_resources = 1,
308 .resource = &sx1_new_flash_resource,
310 #endif
312 /*----------- USB -------------------------*/
314 static struct omap_usb_config sx1_usb_config __initdata = {
315 .otg = 0,
316 .register_dev = 1,
317 .register_host = 0,
318 .hmc_mode = 0,
319 .pins[0] = 2,
320 .pins[1] = 0,
321 .pins[2] = 0,
324 /*----------- LCD -------------------------*/
326 static struct omap_lcd_config sx1_lcd_config __initdata = {
327 .ctrl_name = "internal",
330 /*-----------------------------------------*/
331 static struct platform_device *sx1_devices[] __initdata = {
332 &sx1_flash_device,
333 &sx1_kp_device,
336 /*-----------------------------------------*/
338 static void __init omap_sx1_init(void)
340 /* mux pins for uarts */
341 omap_cfg_reg(UART1_TX);
342 omap_cfg_reg(UART1_RTS);
343 omap_cfg_reg(UART2_TX);
344 omap_cfg_reg(UART2_RTS);
345 omap_cfg_reg(UART3_TX);
346 omap_cfg_reg(UART3_RX);
348 platform_add_devices(sx1_devices, ARRAY_SIZE(sx1_devices));
350 omap_serial_init();
351 omap_register_i2c_bus(1, 100, NULL, 0);
352 omap1_usb_init(&sx1_usb_config);
353 sx1_mmc_init();
355 /* turn on USB power */
356 /* sx1_setusbpower(1); can't do it here because i2c is not ready */
357 gpio_request(1, "A_IRDA_OFF");
358 gpio_request(11, "A_SWITCH");
359 gpio_request(15, "A_USB_ON");
360 gpio_direction_output(1, 1); /*A_IRDA_OFF = 1 */
361 gpio_direction_output(11, 0); /*A_SWITCH = 0 */
362 gpio_direction_output(15, 0); /*A_USB_ON = 0 */
364 omapfb_set_lcd_config(&sx1_lcd_config);
367 MACHINE_START(SX1, "OMAP310 based Siemens SX1")
368 .atag_offset = 0x100,
369 .map_io = omap15xx_map_io,
370 .init_early = omap1_init_early,
371 .init_irq = omap1_init_irq,
372 .init_machine = omap_sx1_init,
373 .init_late = omap1_init_late,
374 .init_time = omap1_timer_init,
375 .restart = omap1_restart,
376 MACHINE_END