diff options
author | Rob Barnes <robbarnes@google.com> | 2022-09-12 06:31:47 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-09-14 11:55:39 +0000 |
commit | d522f38c7bfccdc4af71bcad133aec20096f3f6c (patch) | |
tree | 28824b7b1bb659fffc6d1b8cb793f98f93f53c89 /src/soc/intel/apollolake | |
parent | 51249d6bed93f25569a35fa184038cafddc0dec0 (diff) |
timer: Change timer util functions to 64-bit
Since mono_time is now 64-bit, the utility functions interfacing with
mono_time should also be 64-bit so precision isn't lost.
Fixed build errors related to printing the now int64_t result of
stopwatch_duration_[m|u]secs in various places.
BUG=b:237082996
BRANCH=All
TEST=Boot dewatt
Change-Id: I169588f5e14285557f2d03270f58f4c07c0154d5
Signed-off-by: Rob Barnes <robbarnes@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/66170
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'src/soc/intel/apollolake')
-rw-r--r-- | src/soc/intel/apollolake/chip.c | 2 | ||||
-rw-r--r-- | src/soc/intel/apollolake/reset.c | 2 | ||||
-rw-r--r-- | src/soc/intel/apollolake/xdci.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/intel/apollolake/chip.c b/src/soc/intel/apollolake/chip.c index bbf0564906..da2d00adb7 100644 --- a/src/soc/intel/apollolake/chip.c +++ b/src/soc/intel/apollolake/chip.c @@ -800,7 +800,7 @@ static void configure_xhci_host_mode_port0(void) } } - printk(BIOS_INFO, "xHCI port 0 host switch over took %lu ms\n", + printk(BIOS_INFO, "xHCI port 0 host switch over took %lld ms\n", stopwatch_duration_msecs(&sw)); } diff --git a/src/soc/intel/apollolake/reset.c b/src/soc/intel/apollolake/reset.c index 186a546388..25b5bdef6c 100644 --- a/src/soc/intel/apollolake/reset.c +++ b/src/soc/intel/apollolake/reset.c @@ -44,5 +44,5 @@ void cf9_reset_prepare(void) } mdelay(1); } - printk(BIOS_SPEW, "CSE took %lu ms\n", stopwatch_duration_msecs(&sw)); + printk(BIOS_SPEW, "CSE took %lld ms\n", stopwatch_duration_msecs(&sw)); } diff --git a/src/soc/intel/apollolake/xdci.c b/src/soc/intel/apollolake/xdci.c index 5903e34bcc..086bbfd458 100644 --- a/src/soc/intel/apollolake/xdci.c +++ b/src/soc/intel/apollolake/xdci.c @@ -67,7 +67,7 @@ static void configure_host_mode_port0(struct device *dev) } } - printk(BIOS_INFO, "XDCI port 0 host switch over took %lu ms\n", + printk(BIOS_INFO, "XDCI port 0 host switch over took %lld ms\n", stopwatch_duration_msecs(&sw)); } |