these use CONFIG_ variables, too.
[coreboot.git] / payloads / libpayload / libc / time.c
1 /*
2  * This file is part of the libpayload project.
3  *
4  * Copyright (C) 2008 Advanced Micro Devices, Inc.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include <config.h>
31 #include <libpayload.h>
32 #include <arch/rdtsc.h>
33
34 extern u32 cpu_khz;
35
36 static struct {
37         u64 ticks;
38         time_t secs;
39         suseconds_t usecs;
40 } clock;
41
42 #define TICKS_PER_SEC (cpu_khz * 1000)
43 #define TICKS_PER_USEC (cpu_khz / 1000)
44
45 static void update_clock(void)
46 {
47         u64 delta = rdtsc() - clock.ticks;
48         int secs;
49
50         clock.ticks += delta;
51
52         secs = (int) (delta / TICKS_PER_SEC);
53         clock.secs += secs;
54         delta -= (secs * TICKS_PER_SEC);
55         clock.usecs += (int) (delta / TICKS_PER_USEC);
56
57         if (clock.usecs > 1000000) {
58                 clock.usecs -= 1000000;
59                 clock.secs++;
60         }
61 }
62
63 #ifdef CONFIG_NVRAM
64
65 static unsigned int day_of_year(int mon, int day, int year)
66 {
67         static u8 mdays[12] = { 31, 28, 31, 30, 31, 30,
68                                 31, 31, 30, 31, 30, 31 };
69
70         int i, ret = 0;
71
72         for(i = 0; i < mon; i++) {
73                 ret += mdays[i];
74
75                 if (i == 1 && (year % 4))
76                         ret++;
77         }
78
79         return (ret + day);
80 }
81
82 static void gettimeofday_init(void)
83 {
84         int days, delta;
85         struct tm tm;
86
87         rtc_read_clock(&tm);
88         clock.ticks = rdtsc();
89
90         /* Calculate the number of days in the year so far */
91         days = day_of_year(tm.tm_mon, tm.tm_mday, tm.tm_year + 1900);
92
93         delta = tm.tm_year - 70;
94
95         days += (delta * 365);
96
97         /* Figure leap years */
98
99         if (delta > 2)
100           days += (delta - 2) / 4;
101
102         clock.secs = (days * 86400) + (tm.tm_hour * 3600) +
103                 (tm.tm_min * 60) + tm.tm_sec;
104 }
105 #else
106 static void gettimeofday_init(void)
107 {
108         /* Record the number of ticks */
109         clock.ticks = rdtsc();
110 }
111 #endif
112
113 int gettimeofday(struct timeval *tv, void *tz)
114 {
115         /* Call the gtod init when we need it - this keeps
116            the code from being included in the binary if we don't
117            need it
118         */
119
120         if (!clock.ticks)
121                 gettimeofday_init();
122
123         update_clock();
124
125         tv->tv_sec = clock.secs;
126         tv->tv_usec = clock.usecs;
127
128         return 0;
129 }