blob: 129efac6fa699b2335fb9e7e9388e1524a07a106 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Adrian Alonso69535742015-09-02 13:54:16 -05002/*
3 * Copyright (C) 2015 Freescale Semiconductor, Inc.
4 *
Adrian Alonso69535742015-09-02 13:54:16 -05005 * The file use ls102xa/timer.c as a reference.
6 */
7
8#include <common.h>
Simon Glass691d7192020-05-10 11:40:02 -06009#include <init.h>
Simon Glass6887c5b2019-11-14 12:57:26 -070010#include <time.h>
Simon Glass401d1c42020-10-30 21:38:53 -060011#include <asm/global_data.h>
Adrian Alonso69535742015-09-02 13:54:16 -050012#include <asm/io.h>
13#include <div64.h>
14#include <asm/arch/imx-regs.h>
15#include <asm/arch/sys_proto.h>
Stefano Babic552a8482017-06-29 10:16:06 +020016#include <asm/mach-imx/syscounter.h>
Simon Glassc05ed002020-05-10 11:40:11 -060017#include <linux/delay.h>
Adrian Alonso69535742015-09-02 13:54:16 -050018
19DECLARE_GLOBAL_DATA_PTR;
20
21/*
22 * This function is intended for SHORT delays only.
23 * It will overflow at around 10 seconds @ 400MHz,
24 * or 20 seconds @ 200MHz.
25 */
26unsigned long usec2ticks(unsigned long usec)
27{
28 ulong ticks;
29
30 if (usec < 1000)
31 ticks = ((usec * (get_tbclk()/1000)) + 500) / 1000;
32 else
33 ticks = ((usec / 10) * (get_tbclk() / 100000));
34
35 return ticks;
36}
37
38static inline unsigned long long tick_to_time(unsigned long long tick)
39{
40 unsigned long freq;
41
42 asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r" (freq));
43
44 tick *= CONFIG_SYS_HZ;
45 do_div(tick, freq);
46
47 return tick;
48}
49
50static inline unsigned long long us_to_tick(unsigned long long usec)
51{
52 unsigned long freq;
53
54 asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r" (freq));
55
56 usec = usec * freq + 999999;
57 do_div(usec, 1000000);
58
59 return usec;
60}
61
Tom Rinia2ac2b92021-08-27 21:18:30 -040062#if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT)
Adrian Alonso69535742015-09-02 13:54:16 -050063int timer_init(void)
64{
65 struct sctr_regs *sctr = (struct sctr_regs *)SCTR_BASE_ADDR;
66 unsigned long val, freq;
67
Tom Rini3cdd6302022-12-04 10:13:45 -050068 freq = CFG_SC_TIMER_CLK;
Yasushi SHOJI314d9f72018-03-08 13:21:10 +090069 asm volatile("mcr p15, 0, %0, c14, c0, 0" : : "r" (freq));
Adrian Alonso69535742015-09-02 13:54:16 -050070
71 writel(freq, &sctr->cntfid0);
72
73 /* Enable system counter */
74 val = readl(&sctr->cntcr);
75 val &= ~(SC_CNTCR_FREQ0 | SC_CNTCR_FREQ1);
76 val |= SC_CNTCR_FREQ0 | SC_CNTCR_ENABLE | SC_CNTCR_HDBG;
77 writel(val, &sctr->cntcr);
78
79 gd->arch.tbl = 0;
80 gd->arch.tbu = 0;
81
Jun Nie65147872022-07-21 18:30:05 +080082 gd->arch.timer_rate_hz = freq;
Adrian Alonso69535742015-09-02 13:54:16 -050083 return 0;
84}
Rui Miguel Silvabe277c32018-09-05 11:56:05 +010085#endif
Adrian Alonso69535742015-09-02 13:54:16 -050086
87unsigned long long get_ticks(void)
88{
89 unsigned long long now;
90
Yasushi SHOJI314d9f72018-03-08 13:21:10 +090091 asm volatile("mrrc p15, 0, %Q0, %R0, c14" : "=r" (now));
Adrian Alonso69535742015-09-02 13:54:16 -050092
93 gd->arch.tbl = (unsigned long)(now & 0xffffffff);
94 gd->arch.tbu = (unsigned long)(now >> 32);
95
96 return now;
97}
98
Adrian Alonso69535742015-09-02 13:54:16 -050099ulong get_timer(ulong base)
100{
Patrick Delaunay6180ea72018-10-05 11:33:52 +0200101 return tick_to_time(get_ticks()) - base;
Adrian Alonso69535742015-09-02 13:54:16 -0500102}
103
Jun Nie65147872022-07-21 18:30:05 +0800104ulong timer_get_boot_us(void)
105{
106 if (!gd->arch.timer_rate_hz)
107 timer_init();
108
109 return tick_to_time(get_ticks());
110}
111
Adrian Alonso69535742015-09-02 13:54:16 -0500112void __udelay(unsigned long usec)
113{
114 unsigned long long tmp;
115 ulong tmo;
116
117 tmo = us_to_tick(usec);
118 tmp = get_ticks() + tmo; /* get current timestamp */
119
120 while (get_ticks() < tmp) /* loop till event */
121 /*NOP*/;
122}
123
124/*
125 * This function is derived from PowerPC code (timebase clock frequency).
126 * On ARM it returns the number of timer ticks per second.
127 */
128ulong get_tbclk(void)
129{
130 unsigned long freq;
131
132 asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r" (freq));
133
134 return freq;
135}