common: Move get_ticks() function out of common.h

This function belongs in time.h so move it over and add a comment.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Simon Glass 2019-11-14 12:57:30 -07:00 committed by Tom Rini
parent f0143a86af
commit 1045315df0
68 changed files with 78 additions and 5 deletions

View File

@ -12,6 +12,7 @@
*/
#include <common.h>
#include <time.h>
#include <linux/types.h>
#include <asm/arch/ep93xx.h>
#include <asm/io.h>

View File

@ -13,6 +13,7 @@
*/
#include <common.h>
#include <time.h>
#if defined (CONFIG_IMX)
#include <asm/arch/imx-regs.h>

View File

@ -7,6 +7,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/arch/cpu.h>
#include <asm/arch/armada100.h>

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/arch/cpu.h>
#include <asm/arch/clk.h>
#include <asm/arch/timer.h>

View File

@ -17,6 +17,7 @@
#include <common.h>
#include <div64.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/imx-regs.h>

View File

@ -10,6 +10,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/imx-regs.h>
#include <asm/arch/sys_proto.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/hardware.h>
#include <asm/arch/spr_gpt.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/io.h>
#include <div64.h>
#include <bootstage.h>

View File

@ -5,6 +5,7 @@
#include <common.h>
#include <div64.h>
#include <time.h>
#include <asm/io.h>
#include <asm/iproc-common/timer.h>
#include <asm/iproc-common/sysmap.h>

View File

@ -8,6 +8,7 @@
#include <common.h>
#include <div64.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/pwm.h>
#include <asm/arch/clk.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch-stv0991/hardware.h>
#include <asm/arch-stv0991/stv0991_cgu.h>

View File

@ -6,6 +6,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/timer.h>

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/io.h>
#include <div64.h>
#include <asm/arch/imx-regs.h>

View File

@ -22,6 +22,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/io.h>
DECLARE_GLOBAL_DATA_PTR;

View File

