2005-09-07 16:20:26 +00:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/plat-omap/dmtimer.c
|
|
|
|
*
|
|
|
|
* OMAP Dual-Mode Timers
|
|
|
|
*
|
2011-09-20 11:30:17 +00:00
|
|
|
* Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
|
|
|
|
* Tarun Kanti DebBarma <tarun.kanti@ti.com>
|
|
|
|
* Thara Gopinath <thara@ti.com>
|
|
|
|
*
|
|
|
|
* dmtimer adaptation to platform_driver.
|
|
|
|
*
|
2005-09-07 16:20:26 +00:00
|
|
|
* Copyright (C) 2005 Nokia Corporation
|
2006-06-26 23:16:12 +00:00
|
|
|
* OMAP2 support by Juha Yrjola
|
|
|
|
* API improvements and OMAP2 clock framework support by Timo Teras
|
2005-09-07 16:20:26 +00:00
|
|
|
*
|
2009-05-28 21:16:04 +00:00
|
|
|
* Copyright (C) 2009 Texas Instruments
|
|
|
|
* Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
|
|
|
|
*
|
2005-09-07 16:20:26 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
|
|
|
|
* NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2011-11-02 01:49:46 +00:00
|
|
|
#include <linux/module.h>
|
2008-09-06 11:10:45 +00:00
|
|
|
#include <linux/io.h>
|
2012-04-20 12:39:20 +00:00
|
|
|
#include <linux/device.h>
|
2011-09-20 11:30:20 +00:00
|
|
|
#include <linux/err.h>
|
2011-09-20 11:30:21 +00:00
|
|
|
#include <linux/pm_runtime.h>
|
2009-05-28 21:16:04 +00:00
|
|
|
|
2011-09-20 11:30:20 +00:00
|
|
|
#include <plat/dmtimer.h>
|
2012-06-05 17:34:56 +00:00
|
|
|
#include <plat/omap-pm.h>
|
2007-06-22 04:48:07 +00:00
|
|
|
|
2012-02-24 18:34:35 +00:00
|
|
|
#include <mach/hardware.h>
|
|
|
|
|
2012-06-05 17:34:51 +00:00
|
|
|
static u32 omap_reserved_systimers;
|
2011-09-20 11:30:19 +00:00
|
|
|
static LIST_HEAD(omap_timer_list);
|
2011-09-20 11:30:20 +00:00
|
|
|
static DEFINE_SPINLOCK(dm_timer_lock);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:20 +00:00
|
|
|
/**
|
|
|
|
* omap_dm_timer_read_reg - read timer registers in posted and non-posted mode
|
|
|
|
* @timer: timer pointer over which read operation to perform
|
|
|
|
* @reg: lowest byte holds the register offset
|
|
|
|
*
|
|
|
|
* The posted mode bit is encoded in reg. Note that in posted mode write
|
|
|
|
* pending bit must be checked. Otherwise a read of a non completed write
|
|
|
|
* will produce an error.
|
2008-07-03 09:24:30 +00:00
|
|
|
*/
|
|
|
|
static inline u32 omap_dm_timer_read_reg(struct omap_dm_timer *timer, u32 reg)
|
2006-06-26 23:16:12 +00:00
|
|
|
{
|
2011-09-16 22:44:20 +00:00
|
|
|
WARN_ON((reg & 0xff) < _OMAP_TIMER_WAKEUP_EN_OFFSET);
|
|
|
|
return __omap_dm_timer_read(timer, reg, timer->posted);
|
2006-06-26 23:16:12 +00:00
|
|
|
}
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:20 +00:00
|
|
|
/**
|
|
|
|
* omap_dm_timer_write_reg - write timer registers in posted and non-posted mode
|
|
|
|
* @timer: timer pointer over which write operation is to perform
|
|
|
|
* @reg: lowest byte holds the register offset
|
|
|
|
* @value: data to write into the register
|
|
|
|
*
|
|
|
|
* The posted mode bit is encoded in reg. Note that in posted mode the write
|
|
|
|
* pending bit must be checked. Otherwise a write on a register which has a
|
|
|
|
* pending write will be lost.
|
2008-07-03 09:24:30 +00:00
|
|
|
*/
|
|
|
|
static void omap_dm_timer_write_reg(struct omap_dm_timer *timer, u32 reg,
|
|
|
|
u32 value)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
2011-09-16 22:44:20 +00:00
|
|
|
WARN_ON((reg & 0xff) < _OMAP_TIMER_WAKEUP_EN_OFFSET);
|
|
|
|
__omap_dm_timer_write(timer, reg, value, timer->posted);
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
|
|
|
|
2011-09-20 11:30:24 +00:00
|
|
|
static void omap_timer_restore_context(struct omap_dm_timer *timer)
|
|
|
|
{
|
2012-03-06 00:11:00 +00:00
|
|
|
if (timer->revision == 1)
|
2011-09-20 11:30:24 +00:00
|
|
|
__raw_writel(timer->context.tistat, timer->sys_stat);
|
|
|
|
|
|
|
|
__raw_writel(timer->context.tisr, timer->irq_stat);
|
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_WAKEUP_EN_REG,
|
|
|
|
timer->context.twer);
|
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_COUNTER_REG,
|
|
|
|
timer->context.tcrr);
|
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_LOAD_REG,
|
|
|
|
timer->context.tldr);
|
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_MATCH_REG,
|
|
|
|
timer->context.tmar);
|
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_IF_CTRL_REG,
|
|
|
|
timer->context.tsicr);
|
|
|
|
__raw_writel(timer->context.tier, timer->irq_ena);
|
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG,
|
|
|
|
timer->context.tclr);
|
|
|
|
}
|
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
static void omap_dm_timer_wait_for_reset(struct omap_dm_timer *timer)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
2006-06-26 23:16:12 +00:00
|
|
|
int c;
|
|
|
|
|
2011-09-16 22:44:20 +00:00
|
|
|
if (!timer->sys_stat)
|
|
|
|
return;
|
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
c = 0;
|
2011-09-16 22:44:20 +00:00
|
|
|
while (!(__raw_readl(timer->sys_stat) & 1)) {
|
2006-06-26 23:16:12 +00:00
|
|
|
c++;
|
|
|
|
if (c > 100000) {
|
|
|
|
printk(KERN_ERR "Timer failed to reset\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
static void omap_dm_timer_reset(struct omap_dm_timer *timer)
|
|
|
|
{
|
2011-09-20 11:30:24 +00:00
|
|
|
omap_dm_timer_enable(timer);
|
2011-09-20 11:30:20 +00:00
|
|
|
if (timer->pdev->id != 1) {
|
2006-06-26 23:16:13 +00:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_IF_CTRL_REG, 0x06);
|
|
|
|
omap_dm_timer_wait_for_reset(timer);
|
|
|
|
}
|
2008-07-03 09:24:30 +00:00
|
|
|
|
2011-09-20 11:30:20 +00:00
|
|
|
__omap_dm_timer_reset(timer, 0, 0);
|
2011-09-20 11:30:24 +00:00
|
|
|
omap_dm_timer_disable(timer);
|
2008-07-03 09:24:30 +00:00
|
|
|
timer->posted = 1;
|
2006-06-26 23:16:12 +00:00
|
|
|
}
|
|
|
|
|
2011-09-20 11:30:20 +00:00
|
|
|
int omap_dm_timer_prepare(struct omap_dm_timer *timer)
|
2006-06-26 23:16:12 +00:00
|
|
|
{
|
2011-09-20 11:30:20 +00:00
|
|
|
int ret;
|
|
|
|
|
2012-06-05 17:34:58 +00:00
|
|
|
/*
|
|
|
|
* FIXME: OMAP1 devices do not use the clock framework for dmtimers so
|
|
|
|
* do not call clk_get() for these devices.
|
|
|
|
*/
|
|
|
|
if (!(timer->capability & OMAP_TIMER_NEEDS_RESET)) {
|
|
|
|
timer->fclk = clk_get(&timer->pdev->dev, "fck");
|
|
|
|
if (WARN_ON_ONCE(IS_ERR_OR_NULL(timer->fclk))) {
|
|
|
|
timer->fclk = NULL;
|
|
|
|
dev_err(&timer->pdev->dev, ": No fclk handle.\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2011-09-20 11:30:20 +00:00
|
|
|
}
|
|
|
|
|
2012-06-05 17:34:57 +00:00
|
|
|
if (timer->capability & OMAP_TIMER_NEEDS_RESET)
|
2011-09-20 11:30:20 +00:00
|
|
|
omap_dm_timer_reset(timer);
|
|
|
|
|
|
|
|
ret = omap_dm_timer_set_source(timer, OMAP_TIMER_SRC_32_KHZ);
|
|
|
|
|
|
|
|
timer->posted = 1;
|
|
|
|
return ret;
|
2006-06-26 23:16:12 +00:00
|
|
|
}
|
|
|
|
|
2012-06-05 17:34:51 +00:00
|
|
|
static inline u32 omap_dm_timer_reserved_systimer(int id)
|
|
|
|
{
|
|
|
|
return (omap_reserved_systimers & (1 << (id - 1))) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int omap_dm_timer_reserve_systimer(int id)
|
|
|
|
{
|
|
|
|
if (omap_dm_timer_reserved_systimer(id))
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
omap_reserved_systimers |= (1 << (id - 1));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
struct omap_dm_timer *omap_dm_timer_request(void)
|
|
|
|
{
|
2011-09-20 11:30:20 +00:00
|
|
|
struct omap_dm_timer *timer = NULL, *t;
|
2006-06-26 23:16:12 +00:00
|
|
|
unsigned long flags;
|
2011-09-20 11:30:20 +00:00
|
|
|
int ret = 0;
|
2006-06-26 23:16:12 +00:00
|
|
|
|
|
|
|
spin_lock_irqsave(&dm_timer_lock, flags);
|
2011-09-20 11:30:20 +00:00
|
|
|
list_for_each_entry(t, &omap_timer_list, node) {
|
|
|
|
if (t->reserved)
|
2006-06-26 23:16:12 +00:00
|
|
|
continue;
|
|
|
|
|
2011-09-20 11:30:20 +00:00
|
|
|
timer = t;
|
2006-06-26 23:16:23 +00:00
|
|
|
timer->reserved = 1;
|
2006-06-26 23:16:12 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-08-12 10:45:34 +00:00
|
|
|
spin_unlock_irqrestore(&dm_timer_lock, flags);
|
2011-09-20 11:30:20 +00:00
|
|
|
|
|
|
|
if (timer) {
|
|
|
|
ret = omap_dm_timer_prepare(timer);
|
|
|
|
if (ret) {
|
|
|
|
timer->reserved = 0;
|
|
|
|
timer = NULL;
|
|
|
|
}
|
|
|
|
}
|
2006-06-26 23:16:12 +00:00
|
|
|
|
2011-09-20 11:30:20 +00:00
|
|
|
if (!timer)
|
|
|
|
pr_debug("%s: timer request failed!\n", __func__);
|
2006-06-26 23:16:23 +00:00
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
return timer;
|
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_request);
|
2006-06-26 23:16:12 +00:00
|
|
|
|
|
|
|
struct omap_dm_timer *omap_dm_timer_request_specific(int id)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
2011-09-20 11:30:20 +00:00
|
|
|
struct omap_dm_timer *timer = NULL, *t;
|
2006-06-26 23:16:12 +00:00
|
|
|
unsigned long flags;
|
2011-09-20 11:30:20 +00:00
|
|
|
int ret = 0;
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
spin_lock_irqsave(&dm_timer_lock, flags);
|
2011-09-20 11:30:20 +00:00
|
|
|
list_for_each_entry(t, &omap_timer_list, node) {
|
|
|
|
if (t->pdev->id == id && !t->reserved) {
|
|
|
|
timer = t;
|
|
|
|
timer->reserved = 1;
|
|
|
|
break;
|
|
|
|
}
|
2006-06-26 23:16:12 +00:00
|
|
|
}
|
2012-08-12 10:45:34 +00:00
|
|
|
spin_unlock_irqrestore(&dm_timer_lock, flags);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:20 +00:00
|
|
|
if (timer) {
|
|
|
|
ret = omap_dm_timer_prepare(timer);
|
|
|
|
if (ret) {
|
|
|
|
timer->reserved = 0;
|
|
|
|
timer = NULL;
|
|
|
|
}
|
|
|
|
}
|
2006-06-26 23:16:12 +00:00
|
|
|
|
2011-09-20 11:30:20 +00:00
|
|
|
if (!timer)
|
|
|
|
pr_debug("%s: timer%d request failed!\n", __func__, id);
|
2006-06-26 23:16:23 +00:00
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
return timer;
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_request_specific);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
int omap_dm_timer_free(struct omap_dm_timer *timer)
|
2006-06-26 23:16:12 +00:00
|
|
|
{
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 11:30:20 +00:00
|
|
|
clk_put(timer->fclk);
|
2006-09-25 09:41:35 +00:00
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
WARN_ON(!timer->reserved);
|
|
|
|
timer->reserved = 0;
|
2011-09-20 11:30:26 +00:00
|
|
|
return 0;
|
2006-06-26 23:16:12 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_free);
|
2006-06-26 23:16:12 +00:00
|
|
|
|
2006-09-25 09:41:42 +00:00
|
|
|
void omap_dm_timer_enable(struct omap_dm_timer *timer)
|
|
|
|
{
|
2011-09-20 11:30:21 +00:00
|
|
|
pm_runtime_get_sync(&timer->pdev->dev);
|
2006-09-25 09:41:42 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_enable);
|
2006-09-25 09:41:42 +00:00
|
|
|
|
|
|
|
void omap_dm_timer_disable(struct omap_dm_timer *timer)
|
|
|
|
{
|
2012-07-13 20:12:03 +00:00
|
|
|
pm_runtime_put_sync(&timer->pdev->dev);
|
2006-09-25 09:41:42 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_disable);
|
2006-09-25 09:41:42 +00:00
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
int omap_dm_timer_get_irq(struct omap_dm_timer *timer)
|
|
|
|
{
|
2011-09-20 11:30:26 +00:00
|
|
|
if (timer)
|
|
|
|
return timer->irq;
|
|
|
|
return -EINVAL;
|
2006-06-26 23:16:12 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_get_irq);
|
2006-06-26 23:16:12 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_ARCH_OMAP1)
|
|
|
|
|
2006-04-02 16:46:21 +00:00
|
|
|
/**
|
|
|
|
* omap_dm_timer_modify_idlect_mask - Check if any running timers use ARMXOR
|
|
|
|
* @inputmask: current value of idlect mask
|
|
|
|
*/
|
|
|
|
__u32 omap_dm_timer_modify_idlect_mask(__u32 inputmask)
|
|
|
|
{
|
2011-09-20 11:30:20 +00:00
|
|
|
int i = 0;
|
|
|
|
struct omap_dm_timer *timer = NULL;
|
|
|
|
unsigned long flags;
|
2006-04-02 16:46:21 +00:00
|
|
|
|
|
|
|
/* If ARMXOR cannot be idled this function call is unnecessary */
|
|
|
|
if (!(inputmask & (1 << 1)))
|
|
|
|
return inputmask;
|
|
|
|
|
|
|
|
/* If any active timer is using ARMXOR return modified mask */
|
2011-09-20 11:30:20 +00:00
|
|
|
spin_lock_irqsave(&dm_timer_lock, flags);
|
|
|
|
list_for_each_entry(timer, &omap_timer_list, node) {
|
2006-06-26 23:16:12 +00:00
|
|
|
u32 l;
|
|
|
|
|
2011-09-20 11:30:20 +00:00
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
2006-06-26 23:16:12 +00:00
|
|
|
if (l & OMAP_TIMER_CTRL_ST) {
|
|
|
|
if (((omap_readl(MOD_CONF_CTRL_1) >> (i * 2)) & 0x03) == 0)
|
2006-04-02 16:46:21 +00:00
|
|
|
inputmask &= ~(1 << 1);
|
|
|
|
else
|
|
|
|
inputmask &= ~(1 << 2);
|
|
|
|
}
|
2011-09-20 11:30:20 +00:00
|
|
|
i++;
|
2006-06-26 23:16:12 +00:00
|
|
|
}
|
2011-09-20 11:30:20 +00:00
|
|
|
spin_unlock_irqrestore(&dm_timer_lock, flags);
|
2006-04-02 16:46:21 +00:00
|
|
|
|
|
|
|
return inputmask;
|
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_modify_idlect_mask);
|
2006-04-02 16:46:21 +00:00
|
|
|
|
2010-02-12 20:26:48 +00:00
|
|
|
#else
|
2006-04-02 16:46:21 +00:00
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
struct clk *omap_dm_timer_get_fclk(struct omap_dm_timer *timer)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
2011-09-20 11:30:26 +00:00
|
|
|
if (timer)
|
|
|
|
return timer->fclk;
|
|
|
|
return NULL;
|
2006-06-26 23:16:12 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_get_fclk);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
__u32 omap_dm_timer_modify_idlect_mask(__u32 inputmask)
|
|
|
|
{
|
|
|
|
BUG();
|
2006-12-07 01:14:00 +00:00
|
|
|
|
|
|
|
return 0;
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_modify_idlect_mask);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
#endif
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
int omap_dm_timer_trigger(struct omap_dm_timer *timer)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer || pm_runtime_suspended(&timer->pdev->dev))) {
|
|
|
|
pr_err("%s: timer not available or enabled.\n", __func__);
|
|
|
|
return -EINVAL;
|
2011-09-20 11:30:24 +00:00
|
|
|
}
|
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_TRIGGER_REG, 0);
|
2011-09-20 11:30:26 +00:00
|
|
|
return 0;
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_trigger);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
int omap_dm_timer_start(struct omap_dm_timer *timer)
|
2006-06-26 23:16:12 +00:00
|
|
|
{
|
|
|
|
u32 l;
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 11:30:24 +00:00
|
|
|
omap_dm_timer_enable(timer);
|
|
|
|
|
2012-06-05 17:34:55 +00:00
|
|
|
if (!(timer->capability & OMAP_TIMER_ALWON)) {
|
2012-06-05 17:34:56 +00:00
|
|
|
if (omap_pm_get_dev_context_loss_count(&timer->pdev->dev) !=
|
|
|
|
timer->ctx_loss_count)
|
2011-09-20 11:30:24 +00:00
|
|
|
omap_timer_restore_context(timer);
|
|
|
|
}
|
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
|
|
|
if (!(l & OMAP_TIMER_CTRL_ST)) {
|
|
|
|
l |= OMAP_TIMER_CTRL_ST;
|
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
|
|
|
|
}
|
2011-09-20 11:30:24 +00:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tclr = l;
|
2011-09-20 11:30:26 +00:00
|
|
|
return 0;
|
2006-06-26 23:16:12 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_start);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
int omap_dm_timer_stop(struct omap_dm_timer *timer)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
2011-03-29 22:54:48 +00:00
|
|
|
unsigned long rate = 0;
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2012-06-05 17:34:57 +00:00
|
|
|
if (!(timer->capability & OMAP_TIMER_NEEDS_RESET))
|
2011-09-20 11:30:20 +00:00
|
|
|
rate = clk_get_rate(timer->fclk);
|
2011-03-29 22:54:48 +00:00
|
|
|
|
2011-09-16 22:44:20 +00:00
|
|
|
__omap_dm_timer_stop(timer, timer->posted, rate);
|
2011-09-20 11:30:26 +00:00
|
|
|
|
2012-06-05 17:34:56 +00:00
|
|
|
if (!(timer->capability & OMAP_TIMER_ALWON))
|
2012-03-06 00:11:00 +00:00
|
|
|
timer->ctx_loss_count =
|
2012-06-05 17:34:56 +00:00
|
|
|
omap_pm_get_dev_context_loss_count(&timer->pdev->dev);
|
2012-03-06 00:11:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Since the register values are computed and written within
|
|
|
|
* __omap_dm_timer_stop, we need to use read to retrieve the
|
|
|
|
* context.
|
|
|
|
*/
|
|
|
|
timer->context.tclr =
|
|
|
|
omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
|
|
|
timer->context.tisr = __raw_readl(timer->irq_stat);
|
|
|
|
omap_dm_timer_disable(timer);
|
2011-09-20 11:30:26 +00:00
|
|
|
return 0;
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_stop);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
OMAP2/3 GPTIMER: allow system tick GPTIMER to be changed in board-*.c files
Add a function omap2_gp_clockevent_set_gptimer() for board-*.c files
to use in .init_irq functions to configure the system tick GPTIMER.
Practical choices at this point are GPTIMER1 or GPTIMER12. Both of
these timers are in the WKUP powerdomain, and so are unaffected by
chip power management. GPTIMER1 can use sys_clk as a source, for
applications where a high-resolution timer is more important than
power management. GPTIMER12 has the special property that it has the
secure 32kHz oscillator as its source clock, which may be less prone
to glitches than the off-chip 32kHz oscillator. But on HS devices, it
may not be available for Linux use.
It appears that most boards are fine with GPTIMER1, but BeagleBoard
should use GPTIMER12 when using a 32KiHz timer source, due to hardware bugs
in revisions B4 and below. Modify board-omap3beagle.c to use GPTIMER12.
This patch originally used a Kbuild config option to select the GPTIMER,
but was changed to allow this to be specified in board-*.c files, per
Tony's request.
Kalle Vallo <kalle.valo@nokia.com> found a bug in an earlier version of
this patch - thanks Kalle.
Tested on Beagle rev B4 ES2.1, with and without CONFIG_OMAP_32K_TIMER, and
3430SDP.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Cc: Kalle Valo <kalle.valo@nokia.com>
2009-04-24 03:11:10 +00:00
|
|
|
int omap_dm_timer_set_source(struct omap_dm_timer *timer, int source)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
2011-09-20 11:30:20 +00:00
|
|
|
int ret;
|
2012-06-05 17:34:59 +00:00
|
|
|
char *parent_name = NULL;
|
|
|
|
struct clk *fclk, *parent;
|
2011-09-20 11:30:26 +00:00
|
|
|
struct dmtimer_platform_data *pdata;
|
|
|
|
|
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
pdata = timer->pdev->dev.platform_data;
|
2011-09-20 11:30:20 +00:00
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
if (source < 0 || source >= 3)
|
OMAP2/3 GPTIMER: allow system tick GPTIMER to be changed in board-*.c files
Add a function omap2_gp_clockevent_set_gptimer() for board-*.c files
to use in .init_irq functions to configure the system tick GPTIMER.
Practical choices at this point are GPTIMER1 or GPTIMER12. Both of
these timers are in the WKUP powerdomain, and so are unaffected by
chip power management. GPTIMER1 can use sys_clk as a source, for
applications where a high-resolution timer is more important than
power management. GPTIMER12 has the special property that it has the
secure 32kHz oscillator as its source clock, which may be less prone
to glitches than the off-chip 32kHz oscillator. But on HS devices, it
may not be available for Linux use.
It appears that most boards are fine with GPTIMER1, but BeagleBoard
should use GPTIMER12 when using a 32KiHz timer source, due to hardware bugs
in revisions B4 and below. Modify board-omap3beagle.c to use GPTIMER12.
This patch originally used a Kbuild config option to select the GPTIMER,
but was changed to allow this to be specified in board-*.c files, per
Tony's request.
Kalle Vallo <kalle.valo@nokia.com> found a bug in an earlier version of
this patch - thanks Kalle.
Tested on Beagle rev B4 ES2.1, with and without CONFIG_OMAP_32K_TIMER, and
3430SDP.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Cc: Kalle Valo <kalle.valo@nokia.com>
2009-04-24 03:11:10 +00:00
|
|
|
return -EINVAL;
|
2006-06-26 23:16:12 +00:00
|
|
|
|
2012-06-05 17:34:59 +00:00
|
|
|
/*
|
|
|
|
* FIXME: Used for OMAP1 devices only because they do not currently
|
|
|
|
* use the clock framework to set the parent clock. To be removed
|
|
|
|
* once OMAP1 migrated to using clock framework for dmtimers
|
|
|
|
*/
|
|
|
|
if (pdata->set_timer_src)
|
|
|
|
return pdata->set_timer_src(timer->pdev, source);
|
|
|
|
|
|
|
|
fclk = clk_get(&timer->pdev->dev, "fck");
|
|
|
|
if (IS_ERR_OR_NULL(fclk)) {
|
|
|
|
pr_err("%s: fck not found\n", __func__);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (source) {
|
|
|
|
case OMAP_TIMER_SRC_SYS_CLK:
|
2012-06-05 17:35:00 +00:00
|
|
|
parent_name = "timer_sys_ck";
|
2012-06-05 17:34:59 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OMAP_TIMER_SRC_32_KHZ:
|
2012-06-05 17:35:00 +00:00
|
|
|
parent_name = "timer_32k_ck";
|
2012-06-05 17:34:59 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OMAP_TIMER_SRC_EXT_CLK:
|
2012-06-05 17:35:00 +00:00
|
|
|
parent_name = "timer_ext_ck";
|
2012-06-05 17:34:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
parent = clk_get(&timer->pdev->dev, parent_name);
|
|
|
|
if (IS_ERR_OR_NULL(parent)) {
|
|
|
|
pr_err("%s: %s not found\n", __func__, parent_name);
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = clk_set_parent(fclk, parent);
|
|
|
|
if (IS_ERR_VALUE(ret))
|
|
|
|
pr_err("%s: failed to set %s as parent\n", __func__,
|
|
|
|
parent_name);
|
|
|
|
|
|
|
|
clk_put(parent);
|
|
|
|
out:
|
|
|
|
clk_put(fclk);
|
2011-09-20 11:30:20 +00:00
|
|
|
|
|
|
|
return ret;
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_source);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
int omap_dm_timer_set_load(struct omap_dm_timer *timer, int autoreload,
|
2006-06-26 23:16:12 +00:00
|
|
|
unsigned int load)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
|
|
|
u32 l;
|
2006-06-26 23:16:12 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 11:30:24 +00:00
|
|
|
omap_dm_timer_enable(timer);
|
2005-09-07 16:20:26 +00:00
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
2006-06-26 23:16:12 +00:00
|
|
|
if (autoreload)
|
|
|
|
l |= OMAP_TIMER_CTRL_AR;
|
|
|
|
else
|
|
|
|
l &= ~OMAP_TIMER_CTRL_AR;
|
2005-09-07 16:20:26 +00:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
|
2006-06-26 23:16:12 +00:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_LOAD_REG, load);
|
2008-07-03 09:24:30 +00:00
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_TRIGGER_REG, 0);
|
2011-09-20 11:30:24 +00:00
|
|
|
/* Save the context */
|
|
|
|
timer->context.tclr = l;
|
|
|
|
timer->context.tldr = load;
|
|
|
|
omap_dm_timer_disable(timer);
|
2011-09-20 11:30:26 +00:00
|
|
|
return 0;
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_load);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2008-07-03 09:24:30 +00:00
|
|
|
/* Optimized set_load which removes costly spin wait in timer_start */
|
2011-09-20 11:30:26 +00:00
|
|
|
int omap_dm_timer_set_load_start(struct omap_dm_timer *timer, int autoreload,
|
2008-07-03 09:24:30 +00:00
|
|
|
unsigned int load)
|
|
|
|
{
|
|
|
|
u32 l;
|
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 11:30:24 +00:00
|
|
|
omap_dm_timer_enable(timer);
|
|
|
|
|
2012-06-05 17:34:55 +00:00
|
|
|
if (!(timer->capability & OMAP_TIMER_ALWON)) {
|
2012-06-05 17:34:56 +00:00
|
|
|
if (omap_pm_get_dev_context_loss_count(&timer->pdev->dev) !=
|
|
|
|
timer->ctx_loss_count)
|
2011-09-20 11:30:24 +00:00
|
|
|
omap_timer_restore_context(timer);
|
|
|
|
}
|
|
|
|
|
2008-07-03 09:24:30 +00:00
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
2008-12-11 01:36:34 +00:00
|
|
|
if (autoreload) {
|
2008-07-03 09:24:30 +00:00
|
|
|
l |= OMAP_TIMER_CTRL_AR;
|
2008-12-11 01:36:34 +00:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_LOAD_REG, load);
|
|
|
|
} else {
|
2008-07-03 09:24:30 +00:00
|
|
|
l &= ~OMAP_TIMER_CTRL_AR;
|
2008-12-11 01:36:34 +00:00
|
|
|
}
|
2008-07-03 09:24:30 +00:00
|
|
|
l |= OMAP_TIMER_CTRL_ST;
|
|
|
|
|
2011-09-16 22:44:20 +00:00
|
|
|
__omap_dm_timer_load_start(timer, l, load, timer->posted);
|
2011-09-20 11:30:24 +00:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tclr = l;
|
|
|
|
timer->context.tldr = load;
|
|
|
|
timer->context.tcrr = load;
|
2011-09-20 11:30:26 +00:00
|
|
|
return 0;
|
2008-07-03 09:24:30 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_load_start);
|
2008-07-03 09:24:30 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
int omap_dm_timer_set_match(struct omap_dm_timer *timer, int enable,
|
2006-06-26 23:16:12 +00:00
|
|
|
unsigned int match)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
|
|
|
u32 l;
|
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 11:30:24 +00:00
|
|
|
omap_dm_timer_enable(timer);
|
2005-09-07 16:20:26 +00:00
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
2006-06-26 23:16:23 +00:00
|
|
|
if (enable)
|
2006-06-26 23:16:12 +00:00
|
|
|
l |= OMAP_TIMER_CTRL_CE;
|
|
|
|
else
|
|
|
|
l &= ~OMAP_TIMER_CTRL_CE;
|
2005-09-07 16:20:26 +00:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
|
2006-06-26 23:16:12 +00:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_MATCH_REG, match);
|
2011-09-20 11:30:24 +00:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tclr = l;
|
|
|
|
timer->context.tmar = match;
|
|
|
|
omap_dm_timer_disable(timer);
|
2011-09-20 11:30:26 +00:00
|
|
|
return 0;
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_match);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
int omap_dm_timer_set_pwm(struct omap_dm_timer *timer, int def_on,
|
2006-06-26 23:16:12 +00:00
|
|
|
int toggle, int trigger)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
|
|
|
u32 l;
|
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 11:30:24 +00:00
|
|
|
omap_dm_timer_enable(timer);
|
2005-09-07 16:20:26 +00:00
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
2006-06-26 23:16:12 +00:00
|
|
|
l &= ~(OMAP_TIMER_CTRL_GPOCFG | OMAP_TIMER_CTRL_SCPWM |
|
|
|
|
OMAP_TIMER_CTRL_PT | (0x03 << 10));
|
|
|
|
if (def_on)
|
|
|
|
l |= OMAP_TIMER_CTRL_SCPWM;
|
|
|
|
if (toggle)
|
|
|
|
l |= OMAP_TIMER_CTRL_PT;
|
|
|
|
l |= trigger << 10;
|
2005-09-07 16:20:26 +00:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
|
2011-09-20 11:30:24 +00:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tclr = l;
|
|
|
|
omap_dm_timer_disable(timer);
|
2011-09-20 11:30:26 +00:00
|
|
|
return 0;
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_pwm);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
int omap_dm_timer_set_prescaler(struct omap_dm_timer *timer, int prescaler)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
|
|
|
u32 l;
|
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 11:30:24 +00:00
|
|
|
omap_dm_timer_enable(timer);
|
2005-09-07 16:20:26 +00:00
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
2006-06-26 23:16:12 +00:00
|
|
|
l &= ~(OMAP_TIMER_CTRL_PRE | (0x07 << 2));
|
|
|
|
if (prescaler >= 0x00 && prescaler <= 0x07) {
|
|
|
|
l |= OMAP_TIMER_CTRL_PRE;
|
|
|
|
l |= prescaler << 2;
|
|
|
|
}
|
2005-09-07 16:20:26 +00:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
|
2011-09-20 11:30:24 +00:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tclr = l;
|
|
|
|
omap_dm_timer_disable(timer);
|
2011-09-20 11:30:26 +00:00
|
|
|
return 0;
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_prescaler);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
int omap_dm_timer_set_int_enable(struct omap_dm_timer *timer,
|
2006-06-26 23:16:12 +00:00
|
|
|
unsigned int value)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 11:30:24 +00:00
|
|
|
omap_dm_timer_enable(timer);
|
2011-09-16 22:44:20 +00:00
|
|
|
__omap_dm_timer_int_enable(timer, value);
|
2011-09-20 11:30:24 +00:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tier = value;
|
|
|
|
timer->context.twer = value;
|
|
|
|
omap_dm_timer_disable(timer);
|
2011-09-20 11:30:26 +00:00
|
|
|
return 0;
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_int_enable);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
unsigned int omap_dm_timer_read_status(struct omap_dm_timer *timer)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
2006-09-25 09:41:35 +00:00
|
|
|
unsigned int l;
|
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer || pm_runtime_suspended(&timer->pdev->dev))) {
|
|
|
|
pr_err("%s: timer not available or enabled.\n", __func__);
|
2011-09-20 11:30:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-16 22:44:20 +00:00
|
|
|
l = __raw_readl(timer->irq_stat);
|
2006-09-25 09:41:35 +00:00
|
|
|
|
|
|
|
return l;
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_read_status);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
int omap_dm_timer_write_status(struct omap_dm_timer *timer, unsigned int value)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer || pm_runtime_suspended(&timer->pdev->dev)))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-16 22:44:20 +00:00
|
|
|
__omap_dm_timer_write_status(timer, value);
|
2011-09-20 11:30:24 +00:00
|
|
|
/* Save the context */
|
|
|
|
timer->context.tisr = value;
|
2011-09-20 11:30:26 +00:00
|
|
|
return 0;
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_write_status);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
unsigned int omap_dm_timer_read_counter(struct omap_dm_timer *timer)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer || pm_runtime_suspended(&timer->pdev->dev))) {
|
|
|
|
pr_err("%s: timer not iavailable or enabled.\n", __func__);
|
2011-09-20 11:30:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-16 22:44:20 +00:00
|
|
|
return __omap_dm_timer_read_counter(timer, timer->posted);
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_read_counter);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:26 +00:00
|
|
|
int omap_dm_timer_write_counter(struct omap_dm_timer *timer, unsigned int value)
|
2006-06-26 23:16:23 +00:00
|
|
|
{
|
2011-09-20 11:30:26 +00:00
|
|
|
if (unlikely(!timer || pm_runtime_suspended(&timer->pdev->dev))) {
|
|
|
|
pr_err("%s: timer not available or enabled.\n", __func__);
|
|
|
|
return -EINVAL;
|
2011-09-20 11:30:24 +00:00
|
|
|
}
|
|
|
|
|
2006-09-25 09:41:35 +00:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_COUNTER_REG, value);
|
2011-09-20 11:30:24 +00:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tcrr = value;
|
2011-09-20 11:30:26 +00:00
|
|
|
return 0;
|
2006-06-26 23:16:23 +00:00
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_write_counter);
|
2006-06-26 23:16:23 +00:00
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
int omap_dm_timers_active(void)
|
2005-09-07 16:20:26 +00:00
|
|
|
{
|
2011-09-20 11:30:20 +00:00
|
|
|
struct omap_dm_timer *timer;
|
2006-09-25 09:41:42 +00:00
|
|
|
|
2011-09-20 11:30:20 +00:00
|
|
|
list_for_each_entry(timer, &omap_timer_list, node) {
|
2011-09-20 11:30:21 +00:00
|
|
|
if (!timer->reserved)
|
2006-09-25 09:41:42 +00:00
|
|
|
continue;
|
|
|
|
|
2006-06-26 23:16:12 +00:00
|
|
|
if (omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG) &
|
2006-09-25 09:41:35 +00:00
|
|
|
OMAP_TIMER_CTRL_ST) {
|
2006-06-26 23:16:12 +00:00
|
|
|
return 1;
|
2006-09-25 09:41:35 +00:00
|
|
|
}
|
2006-06-26 23:16:12 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2009-03-24 01:07:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timers_active);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2011-09-20 11:30:19 +00:00
|
|
|
/**
|
|
|
|
* omap_dm_timer_probe - probe function called for every registered device
|
|
|
|
* @pdev: pointer to current timer platform device
|
|
|
|
*
|
|
|
|
* Called by driver framework at the end of device registration for all
|
|
|
|
* timer devices.
|
|
|
|
*/
|
|
|
|
static int __devinit omap_dm_timer_probe(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
struct omap_dm_timer *timer;
|
2012-04-20 12:39:20 +00:00
|
|
|
struct resource *mem, *irq;
|
|
|
|
struct device *dev = &pdev->dev;
|
2011-09-20 11:30:19 +00:00
|
|
|
struct dmtimer_platform_data *pdata = pdev->dev.platform_data;
|
|
|
|
|
|
|
|
if (!pdata) {
|
2012-04-20 12:39:20 +00:00
|
|
|
dev_err(dev, "%s: no platform data.\n", __func__);
|
2011-09-20 11:30:19 +00:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
|
|
|
|
if (unlikely(!irq)) {
|
2012-04-20 12:39:20 +00:00
|
|
|
dev_err(dev, "%s: no IRQ resource.\n", __func__);
|
2011-09-20 11:30:19 +00:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
|
|
if (unlikely(!mem)) {
|
2012-04-20 12:39:20 +00:00
|
|
|
dev_err(dev, "%s: no memory resource.\n", __func__);
|
2011-09-20 11:30:19 +00:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2012-04-20 12:39:20 +00:00
|
|
|
timer = devm_kzalloc(dev, sizeof(struct omap_dm_timer), GFP_KERNEL);
|
2011-09-20 11:30:19 +00:00
|
|
|
if (!timer) {
|
2012-04-20 12:39:20 +00:00
|
|
|
dev_err(dev, "%s: memory alloc failed!\n", __func__);
|
|
|
|
return -ENOMEM;
|
2011-09-20 11:30:19 +00:00
|
|
|
}
|
|
|
|
|
2012-04-20 12:39:20 +00:00
|
|
|
timer->io_base = devm_request_and_ioremap(dev, mem);
|
2011-09-20 11:30:19 +00:00
|
|
|
if (!timer->io_base) {
|
2012-04-20 12:39:20 +00:00
|
|
|
dev_err(dev, "%s: region already claimed.\n", __func__);
|
|
|
|
return -ENOMEM;
|
2011-09-20 11:30:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
timer->id = pdev->id;
|
|
|
|
timer->irq = irq->start;
|
2012-06-05 17:34:51 +00:00
|
|
|
timer->reserved = omap_dm_timer_reserved_systimer(timer->id);
|
2011-09-20 11:30:19 +00:00
|
|
|
timer->pdev = pdev;
|
ARM: OMAP: Add DMTIMER capability variable to represent timer features
Although the OMAP timers share a common hardware design, there are some
differences between the timer instances in a given device. For example, a timer
maybe in a power domain that can be powered-of, so can lose its logic state and
need restoring where as another may be in power domain that is always be on.
Another example, is a timer may support different clock sources to drive the
timer. This information is passed to the dmtimer via the following platform data
structure.
struct dmtimer_platform_data {
int (*set_timer_src)(struct platform_device *pdev, int source);
int timer_ip_version;
u32 needs_manual_reset:1;
bool loses_context;
int (*get_context_loss_count)(struct device *dev);
};
The above structure uses multiple variables to represent the timer features.
HWMOD also stores the timer capabilities using a bit-mask that represents the
features supported. By using the same format for representing the timer
features in the platform data as used by HWMOD, we can ...
1. Use the flags defined in the plat/dmtimer.h to represent the features
supported.
2. For devices using HWMOD, we can retrieve the features supported from HWMOD.
3. Eventually, simplify the platform data structure to be ...
struct dmtimer_platform_data {
int (*set_timer_src)(struct platform_device *pdev, int source);
u32 timer_capability;
}
Another benefit from doing this, is that it will simplify the migration of the
dmtimer driver to device-tree. For example, in the current OMAP2+ timer code the
"loses_context" variable is configured at runtime by calling an architecture
specific function. For device tree this creates a problem, because we would need
to call the architecture specific function from within the dmtimer driver.
However, such attributes do not need to be queried at runtime and we can look up
the attributes via HWMOD or device-tree.
This changes a new "capability" variable to the platform data and timer
structure so we can start removing and simplifying the platform data structure.
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2012-06-05 17:34:52 +00:00
|
|
|
timer->capability = pdata->timer_capability;
|
2011-09-20 11:30:19 +00:00
|
|
|
|
2011-09-20 11:30:21 +00:00
|
|
|
/* Skip pm_runtime_enable for OMAP1 */
|
2012-06-05 17:34:57 +00:00
|
|
|
if (!(timer->capability & OMAP_TIMER_NEEDS_RESET)) {
|
2012-04-20 12:39:20 +00:00
|
|
|
pm_runtime_enable(dev);
|
|
|
|
pm_runtime_irq_safe(dev);
|
2011-09-20 11:30:21 +00:00
|
|
|
}
|
|
|
|
|
2011-09-21 23:38:51 +00:00
|
|
|
if (!timer->reserved) {
|
2012-04-20 12:39:20 +00:00
|
|
|
pm_runtime_get_sync(dev);
|
2011-09-21 23:38:51 +00:00
|
|
|
__omap_dm_timer_init_regs(timer);
|
2012-04-20 12:39:20 +00:00
|
|
|
pm_runtime_put(dev);
|
2011-09-21 23:38:51 +00:00
|
|
|
}
|
|
|
|
|
2011-09-20 11:30:19 +00:00
|
|
|
/* add the timer element to the list */
|
|
|
|
spin_lock_irqsave(&dm_timer_lock, flags);
|
|
|
|
list_add_tail(&timer->node, &omap_timer_list);
|
|
|
|
spin_unlock_irqrestore(&dm_timer_lock, flags);
|
|
|
|
|
2012-04-20 12:39:20 +00:00
|
|
|
dev_dbg(dev, "Device Probed.\n");
|
2011-09-20 11:30:19 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* omap_dm_timer_remove - cleanup a registered timer device
|
|
|
|
* @pdev: pointer to current timer platform device
|
|
|
|
*
|
|
|
|
* Called by driver framework whenever a timer device is unregistered.
|
|
|
|
* In addition to freeing platform resources it also deletes the timer
|
|
|
|
* entry from the local list.
|
|
|
|
*/
|
|
|
|
static int __devexit omap_dm_timer_remove(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
struct omap_dm_timer *timer;
|
|
|
|
unsigned long flags;
|
|
|
|
int ret = -EINVAL;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&dm_timer_lock, flags);
|
|
|
|
list_for_each_entry(timer, &omap_timer_list, node)
|
|
|
|
if (timer->pdev->id == pdev->id) {
|
|
|
|
list_del(&timer->node);
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
spin_unlock_irqrestore(&dm_timer_lock, flags);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct platform_driver omap_dm_timer_driver = {
|
|
|
|
.probe = omap_dm_timer_probe,
|
2011-10-01 16:42:47 +00:00
|
|
|
.remove = __devexit_p(omap_dm_timer_remove),
|
2011-09-20 11:30:19 +00:00
|
|
|
.driver = {
|
|
|
|
.name = "omap_timer",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init omap_dm_timer_driver_init(void)
|
|
|
|
{
|
|
|
|
return platform_driver_register(&omap_dm_timer_driver);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit omap_dm_timer_driver_exit(void)
|
|
|
|
{
|
|
|
|
platform_driver_unregister(&omap_dm_timer_driver);
|
|
|
|
}
|
|
|
|
|
|
|
|
early_platform_init("earlytimer", &omap_dm_timer_driver);
|
|
|
|
module_init(omap_dm_timer_driver_init);
|
|
|
|
module_exit(omap_dm_timer_driver_exit);
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION("OMAP Dual-Mode Timer Driver");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_ALIAS("platform:" DRIVER_NAME);
|
|
|
|
MODULE_AUTHOR("Texas Instruments Inc");
|