From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: Anson.Huang@nxp.com, tglx@linutronix.de, robh+dt@kernel.org,
mark.rutland@arm.com, shawnguo@kernel.org,
s.hauer@pengutronix.de, kernel@pengutronix.de,
festevam@gmail.com, leonard.crestez@nxp.com,
viresh.kumar@linaro.org, daniel.baluta@nxp.com, ping.bai@nxp.com,
l.stach@pengutronix.de, abel.vesa@nxp.com,
andrew.smirnov@gmail.com, ccaione@baylibre.com, angus@akkea.ca,
agx@sigxcpu.org, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Cc: Linux-imx@nxp.com
Subject: Re: [PATCH RESEND V4 1/5] clocksource: timer-of: Support getting clock frequency from DT
Date: Tue, 2 Jul 2019 10:06:44 +0200 [thread overview]
Message-ID: <c7ff76e5-d73d-e71e-c3f4-445bdd2c5b93@linaro.org> (raw)
In-Reply-To: <20190702075513.17451-1-Anson.Huang@nxp.com>
Hi Anson,
why did you resend the series?
On 02/07/2019 09:55, Anson.Huang@nxp.com wrote:
> From: Anson Huang <Anson.Huang@nxp.com>
>
> More and more platforms use platform driver model for clock driver,
> so the clock driver is NOT ready during timer initialization phase,
> it will cause timer initialization failed.
>
> To support those platforms with upper scenario, introducing a new
> flag TIMER_OF_CLOCK_FREQUENCY which is mutually exclusive with
> TIMER_OF_CLOCK flag to support getting timer clock frequency from
> DT's timer node, the property name should be "clock-frequency",
> then of_clk operations can be skipped.
>
> User needs to select either TIMER_OF_CLOCK_FREQUENCY or TIMER_OF_CLOCK
> flag if want to use timer-of driver to initialize the clock rate.
>
> Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
> ---
> Changes since V3:
> - use hardcoded "clock-frequency" instead of adding new variable prop_name;
> - add pre-condition check for TIMER_OF_CLOCK and TIMER_OF_CLOCK_FREQUENCY, they MUST be exclusive.
> ---
> drivers/clocksource/timer-of.c | 29 +++++++++++++++++++++++++++++
> drivers/clocksource/timer-of.h | 7 ++++---
> 2 files changed, 33 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/clocksource/timer-of.c b/drivers/clocksource/timer-of.c
> index 8054228..858f684 100644
> --- a/drivers/clocksource/timer-of.c
> +++ b/drivers/clocksource/timer-of.c
> @@ -161,11 +161,30 @@ static __init int timer_of_base_init(struct device_node *np,
> return 0;
> }
>
> +static __init int timer_of_clk_frequency_init(struct device_node *np,
> + struct of_timer_clk *of_clk)
> +{
> + int ret;
> + u32 rate;
> +
> + ret = of_property_read_u32(np, "clock-frequency", &rate);
> + if (!ret) {
> + of_clk->rate = rate;
> + of_clk->period = DIV_ROUND_UP(rate, HZ);
> + }
> +
> + return ret;
> +}
> +
> int __init timer_of_init(struct device_node *np, struct timer_of *to)
> {
> + unsigned long clock_flags = TIMER_OF_CLOCK | TIMER_OF_CLOCK_FREQUENCY;
> int ret = -EINVAL;
> int flags = 0;
>
> + if ((to->flags & clock_flags) == clock_flags)
> + return ret;
> +
> if (to->flags & TIMER_OF_BASE) {
> ret = timer_of_base_init(np, &to->of_base);
> if (ret)
> @@ -180,6 +199,13 @@ int __init timer_of_init(struct device_node *np, struct timer_of *to)
> flags |= TIMER_OF_CLOCK;
> }
>
> + if (to->flags & TIMER_OF_CLOCK_FREQUENCY) {
> + ret = timer_of_clk_frequency_init(np, &to->of_clk);
> + if (ret)
> + goto out_fail;
> + flags |= TIMER_OF_CLOCK_FREQUENCY;
> + }
> +
> if (to->flags & TIMER_OF_IRQ) {
> ret = timer_of_irq_init(np, &to->of_irq);
> if (ret)
> @@ -201,6 +227,9 @@ int __init timer_of_init(struct device_node *np, struct timer_of *to)
> if (flags & TIMER_OF_CLOCK)
> timer_of_clk_exit(&to->of_clk);
>
> + if (flags & TIMER_OF_CLOCK_FREQUENCY)
> + to->of_clk.rate = 0;
> +
> if (flags & TIMER_OF_BASE)
> timer_of_base_exit(&to->of_base);
> return ret;
> diff --git a/drivers/clocksource/timer-of.h b/drivers/clocksource/timer-of.h
> index a5478f3..a08e108 100644
> --- a/drivers/clocksource/timer-of.h
> +++ b/drivers/clocksource/timer-of.h
> @@ -4,9 +4,10 @@
>
> #include <linux/clockchips.h>
>
> -#define TIMER_OF_BASE 0x1
> -#define TIMER_OF_CLOCK 0x2
> -#define TIMER_OF_IRQ 0x4
> +#define TIMER_OF_BASE 0x1
> +#define TIMER_OF_CLOCK 0x2
> +#define TIMER_OF_IRQ 0x4
> +#define TIMER_OF_CLOCK_FREQUENCY 0x8
>
> struct of_timer_irq {
> int irq;
>
--
<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:[~2019-07-02 8:06 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-02 7:55 [PATCH RESEND V4 1/5] clocksource: timer-of: Support getting clock frequency from DT Anson.Huang
2019-07-02 7:55 ` [PATCH RESEND V4 2/5] clocksource/drivers/sysctr: Add clock-frequency property Anson.Huang
2019-07-02 7:55 ` [PATCH RESEND V4 3/5] clocksource: imx-sysctr: Make timer work with clock driver using platform driver model Anson.Huang
2019-07-02 7:55 ` [PATCH RESEND V4 4/5] arm64: dts: imx8mq: Add system counter node Anson.Huang
2019-07-02 7:55 ` [PATCH RESEND V4 5/5] arm64: dts: imx8mm: " Anson.Huang
2019-07-02 8:06 ` Daniel Lezcano [this message]
2019-07-02 9:03 ` [PATCH RESEND V4 1/5] clocksource: timer-of: Support getting clock frequency from DT Anson Huang
2019-07-02 9:07 ` Daniel Lezcano
2019-07-02 9:07 ` Daniel Lezcano
2019-07-02 9:10 ` Anson Huang
2019-07-02 9:10 ` Anson Huang
2019-07-02 9:03 ` Anson Huang
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=c7ff76e5-d73d-e71e-c3f4-445bdd2c5b93@linaro.org \
--to=daniel.lezcano@linaro.org \
--cc=Anson.Huang@nxp.com \
--cc=Linux-imx@nxp.com \
--cc=abel.vesa@nxp.com \
--cc=agx@sigxcpu.org \
--cc=andrew.smirnov@gmail.com \
--cc=angus@akkea.ca \
--cc=ccaione@baylibre.com \
--cc=daniel.baluta@nxp.com \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=kernel@pengutronix.de \
--cc=l.stach@pengutronix.de \
--cc=leonard.crestez@nxp.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=ping.bai@nxp.com \
--cc=robh+dt@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
--cc=tglx@linutronix.de \
--cc=viresh.kumar@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).