mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: Thomas Gleixner <tglx@linutronix.de>
Cc: "Linux Kernel Mailing List" <linux-kernel@vger.kernel.org>,
	"Krzysztof Kozlowski" <krzk@kernel.org>,
	"AngeloGioacchino Del Regno"
	<angelogioacchino.delregno@collabora.com>,
	"Fabio Estevam" <festevam@gmail.com>,
	"Rob Herring" <robh+dt@kernel.org>,
	"Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>,
	"Tony Lindgren" <tony@atomide.com>,
	"Cristian Ciocaltea" <cristian.ciocaltea@collabora.com>,
	"Qinrun Dai" <flno@hust.edu.cn>
Subject: [GIT PULL] timers material for v6.4-rc1
Date: Tue, 25 Apr 2023 13:45:24 +0200	[thread overview]
Message-ID: <d30fd923-e6e5-a1a6-ca76-1b39f8fad6c9@linaro.org> (raw)


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

             reply	other threads:[~2023-04-25 11:45 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-25 11:45 Daniel Lezcano [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d30fd923-e6e5-a1a6-ca76-1b39f8fad6c9@linaro.org \
    --to=daniel.lezcano@linaro.org \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=cristian.ciocaltea@collabora.com \
    --cc=festevam@gmail.com \
    --cc=flno@hust.edu.cn \
    --cc=krzk@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=tglx@linutronix.de \
    --cc=tony@atomide.com \
    --cc=u.kleine-koenig@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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®