diff options
author | Eilon Greenstein <eilong@broadcom.com> | 2009-02-12 03:36:58 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-16 02:31:26 -0500 |
commit | 46c6a67495b3ec76204db800fc8d60a260f91cfe (patch) | |
tree | 23685cb8cb7351c1f452b61d5afcffb40b0ffb6d /drivers/net/bnx2x_main.c | |
parent | 589abe3a0f594a7707a15674ca9e80370c972832 (diff) |
bnx2x: PHY lock list
Some dual port PHY require HW lock since they are used by both interfaces
(different driver instances). Since this list is getting longer, update a
parameter at load time instead of calculating it on runtime
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bnx2x_main.c')
-rw-r--r-- | drivers/net/bnx2x_main.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c index 5acbd98778b8..2ee480b4b77c 100644 --- a/drivers/net/bnx2x_main.c +++ b/drivers/net/bnx2x_main.c | |||
@@ -1816,22 +1816,16 @@ static int bnx2x_release_hw_lock(struct bnx2x *bp, u32 resource) | |||
1816 | /* HW Lock for shared dual port PHYs */ | 1816 | /* HW Lock for shared dual port PHYs */ |
1817 | static void bnx2x_acquire_phy_lock(struct bnx2x *bp) | 1817 | static void bnx2x_acquire_phy_lock(struct bnx2x *bp) |
1818 | { | 1818 | { |
1819 | u32 ext_phy_type = XGXS_EXT_PHY_TYPE(bp->link_params.ext_phy_config); | ||
1820 | |||
1821 | mutex_lock(&bp->port.phy_mutex); | 1819 | mutex_lock(&bp->port.phy_mutex); |
1822 | 1820 | ||
1823 | if ((ext_phy_type == PORT_HW_CFG_XGXS_EXT_PHY_TYPE_BCM8072) || | 1821 | if (bp->port.need_hw_lock) |
1824 | (ext_phy_type == PORT_HW_CFG_XGXS_EXT_PHY_TYPE_BCM8073)) | 1822 | bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_MDIO); |
1825 | bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_8072_MDIO); | ||
1826 | } | 1823 | } |
1827 | 1824 | ||
1828 | static void bnx2x_release_phy_lock(struct bnx2x *bp) | 1825 | static void bnx2x_release_phy_lock(struct bnx2x *bp) |
1829 | { | 1826 | { |
1830 | u32 ext_phy_type = XGXS_EXT_PHY_TYPE(bp->link_params.ext_phy_config); | 1827 | if (bp->port.need_hw_lock) |
1831 | 1828 | bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_MDIO); | |
1832 | if ((ext_phy_type == PORT_HW_CFG_XGXS_EXT_PHY_TYPE_BCM8072) || | ||
1833 | (ext_phy_type == PORT_HW_CFG_XGXS_EXT_PHY_TYPE_BCM8073)) | ||
1834 | bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_8072_MDIO); | ||
1835 | 1829 | ||
1836 | mutex_unlock(&bp->port.phy_mutex); | 1830 | mutex_unlock(&bp->port.phy_mutex); |
1837 | } | 1831 | } |
@@ -5705,6 +5699,12 @@ static int bnx2x_init_common(struct bnx2x *bp) | |||
5705 | } | 5699 | } |
5706 | 5700 | ||
5707 | switch (XGXS_EXT_PHY_TYPE(bp->link_params.ext_phy_config)) { | 5701 | switch (XGXS_EXT_PHY_TYPE(bp->link_params.ext_phy_config)) { |
5702 | case PORT_HW_CFG_XGXS_EXT_PHY_TYPE_BCM8072: | ||
5703 | case PORT_HW_CFG_XGXS_EXT_PHY_TYPE_BCM8073: | ||
5704 | case PORT_HW_CFG_XGXS_EXT_PHY_TYPE_BCM8726: | ||
5705 | bp->port.need_hw_lock = 1; | ||
5706 | break; | ||
5707 | |||
5708 | case PORT_HW_CFG_XGXS_EXT_PHY_TYPE_SFX7101: | 5708 | case PORT_HW_CFG_XGXS_EXT_PHY_TYPE_SFX7101: |
5709 | /* Fan failure is indicated by SPIO 5 */ | 5709 | /* Fan failure is indicated by SPIO 5 */ |
5710 | bnx2x_set_spio(bp, MISC_REGISTERS_SPIO_5, | 5710 | bnx2x_set_spio(bp, MISC_REGISTERS_SPIO_5, |