@ -11,6 +11,7 @@
#include <common.h>
#include <SA-1100.h>
#include <time.h>
static ulong get_timer_masked (void)
{

View File

@ -14,6 +14,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/hardware.h>

View File

@ -21,6 +21,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/timer_defs.h>
#include <div64.h>

View File

@ -16,6 +16,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/cpu.h>
#include <asm/arch/clock.h>

View File

@ -8,6 +8,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/io.h>
#define UBOOT_CNTR 0 /* counter to use for uboot timer */

View File

@ -6,6 +6,7 @@
#include <common.h>
#include <div64.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch-armv7/globaltimer.h>
#include <asm/arch/rmobile.h>

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/io.h>
#include <dm.h>
#include <asm/arch/clock_manager.h>

View File

@ -6,6 +6,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/barriers.h>
#include <asm/io.h>
#include <asm/arch/dram.h>

View File

@ -15,6 +15,7 @@
#include <common.h>
#include <errno.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/cpu.h>
#include <asm/arch/gpio.h>

View File

@ -10,6 +10,7 @@
#include <common.h>
#include <errno.h>
#include <time.h>
#include <asm/arch/cpu.h>
#include <asm/arch/gpio.h>
#include <asm/arch/prcm.h>

View File

@ -9,6 +9,7 @@
#include <div64.h>
#include <dm.h>
#include <errno.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/clock.h>
#include <asm/arch/tegra.h>

View File

@ -7,6 +7,7 @@
#include <common.h>
#include <fdtdec.h>
#include <time.h>
#include <asm/microblaze_timer.h>
#include <asm/microblaze_intc.h>

View File

@ -9,6 +9,7 @@
#include <config.h>
#include <common.h>
#include <div64.h>
#include <time.h>
#include <asm/io.h>
#include <asm/mipsregs.h>
#include <mach/jz4780.h>

View File

@ -9,6 +9,7 @@
*/
#ifndef CONFIG_TIMER
#include <common.h>
#include <time.h>
#include <asm/io.h>
#include <faraday/fttmr010.h>

View File

@ -8,6 +8,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/io.h>
#include <asm/processor.h>

View File

@ -4,6 +4,7 @@
*/
#include <common.h>
#include <time.h>
#include <asm/global_data.h>
#include <linux/stringify.h>

View File

@ -18,6 +18,7 @@
#include <common.h>
#include <div64.h>
#include <time.h>
#ifdef CONFIG_ARCH_CINTEGRATOR
#define DIV_CLOCK_INIT 1

View File

@ -6,6 +6,7 @@
* Author: Thomas Fitzsimmons <fitzsim@fitzsim.org>
*/
#include <time.h>
#include <linux/types.h>
#include <common.h>
#include <env.h>

View File

@ -7,6 +7,7 @@
#include <common.h>
#include <fdtdec.h>
#include <malloc.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/hardware.h>
#include <asm/arch/sys_proto.h>

View File

@ -15,6 +15,7 @@
#include <memalign.h>
#include <menu.h>
#include <post.h>
#include <time.h>
#include <u-boot/sha256.h>
#include <bootcount.h>

View File

@ -9,6 +9,7 @@
#include <cli.h>
#include <env.h>
#include <errno.h>
#include <time.h>
#include <watchdog.h>
#ifndef CONFIG_BOOT_RETRY_MIN

View File

@ -11,6 +11,7 @@
#include <common.h>
#include <bootretry.h>
#include <cli.h>
#include <time.h>
#include <watchdog.h>
DECLARE_GLOBAL_DATA_PTR;

View File

@ -7,6 +7,7 @@
#include <common.h>
#include <mapmem.h>
#include <time.h>
#include <asm/io.h>
#include <u-boot/crc.h>

View File

@ -10,6 +10,7 @@
#include <regmap.h>
#include <spl.h>
#include <syscon.h>
#include <time.h>
#include <vsprintf.h>
#include <linux/io.h>
#include <linux/iopoll.h>

View File

@ -7,6 +7,7 @@
#include <dm.h>
#include <mailbox.h>
#include <mailbox-uclass.h>
#include <time.h>
static inline struct mbox_ops *mbox_dev_ops(struct udevice *dev)
{

View File

@ -5,6 +5,7 @@
#include <common.h>
#include <dm.h>
#include <time.h>
#include <dm/lists.h>
#include <dm/root.h>
#include <mailbox.h>

View File

@ -41,6 +41,7 @@
#include <malloc.h>
#include <memalign.h>
#include <sdhci.h>
#include <time.h>
#include <asm/arch/msg.h>
#include <asm/arch/mbox.h>
#include <mach/sdhci.h>

View File

@ -23,6 +23,7 @@
#include <part.h>
#include <malloc.h>
#include <mmc.h>
#include <time.h>
#include <linux/errno.h>
#include <asm/io.h>
#include <asm/arch/clock.h>

View File

@ -9,6 +9,7 @@
#include <net.h>
#include <miiphy.h>
#include <console.h>
#include <time.h>
#include <wait_bit.h>
#include <asm/gpio.h>

View File

@ -9,6 +9,7 @@
#include <errno.h>
#include <memalign.h>
#include <pci.h>
#include <time.h>
#include <dm/device-internal.h>
#include "nvme.h"

View File

@ -9,6 +9,7 @@
#include <i2c.h>
#include <misc.h>
#include <sysreset.h>
#include <time.h>
#include <dm/device.h>
#include <dm/lists.h>
#include <power/pmic.h>

View File

@ -12,6 +12,7 @@
#include <common.h>
#include <dm.h>
#include <i2s.h>
#include <time.h>
#include <asm/io.h>
#include "broadwell_i2s.h"

View File

@ -8,6 +8,7 @@
#include <dm.h>
#include <div64.h>
#include <errno.h>
#include <time.h>
#include <asm/io.h>
#include <asm/addrspace.h>
#include <asm/types.h>

View File

@ -10,6 +10,7 @@
#include <malloc.h>
#include <spi.h>
#include <fdtdec.h>
#include <time.h>
#include <asm/arch/clk.h>
#include <asm/arch/clock.h>
#include <asm/arch/cpu.h>

View File

@ -16,6 +16,7 @@
#include <dt-structs.h>
#include <errno.h>
#include <spi.h>
#include <time.h>
#include <linux/errno.h>
#include <asm/io.h>
#include <asm/arch-rockchip/clock.h>

View File

@ -7,6 +7,7 @@
#include <common.h>
#include <dm.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/clock.h>
#include <asm/arch-tegra/clk_rst.h>

View File

@ -8,6 +8,7 @@
#include <common.h>
#include <dm.h>
#include <errno.h>
#include <time.h>
#include <asm/io.h>
#include <asm/gpio.h>
#include <asm/arch/clock.h>

View File

@ -7,6 +7,7 @@
#include <common.h>
#include <dm.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/clock.h>
#include <asm/arch-tegra/clk_rst.h>

View File

@ -7,6 +7,7 @@
#include <common.h>
#include <dm.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/clock.h>
#include <asm/arch-tegra/clk_rst.h>

View File

@ -7,6 +7,7 @@
#include <clk.h>
#include <common.h>
#include <dm.h>
#include <time.h>
#include <linux/bitfield.h>
#include <linux/io.h>
#include <spi.h>

View File

@ -10,6 +10,7 @@
#include <dm.h>
#include <malloc.h>
#include <spi.h>
#include <time.h>
#include <asm/io.h>
DECLARE_GLOBAL_DATA_PTR;

View File

@ -9,6 +9,7 @@
#include <common.h>
#include <dm.h>
#include <malloc.h>
#include <time.h>
#include <timer.h>
#include <asm/cpu.h>
#include <asm/io.h>

View File

@ -8,6 +8,7 @@
#include <common.h>
#include <efi_loader.h>
#include <time.h>
#include <asm/arch/clock.h>
#include <asm/arch/display.h>

View File

@ -10,6 +10,7 @@
#include <dm.h>
#include <dw_hdmi.h>
#include <edid.h>
#include <time.h>
#include <asm/io.h>
#include <asm/arch/clock.h>
#include <asm/arch/lcdc.h>

View File

@ -3,8 +3,8 @@
* Common header file for U-Boot
*
* This file still includes quite a bit of stuff that should be in separate
* headers like command.h, cpu.h and timer.h. Please think before adding more
* things. Patches to remove things are welcome.
* headers like command.h and cpu.h. Please think before adding more things.
* Patches to remove things are welcome.
*
* (C) Copyright 2000-2009
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
@ -281,9 +281,6 @@ enum {
*/
int cleanup_before_linux_select(int flags);
/* arch/$(ARCH)/lib/ticks.S */
uint64_t get_ticks(void);
/* lib/uuid.c */
#include <uuid.h>

View File

@ -103,4 +103,14 @@ void wait_ticks(unsigned long ticks);
*/
unsigned long timer_get_us(void);
/**
* get_ticks() - Get the current tick value
*
* This is an internal value used by the timer on the system. Ticks increase
* monotonically at the rate given by get_tbclk().
*
* @return current tick value
*/
uint64_t get_ticks(void);
#endif /* _TIME_H */

View File

@ -9,6 +9,7 @@
#include <div64.h>
#include <efi_loader.h>
#include <malloc.h>
#include <time.h>
#include <linux/libfdt_env.h>
#include <u-boot/crc.h>
#include <bootm.h>

View File

@ -7,6 +7,7 @@
#include <common.h>
#include <charset.h>
#include <time.h>
#include <dm/device.h>
#include <efi_loader.h>
#include <env.h>

View File

@ -7,6 +7,7 @@
#include <common.h>
#include <dm.h>
#include <errno.h>
#include <time.h>
#include <timer.h>
#include <watchdog.h>
#include <div64.h>

View File

@ -5,6 +5,7 @@
#include <common.h>
#include <mapmem.h>
#include <time.h>
#include <trace.h>
#include <asm/io.h>
#include <asm/sections.h>

View File

@ -5,6 +5,7 @@
#include <common.h>
#include <env.h>
#include <time.h>
#include <linux/ctype.h>
#include <errno.h>
#include <common.h>

View File

@ -33,6 +33,7 @@
#include <mapmem.h>
#include "nfs.h"
#include "bootp.h"
#include <time.h>
#define HASHES_PER_LINE 65 /* Number of "loading" hashes per line */
#define NFS_RETRY_COUNT 30

View File

@ -7,6 +7,7 @@
#include <common.h>
#include <env.h>
#include <stdio_dev.h>
#include <time.h>
#include <watchdog.h>
#include <div64.h>
#include <post.h>

View File

@ -7,6 +7,7 @@
#include <common.h>
#include <command.h>
#include <errno.h>
#include <time.h>
static int test_get_timer(void)
{