aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/bcm53xx/patches-4.3
diff options
context:
space:
mode:
authorRafał Miłecki <zajec5@gmail.com>2015-10-30 12:55:37 +0000
committerRafał Miłecki <zajec5@gmail.com>2015-10-30 12:55:37 +0000
commite1f3891ca18b4bd52ef03eb961a39db5c6b4d582 (patch)
tree3eeccc80d5dd52689720dee76719315715d23573 /target/linux/bcm53xx/patches-4.3
parent13d88e06c8e4ef729a2c09e4f55449de00338e11 (diff)
downloadmaster-187ad058-e1f3891ca18b4bd52ef03eb961a39db5c6b4d582.tar.gz
master-187ad058-e1f3891ca18b4bd52ef03eb961a39db5c6b4d582.tar.bz2
master-187ad058-e1f3891ca18b4bd52ef03eb961a39db5c6b4d582.zip
bcm53xx: add workaround for Netgear R8000 network
According to the info from NVRAM we should use port 8 for the CPU (and interface eth2). Unfortunately it doesn't work right now, so lets switch to the port 5. Signed-off-by: Rafał Miłecki <zajec5@gmail.com> Forwardport of r46586 from 15.05 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47281 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/bcm53xx/patches-4.3')
-rw-r--r--target/linux/bcm53xx/patches-4.3/710-b53-add-hacky-CPU-port-fixes-for-devices-not-using-p.patch9
1 files changed, 8 insertions, 1 deletions
diff --git a/target/linux/bcm53xx/patches-4.3/710-b53-add-hacky-CPU-port-fixes-for-devices-not-using-p.patch b/target/linux/bcm53xx/patches-4.3/710-b53-add-hacky-CPU-port-fixes-for-devices-not-using-p.patch
index 6015c4aaca..dfc422ee3e 100644
--- a/target/linux/bcm53xx/patches-4.3/710-b53-add-hacky-CPU-port-fixes-for-devices-not-using-p.patch
+++ b/target/linux/bcm53xx/patches-4.3/710-b53-add-hacky-CPU-port-fixes-for-devices-not-using-p.patch
@@ -21,7 +21,7 @@ Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
#include "b53_regs.h"
#include "b53_priv.h"
-@@ -1313,6 +1314,11 @@ static int b53_switch_init(struct b53_de
+@@ -1313,6 +1314,18 @@ static int b53_switch_init(struct b53_de
sw_dev->cpu_port = 5;
}
@@ -30,6 +30,13 @@ Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
+ else if (of_machine_is_compatible("netgear,r8000"))
+ sw_dev->cpu_port = 8;
+
++ /*
++ * Workaround for devices using port 8 (connected to the 3rd iface).
++ * For some reason it doesn't work (no packets on eth2).
++ */
++ if (of_machine_is_compatible("netgear,r8000"))
++ sw_dev->cpu_port = 5;
++
/* cpu port is always last */
sw_dev->ports = sw_dev->cpu_port + 1;
dev->enabled_ports |= BIT(sw_dev->cpu_port);