blob: 1b4617311c577f581d0c3eeadfd232959b812950 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Michal Simek76316a32007-03-11 13:42:58 +01002/*
3 * (C) Copyright 2007 Michal Simek
4 *
5 * Michal SIMEK <monstr@monstr.eu>
Michal Simek76316a32007-03-11 13:42:58 +01006 */
7
8#include <common.h>
Michal Simek9aa65ca2016-02-15 12:10:32 +01009#include <fdtdec.h>
Simon Glass691d7192020-05-10 11:40:02 -060010#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Simon Glass10453152019-11-14 12:57:30 -070012#include <time.h>
Michal Simek76316a32007-03-11 13:42:58 +010013#include <asm/microblaze_timer.h>
Michal Simek42efed62007-05-07 17:22:25 +020014#include <asm/microblaze_intc.h>
Simon Glassc05ed002020-05-10 11:40:11 -060015#include <linux/delay.h>
Michal Simek76316a32007-03-11 13:42:58 +010016
Michal Simek9aa65ca2016-02-15 12:10:32 +010017DECLARE_GLOBAL_DATA_PTR;
18
Michal Simek76316a32007-03-11 13:42:58 +010019volatile int timestamp = 0;
Michal Simekbcbb0462012-06-29 13:46:54 +020020microblaze_timer_t *tmr;
Michal Simek76316a32007-03-11 13:42:58 +010021
Michal Simek76316a32007-03-11 13:42:58 +010022ulong get_timer (ulong base)
23{
Michal Simekbcbb0462012-06-29 13:46:54 +020024 if (tmr)
25 return timestamp - base;
26 return timestamp++ - base;
Michal Simek76316a32007-03-11 13:42:58 +010027}
28
Michal Simek779bf422012-06-29 13:42:28 +020029void __udelay(unsigned long usec)
30{
Michal Simekbcbb0462012-06-29 13:46:54 +020031 u32 i;
Michal Simek779bf422012-06-29 13:42:28 +020032
Michal Simekbcbb0462012-06-29 13:46:54 +020033 if (tmr) {
34 i = get_timer(0);
35 while ((get_timer(0) - i) < (usec / 1000))
36 ;
Michal Simekbcbb0462012-06-29 13:46:54 +020037 }
Michal Simek779bf422012-06-29 13:42:28 +020038}
Michal Simek779bf422012-06-29 13:42:28 +020039
Michal Simek9d242742014-01-21 07:30:37 +010040#ifndef CONFIG_SPL_BUILD
Michal Simekbcbb0462012-06-29 13:46:54 +020041static void timer_isr(void *arg)
Michal Simek76316a32007-03-11 13:42:58 +010042{
43 timestamp++;
44 tmr->control = tmr->control | TIMER_INTERRUPT;
45}
46
Michal Simek5bbcb6c2010-04-16 11:37:41 +020047int timer_init (void)
Michal Simek76316a32007-03-11 13:42:58 +010048{
Michal Simekbcbb0462012-06-29 13:46:54 +020049 int irq = -1;
50 u32 preload = 0;
51 u32 ret = 0;
Michal Simek9aa65ca2016-02-15 12:10:32 +010052 const void *blob = gd->fdt_blob;
53 int node = 0;
54 u32 cell[2];
55
56 debug("TIMER: Initialization\n");
57
Michal Simek35670662018-07-11 14:08:26 +020058 /* Do not init before relocation */
59 if (!(gd->flags & GD_FLG_RELOC))
60 return 0;
61
Michal Simek9aa65ca2016-02-15 12:10:32 +010062 node = fdt_node_offset_by_compatible(blob, node,
63 "xlnx,xps-timer-1.00.a");
64 if (node != -1) {
65 fdt_addr_t base = fdtdec_get_addr(blob, node, "reg");
66 if (base == FDT_ADDR_T_NONE)
67 return -1;
68
69 debug("TIMER: Base addr %lx\n", base);
70 tmr = (microblaze_timer_t *)base;
71
72 ret = fdtdec_get_int_array(blob, node, "interrupts",
73 cell, ARRAY_SIZE(cell));
74 if (ret)
75 return ret;
76
77 irq = cell[0];
78 debug("TIMER: IRQ %x\n", irq);
79
80 preload = fdtdec_get_int(blob, node, "clock-frequency", 0);
81 preload /= CONFIG_SYS_HZ;
82 } else {
83 return node;
84 }
85
Michal Simekbcbb0462012-06-29 13:46:54 +020086 if (tmr && preload && irq >= 0) {
87 tmr->loadreg = preload;
88 tmr->control = TIMER_INTERRUPT | TIMER_RESET;
89 tmr->control = TIMER_ENABLE | TIMER_ENABLE_INTR |\
90 TIMER_RELOAD | TIMER_DOWN_COUNT;
91 timestamp = 0;
92 ret = install_interrupt_handler (irq, timer_isr, (void *)tmr);
93 if (ret)
94 tmr = NULL;
95 }
Michal Simekbcbb0462012-06-29 13:46:54 +020096 /* No problem if timer is not found/initialized */
Michal Simek5bbcb6c2010-04-16 11:37:41 +020097 return 0;
Michal Simek76316a32007-03-11 13:42:58 +010098}
Michal Simek9d242742014-01-21 07:30:37 +010099#else
100int timer_init(void)
101{
102 return 0;
103}
104#endif
Stephan Linzb9f0b732012-02-22 22:39:57 +0100105
106/*
107 * This function is derived from PowerPC code (read timebase as long long).
108 * On Microblaze it just returns the timer value.
109 */
110unsigned long long get_ticks(void)
111{
112 return get_timer(0);
113}
114
115/*
116 * This function is derived from PowerPC code (timebase clock frequency).
117 * On Microblaze it returns the number of timer ticks per second.
118 */
119ulong get_tbclk(void)
120{
121 return CONFIG_SYS_HZ;
122}