* [GIT PULL] timers material for v6.4-rc1
@ 2023-04-25 11:45 Daniel Lezcano
2023-04-26 9:12 ` Thomas Gleixner
2023-04-26 9:12 ` [tip: timers/core] Merge tag 'timers-v6.4-rc1' of https://git.linaro.org/people/daniel.lezcano/linux into timers/core tip-bot2 for Thomas Gleixner
0 siblings, 2 replies; 4+ messages in thread
From: Daniel Lezcano @ 2023-04-25 11:45 UTC (permalink / raw)
To: Thomas Gleixner
Cc: Linux Kernel Mailing List, Krzysztof Kozlowski,
AngeloGioacchino Del Regno, Fabio Estevam, Rob Herring,
Uwe Kleine-König, Tony Lindgren, Cristian Ciocaltea,
Qinrun Dai
Hi Thomas,
please consider pulling these changes for v6.4-rc1
Sorry for the delay, last weeks have been extremely overloaded
Thanks
-- Daniel
The following changes since commit f7abf14f0001a5a47539d9f60bbdca649e43536b:
posix-cpu-timers: Implement the missing timer_wait_running callback
(2023-04-21 15:34:33 +0200)
are available in the Git repository at:
ssh://git@git.linaro.org/people/daniel.lezcano/linux.git
tags/timers-v6.4-rc1
for you to fetch changes up to e2a1406c84c43bd104e2f85c4d8ab0b0b1609ab0:
dt-bindings: timer: rockchip: Add rk3588 compatible (2023-04-24
16:56:14 +0200)
----------------------------------------------------------------
- Fix error returned for shared timers on Exynos MCT timers (Krzysztof
Kozlowski)
- Code reorg by splitting the CPUXGPT timer code (AngeloGioacchino Del
Regno)
- Remove the unused mxc_timer_init() function on i.MX (Fabio Estevam)
- Replace of_get_address() and of_translate_address() calls with
single call to of_address_to_resource() on TI timer (Rob Herring)
- Mark driver as non-removable and remove useless remove() callback on
SH MTU2 and STM32 LP timers. Improve the error message in the remove
callback of the TI DM timer (Uwe Kleine-König)
- Convert to platform remove callback returning void on Tegra186, TI
DM timers (Uwe Kleine-König)
- Drop pointless of_match_ptr for ID table in the STM32 LP timer
(Krzysztof Kozlowski)
- Fix memory leak in davinci_timer_register when init fails on DaVinci
(Qinrun Dai)
- Fix finding alwon timer regression on Timer TI DM (Tony Lindgren)
- Use of_property_read_bool() for boolean properties on TI timer (Rob
Herring)
- Drop superfluous rk3288 compatible and add rk3588 compatible DT
bindings (Cristian Ciocaltea)
----------------------------------------------------------------
AngeloGioacchino Del Regno (1):
clocksource/drivers/timer-mediatek: Split out CPUXGPT timers
Cristian Ciocaltea (2):
dt-bindings: timer: rockchip: Drop superfluous rk3288 compatible
dt-bindings: timer: rockchip: Add rk3588 compatible
Fabio Estevam (1):
clocksource/drivers/timer-imx-gpt: Remove non-DT function
Krzysztof Kozlowski (2):
clocksource/drivers/exynos_mct: Explicitly return 0 for shared timer
clocksource/drivers/stm32-lp: Drop of_match_ptr for ID table
Qinrun Dai (1):
clocksource/drivers/davinci: Fix memory leak in
davinci_timer_register when init fails
Rob Herring (2):
clocksource/drivers/timer-ti-dm: Use of_address_to_resource()
clocksource/drivers/ti: Use of_property_read_bool() for boolean
properties
Tony Lindgren (1):
clocksource/drivers/timer-ti-dm: Fix finding alwon timer
Uwe Kleine-König (5):
clocksource/drivers/sh_mtu2: Mark driver as non-removable
clocksource/drivers/timer-stm32-lp: Mark driver as non-removable
clocksource/drivers/timer-ti-dm: Improve error message in .remove
clocksource/drivers/timer-tegra186: Convert to platform remove
callback returning void
clocksource/drivers/timer-ti-dm: Convert to platform remove
callback returning void
.../bindings/timer/rockchip,rk-timer.yaml | 2 +-
drivers/clocksource/Kconfig | 9 ++
drivers/clocksource/Makefile | 1 +
drivers/clocksource/exynos_mct.c | 2 +-
drivers/clocksource/sh_mtu2.c | 7 +-
drivers/clocksource/timer-davinci.c | 30 ++++-
drivers/clocksource/timer-imx-gpt.c | 19 ---
drivers/clocksource/timer-mediatek-cpux.c | 140
+++++++++++++++++++++
drivers/clocksource/timer-mediatek.c | 114 -----------------
drivers/clocksource/timer-stm32-lp.c | 11 +-
drivers/clocksource/timer-tegra186.c | 6 +-
drivers/clocksource/timer-ti-dm-systimer.c | 63 +++++-----
drivers/clocksource/timer-ti-dm.c | 15 +--
include/soc/imx/timer.h | 7 --
14 files changed, 221 insertions(+), 205 deletions(-)
create mode 100644 drivers/clocksource/timer-mediatek-cpux.c
--
<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] 4+ messages in thread* Re: [GIT PULL] timers material for v6.4-rc1
2023-04-25 11:45 [GIT PULL] timers material for v6.4-rc1 Daniel Lezcano
@ 2023-04-26 9:12 ` Thomas Gleixner
2023-04-26 11:17 ` Daniel Lezcano
2023-04-26 9:12 ` [tip: timers/core] Merge tag 'timers-v6.4-rc1' of https://git.linaro.org/people/daniel.lezcano/linux into timers/core tip-bot2 for Thomas Gleixner
1 sibling, 1 reply; 4+ messages in thread
From: Thomas Gleixner @ 2023-04-26 9:12 UTC (permalink / raw)
To: Daniel Lezcano
Cc: Linux Kernel Mailing List, Krzysztof Kozlowski,
AngeloGioacchino Del Regno, Fabio Estevam, Rob Herring,
Uwe Kleine-König, Tony Lindgren, Cristian Ciocaltea,
Qinrun Dai
On Tue, Apr 25 2023 at 13:45, Daniel Lezcano wrote:
> The following changes since commit f7abf14f0001a5a47539d9f60bbdca649e43536b:
>
> posix-cpu-timers: Implement the missing timer_wait_running callback
> (2023-04-21 15:34:33 +0200)
>
> are available in the Git repository at:
>
> ssh://git@git.linaro.org/people/daniel.lezcano/linux.git tags/timers-v6.4-rc1
git@git.linaro.org: Permission denied (publickey).
I used the https variant as usual ...
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] timers material for v6.4-rc1
2023-04-26 9:12 ` Thomas Gleixner
@ 2023-04-26 11:17 ` Daniel Lezcano
0 siblings, 0 replies; 4+ messages in thread
From: Daniel Lezcano @ 2023-04-26 11:17 UTC (permalink / raw)
To: Thomas Gleixner
Cc: Linux Kernel Mailing List, Krzysztof Kozlowski,
AngeloGioacchino Del Regno, Fabio Estevam, Rob Herring,
Uwe Kleine-König, Tony Lindgren, Cristian Ciocaltea,
Qinrun Dai
On 26/04/2023 11:12, Thomas Gleixner wrote:
> On Tue, Apr 25 2023 at 13:45, Daniel Lezcano wrote:
>> The following changes since commit f7abf14f0001a5a47539d9f60bbdca649e43536b:
>>
>> posix-cpu-timers: Implement the missing timer_wait_running callback
>> (2023-04-21 15:34:33 +0200)
>>
>> are available in the Git repository at:
>>
>> ssh://git@git.linaro.org/people/daniel.lezcano/linux.git tags/timers-v6.4-rc1
>
> git@git.linaro.org: Permission denied (publickey).
>
> I used the https variant as usual ...
Oops :)
I'll see if I can do something to fix this in the future. May be migrate
the tree at git.kernel.org so whatever ssh or https, that will work
--
<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] 4+ messages in thread
* [tip: timers/core] Merge tag 'timers-v6.4-rc1' of https://git.linaro.org/people/daniel.lezcano/linux into timers/core
2023-04-25 11:45 [GIT PULL] timers material for v6.4-rc1 Daniel Lezcano
2023-04-26 9:12 ` Thomas Gleixner
@ 2023-04-26 9:12 ` tip-bot2 for Thomas Gleixner
1 sibling, 0 replies; 4+ messages in thread
From: tip-bot2 for Thomas Gleixner @ 2023-04-26 9:12 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: 7e0664b660bc8f977d2948d8c8fbfc4809b3e6b4
Gitweb: https://git.kernel.org/tip/7e0664b660bc8f977d2948d8c8fbfc4809b3e6b4
Author: Thomas Gleixner <tglx@linutronix.de>
AuthorDate: Wed, 26 Apr 2023 11:03:57 +02:00
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Wed, 26 Apr 2023 11:06:00 +02:00
Merge tag 'timers-v6.4-rc1' of https://git.linaro.org/people/daniel.lezcano/linux into timers/core
Pull clocksource and clockevent updates from Daniel Lezcano:
- Fix error returned for shared timers on Exynos MCT timers (Krzysztof Kozlowski)
- Code reorg by splitting the CPUXGPT timer code (AngeloGioacchino Del Regno)
- Remove the unused mxc_timer_init() function on i.MX (Fabio Estevam)
- Replace of_get_address() and of_translate_address() calls with
single call to of_address_to_resource() on TI timer (Rob Herring)
- Mark driver as non-removable and remove useless remove() callback on
SH MTU2 and STM32 LP timers. Improve the error message in the remove
callback of the TI DM timer (Uwe Kleine-König)
- Convert to platform remove callback returning void on Tegra186, TI
DM timers (Uwe Kleine-König)
- Drop pointless of_match_ptr for ID table in the STM32 LP timer
(Krzysztof Kozlowski)
- Fix memory leak in davinci_timer_register when init fails on DaVinci
(Qinrun Dai)
- Fix finding alwon timer regression on Timer TI DM (Tony Lindgren)
- Use of_property_read_bool() for boolean properties on TI timer (Rob
Herring)
- Drop superfluous rk3288 compatible and add rk3588 compatible DT
bindings (Cristian Ciocaltea)
Link: htttps://lore.kernel.org/lkml/d30fd923-e6e5-a1a6-ca76-1b39f8fad6c9@linaro.org
---
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-04-26 11:17 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-25 11:45 [GIT PULL] timers material for v6.4-rc1 Daniel Lezcano
2023-04-26 9:12 ` Thomas Gleixner
2023-04-26 11:17 ` Daniel Lezcano
2023-04-26 9:12 ` [tip: timers/core] Merge tag 'timers-v6.4-rc1' of https://git.linaro.org/people/daniel.lezcano/linux into timers/core tip-bot2 for Thomas Gleixner
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.