3 * Copyright (C) 2008 Advanced Micro Devices, Inc.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * General time functions
34 #define __STDC_FORMAT_MACROS
36 #include <libpayload-config.h>
37 #include <libpayload.h>
38 #if CONFIG(LP_ARCH_X86) && CONFIG(LP_NVRAM)
39 #include <arch/rdtsc.h>
41 #include <commonlib/bsd/gcd.h>
52 static void update_clock(void)
54 u64 delta
= timer_raw_value() - clock
.ticks
;
56 static uint64_t ticks_per_sec
= 0;
57 static uint64_t ticks_per_usec
= 0;
59 ticks_per_sec
= timer_hz();
60 ticks_per_usec
= timer_hz() / 1000000;
65 secs
= (int) (delta
/ ticks_per_sec
);
67 delta
-= (secs
* ticks_per_sec
);
68 clock
.usecs
+= (int)(delta
/ ticks_per_usec
);
70 if (clock
.usecs
> 1000000) {
71 clock
.usecs
-= 1000000;
78 static unsigned int day_of_year(int mon
, int day
, int year
)
80 static u8 mdays
[12] = { 31, 28, 31, 30, 31, 30,
81 31, 31, 30, 31, 30, 31 };
85 for(i
= 0; i
< mon
; i
++) {
88 if (i
== 1 && (year
% 4))
95 static void gettimeofday_init(void)
101 clock
.ticks
= rdtsc();
103 /* Calculate the number of days in the year so far */
104 days
= day_of_year(tm
.tm_mon
, tm
.tm_mday
, tm
.tm_year
+ 1900);
106 delta
= tm
.tm_year
- 70;
108 days
+= (delta
* 365);
110 /* Figure leap years */
113 days
+= (delta
- 2) / 4;
115 clock
.secs
= (days
* 86400) + (tm
.tm_hour
* 3600) +
116 (tm
.tm_min
* 60) + tm
.tm_sec
;
119 static void gettimeofday_init(void)
121 /* Record the number of ticks */
122 clock
.ticks
= timer_raw_value();
127 * Return the current time expressed as seconds from 00:00:00 UTC, 1 Jan 1970.
129 * @param tp When not NULL, set this to the current time in seconds.
130 * @return The current time in seconds.
132 time_t time(time_t *tp
)
135 * Call the gtod init when we need it - this keeps the code from
136 * being included in the binary if we don't need it.
150 * Return the current time broken into a timeval structure.
152 * @param tv A pointer to a timeval structure.
153 * @param tz Added for compatibility - not used.
154 * @return 0 for success (this function cannot return non-zero currently).
156 int gettimeofday(struct timeval
*tv
, void *tz
)
158 tv
->tv_sec
= time(NULL
);
159 tv
->tv_usec
= clock
.usecs
;
164 __attribute__((weak
))
165 void arch_ndelay(uint64_t ns
)
167 uint64_t delta
= ns
* timer_hz() / NSECS_PER_SEC
;
168 uint64_t start
= timer_raw_value();
169 while (timer_raw_value() - start
< delta
) ;
172 u64
timer_us(u64 base
)
175 static u32 mult
= USECS_PER_SEC
;
178 // Only check timer_hz once. Assume it doesn't change.
182 printf("Timer frequency %" PRIu64
" is too low, "
183 "must be at least 1MHz.\n", hz
);
191 return (mult
* timer_raw_value()) / hz
- base
;