diff options
author | Hannes Petermaier | 2015-02-03 13:22:32 +0100 |
---|---|---|
committer | Tom Rini | 2015-03-05 20:13:18 -0500 |
commit | 71d75d16ef57d77c225e4329226ce4449c2834bc (patch) | |
tree | b959c4e9fbdd38161e69f5ded9700ce2e6b5fba7 /board | |
parent | 2f32ea70c4929c29f9f4386c6e427d80d801ef13 (diff) |
board/BuR/tseries: Chg pinmux - use free NAND Pins in non NAND-config as GPIO
On boards were we have no NAND-flash soldered, we want to use those free pins
as regular gpio.
Signed-off-by: Hannes Petermaier <oe5hpm@oevsv.at>
Diffstat (limited to 'board')
-rw-r--r-- | board/BuR/tseries/mux.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/board/BuR/tseries/mux.c b/board/BuR/tseries/mux.c index 36ee04cf98e..330429acf9b 100644 --- a/board/BuR/tseries/mux.c +++ b/board/BuR/tseries/mux.c @@ -168,7 +168,14 @@ static struct module_pin_mux gpIOs[] = { {OFFSET(mcasp0_axr0), (MODE(7) | PULLUDDIS) }, /* GPIO3_17 (MCASP0_AHCLKR) - ETH2_LEDY */ {OFFSET(mcasp0_ahclkr), (MODE(7) | PULLUDDIS) }, - +#ifndef CONFIG_NAND + /* GPIO2_3 - NAND_OE */ + {OFFSET(gpmc_oen_ren), (MODE(7) | PULLDOWN_EN | RXACTIVE)}, + /* GPIO2_4 - NAND_WEN */ + {OFFSET(gpmc_wen), (MODE(7) | PULLDOWN_EN | RXACTIVE)}, + /* GPIO2_5 - NAND_BE_CLE */ + {OFFSET(gpmc_be0n_cle), (MODE(7) | PULLDOWN_EN | RXACTIVE)}, +#endif {-1}, }; |