1. 02 Jun, 2020 1 commit
    • Tony Lindgren's avatar
      ARM: dts: omap4-droid4: Fix spi configuration and increase rate · 0df12a01
      Tony Lindgren authored
      We can currently sometimes get "RXS timed out" errors and "EOT timed out"
      errors with spi transfers.
      
      These errors can be made easy to reproduce by reading the cpcap iio
      values in a loop while keeping the CPUs busy by also reading /dev/urandom.
      
      The "RXS timed out" errors we can fix by adding spi-cpol and spi-cpha
      in addition to the spi-cs-high property we already have.
      
      The "EOT timed out" errors we can fix by increasing the spi clock rate
      to 9.6 MHz. Looks similar MC13783 PMIC says it works at spi clock rates
      up to 20 MHz, so let's assume we can pick any rate up to 20 MHz also
      for cpcap.
      
      Cc: maemo-leste@lists.dyne.org
      Cc: Merlijn Wajer <merlijn@wizzup.org>
      Cc: Pavel Machek <pavel@ucw.cz>
      Cc: Sebastian Reichel <sre@kernel.org>
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      0df12a01
  2. 31 May, 2020 1 commit
    • Tony Lindgren's avatar
      bus: ti-sysc: Flush posted write on enable and disable · 5ce8aee8
      Tony Lindgren authored
      Looks like we're missing flush of posted write after module enable and
      disable. I've seen occasional errors accessing various modules, and it
      is suspected that the lack of posted writes can also cause random reboots.
      
      The errors we can see are similar to the one below from spi for example:
      
      44000000.ocp:L3 Custom Error: MASTER MPU TARGET L4CFG (Read): Data Access
      in User mode during Functional access
      ...
      mcspi_wait_for_reg_bit
      omap2_mcspi_transfer_one
      spi_transfer_one_message
      ...
      
      We also want to also flush posted write for disable. The clkctrl clock
      disable happens after module disable, and we don't want to have the
      module potentially stay active while we're trying to disable the clock.
      
      Fixes: d59b6056 ("bus: ti-sysc: Add generic enable/disable functions")
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      5ce8aee8
  3. 19 May, 2020 1 commit
  4. 12 May, 2020 1 commit
    • Tony Lindgren's avatar
      ARM: dts: Fix wrong mdio clock for dm814x · fb6823a6
      Tony Lindgren authored
      Recent PTP-specific cpsw driver changes started exposing an issue on at
      at least j5eco-evm:
      
      Unhandled fault: external abort on non-linefetch (0x1008) at 0xf0169004
      ...
      (davinci_mdio_runtime_suspend) from [<c063f2a4>] (__rpm_callback+0x84/0x154)
      (__rpm_callback) from [<c063f394>] (rpm_callback+0x20/0x80)
      (rpm_callback) from [<c063f4f0>] (rpm_suspend+0xfc/0x6ac)
      (rpm_suspend) from [<c0640af0>] (pm_runtime_work+0x88/0xa4)
      (pm_runtime_work) from [<c0155338>] (process_one_work+0x228/0x568)
      ...
      
      Let's fix the issue by using the correct mdio clock as suggested by
      Grygorii Strashko <grygorii.strashko@ti.com>.
      
      The DM814_ETHERNET_CPGMAC0_CLKCTRL clock is the interconnect target module
      clock and managed by ti-sysc.
      
      Fixes: 6398f347 ("ARM: dts: Configure interconnect target module for dm814x cpsw")
      Cc: Grygorii Strashko <grygorii.strashko@ti.com>
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      fb6823a6
  5. 08 May, 2020 1 commit
    • Grygorii Strashko's avatar
      ARM: dts: am437x: fix networking on boards with ksz9031 phy · 2de00450
      Grygorii Strashko authored
      Since commit bcf3440c ("net: phy: micrel: add phy-mode support for the
      KSZ9031 PHY") the networking is broken on boards:
       am437x-gp-evm
       am437x-sk-evm
       am437x-idk-evm
      
      All above boards have phy-mode = "rgmii" and this is worked before, because
      KSZ9031 PHY started with default RGMII internal delays configuration (TX
      off, RX on 1.2 ns) and MAC provided TX delay. After above commit, the
      KSZ9031 PHY starts handling phy mode properly and disables RX delay, as
      result networking is become broken.
      
      Fix it by switching to phy-mode = "rgmii-rxid" to reflect previous
      behavior.
      
      Cc: Oleksij Rempel <o.rempel@pengutronix.de>
      Cc: Andrew Lunn <andrew@lunn.ch>
      Cc: Philippe Schenker <philippe.schenker@toradex.com>
      Fixes: bcf3440c ("net: phy: micrel: add phy-mode support for the KSZ9031 PHY")
      Reviewed-by: default avatarPhilippe Schenker <philippe.schenker@toradex.com>
      Signed-off-by: default avatarGrygorii Strashko <grygorii.strashko@ti.com>
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      2de00450
  6. 07 May, 2020 1 commit
    • Grygorii Strashko's avatar
      ARM: dts: am57xx: fix networking on boards with ksz9031 phy · 820f8a87
      Grygorii Strashko authored
      Since commit bcf3440c ("net: phy: micrel: add phy-mode support for the
      KSZ9031 PHY") the networking is broken on boards:
       am571x-idk
       am572x-idk
       am574x-idk
       am57xx-beagle-x15
      
      All above boards have phy-mode = "rgmii" and this is worked before because
      KSZ9031 PHY started with default RGMII internal delays configuration (TX
      off, RX on 1.2 ns) and MAC provided TX delay. After above commit, the
      KSZ9031 PHY starts handling phy mode properly and disables RX delay, as
      result networking is become broken.
      
      Fix it by switching to phy-mode = "rgmii-rxid" to reflect previous
      behavior.
      
      Cc: Oleksij Rempel <o.rempel@pengutronix.de>
      Cc: Andrew Lunn <andrew@lunn.ch>
      Cc: Philippe Schenker <philippe.schenker@toradex.com>
      Fixes: bcf3440c ("net: phy: micrel: add phy-mode support for the KSZ9031 PHY")
      Reviewed-by: default avatarPhilippe Schenker <philippe.schenker@toradex.com>
      Signed-off-by: default avatarGrygorii Strashko <grygorii.strashko@ti.com>
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      820f8a87
  7. 05 May, 2020 2 commits
    • Tony Lindgren's avatar
      ARM: dts: omap4-droid4: Fix occasional lost wakeirq for uart1 · 738b150e
      Tony Lindgren authored
      Looks like using the UART CTS pin does not always trigger for a wake-up
      when the SoC is idle.
      
      This is probably because the modem first uses gpio_149 to signal the SoC
      that data will be sent, and the CTS will only get used later when the
      data transfer is starting.
      
      Let's fix the issue by configuring the gpio_149 pad as the wakeirq for
      UART. We have gpio_149 managed by the USB PHY for powering up the right
      USB mode, and after that, the gpio gets recycled as the modem wake-up
      pin. If needeed, the USB PHY can also later on be configured to use
      gpio_149 pad as the wakeirq as a shared irq.
      
      Let's also configure the missing properties for uart-has-rtscts and
      current-speed for the modem port while at it. We already configure the
      hardware flow control pins with uart1_pins pinctrl setting.
      
      Cc: maemo-leste@lists.dyne.org
      Cc: Merlijn Wajer <merlijn@wizzup.org>
      Cc: Pavel Machek <pavel@ucw.cz>
      Cc: Sebastian Reichel <sre@kernel.org>
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      738b150e
    • Tony Lindgren's avatar
      ARM: dts: omap4-droid4: Fix flakey wlan by disabling internal pull for gpio · 30fa60c6
      Tony Lindgren authored
      The wlan on droid4 is flakey on some devices, and experiments have shown this
      gets fixed if we disable the internal pull for wlan gpio interrupt line.
      
      The symptoms are that the wlan connection is very slow and almost useless
      with lots of wlcore firmware reboot warnings in the dmesg.
      
      In addition to configuring the wlan gpio pulls, let's also configure the rest
      of the wlan sd pins. We have not configured those eariler as we're booting
      using kexec.
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      30fa60c6
  8. 21 Apr, 2020 3 commits
  9. 12 Apr, 2020 10 commits
    • Linus Torvalds's avatar
      Linux 5.7-rc1 · 8f3d9f35
      Linus Torvalds authored
      8f3d9f35
    • Linus Torvalds's avatar
      MAINTAINERS: sort field names for all entries · 3b50142d
      Linus Torvalds authored
      This sorts the actual field names too, potentially causing even more
      chaos and confusion at merge time if you have edited the MAINTAINERS
      file.  But the end result is a more consistent layout, and hopefully
      it's a one-time pain minimized by doing this just before the -rc1
      release.
      
      This was entirely scripted:
      
        ./scripts/parse-maintainers.pl --input=MAINTAINERS --output=MAINTAINERS --order
      Requested-by: default avatarJoe Perches <joe@perches.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      3b50142d
    • Linus Torvalds's avatar
      MAINTAINERS: sort entries by entry name · 4400b7d6
      Linus Torvalds authored
      They are all supposed to be sorted, but people who add new entries don't
      always know the alphabet.  Plus sometimes the entry names get edited,
      and people don't then re-order the entry.
      
      Let's see how painful this will be for merging purposes (the MAINTAINERS
      file is often edited in various different trees), but Joe claims there's
      relatively few patches in -next that touch this, and doing it just
      before -rc1 is likely the best time.  Fingers crossed.
      
      This was scripted with
      
        /scripts/parse-maintainers.pl --input=MAINTAINERS --output=MAINTAINERS
      
      but then I also ended up manually upper-casing a few entry names that
      stood out when looking at the end result.
      Requested-by: default avatarJoe Perches <joe@perches.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      4400b7d6
    • Linus Torvalds's avatar
      Merge tag 'x86-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 4f8a3cc1
      Linus Torvalds authored
      Pull x86 fixes from Thomas Gleixner:
       "A set of three patches to fix the fallout of the newly added split
        lock detection feature.
      
        It addressed the case where a KVM guest triggers a split lock #AC and
        KVM reinjects it into the guest which is not prepared to handle it.
      
        Add proper sanity checks which prevent the unconditional injection
        into the guest and handles the #AC on the host side in the same way as
        user space detections are handled. Depending on the detection mode it
        either warns and disables detection for the task or kills the task if
        the mode is set to fatal"
      
      * tag 'x86-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        KVM: VMX: Extend VMXs #AC interceptor to handle split lock #AC in guest
        KVM: x86: Emulate split-lock access as a write in emulator
        x86/split_lock: Provide handle_guest_split_lock()
      4f8a3cc1
    • Linus Torvalds's avatar
      Merge tag 'timers-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 0785249f
      Linus Torvalds authored
      Pull time(keeping) updates from Thomas Gleixner:
      
       - Fix the time_for_children symlink in /proc/$PID/ so it properly
         reflects that it part of the 'time' namespace
      
       - Add the missing userns limit for the allowed number of time
         namespaces, which was half defined but the actual array member was
         not added. This went unnoticed as the array has an exessive empty
         member at the end but introduced a user visible regression as the
         output was corrupted.
      
       - Prevent further silent ucount corruption by adding a BUILD_BUG_ON()
         to catch half updated data.
      
      * tag 'timers-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        ucount: Make sure ucounts in /proc/sys/user don't regress again
        time/namespace: Add max_time_namespaces ucount
        time/namespace: Fix time_for_children symlink
      0785249f
    • Linus Torvalds's avatar
      Merge tag 'sched-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 590680d1
      Linus Torvalds authored
      Pull scheduler fixes/updates from Thomas Gleixner:
      
       - Deduplicate the average computations in the scheduler core and the
         fair class code.
      
       - Fix a raise between runtime distribution and assignement which can
         cause exceeding the quota by up to 70%.
      
       - Prevent negative results in the imbalanace calculation
      
       - Remove a stale warning in the workqueue code which can be triggered
         since the call site was moved out of preempt disabled code. It's a
         false positive.
      
       - Deduplicate the print macros for procfs
      
       - Add the ucmap values to the SCHED_DEBUG procfs output for completness
      
      * tag 'sched-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        sched/debug: Add task uclamp values to SCHED_DEBUG procfs
        sched/debug: Factor out printing formats into common macros
        sched/debug: Remove redundant macro define
        sched/core: Remove unused rq::last_load_update_tick
        workqueue: Remove the warning in wq_worker_sleeping()
        sched/fair: Fix negative imbalance in imbalance calculation
        sched/fair: Fix race between runtime distribution and assignment
        sched/fair: Align rq->avg_idle and rq->avg_scan_cost
      590680d1
    • Linus Torvalds's avatar
      Merge tag 'perf-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 20e2aa81
      Linus Torvalds authored
      Pull perf fixes from Thomas Gleixner:
       "Three fixes/updates for perf:
      
         - Fix the perf event cgroup tracking which tries to track the cgroup
           even for disabled events.
      
         - Add Ice Lake server support for uncore events
      
         - Disable pagefaults when retrieving the physical address in the
           sampling code"
      
      * tag 'perf-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        perf/core: Disable page faults when getting phys address
        perf/x86/intel/uncore: Add Ice Lake server uncore support
        perf/cgroup: Correct indirection in perf_less_group_idx()
        perf/core: Fix event cgroup tracking
      20e2aa81
    • Linus Torvalds's avatar
      Merge tag 'locking-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 652fa53c
      Linus Torvalds authored
      Pull locking fixes from Thomas Gleixner:
       "Three small fixes/updates for the locking core code:
      
         - Plug a task struct reference leak in the percpu rswem
           implementation.
      
         - Document the refcount interaction with PID_MAX_LIMIT
      
         - Improve the 'invalid wait context' data dump in lockdep so it
           contains all information which is required to decode the problem"
      
      * tag 'locking-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        locking/lockdep: Improve 'invalid wait context' splat
        locking/refcount: Document interaction with PID_MAX_LIMIT
        locking/percpu-rwsem: Fix a task_struct refcount
      652fa53c
    • Linus Torvalds's avatar
      Merge tag '5.7-rc-smb3-fixes-part2' of git://git.samba.org/sfrench/cifs-2.6 · 4119bf9f
      Linus Torvalds authored
      Pull cifs fixes from Steve French:
       "Ten cifs/smb fixes:
      
         - five RDMA (smbdirect) related fixes
      
         - add experimental support for swap over SMB3 mounts
      
         - also a fix which improves performance of signed connections"
      
      * tag '5.7-rc-smb3-fixes-part2' of git://git.samba.org/sfrench/cifs-2.6:
        smb3: enable swap on SMB3 mounts
        smb3: change noisy error message to FYI
        smb3: smbdirect support can be configured by default
        cifs: smbd: Do not schedule work to send immediate packet on every receive
        cifs: smbd: Properly process errors on ib_post_send
        cifs: Allocate crypto structures on the fly for calculating signatures of incoming packets
        cifs: smbd: Update receive credits before sending and deal with credits roll back on failure before sending
        cifs: smbd: Check send queue size before posting a send
        cifs: smbd: Merge code to track pending packets
        cifs: ignore cached share root handle closing errors
      4119bf9f
    • Linus Torvalds's avatar
      Merge tag 'nfs-for-5.7-2' of git://git.linux-nfs.org/projects/trondmy/linux-nfs · 50bda5fa
      Linus Torvalds authored
      Pull NFS client bugfix from Trond Myklebust:
       "Fix an RCU read lock leakage in pnfs_alloc_ds_commits_list()"
      
      * tag 'nfs-for-5.7-2' of git://git.linux-nfs.org/projects/trondmy/linux-nfs:
        pNFS: Fix RCU lock leakage
      50bda5fa
  10. 11 Apr, 2020 14 commits
  11. 10 Apr, 2020 5 commits