blob: 3a02c384934cf58c37eff989cc796f83f044254d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Chris Zankelc978b522016-08-10 18:36:44 +03002/*
3 * (C) Copyright 2008 - 2013 Tensilica Inc.
Chris Zankelc978b522016-08-10 18:36:44 +03004 */
5
6#include <common.h>
Simon Glass10453152019-11-14 12:57:30 -07007#include <time.h>
Chris Zankelc978b522016-08-10 18:36:44 +03008#include <asm/global_data.h>
Simon Glassc05ed002020-05-10 11:40:11 -06009#include <linux/delay.h>
Chris Zankelc978b522016-08-10 18:36:44 +030010#include <linux/stringify.h>
11
12DECLARE_GLOBAL_DATA_PTR;
13
14#if XCHAL_HAVE_CCOUNT
15static ulong get_ccount(void)
16{
17 ulong ccount;
18 asm volatile ("rsr %0,"__stringify(CCOUNT) : "=a" (ccount));
19 return ccount;
20}
21#else
22static ulong fake_ccount;
23#define get_ccount() fake_ccount
24#endif
25
26static void delay_cycles(unsigned cycles)
27{
28#if XCHAL_HAVE_CCOUNT
29 unsigned expiry = get_ccount() + cycles;
30 while ((signed)(expiry - get_ccount()) > 0)
31 ;
32#else
33#warning "Without Xtensa timer option, timing will not be accurate."
34
35 /*
36 * Approximate the cycle count by a loop iteration count.
37 * This is highly dependent on config and optimization.
38 */
39
40 volatile unsigned i;
41 for (i = cycles >> 4U; i > 0; --i)
42 ;
43 fake_ccount += cycles;
44#endif
45}
46
47/*
48 * Delay (busy-wait) for a number of microseconds.
49 */
50
51void __udelay(unsigned long usec)
52{
53 ulong lo, hi, i;
54 ulong mhz = CONFIG_SYS_CLK_FREQ / 1000000;
55
56 /* Scale to support full 32-bit usec range */
57
58 lo = usec & ((1<<22)-1);
59 hi = usec >> 22UL;
60 for (i = 0; i < hi; ++i)
61 delay_cycles(mhz << 22);
62 delay_cycles(mhz * lo);
63}
64
65
66/*
67 * Return the elapsed time (ticks) since 'base'.
68 */
69
70ulong get_timer(ulong base)
71{
72 /* Don't tie up a timer; use cycle counter if available (or fake it) */
73
74#if XCHAL_HAVE_CCOUNT
75 register ulong ccount;
76 __asm__ volatile ("rsr %0, CCOUNT" : "=a"(ccount));
77 return ccount / (CONFIG_SYS_CLK_FREQ / CONFIG_SYS_HZ) - base;
78#else
79 /*
80 * Add at least the overhead of this call (in cycles).
81 * Avoids hanging in case caller doesn't use udelay().
82 * Note that functions that don't call udelay() (such as
83 * the "sleep" command) will not get a significant delay
84 * because there is no time reference.
85 */
86
87 fake_ccount += 20;
88 return fake_ccount / (CONFIG_SYS_CLK_FREQ / CONFIG_SYS_HZ) - base;
89#endif
90}
91
92
93/*
94 * This function is derived from ARM/PowerPC code (read timebase as long long).
95 * On Xtensa it just returns the timer value.
96 */
97unsigned long long get_ticks(void)
98{
99 return get_timer(0);
100}
101
102/*
103 * This function is derived from ARM/PowerPC code (timebase clock frequency).
104 * On Xtensa it returns the number of timer ticks per second.
105 */
106ulong get_tbclk(void)
107{
Masahiro Yamada63a75782016-09-06 22:17:38 +0900108 return CONFIG_SYS_HZ;
Chris Zankelc978b522016-08-10 18:36:44 +0300109}
110
111#if XCHAL_HAVE_CCOUNT
112unsigned long timer_get_us(void)
113{
114 unsigned long ccount;
115
116 __asm__ volatile ("rsr %0, CCOUNT" : "=a"(ccount));
117 return ccount / (CONFIG_SYS_CLK_FREQ / 1000000);
118}
119#endif