diff options
author | Dmitry Kravkov <dmitry@broadcom.com> | 2012-10-28 21:59:04 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-11-02 21:32:11 -0400 |
commit | 2b674047bef23d49a7ca8ec32f4b9e4e12588621 (patch) | |
tree | 825c9d505daaa3e774779e1ab2b7449385e7564b | |
parent | 2c42a3fb30845867bfcaf0747ff50c1375884ff2 (diff) | |
download | linux-3.10-2b674047bef23d49a7ca8ec32f4b9e4e12588621.tar.gz linux-3.10-2b674047bef23d49a7ca8ec32f4b9e4e12588621.tar.bz2 linux-3.10-2b674047bef23d49a7ca8ec32f4b9e4e12588621.zip |
bnx2x: fix HW initialization using fw 7.8.x
Since commit 96bed4b9 (use FW 7.8.2) BRB HW block needs to be
initialized using fw values for all devices.
Otherwise ETS on 57712/578xx will not work.
Signed-off-by: Dmitry Kravkov <dmitry@broadcom.com>
Signed-off-by: Ariel Elior <ariele@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c index f23e8c02295..bd1fd3d87c2 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c @@ -6794,8 +6794,9 @@ static int bnx2x_init_hw_port(struct bnx2x *bp) bnx2x_init_block(bp, BLOCK_DORQ, init_phase); + bnx2x_init_block(bp, BLOCK_BRB1, init_phase); + if (CHIP_IS_E1(bp) || CHIP_IS_E1H(bp)) { - bnx2x_init_block(bp, BLOCK_BRB1, init_phase); if (IS_MF(bp)) low = ((bp->flags & ONE_PORT_FLAG) ? 160 : 246); |