LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Sekhar Nori <nsekhar@ti.com>
To: Bartosz Golaszewski <brgl@bgdev.pl>,
David Lechner <david@lechnology.com>
Cc: Kevin Hilman <khilman@kernel.org>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd --cc=Arnd Bergmann <"sboyd@kernel.orgarnd"@arndb.de>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>,
Bartosz Golaszewski <bgolaszewski@baylibre.com>
Subject: Re: [RFC work-in-progress 5/7] !WIP ARM: davinci: convert da850 to using the davinci clocksource driver
Date: Tue, 24 Apr 2018 13:40:33 +0530 [thread overview]
Message-ID: <bed00d18-a4c1-5e8f-a15c-f2482e5ecb9a@ti.com> (raw)
In-Reply-To: <20180423183814.20615-6-brgl@bgdev.pl>
On Tuesday 24 April 2018 12:08 AM, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bgolaszewski@baylibre.com>
>
> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
> ---
> arch/arm/mach-davinci/da850.c | 15 +++++++++++++++
> 1 file changed, 15 insertions(+)
>
> diff --git a/arch/arm/mach-davinci/da850.c b/arch/arm/mach-davinci/da850.c
> index 3f27d46ca43f..712964383bc2 100644
> --- a/arch/arm/mach-davinci/da850.c
> +++ b/arch/arm/mach-davinci/da850.c
> @@ -757,13 +757,28 @@ void __init da850_init(void)
> WARN(!da8xx_syscfg1_base, "Unable to map syscfg1 module");
> }
>
> +static struct platform_device da850_timer_device = {
> + .name = "timer-davinci",
> + .id = -1,
> +};
> +
> void __init da850_init_time(void)
> {
> struct clk *clk;
> + int ret;
>
> clk = clk_register_fixed_rate(NULL, "ref_clk", NULL, 0, DA850_REF_FREQ);
>
> davinci_timer_init(clk);
> +
> + ret = clk_register_clkdev(clk, NULL, "timer-davinci");
> + if (ret) {
> + pr_err("%s: error registering ref_clk: %d", __func__, ret);
> + return;
> + }
This part had to be added because you don't have clocks converted to
early platform devices in your branch, right?
Thanks,
Sekhar
next prev parent reply other threads:[~2018-04-24 8:10 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20180423183814.20615-1-brgl@bgdev.pl>
2018-04-23 21:38 ` [RFC work-in-progress 0/7] of: platform: use early platform routines instead of OF_DECLARE David Lechner
2018-04-24 7:26 ` Bartosz Golaszewski
2018-04-24 8:18 ` Sekhar Nori
[not found] ` <20180423183814.20615-6-brgl@bgdev.pl>
2018-04-24 8:10 ` Sekhar Nori [this message]
2018-04-24 16:12 ` [RFC work-in-progress 5/7] !WIP ARM: davinci: convert da850 to using the davinci clocksource driver Bartosz Golaszewski
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=bed00d18-a4c1-5e8f-a15c-f2482e5ecb9a@ti.com \
--to=nsekhar@ti.com \
--cc="sboyd@kernel.orgarnd"@arndb.de \
--cc=bgolaszewski@baylibre.com \
--cc=brgl@bgdev.pl \
--cc=david@lechnology.com \
--cc=gregkh@linuxfoundation.org \
--cc=khilman@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@baylibre.com \
--subject='Re: [RFC work-in-progress 5/7] '\!'WIP ARM: davinci: convert da850 to using the davinci clocksource driver' \
/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
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).