diff options
author | Tony Lindgren <tony@atomide.com> | 2011-09-21 19:38:51 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-09-21 19:38:51 -0400 |
commit | 0dad9faeaeb0fa3524068a94e1745b91e5597c17 (patch) | |
tree | 2dbe24ec9964d605ea39756ed320524901324f17 /arch/arm/plat-omap | |
parent | ffe07ceae1ae4b00b776c59694eddd9dd615dcea (diff) |
ARM: OMAP: dmtimer: skip reserved timers
Pass the reserved flag in pdata and use it. We can
now make sys_timer_reserved static to mach-omap2/timer.c.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/plat-omap')
-rw-r--r-- | arch/arm/plat-omap/dmtimer.c | 7 | ||||
-rw-r--r-- | arch/arm/plat-omap/include/plat/dmtimer.h | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/dmtimer.c b/arch/arm/plat-omap/dmtimer.c index ac904c2ea058..c8df3c36b3ad 100644 --- a/arch/arm/plat-omap/dmtimer.c +++ b/arch/arm/plat-omap/dmtimer.c | |||
@@ -509,6 +509,7 @@ static int __devinit omap_dm_timer_probe(struct platform_device *pdev) | |||
509 | 509 | ||
510 | timer->id = pdev->id; | 510 | timer->id = pdev->id; |
511 | timer->irq = irq->start; | 511 | timer->irq = irq->start; |
512 | timer->reserved = pdata->reserved; | ||
512 | timer->pdev = pdev; | 513 | timer->pdev = pdev; |
513 | 514 | ||
514 | /* Skip pm_runtime_enable for OMAP1 */ | 515 | /* Skip pm_runtime_enable for OMAP1 */ |
@@ -517,6 +518,12 @@ static int __devinit omap_dm_timer_probe(struct platform_device *pdev) | |||
517 | pm_runtime_irq_safe(&pdev->dev); | 518 | pm_runtime_irq_safe(&pdev->dev); |
518 | } | 519 | } |
519 | 520 | ||
521 | if (!timer->reserved) { | ||
522 | pm_runtime_get_sync(&pdev->dev); | ||
523 | __omap_dm_timer_init_regs(timer); | ||
524 | pm_runtime_put(&pdev->dev); | ||
525 | } | ||
526 | |||
520 | /* add the timer element to the list */ | 527 | /* add the timer element to the list */ |
521 | spin_lock_irqsave(&dm_timer_lock, flags); | 528 | spin_lock_irqsave(&dm_timer_lock, flags); |
522 | list_add_tail(&timer->node, &omap_timer_list); | 529 | list_add_tail(&timer->node, &omap_timer_list); |
diff --git a/arch/arm/plat-omap/include/plat/dmtimer.h b/arch/arm/plat-omap/include/plat/dmtimer.h index 4e3a32609abf..29764c34f571 100644 --- a/arch/arm/plat-omap/include/plat/dmtimer.h +++ b/arch/arm/plat-omap/include/plat/dmtimer.h | |||
@@ -77,6 +77,7 @@ struct dmtimer_platform_data { | |||
77 | int (*set_timer_src)(struct platform_device *pdev, int source); | 77 | int (*set_timer_src)(struct platform_device *pdev, int source); |
78 | int timer_ip_version; | 78 | int timer_ip_version; |
79 | u32 needs_manual_reset:1; | 79 | u32 needs_manual_reset:1; |
80 | bool reserved; | ||
80 | }; | 81 | }; |
81 | 82 | ||
82 | struct omap_dm_timer *omap_dm_timer_request(void); | 83 | struct omap_dm_timer *omap_dm_timer_request(void); |
@@ -248,7 +249,6 @@ struct omap_dm_timer { | |||
248 | struct list_head node; | 249 | struct list_head node; |
249 | }; | 250 | }; |
250 | 251 | ||
251 | extern u32 sys_timer_reserved; | ||
252 | int omap_dm_timer_prepare(struct omap_dm_timer *timer); | 252 | int omap_dm_timer_prepare(struct omap_dm_timer *timer); |
253 | 253 | ||
254 | static inline u32 __omap_dm_timer_read(struct omap_dm_timer *timer, u32 reg, | 254 | static inline u32 __omap_dm_timer_read(struct omap_dm_timer *timer, u32 reg, |