mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [GIT PULL] timer drivers for 5.2
@ 2019-05-09 11:08 Daniel Lezcano
  2019-05-09 11:10 ` [PATCH 01/15] clocksource/drivers/sun4i: Add a compatible for suniv Daniel Lezcano
  0 siblings, 1 reply; 17+ messages in thread
From: Daniel Lezcano @ 2019-05-09 11:08 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: Alexandre Belloni, David Abdurachmanov, Joseph Lo, Mesih Kilinc,
	Sugaya Taichi, Linux Kernel Mailing List

Hi Thomas,

here a (late) pull request for the changes on 5.2.

 - Add compatible string for suniv for sun4i (Mesih Kilinc)

 - Add COMPILE_TEST option for sp804 (David Abdurachmanov)

 - Replace the compensation time when suspend happens on tegra with the one
   provided by the generic framework (Joseph Lo)

 - Cleanup, shutdown and oneshot mode fix on milbeaut timer (Sugaya Taichi)

 - Atmel TCB rework to fix boot failure on boards without PIT or misfunction
   on system using a preempt-rt kernel (Alexandre Belloni)

Thanks!

  -- Daniel


The following changes since commit 67d06e6efa41c4135cfc4c4c5c9b55d5e3a9b6f7:

  dt-bindings: timer: Add Allwinner suniv timer (2019-05-02 21:55:58 +0200)

are available in the Git repository at:

  http://git@git.linaro.org/people/daniel.lezcano/linux.git tags/timers-v5.2

for you to fetch changes up to 8c9374068ef6dc3fdf244484b4711a6e10c84d1a:

  misc: atmel_tclib: Do not probe already used TCBs (2019-05-02 21:55:58
+0200)

----------------------------------------------------------------
 - Add compatible string for suniv for sun4i (Mesih Kilinc)

 - Add COMPILE_TEST option for sp804 (David Abdurachmanov)

 - Replace the compensation time when suspend happens on tegra with the one
   provided by the generic framework (Joseph Lo)

 - Cleanup, shutdown and oneshot mode fix on milbeaut timer (Sugaya Taichi)

 - Atmel TCB rework to fix boot failure on boards without PIT or misfunction
   on system using a preempt-rt kernel (Alexandre Belloni)

----------------------------------------------------------------
Alexandre Belloni (8):
      ARM: at91: move SoC specific definitions to SoC folder
      clocksource/drivers/tcb_clksrc: Stop depending on atmel_tclib
      clocksource/drivers/tcb_clksrc: Use tcb as sched_clock
      ARM: at91: Implement clocksource selection
      clocksource/drivers/tcb_clksrc: Move Kconfig option
      clocksource/drivers/timer-atmel-pit: Rework Kconfig option
      clocksource/drivers/tcb_clksrc: Rename the file for consistency
      misc: atmel_tclib: Do not probe already used TCBs

David Abdurachmanov (1):
      clocksource/drivers/sp804: Add COMPILE_TEST to CONFIG_ARM_TIMER_SP804

Joseph Lo (1):
      clocksource/drivers/tegra: Rework for compensation of suspend time

Mesih Kilinc (1):
      clocksource/drivers/sun4i: Add a compatible for suniv

Sugaya Taichi (3):
      clocksource/drivers/timer-milbeaut: Fix to enable one-shot timer
      clocksource/drivers/timer-milbeaut: Add shutdown function
      clocksource/drivers/timer-milbeaut: Cleanup common register accesses

kbuild test robot (1):
      clocksource/drivers/timer-atmel-tcb: Convert
tc_clksrc_suspend|resume() to static

 arch/arm/mach-at91/Kconfig                              |  23
+++++++++++++++
 drivers/clocksource/Kconfig                             |  14 +++++++--
 drivers/clocksource/Makefile                            |   2 +-
 drivers/clocksource/{tcb_clksrc.c => timer-atmel-tcb.c} | 130
+++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------
 drivers/clocksource/timer-milbeaut.c                    |  66
++++++++++++++++++++++++++++++------------
 drivers/clocksource/timer-sun4i.c                       |   5 +++-
 drivers/clocksource/timer-tegra20.c                     |  63
+++++++++++++---------------------------
 drivers/misc/Kconfig                                    |  24
---------------
 drivers/misc/atmel_tclib.c                              |   5 +++-
 drivers/pwm/pwm-atmel-tcb.c                             |   2 +-
 include/{linux/atmel_tc.h => soc/at91/atmel_tcb.h}      |   4 +--
 11 files changed, 201 insertions(+), 137 deletions(-)
 rename drivers/clocksource/{tcb_clksrc.c => timer-atmel-tcb.c} (79%)
 rename include/{linux/atmel_tc.h => soc/at91/atmel_tcb.h} (99%)


-- 
 <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] 17+ messages in thread

end of thread, other threads:[~2019-06-18 12:13 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-09 11:08 [GIT PULL] timer drivers for 5.2 Daniel Lezcano
2019-05-09 11:10 ` [PATCH 01/15] clocksource/drivers/sun4i: Add a compatible for suniv Daniel Lezcano
2019-05-09 11:10   ` [PATCH 02/15] clocksource/drivers/sp804: Add COMPILE_TEST to CONFIG_ARM_TIMER_SP804 Daniel Lezcano
2019-06-18 12:07     ` Helmut Grohne
2019-05-09 11:10   ` [PATCH 03/15] clocksource/drivers/tegra: Rework for compensation of suspend time Daniel Lezcano
2019-05-09 11:10   ` [PATCH 04/15] clocksource/drivers/timer-milbeaut: Fix to enable one-shot timer Daniel Lezcano
2019-05-09 11:10   ` [PATCH 05/15] clocksource/drivers/timer-milbeaut: Add shutdown function Daniel Lezcano
2019-05-09 11:10   ` [PATCH 06/15] clocksource/drivers/timer-milbeaut: Cleanup common register accesses Daniel Lezcano
2019-05-09 11:10   ` [PATCH 07/15] ARM: at91: move SoC specific definitions to SoC folder Daniel Lezcano
2019-05-09 11:10   ` [PATCH 08/15] clocksource/drivers/tcb_clksrc: Stop depending on atmel_tclib Daniel Lezcano
2019-05-09 11:10   ` [PATCH 09/15] clocksource/drivers/tcb_clksrc: Use tcb as sched_clock Daniel Lezcano
2019-05-09 11:10   ` [PATCH 10/15] ARM: at91: Implement clocksource selection Daniel Lezcano
2019-05-09 11:10   ` [PATCH 11/15] clocksource/drivers/tcb_clksrc: Move Kconfig option Daniel Lezcano
2019-05-09 11:10   ` [PATCH 12/15] clocksource/drivers/timer-atmel-pit: Rework " Daniel Lezcano
2019-05-09 11:10   ` [PATCH 13/15] clocksource/drivers/tcb_clksrc: Rename the file for consistency Daniel Lezcano
2019-05-09 11:10   ` [PATCH 14/15] clocksource/drivers/timer-atmel-tcb: Convert tc_clksrc_suspend|resume() to static Daniel Lezcano
2019-05-09 11:10   ` [PATCH 15/15] misc: atmel_tclib: Do not probe already used TCBs Daniel Lezcano

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

all inboxes | Powered by JetHome®