diff options
author | Hannes Petermaier <oe5hpm@oevsv.at> | 2014-10-03 07:30:15 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-10 09:44:45 -0400 |
commit | 207828e215f7e8331ea3c304b922de9d155fb68e (patch) | |
tree | c871865ed1047b16f1c933c4a036dc0396430b0d /board/BuR/kwb | |
parent | 703a08f2b33b92f64277b0d06d10cc83bdc617f3 (diff) | |
download | u-boot-imx-207828e215f7e8331ea3c304b922de9d155fb68e.zip u-boot-imx-207828e215f7e8331ea3c304b922de9d155fb68e.tar.gz u-boot-imx-207828e215f7e8331ea3c304b922de9d155fb68e.tar.bz2 |
board/BuR: fix pinmux for MII Ethernet Interface
The lines COL (collision detect) and CRS (carrier sense) needs to be connected
and muxed to the CPSW MAC for a proper function in half-duplex Mode of the
interface.
Signed-off-by: Hannes Petermaier <oe5hpm@oevsv.at>
Cc: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/BuR/kwb')
-rw-r--r-- | board/BuR/kwb/mux.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/BuR/kwb/mux.c b/board/BuR/kwb/mux.c index 1a5ffd5..ecb2e7a 100644 --- a/board/BuR/kwb/mux.c +++ b/board/BuR/kwb/mux.c @@ -105,6 +105,8 @@ static struct module_pin_mux i2c0_pin_mux[] = { }; static struct module_pin_mux mii1_pin_mux[] = { + {OFFSET(mii1_crs), MODE(0) | RXACTIVE}, /* MII1_CRS */ + {OFFSET(mii1_col), MODE(0) | RXACTIVE}, /* MII1_COL */ {OFFSET(mii1_rxerr), MODE(0) | RXACTIVE}, /* MII1_RXERR */ {OFFSET(mii1_txen), MODE(0)}, /* MII1_TXEN */ {OFFSET(mii1_rxdv), MODE(0) | RXACTIVE}, /* MII1_RXDV */ |