* [GIt PULL] timer drivers for v6.13-rc1
@ 2024-11-13 15:13 Daniel Lezcano
2024-11-13 20:20 ` [tip: timers/core] Merge tag 'timers-v6.13-rc1' of https://git.linaro.org/people/daniel.lezcano/linux into timers/core tip-bot2 for Thomas Gleixner
0 siblings, 1 reply; 2+ messages in thread
From: Daniel Lezcano @ 2024-11-13 15:13 UTC (permalink / raw)
To: Thomas Gleixner
Cc: Linux Kernel Mailing List, linux, Judith Mendez, Mark Brown,
Paul Burton, Sergio Paracuellos, Ivaylo Ivanov, Rob Herring,
Javier Carrasco, Tang Bin
Hi Thomas,
please consider the following changes for the timer drivers v6.13-rc1
The following changes since commit 3c2fb0152175f9f596b40763cdc1378297da60af:
hrtimers: Delete hrtimer_init_on_stack() (2024-11-07 02:47:07 +0100)
are available in the Git repository at:
https://git.linaro.org/people/daniel.lezcano/linux.git
tags/timers-v6.13-rc1
for you to fetch changes up to 08b97fbd13de79744b31d2b3c8a0ab1a409b94fa:
clocksource/drivers/arm_arch_timer: Use of_property_present() for
non-boolean properties (2024-11-13 13:49:33 +0100)
----------------------------------------------------------------
- Remove unused dw_apb_clockevent_[pause|resume|stop] functions as
they are unused since 2021 (David Alan Gilbert)
- Make the sp804 driver user selectable as they may be unused on some
platforms (Mark Brown)
- Don't fail if the ti-dm does not describe an interrupt in the DT as
this could be a normal situation if the PWM is used (Judith Mendez)
- Always use cluster 0 counter as a clocksource on a multi-cluster
system to prevent problems related to the time shifting between
clusters if multiple per cluster clocksource is used (Paul Burton)
- Move the RaLink system tick counter from the arch directory to the
clocksource directory (Sergio Paracuellos)
- Convert the owl-timer bindings into yaml schema (Ivaylo Ivanov)
- Fix child node refcount handling on the TI DM by relying on the
__free annotation to automatically release the refcount on the node
(Javier Carrasco)
- Remove pointless cast in the GPX driver as PTR_ERR already does that
(Tang Bin)
- Use of_property_present() for non-boolean properties where it is
possible in the different drivers (Rob Herring)
----------------------------------------------------------------
Dr. David Alan Gilbert (1):
clocksource/drivers/dw_apb: Remove unused dw_apb_clockevent functions
Ivaylo Ivanov (1):
dt-bindings: timer: actions,owl-timer: convert to YAML
Javier Carrasco (1):
clocksource/drivers/timer-ti-dm: Fix child node refcount handling
Judith Mendez (1):
clocksource/drivers/timer-ti-dm: Don't fail probe if int not found
Mark Brown (1):
clocksource/drivers:sp804: Make user selectable
Paul Burton (1):
clocksource/drivers/mips-gic-timer: Always use cluster 0 counter
as clocksource
Rob Herring (Arm) (1):
clocksource/drivers/arm_arch_timer: Use of_property_present() for
non-boolean properties
Sergio Paracuellos (1):
clocksource/drivers/ralink: Add Ralink System Tick Counter driver
Tang Bin (1):
clocksource/drivers/gpx: Remove redundant casts
.../bindings/timer/actions,owl-timer.txt | 21 ----
.../bindings/timer/actions,owl-timer.yaml | 107
+++++++++++++++++++++
MAINTAINERS | 2 +-
arch/mips/ralink/Kconfig | 7 --
arch/mips/ralink/Makefile | 2 -
drivers/clocksource/Kconfig | 12 ++-
drivers/clocksource/Makefile | 1 +
drivers/clocksource/arm_arch_timer.c | 2 +-
drivers/clocksource/dw_apb_timer.c | 39 --------
drivers/clocksource/mips-gic-timer.c | 39 +++++++-
drivers/clocksource/timer-gxp.c | 2 +-
.../clocksource/timer-ralink.c | 11 +--
drivers/clocksource/timer-ti-dm-systimer.c | 8 +-
drivers/clocksource/timer-ti-dm.c | 8 +-
include/linux/dw_apb_timer.h | 3 -
15 files changed, 174 insertions(+), 90 deletions(-)
delete mode 100644
Documentation/devicetree/bindings/timer/actions,owl-timer.txt
create mode 100644
Documentation/devicetree/bindings/timer/actions,owl-timer.yaml
rename arch/mips/ralink/cevt-rt3352.c =>
drivers/clocksource/timer-ralink.c (91%)
--
<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] 2+ messages in thread
* [tip: timers/core] Merge tag 'timers-v6.13-rc1' of https://git.linaro.org/people/daniel.lezcano/linux into timers/core
2024-11-13 15:13 [GIt PULL] timer drivers for v6.13-rc1 Daniel Lezcano
@ 2024-11-13 20:20 ` tip-bot2 for Thomas Gleixner
0 siblings, 0 replies; 2+ messages in thread
From: tip-bot2 for Thomas Gleixner @ 2024-11-13 20:20 UTC (permalink / raw)
To: linux-tip-commits; +Cc: x86, linux-kernel
The following commit has been merged into the timers/core branch of tip:
Commit-ID: 228ad72e7660e99821fd430a04ac31d7f8fe9fc4
Gitweb: https://git.kernel.org/tip/228ad72e7660e99821fd430a04ac31d7f8fe9fc4
Author: Thomas Gleixner <tglx@linutronix.de>
AuthorDate: Wed, 13 Nov 2024 21:09:35 +01:00
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Wed, 13 Nov 2024 21:09:35 +01:00
Merge tag 'timers-v6.13-rc1' of https://git.linaro.org/people/daniel.lezcano/linux into timers/core
Pull clocksource/event updates from Daniel Lezcano:
- Remove unused dw_apb_clockevent_[pause|resume|stop] functions as
they are unused since 2021 (David Alan Gilbert)
- Make the sp804 driver user selectable as they may be unused on some
platforms (Mark Brown)
- Don't fail if the ti-dm does not describe an interrupt in the DT as
this could be a normal situation if the PWM is used (Judith Mendez)
- Always use cluster 0 counter as a clocksource on a multi-cluster
system to prevent problems related to the time shifting between
clusters if multiple per cluster clocksource is used (Paul Burton)
- Move the RaLink system tick counter from the arch directory to the
clocksource directory (Sergio Paracuellos)
- Convert the owl-timer bindings into yaml schema (Ivaylo Ivanov)
- Fix child node refcount handling on the TI DM by relying on the
__free annotation to automatically release the refcount on the node
(Javier Carrasco)
- Remove pointless cast in the GPX driver as PTR_ERR already does that
(Tang Bin)
- Use of_property_present() for non-boolean properties where it is
possible in the different drivers (Rob Herring)
Link: https://lore.kernel.org/lkml/8d402321-96f1-47f7-9347-a850350d60de@linaro.org
---
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-11-13 20:20 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-13 15:13 [GIt PULL] timer drivers for v6.13-rc1 Daniel Lezcano
2024-11-13 20:20 ` [tip: timers/core] Merge tag 'timers-v6.13-rc1' of https://git.linaro.org/people/daniel.lezcano/linux into timers/core tip-bot2 for Thomas Gleixner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox