1db4135e32
Adds preliminary kernel 4.9 support for this target. - Refreshed/Updated all patches Added 3 new patches: - 093 --> Add virtual PCI MMIO mapping - 230 --> Remove deprecated code - 240 --> Rework AT24 eeprom code to use the new NVMEM API Compiled & tested on cns3xxx (gw2388) Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
14 lines
392 B
Diff
14 lines
392 B
Diff
--- a/drivers/net/phy/broadcom.c
|
|
+++ b/drivers/net/phy/broadcom.c
|
|
@@ -414,6 +414,11 @@ static int bcm5481_config_aneg(struct ph
|
|
/* Write bits 14:0. */
|
|
reg |= (1 << 15);
|
|
phy_write(phydev, 0x18, reg);
|
|
+ } else {
|
|
+ phy_write(phydev, 0x18, 0xf1e7);
|
|
+ phy_write(phydev, 0x1c, 0x8e00);
|
|
+
|
|
+ phy_write(phydev, 0x1c, 0xa41f);
|
|
}
|
|
|
|
if (of_property_read_bool(np, "enet-phy-lane-swap")) {
|