/* * Copyright (C) ST-Ericsson SA 2010 * * Board data for the U8500 UIB, also known as the New UIB * License terms: GNU General Public License (GPL), version 2 */ #include #include #include #include #ifdef CONFIG_U8500_FLASH #include <../drivers/staging/camera_flash/adp1653_plat.h> #endif #include #ifdef CONFIG_SENSORS_LSM303DLH #include #endif #ifdef CONFIG_SENSORS_L3G4200D #include #endif #include #include #include #include #include #include "board-mop500.h" /* Dummy data that can be overridden by staging driver */ struct i2c_board_info __initdata __weak mop500_i2c3_devices_u8500[] = { }; #ifdef CONFIG_U8500_FLASH static struct adp1653_platform_data __initdata adp1653_pdata_u8500_uib = { .irq_no = CAMERA_FLASH_INT_PIN }; #endif static struct i2c_board_info __initdata mop500_i2c2_devices_u8500[] = { #ifdef CONFIG_U8500_FLASH { I2C_BOARD_INFO("adp1653", 0x30), .platform_data = &adp1653_pdata_u8500_uib } #endif }; /* * TC35893 */ static const unsigned int u8500_keymap[] = { KEY(3, 1, KEY_END), KEY(4, 1, KEY_HOME), KEY(6, 4, KEY_VOLUMEDOWN), KEY(4, 2, KEY_EMAIL), KEY(3, 3, KEY_RIGHT), KEY(2, 5, KEY_BACKSPACE), KEY(6, 7, KEY_MENU), KEY(5, 0, KEY_ENTER), KEY(4, 3, KEY_0), KEY(3, 4, KEY_DOT), KEY(5, 2, KEY_UP), KEY(3, 5, KEY_DOWN), KEY(4, 5, KEY_SEND), KEY(0, 5, KEY_BACK), KEY(6, 2, KEY_VOLUMEUP), KEY(1, 3, KEY_SPACE), KEY(7, 6, KEY_LEFT), KEY(5, 5, KEY_SEARCH), }; static struct matrix_keymap_data u8500_keymap_data = { .keymap = u8500_keymap, .keymap_size = ARRAY_SIZE(u8500_keymap), }; static struct tc3589x_keypad_platform_data tc35893_data = { .krow = TC_KPD_ROWS, .kcol = TC_KPD_COLUMNS, .debounce_period = TC_KPD_DEBOUNCE_PERIOD, .settle_time = TC_KPD_SETTLE_TIME, .irqtype = IRQF_TRIGGER_FALLING, .enable_wakeup = true, .keymap_data = &u8500_keymap_data, .no_autorepeat = true, }; static struct tc3589x_platform_data tc3589x_keypad_data = { .block = TC3589x_BLOCK_KEYPAD, .keypad = &tc35893_data, .irq_base = MOP500_EGPIO_IRQ_BASE, }; static struct i2c_board_info __initdata mop500_i2c0_devices_u8500[] = { { I2C_BOARD_INFO("tc3589x", 0x44), .platform_data = &tc3589x_keypad_data, .irq = NOMADIK_GPIO_TO_IRQ(218), .flags = I2C_CLIENT_WAKE, }, }; void __init mop500_u8500uib_init(void) { mop500_uib_i2c_add(3, mop500_i2c3_devices_u8500, ARRAY_SIZE(mop500_i2c3_devices_u8500)); mop500_uib_i2c_add(0, mop500_i2c0_devices_u8500, ARRAY_SIZE(mop500_i2c0_devices_u8500)); #ifdef CONFIG_U8500_FLASH if (machine_is_hrefv60() || machine_is_u8520()) adp1653_pdata_u8500_uib.enable_gpio = HREFV60_CAMERA_FLASH_ENABLE; else adp1653_pdata_u8500_uib.enable_gpio = GPIO_CAMERA_FLASH_ENABLE; #endif mop500_uib_i2c_add(2, mop500_i2c2_devices_u8500, ARRAY_SIZE(mop500_i2c2_devices_u8500)); }