blob: 5180cb46a8777e981db219110fec6d00e126f662 [file] [log] [blame]
Che-liang Chiouca366d02011-10-06 23:40:48 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Wolfgang Denk1a459662013-07-08 09:37:19 +02003 * SPDX-License-Identifier: GPL-2.0+
Che-liang Chiouca366d02011-10-06 23:40:48 +00004 */
5
6#include <common.h>
7#include <command.h>
8
Che-liang Chiouca366d02011-10-06 23:40:48 +00009static void report_time(ulong cycles)
10{
11 ulong minutes, seconds, milliseconds;
12 ulong total_seconds, remainder;
13
14 total_seconds = cycles / CONFIG_SYS_HZ;
15 remainder = cycles % CONFIG_SYS_HZ;
16 minutes = total_seconds / 60;
17 seconds = total_seconds % 60;
18 /* approximate millisecond value */
19 milliseconds = (remainder * 1000 + CONFIG_SYS_HZ / 2) / CONFIG_SYS_HZ;
20
21 printf("\ntime:");
22 if (minutes)
23 printf(" %lu minutes,", minutes);
24 printf(" %lu.%03lu seconds, %lu ticks\n",
25 seconds, milliseconds, cycles);
26}
27
28static int do_time(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
29{
30 ulong cycles = 0;
31 int retval = 0;
Richard Genoud34765e82012-12-03 06:28:28 +000032 int repeatable;
Che-liang Chiouca366d02011-10-06 23:40:48 +000033
34 if (argc == 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +000035 return CMD_RET_USAGE;
Che-liang Chiouca366d02011-10-06 23:40:48 +000036
Richard Genoud34765e82012-12-03 06:28:28 +000037 retval = cmd_process(0, argc - 1, argv + 1, &repeatable, &cycles);
Che-liang Chiouca366d02011-10-06 23:40:48 +000038 report_time(cycles);
39
40 return retval;
41}
42
43U_BOOT_CMD(time, CONFIG_SYS_MAXARGS, 0, do_time,
44 "run commands and summarize execution time",
45 "command [args...]\n");