blob: 56722f4be71b96a5cc0af9e9d20be8d79c6dd757 [file] [log] [blame]
Hanumath Prasad008f8a22010-08-19 12:06:32 +01001/*
2 * Copyright (C) ST-Ericsson SA 2010
3 *
4 * License terms: GNU General Public License (GPL) version 2
5 */
6
7#ifndef __BOARD_MOP500_H
8#define __BOARD_MOP500_H
9
Linus Walleij4b4f7572011-02-15 15:01:35 +010010/* HREFv60-specific GPIO assignments, this board has no GPIO expander */
11#define HREFV60_TOUCH_RST_GPIO 143
12#define HREFV60_PROX_SENSE_GPIO 217
13#define HREFV60_HAL_SW_GPIO 145
14#define HREFV60_SDMMC_EN_GPIO 169
15#define HREFV60_SDMMC_1V8_3V_GPIO 5
16#define HREFV60_SDMMC_CD_GPIO 95
17#define HREFV60_ACCEL_INT1_GPIO 82
18#define HREFV60_ACCEL_INT2_GPIO 83
19#define HREFV60_MAGNET_DRDY_GPIO 32
20#define HREFV60_DISP1_RST_GPIO 65
21#define HREFV60_DISP2_RST_GPIO 66
Rabin Vincentb8410a12010-08-09 19:18:17 +053022
23/* GPIOs on the TC35892 expander */
Linus Walleij4b4f7572011-02-15 15:01:35 +010024#define MOP500_EGPIO(x) (NOMADIK_NR_GPIO + (x))
Rabin Vincentb8410a12010-08-09 19:18:17 +053025#define GPIO_SDMMC_CD MOP500_EGPIO(3)
Philippe Langlaisa71b8192011-01-14 10:53:59 +010026#define GPIO_PROX_SENSOR MOP500_EGPIO(7)
Sundar Iyer0c243522011-01-21 10:56:17 +053027#define GPIO_BU21013_CS MOP500_EGPIO(13)
Rabin Vincentb8410a12010-08-09 19:18:17 +053028#define GPIO_SDMMC_EN MOP500_EGPIO(17)
29#define GPIO_SDMMC_1V8_3V_SEL MOP500_EGPIO(18)
30
Rabin Vincent705e0982011-01-21 10:56:16 +053031struct i2c_board_info;
32
Hanumath Prasad008f8a22010-08-19 12:06:32 +010033extern void mop500_sdi_init(void);
Rabin Vincentb8410a12010-08-09 19:18:17 +053034extern void mop500_sdi_tc35892_init(void);
Rabin Vincent705e0982011-01-21 10:56:16 +053035void __init mop500_u8500uib_init(void);
36void __init mop500_stuib_init(void);
Rabin Vincentfe052032011-02-11 17:07:21 -070037void __init mop500_pins_init(void);
Rabin Vincent705e0982011-01-21 10:56:16 +053038
39void mop500_uib_i2c_add(int busnum, struct i2c_board_info *info,
40 unsigned n);
Hanumath Prasad008f8a22010-08-19 12:06:32 +010041
42#endif