blob: 3960bbb08a84a3003255972937bbaf05e1e24d1b [file] [log] [blame]
Michal Simek76316a32007-03-11 13:42:58 +01001/*
2 * (C) Copyright 2007 Michal Simek
3 *
4 * Michal SIMEK <monstr@monstr.eu>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Michal Simek76316a32007-03-11 13:42:58 +01007 */
8
9#include <common.h>
10#include <asm/microblaze_timer.h>
Michal Simek42efed62007-05-07 17:22:25 +020011#include <asm/microblaze_intc.h>
Michal Simek76316a32007-03-11 13:42:58 +010012
13volatile int timestamp = 0;
Michal Simekbcbb0462012-06-29 13:46:54 +020014microblaze_timer_t *tmr;
Michal Simek76316a32007-03-11 13:42:58 +010015
Michal Simek76316a32007-03-11 13:42:58 +010016ulong get_timer (ulong base)
17{
Michal Simekbcbb0462012-06-29 13:46:54 +020018 if (tmr)
19 return timestamp - base;
20 return timestamp++ - base;
Michal Simek76316a32007-03-11 13:42:58 +010021}
22
Michal Simek779bf422012-06-29 13:42:28 +020023void __udelay(unsigned long usec)
24{
Michal Simekbcbb0462012-06-29 13:46:54 +020025 u32 i;
Michal Simek779bf422012-06-29 13:42:28 +020026
Michal Simekbcbb0462012-06-29 13:46:54 +020027 if (tmr) {
28 i = get_timer(0);
29 while ((get_timer(0) - i) < (usec / 1000))
30 ;
31 } else {
32 for (i = 0; i < (usec * XILINX_CLOCK_FREQ / 10000000); i++)
33 ;
34 }
Michal Simek779bf422012-06-29 13:42:28 +020035}
Michal Simek779bf422012-06-29 13:42:28 +020036
Michal Simek9d242742014-01-21 07:30:37 +010037#ifndef CONFIG_SPL_BUILD
Michal Simekbcbb0462012-06-29 13:46:54 +020038static void timer_isr(void *arg)
Michal Simek76316a32007-03-11 13:42:58 +010039{
40 timestamp++;
41 tmr->control = tmr->control | TIMER_INTERRUPT;
42}
43
Michal Simek5bbcb6c2010-04-16 11:37:41 +020044int timer_init (void)
Michal Simek76316a32007-03-11 13:42:58 +010045{
Michal Simekbcbb0462012-06-29 13:46:54 +020046 int irq = -1;
47 u32 preload = 0;
48 u32 ret = 0;
49
50#if defined(CONFIG_SYS_TIMER_0_ADDR) && defined(CONFIG_SYS_INTC_0_NUM)
51 preload = XILINX_CLOCK_FREQ / CONFIG_SYS_HZ;
52 irq = CONFIG_SYS_TIMER_0_IRQ;
53 tmr = (microblaze_timer_t *) (CONFIG_SYS_TIMER_0_ADDR);
54#endif
55
56 if (tmr && preload && irq >= 0) {
57 tmr->loadreg = preload;
58 tmr->control = TIMER_INTERRUPT | TIMER_RESET;
59 tmr->control = TIMER_ENABLE | TIMER_ENABLE_INTR |\
60 TIMER_RELOAD | TIMER_DOWN_COUNT;
61 timestamp = 0;
62 ret = install_interrupt_handler (irq, timer_isr, (void *)tmr);
63 if (ret)
64 tmr = NULL;
65 }
Michal Simekbcbb0462012-06-29 13:46:54 +020066 /* No problem if timer is not found/initialized */
Michal Simek5bbcb6c2010-04-16 11:37:41 +020067 return 0;
Michal Simek76316a32007-03-11 13:42:58 +010068}
Michal Simek9d242742014-01-21 07:30:37 +010069#else
70int timer_init(void)
71{
72 return 0;
73}
74#endif
Stephan Linzb9f0b732012-02-22 22:39:57 +010075
76/*
77 * This function is derived from PowerPC code (read timebase as long long).
78 * On Microblaze it just returns the timer value.
79 */
80unsigned long long get_ticks(void)
81{
82 return get_timer(0);
83}
84
85/*
86 * This function is derived from PowerPC code (timebase clock frequency).
87 * On Microblaze it returns the number of timer ticks per second.
88 */
89ulong get_tbclk(void)
90{
91 return CONFIG_SYS_HZ;
92}