From: daniel.lezcano@linaro.org (Daniel Lezcano)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/5] Allwinner SoCs High Speed Timer support
Date: Thu, 07 Nov 2013 12:03:51 +0100 [thread overview]
Message-ID: <527B7397.9020208@linaro.org> (raw)
In-Reply-To: <1382706463-3892-1-git-send-email-maxime.ripard@free-electrons.com>
On 10/25/2013 03:07 PM, Maxime Ripard wrote:
> Hi everyone,
>
> Here is a few patches adding support for the High Speed Timers running on the
> Allwinner SoCs.
>
> These timers are 64 bits timers running at a much higher speed than the timers
> used for now on these SoCs, since they are no longer wired to the 24MHz
> oscillator, but to the AHB clock.
>
> This HS timers are actually found in all the supported SoCs but the A10.
> However, the A20 and A31 come with 4 of these high speed timers, while the A10s
> and A13 only have two, hence why we introduce two different compatibles.
>
> The A31 is not using these for now, as its timers are asserted in reset by a
> reset controller that first need to gain some support in the kernel first, but
> that's for another patchset.
Hi Maxime,
the patchset is applied in my tree for 3.14.
Fixed a trivial conflict in the arch/arm/mach-sunxi/Kconfig
Thanks !
-- Daniel
> Changes from v1:
> - Reported correctly the minimum ticks we can set
> - No longer use the HS timers as the default timers in the system
> - Removed the IRQF_DISABLED interrupt flag
> - Filled the irq clock_event_device field
> - Changed the cpumask to cpu_possible_mask
>
> Maxime Ripard (5):
> clocksource: sun4i: Increase a bit the clock event and sources rating
> clocksource: Add Allwinner SoCs HS timers driver
> ARM: sun5i: a10s: Add support for the High Speed Timers
> ARM: sun5i: a13: Add support for the High Speed Timers
> ARM: sun7i: a20: Add support for the High Speed Timers
>
> .../bindings/timer/allwinner,sun5i-a13-hstimer.txt | 22 +++
> arch/arm/boot/dts/sun5i-a10s.dtsi | 7 +
> arch/arm/boot/dts/sun5i-a13.dtsi | 7 +
> arch/arm/boot/dts/sun7i-a20.dtsi | 10 ++
> arch/arm/mach-sunxi/Kconfig | 1 +
> drivers/clocksource/Kconfig | 4 +
> drivers/clocksource/Makefile | 1 +
> drivers/clocksource/sun4i_timer.c | 4 +-
> drivers/clocksource/timer-sun5i.c | 192 +++++++++++++++++++++
> 9 files changed, 246 insertions(+), 2 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/timer/allwinner,sun5i-a13-hstimer.txt
> create mode 100644 drivers/clocksource/timer-sun5i.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
WARNING: multiple messages have this Message-ID (diff)
From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: Maxime Ripard <maxime.ripard@free-electrons.com>, tglx@linutronix.de
Cc: linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, sboyd@codeaurora.org,
kevin.z.m.zh@gmail.com, sunny@allwinnertech.com,
shuge@allwinnertech.com, zhuzhenhua@allwinnertech.com,
Gregory Clement <gregory.clement@free-electrons.com>
Subject: Re: [PATCH v2 0/5] Allwinner SoCs High Speed Timer support
Date: Thu, 07 Nov 2013 12:03:51 +0100 [thread overview]
Message-ID: <527B7397.9020208@linaro.org> (raw)
In-Reply-To: <1382706463-3892-1-git-send-email-maxime.ripard@free-electrons.com>
On 10/25/2013 03:07 PM, Maxime Ripard wrote:
> Hi everyone,
>
> Here is a few patches adding support for the High Speed Timers running on the
> Allwinner SoCs.
>
> These timers are 64 bits timers running at a much higher speed than the timers
> used for now on these SoCs, since they are no longer wired to the 24MHz
> oscillator, but to the AHB clock.
>
> This HS timers are actually found in all the supported SoCs but the A10.
> However, the A20 and A31 come with 4 of these high speed timers, while the A10s
> and A13 only have two, hence why we introduce two different compatibles.
>
> The A31 is not using these for now, as its timers are asserted in reset by a
> reset controller that first need to gain some support in the kernel first, but
> that's for another patchset.
Hi Maxime,
the patchset is applied in my tree for 3.14.
Fixed a trivial conflict in the arch/arm/mach-sunxi/Kconfig
Thanks !
-- Daniel
> Changes from v1:
> - Reported correctly the minimum ticks we can set
> - No longer use the HS timers as the default timers in the system
> - Removed the IRQF_DISABLED interrupt flag
> - Filled the irq clock_event_device field
> - Changed the cpumask to cpu_possible_mask
>
> Maxime Ripard (5):
> clocksource: sun4i: Increase a bit the clock event and sources rating
> clocksource: Add Allwinner SoCs HS timers driver
> ARM: sun5i: a10s: Add support for the High Speed Timers
> ARM: sun5i: a13: Add support for the High Speed Timers
> ARM: sun7i: a20: Add support for the High Speed Timers
>
> .../bindings/timer/allwinner,sun5i-a13-hstimer.txt | 22 +++
> arch/arm/boot/dts/sun5i-a10s.dtsi | 7 +
> arch/arm/boot/dts/sun5i-a13.dtsi | 7 +
> arch/arm/boot/dts/sun7i-a20.dtsi | 10 ++
> arch/arm/mach-sunxi/Kconfig | 1 +
> drivers/clocksource/Kconfig | 4 +
> drivers/clocksource/Makefile | 1 +
> drivers/clocksource/sun4i_timer.c | 4 +-
> drivers/clocksource/timer-sun5i.c | 192 +++++++++++++++++++++
> 9 files changed, 246 insertions(+), 2 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/timer/allwinner,sun5i-a13-hstimer.txt
> create mode 100644 drivers/clocksource/timer-sun5i.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
next prev parent reply other threads:[~2013-11-07 11:03 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-25 13:07 [PATCH v2 0/5] Allwinner SoCs High Speed Timer support Maxime Ripard
2013-10-25 13:07 ` Maxime Ripard
2013-10-25 13:07 ` [PATCH v2 1/5] clocksource: sun4i: Increase a bit the clock event and sources rating Maxime Ripard
2013-10-25 13:07 ` Maxime Ripard
2013-10-25 13:07 ` [PATCH v2 2/5] clocksource: Add Allwinner SoCs HS timers driver Maxime Ripard
2013-10-25 13:07 ` Maxime Ripard
2013-10-25 13:07 ` [PATCH v2 3/5] ARM: sun5i: a10s: Add support for the High Speed Timers Maxime Ripard
2013-10-25 13:07 ` Maxime Ripard
2013-10-25 13:07 ` [PATCH v2 4/5] ARM: sun5i: a13: " Maxime Ripard
2013-10-25 13:07 ` Maxime Ripard
2013-10-25 13:07 ` [PATCH v2 5/5] ARM: sun7i: a20: " Maxime Ripard
2013-10-25 13:07 ` Maxime Ripard
2013-11-07 11:03 ` Daniel Lezcano [this message]
2013-11-07 11:03 ` [PATCH v2 0/5] Allwinner SoCs High Speed Timer support 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=527B7397.9020208@linaro.org \
--to=daniel.lezcano@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
/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 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.