From: florian@openwrt.org (Florian Fainelli)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/8] ARM: support for Moschip MCS814x SoCs
Date: Mon, 23 Jul 2012 21:11:06 +0200 [thread overview]
Message-ID: <6220407.M8CZZfZu0N@bender> (raw)
In-Reply-To: <20120716142941.666d928c@skate>
Hello Thomas,
On Monday 16 July 2012 14:29:41 Thomas Petazzoni wrote:
> Hello Florian,
>
[snip]
> > +static void __init mcs814x_of_timer_init(void)
> > +{
> > + struct device_node *np;
> > + const unsigned int *intspec;
> > +
> > + np = of_find_matching_node(NULL, mcs814x_timer_ids);
> > + if (!np)
> > + panic("unable to find compatible timer node in dtb");
> > +
> > + mcs814x_timer_base = of_iomap(np, 0);
> > + if (!mcs814x_timer_base)
> > + panic("unable to remap timer cpu registers");
> > +
> > + intspec = of_get_property(np, "interrupts", NULL);
> > + if (!intspec)
> > + panic("no interrupts property for timer");
> > +
> > + mcs814x_timer_irq.irq = be32_to_cpup(intspec);
> > +}
> > +
> > +static void __init mcs814x_timer_init(void)
> > +{
> > + struct clk *clk;
> > +
> > + clk = clk_get_sys("timer0", NULL);
> > + if (IS_ERR_OR_NULL(clk))
> > + panic("unable to get timer0 clock");
> > +
> > + clock_rate = clk_get_rate(clk);
> > + clk_put(clk);
> > +
> > + mcs814x_of_timer_init();
> > +
> > + pr_info("Timer frequency: %d (kHz)\n", clock_rate / 1000);
> > +
> > + timer_reload_value = 0xffffffff - (clock_rate / HZ);
> > +
> > + /* disable timer */
> > + __raw_writel(0, mcs814x_timer_base + TIMER_CTL);
> > + __raw_writel(timer_reload_value, mcs814x_timer_base + TIMER_VAL);
> > + last_reload = timer_reload_value;
> > +
> > + setup_irq(mcs814x_timer_irq.irq, &mcs814x_timer_irq);
> > + /* enable timer, stop timer in debug mode */
> > + __raw_writel(0x03, mcs814x_timer_base + TIMER_CTL);
> > +}
> > +
> > +struct sys_timer mcs814x_timer = {
> > + .init = mcs814x_timer_init,
> > + .offset = mcs814x_gettimeoffset,
> > +};
>
> I am surprised that this doesn't use the clocksource and clockevents
> infrastructure. It probably should, and be implemented in
> drivers/clocksource/.
This may sound like a stupid question, but the big constraint with this SoC is
that the timers do not reload themselves, and so far, I did not find out how I
can handle this properly with a clocksource. I suppose that it should not be a
big problem for the clockevent device however.
Has anyone any example of such particular case?
--
Florian
WARNING: multiple messages have this Message-ID (diff)
From: Florian Fainelli <florian@openwrt.org>
To: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: olof@lixom.net, devicetree-discuss@lists.ozlabs.org,
arnd@arndb.de, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/8] ARM: support for Moschip MCS814x SoCs
Date: Mon, 23 Jul 2012 21:11:06 +0200 [thread overview]
Message-ID: <6220407.M8CZZfZu0N@bender> (raw)
In-Reply-To: <20120716142941.666d928c@skate>
Hello Thomas,
On Monday 16 July 2012 14:29:41 Thomas Petazzoni wrote:
> Hello Florian,
>
[snip]
> > +static void __init mcs814x_of_timer_init(void)
> > +{
> > + struct device_node *np;
> > + const unsigned int *intspec;
> > +
> > + np = of_find_matching_node(NULL, mcs814x_timer_ids);
> > + if (!np)
> > + panic("unable to find compatible timer node in dtb");
> > +
> > + mcs814x_timer_base = of_iomap(np, 0);
> > + if (!mcs814x_timer_base)
> > + panic("unable to remap timer cpu registers");
> > +
> > + intspec = of_get_property(np, "interrupts", NULL);
> > + if (!intspec)
> > + panic("no interrupts property for timer");
> > +
> > + mcs814x_timer_irq.irq = be32_to_cpup(intspec);
> > +}
> > +
> > +static void __init mcs814x_timer_init(void)
> > +{
> > + struct clk *clk;
> > +
> > + clk = clk_get_sys("timer0", NULL);
> > + if (IS_ERR_OR_NULL(clk))
> > + panic("unable to get timer0 clock");
> > +
> > + clock_rate = clk_get_rate(clk);
> > + clk_put(clk);
> > +
> > + mcs814x_of_timer_init();
> > +
> > + pr_info("Timer frequency: %d (kHz)\n", clock_rate / 1000);
> > +
> > + timer_reload_value = 0xffffffff - (clock_rate / HZ);
> > +
> > + /* disable timer */
> > + __raw_writel(0, mcs814x_timer_base + TIMER_CTL);
> > + __raw_writel(timer_reload_value, mcs814x_timer_base + TIMER_VAL);
> > + last_reload = timer_reload_value;
> > +
> > + setup_irq(mcs814x_timer_irq.irq, &mcs814x_timer_irq);
> > + /* enable timer, stop timer in debug mode */
> > + __raw_writel(0x03, mcs814x_timer_base + TIMER_CTL);
> > +}
> > +
> > +struct sys_timer mcs814x_timer = {
> > + .init = mcs814x_timer_init,
> > + .offset = mcs814x_gettimeoffset,
> > +};
>
> I am surprised that this doesn't use the clocksource and clockevents
> infrastructure. It probably should, and be implemented in
> drivers/clocksource/.
This may sound like a stupid question, but the big constraint with this SoC is
that the timers do not reload themselves, and so far, I did not find out how I
can handle this properly with a clocksource. I suppose that it should not be a
big problem for the clockevent device however.
Has anyone any example of such particular case?
--
Florian
next prev parent reply other threads:[~2012-07-23 19:11 UTC|newest]
Thread overview: 80+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-15 14:49 [PATCH 0/8] ARM: support for Moschip MCS814x SoCs Florian Fainelli
2012-07-15 14:49 ` Florian Fainelli
2012-07-15 14:49 ` [PATCH 1/8] " Florian Fainelli
2012-07-15 14:49 ` Florian Fainelli
2012-07-16 12:29 ` Thomas Petazzoni
2012-07-16 12:29 ` Thomas Petazzoni
2012-07-16 12:43 ` Florian Fainelli
2012-07-16 12:43 ` Florian Fainelli
2012-07-16 15:55 ` Arnd Bergmann
2012-07-16 15:55 ` Arnd Bergmann
2012-07-16 17:57 ` Nicolas Pitre
2012-07-16 17:57 ` Nicolas Pitre
2012-07-23 19:11 ` Florian Fainelli [this message]
2012-07-23 19:11 ` Florian Fainelli
2012-07-27 22:42 ` Linus Walleij
2012-07-27 22:42 ` Linus Walleij
2012-07-16 15:54 ` Arnd Bergmann
2012-07-16 15:54 ` Arnd Bergmann
2012-07-16 20:47 ` Turquette, Mike
2012-07-16 20:47 ` Turquette, Mike
2012-07-17 9:41 ` Florian Fainelli
2012-07-17 9:41 ` Florian Fainelli
2012-07-17 10:47 ` Florian Fainelli
2012-07-17 10:47 ` Florian Fainelli
2012-07-16 22:12 ` Linus Walleij
2012-07-16 22:12 ` Linus Walleij
2012-07-17 9:35 ` Florian Fainelli
2012-07-17 9:35 ` Florian Fainelli
2012-07-17 9:34 ` Florian Fainelli
2012-07-17 9:34 ` Florian Fainelli
2012-07-17 13:07 ` Arnd Bergmann
2012-07-17 13:07 ` Arnd Bergmann
2012-07-17 13:32 ` Florian Fainelli
2012-07-17 13:32 ` Florian Fainelli
2012-07-17 13:45 ` Arnd Bergmann
2012-07-17 13:45 ` Arnd Bergmann
2012-07-17 10:16 ` Thomas Petazzoni
2012-07-17 10:16 ` Thomas Petazzoni
2012-07-17 13:12 ` Arnd Bergmann
2012-07-17 13:12 ` Arnd Bergmann
2012-07-17 13:28 ` Thomas Petazzoni
2012-07-17 13:28 ` Thomas Petazzoni
2012-07-17 13:51 ` Arnd Bergmann
2012-07-17 13:51 ` Arnd Bergmann
2012-07-16 22:06 ` Linus Walleij
2012-07-16 22:06 ` Linus Walleij
2012-07-15 14:49 ` [PATCH 2/8] ARM: MCS814x: add Device Tree based MCS8140 board support Florian Fainelli
2012-07-15 14:49 ` Florian Fainelli
2012-07-17 13:19 ` Arnd Bergmann
2012-07-17 13:19 ` Arnd Bergmann
2012-07-17 13:34 ` Florian Fainelli
2012-07-17 13:34 ` Florian Fainelli
2012-07-17 13:53 ` Arnd Bergmann
2012-07-17 13:53 ` Arnd Bergmann
2012-07-17 13:57 ` Florian Fainelli
2012-07-17 13:57 ` Florian Fainelli
2012-07-15 14:49 ` [PATCH 3/8] ARM: MCS814x: add Device Tree bindings documentation Florian Fainelli
2012-07-15 14:49 ` Florian Fainelli
2012-07-17 13:24 ` Arnd Bergmann
2012-07-17 13:24 ` Arnd Bergmann
2012-07-17 13:35 ` Florian Fainelli
2012-07-17 13:35 ` Florian Fainelli
2012-07-15 14:49 ` [PATCH 4/8] ARM: MCS814X: add DTS file for Tigal/Robotech RBT-832 Florian Fainelli
2012-07-15 14:49 ` Florian Fainelli
2012-07-17 13:27 ` Arnd Bergmann
2012-07-17 13:27 ` Arnd Bergmann
2012-07-15 14:49 ` [PATCH 5/8] ARM: MCS814x: add DTS file for Devolo dLAN USB Extender Florian Fainelli
2012-07-15 14:49 ` Florian Fainelli
2012-07-15 14:49 ` [PATCH 6/8] ARM: MCS814x: provide a sample defconfig file Florian Fainelli
2012-07-15 14:49 ` Florian Fainelli
2012-07-15 14:49 ` [PATCH 7/8] ARM: MSC814X: add Kconfig and Makefile to arch/arm Florian Fainelli
2012-07-15 14:49 ` Florian Fainelli
2012-07-15 14:49 ` [PATCH 8/8] ARM: MSC814x: add MAINTAINERS entry Florian Fainelli
2012-07-15 14:49 ` Florian Fainelli
2012-07-15 19:59 ` [PATCH 0/8] ARM: support for Moschip MCS814x SoCs Arnd Bergmann
2012-07-15 19:59 ` Arnd Bergmann
2012-07-16 8:16 ` Florian Fainelli
2012-07-16 8:16 ` Florian Fainelli
2012-07-16 18:09 ` Nicolas Pitre
2012-07-16 18:09 ` Nicolas Pitre
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=6220407.M8CZZfZu0N@bender \
--to=florian@openwrt.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.