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 <asm/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 <asm/arch/gpio.h>
36 #include <asm/arch/mux.h>
37 #include <asm/arch/irda.h>
38 #include <asm/arch/usb.h>
39 #include <asm/arch/tc.h>
40 #include <asm/arch/board.h>
41 #include <asm/arch/common.h>
42 #include <asm/arch/mcbsp.h>
43 #include <asm/arch/omap-alsa.h>
44 #include <asm/arch/keypad.h>
46 /* Write to I2C device */
47 int sx1_i2c_write_byte(u8 devaddr
, u8 regoffset
, u8 value
)
49 struct i2c_adapter
*adap
;
51 struct i2c_msg msg
[1];
52 unsigned char data
[2];
54 adap
= i2c_get_adapter(0);
57 msg
->addr
= devaddr
; /* I2C address of chip */
61 data
[0] = regoffset
; /* register num */
62 data
[1] = value
; /* register data */
63 err
= i2c_transfer(adap
, msg
, 1);
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);
99 /* set keyboard backlight intensity */
100 int sx1_setkeylight(u8 keylight
)
102 if (keylight
> SOFIA_MAX_LIGHT_VAL
)
103 keylight
= SOFIA_MAX_LIGHT_VAL
;
104 return sx1_i2c_write_byte(SOFIA_I2C_ADDR
, SOFIA_KEYLIGHT_REG
, keylight
);
106 /* get current keylight intensity */
107 int sx1_getkeylight(u8
* keylight
)
109 return sx1_i2c_read_byte(SOFIA_I2C_ADDR
, SOFIA_KEYLIGHT_REG
, keylight
);
111 /* set LCD backlight intensity */
112 int sx1_setbacklight(u8 backlight
)
114 if (backlight
> SOFIA_MAX_LIGHT_VAL
)
115 backlight
= SOFIA_MAX_LIGHT_VAL
;
116 return sx1_i2c_write_byte(SOFIA_I2C_ADDR
, SOFIA_BACKLIGHT_REG
,
119 /* get current LCD backlight intensity */
120 int sx1_getbacklight (u8
* backlight
)
122 return sx1_i2c_read_byte(SOFIA_I2C_ADDR
, SOFIA_BACKLIGHT_REG
,
125 /* set LCD backlight power on/off */
126 int sx1_setmmipower(u8 onoff
)
130 err
= sx1_i2c_read_byte(SOFIA_I2C_ADDR
, SOFIA_POWER1_REG
, &dat
);
134 dat
|= SOFIA_MMILIGHT_POWER
;
136 dat
&= ~SOFIA_MMILIGHT_POWER
;
137 return sx1_i2c_write_byte(SOFIA_I2C_ADDR
, SOFIA_POWER1_REG
, dat
);
140 /* set USB power on/off */
141 int sx1_setusbpower(u8 onoff
)
145 err
= sx1_i2c_read_byte(SOFIA_I2C_ADDR
, SOFIA_POWER1_REG
, &dat
);
149 dat
|= SOFIA_USB_POWER
;
151 dat
&= ~SOFIA_USB_POWER
;
152 return sx1_i2c_write_byte(SOFIA_I2C_ADDR
, SOFIA_POWER1_REG
, dat
);
155 EXPORT_SYMBOL(sx1_setkeylight
);
156 EXPORT_SYMBOL(sx1_getkeylight
);
157 EXPORT_SYMBOL(sx1_setbacklight
);
158 EXPORT_SYMBOL(sx1_getbacklight
);
159 EXPORT_SYMBOL(sx1_setmmipower
);
160 EXPORT_SYMBOL(sx1_setusbpower
);
162 /*----------- Keypad -------------------------*/
164 static int sx1_keymap
[] = {
165 KEY(5, 3, GROUP_0
| 117), /* camera Qt::Key_F17 */
166 KEY(0, 4, GROUP_0
| 114), /* voice memo Qt::Key_F14 */
167 KEY(1, 4, GROUP_2
| 114), /* voice memo */
168 KEY(2, 4, GROUP_3
| 114), /* voice memo */
169 KEY(0, 0, GROUP_1
| KEY_F12
), /* red button Qt::Key_Hangup */
170 KEY(4, 3, GROUP_1
| KEY_LEFT
),
171 KEY(2, 3, GROUP_1
| KEY_DOWN
),
172 KEY(1, 3, GROUP_1
| KEY_RIGHT
),
173 KEY(0, 3, GROUP_1
| KEY_UP
),
174 KEY(3, 3, GROUP_1
| KEY_POWER
), /* joystick press or Qt::Key_Select */
175 KEY(5, 0, GROUP_1
| KEY_1
),
176 KEY(4, 0, GROUP_1
| KEY_2
),
177 KEY(3, 0, GROUP_1
| KEY_3
),
178 KEY(3, 4, GROUP_1
| KEY_4
),
179 KEY(4, 4, GROUP_1
| KEY_5
),
180 KEY(5, 4, GROUP_1
| KEY_KPASTERISK
),/* "*" */
181 KEY(4, 1, GROUP_1
| KEY_6
),
182 KEY(5, 1, GROUP_1
| KEY_7
),
183 KEY(3, 1, GROUP_1
| KEY_8
),
184 KEY(3, 2, GROUP_1
| KEY_9
),
185 KEY(5, 2, GROUP_1
| KEY_0
),
186 KEY(4, 2, GROUP_1
| 113), /* # F13 Toggle input method Qt::Key_F13 */
187 KEY(0, 1, GROUP_1
| KEY_F11
), /* green button Qt::Key_Call */
188 KEY(1, 2, GROUP_1
| KEY_YEN
), /* left soft Qt::Key_Context1 */
189 KEY(2, 2, GROUP_1
| KEY_F8
), /* right soft Qt::Key_Back */
190 KEY(2, 1, GROUP_1
| KEY_LEFTSHIFT
), /* shift */
191 KEY(1, 1, GROUP_1
| KEY_BACKSPACE
), /* C (clear) */
192 KEY(0, 2, GROUP_1
| KEY_F7
), /* menu Qt::Key_Menu */
196 static struct resource sx1_kp_resources
[] = {
198 .start
= INT_KEYBOARD
,
200 .flags
= IORESOURCE_IRQ
,
204 static struct omap_kp_platform_data sx1_kp_data
= {
207 .keymap
= sx1_keymap
,
208 .keymapsize
= ARRAY_SIZE(sx1_keymap
),
212 static struct platform_device sx1_kp_device
= {
213 .name
= "omap-keypad",
216 .platform_data
= &sx1_kp_data
,
218 .num_resources
= ARRAY_SIZE(sx1_kp_resources
),
219 .resource
= sx1_kp_resources
,
222 /*----------- IRDA -------------------------*/
224 static struct omap_irda_config sx1_irda_data
= {
225 .transceiver_cap
= IR_SIRMODE
,
226 .rx_channel
= OMAP_DMA_UART3_RX
,
227 .tx_channel
= OMAP_DMA_UART3_TX
,
228 .dest_start
= UART3_THR
,
229 .src_start
= UART3_RHR
,
234 static struct resource sx1_irda_resources
[] = {
238 .flags
= IORESOURCE_IRQ
,
242 static u64 irda_dmamask
= 0xffffffff;
244 static struct platform_device sx1_irda_device
= {
248 .platform_data
= &sx1_irda_data
,
249 .dma_mask
= &irda_dmamask
,
251 .num_resources
= ARRAY_SIZE(sx1_irda_resources
),
252 .resource
= sx1_irda_resources
,
255 /*----------- McBSP & Sound -------------------------*/
257 /* Playback interface - McBSP1 */
258 static struct omap_mcbsp_reg_cfg mcbsp1_regs
= {
259 .spcr2
= XINTM(3), /* SPCR2=30 */
260 .spcr1
= RINTM(3), /* SPCR1=30 */
261 .rcr2
= 0, /* RCR2 =00 */
262 .rcr1
= RFRLEN1(1) | RWDLEN1(OMAP_MCBSP_WORD_16
), /* RCR1=140 */
263 .xcr2
= 0, /* XCR2 = 0 */
264 .xcr1
= XFRLEN1(1) | XWDLEN1(OMAP_MCBSP_WORD_16
), /* XCR1 = 140 */
265 .srgr1
= FWID(15) | CLKGDV(12), /* SRGR1=0f0c */
266 .srgr2
= FSGM
| FPER(31), /* SRGR2=101f */
267 .pcr0
= FSXM
| FSRM
| CLKXM
| CLKRM
| FSXP
| FSRP
| CLKXP
| CLKRP
,
271 static struct omap_alsa_codec_config sx1_alsa_config
= {
273 .mcbsp_regs_alsa
= &mcbsp1_regs
,
276 static struct platform_device sx1_mcbsp1_device
= {
277 .name
= "omap_alsa_mcbsp",
280 .platform_data
= &sx1_alsa_config
,
284 /*----------- MTD -------------------------*/
286 static struct mtd_partition sx1_partitions
[] = {
287 /* bootloader (U-Boot, etc) in first sector */
289 .name
= "bootloader",
290 .offset
= 0x01800000,
292 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
294 /* bootloader params in the next sector */
297 .offset
= MTDPART_OFS_APPEND
,
304 .offset
= MTDPART_OFS_APPEND
,
305 .size
= SZ_2M
- 2 * SZ_128K
,
310 .name
= "filesystem",
311 .offset
= MTDPART_OFS_APPEND
,
312 .size
= MTDPART_SIZ_FULL
,
317 static struct flash_platform_data sx1_flash_data
= {
318 .map_name
= "cfi_probe",
320 .parts
= sx1_partitions
,
321 .nr_parts
= ARRAY_SIZE(sx1_partitions
),
324 #ifdef CONFIG_SX1_OLD_FLASH
325 /* MTD Intel StrataFlash - old flashes */
326 static struct resource sx1_old_flash_resource
[] = {
328 .start
= OMAP_CS0_PHYS
, /* Physical */
329 .end
= OMAP_CS0_PHYS
+ SZ_16M
- 1,,
330 .flags
= IORESOURCE_MEM
,
333 .start
= OMAP_CS1_PHYS
,
334 .end
= OMAP_CS1_PHYS
+ SZ_8M
- 1,
335 .flags
= IORESOURCE_MEM
,
339 static struct platform_device sx1_flash_device
= {
343 .platform_data
= &sx1_flash_data
,
346 .resource
= &sx1_old_flash_resource
,
349 /* MTD Intel 4000 flash - new flashes */
350 static struct resource sx1_new_flash_resource
= {
351 .start
= OMAP_CS0_PHYS
,
352 .end
= OMAP_CS0_PHYS
+ SZ_32M
- 1,
353 .flags
= IORESOURCE_MEM
,
356 static struct platform_device sx1_flash_device
= {
360 .platform_data
= &sx1_flash_data
,
363 .resource
= &sx1_new_flash_resource
,
367 /*----------- USB -------------------------*/
369 static struct omap_usb_config sx1_usb_config __initdata
= {
379 /*----------- MMC -------------------------*/
381 static struct omap_mmc_config sx1_mmc_config __initdata
= {
388 /*----------- LCD -------------------------*/
390 static struct platform_device sx1_lcd_device
= {
395 static struct omap_lcd_config sx1_lcd_config __initdata
= {
396 .ctrl_name
= "internal",
399 /*-----------------------------------------*/
400 static struct platform_device
*sx1_devices
[] __initdata
= {
407 /*-----------------------------------------*/
409 static struct omap_uart_config sx1_uart_config __initdata
= {
410 .enabled_uarts
= ((1 << 0) | (1 << 1) | (1 << 2)),
413 static struct omap_board_config_kernel sx1_config
[] __initdata
= {
414 { OMAP_TAG_USB
, &sx1_usb_config
},
415 { OMAP_TAG_MMC
, &sx1_mmc_config
},
416 { OMAP_TAG_LCD
, &sx1_lcd_config
},
417 { OMAP_TAG_UART
, &sx1_uart_config
},
420 /*-----------------------------------------*/
422 static void __init
omap_sx1_init(void)
424 platform_add_devices(sx1_devices
, ARRAY_SIZE(sx1_devices
));
426 omap_board_config
= sx1_config
;
427 omap_board_config_size
= ARRAY_SIZE(sx1_config
);
429 omap_register_i2c_bus(1, 100, NULL
, 0);
432 /* turn on USB power */
433 /* sx1_setusbpower(1); cant do it here because i2c is not ready */
434 omap_request_gpio(1); /* A_IRDA_OFF */
435 omap_request_gpio(11); /* A_SWITCH */
436 omap_request_gpio(15); /* A_USB_ON */
437 omap_set_gpio_direction(1, 0);/* gpio1 -> output */
438 omap_set_gpio_direction(11, 0);/* gpio11 -> output */
439 omap_set_gpio_direction(15, 0);/* gpio15 -> output */
441 omap_set_gpio_dataout(1, 1);/*A_IRDA_OFF = 1 */
442 omap_set_gpio_dataout(11, 0);/*A_SWITCH = 0 */
443 omap_set_gpio_dataout(15, 0);/*A_USB_ON = 0 */
446 /*----------------------------------------*/
447 static void __init
omap_sx1_init_irq(void)
449 omap1_init_common_hw();
453 /*----------------------------------------*/
455 static void __init
omap_sx1_map_io(void)
457 omap1_map_common_io();
460 MACHINE_START(SX1
, "OMAP310 based Siemens SX1")
461 .phys_io
= 0xfff00000,
462 .io_pg_offst
= ((0xfef00000) >> 18) & 0xfffc,
463 .boot_params
= 0x10000100,
464 .map_io
= omap_sx1_map_io
,
465 .init_irq
= omap_sx1_init_irq
,
466 .init_machine
= omap_sx1_init
,
467 .timer
= &omap_timer
,