2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2007-08-10 18:26:18 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2003
|
|
|
|
* Texas Instruments <www.ti.com>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Marius Groeger <mgroeger@sysgo.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Alex Zuepke <azu@sysgo.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002-2004
|
2009-05-13 08:54:10 +00:00
|
|
|
* Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
|
2007-08-10 18:26:18 +00:00
|
|
|
*
|
|
|
|
* (C) Copyright 2004
|
|
|
|
* Philippe Robin, ARM Ltd. <philippe.robin@arm.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2019-11-14 19:57:30 +00:00
|
|
|
#include <time.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2009-11-12 16:02:17 +00:00
|
|
|
#include <asm/io.h>
|
2011-09-14 19:44:00 +00:00
|
|
|
#include <asm/arch/timer_defs.h>
|
2011-12-09 15:54:01 +00:00
|
|
|
#include <div64.h>
|
2020-05-10 17:40:11 +00:00
|
|
|
#include <linux/delay.h>
|
2007-08-10 18:26:18 +00:00
|
|
|
|
2010-12-11 15:46:46 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2009-11-12 16:02:17 +00:00
|
|
|
static struct davinci_timer * const timer =
|
|
|
|
(struct davinci_timer *)CONFIG_SYS_TIMERBASE;
|
2007-08-10 18:26:18 +00:00
|
|
|
|
2010-12-11 15:46:46 +00:00
|
|
|
#define TIMER_LOAD_VAL 0xffffffff
|
2008-02-01 16:50:24 +00:00
|
|
|
|
2010-12-11 15:46:46 +00:00
|
|
|
#define TIM_CLK_DIV 16
|
2007-08-10 18:26:18 +00:00
|
|
|
|
|
|
|
int timer_init(void)
|
|
|
|
{
|
|
|
|
/* We are using timer34 in unchained 32-bit mode, full speed */
|
2009-11-12 16:02:17 +00:00
|
|
|
writel(0x0, &timer->tcr);
|
|
|
|
writel(0x0, &timer->tgcr);
|
|
|
|
writel(0x06 | ((TIM_CLK_DIV - 1) << 8), &timer->tgcr);
|
|
|
|
writel(0x0, &timer->tim34);
|
|
|
|
writel(TIMER_LOAD_VAL, &timer->prd34);
|
|
|
|
writel(2 << 22, &timer->tcr);
|
2012-12-13 20:48:32 +00:00
|
|
|
gd->arch.timer_rate_hz = CONFIG_SYS_HZ_CLOCK / TIM_CLK_DIV;
|
2012-12-13 20:48:36 +00:00
|
|
|
gd->arch.timer_reset_value = 0;
|
2007-08-10 18:26:18 +00:00
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2010-12-11 15:46:46 +00:00
|
|
|
/*
|
|
|
|
* Get the current 64 bit timer tick count
|
|
|
|
*/
|
|
|
|
unsigned long long get_ticks(void)
|
2007-08-10 18:26:18 +00:00
|
|
|
{
|
2010-12-11 15:46:46 +00:00
|
|
|
unsigned long now = readl(&timer->tim34);
|
|
|
|
|
|
|
|
/* increment tbu if tbl has rolled over */
|
2012-12-13 20:48:34 +00:00
|
|
|
if (now < gd->arch.tbl)
|
2012-12-13 20:48:33 +00:00
|
|
|
gd->arch.tbu++;
|
2012-12-13 20:48:34 +00:00
|
|
|
gd->arch.tbl = now;
|
2010-12-11 15:46:46 +00:00
|
|
|
|
2012-12-13 20:48:34 +00:00
|
|
|
return (((unsigned long long)gd->arch.tbu) << 32) | gd->arch.tbl;
|
2007-08-10 18:26:18 +00:00
|
|
|
}
|
|
|
|
|
2008-03-26 08:53:29 +00:00
|
|
|
ulong get_timer(ulong base)
|
|
|
|
{
|
2010-12-11 15:46:46 +00:00
|
|
|
unsigned long long timer_diff;
|
2008-03-26 08:53:29 +00:00
|
|
|
|
2012-12-13 20:48:36 +00:00
|
|
|
timer_diff = get_ticks() - gd->arch.timer_reset_value;
|
2010-12-11 15:46:46 +00:00
|
|
|
|
2012-12-13 20:48:32 +00:00
|
|
|
return lldiv(timer_diff,
|
|
|
|
(gd->arch.timer_rate_hz / CONFIG_SYS_HZ)) - base;
|
2007-08-10 18:26:18 +00:00
|
|
|
}
|
|
|
|
|
2009-11-24 13:09:21 +00:00
|
|
|
void __udelay(unsigned long usec)
|
2007-08-10 18:26:18 +00:00
|
|
|
{
|
2010-12-11 15:46:46 +00:00
|
|
|
unsigned long long endtime;
|
2007-08-10 18:26:18 +00:00
|
|
|
|
2012-12-13 20:48:32 +00:00
|
|
|
endtime = lldiv((unsigned long long)usec * gd->arch.timer_rate_hz,
|
2011-12-09 15:54:01 +00:00
|
|
|
1000000UL);
|
2010-12-11 15:46:46 +00:00
|
|
|
endtime += get_ticks();
|
2007-08-10 18:26:18 +00:00
|
|
|
|
2010-12-11 15:46:46 +00:00
|
|
|
while (get_ticks() < endtime)
|
|
|
|
;
|
2007-08-10 18:26:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is derived from PowerPC code (timebase clock frequency).
|
|
|
|
* On ARM it returns the number of timer ticks per second.
|
|
|
|
*/
|
|
|
|
ulong get_tbclk(void)
|
|
|
|
{
|
2012-12-13 20:48:32 +00:00
|
|
|
return gd->arch.timer_rate_hz;
|
2007-08-10 18:26:18 +00:00
|
|
|
}
|
2011-09-14 19:44:02 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_HW_WATCHDOG
|
|
|
|
static struct davinci_timer * const wdttimer =
|
|
|
|
(struct davinci_timer *)CONFIG_SYS_WDTTIMERBASE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* See prufw2.pdf for using Timer as a WDT
|
|
|
|
*/
|
|
|
|
void davinci_hw_watchdog_enable(void)
|
|
|
|
{
|
|
|
|
writel(0x0, &wdttimer->tcr);
|
|
|
|
writel(0x0, &wdttimer->tgcr);
|
|
|
|
/* TIMMODE = 2h */
|
|
|
|
writel(0x08 | 0x03 | ((TIM_CLK_DIV - 1) << 8), &wdttimer->tgcr);
|
|
|
|
writel(CONFIG_SYS_WDT_PERIOD_LOW, &wdttimer->prd12);
|
|
|
|
writel(CONFIG_SYS_WDT_PERIOD_HIGH, &wdttimer->prd34);
|
|
|
|
writel(2 << 22, &wdttimer->tcr);
|
|
|
|
writel(0x0, &wdttimer->tim12);
|
|
|
|
writel(0x0, &wdttimer->tim34);
|
|
|
|
/* set WDEN bit, WDKEY 0xa5c6 */
|
|
|
|
writel(0xa5c64000, &wdttimer->wdtcr);
|
|
|
|
/* clear counter register */
|
|
|
|
writel(0xda7e4000, &wdttimer->wdtcr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void davinci_hw_watchdog_reset(void)
|
|
|
|
{
|
|
|
|
writel(0xa5c64000, &wdttimer->wdtcr);
|
|
|
|
writel(0xda7e4000, &wdttimer->wdtcr);
|
|
|
|
}
|
|
|
|
#endif
|