]> nv-tegra.nvidia Code Review - linux-3.10.git/blobdiff - arch/arm/mach-tegra/timer.c
ARM: Build fix after Tegra14 K3.4 merge
[linux-3.10.git] / arch / arm / mach-tegra / timer.c
index db0d186fb5e2dab196d9c5f20a9eda72a78ad8b2..540d1edeb44942e8f896849f36b07e31b16f9ace 100644 (file)
@@ -2,12 +2,11 @@
  * arch/arch/mach-tegra/timer.c
  *
  * Copyright (C) 2010 Google, Inc.
- * Copyright (C) 2011 NVIDIA Corporation.
  *
  * Author:
  *     Colin Cross <ccross@google.com>
  *
- * Copyright (C) 2010-2011 NVIDIA Corporation.
+ * Copyright (C) 2010-2012 NVIDIA Corporation.
  *
  * This software is licensed under the terms of the GNU General Public
  * License version 2, as published by the Free Software Foundation, and
 #include <linux/clockchips.h>
 #include <linux/clocksource.h>
 #include <linux/clk.h>
+#include <linux/cpu.h>
 #include <linux/io.h>
 #include <linux/syscore_ops.h>
+#include <linux/cpu_pm.h>
 
 #include <asm/mach/time.h>
+#include <asm/arch_timer.h>
+#include <asm/cputype.h>
 #include <asm/delay.h>
-#include <asm/localtimer.h>
 #include <asm/smp_twd.h>
+#include <asm/system.h>
 #include <asm/sched_clock.h>
 
 #include <mach/irqs.h>
+#include <mach/hardware.h>
 
 #include "board.h"
 #include "clock.h"
 #include "iomap.h"
 #include "timer.h"
+#include "fuse.h"
 
 static void __iomem *timer_reg_base = IO_ADDRESS(TEGRA_TMR1_BASE);
 static void __iomem *rtc_base = IO_ADDRESS(TEGRA_RTC_BASE);
@@ -53,7 +58,11 @@ static u32 usec_config;
 static u32 usec_offset;
 static bool usec_suspended;
 
-static u32 system_timer;
+#ifdef CONFIG_ARCH_TEGRA_2x_SOC
+static u32 system_timer = (TEGRA_TMR3_BASE - TEGRA_TMR1_BASE);
+#else
+static u32 system_timer = 0;
+#endif
 
 #define timer_writel(value, reg) \
        __raw_writel(value, timer_reg_base + (reg))
@@ -108,6 +117,11 @@ static u32 notrace tegra_read_usec(void)
        return cyc;
 }
 
