summaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/patches-2.6.30/940-cpmac-titan.patch
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2010-01-03 20:19:32 +0000
committerFlorian Fainelli <florian@openwrt.org>2010-01-03 20:19:32 +0000
commit5a481b16add96022b64d5cc6494b5aa6b17c21f0 (patch)
treee0c82b81e42cd47f20614aaf956a53c5fa676c99 /target/linux/ar7/patches-2.6.30/940-cpmac-titan.patch
parent144fd07cd846e77439125feab06ee4af3f23cec3 (diff)
downloadmaster-31e0f0ae-5a481b16add96022b64d5cc6494b5aa6b17c21f0.tar.gz
master-31e0f0ae-5a481b16add96022b64d5cc6494b5aa6b17c21f0.tar.bz2
master-31e0f0ae-5a481b16add96022b64d5cc6494b5aa6b17c21f0.zip
add support for titan variant (WRTP54G) (#6185)
SVN-Revision: 19022
Diffstat (limited to 'target/linux/ar7/patches-2.6.30/940-cpmac-titan.patch')
-rw-r--r--target/linux/ar7/patches-2.6.30/940-cpmac-titan.patch66
1 files changed, 66 insertions, 0 deletions
diff --git a/target/linux/ar7/patches-2.6.30/940-cpmac-titan.patch b/target/linux/ar7/patches-2.6.30/940-cpmac-titan.patch
new file mode 100644
index 0000000000..0e3a8b9ce4
--- /dev/null
+++ b/target/linux/ar7/patches-2.6.30/940-cpmac-titan.patch
@@ -0,0 +1,66 @@
+--- a/arch/mips/ar7/platform.c 2009-11-18 15:47:42.000000000 +0800
++++ b/arch/mips/ar7/platform.c 2009-11-19 00:56:05.000000000 +0800
+@@ -677,24 +677,32 @@
+ }
+
+ if (ar7_has_high_cpmac()) {
+- res = fixed_phy_add(PHY_POLL, cpmac_high.id, &fixed_phy_status);
++ res = fixed_phy_add(PHY_POLL, ar7_is_titan()?cpmac_high_titan.id: cpmac_high.id, &fixed_phy_status);
+ if (res && res != -ENODEV)
+ return res;
+
+- cpmac_get_mac(1, cpmac_high_data.dev_addr);
+- res = platform_device_register(&cpmac_high);
++ cpmac_get_mac(1, ar7_is_titan() ? cpmac_high_data_titan.dev_addr:
++ cpmac_high_data.dev_addr);
++ res = platform_device_register(ar7_is_titan() ? &cpmac_high_titan :
++ &cpmac_high);
+ if (res)
+ return res;
+ } else {
+- cpmac_low_data.phy_mask = 0xffffffff;
+- }
++ if (ar7_is_titan())
++ cpmac_low_data_titan.phy_mask = 0xffffffff;
++ else
++ cpmac_low_data.phy_mask = 0xffffffff;
++ }
+
+- res = fixed_phy_add(PHY_POLL, cpmac_low.id, &fixed_phy_status);
++ res = fixed_phy_add(PHY_POLL, ar7_is_titan()?cpmac_low_titan.id:
++ cpmac_low.id, &fixed_phy_status);
+ if (res && res != -ENODEV)
+ return res;
+
+- cpmac_get_mac(0, cpmac_low_data.dev_addr);
+- res = platform_device_register(&cpmac_low);
++ cpmac_get_mac(0, ar7_is_titan() ? cpmac_low_data_titan.dev_addr :
++ cpmac_low_data.dev_addr);
++ res = platform_device_register(ar7_is_titan() ? &cpmac_low_titan :
++ &cpmac_low);
+ if (res)
+ return res;
+
+--- a/drivers/net/cpmac.c 2009-11-18 15:47:42.000000000 +0800
++++ b/drivers/net/cpmac.c 2009-11-19 00:58:25.000000000 +0800
+@@ -1236,6 +1236,10 @@
+ ar7_device_reset(AR7_RESET_BIT_CPMAC_HI);
+ ar7_device_reset(AR7_RESET_BIT_EPHY);
+
++ if (ar7_is_titan()) {
++ ar7_device_reset(TITAN_RESET_BIT_EPHY1);
++ }
++
+ cpmac_mii->reset(cpmac_mii);
+
+ for (i = 0; i < 300; i++)
+@@ -1250,7 +1254,8 @@
+ mask = 0;
+ }
+
+- cpmac_mii->phy_mask = ~(mask | 0x80000000);
++ cpmac_mii->phy_mask = ar7_is_titan()? ~(mask | 0x80000000 | 0x40000000):
++ ~(mask | 0x80000000);
+ snprintf(cpmac_mii->id, MII_BUS_ID_SIZE, "1");
+
+ res = mdiobus_register(cpmac_mii);