mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 04:32:03 +00:00
b8410a150f
Acked-by: Linus Walleij <linus.walleij@stericsson.com> Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com> Signed-off-by: Linus Walleij <linus.walleij@stericsson.com>
21 lines
463 B
C
21 lines
463 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)
|
|
|
|
extern void mop500_sdi_init(void);
|
|
extern void mop500_sdi_tc35892_init(void);
|
|
|
|
#endif
|