blob: 8845e07d0e8bb0c1ca3d5c9244f80fc399398047 [file] [log] [blame]
Michal Simek952d5142007-03-11 13:42:58 +01001/*
2 * (C) Copyright 2007 Michal Simek
3 *
4 * Michal SIMEK <monstr@monstr.eu>
5 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Michal Simek952d5142007-03-11 13:42:58 +01007 */
8
9#include <common.h>
Michal Simekcf848852016-02-15 12:10:32 +010010#include <fdtdec.h>
Michal Simek952d5142007-03-11 13:42:58 +010011#include <asm/microblaze_timer.h>
Michal Simek77a1e242007-05-07 17:22:25 +020012#include <asm/microblaze_intc.h>
Michal Simek952d5142007-03-11 13:42:58 +010013
Michal Simekcf848852016-02-15 12:10:32 +010014DECLARE_GLOBAL_DATA_PTR;
15
Michal Simek952d5142007-03-11 13:42:58 +010016volatile int timestamp = 0;
Michal Simek06ac6512012-06-29 13:46:54 +020017microblaze_timer_t *tmr;
Michal Simek952d5142007-03-11 13:42:58 +010018
Michal Simek952d5142007-03-11 13:42:58 +010019ulong get_timer (ulong base)
20{
Michal Simek06ac6512012-06-29 13:46:54 +020021 if (tmr)
22 return timestamp - base;
23 return timestamp++ - base;
Michal Simek952d5142007-03-11 13:42:58 +010024}
25
Michal Simek64f96402012-06-29 13:42:28 +020026void __udelay(unsigned long usec)
27{
Michal Simek06ac6512012-06-29 13:46:54 +020028 u32 i;
Michal Simek64f96402012-06-29 13:42:28 +020029
Michal Simek06ac6512012-06-29 13:46:54 +020030 if (tmr) {
31 i = get_timer(0);
32 while ((get_timer(0) - i) < (usec / 1000))
33 ;
Michal Simek06ac6512012-06-29 13:46:54 +020034 }
Michal Simek64f96402012-06-29 13:42:28 +020035}
Michal Simek64f96402012-06-29 13:42:28 +020036
Michal Simek26acb3e2014-01-21 07:30:37 +010037#ifndef CONFIG_SPL_BUILD
Michal Simek06ac6512012-06-29 13:46:54 +020038static void timer_isr(void *arg)
Michal Simek952d5142007-03-11 13:42:58 +010039{
40 timestamp++;
41 tmr->control = tmr->control | TIMER_INTERRUPT;
42}
43
Michal Simekd1ff6c72010-04-16 11:37:41 +020044int timer_init (void)
Michal Simek952d5142007-03-11 13:42:58 +010045{
Michal Simek06ac6512012-06-29 13:46:54 +020046 int irq = -1;
47 u32 preload = 0;
48 u32 ret = 0;
Michal Simekcf848852016-02-15 12:10:32 +010049 const void *blob = gd->fdt_blob;
50 int node = 0;
51 u32 cell[2];
52
53 debug("TIMER: Initialization\n");
54
55 node = fdt_node_offset_by_compatible(blob, node,
56 "xlnx,xps-timer-1.00.a");
57 if (node != -1) {
58 fdt_addr_t base = fdtdec_get_addr(blob, node, "reg");
59 if (base == FDT_ADDR_T_NONE)
60 return -1;
61
62 debug("TIMER: Base addr %lx\n", base);
63 tmr = (microblaze_timer_t *)base;
64
65 ret = fdtdec_get_int_array(blob, node, "interrupts",
66 cell, ARRAY_SIZE(cell));
67 if (ret)
68 return ret;
69
70 irq = cell[0];
71 debug("TIMER: IRQ %x\n", irq);
72
73 preload = fdtdec_get_int(blob, node, "clock-frequency", 0);
74 preload /= CONFIG_SYS_HZ;
75 } else {
76 return node;
77 }
78
Michal Simek06ac6512012-06-29 13:46:54 +020079 if (tmr && preload && irq >= 0) {
80 tmr->loadreg = preload;
81 tmr->control = TIMER_INTERRUPT | TIMER_RESET;
82 tmr->control = TIMER_ENABLE | TIMER_ENABLE_INTR |\
83 TIMER_RELOAD | TIMER_DOWN_COUNT;
84 timestamp = 0;
85 ret = install_interrupt_handler (irq, timer_isr, (void *)tmr);
86 if (ret)
87 tmr = NULL;
88 }
Michal Simek06ac6512012-06-29 13:46:54 +020089 /* No problem if timer is not found/initialized */
Michal Simekd1ff6c72010-04-16 11:37:41 +020090 return 0;
Michal Simek952d5142007-03-11 13:42:58 +010091}
Michal Simek26acb3e2014-01-21 07:30:37 +010092#else
93int timer_init(void)
94{
95 return 0;
96}
97#endif
Stephan Linzcba5bf02012-02-22 22:39:57 +010098
99/*
100 * This function is derived from PowerPC code (read timebase as long long).
101 * On Microblaze it just returns the timer value.
102 */
103unsigned long long get_ticks(void)
104{
105 return get_timer(0);
106}
107
108/*
109 * This function is derived from PowerPC code (timebase clock frequency).
110 * On Microblaze it returns the number of timer ticks per second.
111 */
112ulong get_tbclk(void)
113{
114 return CONFIG_SYS_HZ;
115}