LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Bartosz Golaszewski <brgl@bgdev.pl>
To: Sekhar Nori <nsekhar@ti.com>
Cc: David Lechner <david@lechnology.com>,
Kevin Hilman <khilman@kernel.org>,
Michael Turquette <mturquette@baylibre.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Linux ARM <linux-arm-kernel@lists.infradead.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Bartosz Golaszewski <bgolaszewski@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>, Arnd Bergmann <arnd@arndb.de>
Subject: Re: [RFC work-in-progress 5/7] !WIP ARM: davinci: convert da850 to using the davinci clocksource driver
Date: Tue, 24 Apr 2018 18:12:48 +0200 [thread overview]
Message-ID: <CAMRc=McK0DqXShuDHKY-qh-OpctjU41GWRvHX_biULkpt4F7Vw@mail.gmail.com> (raw)
In-Reply-To: <bed00d18-a4c1-5e8f-a15c-f2482e5ecb9a@ti.com>
2018-04-24 10:10 GMT+02:00 Sekhar Nori <nsekhar@ti.com>:
> 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
Yes. Also: I've stumbled upon some problems with the current
implementation of early platform drivers making simple conversion of
psc and pll to early devices impossible. I've mostly fixed them and
hope to be able to send something today or early tomorrow.
Bart
prev parent reply other threads:[~2018-04-24 16:12 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 ` [RFC work-in-progress 5/7] !WIP ARM: davinci: convert da850 to using the davinci clocksource driver Sekhar Nori
2018-04-24 16:12 ` Bartosz Golaszewski [this message]
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='CAMRc=McK0DqXShuDHKY-qh-OpctjU41GWRvHX_biULkpt4F7Vw@mail.gmail.com' \
--to=brgl@bgdev.pl \
--cc=arnd@arndb.de \
--cc=bgolaszewski@baylibre.com \
--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 \
--cc=nsekhar@ti.com \
--cc=sboyd@kernel.org \
--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).