2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2011-10-06 23:40:48 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
|
|
|
|
|
|
|
static void report_time(ulong cycles)
|
|
|
|
{
|
|
|
|
ulong minutes, seconds, milliseconds;
|
|
|
|
ulong total_seconds, remainder;
|
|
|
|
|
|
|
|
total_seconds = cycles / CONFIG_SYS_HZ;
|
|
|
|
remainder = cycles % CONFIG_SYS_HZ;
|
|
|
|
minutes = total_seconds / 60;
|
|
|
|
seconds = total_seconds % 60;
|
|
|
|
/* approximate millisecond value */
|
|
|
|
milliseconds = (remainder * 1000 + CONFIG_SYS_HZ / 2) / CONFIG_SYS_HZ;
|
|
|
|
|
|
|
|
printf("\ntime:");
|
|
|
|
if (minutes)
|
|
|
|
printf(" %lu minutes,", minutes);
|
2014-04-18 08:46:13 +00:00
|
|
|
printf(" %lu.%03lu seconds\n", seconds, milliseconds);
|
2011-10-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
static int do_time(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[])
|
2011-10-06 23:40:48 +00:00
|
|
|
{
|
|
|
|
ulong cycles = 0;
|
|
|
|
int retval = 0;
|
2017-09-27 01:12:05 +00:00
|
|
|
int repeatable = 0;
|
2011-10-06 23:40:48 +00:00
|
|
|
|
|
|
|
if (argc == 1)
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2011-10-06 23:40:48 +00:00
|
|
|
|
2012-12-03 06:28:28 +00:00
|
|
|
retval = cmd_process(0, argc - 1, argv + 1, &repeatable, &cycles);
|
2011-10-06 23:40:48 +00:00
|
|
|
report_time(cycles);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
U_BOOT_CMD(time, CONFIG_SYS_MAXARGS, 0, do_time,
|
|
|
|
"run commands and summarize execution time",
|
|
|
|
"command [args...]\n");
|