mirror of
https://github.com/torvalds/linux.git
synced 2024-12-14 15:13:52 +00:00
469869d18a
Now that we have a custom printf format specifier, convert users of full_name to use %pOF instead. This is preparation to remove storing of the full path string for each node. Signed-off-by: Rob Herring <robh@kernel.org> Cc: Daniel Lezcano <daniel.lezcano@linaro.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Marc Gonzalez <marc_gonzalez@sigmadesigns.com> Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com> Cc: Alexandre Torgue <alexandre.torgue@st.com> Cc: linux-arm-kernel@lists.infradead.org Acked-by: Marc Gonzalez <marc_gonzalez@sigmadesigns.com> Acked-by: Alexandre TORGUE <alexandre.torgue@st.com> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
57 lines
1.2 KiB
C
57 lines
1.2 KiB
C
#include <linux/clocksource.h>
|
|
#include <linux/sched_clock.h>
|
|
#include <linux/of_address.h>
|
|
#include <linux/printk.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/init.h>
|
|
#include <linux/clk.h>
|
|
|
|
static void __iomem *xtal_in_cnt;
|
|
static struct delay_timer delay_timer;
|
|
|
|
static unsigned long notrace read_xtal_counter(void)
|
|
{
|
|
return readl_relaxed(xtal_in_cnt);
|
|
}
|
|
|
|
static u64 notrace read_sched_clock(void)
|
|
{
|
|
return read_xtal_counter();
|
|
}
|
|
|
|
static int __init tango_clocksource_init(struct device_node *np)
|
|
{
|
|
struct clk *clk;
|
|
int xtal_freq, ret;
|
|
|
|
xtal_in_cnt = of_iomap(np, 0);
|
|
if (xtal_in_cnt == NULL) {
|
|
pr_err("%pOF: invalid address\n", np);
|
|
return -ENXIO;
|
|
}
|
|
|
|
clk = of_clk_get(np, 0);
|
|
if (IS_ERR(clk)) {
|
|
pr_err("%pOF: invalid clock\n", np);
|
|
return PTR_ERR(clk);
|
|
}
|
|
|
|
xtal_freq = clk_get_rate(clk);
|
|
delay_timer.freq = xtal_freq;
|
|
delay_timer.read_current_timer = read_xtal_counter;
|
|
|
|
ret = clocksource_mmio_init(xtal_in_cnt, "tango-xtal", xtal_freq, 350,
|
|
32, clocksource_mmio_readl_up);
|
|
if (ret) {
|
|
pr_err("%pOF: registration failed\n", np);
|
|
return ret;
|
|
}
|
|
|
|
sched_clock_register(read_sched_clock, 32, xtal_freq);
|
|
register_current_timer_delay(&delay_timer);
|
|
|
|
return 0;
|
|
}
|
|
|
|
TIMER_OF_DECLARE(tango, "sigma,tick-counter", tango_clocksource_init);
|