mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@kernel.org>
To: Daniel Lezcano <daniel.lezcano@free.fr>
Cc: "Thomas Gleixner" <tglx@linutronix.de>,
	"Linux Kernel Mailing List" <linux-kernel@vger.kernel.org>,
	"Andreas Färber" <afaerber@suse.de>,
	"Baolin Wang" <baolin.wang@linaro.org>,
	"Romain Izard" <romain.izard.pro@gmail.com>,
	"Daniel Lezcano" <daniel.lezcano@linaro.org>
Subject: Re: [PULL] clockevents for 4.16
Date: Mon, 8 Jan 2018 17:58:47 +0100	[thread overview]
Message-ID: <20180108165846.gkeyyva23egr4tmg@gmail.com> (raw)
In-Reply-To: <1bbaef2e-4080-3f54-7db3-a8989acfd691@free.fr>


* Daniel Lezcano <daniel.lezcano@free.fr> wrote:

> 
> Hi Thomas,
> 
> here are the changes for 4.16 synced with tip/timers/core:
> 
>  - Change the macro name to TIMER_OF_DECLARE for the owl driver (Andreas
> Färber)
> 
>  - Add the S700 definition and the compatible string for the owl driver
> (Andreas Färber)
> 
>  - Add the new spreadtrum timer driver for the SC9860 platform (Baolin Wang)
> 
>  - Use the timer-of API, compute the prescaler based on the target
> frequency, add the oneshot mode and the clocksource for the stm32
> (Benjamin Gaignard)
> 
>  - Fix the clock speed message for the tcb clocksource (Romain Izard)
> 
>  - Improve the timer-of code by adding documentation and unifying the
> function names (Daniel Lezcano)
> 
>  - Fix a kernel panic with multiple timers defined in the DT for the
> stm32 (Daniel Lezcano)
> 
>  - Consolidate and add the delay timer for the stm32 (Daniel Lezcano)
> 
> Thanks!
> 
>   -- Daniel
> 
> The following changes since commit 29f1b2b0fecfae69e31833836f1da3136696eee5:
> 
>   posix-timers: Prevent UB from shifting negative signed value
> (2018-01-04 14:57:10 +0100)
> 
> are available in the git repository at:
> 
>   https://git.linaro.org/people/daniel.lezcano/linux.git clockevents/4.16
> 
> for you to fetch changes up to 322fd24f5e67c396f04bef01ed33ac6bfca46bcd:
> 
>   clocksource/drivers/stm32: Start the timer's counter sooner
> (2018-01-08 12:10:02 +0100)
> 
> ----------------------------------------------------------------
> Andreas Färber (3):
>       dt-bindings: timer: Add Actions Semi S700
>       clocksource/drivers/owl: Adopt TIMER_OF_DECLARE()
>       clocksource/drivers/owl: Add the S700
> 
> Baolin Wang (2):
>       dt-bindings: clocksource: Add Spreadtrum SC9860 timer
>       clocksource/drivers/spreadtrum: Add timer driver for Spreadtrum
> SC9860 platform
> 
> Benjamin Gaignard (4):
>       clocksource/drivers/stm32: Convert the driver to timer-of
>       clocksource/drivers/stm32: Compute a prescaler value with a
> targeted rate
>       clocksource/drivers/stm32: Add the oneshot mode
>       clocksource/drivers/stm32: Add the clocksource
> 
> Daniel Lezcano (10):
>       clocksource/drivers/timer-of: Fix function names
>       clocksource/drivers/timer-of: Add kernel documentation
>       clocksource/drivers/timer-of: Store the device node pointer
>       clocksource/drivers/timer-of: Don't request the resource by name
>       clocksource/drivers/stm32: Fix kernel panic with multiple timers
>       clocksource/drivers/stm32: Use the node name as timer name
>       clocksource/drivers/stm32: Encapsulate the timer width sorting out
> function
>       clocksource/drivers/stm32: Encapsulate more the clockevent code
>       clocksource/drivers/stm32: Add the timer delay
>       clocksource/drivers/stm32: Start the timer's counter sooner
> 
> Romain Izard (1):
>       clocksource/drivers/tcb_clksrc: Fix clock speed message
> 
>  .../bindings/timer/actions,owl-timer.txt           |   1 +
>  .../bindings/timer/spreadtrum,sprd-timer.txt       |  20 ++
>  drivers/clocksource/Kconfig                        |   8 +
>  drivers/clocksource/Makefile                       |   1 +
>  drivers/clocksource/owl-timer.c                    |   5 +-
>  drivers/clocksource/tcb_clksrc.c                   |   2 +-
>  drivers/clocksource/timer-of.c                     |  85 +++--
>  drivers/clocksource/timer-of.h                     |   1 +
>  drivers/clocksource/timer-sprd.c                   | 159 +++++++++
>  drivers/clocksource/timer-stm32.c                  | 358
> +++++++++++++++------
>  10 files changed, 508 insertions(+), 132 deletions(-)
>  create mode 100644
> Documentation/devicetree/bindings/timer/spreadtrum,sprd-timer.txt
>  create mode 100644 drivers/clocksource/timer-sprd.c

