1. 11 Jul, 2020 9 commits
  2. 22 May, 2020 19 commits
  3. 19 May, 2020 1 commit
  4. 18 May, 2020 2 commits
    • Tony Lindgren's avatar
      clocksource/drivers/timer-ti-dm: Add clockevent and clocksource support · aba1ad05
      Tony Lindgren authored
      We can move the TI dmtimer clockevent and clocksource to live under
      drivers/clocksource if we rely only on the clock framework, and handle
      the module configuration directly in the clocksource driver based on the
      device tree data.
      
      This removes the early dependency with system timers to the interconnect
      related code, and we can probe pretty much everything else later on at
      the module_init level.
      
      Let's first add a new driver for timer-ti-dm-systimer based on existing
      arch/arm/mach-omap2/timer.c. Then let's start moving SoCs to probe with
      device tree data while still keeping the old timer.c. And eventually we
      can just drop the old timer.c.
      
      Let's take the opportunity to switch to use readl/writel as pointed out
      by Daniel Lezcano <daniel.lezcano@linaro.org>. This allows further
      clean-up of the timer-ti-dm code the a lot of the shared helpers can
      just become static to the non-syster related code.
      
      Note the boards can optionally configure different timer source clocks
      if needed with assigned-clocks and assigned-clock-parents.
      
      Cc: linux-kernel@vger.kernel.org
      Cc: linux-omap@vger.kernel.org
      Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
      Cc: Grygorii Strashko <grygorii.strashko@ti.com>
      Cc: Keerthy <j-keerthy@ti.com>
      Cc: Lokesh Vutla <lokeshvutla@ti.com>
      Cc: Rob Herring <robh@kernel.org>
      Cc: Tero Kristo <t-kristo@ti.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
      Link: https://lore.kernel.org/r/20200507172330.18679-3-tony@atomide.com
      aba1ad05
    • Tony Lindgren's avatar
      clocksource/drivers/timer-ti-32k: Add support for initializing directly · d15483bb
      Tony Lindgren authored
      Let's allow probing the 32k counter directly based on devicetree data to
      prepare for dropping the related legacy platform code. Let's only do this
      if the parent node is compatible with ti-sysc to make sure we have the
      related devicetree data available.
      
      Let's also show the 32k counter information before registering the
      clocksource, now we see it after the clocksource information which is a
      bit confusing.
      
      Cc: linux-kernel@vger.kernel.org
      Cc: linux-omap@vger.kernel.org
      Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
      Cc: Grygorii Strashko <grygorii.strashko@ti.com>
      Cc: Keerthy <j-keerthy@ti.com>
      Cc: Lokesh Vutla <lokeshvutla@ti.com>
      Cc: Rob Herring <robh@kernel.org>
      Cc: Tero Kristo <t-kristo@ti.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
      Link: https://lore.kernel.org/r/20200507172330.18679-2-tony@atomide.com
      d15483bb
  5. 05 May, 2020 1 commit
  6. 27 Apr, 2020 2 commits
  7. 15 Apr, 2020 1 commit
  8. 12 Apr, 2020 5 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