[GIT,PULL] timers material for v6.4-rc1

Message ID d30fd923-e6e5-a1a6-ca76-1b39f8fad6c9@linaro.org
State New
Headers
Series [GIT,PULL] timers material for v6.4-rc1 |

Pull-request

ssh://git@git.linaro.org/people/daniel.lezcano/linux.git tags/timers-v6.4-rc1

Message

Daniel Lezcano April 25, 2023, 11:45 a.m. UTC
  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
  

Comments

Thomas Gleixner April 26, 2023, 9:12 a.m. UTC | #1
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 ...
  
tip-bot2 for Thomas Gleixner April 26, 2023, 9:12 a.m. UTC | #2
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
---
  
Daniel Lezcano April 26, 2023, 11:17 a.m. UTC | #3
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