Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 295746
b: refs/heads/master
c: e129440
h: refs/heads/master
v: v3
  • Loading branch information
Pawel Moll committed Feb 23, 2012
1 parent 47a2fd9 commit cfde6e7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 98ed4ceb93ba22268f35ebcbb7de0cb1c7e70231
refs/heads/master: e129440af63879808ee0a40613fd1cece935678e
26 changes: 26 additions & 0 deletions trunk/arch/arm/plat-versatile/localtimer.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,42 @@
#include <linux/init.h>
#include <linux/smp.h>
#include <linux/clockchips.h>
#include <linux/of.h>
#include <linux/of_address.h>

#include <asm/smp_twd.h>
#include <asm/localtimer.h>
#include <mach/irqs.h>

const static struct of_device_id twd_of_match[] __initconst = {
{ .compatible = "arm,cortex-a9-twd-timer", },
{ .compatible = "arm,cortex-a5-twd-timer", },
{ .compatible = "arm,arm11mp-twd-timer", },
{ },
};

/*
* Setup the local clock events for a CPU.
*/
int __cpuinit local_timer_setup(struct clock_event_device *evt)
{
#if defined(CONFIG_OF)
static int dt_node_probed;

/* Look for TWD node only once */
if (!dt_node_probed) {
struct device_node *node = of_find_matching_node(NULL,
twd_of_match);

if (node)
twd_base = of_iomap(node, 0);

dt_node_probed = 1;
}
#endif
if (!twd_base)
return -ENXIO;

evt->irq = IRQ_LOCALTIMER;
twd_timer_setup(evt);
return 0;
Expand Down

0 comments on commit cfde6e7

Please sign in to comment.