public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PULL] clockevents for 4.16
@ 2018-01-08 13:27 Daniel Lezcano
  2018-01-08 13:28 ` [PATCH 01/20] dt-bindings: timer: Add Actions Semi S700 Daniel Lezcano
  2018-01-08 16:58 ` [PULL] clockevents for 4.16 Ingo Molnar
  0 siblings, 2 replies; 40+ messages in thread
From: Daniel Lezcano @ 2018-01-08 13:27 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: Linux Kernel Mailing List, Andreas Färber, Baolin Wang,
	Romain Izard, Daniel Lezcano


Hi Thomas,

here are the changes for 4.16 synced with tip/timers/core:

 - Change the macro name to TIMER_OF_DECLARE for the owl driver (Andreas
Färber)

 - Add the S700 definition and the compatible string for the owl driver
(Andreas Färber)

 - Add the new spreadtrum timer driver for the SC9860 platform (Baolin Wang)

 - Use the timer-of API, compute the prescaler based on the target
frequency, add the oneshot mode and the clocksource for the stm32
(Benjamin Gaignard)

 - Fix the clock speed message for the tcb clocksource (Romain Izard)

 - Improve the timer-of code by adding documentation and unifying the
function names (Daniel Lezcano)

 - Fix a kernel panic with multiple timers defined in the DT for the
stm32 (Daniel Lezcano)

 - Consolidate and add the delay timer for the stm32 (Daniel Lezcano)

Thanks!

  -- Daniel

The following changes since commit 29f1b2b0fecfae69e31833836f1da3136696eee5:

  posix-timers: Prevent UB from shifting negative signed value
(2018-01-04 14:57:10 +0100)

are available in the git repository at:

  https://git.linaro.org/people/daniel.lezcano/linux.git clockevents/4.16

for you to fetch changes up to 322fd24f5e67c396f04bef01ed33ac6bfca46bcd:

  clocksource/drivers/stm32: Start the timer's counter sooner
(2018-01-08 12:10:02 +0100)

----------------------------------------------------------------
Andreas Färber (3):
      dt-bindings: timer: Add Actions Semi S700
      clocksource/drivers/owl: Adopt TIMER_OF_DECLARE()
      clocksource/drivers/owl: Add the S700

Baolin Wang (2):
      dt-bindings: clocksource: Add Spreadtrum SC9860 timer
      clocksource/drivers/spreadtrum: Add timer driver for Spreadtrum
SC9860 platform

Benjamin Gaignard (4):
      clocksource/drivers/stm32: Convert the driver to timer-of
      clocksource/drivers/stm32: Compute a prescaler value with a
targeted rate
      clocksource/drivers/stm32: Add the oneshot mode
      clocksource/drivers/stm32: Add the clocksource

Daniel Lezcano (10):
      clocksource/drivers/timer-of: Fix function names
      clocksource/drivers/timer-of: Add kernel documentation
      clocksource/drivers/timer-of: Store the device node pointer
      clocksource/drivers/timer-of: Don't request the resource by name
      clocksource/drivers/stm32: Fix kernel panic with multiple timers
      clocksource/drivers/stm32: Use the node name as timer name
      clocksource/drivers/stm32: Encapsulate the timer width sorting out
function
      clocksource/drivers/stm32: Encapsulate more the clockevent code
      clocksource/drivers/stm32: Add the timer delay
      clocksource/drivers/stm32: Start the timer's counter sooner

Romain Izard (1):
      clocksource/drivers/tcb_clksrc: Fix clock speed message

 .../bindings/timer/actions,owl-timer.txt           |   1 +
 .../bindings/timer/spreadtrum,sprd-timer.txt       |  20 ++
 drivers/clocksource/Kconfig                        |   8 +
 drivers/clocksource/Makefile                       |   1 +
 drivers/clocksource/owl-timer.c                    |   5 +-
 drivers/clocksource/tcb_clksrc.c                   |   2 +-
 drivers/clocksource/timer-of.c                     |  85 +++--
 drivers/clocksource/timer-of.h                     |   1 +
 drivers/clocksource/timer-sprd.c                   | 159 +++++++++
 drivers/clocksource/timer-stm32.c                  | 358
+++++++++++++++------
 10 files changed, 508 insertions(+), 132 deletions(-)
 create mode 100644
Documentation/devicetree/bindings/timer/spreadtrum,sprd-timer.txt
 create mode 100644 drivers/clocksource/timer-sprd.c

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