+u32 notrace tegra_read_usec_raw(void)
+{
+       return timer_readl(TIMERUS_CNTR_1US);
+}
+
 static u32 notrace tegra_read_sched_clock(void)
 {
        return tegra_read_usec();
@@ -119,7 +133,7 @@ static u32 notrace tegra_read_sched_clock(void)
  * tegra_rtc driver could be executing to avoid race conditions
  * on the RTC shadow register
  */
-static u64 tegra_rtc_read_ms(void)
+u64 tegra_rtc_read_ms(void)
 {
        u32 ms = readl(rtc_base + RTC_MILLISECONDS);
        u32 s = readl(rtc_base + RTC_SHADOW_SECONDS);
@@ -162,6 +176,11 @@ static struct irqaction tegra_timer_irq = {
        .flags          = IRQF_DISABLED | IRQF_TIMER | IRQF_TRIGGER_HIGH,
        .handler        = tegra_timer_interrupt,
        .dev_id         = &tegra_clockevent,
+#ifdef CONFIG_ARCH_TEGRA_2x_SOC
+       .irq            = INT_TMR3,
+#else
+       .irq            = INT_TMR1,
+#endif
 };
 
 static int tegra_timer_suspend(void)
@@ -188,22 +207,44 @@ static struct syscore_ops tegra_timer_syscore_ops = {
 };
 
 #ifdef CONFIG_HAVE_ARM_TWD
-static void __iomem *twd_base = IO_ADDRESS(TEGRA_ARM_PERIF_BASE + 0x600);
 static DEFINE_TWD_LOCAL_TIMER(twd_local_timer,
                              TEGRA_ARM_PERIF_BASE + 0x600,
                              IRQ_LOCALTIMER);
+static void __iomem *tegra_twd_base = IO_ADDRESS(TEGRA_ARM_PERIF_BASE + 0x600);
 
-static void __init tegra_twd_init(void)
+void __init tegra_cpu_timer_init(void)
 {
-       int err = twd_local_timer_register(&twd_local_timer);
+       struct clk *cpu, *twd_clk;
+       int err;
+
+       /* The twd clock is a detached child of the CPU complex clock.
+          Force an update of the twd clock after DVFS has updated the
+          CPU clock rate. */
+
+       twd_clk = tegra_get_clock_by_name("twd");
+       BUG_ON(!twd_clk);
+       cpu = tegra_get_clock_by_name("cpu");
+       err = clk_set_rate(twd_clk, clk_get_rate(cpu));
+
        if (err)
-               pr_err("twd_local_timer_register failed %d\n", err);
+               pr_err("Failed to set twd clock rate: %d\n", err);
+       else
+               pr_debug("TWD clock rate: %ld\n", clk_get_rate(twd_clk));
+}
+
+int tegra_twd_get_state(struct tegra_twd_context *context)
+{
+       context->twd_ctrl = readl(tegra_twd_base + TWD_TIMER_CONTROL);
+       context->twd_load = readl(tegra_twd_base + TWD_TIMER_LOAD);
+       context->twd_cnt = readl(tegra_twd_base + TWD_TIMER_COUNTER);
+
+       return 0;
 }
 
 void tegra_twd_suspend(struct tegra_twd_context *context)
 {
-       context->twd_ctrl = readl(twd_base + TWD_TIMER_CONTROL);
-       context->twd_load = readl(twd_base + TWD_TIMER_LOAD);
+       context->twd_ctrl = readl(tegra_twd_base + TWD_TIMER_CONTROL);
+       context->twd_load = readl(tegra_twd_base + TWD_TIMER_LOAD);
        if ((context->twd_load == 0) &&
            (context->twd_ctrl & TWD_TIMER_CONTROL_PERIODIC) &&
            (context->twd_ctrl & (TWD_TIMER_CONTROL_ENABLE |
@@ -211,7 +252,7 @@ void tegra_twd_suspend(struct tegra_twd_context *context)
                WARN("%s: TWD enabled but counter was 0\n", __func__);
                context->twd_load = 1;
        }
-       __raw_writel(0, twd_base + TWD_TIMER_CONTROL);
+       __raw_writel(0, tegra_twd_base + TWD_TIMER_CONTROL);
 }
 
 void tegra_twd_resume(struct tegra_twd_context *context)
@@ -220,11 +261,284 @@ void tegra_twd_resume(struct tegra_twd_context *context)
               (context->twd_ctrl & TWD_TIMER_CONTROL_PERIODIC) &&
               (context->twd_ctrl & (TWD_TIMER_CONTROL_ENABLE |
                                     TWD_TIMER_CONTROL_IT_ENABLE)));
-       writel(context->twd_load, twd_base + TWD_TIMER_LOAD);
-       writel(context->twd_ctrl, twd_base + TWD_TIMER_CONTROL);
+       writel(context->twd_load, tegra_twd_base + TWD_TIMER_LOAD);
+       writel(context->twd_ctrl, tegra_twd_base + TWD_TIMER_CONTROL);
+}
+
+static void __init tegra_init_late_timer(void)
+{
+       int err = twd_local_timer_register(&twd_local_timer);
+       if (err)
+               pr_err("twd_timer_register failed %d\n", err);
+}
+#else
+#define tegra_twd_get_state    do {} while(0)
+#define tegra_twd_suspend      do {} while(0)
+#define tegra_twd_resume       do {} while(0)
+void __init tegra_cpu_timer_init(void) {}
+static void __init tegra_init_late_timer(void) {}
+#endif
+
+#ifdef CONFIG_ARM_ARCH_TIMER
+int arch_timer_get_state(struct arch_timer_context *context)
+{
+       s32 val;
+
+       asm volatile("mrc p15, 0, %0, c14, c2, 0" : "=r" (val));
+       context->cntp_tval = val;
+       asm volatile("mrc p15, 0, %0, c14, c2, 1" : "=r" (val));
+       context->cntp_ctl = val;
+       asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r" (val));
+       context->cntfrq = val;
+       return 0;
+}
+
+void arch_timer_suspend(struct arch_timer_context *context)
+{
+       s32 val;
+
+       asm volatile("mrc p15, 0, %0, c14, c2, 0" : "=r" (val));
+       context->cntp_tval = val;
+       asm volatile("mrc p15, 0, %0, c14, c2, 1" : "=r" (val));
+       context->cntp_ctl = val;
+}
+
+void arch_timer_resume(struct arch_timer_context *context)
+{
+       s32 val;
+
+       val = context->cntp_tval;
+       asm volatile("mcr p15, 0, %0, c14, c2, 0" : : "r"(val));
+       val = context->cntp_ctl;
+       asm volatile("mcr p15, 0, %0, c14, c2, 1" : : "r"(val));
+}
+#else
+#define arch_timer_get_state do {} while(0)
+#define arch_timer_suspend do {} while(0)
+#define arch_timer_resume do {} while(0)
+#endif
+
+#ifdef CONFIG_ARM_ARCH_TIMER
+
+#ifndef CONFIG_TRUSTED_FOUNDATIONS
+/* Time Stamp Counter (TSC) base address */
+static void __iomem *tsc = IO_ADDRESS(TEGRA_TSC_BASE);
+#endif
+static bool arch_timer_initialized;
+
+#define TSC_CNTCR              0               /* TSC control registers */
+#define TSC_CNTCR_ENABLE       (1 << 0)        /* Enable*/
+#define TSC_CNTCR_HDBG         (1 << 1)        /* Halt on debug */
+
+#define TSC_CNTCV0             0x8             /* TSC counter (LSW) */
+#define TSC_CNTCV1             0xC             /* TSC counter (MSW) */
+#define TSC_CNTFID0            0x20            /* TSC freq id 0 */
+
+#define tsc_writel(value, reg) \
+       __raw_writel(value, tsc + (reg))
+#define tsc_readl(reg) \
+       __raw_readl(tsc + (reg))
+
+
+/* Is the optional system timer available? */
+static int local_timer_is_architected(void)
+{
+       return (cpu_architecture() >= CPU_ARCH_ARMv7) &&
+              ((read_cpuid_ext(CPUID_EXT_PFR1) >> 16) & 0xf) == 1;
+}
+
+void __init tegra_cpu_timer_init(void)
+{
+#ifdef CONFIG_TRUSTED_FOUNDATIONS
+       return;
+#else
+       u32 tsc_ref_freq;
+       u32 reg;
+
+       if (!local_timer_is_architected())
+               return;
+
+       tsc_ref_freq = tegra_clk_measure_input_freq();
+       if (tsc_ref_freq == 115200 || tsc_ref_freq == 230400) {
+               /*
+                * OSC detection function will bug out if revision is not QT and
+                * the detected frequency is one of these two.
+                */
+               tsc_ref_freq = 13000000;
+               pr_info("fake tsc_ref_req=%d in QT\n", tsc_ref_freq);
+       }
+
+       /* Set the Timer System Counter (TSC) reference frequency
+          NOTE: this is a write once register */
+       tsc_writel(tsc_ref_freq, TSC_CNTFID0);
+
+       /* Program CNTFRQ to the same value.
+          NOTE: this is a write once (per CPU reset) register. */
+       __asm__("mcr p15, 0, %0, c14, c0, 0\n" : : "r" (tsc_ref_freq));
+
+       /* CNTFRQ must agree with the TSC reference frequency. */
+       __asm__("mrc p15, 0, %0, c14, c0, 0\n" : "=r" (reg));
+       BUG_ON(reg != tsc_ref_freq);
+
+       /* Enable the TSC. */
+       reg = tsc_readl(TSC_CNTCR);
+       reg |= TSC_CNTCR_ENABLE | TSC_CNTCR_HDBG;
+       tsc_writel(reg, TSC_CNTCR);
+#endif
+}
+
+static void tegra_arch_timer_per_cpu_init(void)
+{
+#ifdef CONFIG_TRUSTED_FOUNDATIONS
+       return;
+#else
+       if (arch_timer_initialized) {
+               u32 tsc_ref_freq = tegra_clk_measure_input_freq();
+
+               /*
+                * OSC detection function will bug out if revision is not QT and
+                * the detected frequency is one of these two.
+                */
+               if (tsc_ref_freq == 115200 || tsc_ref_freq == 230400)
+                       tsc_ref_freq = 13000000;
+
+               /* Program CNTFRQ to the input frequency.
+                  NOTE: this is a write once (per CPU reset) register. */
+               __asm__("mcr p15, 0, %0, c14, c0, 0\n" : : "r" (tsc_ref_freq));
+       }
+#endif
+}
+
+static int arch_timer_cpu_notify(struct notifier_block *self,
+                                   unsigned long action, void *data)
+{
+       switch (action) {
+       case CPU_STARTING:
+       case CPU_STARTING_FROZEN:
+               tegra_arch_timer_per_cpu_init();
+               break;
+       default:
+               break;
+       }
+
+       return NOTIFY_OK;
+}
+
+static struct notifier_block arch_timer_cpu_nb = {
+       .notifier_call = arch_timer_cpu_notify,
+};
+
+static int arch_timer_cpu_pm_notify(struct notifier_block *self,
+                                   unsigned long action, void *data)
+{
+       switch (action) {
+       case CPU_PM_EXIT:
+               tegra_arch_timer_per_cpu_init();
+               break;
+       }
+
+       return NOTIFY_OK;
+}
+
+static struct notifier_block arch_timer_cpu_pm_nb = {
+       .notifier_call = arch_timer_cpu_pm_notify,
+};
+
+static int __init tegra_init_arch_timer(void)
+{
+       int err;
+
+       if (!local_timer_is_architected())
+               return -ENODEV;
+
+       arch_timer_of_register();
+
+       err = arch_timer_sched_clock_init();
+       if (err) {
+               pr_err("%s: Unable to initialize arch timer sched_clock: %d\n",
+                    __func__, err);
+               return err;
+       }
+
+       register_cpu_notifier(&arch_timer_cpu_nb);
+       cpu_pm_register_notifier(&arch_timer_cpu_pm_nb);
+       arch_timer_initialized = true;
+       return 0;
+}
+
+static void __init tegra_init_late_timer(void)
+{}
+
+#ifdef CONFIG_PM_SLEEP
+
+static void __iomem *pmc = IO_ADDRESS(TEGRA_PMC_BASE);
+static u32 tsc_suspend_start;
+static u32 tsc_resume_start;
+
+#define pmc_writel(value, reg) \
+               writel(value, pmc + (reg))
+#define pmc_readl(reg) \
+               readl(pmc + (reg))
+
+#define PMC_DPD_ENABLE                 0x24
+#define PMC_DPD_ENABLE_TSC_MULT_ENABLE (1 << 1)
+
+#define PMC_TSC_MULT                   0x2b4
+#define PMC_TSC_MULT_FREQ_STS          (1 << 16)
+
+#define TSC_TIMEOUT_US                 32
+
+void tegra_tsc_suspend(void)
+{
+       if (arch_timer_initialized) {
+               u32 reg = pmc_readl(PMC_DPD_ENABLE);
+               BUG_ON(reg & PMC_DPD_ENABLE_TSC_MULT_ENABLE);
+               reg |= PMC_DPD_ENABLE_TSC_MULT_ENABLE;
+               pmc_writel(reg, PMC_DPD_ENABLE);
+               tsc_suspend_start = timer_readl(TIMERUS_CNTR_1US);
+       }
 }
+
+void tegra_tsc_resume(void)
+{
+       if (arch_timer_initialized) {
+               u32 reg = pmc_readl(PMC_DPD_ENABLE);
+               BUG_ON(!(reg & PMC_DPD_ENABLE_TSC_MULT_ENABLE));
+               reg &= ~PMC_DPD_ENABLE_TSC_MULT_ENABLE;
+               pmc_writel(reg, PMC_DPD_ENABLE);
+               tsc_resume_start = timer_readl(TIMERUS_CNTR_1US);
+       }
+}
+
+void tegra_tsc_wait_for_suspend(void)
+{
+       if (arch_timer_initialized) {
+               while ((timer_readl(TIMERUS_CNTR_1US) - tsc_suspend_start) <
+                       TSC_TIMEOUT_US) {
+                       if (pmc_readl(PMC_TSC_MULT) & PMC_TSC_MULT_FREQ_STS)
+                               break;
+                       cpu_relax();
+               }
+       }
+}
+
+void tegra_tsc_wait_for_resume(void)
+{
+       if (arch_timer_initialized) {
+               while ((timer_readl(TIMERUS_CNTR_1US) - tsc_resume_start) <
+                       TSC_TIMEOUT_US) {
+                       if (!(pmc_readl(PMC_TSC_MULT) & PMC_TSC_MULT_FREQ_STS))
+                               break;
+                       cpu_relax();
+               }
+       }
+}
+
+#endif
+
 #else
-#define tegra_twd_init()       do {} while(0)
+static inline int tegra_init_arch_timer(void) { return -ENODEV; }
+static inline int tegra_init_late_arch_timer(void) { return -ENODEV; }
 #endif
 
 extern void __tegra_delay(unsigned long cycles);
@@ -242,7 +556,7 @@ void __init tegra_init_timer(void)
                pr_warn("Unable to get timer clock. Assuming 12Mhz input clock.\n");
                rate = 12000000;
        } else {
-               clk_prepare_enable(clk);
+               tegra_clk_prepare_enable(clk);
                rate = clk_get_rate(clk);
        }
 
@@ -254,25 +568,67 @@ void __init tegra_init_timer(void)
        if (IS_ERR(clk))
                pr_warn("Unable to get rtc-tegra clock\n");
        else
-               clk_prepare_enable(clk);
+               tegra_clk_prepare_enable(clk);
+
+       switch (rate) {
+       case 12000000:
+               timer_writel(0x000b, TIMERUS_USEC_CFG);
+               break;
+       case 13000000:
+               timer_writel(0x000c, TIMERUS_USEC_CFG);
+               break;
+       case 19200000:
+               timer_writel(0x045f, TIMERUS_USEC_CFG);
+               break;
+       case 26000000:
+               timer_writel(0x0019, TIMERUS_USEC_CFG);
+               break;
+#ifndef CONFIG_ARCH_TEGRA_2x_SOC
+       case 16800000:
+               timer_writel(0x0453, TIMERUS_USEC_CFG);
+               break;
+       case 38400000:
+               timer_writel(0x04BF, TIMERUS_USEC_CFG);
+               break;
+       case 48000000:
+               timer_writel(0x002F, TIMERUS_USEC_CFG);
+               break;
+#endif
+       default:
+               if (tegra_platform_is_qt()) {
+                       timer_writel(0x000c, TIMERUS_USEC_CFG);
+                       break;
+               }
+               WARN(1, "Unknown clock rate");
+       }
 
 #ifdef CONFIG_ARCH_TEGRA_2x_SOC
-       tegra2_init_timer(&system_timer, &tegra_timer_irq.irq, rate);
+       tegra20_init_timer();
 #else
-       tegra3_init_timer(&system_timer, &tegra_timer_irq.irq, rate);
+       tegra30_init_timer();
 #endif
 
-       setup_sched_clock(tegra_read_sched_clock, 32, 1000000);
-
-       if (clocksource_mmio_init(timer_reg_base + TIMERUS_CNTR_1US,
-               "timer_us", 1000000, 300, 32, clocksource_mmio_readl_up)) {
-               pr_err("Failed to register clocksource\n");
+       /* Architectural timers take precedence over broadcast timers.
+          Only register a broadcast clockevent device if architectural
+          timers do not exist or cannot be initialized. */
+       if (tegra_init_arch_timer())
+               /* Architectural timers do not exist or cannot be initialzied.
+                  Fall back to using the broadcast timer as the sched clock. */
+               setup_sched_clock(tegra_read_sched_clock, 32, 1000000);
+
+       ret = clocksource_mmio_init(timer_reg_base + TIMERUS_CNTR_1US,
+               "timer_us", 1000000, 300, 32,
+               clocksource_mmio_readl_up);
+       if (ret) {
+               pr_err("%s: Failed to register clocksource: %d\n",
+                       __func__, ret);
                BUG();
        }
 
        ret = setup_irq(tegra_timer_irq.irq, &tegra_timer_irq);
        if (ret) {
-               pr_err("Failed to register timer IRQ: %d\n", ret);
+               pr_err("%s: Failed to register timer IRQ: %d\n",
+                       __func__, ret);
                BUG();
        }
 
@@ -285,12 +641,12 @@ void __init tegra_init_timer(void)
        tegra_clockevent.irq = tegra_timer_irq.irq;
        clockevents_register_device(&tegra_clockevent);
 
-       tegra_twd_init();
        register_syscore_ops(&tegra_timer_syscore_ops);
+       late_time_init = tegra_init_late_timer;
 
        register_persistent_clock(NULL, tegra_read_persistent_clock);
 
-       arm_delay_ops.delay             = __tegra_delay;
-       arm_delay_ops.const_udelay      = __tegra_const_udelay;
-       arm_delay_ops.udelay            = __tegra_udelay;
+       //arm_delay_ops.delay           = __tegra_delay;
+       //arm_delay_ops.const_udelay    = __tegra_const_udelay;
+       //arm_delay_ops.udelay          = __tegra_udelay;
 }