| To: | linux-mips@linux-mips.org, ralf@linux-mips.org |
|---|---|
| Subject: | [PATCH] MTX-1: make au1000_eth probes all PHY addresses |
| From: | Florian Fainelli <florian@openwrt.org> |
| Date: | Sun, 27 Feb 2011 19:53:53 +0100 |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:sender:from:to:subject:date:user-agent :organization:mime-version:content-type:content-transfer-encoding :message-id; bh=rwoiswuu8QGlYt3EaFXGvVl9iyrlxbL/ztNafgFuew0=; b=pKm9/LN4fR/ri3gI4lH0zZm5b9ejJpdC7H+ukI7ABHo2stdH37qaWpguA3X4sVIRu/ hcQGj3bQvFqmdE02vZeLY929SCiQ3G4CsEytbuX7tLnQZ4KxZHKwiiGJy9BL64YAJeFU 2xB1QdRJalJaNlGU25lZrXtAYTLqTTkXZBiQg= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:from:to:subject:date:user-agent:organization:mime-version :content-type:content-transfer-encoding:message-id; b=P8MfBSXrd7r7uQXFg0PvxTglwVTKGaPjUaf07k1S9o/Mpeh8a94urrBRkTpivsFm5W Ln4yorssSuG31wNTdBYYXeLJTNAdMZ14gTpkWWVXnyImqVreIQ5BJkhtOzlwn1e8HOfS 63JlHi+MGqMKuDc2XC+qFCfwi8nkN+U7DyuOA= |
| Organization: | OpenWrt |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | KMail/1.13.5 (Linux/2.6.35-25-generic; KDE/4.5.1; x86_64; ; ) |
From: Florian Fainelli <florian@openwrt.org>
When au1000_eth probes the MII bus for PHY address, if we do not set au1000_eth
platform data's phy_search_highest_address, the MII probing logic will exit
early and will assume a valid PHY is found at address 0. For MTX-1, the PHY is
at address 31, and without this patch, the link detection/speed/duplex would not
work correctly.
CC: stable@kernel.org
Signed-off-by: Florian Fainelli <florian@openwrt.org>
---
Stable: 2.6.34+
diff --git a/arch/mips/alchemy/mtx-1/platform.c
b/arch/mips/alchemy/mtx-1/platform.c
index e30e42a..956f946 100644
--- a/arch/mips/alchemy/mtx-1/platform.c
+++ b/arch/mips/alchemy/mtx-1/platform.c
@@ -28,6 +28,8 @@
#include <linux/mtd/physmap.h>
#include <mtd/mtd-abi.h>
+#include <asm/mach-au1x00/au1xxx_eth.h>
+
static struct gpio_keys_button mtx1_gpio_button[] = {
{
.gpio = 207,
@@ -140,10 +142,17 @@ static struct __initdata platform_device * mtx1_devs[] = {
&mtx1_mtd,
};
+static struct au1000_eth_platform_data mtx1_au1000_eth0_pdata = {
+ .phy_search_highest_addr = 1,
+ .phy1_search_mac0 = 1,
+};
+
static int __init mtx1_register_devices(void)
{
int rc;
+ au1xxx_override_eth_cfg(0, &mtx1_au1000_eth0_pdata);
+
rc = gpio_request(mtx1_gpio_button[0].gpio,
mtx1_gpio_button[0].desc);
if (rc < 0) {
--
1.7.1
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [RFC PATCH 02/10] MIPS: Octeon: Add device tree source files., Benjamin Herrenschmidt |
|---|---|
| Next by Date: | Re: Memory needed for hibernation too much, Jacky Lam |
| Previous by Thread: | Memory needed for hibernation too much, Jacky Lam |
| Next by Thread: | Shadow registers optimizations, Nikolaos Korkakakis |
| Indexes: | [Date] [Thread] [Top] [All Lists] |