end of thread, other threads:[~2018-01-08 17:38 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-08 13:27 [PULL] clockevents for 4.16 Daniel Lezcano
2018-01-08 13:28 ` [PATCH 01/20] dt-bindings: timer: Add Actions Semi S700 Daniel Lezcano
2018-01-08 13:28   ` [PATCH 02/20] clocksource/drivers/owl: Adopt TIMER_OF_DECLARE() Daniel Lezcano
2018-01-08 13:28   ` [PATCH 03/20] clocksource/drivers/owl: Add the S700 Daniel Lezcano
2018-01-08 13:28   ` [PATCH 04/20] clocksource/drivers/tcb_clksrc: Fix clock speed message Daniel Lezcano
2018-01-08 17:27     ` [tip:timers/core] " tip-bot for Romain Izard
2018-01-08 13:28   ` [PATCH 05/20] clocksource/drivers/timer-of: Fix function names Daniel Lezcano
2018-01-08 17:27     ` [tip:timers/core] " tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 06/20] clocksource/drivers/timer-of: Add kernel documentation Daniel Lezcano
2018-01-08 17:28     ` [tip:timers/core] " tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 07/20] dt-bindings: clocksource: Add Spreadtrum SC9860 timer Daniel Lezcano
2018-01-08 17:28     ` [tip:timers/core] dt-bindings/clocksource: Add Spreadtrum SC9860 timer documentation tip-bot for Baolin Wang
2018-01-08 13:28   ` [PATCH 08/20] clocksource/drivers/spreadtrum: Add timer driver for Spreadtrum SC9860 platform Daniel Lezcano
2018-01-08 17:29     ` [tip:timers/core] clocksource/drivers/spreadtrum: Add timer driver for the " tip-bot for Baolin Wang
2018-01-08 13:28   ` [PATCH 09/20] clocksource/drivers/timer-of: Store the device node pointer Daniel Lezcano
2018-01-08 17:29     ` [tip:timers/core] clocksource/drivers/timer-of: Store the device node pointer in 'struct timer_of' tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 10/20] clocksource/drivers/timer-of: Don't request the resource by name Daniel Lezcano
2018-01-08 17:30     ` [tip:timers/core] " tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 11/20] clocksource/drivers/stm32: Fix kernel panic with multiple timers Daniel Lezcano
2018-01-08 17:30     ` [tip:timers/core] " tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 12/20] clocksource/drivers/stm32: Convert the driver to timer-of Daniel Lezcano
2018-01-08 17:30     ` [tip:timers/core] clocksource/drivers/stm32: Convert the driver to timer_of primitives tip-bot for Benjamin Gaignard
2018-01-08 13:28   ` [PATCH 13/20] clocksource/drivers/stm32: Use the node name as timer name Daniel Lezcano
2018-01-08 17:31     ` [tip:timers/core] " tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 14/20] clocksource/drivers/stm32: Encapsulate the timer width sorting out function Daniel Lezcano
2018-01-08 17:31     ` [tip:timers/core] clocksource/drivers/stm32: Factor out the timer width sorting code tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 15/20] clocksource/drivers/stm32: Compute a prescaler value with a targeted rate Daniel Lezcano
2018-01-08 17:32     ` [tip:timers/core] " tip-bot for Benjamin Gaignard
2018-01-08 13:28   ` [PATCH 16/20] clocksource/drivers/stm32: Add the oneshot mode Daniel Lezcano
2018-01-08 17:32     ` [tip:timers/core] clocksource/drivers/stm32: Add " tip-bot for Benjamin Gaignard
2018-01-08 13:28   ` [PATCH 17/20] clocksource/drivers/stm32: Encapsulate more the clockevent code Daniel Lezcano
2018-01-08 17:33     ` [tip:timers/core] clocksource/drivers/stm32: Factor out more of " tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 18/20] clocksource/drivers/stm32: Add the clocksource Daniel Lezcano
2018-01-08 17:33     ` [tip:timers/core] clocksource/drivers/stm32: Add clocksource functionality tip-bot for Benjamin Gaignard
2018-01-08 13:28   ` [PATCH 19/20] clocksource/drivers/stm32: Add the timer delay Daniel Lezcano
2018-01-08 17:33     ` [tip:timers/core] clocksource/drivers/stm32: Add the timer delay callback tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 20/20] clocksource/drivers/stm32: Start the timer's counter sooner Daniel Lezcano
2018-01-08 17:34     ` [tip:timers/core] " tip-bot for Daniel Lezcano
2018-01-08 16:58 ` [PULL] clockevents for 4.16 Ingo Molnar
2018-01-08 17:07   ` Daniel Lezcano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox