linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] timers drivers v5.5
@ 2019-08-26 20:41 Daniel Lezcano
  2019-08-26 20:43 ` [PATCH 01/20] clocksource: Remove dev_err() usage after platform_get_irq() Daniel Lezcano
  2019-08-26 20:59 ` [GIT PULL] timers drivers v5.5 Thomas Gleixner
  0 siblings, 2 replies; 24+ messages in thread
From: Daniel Lezcano @ 2019-08-26 20:41 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: Alexandre Belloni, Anson Huang, Avi Fishman, Geert Uytterhoeven,
	Jon Hunter, Magnus Damm, Maxime Ripard, Stephen Boyd,
	Linux Kernel Mailing List

The following changes since commit 08a3c192c93f4359a94bf47971e55b0324b72b8b:

  posix-timers: Prepare for PREEMPT_RT (2019-08-01 20:51:25 +0200)

are available in the Git repository at:

  https://git.linaro.org/people/daniel.lezcano/linux.git tags/timers-v5.5

for you to fetch changes up to befd04abfbe4b933515dddb5659d0744be9dba6a:

  clocksource/drivers/sh_cmt: Document "cmt-48" as deprecated
(2019-08-23 07:38:34 +0200)

----------------------------------------------------------------
- Remove dev_err() when used with platform_get_irq (Stephen Boyd)

- Add DT binding and new compatible for Allwinner sun4i (Maxime Ripard)

- Register the Atmel tcb clocksource for delays (Alexandre Belloni)

- Add a clock divider for the Freescale imx platforms and new timer node
  in the DT (Anson Huang)

- Use DIV_ROUND_CLOSEST macro for the Renesas OSTM (Geert Uytterhoeven)

- Fix GENMASK and timer operation for the npcm timer (Avi Fishman)

- Fix timer-of showing an error message when EPROBE_DEFER is
  returned (Jon Hunter)

- Add new SoC DT binding and match for Renesas timers (Magnus Damm)

----------------------------------------------------------------
Alexandre Belloni (1):
      clocksource/drivers/tcb_clksrc: Register delay timer

Anson Huang (3):
      clocksource/drivers/imx-sysctr: Add internal clock divider handle
      arm64: dts: imx8mm: Add system counter node
      arm64: dts: imx8mq: Add system counter node

Avi Fishman (1):
      clocksource/drivers/npcm: Fix GENMASK and timer operation

Geert Uytterhoeven (1):
      clocksource/drivers/renesas-ostm: Use DIV_ROUND_CLOSEST() helper

Jon Hunter (2):
      clocksource/drivers/timer-of: Do not warn on deferred probe
      clocksource/drivers: Do not warn on probe defer

Magnus Damm (7):
      dt-bindings: timer: renesas, cmt: Add CMT0234 to sh73a0 and r8a7740
      dt-bindings: timer: renesas, cmt: Update CMT1 on sh73a0 and r8a7740
      dt-bindings: timer: renesas, cmt: Add CMT0 and CMT1 to r8a7792
      dt-bindings: timer: renesas, cmt: Add CMT0 and CMT1 to r8a77995
      dt-bindings: timer: renesas, cmt: Update R-Car Gen3 CMT1 usage
      clocksource/drivers/sh_cmt: r8a7740 and sh73a0 SoC-specific match
      clocksource/drivers/sh_cmt: Document "cmt-48" as deprecated

Maxime Ripard (4):
      dt-bindings: timer: Convert Allwinner A10 Timer to a schema
      dt-bindings: timer: Add missing compatibles
      clocksource: sun4i: Add missing compatibles
      dt-bindings: timer: Convert Allwinner A13 HSTimer to a schema

Stephen Boyd (1):
      clocksource: Remove dev_err() usage after platform_get_irq()

 .../bindings/timer/allwinner,sun4i-a10-timer.yaml  | 102
+++++++++++++++++++++
 .../bindings/timer/allwinner,sun4i-timer.txt       |  19 ----
 .../bindings/timer/allwinner,sun5i-a13-hstimer.txt |  26 ------
 .../timer/allwinner,sun5i-a13-hstimer.yaml         |  79 ++++++++++++++++
 .../devicetree/bindings/timer/renesas,cmt.txt      |  40 ++++----
 arch/arm64/boot/dts/freescale/imx8mm.dtsi          |   8 ++
 arch/arm64/boot/dts/freescale/imx8mq.dtsi          |   8 ++
 drivers/clocksource/Kconfig                        |   2 +-
 drivers/clocksource/em_sti.c                       |   4 +-
 drivers/clocksource/renesas-ostm.c                 |   2 +-
 drivers/clocksource/sh_cmt.c                       |  19 +++-
 drivers/clocksource/sh_tmu.c                       |   5 +-
 drivers/clocksource/timer-atmel-tcb.c              |  18 ++++
 drivers/clocksource/timer-imx-sysctr.c             |   5 +
 drivers/clocksource/timer-npcm7xx.c                |   9 +-
 drivers/clocksource/timer-of.c                     |   6 +-
 drivers/clocksource/timer-probe.c                  |   4 +-
 drivers/clocksource/timer-sun4i.c                  |   4 +
 18 files changed, 275 insertions(+), 85 deletions(-)
 create mode 100644
