armv7/arm64: remove timestamp.c
The src/lib/timestamp.c already has an implementation using timer_monotonic_get() for timestamp_get(). Use that instead of duplicating the logic. BUG=chrome-os-partner:44669 BRANCH=None TEST=None Change-Id: If17be86143f217445bd64d67ceee4355fa482d39 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/11468 Tested-by: build bot (Jenkins) Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
This commit is contained in:
@@ -64,7 +64,6 @@ bootblock-y += cpu-stubs.c
|
||||
bootblock-y += stages.c
|
||||
bootblock-y += eabi_compat.c
|
||||
bootblock-y += transition.c transition_asm.S
|
||||
bootblock-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
|
||||
|
||||
bootblock-y += memset.S
|
||||
bootblock-y += memcpy.S
|
||||
@@ -95,7 +94,6 @@ verstage-y += ../../lib/memset.c
|
||||
verstage-y += ../../lib/memcpy.c
|
||||
verstage-y += ../../lib/memmove.c
|
||||
verstage-y += stages.c
|
||||
verstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
|
||||
|
||||
endif # CONFIG_ARCH_VERSTAGE_ARM64
|
||||
|
||||
@@ -115,7 +113,6 @@ romstage-y += eabi_compat.c
|
||||
romstage-y += memset.S
|
||||
romstage-y += memcpy.S
|
||||
romstage-y += memmove.S
|
||||
romstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
|
||||
romstage-y += transition.c transition_asm.S
|
||||
|
||||
rmodules_arm64-y += memset.S
|
||||
@@ -169,8 +166,6 @@ secmon-y += memset.S
|
||||
secmon-y += memmove.S
|
||||
secmon-y += memcpy.S
|
||||
|
||||
ramstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
|
||||
|
||||
ramstage-srcs += $(wildcard src/mainboard/$(MAINBOARDDIR)/mainboard.c)
|
||||
|
||||
# Build the ramstage
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright 2014 Google Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; version 2 of the License.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc.
|
||||
*/
|
||||
|
||||
#include <timestamp.h>
|
||||
#include <timer.h>
|
||||
|
||||
uint64_t timestamp_get(void)
|
||||
{
|
||||
struct mono_time timestamp;
|
||||
timer_monotonic_get(×tamp);
|
||||
return (uint64_t)timestamp.microseconds;
|
||||
}
|
||||
Reference in New Issue
Block a user