From: s.hauer@pengutronix.de (Sascha Hauer)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] mx25: set GPT clock source to PER
Date: Mon, 5 Jul 2010 10:21:23 +0200 [thread overview]
Message-ID: <20100705082123.GD26079@pengutronix.de> (raw)
In-Reply-To: <40bc9462f125233cc9c63631a9b987ed684b6d97.1278233166.git.baruch@tkos.co.il>
On Sun, Jul 04, 2010 at 11:47:29AM +0300, Baruch Siach wrote:
> This fixes time accounting on mx25 base systems.
>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
> arch/arm/plat-mxc/time.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/plat-mxc/time.c b/arch/arm/plat-mxc/time.c
> index f9a1b05..0d7e0f9 100644
> --- a/arch/arm/plat-mxc/time.c
> +++ b/arch/arm/plat-mxc/time.c
> @@ -56,6 +56,7 @@
> /* MX31, MX35, MX25, MXC91231, MX5 */
> #define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */
> #define V2_TCTL_CLK_IPG (1 << 6)
> +#define V2_TCTL_CLK_PER (2 << 6)
> #define V2_TCTL_FRR (1 << 9)
> #define V2_IR 0x0c
> #define V2_TSTAT 0x08
> @@ -308,7 +309,7 @@ void __init mxc_timer_init(struct clk *timer_clk, void __iomem *base, int irq)
> __raw_writel(0, timer_base + MXC_TPRER); /* see datasheet note */
>
> if (timer_is_v2())
> - tctl_val = V2_TCTL_CLK_IPG | V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
> + tctl_val = V2_TCTL_CLK_PER | V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
> else
> tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
>
I wonder why I applied
commit faed40665d2d81b7e0e537d14ef680ab3da9f22d
Author: Baruch Siach <baruch@tkos.co.il>
Date: Mon Jan 25 12:58:21 2010 +0200
mx25: fix time accounting
The gpt_clk rate function doesn't consider the PER divider. This causes a
significant drift in time accounting. Fix this by introducing the correct rate
calculation function.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
diff --git a/arch/arm/mach-mx25/clock.c b/arch/arm/mach-mx25/clock.c
index 08aaa38..c003ac4 100644
--- a/arch/arm/mach-mx25/clock.c
+++ b/arch/arm/mach-mx25/clock.c
@@ -119,6 +119,11 @@ static unsigned long get_rate_nfc(struct clk *clk)
return get_rate_per(8);
}
+static unsigned long get_rate_gpt(struct clk *clk)
+{
+ return get_rate_per(5);
+}
+
static unsigned long get_rate_otg(struct clk *clk)
{
return 48000000; /* FIXME */
@@ -156,7 +161,7 @@ static void clk_cgcr_disable(struct clk *clk)
.secondary = s, \
}
-DEFINE_CLOCK(gpt_clk, 0, CCM_CGCR0, 5, get_rate_ipg, NULL, NULL);
+DEFINE_CLOCK(gpt_clk, 0, CCM_CGCR0, 5, get_rate_gpt, NULL, NULL);
DEFINE_CLOCK(uart_per_clk, 0, CCM_CGCR0, 15, get_rate_uart, NULL, NULL);
DEFINE_CLOCK(cspi1_clk, 0, CCM_CGCR1, 5, get_rate_ipg, NULL, NULL);
DEFINE_CLOCK(cspi2_clk, 0, CCM_CGCR1, 6, get_rate_ipg, NULL, NULL);
This changed the gpt clock from ipg to the peripheral clock and I
explained why this is wrong. Now of course we now must use the
peripheral clock in the timer code.
Does it work when you revert faed40665d2d81b7e0e537d14ef680ab3da9f22d?
In any case, we can't apply your patch because it would break other v2
based architectures like i.MX35.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
next prev parent reply other threads:[~2010-07-05 8:21 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-21 15:00 [PATCH 0/2] mx25: clock related fixes Baruch Siach
2010-01-21 15:00 ` [PATCH 1/2] mx25: remove unused mx25_clocks_init() argument Baruch Siach
2010-01-21 15:00 ` [PATCH 2/2] mx25: properly initialize clocks, fix time accounting Baruch Siach
2010-01-22 6:50 ` Baruch Siach
2010-01-22 7:57 ` Sascha Hauer
2010-01-25 10:54 ` Baruch Siach
2010-01-25 10:58 ` [PATCH 1/4] mx25: remove unused mx25_clocks_init() argument Baruch Siach
2010-01-25 10:58 ` [PATCH 2/4] mx25: properly initialize clocks Baruch Siach
2010-07-05 7:08 ` Uwe Kleine-König
2010-07-08 10:04 ` Baruch Siach
2010-01-25 10:58 ` [PATCH 3/4] mx25: fix time accounting Baruch Siach
2010-01-25 11:11 ` Lothar Waßmann
2010-01-25 15:01 ` Baruch Siach
2010-05-11 15:43 ` Sascha Hauer
2010-05-12 5:06 ` Baruch Siach
2010-05-12 9:46 ` Sascha Hauer
2010-05-12 10:45 ` Baruch Siach
2010-05-12 12:09 ` Sascha Hauer
2010-07-06 15:28 ` Rob Herring
2010-07-04 8:43 ` Baruch Siach
2010-07-04 8:47 ` [PATCH] mx25: set GPT clock source to PER Baruch Siach
2010-07-05 8:21 ` Sascha Hauer [this message]
2010-07-06 6:35 ` Baruch Siach
2010-07-06 7:33 ` Sascha Hauer
2010-07-06 14:06 ` Rob Herring
2010-07-07 8:00 ` Baruch Siach
2010-07-07 10:28 ` Sascha Hauer
2010-07-07 13:04 ` Baruch Siach
2010-07-05 11:18 ` [PATCH 3/4] mx25: fix time accounting Martin Fuzzey
2010-01-25 10:58 ` [PATCH 4/4] mx25: make the FEC AHB clk secondary of the IPG Baruch Siach
2010-01-22 7:58 ` [PATCH 2/2] mx25: properly initialize clocks, fix time accounting Sascha Hauer
2010-01-22 7:59 ` Sascha Hauer
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=20100705082123.GD26079@pengutronix.de \
--to=s.hauer@pengutronix.de \
--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 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).