Fix the following warning seen while linking WARNING: vmlinux.o(.text+0xc4b8): Section mismatch in reference from the function arch_timer_register() to the (unknown reference) .cpuinit.data:(unknown) The function arch_timer_register() references the (unknown reference) __cpuinitdata (unknown). This is often because arch_timer_register lacks a __cpuinitdata annotation or the annotation of (unknown) is wrong. Change-Id: I2646e63550b9f46d36a34d9e3b2841c7d6204386 Signed-off-by: Sathish Ambley <sambley@codeaurora.org>
355 lines
8.2 KiB
C
355 lines
8.2 KiB
C
/*
|
|
* linux/arch/arm/kernel/arch_timer.c
|
|
*
|
|
* Copyright (C) 2011 ARM Ltd.
|
|
* All Rights Reserved
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
#include <linux/init.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/timex.h>
|
|
#include <linux/device.h>
|
|
#include <linux/smp.h>
|
|
#include <linux/cpu.h>
|
|
#include <linux/jiffies.h>
|
|
#include <linux/clockchips.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/io.h>
|
|
#include <linux/irq.h>
|
|
|
|
#include <asm/cputype.h>
|
|
#include <asm/sched_clock.h>
|
|
#include <asm/hardware/gic.h>
|
|
|
|
static struct irqaction arch_irqaction[2];
|
|
static unsigned long arch_timer_rate;
|
|
static int arch_timer_ppi;
|
|
static int arch_timer_ppi2;
|
|
static DEFINE_CLOCK_DATA(cd);
|
|
|
|
static struct clock_event_device __percpu *arch_timer_evt;
|
|
|
|
/*
|
|
* Architected system timer support.
|
|
*/
|
|
|
|
#define ARCH_TIMER_CTRL_ENABLE (1 << 0)
|
|
#define ARCH_TIMER_CTRL_IT_MASK (1 << 1)
|
|
|
|
#define ARCH_TIMER_REG_CTRL 0
|
|
#define ARCH_TIMER_REG_FREQ 1
|
|
#define ARCH_TIMER_REG_TVAL 2
|
|
|
|
static void arch_timer_reg_write(int reg, u32 val)
|
|
{
|
|
switch (reg) {
|
|
case ARCH_TIMER_REG_CTRL:
|
|
asm volatile("mcr p15, 0, %0, c14, c2, 1" : : "r" (val));
|
|
break;
|
|
case ARCH_TIMER_REG_TVAL:
|
|
asm volatile("mcr p15, 0, %0, c14, c2, 0" : : "r" (val));
|
|
break;
|
|
}
|
|
|
|
isb();
|
|
}
|
|
|
|
static u32 arch_timer_reg_read(int reg)
|
|
{
|
|
u32 val;
|
|
|
|
switch (reg) {
|
|
case ARCH_TIMER_REG_CTRL:
|
|
asm volatile("mrc p15, 0, %0, c14, c2, 1" : "=r" (val));
|
|
break;
|
|
case ARCH_TIMER_REG_FREQ:
|
|
asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r" (val));
|
|
break;
|
|
case ARCH_TIMER_REG_TVAL:
|
|
asm volatile("mrc p15, 0, %0, c14, c2, 0" : "=r" (val));
|
|
break;
|
|
default:
|
|
BUG();
|
|
}
|
|
|
|
return val;
|
|
}
|
|
|
|
static irqreturn_t arch_timer_handler(int irq, void *dev_id)
|
|
{
|
|
struct clock_event_device *evt;
|
|
unsigned long ctrl;
|
|
|
|
ctrl = arch_timer_reg_read(ARCH_TIMER_REG_CTRL);
|
|
if (ctrl & 0x4) {
|
|
ctrl |= ARCH_TIMER_CTRL_IT_MASK;
|
|
arch_timer_reg_write(ARCH_TIMER_REG_CTRL, ctrl);
|
|
evt = per_cpu_ptr(arch_timer_evt, smp_processor_id());
|
|
evt->event_handler(evt);
|
|
return IRQ_HANDLED;
|
|
}
|
|
|
|
return IRQ_NONE;
|
|
}
|
|
|
|
static void arch_timer_stop(void)
|
|
{
|
|
unsigned long ctrl;
|
|
|
|
ctrl = arch_timer_reg_read(ARCH_TIMER_REG_CTRL);
|
|
ctrl &= ~ARCH_TIMER_CTRL_ENABLE;
|
|
arch_timer_reg_write(ARCH_TIMER_REG_CTRL, ctrl);
|
|
}
|
|
|
|
static void arch_timer_set_mode(enum clock_event_mode mode,
|
|
struct clock_event_device *clk)
|
|
{
|
|
switch (mode) {
|
|
case CLOCK_EVT_MODE_UNUSED:
|
|
case CLOCK_EVT_MODE_SHUTDOWN:
|
|
arch_timer_stop();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
static int arch_timer_set_next_event(unsigned long evt,
|
|
struct clock_event_device *unused)
|
|
{
|
|
unsigned long ctrl;
|
|
|
|
ctrl = arch_timer_reg_read(ARCH_TIMER_REG_CTRL);
|
|
ctrl |= ARCH_TIMER_CTRL_ENABLE;
|
|
ctrl &= ~ARCH_TIMER_CTRL_IT_MASK;
|
|
|
|
arch_timer_reg_write(ARCH_TIMER_REG_CTRL, ctrl);
|
|
arch_timer_reg_write(ARCH_TIMER_REG_TVAL, evt);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void __cpuinit arch_timer_setup(void *data)
|
|
{
|
|
struct clock_event_device *clk = data;
|
|
|
|
/* Be safe... */
|
|
arch_timer_stop();
|
|
|
|
clk->features = CLOCK_EVT_FEAT_ONESHOT;
|
|
clk->name = "arch_sys_timer";
|
|
clk->rating = 450;
|
|
clk->set_mode = arch_timer_set_mode;
|
|
clk->set_next_event = arch_timer_set_next_event;
|
|
clk->irq = arch_timer_ppi;
|
|
clk->cpumask = cpumask_of(smp_processor_id());
|
|
|
|
clockevents_config_and_register(clk, arch_timer_rate,
|
|
0xf, 0x7fffffff);
|
|
|
|
gic_enable_ppi(arch_timer_ppi);
|
|
if (arch_timer_ppi2 > 0)
|
|
gic_enable_ppi(arch_timer_ppi2);
|
|
}
|
|
|
|
/* 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;
|
|
}
|
|
|
|
static int arch_timer_available(void)
|
|
{
|
|
unsigned long freq;
|
|
|
|
if (!local_timer_is_architected())
|
|
return -ENXIO;
|
|
|
|
if (arch_timer_rate == 0) {
|
|
arch_timer_reg_write(ARCH_TIMER_REG_CTRL, 0);
|
|
freq = arch_timer_reg_read(ARCH_TIMER_REG_FREQ);
|
|
|
|
/* Check the timer frequency. */
|
|
if (freq == 0) {
|
|
pr_warn("Architected timer frequency not available\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
arch_timer_rate = freq;
|
|
pr_info("Architected local timer running at %lu.%02luMHz.\n",
|
|
arch_timer_rate / 1000000, (arch_timer_rate % 100000) / 100);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static inline cycle_t arch_counter_get_cntpct(void)
|
|
{
|
|
u32 cvall, cvalh;
|
|
|
|
asm volatile("mrrc p15, 0, %0, %1, c14" : "=r" (cvall), "=r" (cvalh));
|
|
|
|
return ((u64) cvalh << 32) | cvall;
|
|
}
|
|
|
|
static inline cycle_t arch_counter_get_cntvct(void)
|
|
{
|
|
u32 cvall, cvalh;
|
|
|
|
asm volatile("mrrc p15, 1, %0, %1, c14" : "=r" (cvall), "=r" (cvalh));
|
|
|
|
return ((u64) cvalh << 32) | cvall;
|
|
}
|
|
|
|
static cycle_t arch_counter_read(struct clocksource *cs)
|
|
{
|
|
return arch_counter_get_cntpct();
|
|
}
|
|
|
|
#ifdef ARCH_HAS_READ_CURRENT_TIMER
|
|
int read_current_timer(unsigned long *timer_val)
|
|
{
|
|
*timer_val = (unsigned long)arch_counter_get_cntpct();
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
static struct clocksource clocksource_counter = {
|
|
.name = "arch_sys_counter",
|
|
.rating = 400,
|
|
.read = arch_counter_read,
|
|
.mask = CLOCKSOURCE_MASK(56),
|
|
.flags = CLOCK_SOURCE_IS_CONTINUOUS,
|
|
};
|
|
|
|
static u32 arch_counter_get_cntvct32(void)
|
|
{
|
|
cycle_t cntvct;
|
|
|
|
cntvct = arch_counter_get_cntvct();
|
|
|
|
/*
|
|
* The sched_clock infrastructure only knows about counters
|
|
* with at most 32bits. Forget about the upper 24 bits for the
|
|
* time being...
|
|
*/
|
|
return (u32)(cntvct & (u32)~0);
|
|
}
|
|
|
|
unsigned long long notrace sched_clock(void)
|
|
{
|
|
return cyc_to_sched_clock(&cd, arch_counter_get_cntvct32(), (u32)~0);
|
|
}
|
|
|
|
static void notrace arch_timer_update_sched_clock(void)
|
|
{
|
|
update_sched_clock(&cd, arch_counter_get_cntvct32(), (u32)~0);
|
|
}
|
|
|
|
static void __cpuinit arch_timer_teardown(void *data)
|
|
{
|
|
struct clock_event_device *clk = data;
|
|
pr_debug("arch_timer_teardown disable IRQ%d cpu #%d\n",
|
|
clk->irq, smp_processor_id());
|
|
if (!smp_processor_id()) {
|
|
remove_irq(arch_timer_ppi, &arch_irqaction[0]);
|
|
if (arch_timer_ppi2 > 0)
|
|
remove_irq(arch_timer_ppi2, &arch_irqaction[1]);
|
|
}
|
|
arch_timer_set_mode(CLOCK_EVT_MODE_UNUSED, clk);
|
|
}
|
|
|
|
static int __cpuinit arch_timer_cpu_notify(struct notifier_block *self,
|
|
unsigned long action, void *data)
|
|
{
|
|
int cpu = (int)data;
|
|
struct clock_event_device *clk = per_cpu_ptr(arch_timer_evt, cpu);
|
|
|
|
switch(action) {
|
|
case CPU_ONLINE:
|
|
case CPU_ONLINE_FROZEN:
|
|
smp_call_function_single(cpu, arch_timer_setup, clk, 1);
|
|
break;
|
|
|
|
case CPU_DOWN_PREPARE:
|
|
case CPU_DOWN_PREPARE_FROZEN:
|
|
smp_call_function_single(cpu, arch_timer_teardown, clk, 1);
|
|
break;
|
|
}
|
|
|
|
return NOTIFY_OK;
|
|
}
|
|
|
|
static struct notifier_block __cpuinitdata arch_timer_cpu_nb = {
|
|
.notifier_call = arch_timer_cpu_notify,
|
|
};
|
|
|
|
int __init arch_timer_register(struct resource *res, int res_nr)
|
|
{
|
|
struct irqaction *irqa;
|
|
unsigned int cpu = smp_processor_id();
|
|
int err;
|
|
|
|
if (!res_nr || res[0].start < 0 || !(res[0].flags & IORESOURCE_IRQ))
|
|
return -EINVAL;
|
|
|
|
err = arch_timer_available();
|
|
if (err)
|
|
return err;
|
|
|
|
arch_timer_evt = alloc_percpu(struct clock_event_device);
|
|
if (!arch_timer_evt)
|
|
return -ENOMEM;
|
|
|
|
arch_timer_ppi = res[0].start;
|
|
if (res_nr > 1 && (res[1].flags & IORESOURCE_IRQ))
|
|
arch_timer_ppi2 = res[1].start;
|
|
|
|
clocksource_register_hz(&clocksource_counter, arch_timer_rate);
|
|
|
|
init_sched_clock(&cd, arch_timer_update_sched_clock, 32,
|
|
arch_timer_rate);
|
|
|
|
#ifdef ARCH_HAS_READ_CURRENT_TIMER
|
|
set_delay_fn(read_current_timer_delay_loop);
|
|
#endif
|
|
|
|
irqa = &arch_irqaction[0];
|
|
irqa->name = "arch_sys_timer";
|
|
irqa->flags = IRQF_DISABLED | IRQF_TIMER | IRQF_TRIGGER_HIGH;
|
|
irqa->handler = arch_timer_handler;
|
|
irqa->dev_id = per_cpu_ptr(arch_timer_evt, cpu);
|
|
irqa->irq = arch_timer_ppi;
|
|
err = setup_irq(arch_timer_ppi, irqa);
|
|
if (err) {
|
|
pr_err("%s: can't register interrupt %d (%d)\n",
|
|
irqa->name, irqa->irq, err);
|
|
return err;
|
|
}
|
|
|
|
if (arch_timer_ppi2 > 0) {
|
|
irqa = &arch_irqaction[1];
|
|
irqa->name = "arch_sys_timer";
|
|
irqa->flags = IRQF_DISABLED | IRQF_TIMER | IRQF_TRIGGER_HIGH;
|
|
irqa->handler = arch_timer_handler;
|
|
irqa->dev_id = per_cpu_ptr(arch_timer_evt, cpu);
|
|
irqa->irq = arch_timer_ppi2;
|
|
err = setup_irq(arch_timer_ppi2, irqa);
|
|
if (err)
|
|
pr_warn("%s: can't register interrupt %d (%d)\n",
|
|
irqa->name, irqa->irq, err);
|
|
}
|
|
|
|
/* Immediately configure the timer on the boot CPU */
|
|
arch_timer_setup(per_cpu_ptr(arch_timer_evt, cpu));
|
|
|
|
register_cpu_notifier(&arch_timer_cpu_nb);
|
|
|
|
return 0;
|
|
}
|