diff options
author | Matt Carlson <mcarlson@broadcom.com> | 2010-04-12 02:58:24 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-04-13 05:25:42 -0400 |
commit | cea46462681d61a65a208d17206d38739c1ea1b1 (patch) | |
tree | af5b17960d6871e9dc2b6d104eaadf87730220f5 /drivers/net/tg3.c | |
parent | b6c6712a42ca3f9fa7f4a3d7c40e3a9dd1fd9e03 (diff) |
tg3: Disable CLKREQ in L2
This patch disables CLKREQ in L2 to workaround a chipset bug.
Signed-off-by: Matt Carlson <mcarlson@broadcom.com>
Reviewed-by: Michael Chan <mchan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tg3.c')
-rw-r--r-- | drivers/net/tg3.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index 460a0c22b318..4ae01b3799f4 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
@@ -7642,6 +7642,20 @@ static int tg3_reset_hw(struct tg3 *tp, int reset_phy) | |||
7642 | tw32(GRC_MODE, grc_mode); | 7642 | tw32(GRC_MODE, grc_mode); |
7643 | } | 7643 | } |
7644 | 7644 | ||
7645 | if (tp->pci_chip_rev_id == CHIPREV_ID_57765_A0) { | ||
7646 | u32 grc_mode = tr32(GRC_MODE); | ||
7647 | |||
7648 | /* Access the lower 1K of PL PCIE block registers. */ | ||
7649 | val = grc_mode & ~GRC_MODE_PCIE_PORT_MASK; | ||
7650 | tw32(GRC_MODE, val | GRC_MODE_PCIE_PL_SEL); | ||
7651 | |||
7652 | val = tr32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5); | ||
7653 | tw32(TG3_PCIE_TLDLPL_PORT + TG3_PCIE_PL_LO_PHYCTL5, | ||
7654 | val | TG3_PCIE_PL_LO_PHYCTL5_DIS_L2CLKREQ); | ||
7655 | |||
7656 | tw32(GRC_MODE, grc_mode); | ||
7657 | } | ||
7658 | |||
7645 | /* This works around an issue with Athlon chipsets on | 7659 | /* This works around an issue with Athlon chipsets on |
7646 | * B3 tigon3 silicon. This bit has no effect on any | 7660 | * B3 tigon3 silicon. This bit has no effect on any |
7647 | * other revision. But do not set this on PCI Express | 7661 | * other revision. But do not set this on PCI Express |