blob: 835b2eee3b8022d6b40f452be3d495915c5bd373 [file] [log] [blame]
/*
* Copyright (c) 2016, Intel Corporation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the Intel Corporation nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON 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.
*
* Author: Liam Girdwood <liam.r.girdwood@linux.intel.com>
*
* Baytrail external timer control.
*/
#include <platform/timer.h>
#include <platform/shim.h>
#include <platform/interrupt.h>
#include <sof/debug.h>
#include <sof/audio/component.h>
#include <stdint.h>
struct timer_data {
void (*handler2)(void *arg);
void *arg2;
};
static struct timer_data xtimer[1] = {};
static void platform_timer_64_handler(void *arg)
{
struct timer *timer = arg;
struct timer_data *tdata = timer->timer_data;
uint32_t timeout;
/* get timeout value - will tell us timeout reason */
timeout = shim_read(SHIM_EXT_TIMER_CNTLL);
/* we don't use the timer clear bit as we only need to clear the ISR */
shim_write(SHIM_PISR, SHIM_PISR_EXT_TIMER);
/* is this a 32 bit rollover ? */
if (timeout == 1) {
/* roll over the timer */
timer->hitime++;
} else {
/* no roll over, run the handler */
tdata->handler2(tdata->arg2);
}
/* get next timeout value */
if (timer->hitimeout == timer->hitime) {
/* timeout is in this 32 bit period */
timeout = timer->lowtimeout;
} else {
/* timeout is in another 32 bit period */
timeout = 1;
}
/* set new value and run */
shim_write(SHIM_EXT_TIMER_CNTLH, SHIM_EXT_TIMER_RUN);
shim_write(SHIM_EXT_TIMER_CNTLL, timeout);
}
void platform_timer_start(struct timer *timer)
{
/* run timer */
shim_write(SHIM_EXT_TIMER_CNTLH, SHIM_EXT_TIMER_RUN);
shim_write(SHIM_EXT_TIMER_CNTLL, 1);
}
/* this seems to stop rebooting with RTD3 ???? */
void platform_timer_stop(struct timer *timer)
{
/* run timer */
shim_write(SHIM_EXT_TIMER_CNTLL, 0);
shim_write(SHIM_EXT_TIMER_CNTLH, SHIM_EXT_TIMER_CLEAR);
}
int platform_timer_set(struct timer *timer, uint64_t ticks)
{
uint32_t time = 1;
uint32_t hitimeout = ticks >> 32;
uint32_t flags;
/* a tick value of 0 will not generate an IRQ */
/* value of 1 represents rollover */
if ((ticks & 0xffffffff) < 0x2)
ticks += 2;
flags = arch_interrupt_global_disable();
/* same hi 64 bit context as ticks ? */
if (hitimeout < timer->hitime) {
/* cant be in the past */
arch_interrupt_global_enable(flags);
return -EINVAL;
} else {
/* set for checking at next timeout */
time = ticks;
timer->hitimeout = hitimeout;
timer->lowtimeout = ticks;
}
/* set new value and run */
shim_write(SHIM_EXT_TIMER_CNTLH, SHIM_EXT_TIMER_RUN);
shim_write(SHIM_EXT_TIMER_CNTLL, time);
arch_interrupt_global_enable(flags);
return 0;
}
void platform_timer_clear(struct timer *timer)
{
/* we don't use the timer clear bit as we only need to clear the ISR */
shim_write(SHIM_PISR, SHIM_PISR_EXT_TIMER);
}
uint64_t platform_timer_get(struct timer *timer)
{
uint64_t time;
uint32_t flags;
uint32_t low;
uint32_t high;
flags = arch_interrupt_global_disable();
/* read low 32 bits */
low = shim_read(SHIM_EXT_TIMER_STAT);
/* check and see whether 32bit IRQ is pending for timer */
if (arch_interrupt_get_status() & IRQ_MASK_EXT_TIMER &&
shim_read(SHIM_EXT_TIMER_CNTLL) == 1) {
/* yes, overflow has occurred but handler has not run */
high = timer->hitime + 1;
} else {
/* no overflow */
high = timer->hitime;
}
time = ((uint64_t)high << 32) | low;
arch_interrupt_global_enable(flags);
return time;
}
/* get timestamp for host stream DMA position */
void platform_host_timestamp(struct comp_dev *host,
struct sof_ipc_stream_posn *posn)
{
int err;
/* get host position */
err = comp_position(host, posn);
if (err == 0)
posn->flags |= SOF_TIME_HOST_VALID | SOF_TIME_HOST_64;
}
/* get timestamp for DAI stream DMA position */
void platform_dai_timestamp(struct comp_dev *dai,
struct sof_ipc_stream_posn *posn)
{
int err;
/* get DAI position */
err = comp_position(dai, posn);
if (err == 0)
posn->flags |= SOF_TIME_DAI_VALID;
/* get SSP wallclock - DAI sets this to stream start value */
posn->wallclock = platform_timer_get(platform_timer) - posn->wallclock;
posn->flags |= SOF_TIME_WALL_VALID | SOF_TIME_WALL_64;
}
/* get current wallclock for component */
void platform_dai_wallclock(struct comp_dev *dai, uint64_t *wallclock)
{
/* only 1 wallclock on BYT */
*wallclock = platform_timer_get(platform_timer);
}
static int platform_timer_register(struct timer *timer,
void(*handler)(void *arg), void *arg)
{
struct timer_data *tdata = &xtimer[0];
uint32_t flags;
int ret;
flags = arch_interrupt_global_disable();
tdata->handler2 = handler;
tdata->arg2 = arg;
timer->timer_data = tdata;
timer->hitime = 0;
timer->hitimeout = 0;
ret = arch_interrupt_register(timer->id, platform_timer_64_handler, timer);
arch_interrupt_global_enable(flags);
return ret;
}
int timer_register(struct timer *timer, void(*handler)(void *arg), void *arg)
{
switch (timer->id) {
case TIMER0:
case TIMER1:
case TIMER2:
return arch_timer_register(timer, handler, arg);
case TIMER3:
return platform_timer_register(timer, handler, arg);
default:
return -EINVAL;
}
}