From 207828e215f7e8331ea3c304b922de9d155fb68e Mon Sep 17 00:00:00 2001 From: Hannes Petermaier Date: Fri, 3 Oct 2014 07:30:15 +0200 Subject: 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 Cc: Tom Rini --- board/BuR/kwb/mux.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'board/BuR/kwb/mux.c') diff --git a/board/BuR/kwb/mux.c b/board/BuR/kwb/mux.c index 1a5ffd5709..ecb2e7a427 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 */ -- cgit v1.2.1