From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: Tim Kryger <tim.kryger@linaro.org>,
Christian Daudt <bcm@fixthebug.org>,
Rob Herring <rob.herring@calxeda.com>,
Pawel Moll <pawel.moll@arm.com>,
Mark Rutland <mark.rutland@arm.com>,
Stephen Warren <swarren@wwwdotorg.org>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Thomas Gleixner <tglx@linutronix.de>, Chris Ball <cjb@laptop.org>
Cc: devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-mmc@vger.kernel.org,
patches@linaro.org
Subject: Re: [RESEND PATCH v2 1/6] ARM: dts: Declare clocks as fixed on bcm11351
Date: Fri, 08 Nov 2013 11:53:25 +0100 [thread overview]
Message-ID: <527CC2A5.7080000@linaro.org> (raw)
In-Reply-To: <1381960030-1640-2-git-send-email-tim.kryger@linaro.org>
On 10/16/2013 11:47 PM, Tim Kryger wrote:
> Declare clocks that are enabled and configured by bootloaders as fixed
> rate clocks in the DTS such that device drivers may use standard clock
> function calls.
>
> Signed-off-by: Tim Kryger <tim.kryger@linaro.org>
> Reviewed-by: Markus Mayer <markus.mayer@linaro.org>
> Reviewed-by: Matt Porter <matt.porter@linaro.org>
> ---
Hi Tim,
I was wondering what is the status of this patchset ?
The patchset touches different areas maintained by different people.
Through what tree do you expect this patchset to be merged ??
Thanks
-- Daniel
> arch/arm/boot/dts/bcm11351.dtsi | 97 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 97 insertions(+)
>
> diff --git a/arch/arm/boot/dts/bcm11351.dtsi b/arch/arm/boot/dts/bcm11351.dtsi
> index 98e6bc0..c6464fb 100644
> --- a/arch/arm/boot/dts/bcm11351.dtsi
> +++ b/arch/arm/boot/dts/bcm11351.dtsi
> @@ -126,4 +126,101 @@
> status = "disabled";
> };
>
> + clocks {
> + bsc1_clk: bsc1 {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + bsc2_clk: bsc2 {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + bsc3_clk: bsc3 {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + pmu_bsc_clk: pmu_bsc {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + hub_timer_clk: hub_timer {
> + compatible = "fixed-clock";
> + clock-frequency = <32768>;
> + #clock-cells = <0>;
> + };
> +
> + pwm_clk: pwm {
> + compatible = "fixed-clock";
> + clock-frequency = <26000000>;
> + #clock-cells = <0>;
> + };
> +
> + sdio1_clk: sdio1 {
> + compatible = "fixed-clock";
> + clock-frequency = <48000000>;
> + #clock-cells = <0>;
> + };
> +
> + sdio2_clk: sdio2 {
> + compatible = "fixed-clock";
> + clock-frequency = <48000000>;
> + #clock-cells = <0>;
> + };
> +
> + sdio3_clk: sdio3 {
> + compatible = "fixed-clock";
> + clock-frequency = <48000000>;
> + #clock-cells = <0>;
> + };
> +
> + sdio4_clk: sdio4 {
> + compatible = "fixed-clock";
> + clock-frequency = <48000000>;
> + #clock-cells = <0>;
> + };
> +
> + tmon_1m_clk: tmon_1m {
> + compatible = "fixed-clock";
> + clock-frequency = <1000000>;
> + #clock-cells = <0>;
> + };
> +
> + uartb_clk: uartb {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + uartb2_clk: uartb2 {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + uartb3_clk: uartb3 {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + uartb4_clk: uartb4 {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + usb_otg_ahb_clk: usb_otg_ahb {
> + compatible = "fixed-clock";
> + clock-frequency = <52000000>;
> + #clock-cells = <0>;
> + };
> + };
> };
>
--
<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@linaro.org (Daniel Lezcano)
To: linux-arm-kernel@lists.infradead.org
Subject: [RESEND PATCH v2 1/6] ARM: dts: Declare clocks as fixed on bcm11351
Date: Fri, 08 Nov 2013 11:53:25 +0100 [thread overview]
Message-ID: <527CC2A5.7080000@linaro.org> (raw)
In-Reply-To: <1381960030-1640-2-git-send-email-tim.kryger@linaro.org>
On 10/16/2013 11:47 PM, Tim Kryger wrote:
> Declare clocks that are enabled and configured by bootloaders as fixed
> rate clocks in the DTS such that device drivers may use standard clock
> function calls.
>
> Signed-off-by: Tim Kryger <tim.kryger@linaro.org>
> Reviewed-by: Markus Mayer <markus.mayer@linaro.org>
> Reviewed-by: Matt Porter <matt.porter@linaro.org>
> ---
Hi Tim,
I was wondering what is the status of this patchset ?
The patchset touches different areas maintained by different people.
Through what tree do you expect this patchset to be merged ??
Thanks
-- Daniel
> arch/arm/boot/dts/bcm11351.dtsi | 97 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 97 insertions(+)
>
> diff --git a/arch/arm/boot/dts/bcm11351.dtsi b/arch/arm/boot/dts/bcm11351.dtsi
> index 98e6bc0..c6464fb 100644
> --- a/arch/arm/boot/dts/bcm11351.dtsi
> +++ b/arch/arm/boot/dts/bcm11351.dtsi
> @@ -126,4 +126,101 @@
> status = "disabled";
> };
>
> + clocks {
> + bsc1_clk: bsc1 {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + bsc2_clk: bsc2 {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + bsc3_clk: bsc3 {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + pmu_bsc_clk: pmu_bsc {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + hub_timer_clk: hub_timer {
> + compatible = "fixed-clock";
> + clock-frequency = <32768>;
> + #clock-cells = <0>;
> + };
> +
> + pwm_clk: pwm {
> + compatible = "fixed-clock";
> + clock-frequency = <26000000>;
> + #clock-cells = <0>;
> + };
> +
> + sdio1_clk: sdio1 {
> + compatible = "fixed-clock";
> + clock-frequency = <48000000>;
> + #clock-cells = <0>;
> + };
> +
> + sdio2_clk: sdio2 {
> + compatible = "fixed-clock";
> + clock-frequency = <48000000>;
> + #clock-cells = <0>;
> + };
> +
> + sdio3_clk: sdio3 {
> + compatible = "fixed-clock";
> + clock-frequency = <48000000>;
> + #clock-cells = <0>;
> + };
> +
> + sdio4_clk: sdio4 {
> + compatible = "fixed-clock";
> + clock-frequency = <48000000>;
> + #clock-cells = <0>;
> + };
> +
> + tmon_1m_clk: tmon_1m {
> + compatible = "fixed-clock";
> + clock-frequency = <1000000>;
> + #clock-cells = <0>;
> + };
> +
> + uartb_clk: uartb {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + uartb2_clk: uartb2 {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + uartb3_clk: uartb3 {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + uartb4_clk: uartb4 {
> + compatible = "fixed-clock";
> + clock-frequency = <13000000>;
> + #clock-cells = <0>;
> + };
> +
> + usb_otg_ahb_clk: usb_otg_ahb {
> + compatible = "fixed-clock";
> + clock-frequency = <52000000>;
> + #clock-cells = <0>;
> + };
> + };
> };
>
--
<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-08 10:53 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-16 21:47 [RESEND PATCH v2 0/6] Update Kona drivers to use clocks Tim Kryger
2013-10-16 21:47 ` Tim Kryger
2013-10-16 21:47 ` [RESEND PATCH v2 1/6] ARM: dts: Declare clocks as fixed on bcm11351 Tim Kryger
2013-10-16 21:47 ` Tim Kryger
2013-11-08 10:53 ` Daniel Lezcano [this message]
2013-11-08 10:53 ` Daniel Lezcano
2013-11-08 19:42 ` Tim Kryger
2013-11-08 19:42 ` Tim Kryger
2013-11-08 21:35 ` Christian Daudt
2013-11-08 21:35 ` Christian Daudt
2013-10-16 21:47 ` [RESEND PATCH v2 2/6] ARM: dts: Specify clocks for UARTs " Tim Kryger
2013-10-16 21:47 ` Tim Kryger
2013-10-17 5:41 ` Christian Daudt
2013-10-17 5:41 ` Christian Daudt
[not found] ` <CAEPRUYrzAow1yr58jOp5ead7BkQx-K7yaLLzSHPwqYVu=aZFEQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-10-17 6:14 ` Sebastian Hesselbarth
2013-10-17 6:14 ` Sebastian Hesselbarth
2013-10-17 6:14 ` Sebastian Hesselbarth
2013-10-17 13:56 ` Mark Rutland
2013-10-17 13:56 ` Mark Rutland
2013-10-21 18:56 ` Tim Kryger
2013-10-21 18:56 ` Tim Kryger
2013-10-16 21:47 ` [RESEND PATCH v2 3/6] ARM: dts: Specify clocks for SDHCIs " Tim Kryger
2013-10-16 21:47 ` Tim Kryger
2013-10-16 21:47 ` [RESEND PATCH v2 4/6] clocksource: kona: Add basic use of external clock Tim Kryger
2013-10-16 21:47 ` Tim Kryger
2013-10-17 14:05 ` Mark Rutland
2013-10-17 14:05 ` Mark Rutland
[not found] ` <20131017140542.GE24056-NuALmloUBlrZROr8t4l/smS4ubULX0JqMm0uRHvK7Nw@public.gmane.org>
2013-10-21 21:07 ` Tim Kryger
2013-10-21 21:07 ` Tim Kryger
2013-10-21 21:07 ` Tim Kryger
2013-10-16 21:47 ` [RESEND PATCH v2 6/6] mmc: sdhci-bcm-kona: Add basic use of clocks Tim Kryger
2013-10-16 21:47 ` Tim Kryger
2013-10-17 14:13 ` Mark Rutland
2013-10-17 14:13 ` Mark Rutland
2013-10-18 13:22 ` Matt Porter
2013-10-18 13:22 ` Matt Porter
2013-10-21 23:13 ` Tim Kryger
2013-10-21 23:13 ` Tim Kryger
[not found] ` <1381960030-1640-1-git-send-email-tim.kryger-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2013-10-16 21:47 ` [RESEND PATCH v2 5/6] ARM: dts: Specify clocks for timer on bcm11351 Tim Kryger
2013-10-16 21:47 ` Tim Kryger
2013-10-16 21:47 ` Tim Kryger
2013-10-17 14:06 ` Mark Rutland
2013-10-17 14:06 ` Mark Rutland
2013-10-18 20:25 ` Tim Kryger
2013-10-18 20:25 ` Tim Kryger
2013-10-17 13:47 ` [RESEND PATCH v2 0/6] Update Kona drivers to use clocks Mark Rutland
2013-10-17 13:47 ` Mark Rutland
2013-10-17 13:47 ` Mark Rutland
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=527CC2A5.7080000@linaro.org \
--to=daniel.lezcano@linaro.org \
--cc=bcm@fixthebug.org \
--cc=cjb@laptop.org \
--cc=devicetree@vger.kernel.org \
--cc=ijc+devicetree@hellion.org.uk \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=patches@linaro.org \
--cc=pawel.moll@arm.com \
--cc=rob.herring@calxeda.com \
--cc=swarren@wwwdotorg.org \
--cc=tglx@linutronix.de \
--cc=tim.kryger@linaro.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.