|
@@ -37,6 +37,8 @@
|
|
|
#include <linux/clockchips.h>
|
|
|
#include <linux/slab.h>
|
|
|
#include <linux/of.h>
|
|
|
+#include <linux/of_address.h>
|
|
|
+#include <linux/of_irq.h>
|
|
|
|
|
|
#include <asm/mach/time.h>
|
|
|
#include <asm/smp_twd.h>
|
|
@@ -66,11 +68,13 @@
|
|
|
#define OMAP3_CLKEV_SOURCE OMAP3_32K_SOURCE
|
|
|
#define OMAP4_CLKEV_SOURCE OMAP4_32K_SOURCE
|
|
|
#define OMAP3_SECURE_TIMER 12
|
|
|
+#define TIMER_PROP_SECURE "ti,timer-secure"
|
|
|
#else
|
|
|
#define OMAP2_CLKEV_SOURCE OMAP2_MPU_SOURCE
|
|
|
#define OMAP3_CLKEV_SOURCE OMAP3_MPU_SOURCE
|
|
|
#define OMAP4_CLKEV_SOURCE OMAP4_MPU_SOURCE
|
|
|
#define OMAP3_SECURE_TIMER 1
|
|
|
+#define TIMER_PROP_SECURE "ti,timer-alwon"
|
|
|
#endif
|
|
|
|
|
|
#define REALTIME_COUNTER_BASE 0x48243200
|
|
@@ -155,6 +159,40 @@ static struct of_device_id omap_timer_match[] __initdata = {
|
|
|
{ }
|
|
|
};
|
|
|
|
|
|
+/**
|
|
|
+ * omap_get_timer_dt - get a timer using device-tree
|
|
|
+ * @match - device-tree match structure for matching a device type
|
|
|
+ * @property - optional timer property to match
|
|
|
+ *
|
|
|
+ * Helper function to get a timer during early boot using device-tree for use
|
|
|
+ * as kernel system timer. Optionally, the property argument can be used to
|
|
|
+ * select a timer with a specific property. Once a timer is found then mark
|
|
|
+ * the timer node in device-tree as disabled, to prevent the kernel from
|
|
|
+ * registering this timer as a platform device and so no one else can use it.
|
|
|
+ */
|
|
|
+static struct device_node * __init omap_get_timer_dt(struct of_device_id *match,
|
|
|
+ const char *property)
|
|
|
+{
|
|
|
+ struct device_node *np;
|
|
|
+
|
|
|
+ for_each_matching_node(np, match) {
|
|
|
+ if (!of_device_is_available(np)) {
|
|
|
+ of_node_put(np);
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (property && !of_get_property(np, property, NULL)) {
|
|
|
+ of_node_put(np);
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
+ prom_add_property(np, &device_disabled);
|
|
|
+ return np;
|
|
|
+ }
|
|
|
+
|
|
|
+ return NULL;
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* omap_dmtimer_init - initialisation function when device tree is used
|
|
|
*
|
|
@@ -172,43 +210,74 @@ void __init omap_dmtimer_init(void)
|
|
|
|
|
|
/* If we are a secure device, remove any secure timer nodes */
|
|
|
if ((omap_type() != OMAP2_DEVICE_TYPE_GP)) {
|
|
|
- for_each_matching_node(np, omap_timer_match) {
|
|
|
- if (of_get_property(np, "ti,timer-secure", NULL))
|
|
|
- prom_add_property(np, &device_disabled);
|
|
|
- }
|
|
|
+ np = omap_get_timer_dt(omap_timer_match, "ti,timer-secure");
|
|
|
+ if (np)
|
|
|
+ of_node_put(np);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
static int __init omap_dm_timer_init_one(struct omap_dm_timer *timer,
|
|
|
int gptimer_id,
|
|
|
- const char *fck_source)
|
|
|
+ const char *fck_source,
|
|
|
+ const char *property)
|
|
|
{
|
|
|
char name[10]; /* 10 = sizeof("gptXX_Xck0") */
|
|
|
+ const char *oh_name;
|
|
|
+ struct device_node *np;
|
|
|
struct omap_hwmod *oh;
|
|
|
struct resource irq_rsrc, mem_rsrc;
|
|
|
size_t size;
|
|
|
int res = 0;
|
|
|
int r;
|
|
|
|
|
|
- sprintf(name, "timer%d", gptimer_id);
|
|
|
- omap_hwmod_setup_one(name);
|
|
|
- oh = omap_hwmod_lookup(name);
|
|
|
+ if (of_have_populated_dt()) {
|
|
|
+ np = omap_get_timer_dt(omap_timer_match, NULL);
|
|
|
+ if (!np)
|
|
|
+ return -ENODEV;
|
|
|
+
|
|
|
+ of_property_read_string_index(np, "ti,hwmods", 0, &oh_name);
|
|
|
+ if (!oh_name)
|
|
|
+ return -ENODEV;
|
|
|
+
|
|
|
+ timer->irq = irq_of_parse_and_map(np, 0);
|
|
|
+ if (!timer->irq)
|
|
|
+ return -ENXIO;
|
|
|
+
|
|
|
+ timer->io_base = of_iomap(np, 0);
|
|
|
+
|
|
|
+ of_node_put(np);
|
|
|
+ } else {
|
|
|
+ if (omap_dm_timer_reserve_systimer(gptimer_id))
|
|
|
+ return -ENODEV;
|
|
|
+
|
|
|
+ sprintf(name, "timer%d", gptimer_id);
|
|
|
+ oh_name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ omap_hwmod_setup_one(oh_name);
|
|
|
+ oh = omap_hwmod_lookup(oh_name);
|
|
|
+
|
|
|
if (!oh)
|
|
|
return -ENODEV;
|
|
|
|
|
|
- r = omap_hwmod_get_resource_byname(oh, IORESOURCE_IRQ, NULL, &irq_rsrc);
|
|
|
- if (r)
|
|
|
- return -ENXIO;
|
|
|
- timer->irq = irq_rsrc.start;
|
|
|
-
|
|
|
- r = omap_hwmod_get_resource_byname(oh, IORESOURCE_MEM, NULL, &mem_rsrc);
|
|
|
- if (r)
|
|
|
- return -ENXIO;
|
|
|
- timer->phys_base = mem_rsrc.start;
|
|
|
- size = mem_rsrc.end - mem_rsrc.start;
|
|
|
+ if (!of_have_populated_dt()) {
|
|
|
+ r = omap_hwmod_get_resource_byname(oh, IORESOURCE_IRQ, NULL,
|
|
|
+ &irq_rsrc);
|
|
|
+ if (r)
|
|
|
+ return -ENXIO;
|
|
|
+ timer->irq = irq_rsrc.start;
|
|
|
+
|
|
|
+ r = omap_hwmod_get_resource_byname(oh, IORESOURCE_MEM, NULL,
|
|
|
+ &mem_rsrc);
|
|
|
+ if (r)
|
|
|
+ return -ENXIO;
|
|
|
+ timer->phys_base = mem_rsrc.start;
|
|
|
+ size = mem_rsrc.end - mem_rsrc.start;
|
|
|
+
|
|
|
+ /* Static mapping, never released */
|
|
|
+ timer->io_base = ioremap(timer->phys_base, size);
|
|
|
+ }
|
|
|
|
|
|
- /* Static mapping, never released */
|
|
|
- timer->io_base = ioremap(timer->phys_base, size);
|
|
|
if (!timer->io_base)
|
|
|
return -ENXIO;
|
|
|
|
|
@@ -219,9 +288,7 @@ static int __init omap_dm_timer_init_one(struct omap_dm_timer *timer,
|
|
|
|
|
|
omap_hwmod_enable(oh);
|
|
|
|
|
|
- if (omap_dm_timer_reserve_systimer(gptimer_id))
|
|
|
- return -ENODEV;
|
|
|
-
|
|
|
+ /* FIXME: Need to remove hard-coded test on timer ID */
|
|
|
if (gptimer_id != 12) {
|
|
|
struct clk *src;
|
|
|
|
|
@@ -231,8 +298,8 @@ static int __init omap_dm_timer_init_one(struct omap_dm_timer *timer,
|
|
|
} else {
|
|
|
res = __omap_dm_timer_set_source(timer->fclk, src);
|
|
|
if (IS_ERR_VALUE(res))
|
|
|
- pr_warning("%s: timer%i cannot set source\n",
|
|
|
- __func__, gptimer_id);
|
|
|
+ pr_warn("%s: %s cannot set source\n",
|
|
|
+ __func__, oh->name);
|
|
|
clk_put(src);
|
|
|
}
|
|
|
}
|
|
@@ -248,11 +315,12 @@ static int __init omap_dm_timer_init_one(struct omap_dm_timer *timer,
|
|
|
}
|
|
|
|
|
|
static void __init omap2_gp_clockevent_init(int gptimer_id,
|
|
|
- const char *fck_source)
|
|
|
+ const char *fck_source,
|
|
|
+ const char *property)
|
|
|
{
|
|
|
int res;
|
|
|
|
|
|
- res = omap_dm_timer_init_one(&clkev, gptimer_id, fck_source);
|
|
|
+ res = omap_dm_timer_init_one(&clkev, gptimer_id, fck_source, property);
|
|
|
BUG_ON(res);
|
|
|
|
|
|
omap2_gp_timer_irq.dev_id = &clkev;
|
|
@@ -356,7 +424,7 @@ static void __init omap2_gptimer_clocksource_init(int gptimer_id,
|
|
|
{
|
|
|
int res;
|
|
|
|
|
|
- res = omap_dm_timer_init_one(&clksrc, gptimer_id, fck_source);
|
|
|
+ res = omap_dm_timer_init_one(&clksrc, gptimer_id, fck_source, NULL);
|
|
|
BUG_ON(res);
|
|
|
|
|
|
__omap_dm_timer_load_start(&clksrc,
|
|
@@ -468,12 +536,12 @@ static inline void __init realtime_counter_init(void)
|
|
|
{}
|
|
|
#endif
|
|
|
|
|
|
-#define OMAP_SYS_TIMER_INIT(name, clkev_nr, clkev_src, \
|
|
|
+#define OMAP_SYS_TIMER_INIT(name, clkev_nr, clkev_src, clkev_prop, \
|
|
|
clksrc_nr, clksrc_src) \
|
|
|
static void __init omap##name##_timer_init(void) \
|
|
|
{ \
|
|
|
omap_dmtimer_init(); \
|
|
|
- omap2_gp_clockevent_init((clkev_nr), clkev_src); \
|
|
|
+ omap2_gp_clockevent_init((clkev_nr), clkev_src, clkev_prop); \
|
|
|
omap2_clocksource_init((clksrc_nr), clksrc_src); \
|
|
|
}
|
|
|
|
|
@@ -483,20 +551,23 @@ struct sys_timer omap##name##_timer = { \
|
|
|
};
|
|
|
|
|
|
#ifdef CONFIG_ARCH_OMAP2
|
|
|
-OMAP_SYS_TIMER_INIT(2, 1, OMAP2_CLKEV_SOURCE, 2, OMAP2_MPU_SOURCE)
|
|
|
+OMAP_SYS_TIMER_INIT(2, 1, OMAP2_CLKEV_SOURCE, "ti,timer-alwon",
|
|
|
+ 2, OMAP2_MPU_SOURCE)
|
|
|
OMAP_SYS_TIMER(2)
|
|
|
#endif
|
|
|
|
|
|
#ifdef CONFIG_ARCH_OMAP3
|
|
|
-OMAP_SYS_TIMER_INIT(3, 1, OMAP3_CLKEV_SOURCE, 2, OMAP3_MPU_SOURCE)
|
|
|
+OMAP_SYS_TIMER_INIT(3, 1, OMAP3_CLKEV_SOURCE, "ti,timer-alwon",
|
|
|
+ 2, OMAP3_MPU_SOURCE)
|
|
|
OMAP_SYS_TIMER(3)
|
|
|
OMAP_SYS_TIMER_INIT(3_secure, OMAP3_SECURE_TIMER, OMAP3_CLKEV_SOURCE,
|
|
|
- 2, OMAP3_MPU_SOURCE)
|
|
|
+ TIMER_PROP_SECURE, 2, OMAP3_MPU_SOURCE)
|
|
|
OMAP_SYS_TIMER(3_secure)
|
|
|
#endif
|
|
|
|
|
|
#ifdef CONFIG_SOC_AM33XX
|
|
|
-OMAP_SYS_TIMER_INIT(3_am33xx, 1, OMAP4_MPU_SOURCE, 2, OMAP4_MPU_SOURCE)
|
|
|
+OMAP_SYS_TIMER_INIT(3_am33xx, 1, OMAP4_MPU_SOURCE, "ti,timer-alwon",
|
|
|
+ 2, OMAP4_MPU_SOURCE)
|
|
|
OMAP_SYS_TIMER(3_am33xx)
|
|
|
#endif
|
|
|
|
|
@@ -508,7 +579,7 @@ static DEFINE_TWD_LOCAL_TIMER(twd_local_timer,
|
|
|
|
|
|
static void __init omap4_timer_init(void)
|
|
|
{
|
|
|
- omap2_gp_clockevent_init(1, OMAP4_CLKEV_SOURCE);
|
|
|
+ omap2_gp_clockevent_init(1, OMAP4_CLKEV_SOURCE, "ti,timer-alwon");
|
|
|
omap2_clocksource_init(2, OMAP4_MPU_SOURCE);
|
|
|
#ifdef CONFIG_LOCAL_TIMERS
|
|
|
/* Local timers are not supprted on OMAP4430 ES1.0 */
|
|
@@ -534,7 +605,7 @@ static void __init omap5_timer_init(void)
|
|
|
{
|
|
|
int err;
|
|
|
|
|
|
- omap2_gp_clockevent_init(1, OMAP4_CLKEV_SOURCE);
|
|
|
+ omap2_gp_clockevent_init(1, OMAP4_CLKEV_SOURCE, "ti,timer-alwon");
|
|
|
omap2_clocksource_init(2, OMAP4_MPU_SOURCE);
|
|
|
realtime_counter_init();
|
|
|
|
|
@@ -619,6 +690,10 @@ static int __init omap2_dm_timer_init(void)
|
|
|
{
|
|
|
int ret;
|
|
|
|
|
|
+ /* If dtb is there, the devices will be created dynamically */
|
|
|
+ if (of_have_populated_dt())
|
|
|
+ return -ENODEV;
|
|
|
+
|
|
|
ret = omap_hwmod_for_each_by_class("timer", omap_timer_init, NULL);
|
|
|
if (unlikely(ret)) {
|
|
|
pr_err("%s: device registration failed.\n", __func__);
|