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
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.
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/types.h>
26 #include <linux/i2c.h>
27 #include <linux/errno.h>
29 #include <mach/hardware.h>
30 #include <asm/mach-types.h>
31 #include <asm/mach/arch.h>
32 #include <asm/mach/flash.h>
33 #include <asm/mach/map.h>
35 #include <mach/gpio.h>
38 #include <mach/irda.h>
41 #include <mach/board.h>
42 #include <mach/common.h>
43 #include <mach/keypad.h>
45 /* Write to I2C device */
46 int sx1_i2c_write_byte(u8 devaddr
, u8 regoffset
, u8 value
)
48 struct i2c_adapter
*adap
;
50 struct i2c_msg msg
[1];
51 unsigned char data
[2];
53 adap
= i2c_get_adapter(0);
56 msg
->addr
= devaddr
; /* I2C address of chip */
60 data
[0] = regoffset
; /* register num */
61 data
[1] = value
; /* register data */
62 err
= i2c_transfer(adap
, msg
, 1);
63 i2c_put_adapter(adap
);
69 /* Read from I2C device */
70 int sx1_i2c_read_byte(u8 devaddr
, u8 regoffset
, u8
*value
)
72 struct i2c_adapter
*adap
;
74 struct i2c_msg msg
[1];
75 unsigned char data
[2];
77 adap
= i2c_get_adapter(0);
81 msg
->addr
= devaddr
; /* I2C address of chip */
85 data
[0] = regoffset
; /* register num */
86 err
= i2c_transfer(adap
, msg
, 1);
88 msg
->addr
= devaddr
; /* I2C address */
89 msg
->flags
= I2C_M_RD
;
92 err
= i2c_transfer(adap
, msg
, 1);
94 i2c_put_adapter(adap
);
100 /* set keyboard backlight intensity */
101 int sx1_setkeylight(u8 keylight
)
103 if (keylight
> SOFIA_MAX_LIGHT_VAL
)
104 keylight
= SOFIA_MAX_LIGHT_VAL
;
105 return sx1_i2c_write_byte(SOFIA_I2C_ADDR
, SOFIA_KEYLIGHT_REG
, keylight
);
107 /* get current keylight intensity */
108 int sx1_getkeylight(u8
* keylight
)
110 return sx1_i2c_read_byte(SOFIA_I2C_ADDR
, SOFIA_KEYLIGHT_REG
, keylight
);
112 /* set LCD backlight intensity */
113 int sx1_setbacklight(u8 backlight
)
115 if (backlight
> SOFIA_MAX_LIGHT_VAL
)
116 backlight
= SOFIA_MAX_LIGHT_VAL
;
117 return sx1_i2c_write_byte(SOFIA_I2C_ADDR
, SOFIA_BACKLIGHT_REG
,
120 /* get current LCD backlight intensity */
121 int sx1_getbacklight (u8
* backlight
)
123 return sx1_i2c_read_byte(SOFIA_I2C_ADDR
, SOFIA_BACKLIGHT_REG
,
126 /* set LCD backlight power on/off */
127 int sx1_setmmipower(u8 onoff
)
131 err
= sx1_i2c_read_byte(SOFIA_I2C_ADDR
, SOFIA_POWER1_REG
, &dat
);
135 dat
|= SOFIA_MMILIGHT_POWER
;
137 dat
&= ~SOFIA_MMILIGHT_POWER
;
138 return sx1_i2c_write_byte(SOFIA_I2C_ADDR
, SOFIA_POWER1_REG
, dat
);
141 /* set USB power on/off */
142 int sx1_setusbpower(u8 onoff
)
146 err
= sx1_i2c_read_byte(SOFIA_I2C_ADDR
, SOFIA_POWER1_REG
, &dat
);
150 dat
|= SOFIA_USB_POWER
;
152 dat
&= ~SOFIA_USB_POWER
;
153 return sx1_i2c_write_byte(SOFIA_I2C_ADDR
, SOFIA_POWER1_REG
, dat
);
156 EXPORT_SYMBOL(sx1_setkeylight
);
157 EXPORT_SYMBOL(sx1_getkeylight
);
158 EXPORT_SYMBOL(sx1_setbacklight
);
159 EXPORT_SYMBOL(sx1_getbacklight
);
160 EXPORT_SYMBOL(sx1_setmmipower
);
161 EXPORT_SYMBOL(sx1_setusbpower
);
163 /*----------- Keypad -------------------------*/
165 static int sx1_keymap
[] = {
166 KEY(5, 3, GROUP_0
| 117), /* camera Qt::Key_F17 */
167 KEY(0, 4, GROUP_0
| 114), /* voice memo Qt::Key_F14 */
168 KEY(1, 4, GROUP_2
| 114), /* voice memo */
169 KEY(2, 4, GROUP_3
| 114), /* voice memo */
170 KEY(0, 0, GROUP_1
| KEY_F12
), /* red button Qt::Key_Hangup */
171 KEY(4, 3, GROUP_1
| KEY_LEFT
),
172 KEY(2, 3, GROUP_1
| KEY_DOWN
),
173 KEY(1, 3, GROUP_1
| KEY_RIGHT
),
174 KEY(0, 3, GROUP_1
| KEY_UP
),
175 KEY(3, 3, GROUP_1
| KEY_POWER
), /* joystick press or Qt::Key_Select */
176 KEY(5, 0, GROUP_1
| KEY_1
),
177 KEY(4, 0, GROUP_1
| KEY_2
),
178 KEY(3, 0, GROUP_1
| KEY_3
),
179 KEY(3, 4, GROUP_1
| KEY_4
),
180 KEY(4, 4, GROUP_1
| KEY_5
),
181 KEY(5, 4, GROUP_1
| KEY_KPASTERISK
),/* "*" */
182 KEY(4, 1, GROUP_1
| KEY_6
),
183 KEY(5, 1, GROUP_1
| KEY_7
),
184 KEY(3, 1, GROUP_1
| KEY_8
),
185 KEY(3, 2, GROUP_1
| KEY_9
),
186 KEY(5, 2, GROUP_1
| KEY_0
),
187 KEY(4, 2, GROUP_1
| 113), /* # F13 Toggle input method Qt::Key_F13 */
188 KEY(0, 1, GROUP_1
| KEY_F11
), /* green button Qt::Key_Call */
189 KEY(1, 2, GROUP_1
| KEY_YEN
), /* left soft Qt::Key_Context1 */
190 KEY(2, 2, GROUP_1
| KEY_F8
), /* right soft Qt::Key_Back */
191 KEY(2, 1, GROUP_1
| KEY_LEFTSHIFT
), /* shift */
192 KEY(1, 1, GROUP_1
| KEY_BACKSPACE
), /* C (clear) */
193 KEY(0, 2, GROUP_1
| KEY_F7
), /* menu Qt::Key_Menu */
197 static struct resource sx1_kp_resources
[] = {
199 .start
= INT_KEYBOARD
,
201 .flags
= IORESOURCE_IRQ
,
205 static struct omap_kp_platform_data sx1_kp_data
= {
208 .keymap
= sx1_keymap
,
209 .keymapsize
= ARRAY_SIZE(sx1_keymap
),
213 static struct platform_device sx1_kp_device
= {
214 .name
= "omap-keypad",
217 .platform_data
= &sx1_kp_data
,
219 .num_resources
= ARRAY_SIZE(sx1_kp_resources
),
220 .resource
= sx1_kp_resources
,
223 /*----------- IRDA -------------------------*/
225 static struct omap_irda_config sx1_irda_data
= {
226 .transceiver_cap
= IR_SIRMODE
,
227 .rx_channel
= OMAP_DMA_UART3_RX
,
228 .tx_channel
= OMAP_DMA_UART3_TX
,
229 .dest_start
= UART3_THR
,
230 .src_start
= UART3_RHR
,
235 static struct resource sx1_irda_resources
[] = {
239 .flags
= IORESOURCE_IRQ
,
243 static u64 irda_dmamask
= 0xffffffff;
245 static struct platform_device sx1_irda_device
= {
249 .platform_data
= &sx1_irda_data
,
250 .dma_mask
= &irda_dmamask
,
252 .num_resources
= ARRAY_SIZE(sx1_irda_resources
),
253 .resource
= sx1_irda_resources
,
256 /*----------- MTD -------------------------*/
258 static struct mtd_partition sx1_partitions
[] = {
259 /* bootloader (U-Boot, etc) in first sector */
261 .name
= "bootloader",
262 .offset
= 0x01800000,
264 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
266 /* bootloader params in the next sector */
269 .offset
= MTDPART_OFS_APPEND
,
276 .offset
= MTDPART_OFS_APPEND
,
277 .size
= SZ_2M
- 2 * SZ_128K
,
282 .name
= "filesystem",
283 .offset
= MTDPART_OFS_APPEND
,
284 .size
= MTDPART_SIZ_FULL
,
289 static struct flash_platform_data sx1_flash_data
= {
290 .map_name
= "cfi_probe",
292 .parts
= sx1_partitions
,
293 .nr_parts
= ARRAY_SIZE(sx1_partitions
),
296 #ifdef CONFIG_SX1_OLD_FLASH
297 /* MTD Intel StrataFlash - old flashes */
298 static struct resource sx1_old_flash_resource
[] = {
300 .start
= OMAP_CS0_PHYS
, /* Physical */
301 .end
= OMAP_CS0_PHYS
+ SZ_16M
- 1,,
302 .flags
= IORESOURCE_MEM
,
305 .start
= OMAP_CS1_PHYS
,
306 .end
= OMAP_CS1_PHYS
+ SZ_8M
- 1,
307 .flags
= IORESOURCE_MEM
,
311 static struct platform_device sx1_flash_device
= {
315 .platform_data
= &sx1_flash_data
,
318 .resource
= &sx1_old_flash_resource
,
321 /* MTD Intel 4000 flash - new flashes */
322 static struct resource sx1_new_flash_resource
= {
323 .start
= OMAP_CS0_PHYS
,
324 .end
= OMAP_CS0_PHYS
+ SZ_32M
- 1,
325 .flags
= IORESOURCE_MEM
,
328 static struct platform_device sx1_flash_device
= {
332 .platform_data
= &sx1_flash_data
,
335 .resource
= &sx1_new_flash_resource
,
339 /*----------- USB -------------------------*/
341 static struct omap_usb_config sx1_usb_config __initdata
= {
351 /*----------- LCD -------------------------*/
353 static struct platform_device sx1_lcd_device
= {
358 static struct omap_lcd_config sx1_lcd_config __initdata
= {
359 .ctrl_name
= "internal",
362 /*-----------------------------------------*/
363 static struct platform_device
*sx1_devices
[] __initdata
= {
369 /*-----------------------------------------*/
371 static struct omap_uart_config sx1_uart_config __initdata
= {
372 .enabled_uarts
= ((1 << 0) | (1 << 1) | (1 << 2)),
375 static struct omap_board_config_kernel sx1_config
[] __initdata
= {
376 { OMAP_TAG_USB
, &sx1_usb_config
},
377 { OMAP_TAG_LCD
, &sx1_lcd_config
},
378 { OMAP_TAG_UART
, &sx1_uart_config
},
381 /*-----------------------------------------*/
383 static void __init
omap_sx1_init(void)
385 platform_add_devices(sx1_devices
, ARRAY_SIZE(sx1_devices
));
387 omap_board_config
= sx1_config
;
388 omap_board_config_size
= ARRAY_SIZE(sx1_config
);
390 omap_register_i2c_bus(1, 100, NULL
, 0);
393 /* turn on USB power */
394 /* sx1_setusbpower(1); cant do it here because i2c is not ready */
395 gpio_request(1, "A_IRDA_OFF");
396 gpio_request(11, "A_SWITCH");
397 gpio_request(15, "A_USB_ON");
398 gpio_direction_output(1, 1); /*A_IRDA_OFF = 1 */
399 gpio_direction_output(11, 0); /*A_SWITCH = 0 */
400 gpio_direction_output(15, 0); /*A_USB_ON = 0 */
402 /*----------------------------------------*/
403 static void __init
omap_sx1_init_irq(void)
405 omap1_init_common_hw();
409 /*----------------------------------------*/
411 static void __init
omap_sx1_map_io(void)
413 omap1_map_common_io();
416 MACHINE_START(SX1
, "OMAP310 based Siemens SX1")
417 .phys_io
= 0xfff00000,
418 .io_pg_offst
= ((0xfef00000) >> 18) & 0xfffc,
419 .boot_params
= 0x10000100,
420 .map_io
= omap_sx1_map_io
,
421 .init_irq
= omap_sx1_init_irq
,
422 .init_machine
= omap_sx1_init
,
423 .timer
= &omap_timer
,