2005-09-08 00:20:26 +08:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/plat-omap/dmtimer.c
|
|
|
|
*
|
|
|
|
* OMAP Dual-Mode Timers
|
|
|
|
*
|
2011-09-20 19:30:17 +08: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-08 00:20:26 +08:00
|
|
|
* Copyright (C) 2005 Nokia Corporation
|
2006-06-27 07:16:12 +08:00
|
|
|
* OMAP2 support by Juha Yrjola
|
|
|
|
* API improvements and OMAP2 clock framework support by Timo Teras
|
2005-09-08 00:20:26 +08:00
|
|
|
*
|
2009-05-29 05:16:04 +08:00
|
|
|
* Copyright (C) 2009 Texas Instruments
|
|
|
|
* Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
|
|
|
|
*
|
2005-09-08 00:20:26 +08: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.
|
|
|
|
*/
|
|
|
|
|
2012-09-29 00:43:30 +08:00
|
|
|
#include <linux/clk.h>
|
2011-11-02 09:49:46 +08:00
|
|
|
#include <linux/module.h>
|
2008-09-06 19:10:45 +08:00
|
|
|
#include <linux/io.h>
|
2012-04-20 20:39:20 +08:00
|
|
|
#include <linux/device.h>
|
2011-09-20 19:30:20 +08:00
|
|
|
#include <linux/err.h>
|
2011-09-20 19:30:21 +08:00
|
|
|
#include <linux/pm_runtime.h>
|
ARM: OMAP: Add DT support for timer driver
In order to add device-tree support to the timer driver the following changes
were made ...
1. Allocate system timers (used for clock-events and clock-source) based upon
timer properties rather than using an hard-coded timer instance ID. To allow
this a new helper function called omap_dmtimer_find_by_property() has been
added for finding a timer with the particular properties in the device-tree
blob. Please note that this is an internal helper function for system timers
only to find a timer in the device-tree blob. This cannot be used by device
drivers, another API has been added for that (see below). Timers that are
allocated for system timers are dynamically disabled at boot time by adding
a status property with the value "disabled" to the timer's device-tree node.
Please note that when allocating system timers we now pass a timer ID and
timer property. The timer ID is only be used for allocating a timer when
booting without device-tree. Once device-tree migration is complete, all
the timer ID references will be removed.
2. System timer resources (memory and interrupts) are directly obtained from
the device-tree timer node when booting with device-tree, so that system
timers are no longer reliant upon the OMAP HWMOD framework to provide these
resources.
3. If DT blob is present, then let device-tree create the timer devices
dynamically.
4. When device-tree is present the "id" field in the platform_device structure
(pdev->id) is initialised to -1 and hence cannot be used to identify a timer
instance. Due to this the following changes were made ...
a). The API omap_dm_timer_request_specific() is not supported when using
device-tree, because it uses the device ID to request a specific timer.
This function will return an error if called when device-tree is present.
Users of this API should use omap_dm_timer_request_by_cap() instead.
b). When removing the DMTIMER driver, the timer "id" was used to identify the
timer instance. The remove function has been modified to use the device
name instead of the "id".
5. When device-tree is present the platform_data structure will be NULL and so
check for this.
6. The OMAP timer device tree binding has the following optional parameters ...
a). ti,timer-alwon --> Timer is in an always-on power domain
b). ti,timer-dsp --> Timer can generate an interrupt to the on-chip DSP
c). ti,timer-pwm --> Timer can generate a PWM output
d). ti,timer-secure --> Timer is reserved on a secure OMAP device
Search for the above parameters and set the appropriate timer attribute
flags.
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
2012-05-14 23:41:37 +08:00
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/of_device.h>
|
2009-05-29 05:16:04 +08:00
|
|
|
|
2011-09-20 19:30:20 +08:00
|
|
|
#include <plat/dmtimer.h>
|
2012-02-25 02:34:35 +08:00
|
|
|
|
2012-06-06 01:34:51 +08:00
|
|
|
static u32 omap_reserved_systimers;
|
2011-09-20 19:30:19 +08:00
|
|
|
static LIST_HEAD(omap_timer_list);
|
2011-09-20 19:30:20 +08:00
|
|
|
static DEFINE_SPINLOCK(dm_timer_lock);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:20 +08: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 17:24:30 +08:00
|
|
|
*/
|
|
|
|
static inline u32 omap_dm_timer_read_reg(struct omap_dm_timer *timer, u32 reg)
|
2006-06-27 07:16:12 +08:00
|
|
|
{
|
2011-09-17 06:44:20 +08:00
|
|
|
WARN_ON((reg & 0xff) < _OMAP_TIMER_WAKEUP_EN_OFFSET);
|
|
|
|
return __omap_dm_timer_read(timer, reg, timer->posted);
|
2006-06-27 07:16:12 +08:00
|
|
|
}
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:20 +08: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 17:24:30 +08:00
|
|
|
*/
|
|
|
|
static void omap_dm_timer_write_reg(struct omap_dm_timer *timer, u32 reg,
|
|
|
|
u32 value)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
2011-09-17 06:44:20 +08:00
|
|
|
WARN_ON((reg & 0xff) < _OMAP_TIMER_WAKEUP_EN_OFFSET);
|
|
|
|
__omap_dm_timer_write(timer, reg, value, timer->posted);
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
|
|
|
|
2011-09-20 19:30:24 +08:00
|
|
|
static void omap_timer_restore_context(struct omap_dm_timer *timer)
|
|
|
|
{
|
|
|
|
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-27 07:16:12 +08:00
|
|
|
static void omap_dm_timer_wait_for_reset(struct omap_dm_timer *timer)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
2006-06-27 07:16:12 +08:00
|
|
|
int c;
|
|
|
|
|
2011-09-17 06:44:20 +08:00
|
|
|
if (!timer->sys_stat)
|
|
|
|
return;
|
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
c = 0;
|
2011-09-17 06:44:20 +08:00
|
|
|
while (!(__raw_readl(timer->sys_stat) & 1)) {
|
2006-06-27 07:16:12 +08:00
|
|
|
c++;
|
|
|
|
if (c > 100000) {
|
|
|
|
printk(KERN_ERR "Timer failed to reset\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
static void omap_dm_timer_reset(struct omap_dm_timer *timer)
|
|
|
|
{
|
2012-07-07 05:46:35 +08:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_IF_CTRL_REG, 0x06);
|
|
|
|
omap_dm_timer_wait_for_reset(timer);
|
2011-09-20 19:30:20 +08:00
|
|
|
__omap_dm_timer_reset(timer, 0, 0);
|
2006-06-27 07:16:12 +08:00
|
|
|
}
|
|
|
|
|
2011-09-20 19:30:20 +08:00
|
|
|
int omap_dm_timer_prepare(struct omap_dm_timer *timer)
|
2006-06-27 07:16:12 +08:00
|
|
|
{
|
2012-06-06 01:34:58 +08: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 19:30:20 +08:00
|
|
|
}
|
|
|
|
|
2012-07-07 05:45:04 +08:00
|
|
|
omap_dm_timer_enable(timer);
|
|
|
|
|
2012-06-06 01:34:57 +08:00
|
|
|
if (timer->capability & OMAP_TIMER_NEEDS_RESET)
|
2011-09-20 19:30:20 +08:00
|
|
|
omap_dm_timer_reset(timer);
|
|
|
|
|
2012-07-07 05:45:04 +08:00
|
|
|
__omap_dm_timer_enable_posted(timer);
|
|
|
|
omap_dm_timer_disable(timer);
|
2011-09-20 19:30:20 +08:00
|
|
|
|
2012-07-07 05:45:04 +08:00
|
|
|
return omap_dm_timer_set_source(timer, OMAP_TIMER_SRC_32_KHZ);
|
2006-06-27 07:16:12 +08:00
|
|
|
}
|
|
|
|
|
2012-06-06 01:34:51 +08: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-27 07:16:12 +08:00
|
|
|
struct omap_dm_timer *omap_dm_timer_request(void)
|
|
|
|
{
|
2011-09-20 19:30:20 +08:00
|
|
|
struct omap_dm_timer *timer = NULL, *t;
|
2006-06-27 07:16:12 +08:00
|
|
|
unsigned long flags;
|
2011-09-20 19:30:20 +08:00
|
|
|
int ret = 0;
|
2006-06-27 07:16:12 +08:00
|
|
|
|
|
|
|
spin_lock_irqsave(&dm_timer_lock, flags);
|
2011-09-20 19:30:20 +08:00
|
|
|
list_for_each_entry(t, &omap_timer_list, node) {
|
|
|
|
if (t->reserved)
|
2006-06-27 07:16:12 +08:00
|
|
|
continue;
|
|
|
|
|
2011-09-20 19:30:20 +08:00
|
|
|
timer = t;
|
2006-06-27 07:16:23 +08:00
|
|
|
timer->reserved = 1;
|
2006-06-27 07:16:12 +08:00
|
|
|
break;
|
|
|
|
}
|
2012-08-12 18:45:34 +08:00
|
|
|
spin_unlock_irqrestore(&dm_timer_lock, flags);
|
2011-09-20 19:30:20 +08:00
|
|
|
|
|
|
|
if (timer) {
|
|
|
|
ret = omap_dm_timer_prepare(timer);
|
|
|
|
if (ret) {
|
|
|
|
timer->reserved = 0;
|
|
|
|
timer = NULL;
|
|
|
|
}
|
|
|
|
}
|
2006-06-27 07:16:12 +08:00
|
|
|
|
2011-09-20 19:30:20 +08:00
|
|
|
if (!timer)
|
|
|
|
pr_debug("%s: timer request failed!\n", __func__);
|
2006-06-27 07:16:23 +08:00
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
return timer;
|
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_request);
|
2006-06-27 07:16:12 +08:00
|
|
|
|
|
|
|
struct omap_dm_timer *omap_dm_timer_request_specific(int id)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
2011-09-20 19:30:20 +08:00
|
|
|
struct omap_dm_timer *timer = NULL, *t;
|
2006-06-27 07:16:12 +08:00
|
|
|
unsigned long flags;
|
2011-09-20 19:30:20 +08:00
|
|
|
int ret = 0;
|
2005-09-08 00:20:26 +08:00
|
|
|
|
ARM: OMAP: Add DT support for timer driver
In order to add device-tree support to the timer driver the following changes
were made ...
1. Allocate system timers (used for clock-events and clock-source) based upon
timer properties rather than using an hard-coded timer instance ID. To allow
this a new helper function called omap_dmtimer_find_by_property() has been
added for finding a timer with the particular properties in the device-tree
blob. Please note that this is an internal helper function for system timers
only to find a timer in the device-tree blob. This cannot be used by device
drivers, another API has been added for that (see below). Timers that are
allocated for system timers are dynamically disabled at boot time by adding
a status property with the value "disabled" to the timer's device-tree node.
Please note that when allocating system timers we now pass a timer ID and
timer property. The timer ID is only be used for allocating a timer when
booting without device-tree. Once device-tree migration is complete, all
the timer ID references will be removed.
2. System timer resources (memory and interrupts) are directly obtained from
the device-tree timer node when booting with device-tree, so that system
timers are no longer reliant upon the OMAP HWMOD framework to provide these
resources.
3. If DT blob is present, then let device-tree create the timer devices
dynamically.
4. When device-tree is present the "id" field in the platform_device structure
(pdev->id) is initialised to -1 and hence cannot be used to identify a timer
instance. Due to this the following changes were made ...
a). The API omap_dm_timer_request_specific() is not supported when using
device-tree, because it uses the device ID to request a specific timer.
This function will return an error if called when device-tree is present.
Users of this API should use omap_dm_timer_request_by_cap() instead.
b). When removing the DMTIMER driver, the timer "id" was used to identify the
timer instance. The remove function has been modified to use the device
name instead of the "id".
5. When device-tree is present the platform_data structure will be NULL and so
check for this.
6. The OMAP timer device tree binding has the following optional parameters ...
a). ti,timer-alwon --> Timer is in an always-on power domain
b). ti,timer-dsp --> Timer can generate an interrupt to the on-chip DSP
c). ti,timer-pwm --> Timer can generate a PWM output
d). ti,timer-secure --> Timer is reserved on a secure OMAP device
Search for the above parameters and set the appropriate timer attribute
flags.
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
2012-05-14 23:41:37 +08:00
|
|
|
/* Requesting timer by ID is not supported when device tree is used */
|
|
|
|
if (of_have_populated_dt()) {
|
|
|
|
pr_warn("%s: Please use omap_dm_timer_request_by_cap()\n",
|
|
|
|
__func__);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
spin_lock_irqsave(&dm_timer_lock, flags);
|
2011-09-20 19:30:20 +08: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-27 07:16:12 +08:00
|
|
|
}
|
2012-08-12 18:45:34 +08:00
|
|
|
spin_unlock_irqrestore(&dm_timer_lock, flags);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:20 +08:00
|
|
|
if (timer) {
|
|
|
|
ret = omap_dm_timer_prepare(timer);
|
|
|
|
if (ret) {
|
|
|
|
timer->reserved = 0;
|
|
|
|
timer = NULL;
|
|
|
|
}
|
|
|
|
}
|
2006-06-27 07:16:12 +08:00
|
|
|
|
2011-09-20 19:30:20 +08:00
|
|
|
if (!timer)
|
|
|
|
pr_debug("%s: timer%d request failed!\n", __func__, id);
|
2006-06-27 07:16:23 +08:00
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
return timer;
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_request_specific);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2012-09-07 04:28:00 +08:00
|
|
|
/**
|
|
|
|
* omap_dm_timer_request_by_cap - Request a timer by capability
|
|
|
|
* @cap: Bit mask of capabilities to match
|
|
|
|
*
|
|
|
|
* Find a timer based upon capabilities bit mask. Callers of this function
|
|
|
|
* should use the definitions found in the plat/dmtimer.h file under the
|
|
|
|
* comment "timer capabilities used in hwmod database". Returns pointer to
|
|
|
|
* timer handle on success and a NULL pointer on failure.
|
|
|
|
*/
|
|
|
|
struct omap_dm_timer *omap_dm_timer_request_by_cap(u32 cap)
|
|
|
|
{
|
|
|
|
struct omap_dm_timer *timer = NULL, *t;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
if (!cap)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&dm_timer_lock, flags);
|
|
|
|
list_for_each_entry(t, &omap_timer_list, node) {
|
|
|
|
if ((!t->reserved) && ((t->capability & cap) == cap)) {
|
|
|
|
/*
|
|
|
|
* If timer is not NULL, we have already found one timer
|
|
|
|
* but it was not an exact match because it had more
|
|
|
|
* capabilites that what was required. Therefore,
|
|
|
|
* unreserve the last timer found and see if this one
|
|
|
|
* is a better match.
|
|
|
|
*/
|
|
|
|
if (timer)
|
|
|
|
timer->reserved = 0;
|
|
|
|
|
|
|
|
timer = t;
|
|
|
|
timer->reserved = 1;
|
|
|
|
|
|
|
|
/* Exit loop early if we find an exact match */
|
|
|
|
if (t->capability == cap)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
spin_unlock_irqrestore(&dm_timer_lock, flags);
|
|
|
|
|
|
|
|
if (timer && omap_dm_timer_prepare(timer)) {
|
|
|
|
timer->reserved = 0;
|
|
|
|
timer = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!timer)
|
|
|
|
pr_debug("%s: timer request failed!\n", __func__);
|
|
|
|
|
|
|
|
return timer;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_request_by_cap);
|
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
int omap_dm_timer_free(struct omap_dm_timer *timer)
|
2006-06-27 07:16:12 +08:00
|
|
|
{
|
2011-09-20 19:30:26 +08:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 19:30:20 +08:00
|
|
|
clk_put(timer->fclk);
|
2006-09-25 17:41:35 +08:00
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
WARN_ON(!timer->reserved);
|
|
|
|
timer->reserved = 0;
|
2011-09-20 19:30:26 +08:00
|
|
|
return 0;
|
2006-06-27 07:16:12 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_free);
|
2006-06-27 07:16:12 +08:00
|
|
|
|
2006-09-25 17:41:42 +08:00
|
|
|
void omap_dm_timer_enable(struct omap_dm_timer *timer)
|
|
|
|
{
|
2011-09-20 19:30:21 +08:00
|
|
|
pm_runtime_get_sync(&timer->pdev->dev);
|
2006-09-25 17:41:42 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_enable);
|
2006-09-25 17:41:42 +08:00
|
|
|
|
|
|
|
void omap_dm_timer_disable(struct omap_dm_timer *timer)
|
|
|
|
{
|
2012-07-14 04:12:03 +08:00
|
|
|
pm_runtime_put_sync(&timer->pdev->dev);
|
2006-09-25 17:41:42 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_disable);
|
2006-09-25 17:41:42 +08:00
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
int omap_dm_timer_get_irq(struct omap_dm_timer *timer)
|
|
|
|
{
|
2011-09-20 19:30:26 +08:00
|
|
|
if (timer)
|
|
|
|
return timer->irq;
|
|
|
|
return -EINVAL;
|
2006-06-27 07:16:12 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_get_irq);
|
2006-06-27 07:16:12 +08:00
|
|
|
|
|
|
|
#if defined(CONFIG_ARCH_OMAP1)
|
2012-11-01 03:38:43 +08:00
|
|
|
#include <mach/hardware.h>
|
2006-04-03 00:46:21 +08: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 19:30:20 +08:00
|
|
|
int i = 0;
|
|
|
|
struct omap_dm_timer *timer = NULL;
|
|
|
|
unsigned long flags;
|
2006-04-03 00:46:21 +08: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 19:30:20 +08:00
|
|
|
spin_lock_irqsave(&dm_timer_lock, flags);
|
|
|
|
list_for_each_entry(timer, &omap_timer_list, node) {
|
2006-06-27 07:16:12 +08:00
|
|
|
u32 l;
|
|
|
|
|
2011-09-20 19:30:20 +08:00
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
2006-06-27 07:16:12 +08:00
|
|
|
if (l & OMAP_TIMER_CTRL_ST) {
|
|
|
|
if (((omap_readl(MOD_CONF_CTRL_1) >> (i * 2)) & 0x03) == 0)
|
2006-04-03 00:46:21 +08:00
|
|
|
inputmask &= ~(1 << 1);
|
|
|
|
else
|
|
|
|
inputmask &= ~(1 << 2);
|
|
|
|
}
|
2011-09-20 19:30:20 +08:00
|
|
|
i++;
|
2006-06-27 07:16:12 +08:00
|
|
|
}
|
2011-09-20 19:30:20 +08:00
|
|
|
spin_unlock_irqrestore(&dm_timer_lock, flags);
|
2006-04-03 00:46:21 +08:00
|
|
|
|
|
|
|
return inputmask;
|
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_modify_idlect_mask);
|
2006-04-03 00:46:21 +08:00
|
|
|
|
2010-02-13 04:26:48 +08:00
|
|
|
#else
|
2006-04-03 00:46:21 +08:00
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
struct clk *omap_dm_timer_get_fclk(struct omap_dm_timer *timer)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
2011-09-20 19:30:26 +08:00
|
|
|
if (timer)
|
|
|
|
return timer->fclk;
|
|
|
|
return NULL;
|
2006-06-27 07:16:12 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_get_fclk);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
__u32 omap_dm_timer_modify_idlect_mask(__u32 inputmask)
|
|
|
|
{
|
|
|
|
BUG();
|
2006-12-07 09:14:00 +08:00
|
|
|
|
|
|
|
return 0;
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_modify_idlect_mask);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
#endif
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
int omap_dm_timer_trigger(struct omap_dm_timer *timer)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
2011-09-20 19:30:26 +08: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 19:30:24 +08:00
|
|
|
}
|
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_TRIGGER_REG, 0);
|
2011-09-20 19:30:26 +08:00
|
|
|
return 0;
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_trigger);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
int omap_dm_timer_start(struct omap_dm_timer *timer)
|
2006-06-27 07:16:12 +08:00
|
|
|
{
|
|
|
|
u32 l;
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 19:30:24 +08:00
|
|
|
omap_dm_timer_enable(timer);
|
|
|
|
|
2012-06-06 01:34:55 +08:00
|
|
|
if (!(timer->capability & OMAP_TIMER_ALWON)) {
|
2012-10-30 06:20:45 +08:00
|
|
|
if (timer->get_context_loss_count &&
|
|
|
|
timer->get_context_loss_count(&timer->pdev->dev) !=
|
2012-06-06 01:34:56 +08:00
|
|
|
timer->ctx_loss_count)
|
2011-09-20 19:30:24 +08:00
|
|
|
omap_timer_restore_context(timer);
|
|
|
|
}
|
|
|
|
|
2006-06-27 07:16:12 +08: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 19:30:24 +08:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tclr = l;
|
2011-09-20 19:30:26 +08:00
|
|
|
return 0;
|
2006-06-27 07:16:12 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_start);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
int omap_dm_timer_stop(struct omap_dm_timer *timer)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
2011-03-30 06:54:48 +08:00
|
|
|
unsigned long rate = 0;
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2012-06-06 01:34:57 +08:00
|
|
|
if (!(timer->capability & OMAP_TIMER_NEEDS_RESET))
|
2011-09-20 19:30:20 +08:00
|
|
|
rate = clk_get_rate(timer->fclk);
|
2011-03-30 06:54:48 +08:00
|
|
|
|
2011-09-17 06:44:20 +08:00
|
|
|
__omap_dm_timer_stop(timer, timer->posted, rate);
|
2011-09-20 19:30:26 +08:00
|
|
|
|
2012-10-30 06:20:45 +08:00
|
|
|
if (!(timer->capability & OMAP_TIMER_ALWON)) {
|
|
|
|
if (timer->get_context_loss_count)
|
|
|
|
timer->ctx_loss_count =
|
|
|
|
timer->get_context_loss_count(&timer->pdev->dev);
|
|
|
|
}
|
2012-03-06 08:11:00 +08: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);
|
|
|
|
omap_dm_timer_disable(timer);
|
2011-09-20 19:30:26 +08:00
|
|
|
return 0;
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_stop);
|
2005-09-08 00:20:26 +08: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 11:11:10 +08:00
|
|
|
int omap_dm_timer_set_source(struct omap_dm_timer *timer, int source)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
2011-09-20 19:30:20 +08:00
|
|
|
int ret;
|
2012-06-06 01:34:59 +08:00
|
|
|
char *parent_name = NULL;
|
2012-07-19 09:10:12 +08:00
|
|
|
struct clk *parent;
|
2011-09-20 19:30:26 +08:00
|
|
|
struct dmtimer_platform_data *pdata;
|
|
|
|
|
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
pdata = timer->pdev->dev.platform_data;
|
2011-09-20 19:30:20 +08:00
|
|
|
|
2006-06-27 07:16:12 +08: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 11:11:10 +08:00
|
|
|
return -EINVAL;
|
2006-06-27 07:16:12 +08:00
|
|
|
|
2012-06-06 01:34:59 +08: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
|
|
|
|
*/
|
ARM: OMAP: Add DT support for timer driver
In order to add device-tree support to the timer driver the following changes
were made ...
1. Allocate system timers (used for clock-events and clock-source) based upon
timer properties rather than using an hard-coded timer instance ID. To allow
this a new helper function called omap_dmtimer_find_by_property() has been
added for finding a timer with the particular properties in the device-tree
blob. Please note that this is an internal helper function for system timers
only to find a timer in the device-tree blob. This cannot be used by device
drivers, another API has been added for that (see below). Timers that are
allocated for system timers are dynamically disabled at boot time by adding
a status property with the value "disabled" to the timer's device-tree node.
Please note that when allocating system timers we now pass a timer ID and
timer property. The timer ID is only be used for allocating a timer when
booting without device-tree. Once device-tree migration is complete, all
the timer ID references will be removed.
2. System timer resources (memory and interrupts) are directly obtained from
the device-tree timer node when booting with device-tree, so that system
timers are no longer reliant upon the OMAP HWMOD framework to provide these
resources.
3. If DT blob is present, then let device-tree create the timer devices
dynamically.
4. When device-tree is present the "id" field in the platform_device structure
(pdev->id) is initialised to -1 and hence cannot be used to identify a timer
instance. Due to this the following changes were made ...
a). The API omap_dm_timer_request_specific() is not supported when using
device-tree, because it uses the device ID to request a specific timer.
This function will return an error if called when device-tree is present.
Users of this API should use omap_dm_timer_request_by_cap() instead.
b). When removing the DMTIMER driver, the timer "id" was used to identify the
timer instance. The remove function has been modified to use the device
name instead of the "id".
5. When device-tree is present the platform_data structure will be NULL and so
check for this.
6. The OMAP timer device tree binding has the following optional parameters ...
a). ti,timer-alwon --> Timer is in an always-on power domain
b). ti,timer-dsp --> Timer can generate an interrupt to the on-chip DSP
c). ti,timer-pwm --> Timer can generate a PWM output
d). ti,timer-secure --> Timer is reserved on a secure OMAP device
Search for the above parameters and set the appropriate timer attribute
flags.
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
2012-05-14 23:41:37 +08:00
|
|
|
if (pdata && pdata->set_timer_src)
|
2012-06-06 01:34:59 +08:00
|
|
|
return pdata->set_timer_src(timer->pdev, source);
|
|
|
|
|
2012-07-19 09:10:12 +08:00
|
|
|
if (!timer->fclk)
|
2012-06-06 01:34:59 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
switch (source) {
|
|
|
|
case OMAP_TIMER_SRC_SYS_CLK:
|
2012-06-06 01:35:00 +08:00
|
|
|
parent_name = "timer_sys_ck";
|
2012-06-06 01:34:59 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OMAP_TIMER_SRC_32_KHZ:
|
2012-06-06 01:35:00 +08:00
|
|
|
parent_name = "timer_32k_ck";
|
2012-06-06 01:34:59 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OMAP_TIMER_SRC_EXT_CLK:
|
2012-06-06 01:35:00 +08:00
|
|
|
parent_name = "timer_ext_ck";
|
2012-06-06 01:34:59 +08: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);
|
2012-07-19 09:10:12 +08:00
|
|
|
return -EINVAL;
|
2012-06-06 01:34:59 +08:00
|
|
|
}
|
|
|
|
|
2012-07-19 09:10:12 +08:00
|
|
|
ret = clk_set_parent(timer->fclk, parent);
|
2012-06-06 01:34:59 +08:00
|
|
|
if (IS_ERR_VALUE(ret))
|
|
|
|
pr_err("%s: failed to set %s as parent\n", __func__,
|
|
|
|
parent_name);
|
|
|
|
|
|
|
|
clk_put(parent);
|
2011-09-20 19:30:20 +08:00
|
|
|
|
|
|
|
return ret;
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_source);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
int omap_dm_timer_set_load(struct omap_dm_timer *timer, int autoreload,
|
2006-06-27 07:16:12 +08:00
|
|
|
unsigned int load)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
|
|
|
u32 l;
|
2006-06-27 07:16:12 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 19:30:24 +08:00
|
|
|
omap_dm_timer_enable(timer);
|
2005-09-08 00:20:26 +08:00
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
2006-06-27 07:16:12 +08:00
|
|
|
if (autoreload)
|
|
|
|
l |= OMAP_TIMER_CTRL_AR;
|
|
|
|
else
|
|
|
|
l &= ~OMAP_TIMER_CTRL_AR;
|
2005-09-08 00:20:26 +08:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
|
2006-06-27 07:16:12 +08:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_LOAD_REG, load);
|
2008-07-03 17:24:30 +08:00
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_TRIGGER_REG, 0);
|
2011-09-20 19:30:24 +08:00
|
|
|
/* Save the context */
|
|
|
|
timer->context.tclr = l;
|
|
|
|
timer->context.tldr = load;
|
|
|
|
omap_dm_timer_disable(timer);
|
2011-09-20 19:30:26 +08:00
|
|
|
return 0;
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_load);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2008-07-03 17:24:30 +08:00
|
|
|
/* Optimized set_load which removes costly spin wait in timer_start */
|
2011-09-20 19:30:26 +08:00
|
|
|
int omap_dm_timer_set_load_start(struct omap_dm_timer *timer, int autoreload,
|
2008-07-03 17:24:30 +08:00
|
|
|
unsigned int load)
|
|
|
|
{
|
|
|
|
u32 l;
|
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 19:30:24 +08:00
|
|
|
omap_dm_timer_enable(timer);
|
|
|
|
|
2012-06-06 01:34:55 +08:00
|
|
|
if (!(timer->capability & OMAP_TIMER_ALWON)) {
|
2012-10-30 06:20:45 +08:00
|
|
|
if (timer->get_context_loss_count &&
|
|
|
|
timer->get_context_loss_count(&timer->pdev->dev) !=
|
2012-06-06 01:34:56 +08:00
|
|
|
timer->ctx_loss_count)
|
2011-09-20 19:30:24 +08:00
|
|
|
omap_timer_restore_context(timer);
|
|
|
|
}
|
|
|
|
|
2008-07-03 17:24:30 +08:00
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
2008-12-11 09:36:34 +08:00
|
|
|
if (autoreload) {
|
2008-07-03 17:24:30 +08:00
|
|
|
l |= OMAP_TIMER_CTRL_AR;
|
2008-12-11 09:36:34 +08:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_LOAD_REG, load);
|
|
|
|
} else {
|
2008-07-03 17:24:30 +08:00
|
|
|
l &= ~OMAP_TIMER_CTRL_AR;
|
2008-12-11 09:36:34 +08:00
|
|
|
}
|
2008-07-03 17:24:30 +08:00
|
|
|
l |= OMAP_TIMER_CTRL_ST;
|
|
|
|
|
2011-09-17 06:44:20 +08:00
|
|
|
__omap_dm_timer_load_start(timer, l, load, timer->posted);
|
2011-09-20 19:30:24 +08:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tclr = l;
|
|
|
|
timer->context.tldr = load;
|
|
|
|
timer->context.tcrr = load;
|
2011-09-20 19:30:26 +08:00
|
|
|
return 0;
|
2008-07-03 17:24:30 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_load_start);
|
2008-07-03 17:24:30 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
int omap_dm_timer_set_match(struct omap_dm_timer *timer, int enable,
|
2006-06-27 07:16:12 +08:00
|
|
|
unsigned int match)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
|
|
|
u32 l;
|
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 19:30:24 +08:00
|
|
|
omap_dm_timer_enable(timer);
|
2005-09-08 00:20:26 +08:00
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
2006-06-27 07:16:23 +08:00
|
|
|
if (enable)
|
2006-06-27 07:16:12 +08:00
|
|
|
l |= OMAP_TIMER_CTRL_CE;
|
|
|
|
else
|
|
|
|
l &= ~OMAP_TIMER_CTRL_CE;
|
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_MATCH_REG, match);
|
2012-10-05 07:17:42 +08:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
|
2011-09-20 19:30:24 +08:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tclr = l;
|
|
|
|
timer->context.tmar = match;
|
|
|
|
omap_dm_timer_disable(timer);
|
2011-09-20 19:30:26 +08:00
|
|
|
return 0;
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_match);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
int omap_dm_timer_set_pwm(struct omap_dm_timer *timer, int def_on,
|
2006-06-27 07:16:12 +08:00
|
|
|
int toggle, int trigger)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
|
|
|
u32 l;
|
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 19:30:24 +08:00
|
|
|
omap_dm_timer_enable(timer);
|
2005-09-08 00:20:26 +08:00
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
2006-06-27 07:16:12 +08: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-08 00:20:26 +08:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
|
2011-09-20 19:30:24 +08:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tclr = l;
|
|
|
|
omap_dm_timer_disable(timer);
|
2011-09-20 19:30:26 +08:00
|
|
|
return 0;
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_pwm);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
int omap_dm_timer_set_prescaler(struct omap_dm_timer *timer, int prescaler)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
|
|
|
u32 l;
|
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 19:30:24 +08:00
|
|
|
omap_dm_timer_enable(timer);
|
2005-09-08 00:20:26 +08:00
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG);
|
2006-06-27 07:16:12 +08:00
|
|
|
l &= ~(OMAP_TIMER_CTRL_PRE | (0x07 << 2));
|
|
|
|
if (prescaler >= 0x00 && prescaler <= 0x07) {
|
|
|
|
l |= OMAP_TIMER_CTRL_PRE;
|
|
|
|
l |= prescaler << 2;
|
|
|
|
}
|
2005-09-08 00:20:26 +08:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
|
2011-09-20 19:30:24 +08:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tclr = l;
|
|
|
|
omap_dm_timer_disable(timer);
|
2011-09-20 19:30:26 +08:00
|
|
|
return 0;
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_prescaler);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
int omap_dm_timer_set_int_enable(struct omap_dm_timer *timer,
|
2006-06-27 07:16:12 +08:00
|
|
|
unsigned int value)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
2011-09-20 19:30:26 +08:00
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-20 19:30:24 +08:00
|
|
|
omap_dm_timer_enable(timer);
|
2011-09-17 06:44:20 +08:00
|
|
|
__omap_dm_timer_int_enable(timer, value);
|
2011-09-20 19:30:24 +08:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tier = value;
|
|
|
|
timer->context.twer = value;
|
|
|
|
omap_dm_timer_disable(timer);
|
2011-09-20 19:30:26 +08:00
|
|
|
return 0;
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_int_enable);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2012-07-14 03:03:18 +08:00
|
|
|
/**
|
|
|
|
* omap_dm_timer_set_int_disable - disable timer interrupts
|
|
|
|
* @timer: pointer to timer handle
|
|
|
|
* @mask: bit mask of interrupts to be disabled
|
|
|
|
*
|
|
|
|
* Disables the specified timer interrupts for a timer.
|
|
|
|
*/
|
|
|
|
int omap_dm_timer_set_int_disable(struct omap_dm_timer *timer, u32 mask)
|
|
|
|
{
|
|
|
|
u32 l = mask;
|
|
|
|
|
|
|
|
if (unlikely(!timer))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
omap_dm_timer_enable(timer);
|
|
|
|
|
|
|
|
if (timer->revision == 1)
|
|
|
|
l = __raw_readl(timer->irq_ena) & ~mask;
|
|
|
|
|
|
|
|
__raw_writel(l, timer->irq_dis);
|
|
|
|
l = omap_dm_timer_read_reg(timer, OMAP_TIMER_WAKEUP_EN_REG) & ~mask;
|
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_WAKEUP_EN_REG, l);
|
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tier &= ~mask;
|
|
|
|
timer->context.twer &= ~mask;
|
|
|
|
omap_dm_timer_disable(timer);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_set_int_disable);
|
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
unsigned int omap_dm_timer_read_status(struct omap_dm_timer *timer)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
2006-09-25 17:41:35 +08:00
|
|
|
unsigned int l;
|
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
if (unlikely(!timer || pm_runtime_suspended(&timer->pdev->dev))) {
|
|
|
|
pr_err("%s: timer not available or enabled.\n", __func__);
|
2011-09-20 19:30:24 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-17 06:44:20 +08:00
|
|
|
l = __raw_readl(timer->irq_stat);
|
2006-09-25 17:41:35 +08:00
|
|
|
|
|
|
|
return l;
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_read_status);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
int omap_dm_timer_write_status(struct omap_dm_timer *timer, unsigned int value)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
2011-09-20 19:30:26 +08:00
|
|
|
if (unlikely(!timer || pm_runtime_suspended(&timer->pdev->dev)))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-09-17 06:44:20 +08:00
|
|
|
__omap_dm_timer_write_status(timer, value);
|
2012-10-05 06:01:14 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
return 0;
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_write_status);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
unsigned int omap_dm_timer_read_counter(struct omap_dm_timer *timer)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
2011-09-20 19:30:26 +08:00
|
|
|
if (unlikely(!timer || pm_runtime_suspended(&timer->pdev->dev))) {
|
|
|
|
pr_err("%s: timer not iavailable or enabled.\n", __func__);
|
2011-09-20 19:30:24 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-17 06:44:20 +08:00
|
|
|
return __omap_dm_timer_read_counter(timer, timer->posted);
|
2005-09-08 00:20:26 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_read_counter);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:26 +08:00
|
|
|
int omap_dm_timer_write_counter(struct omap_dm_timer *timer, unsigned int value)
|
2006-06-27 07:16:23 +08:00
|
|
|
{
|
2011-09-20 19:30:26 +08: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 19:30:24 +08:00
|
|
|
}
|
|
|
|
|
2006-09-25 17:41:35 +08:00
|
|
|
omap_dm_timer_write_reg(timer, OMAP_TIMER_COUNTER_REG, value);
|
2011-09-20 19:30:24 +08:00
|
|
|
|
|
|
|
/* Save the context */
|
|
|
|
timer->context.tcrr = value;
|
2011-09-20 19:30:26 +08:00
|
|
|
return 0;
|
2006-06-27 07:16:23 +08:00
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timer_write_counter);
|
2006-06-27 07:16:23 +08:00
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
int omap_dm_timers_active(void)
|
2005-09-08 00:20:26 +08:00
|
|
|
{
|
2011-09-20 19:30:20 +08:00
|
|
|
struct omap_dm_timer *timer;
|
2006-09-25 17:41:42 +08:00
|
|
|
|
2011-09-20 19:30:20 +08:00
|
|
|
list_for_each_entry(timer, &omap_timer_list, node) {
|
2011-09-20 19:30:21 +08:00
|
|
|
if (!timer->reserved)
|
2006-09-25 17:41:42 +08:00
|
|
|
continue;
|
|
|
|
|
2006-06-27 07:16:12 +08:00
|
|
|
if (omap_dm_timer_read_reg(timer, OMAP_TIMER_CTRL_REG) &
|
2006-09-25 17:41:35 +08:00
|
|
|
OMAP_TIMER_CTRL_ST) {
|
2006-06-27 07:16:12 +08:00
|
|
|
return 1;
|
2006-09-25 17:41:35 +08:00
|
|
|
}
|
2006-06-27 07:16:12 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2009-03-24 09:07:46 +08:00
|
|
|
EXPORT_SYMBOL_GPL(omap_dm_timers_active);
|
2005-09-08 00:20:26 +08:00
|
|
|
|
2011-09-20 19:30:19 +08: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 20:39:20 +08:00
|
|
|
struct resource *mem, *irq;
|
|
|
|
struct device *dev = &pdev->dev;
|
2011-09-20 19:30:19 +08:00
|
|
|
struct dmtimer_platform_data *pdata = pdev->dev.platform_data;
|
|
|
|
|
ARM: OMAP: Add DT support for timer driver
In order to add device-tree support to the timer driver the following changes
were made ...
1. Allocate system timers (used for clock-events and clock-source) based upon
timer properties rather than using an hard-coded timer instance ID. To allow
this a new helper function called omap_dmtimer_find_by_property() has been
added for finding a timer with the particular properties in the device-tree
blob. Please note that this is an internal helper function for system timers
only to find a timer in the device-tree blob. This cannot be used by device
drivers, another API has been added for that (see below). Timers that are
allocated for system timers are dynamically disabled at boot time by adding
a status property with the value "disabled" to the timer's device-tree node.
Please note that when allocating system timers we now pass a timer ID and
timer property. The timer ID is only be used for allocating a timer when
booting without device-tree. Once device-tree migration is complete, all
the timer ID references will be removed.
2. System timer resources (memory and interrupts) are directly obtained from
the device-tree timer node when booting with device-tree, so that system
timers are no longer reliant upon the OMAP HWMOD framework to provide these
resources.
3. If DT blob is present, then let device-tree create the timer devices
dynamically.
4. When device-tree is present the "id" field in the platform_device structure
(pdev->id) is initialised to -1 and hence cannot be used to identify a timer
instance. Due to this the following changes were made ...
a). The API omap_dm_timer_request_specific() is not supported when using
device-tree, because it uses the device ID to request a specific timer.
This function will return an error if called when device-tree is present.
Users of this API should use omap_dm_timer_request_by_cap() instead.
b). When removing the DMTIMER driver, the timer "id" was used to identify the
timer instance. The remove function has been modified to use the device
name instead of the "id".
5. When device-tree is present the platform_data structure will be NULL and so
check for this.
6. The OMAP timer device tree binding has the following optional parameters ...
a). ti,timer-alwon --> Timer is in an always-on power domain
b). ti,timer-dsp --> Timer can generate an interrupt to the on-chip DSP
c). ti,timer-pwm --> Timer can generate a PWM output
d). ti,timer-secure --> Timer is reserved on a secure OMAP device
Search for the above parameters and set the appropriate timer attribute
flags.
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
2012-05-14 23:41:37 +08:00
|
|
|
if (!pdata && !dev->of_node) {
|
2012-04-20 20:39:20 +08:00
|
|
|
dev_err(dev, "%s: no platform data.\n", __func__);
|
2011-09-20 19:30:19 +08:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
|
|
|
|
if (unlikely(!irq)) {
|
2012-04-20 20:39:20 +08:00
|
|
|
dev_err(dev, "%s: no IRQ resource.\n", __func__);
|
2011-09-20 19:30:19 +08:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
|
|
if (unlikely(!mem)) {
|
2012-04-20 20:39:20 +08:00
|
|
|
dev_err(dev, "%s: no memory resource.\n", __func__);
|
2011-09-20 19:30:19 +08:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2012-04-20 20:39:20 +08:00
|
|
|
timer = devm_kzalloc(dev, sizeof(struct omap_dm_timer), GFP_KERNEL);
|
2011-09-20 19:30:19 +08:00
|
|
|
if (!timer) {
|
2012-04-20 20:39:20 +08:00
|
|
|
dev_err(dev, "%s: memory alloc failed!\n", __func__);
|
|
|
|
return -ENOMEM;
|
2011-09-20 19:30:19 +08:00
|
|
|
}
|
|
|
|
|
2012-04-20 20:39:20 +08:00
|
|
|
timer->io_base = devm_request_and_ioremap(dev, mem);
|
2011-09-20 19:30:19 +08:00
|
|
|
if (!timer->io_base) {
|
2012-04-20 20:39:20 +08:00
|
|
|
dev_err(dev, "%s: region already claimed.\n", __func__);
|
|
|
|
return -ENOMEM;
|
2011-09-20 19:30:19 +08:00
|
|
|
}
|
|
|
|
|
ARM: OMAP: Add DT support for timer driver
In order to add device-tree support to the timer driver the following changes
were made ...
1. Allocate system timers (used for clock-events and clock-source) based upon
timer properties rather than using an hard-coded timer instance ID. To allow
this a new helper function called omap_dmtimer_find_by_property() has been
added for finding a timer with the particular properties in the device-tree
blob. Please note that this is an internal helper function for system timers
only to find a timer in the device-tree blob. This cannot be used by device
drivers, another API has been added for that (see below). Timers that are
allocated for system timers are dynamically disabled at boot time by adding
a status property with the value "disabled" to the timer's device-tree node.
Please note that when allocating system timers we now pass a timer ID and
timer property. The timer ID is only be used for allocating a timer when
booting without device-tree. Once device-tree migration is complete, all
the timer ID references will be removed.
2. System timer resources (memory and interrupts) are directly obtained from
the device-tree timer node when booting with device-tree, so that system
timers are no longer reliant upon the OMAP HWMOD framework to provide these
resources.
3. If DT blob is present, then let device-tree create the timer devices
dynamically.
4. When device-tree is present the "id" field in the platform_device structure
(pdev->id) is initialised to -1 and hence cannot be used to identify a timer
instance. Due to this the following changes were made ...
a). The API omap_dm_timer_request_specific() is not supported when using
device-tree, because it uses the device ID to request a specific timer.
This function will return an error if called when device-tree is present.
Users of this API should use omap_dm_timer_request_by_cap() instead.
b). When removing the DMTIMER driver, the timer "id" was used to identify the
timer instance. The remove function has been modified to use the device
name instead of the "id".
5. When device-tree is present the platform_data structure will be NULL and so
check for this.
6. The OMAP timer device tree binding has the following optional parameters ...
a). ti,timer-alwon --> Timer is in an always-on power domain
b). ti,timer-dsp --> Timer can generate an interrupt to the on-chip DSP
c). ti,timer-pwm --> Timer can generate a PWM output
d). ti,timer-secure --> Timer is reserved on a secure OMAP device
Search for the above parameters and set the appropriate timer attribute
flags.
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
2012-05-14 23:41:37 +08:00
|
|
|
if (dev->of_node) {
|
|
|
|
if (of_find_property(dev->of_node, "ti,timer-alwon", NULL))
|
|
|
|
timer->capability |= OMAP_TIMER_ALWON;
|
|
|
|
if (of_find_property(dev->of_node, "ti,timer-dsp", NULL))
|
|
|
|
timer->capability |= OMAP_TIMER_HAS_DSP_IRQ;
|
|
|
|
if (of_find_property(dev->of_node, "ti,timer-pwm", NULL))
|
|
|
|
timer->capability |= OMAP_TIMER_HAS_PWM;
|
|
|
|
if (of_find_property(dev->of_node, "ti,timer-secure", NULL))
|
|
|
|
timer->capability |= OMAP_TIMER_SECURE;
|
|
|
|
} else {
|
|
|
|
timer->id = pdev->id;
|
ARM: OMAP3+: Implement timer workaround for errata i103 and i767
Errata Titles:
i103: Delay needed to read some GP timer, WD timer and sync timer
registers after wakeup (OMAP3/4)
i767: Delay needed to read some GP timer registers after wakeup (OMAP5)
Description (i103/i767):
If a General Purpose Timer (GPTimer) is in posted mode
(TSICR [2].POSTED=1), due to internal resynchronizations, values read in
TCRR, TCAR1 and TCAR2 registers right after the timer interface clock
(L4) goes from stopped to active may not return the expected values. The
most common event leading to this situation occurs upon wake up from
idle.
GPTimer non-posted synchronization mode is not impacted by this
limitation.
Workarounds:
1). Disable posted mode
2). Use static dependency between timer clock domain and MPUSS clock
domain
3). Use no-idle mode when the timer is active
Workarounds #2 and #3 are not pratical from a power standpoint and so
workaround #1 has been implemented. Disabling posted mode adds some CPU
overhead for configuring and reading the timers as the CPU has to wait
for accesses to be re-synchronised within the timer. However, disabling
posted mode guarantees correct operation.
Please note that it is safe to use posted mode for timers if the counter
(TCRR) and capture (TCARx) registers will never be read. An example of
this is the clock-event system timer. This is used by the kernel to
schedule events however, the timers counter is never read and capture
registers are not used. Given that the kernel configures this timer
often yet never reads the counter register it is safe to enable posted
mode in this case. Hence, for the timer used for kernel clock-events,
posted mode is enabled by overriding the errata for devices that are
impacted by this defect.
For drivers using the timers that do not read the counter or capture
registers and wish to use posted mode, can override the errata and
enable posted mode by making the following function calls.
__omap_dm_timer_override_errata(timer, OMAP_TIMER_ERRATA_I103_I767);
__omap_dm_timer_enable_posted(timer);
Both dmtimers and watchdogs are impacted by this defect this patch only
implements the workaround for the dmtimer. Currently the watchdog driver
does not read the counter register and so no workaround is necessary.
Posted mode will be disabled for all OMAP2+ devices (including AM33xx)
using a GP timer as a clock-source timer to guarantee correct operation.
This is not necessary for OMAP24xx devices but the default clock-source
timer for OMAP24xx devices is the 32k-sync timer and not the GP timer
and so should not have any impact. This should be re-visited for future
devices if this errata is fixed.
Confirmed with Vaibhav Hiremath that this bug also impacts AM33xx
devices.
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
2012-09-28 01:47:43 +08:00
|
|
|
timer->errata = pdata->timer_errata;
|
ARM: OMAP: Add DT support for timer driver
In order to add device-tree support to the timer driver the following changes
were made ...
1. Allocate system timers (used for clock-events and clock-source) based upon
timer properties rather than using an hard-coded timer instance ID. To allow
this a new helper function called omap_dmtimer_find_by_property() has been
added for finding a timer with the particular properties in the device-tree
blob. Please note that this is an internal helper function for system timers
only to find a timer in the device-tree blob. This cannot be used by device
drivers, another API has been added for that (see below). Timers that are
allocated for system timers are dynamically disabled at boot time by adding
a status property with the value "disabled" to the timer's device-tree node.
Please note that when allocating system timers we now pass a timer ID and
timer property. The timer ID is only be used for allocating a timer when
booting without device-tree. Once device-tree migration is complete, all
the timer ID references will be removed.
2. System timer resources (memory and interrupts) are directly obtained from
the device-tree timer node when booting with device-tree, so that system
timers are no longer reliant upon the OMAP HWMOD framework to provide these
resources.
3. If DT blob is present, then let device-tree create the timer devices
dynamically.
4. When device-tree is present the "id" field in the platform_device structure
(pdev->id) is initialised to -1 and hence cannot be used to identify a timer
instance. Due to this the following changes were made ...
a). The API omap_dm_timer_request_specific() is not supported when using
device-tree, because it uses the device ID to request a specific timer.
This function will return an error if called when device-tree is present.
Users of this API should use omap_dm_timer_request_by_cap() instead.
b). When removing the DMTIMER driver, the timer "id" was used to identify the
timer instance. The remove function has been modified to use the device
name instead of the "id".
5. When device-tree is present the platform_data structure will be NULL and so
check for this.
6. The OMAP timer device tree binding has the following optional parameters ...
a). ti,timer-alwon --> Timer is in an always-on power domain
b). ti,timer-dsp --> Timer can generate an interrupt to the on-chip DSP
c). ti,timer-pwm --> Timer can generate a PWM output
d). ti,timer-secure --> Timer is reserved on a secure OMAP device
Search for the above parameters and set the appropriate timer attribute
flags.
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
2012-05-14 23:41:37 +08:00
|
|
|
timer->capability = pdata->timer_capability;
|
|
|
|
timer->reserved = omap_dm_timer_reserved_systimer(timer->id);
|
2012-11-10 06:54:17 +08:00
|
|
|
timer->get_context_loss_count = pdata->get_context_loss_count;
|
ARM: OMAP: Add DT support for timer driver
In order to add device-tree support to the timer driver the following changes
were made ...
1. Allocate system timers (used for clock-events and clock-source) based upon
timer properties rather than using an hard-coded timer instance ID. To allow
this a new helper function called omap_dmtimer_find_by_property() has been
added for finding a timer with the particular properties in the device-tree
blob. Please note that this is an internal helper function for system timers
only to find a timer in the device-tree blob. This cannot be used by device
drivers, another API has been added for that (see below). Timers that are
allocated for system timers are dynamically disabled at boot time by adding
a status property with the value "disabled" to the timer's device-tree node.
Please note that when allocating system timers we now pass a timer ID and
timer property. The timer ID is only be used for allocating a timer when
booting without device-tree. Once device-tree migration is complete, all
the timer ID references will be removed.
2. System timer resources (memory and interrupts) are directly obtained from
the device-tree timer node when booting with device-tree, so that system
timers are no longer reliant upon the OMAP HWMOD framework to provide these
resources.
3. If DT blob is present, then let device-tree create the timer devices
dynamically.
4. When device-tree is present the "id" field in the platform_device structure
(pdev->id) is initialised to -1 and hence cannot be used to identify a timer
instance. Due to this the following changes were made ...
a). The API omap_dm_timer_request_specific() is not supported when using
device-tree, because it uses the device ID to request a specific timer.
This function will return an error if called when device-tree is present.
Users of this API should use omap_dm_timer_request_by_cap() instead.
b). When removing the DMTIMER driver, the timer "id" was used to identify the
timer instance. The remove function has been modified to use the device
name instead of the "id".
5. When device-tree is present the platform_data structure will be NULL and so
check for this.
6. The OMAP timer device tree binding has the following optional parameters ...
a). ti,timer-alwon --> Timer is in an always-on power domain
b). ti,timer-dsp --> Timer can generate an interrupt to the on-chip DSP
c). ti,timer-pwm --> Timer can generate a PWM output
d). ti,timer-secure --> Timer is reserved on a secure OMAP device
Search for the above parameters and set the appropriate timer attribute
flags.
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
2012-05-14 23:41:37 +08:00
|
|
|
}
|
|
|
|
|
2011-09-20 19:30:19 +08:00
|
|
|
timer->irq = irq->start;
|
|
|
|
timer->pdev = pdev;
|
|
|
|
|
2011-09-20 19:30:21 +08:00
|
|
|
/* Skip pm_runtime_enable for OMAP1 */
|
2012-06-06 01:34:57 +08:00
|
|
|
if (!(timer->capability & OMAP_TIMER_NEEDS_RESET)) {
|
2012-04-20 20:39:20 +08:00
|
|
|
pm_runtime_enable(dev);
|
|
|
|
pm_runtime_irq_safe(dev);
|
2011-09-20 19:30:21 +08:00
|
|
|
}
|
|
|
|
|
2011-09-22 07:38:51 +08:00
|
|
|
if (!timer->reserved) {
|
2012-04-20 20:39:20 +08:00
|
|
|
pm_runtime_get_sync(dev);
|
2011-09-22 07:38:51 +08:00
|
|
|
__omap_dm_timer_init_regs(timer);
|
2012-04-20 20:39:20 +08:00
|
|
|
pm_runtime_put(dev);
|
2011-09-22 07:38:51 +08:00
|
|
|
}
|
|
|
|
|
2011-09-20 19:30:19 +08: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 20:39:20 +08:00
|
|
|
dev_dbg(dev, "Device Probed.\n");
|
2011-09-20 19:30:19 +08: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)
|
ARM: OMAP: Add DT support for timer driver
In order to add device-tree support to the timer driver the following changes
were made ...
1. Allocate system timers (used for clock-events and clock-source) based upon
timer properties rather than using an hard-coded timer instance ID. To allow
this a new helper function called omap_dmtimer_find_by_property() has been
added for finding a timer with the particular properties in the device-tree
blob. Please note that this is an internal helper function for system timers
only to find a timer in the device-tree blob. This cannot be used by device
drivers, another API has been added for that (see below). Timers that are
allocated for system timers are dynamically disabled at boot time by adding
a status property with the value "disabled" to the timer's device-tree node.
Please note that when allocating system timers we now pass a timer ID and
timer property. The timer ID is only be used for allocating a timer when
booting without device-tree. Once device-tree migration is complete, all
the timer ID references will be removed.
2. System timer resources (memory and interrupts) are directly obtained from
the device-tree timer node when booting with device-tree, so that system
timers are no longer reliant upon the OMAP HWMOD framework to provide these
resources.
3. If DT blob is present, then let device-tree create the timer devices
dynamically.
4. When device-tree is present the "id" field in the platform_device structure
(pdev->id) is initialised to -1 and hence cannot be used to identify a timer
instance. Due to this the following changes were made ...
a). The API omap_dm_timer_request_specific() is not supported when using
device-tree, because it uses the device ID to request a specific timer.
This function will return an error if called when device-tree is present.
Users of this API should use omap_dm_timer_request_by_cap() instead.
b). When removing the DMTIMER driver, the timer "id" was used to identify the
timer instance. The remove function has been modified to use the device
name instead of the "id".
5. When device-tree is present the platform_data structure will be NULL and so
check for this.
6. The OMAP timer device tree binding has the following optional parameters ...
a). ti,timer-alwon --> Timer is in an always-on power domain
b). ti,timer-dsp --> Timer can generate an interrupt to the on-chip DSP
c). ti,timer-pwm --> Timer can generate a PWM output
d). ti,timer-secure --> Timer is reserved on a secure OMAP device
Search for the above parameters and set the appropriate timer attribute
flags.
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
2012-05-14 23:41:37 +08:00
|
|
|
if (!strcmp(dev_name(&timer->pdev->dev),
|
|
|
|
dev_name(&pdev->dev))) {
|
2011-09-20 19:30:19 +08:00
|
|
|
list_del(&timer->node);
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
spin_unlock_irqrestore(&dm_timer_lock, flags);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
ARM: OMAP: Add DT support for timer driver
In order to add device-tree support to the timer driver the following changes
were made ...
1. Allocate system timers (used for clock-events and clock-source) based upon
timer properties rather than using an hard-coded timer instance ID. To allow
this a new helper function called omap_dmtimer_find_by_property() has been
added for finding a timer with the particular properties in the device-tree
blob. Please note that this is an internal helper function for system timers
only to find a timer in the device-tree blob. This cannot be used by device
drivers, another API has been added for that (see below). Timers that are
allocated for system timers are dynamically disabled at boot time by adding
a status property with the value "disabled" to the timer's device-tree node.
Please note that when allocating system timers we now pass a timer ID and
timer property. The timer ID is only be used for allocating a timer when
booting without device-tree. Once device-tree migration is complete, all
the timer ID references will be removed.
2. System timer resources (memory and interrupts) are directly obtained from
the device-tree timer node when booting with device-tree, so that system
timers are no longer reliant upon the OMAP HWMOD framework to provide these
resources.
3. If DT blob is present, then let device-tree create the timer devices
dynamically.
4. When device-tree is present the "id" field in the platform_device structure
(pdev->id) is initialised to -1 and hence cannot be used to identify a timer
instance. Due to this the following changes were made ...
a). The API omap_dm_timer_request_specific() is not supported when using
device-tree, because it uses the device ID to request a specific timer.
This function will return an error if called when device-tree is present.
Users of this API should use omap_dm_timer_request_by_cap() instead.
b). When removing the DMTIMER driver, the timer "id" was used to identify the
timer instance. The remove function has been modified to use the device
name instead of the "id".
5. When device-tree is present the platform_data structure will be NULL and so
check for this.
6. The OMAP timer device tree binding has the following optional parameters ...
a). ti,timer-alwon --> Timer is in an always-on power domain
b). ti,timer-dsp --> Timer can generate an interrupt to the on-chip DSP
c). ti,timer-pwm --> Timer can generate a PWM output
d). ti,timer-secure --> Timer is reserved on a secure OMAP device
Search for the above parameters and set the appropriate timer attribute
flags.
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
2012-05-14 23:41:37 +08:00
|
|
|
static const struct of_device_id omap_timer_match[] = {
|
|
|
|
{ .compatible = "ti,omap2-timer", },
|
|
|
|
{},
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, omap_timer_match);
|
|
|
|
|
2011-09-20 19:30:19 +08:00
|
|
|
static struct platform_driver omap_dm_timer_driver = {
|
|
|
|
.probe = omap_dm_timer_probe,
|
2011-10-02 00:42:47 +08:00
|
|
|
.remove = __devexit_p(omap_dm_timer_remove),
|
2011-09-20 19:30:19 +08:00
|
|
|
.driver = {
|
|
|
|
.name = "omap_timer",
|
ARM: OMAP: Add DT support for timer driver
In order to add device-tree support to the timer driver the following changes
were made ...
1. Allocate system timers (used for clock-events and clock-source) based upon
timer properties rather than using an hard-coded timer instance ID. To allow
this a new helper function called omap_dmtimer_find_by_property() has been
added for finding a timer with the particular properties in the device-tree
blob. Please note that this is an internal helper function for system timers
only to find a timer in the device-tree blob. This cannot be used by device
drivers, another API has been added for that (see below). Timers that are
allocated for system timers are dynamically disabled at boot time by adding
a status property with the value "disabled" to the timer's device-tree node.
Please note that when allocating system timers we now pass a timer ID and
timer property. The timer ID is only be used for allocating a timer when
booting without device-tree. Once device-tree migration is complete, all
the timer ID references will be removed.
2. System timer resources (memory and interrupts) are directly obtained from
the device-tree timer node when booting with device-tree, so that system
timers are no longer reliant upon the OMAP HWMOD framework to provide these
resources.
3. If DT blob is present, then let device-tree create the timer devices
dynamically.
4. When device-tree is present the "id" field in the platform_device structure
(pdev->id) is initialised to -1 and hence cannot be used to identify a timer
instance. Due to this the following changes were made ...
a). The API omap_dm_timer_request_specific() is not supported when using
device-tree, because it uses the device ID to request a specific timer.
This function will return an error if called when device-tree is present.
Users of this API should use omap_dm_timer_request_by_cap() instead.
b). When removing the DMTIMER driver, the timer "id" was used to identify the
timer instance. The remove function has been modified to use the device
name instead of the "id".
5. When device-tree is present the platform_data structure will be NULL and so
check for this.
6. The OMAP timer device tree binding has the following optional parameters ...
a). ti,timer-alwon --> Timer is in an always-on power domain
b). ti,timer-dsp --> Timer can generate an interrupt to the on-chip DSP
c). ti,timer-pwm --> Timer can generate a PWM output
d). ti,timer-secure --> Timer is reserved on a secure OMAP device
Search for the above parameters and set the appropriate timer attribute
flags.
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
2012-05-14 23:41:37 +08:00
|
|
|
.of_match_table = of_match_ptr(omap_timer_match),
|
2011-09-20 19:30:19 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
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");
|