blob: bd5674be8c737bbdd862a7250596a3d241ffc797 [file] [log] [blame]
Gabe Blackd4d29a12014-04-10 02:36:49 -07001/*
Julius Werner4fda9bd2016-05-16 15:39:12 -07002 *
3 * Copyright 2016 Google Inc.
Gabe Blackd4d29a12014-04-10 02:36:49 -07004 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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.
15 *
Julius Werner4fda9bd2016-05-16 15:39:12 -070016 * Alternatively, this software may be distributed under the terms of the
17 * GNU General Public License ("GPL") version 2 as published by the Free
18 * Software Foundation.
19 *
Gabe Blackd4d29a12014-04-10 02:36:49 -070020 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
Julius Werner4fda9bd2016-05-16 15:39:12 -070033#include <assert.h>
Gabe Blackd4d29a12014-04-10 02:36:49 -070034#include <libpayload.h>
Gabe Blackd4d29a12014-04-10 02:36:49 -070035
Yidi Lineabdd022023-11-02 14:17:02 +080036uint32_t timer_hz(void)
Gabe Blackd4d29a12014-04-10 02:36:49 -070037{
Julius Werner4fda9bd2016-05-16 15:39:12 -070038 /* libc/time.c currently requires all timers to be at least 1MHz. */
39 assert(CONFIG_LP_TIMER_GENERIC_HZ >= 1000000);
40 return CONFIG_LP_TIMER_GENERIC_HZ;
Gabe Blackd4d29a12014-04-10 02:36:49 -070041}
42
43uint64_t timer_raw_value(void)
44{
Julius Werner4fda9bd2016-05-16 15:39:12 -070045 uint64_t cur_tick;
46 uint32_t count_h;
47 uint32_t count_l;
48
49 if (!CONFIG_LP_TIMER_GENERIC_HIGH_REG)
50 return readl(phys_to_virt(CONFIG_LP_TIMER_GENERIC_REG));
51
52 do {
53 count_h = readl(phys_to_virt(CONFIG_LP_TIMER_GENERIC_HIGH_REG));
54 count_l = readl(phys_to_virt(CONFIG_LP_TIMER_GENERIC_REG));
Paul Kocialkowski35562d82016-12-19 19:22:39 +010055 cur_tick = readl(phys_to_virt(CONFIG_LP_TIMER_GENERIC_HIGH_REG));
Julius Werner4fda9bd2016-05-16 15:39:12 -070056 } while (cur_tick != count_h);
57
58 return (cur_tick << 32) + count_l;
Gabe Blackd4d29a12014-04-10 02:36:49 -070059}