Hi, I've applied the patches tip:timers/core, with a number of minor typo/spelling 
and readability edits to changelogs and code comments.

Thanks,

	Ingo

  parent reply	other threads:[~2018-01-08 16:58 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-08 13:27 Daniel Lezcano
2018-01-08 13:28 ` [PATCH 01/20] dt-bindings: timer: Add Actions Semi S700 Daniel Lezcano
2018-01-08 13:28   ` [PATCH 02/20] clocksource/drivers/owl: Adopt TIMER_OF_DECLARE() Daniel Lezcano
2018-01-08 13:28   ` [PATCH 03/20] clocksource/drivers/owl: Add the S700 Daniel Lezcano
2018-01-08 13:28   ` [PATCH 04/20] clocksource/drivers/tcb_clksrc: Fix clock speed message Daniel Lezcano
2018-01-08 17:27     ` [tip:timers/core] " tip-bot for Romain Izard
2018-01-08 13:28   ` [PATCH 05/20] clocksource/drivers/timer-of: Fix function names Daniel Lezcano
2018-01-08 17:27     ` [tip:timers/core] " tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 06/20] clocksource/drivers/timer-of: Add kernel documentation Daniel Lezcano
2018-01-08 17:28     ` [tip:timers/core] " tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 07/20] dt-bindings: clocksource: Add Spreadtrum SC9860 timer Daniel Lezcano
2018-01-08 17:28     ` [tip:timers/core] dt-bindings/clocksource: Add Spreadtrum SC9860 timer documentation tip-bot for Baolin Wang
2018-01-08 13:28   ` [PATCH 08/20] clocksource/drivers/spreadtrum: Add timer driver for Spreadtrum SC9860 platform Daniel Lezcano
2018-01-08 17:29     ` [tip:timers/core] clocksource/drivers/spreadtrum: Add timer driver for the " tip-bot for Baolin Wang
2018-01-08 13:28   ` [PATCH 09/20] clocksource/drivers/timer-of: Store the device node pointer Daniel Lezcano
2018-01-08 17:29     ` [tip:timers/core] clocksource/drivers/timer-of: Store the device node pointer in 'struct timer_of' tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 10/20] clocksource/drivers/timer-of: Don't request the resource by name Daniel Lezcano
2018-01-08 17:30     ` [tip:timers/core] " tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 11/20] clocksource/drivers/stm32: Fix kernel panic with multiple timers Daniel Lezcano
2018-01-08 17:30     ` [tip:timers/core] " tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 12/20] clocksource/drivers/stm32: Convert the driver to timer-of Daniel Lezcano
2018-01-08 17:30     ` [tip:timers/core] clocksource/drivers/stm32: Convert the driver to timer_of primitives tip-bot for Benjamin Gaignard
2018-01-08 13:28   ` [PATCH 13/20] clocksource/drivers/stm32: Use the node name as timer name Daniel Lezcano
2018-01-08 17:31     ` [tip:timers/core] " tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 14/20] clocksource/drivers/stm32: Encapsulate the timer width sorting out function Daniel Lezcano
2018-01-08 17:31     ` [tip:timers/core] clocksource/drivers/stm32: Factor out the timer width sorting code tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 15/20] clocksource/drivers/stm32: Compute a prescaler value with a targeted rate Daniel Lezcano
2018-01-08 17:32     ` [tip:timers/core] " tip-bot for Benjamin Gaignard
2018-01-08 13:28   ` [PATCH 16/20] clocksource/drivers/stm32: Add the oneshot mode Daniel Lezcano
2018-01-08 17:32     ` [tip:timers/core] clocksource/drivers/stm32: Add " tip-bot for Benjamin Gaignard
2018-01-08 13:28   ` [PATCH 17/20] clocksource/drivers/stm32: Encapsulate more the clockevent code Daniel Lezcano
2018-01-08 17:33     ` [tip:timers/core] clocksource/drivers/stm32: Factor out more of " tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 18/20] clocksource/drivers/stm32: Add the clocksource Daniel Lezcano
2018-01-08 17:33     ` [tip:timers/core] clocksource/drivers/stm32: Add clocksource functionality tip-bot for Benjamin Gaignard
2018-01-08 13:28   ` [PATCH 19/20] clocksource/drivers/stm32: Add the timer delay Daniel Lezcano
2018-01-08 17:33     ` [tip:timers/core] clocksource/drivers/stm32: Add the timer delay callback tip-bot for Daniel Lezcano
2018-01-08 13:28   ` [PATCH 20/20] clocksource/drivers/stm32: Start the timer's counter sooner Daniel Lezcano
2018-01-08 17:34     ` [tip:timers/core] " tip-bot for Daniel Lezcano
2018-01-08 16:58 ` Ingo Molnar [this message]
2018-01-08 17:07   ` [PULL] clockevents for 4.16 Daniel Lezcano

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=20180108165846.gkeyyva23egr4tmg@gmail.com \
    --to=mingo@kernel.org \
    --cc=afaerber@suse.de \
    --cc=baolin.wang@linaro.org \
    --cc=daniel.lezcano@free.fr \
    --cc=daniel.lezcano@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=romain.izard.pro@gmail.com \
    --cc=tglx@linutronix.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

Powered by JetHome