diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2015-06-21 21:06:09 +0000 |
---|---|---|
committer | Rafał Miłecki <zajec5@gmail.com> | 2015-06-21 21:06:09 +0000 |
commit | 5c809ecfe7f227c77ba6c4ad3a87cf6263bee477 (patch) | |
tree | b3380cac0875d735849cefbe4eea018514ae9f54 /target/linux | |
parent | 20b3f6683de9fef52610c15ca3035c61960d537c (diff) | |
download | upstream-5c809ecfe7f227c77ba6c4ad3a87cf6263bee477.tar.gz upstream-5c809ecfe7f227c77ba6c4ad3a87cf6263bee477.tar.bz2 upstream-5c809ecfe7f227c77ba6c4ad3a87cf6263bee477.zip |
b53: Allow using all 8 ports on BCM53011
On two tested devices: Netgear R6250 (BCM53011 rev 2) and Luxul XWC-1000
(BCM53011 rev 3) it was possible to use port 7 and eth1 (instead of port
5 and eth0). It seems BCM53011 just like BCM53012 has 8 ports and
usually 3 of them are connected to the SoC.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 46104
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/generic/files/drivers/net/phy/b53/b53_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic/files/drivers/net/phy/b53/b53_common.c b/target/linux/generic/files/drivers/net/phy/b53/b53_common.c index 47b5a8b03f..859d8d1bdc 100644 --- a/target/linux/generic/files/drivers/net/phy/b53/b53_common.c +++ b/target/linux/generic/files/drivers/net/phy/b53/b53_common.c @@ -1201,7 +1201,7 @@ static const struct b53_chip_data b53_switch_chips[] = { .dev_name = "BCM53011", .alias = "bcm53011", .vlans = 4096, - .enabled_ports = 0x1f, + .enabled_ports = 0x1bf, .cpu_port = B53_CPU_PORT_25, /* TODO: auto detect */ .vta_regs = B53_VTA_REGS, .duplex_reg = B53_DUPLEX_STAT_GE, |