mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 02:34:01 +08:00
705e098444
Add support for dynamic detection of the UIB used (at the cost of one i2c error on the lesser-used UIB) and also provide an override via a command line parameter if needed. Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com> Signed-off-by: Sundar Iyer <sundar.iyer@stericsson.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
28 lines
645 B
C
28 lines
645 B
C
/*
|
|
* Copyright (C) ST-Ericsson SA 2010
|
|
*
|
|
* License terms: GNU General Public License (GPL) version 2
|
|
*/
|
|
|
|
#ifndef __BOARD_MOP500_H
|
|
#define __BOARD_MOP500_H
|
|
|
|
#define MOP500_EGPIO(x) (NOMADIK_NR_GPIO + (x))
|
|
|
|
/* GPIOs on the TC35892 expander */
|
|
#define GPIO_SDMMC_CD MOP500_EGPIO(3)
|
|
#define GPIO_SDMMC_EN MOP500_EGPIO(17)
|
|
#define GPIO_SDMMC_1V8_3V_SEL MOP500_EGPIO(18)
|
|
|
|
struct i2c_board_info;
|
|
|
|
extern void mop500_sdi_init(void);
|
|
extern void mop500_sdi_tc35892_init(void);
|
|
void __init mop500_u8500uib_init(void);
|
|
void __init mop500_stuib_init(void);
|
|
|
|
void mop500_uib_i2c_add(int busnum, struct i2c_board_info *info,
|
|
unsigned n);
|
|
|
|
#endif
|