1. 29 Mar, 2018 8 commits
  2. 23 Mar, 2018 1 commit
  3. 21 Mar, 2018 5 commits
  4. 20 Mar, 2018 10 commits
  5. 19 Mar, 2018 10 commits
  6. 18 Mar, 2018 6 commits
    • Stefano Brivio's avatar
      selftests: pmtu: Drop prints to kernel log from pmtu_vti6_link_change_mtu · e3c72f3d
      Stefano Brivio authored
      Reported-by: default avatarDavid Ahern <dsahern@gmail.com>
      Fixes: 1fad59ea ("selftests: pmtu: Add pmtu_vti6_link_change_mtu test")
      Signed-off-by: default avatarStefano Brivio <sbrivio@redhat.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      e3c72f3d
    • David S. Miller's avatar
      Merge branch 'mv88e6xxx-auto-phy-intr' · ef57e31e
      David S. Miller authored
      Andrew Lunn says:
      
      ====================
      Automatic PHY interrupts
      
      Now that the mv88e6xxx driver either installs in interrupt handler, or
      polls for interrupts, it is possible to always handle PHY interrupts,
      rather than have phylib perform the polling. This speeds up detection
      of link changes and reduces the load on the MDIO bus, which is
      beneficial for PTP.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      ef57e31e
    • Andrew Lunn's avatar
      net: dsa: mv88e6xxx: Add MDIO interrupts for internal PHYs · 6f88284f
      Andrew Lunn authored
      When registering an MDIO bus, it is possible to pass an array of
      interrupts, one per address on the bus. phylib will then associate the
      interrupt to the PHY device, if no other interrupt is provided.
      
      Some of the global2 interrupts are PHY interrupts. Place them into the
      MDIO bus structure.
      Signed-off-by: default avatarAndrew Lunn <andrew@lunn.ch>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      6f88284f
    • Andrew Lunn's avatar
      net: dsa: mv88e6xxx: Add number of internal PHYs · bc393155
      Andrew Lunn authored
      Add to the info structure the number of internal PHYs, if they generate
      interrupts. Some of the older generations of switches have internal
      PHYs, but no interrupt registers. In this case, set the count to zero.
      Signed-off-by: default avatarAndrew Lunn <andrew@lunn.ch>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      bc393155
    • Andrew Lunn's avatar
      net: dsa: mv88e6xxx: Add missing g1 IRQ numbers · adfccf11
      Andrew Lunn authored
      With the recent change to polling for interrupts, it is important that
      the number of global 1 interrupts is listed. Without it, the driver
      requests an interrupt domain for zero interrupts, which returns
      EINVAL, and the probe fails.
      
      Add two missing entries.
      Signed-off-by: default avatarAndrew Lunn <andrew@lunn.ch>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      adfccf11
    • Florian Fainelli's avatar
      net: dsa: mv88e6xxx: Fix missing register lock in serdes_get_stats · ef44d78d
      Florian Fainelli authored
      We can hit the register lock not held assertion with the following path:
      
      [   34.170631] mv88e6085 0.1:00: Switch registers lock not held!
      [   34.176510] CPU: 0 PID: 950 Comm: ethtool Not tainted 4.16.0-rc4 #143
      [   34.182985] Hardware name: Freescale Vybrid VF5xx/VF6xx (Device Tree)
      [   34.189519] Backtrace:
      [   34.192033] [<8010c4b4>] (dump_backtrace) from [<8010c788>] (show_stack+0x20/0x24)
      [   34.199680]  r6:9f5dc010 r5:00000011 r4:9f5dc010 r3:00000000
      [   34.205434] [<8010c768>] (show_stack) from [<80679d38>] (dump_stack+0x24/0x28)
      [   34.212719] [<80679d14>] (dump_stack) from [<804844a8>] (mv88e6xxx_read+0x70/0x7c)
      [   34.220376] [<80484438>] (mv88e6xxx_read) from [<804870dc>] (mv88e6xxx_port_get_cmode+0x34/0x4c)
      [   34.229257]  r5:a09cd128 r4:9ee31d07
      [   34.232880] [<804870a8>] (mv88e6xxx_port_get_cmode) from [<80487e6c>] (mv88e6352_port_has_serdes+0x24/0x64)
      [   34.242690]  r4:9f5dc010
      [   34.245309] [<80487e48>] (mv88e6352_port_has_serdes) from [<804880b8>] (mv88e6352_serdes_get_stats+0x28/0x12c)
      [   34.255389]  r4:00000001
      [   34.257973] [<80488090>] (mv88e6352_serdes_get_stats) from [<804811e8>] (mv88e6xxx_get_ethtool_stats+0xb0/0xc0)
      [   34.268156]  r10:00000000 r9:00000000 r8:00000000 r7:a09cd020 r6:00000001 r5:9f5dc01c
      [   34.276052]  r4:9f5dc010
      [   34.278631] [<80481138>] (mv88e6xxx_get_ethtool_stats) from [<8064f740>] (dsa_slave_get_ethtool_stats+0xbc/0xc4)
      
      mv88e6xxx_get_ethtool_stats() calls mv88e6xxx_get_stats() which calls both
      chip->info->ops->stats_get_stats(), which holds the register lock, and
      chip->info->ops->serdes_get_stats() which does not. Have
      chip->info->ops->serdes_get_stats() be running with the register lock held to
      avoid such assertions.
      
      Fixes: 436fe17d ("net: dsa: mv88e6xxx: Allow the SERDES interfaces to have statistics")
      Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
      Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      ef44d78d