From: Stephen Hemminger <shemminger@linux-foundation.org>
To: supersud501 <supersud501@yahoo.de>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>,
Andrew Morton <akpm@linux-foundation.org>,
netdev@vger.kernel.org, linux-acpi@vger.kernel.org,
bugme-daemon@bugzilla.kernel.org
Subject: [RFT] sky2: wake-on-lan configuration issues
Date: Mon, 14 Jan 2008 10:14:39 -0800 [thread overview]
Message-ID: <20080114101439.72304b92@deepthought> (raw)
In-Reply-To: <478A965E.8070306@yahoo.de>
Please test this patch against Linus's current (approx 2.6.24-rc7-git5).
Ignore Andrew's premature reversion attempt...
This patch disables config mode access after clearing PCI settings.
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
--- a/drivers/net/sky2.c 2008-01-14 09:44:22.000000000 -0800
+++ b/drivers/net/sky2.c 2008-01-14 09:44:51.000000000 -0800
@@ -621,6 +621,7 @@ static void sky2_phy_power(struct sky2_h
static const u32 phy_power[] = { PCI_Y2_PHY1_POWD, PCI_Y2_PHY2_POWD };
static const u32 coma_mode[] = { PCI_Y2_PHY1_COMA, PCI_Y2_PHY2_COMA };
+ sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
reg1 = sky2_pci_read32(hw, PCI_DEV_REG1);
/* Turn on/off phy power saving */
if (onoff)
@@ -632,7 +633,8 @@ static void sky2_phy_power(struct sky2_h
reg1 |= coma_mode[port];
sky2_pci_write32(hw, PCI_DEV_REG1, reg1);
- reg1 = sky2_pci_read32(hw, PCI_DEV_REG1);
+ sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
+ sky2_pci_read32(hw, PCI_DEV_REG1);
udelay(100);
}
@@ -2426,6 +2428,7 @@ static void sky2_hw_intr(struct sky2_hw
if (status & (Y2_IS_MST_ERR | Y2_IS_IRQ_STAT)) {
u16 pci_err;
+ sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
pci_err = sky2_pci_read16(hw, PCI_STATUS);
if (net_ratelimit())
dev_err(&pdev->dev, "PCI hardware error (0x%x)\n",
@@ -2433,12 +2436,14 @@ static void sky2_hw_intr(struct sky2_hw
sky2_pci_write16(hw, PCI_STATUS,
pci_err | PCI_STATUS_ERROR_BITS);
+ sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
}
if (status & Y2_IS_PCI_EXP) {
/* PCI-Express uncorrectable Error occurred */
u32 err;
+ sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_ON);
err = sky2_read32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS);
sky2_write32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS,
0xfffffffful);
@@ -2446,6 +2451,7 @@ static void sky2_hw_intr(struct sky2_hw
dev_err(&pdev->dev, "PCI Express error (0x%x)\n", err);
sky2_read32(hw, Y2_CFG_AER + PCI_ERR_UNCOR_STATUS);
+ sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
}
if (status & Y2_HWE_L1_MASK)
@@ -2811,6 +2817,7 @@ static void sky2_reset(struct sky2_hw *h
}
sky2_power_on(hw);
+ sky2_write8(hw, B2_TST_CTRL1, TST_CFG_WRITE_OFF);
for (i = 0; i < hw->ports; i++) {
sky2_write8(hw, SK_REG(i, GMAC_LINK_CTRL), GMLC_RST_SET);
next prev parent reply other threads:[~2008-01-14 18:17 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <bug-9721-10286@http.bugzilla.kernel.org/>
2008-01-10 0:03 ` [Bugme-new] [Bug 9721] New: wake on lan fails with sky2 module Andrew Morton
2008-01-10 4:52 ` Stephen Hemminger
2008-01-10 19:35 ` supersud501
2008-01-11 20:23 ` supersud501
2008-01-11 21:16 ` Rafael J. Wysocki
2008-01-11 22:19 ` supersud501
2008-01-11 23:10 ` Rafael J. Wysocki
2008-01-12 12:24 ` supersud501
2008-01-12 19:13 ` Rafael J. Wysocki
2008-01-13 13:22 ` supersud501
2008-01-13 15:08 ` supersud501
2008-01-13 19:27 ` Andrew Morton
2008-01-13 20:27 ` supersud501
2008-01-13 20:57 ` Andrew Morton
2008-01-13 21:25 ` Rafael J. Wysocki
2008-01-13 21:27 ` Rafael J. Wysocki
2008-01-13 22:53 ` supersud501
2008-01-14 18:14 ` Stephen Hemminger [this message]
2008-01-14 21:05 ` [RFT] sky2: wake-on-lan configuration issues supersud501
2008-01-17 21:08 ` Tino Keitel
2008-01-17 23:22 ` Andrew Morton
2008-01-14 16:39 ` [Bugme-new] [Bug 9721] New: wake on lan fails with sky2 module Stephen Hemminger
2008-01-14 20:50 ` Andrew Morton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080114101439.72304b92@deepthought \
--to=shemminger@linux-foundation.org \
--cc=akpm@linux-foundation.org \
--cc=bugme-daemon@bugzilla.kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=rjw@sisk.pl \
--cc=supersud501@yahoo.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.