Documentation/devicetree/bindings/timer/allwinner,sun4i-a10-timer.yaml
 delete mode 100644
Documentation/devicetree/bindings/timer/allwinner,sun4i-timer.txt
 delete mode 100644
Documentation/devicetree/bindings/timer/allwinner,sun5i-a13-hstimer.txt
 create mode 100644
Documentation/devicetree/bindings/timer/allwinner,sun5i-a13-hstimer.yaml

-- 
 <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog


^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2019-08-26 22:38 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-26 20:41 [GIT PULL] timers drivers v5.5 Daniel Lezcano
2019-08-26 20:43 ` [PATCH 01/20] clocksource: Remove dev_err() usage after platform_get_irq() Daniel Lezcano
2019-08-26 20:43   ` [PATCH 02/20] dt-bindings: timer: Convert Allwinner A10 Timer to a schema Daniel Lezcano
2019-08-26 20:43   ` [PATCH 03/20] dt-bindings: timer: Add missing compatibles Daniel Lezcano
2019-08-26 20:43   ` [PATCH 04/20] clocksource: sun4i: " Daniel Lezcano
2019-08-26 20:43   ` [PATCH 05/20] dt-bindings: timer: Convert Allwinner A13 HSTimer to a schema Daniel Lezcano
2019-08-26 20:43   ` [PATCH 06/20] clocksource/drivers/tcb_clksrc: Register delay timer Daniel Lezcano
2019-08-26 20:43   ` [PATCH 07/20] clocksource/drivers/imx-sysctr: Add internal clock divider handle Daniel Lezcano
2019-08-26 20:43   ` [PATCH 08/20] arm64: dts: imx8mm: Add system counter node Daniel Lezcano
2019-08-26 20:43   ` [PATCH 09/20] arm64: dts: imx8mq: " Daniel Lezcano
2019-08-26 20:43   ` [PATCH 10/20] clocksource/drivers/renesas-ostm: Use DIV_ROUND_CLOSEST() helper Daniel Lezcano
2019-08-26 20:43   ` [PATCH 11/20] clocksource/drivers/npcm: Fix GENMASK and timer operation Daniel Lezcano
2019-08-26 20:43   ` [PATCH 12/20] clocksource/drivers/timer-of: Do not warn on deferred probe Daniel Lezcano
2019-08-26 20:44   ` [PATCH 13/20] clocksource/drivers: Do not warn on probe defer Daniel Lezcano
2019-08-26 20:44   ` [PATCH 14/20] dt-bindings: timer: renesas, cmt: Add CMT0234 to sh73a0 and r8a7740 Daniel Lezcano
2019-08-26 20:44   ` [PATCH 15/20] dt-bindings: timer: renesas, cmt: Update CMT1 on " Daniel Lezcano
2019-08-26 20:44   ` [PATCH 16/20] dt-bindings: timer: renesas, cmt: Add CMT0 and CMT1 to r8a7792 Daniel Lezcano
2019-08-26 20:44   ` [PATCH 17/20] dt-bindings: timer: renesas, cmt: Add CMT0 and CMT1 to r8a77995 Daniel Lezcano
2019-08-26 20:44   ` [PATCH 18/20] dt-bindings: timer: renesas, cmt: Update R-Car Gen3 CMT1 usage Daniel Lezcano
2019-08-26 20:44   ` [PATCH 19/20] clocksource/drivers/sh_cmt: r8a7740 and sh73a0 SoC-specific match Daniel Lezcano
2019-08-26 20:44   ` [PATCH 20/20] clocksource/drivers/sh_cmt: Document "cmt-48" as deprecated Daniel Lezcano
2019-08-26 20:59 ` [GIT PULL] timers drivers v5.5 Thomas Gleixner
2019-08-26 22:31   ` Daniel Lezcano
2019-08-26 22:38   ` [GIT PULL] timers drivers v5.4 Daniel Lezcano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).