[PATCH] libpayload: rename config.h to libpayload-config.h
[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 /**
31  * @file libc/time.c
32  * General time functions
33  */
34
35 #include <libpayload-config.h>
36 #include <libpayload.h>
37 #include <arch/rdtsc.h>
38
39 extern u32 cpu_khz;
40
41 static struct {
42         u64 ticks;
43         time_t secs;
44         suseconds_t usecs;
45 } clock;
46
47 #define TICKS_PER_SEC (cpu_khz * 1000)
48 #define TICKS_PER_USEC (cpu_khz / 1000)
49
50 static void update_clock(void)
51 {
52         u64 delta = rdtsc() - clock.ticks;
53         int secs;
54
55         clock.ticks += delta;
56
57         secs = (int) (delta / TICKS_PER_SEC);
58         clock.secs += secs;
59         delta -= (secs * TICKS_PER_SEC);
60         clock.usecs += (int) (delta / TICKS_PER_USEC);
61
62         if (clock.usecs > 1000000) {
63                 clock.usecs -= 1000000;
64                 clock.secs++;
65         }
66 }
67
68 #ifdef CONFIG_NVRAM
69
70 static unsigned int day_of_year(int mon, int day, int year)
71 {
72         static u8 mdays[12] = { 31, 28, 31, 30, 31, 30,
73                                 31, 31, 30, 31, 30, 31 };
74
75         int i, ret = 0;
76
77         for(i = 0; i < mon; i++) {
78                 ret += mdays[i];
79
80                 if (i == 1 && (year % 4))
81                         ret++;
82         }
83
84         return (ret + day);
85 }
86
87 static void gettimeofday_init(void)
88 {
89         int days, delta;
90         struct tm tm;
91
92         rtc_read_clock(&tm);
93         clock.ticks = rdtsc();
94
95         /* Calculate the number of days in the year so far */
96         days = day_of_year(tm.tm_mon, tm.tm_mday, tm.tm_year + 1900);
97
98         delta = tm.tm_year - 70;
99
100         days += (delta * 365);
101
102         /* Figure leap years */
103
104         if (delta > 2)
105           days += (delta - 2) / 4;
106
107         clock.secs = (days * 86400) + (tm.tm_hour * 3600) +
108                 (tm.tm_min * 60) + tm.tm_sec;
109 }
110 #else
111 static void gettimeofday_init(void)
112 {
113         /* Record the number of ticks */
114         clock.ticks = rdtsc();
115 }
116 #endif
117
118 /**
119  * Return the current time broken into a timeval structure.
120  *
121  * @param tv A pointer to a timeval structure.
122  * @param tz Added for compatability - not used.
123  * @return 0 for success (this function cannot return non-zero currently).
124  */
125 int gettimeofday(struct timeval *tv, void *tz)
126 {
127         /*
128          * Call the gtod init when we need it - this keeps the code from
129          * being included in the binary if we don't need it.
130          */
131         if (!clock.ticks)
132                 gettimeofday_init();
133
134         update_clock();
135
136         tv->tv_sec = clock.secs;
137         tv->tv_usec = clock.usecs;
138
139         return 0;
140 }