From: Lucas Stach <dev@lynxeye.de>
To: barebox@lists.infradead.org
Subject: [PATCH 1/6] tegra: change clocksource driver to be more lowlevel
Date: Tue, 4 Jun 2013 09:29:18 +0200 [thread overview]
Message-ID: <1370330963-3610-1-git-send-email-dev@lynxeye.de> (raw)
In order to properly bring up the system PLLs we need a reliable
clocksource. To break the circular dependency between the clocksource
and the CAR driver, get the OSC frequency with a lowlevel function.
Signed-off-by: Lucas Stach <dev@lynxeye.de>
---
arch/arm/mach-tegra/include/mach/lowlevel.h | 23 +++++++++++++++++++++++
arch/arm/mach-tegra/tegra20-timer.c | 16 +++-------------
2 files changed, 26 insertions(+), 13 deletions(-)
diff --git a/arch/arm/mach-tegra/include/mach/lowlevel.h b/arch/arm/mach-tegra/include/mach/lowlevel.h
index b7c01c0..071416f 100644
--- a/arch/arm/mach-tegra/include/mach/lowlevel.h
+++ b/arch/arm/mach-tegra/include/mach/lowlevel.h
@@ -142,5 +142,28 @@ static inline long tegra20_get_debuguart_base(void)
return uart_id_to_base[id];
}
+#define CRC_OSC_CTRL 0x050
+#define CRC_OSC_CTRL_OSC_FREQ_SHIFT 30
+#define CRC_OSC_CTRL_OSC_FREQ_MASK (0x3 << CRC_OSC_CTRL_OSC_FREQ_SHIFT)
+
+static inline unsigned int tegra_get_osc_clock(void)
+{
+ u32 osc_ctrl = readl(TEGRA_CLK_RESET_BASE + CRC_OSC_CTRL);
+
+ switch ((osc_ctrl & CRC_OSC_CTRL_OSC_FREQ_MASK) >>
+ CRC_OSC_CTRL_OSC_FREQ_SHIFT) {
+ case 0:
+ return 13000000;
+ case 1:
+ return 19200000;
+ case 2:
+ return 12000000;
+ case 3:
+ return 26000000;
+ default:
+ return 0;
+ }
+}
+
/* reset vector for the main CPU complex */
void tegra_maincomplex_entry(void);
diff --git a/arch/arm/mach-tegra/tegra20-timer.c b/arch/arm/mach-tegra/tegra20-timer.c
index aafbfd4..2b32647 100644
--- a/arch/arm/mach-tegra/tegra20-timer.c
+++ b/arch/arm/mach-tegra/tegra20-timer.c
@@ -24,6 +24,7 @@
#include <init.h>
#include <io.h>
#include <linux/clk.h>
+#include <mach/lowlevel.h>
/* register definitions */
#define TIMERUS_CNTR_1US 0x10
@@ -43,8 +44,6 @@ static struct clocksource cs = {
static int tegra20_timer_probe(struct device_d *dev)
{
- struct clk *timer_clk;
- unsigned long rate;
u32 reg;
/* use only one timer */
@@ -57,22 +56,13 @@ static int tegra20_timer_probe(struct device_d *dev)
return -ENODEV;
}
- timer_clk = clk_get(dev, NULL);
- if (!timer_clk) {
- dev_err(dev, "could not get clock\n");
- return -ENODEV;
- }
-
- clk_enable(timer_clk);
-
/*
* calibrate timer to run at 1MHz
* TIMERUS_USEC_CFG selects the scale down factor with bits [0:7]
* representing the divisor and bits [8:15] representing the dividend
* each in n+1 form.
*/
- rate = clk_get_rate(timer_clk);
- switch (rate) {
+ switch (tegra_get_osc_clock()) {
case 12000000:
reg = 0x000b;
break;
@@ -116,4 +106,4 @@ static int tegra20_timer_init(void)
{
return platform_driver_register(&tegra20_timer_driver);
}
-coredevice_initcall(tegra20_timer_init);
+core_initcall(tegra20_timer_init);
--
1.8.2.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2013-06-04 7:29 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-04 7:29 Lucas Stach [this message]
2013-06-04 7:29 ` [PATCH 2/6] clk: allow to instanciate clk gate without registering it Lucas Stach
2013-06-04 7:29 ` [PATCH 3/6] clk: allow to instanciate clk mux " Lucas Stach
2013-06-04 7:29 ` [PATCH 4/6] tegra: deduplicate clk defines Lucas Stach
2013-06-04 7:29 ` [PATCH 5/6] tegra: add new clock framework driver Lucas Stach
2013-06-04 7:29 ` [PATCH 6/6] tegra: add peripheral clocks Lucas Stach
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=1370330963-3610-1-git-send-email-dev@lynxeye.de \
--to=dev@lynxeye.de \
--cc=barebox@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