]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_time.c
Unified codebase for TX28, TX48, TX51, TX53
[karo-tx-uboot.git] / common / cmd_time.c
1 /*
2  * Copyright (c) 2011 The Chromium OS Authors.
3  * See file CREDITS for list of people who contributed to this
4  * project.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of
9  * the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19  * MA 02111-1307 USA
20  */
21
22 #include <common.h>
23 #include <command.h>
24
25 /*
26  * TODO(clchiou): This function actually minics the bottom-half of the
27  * run_command() function.  Since this function has ARM-dependent timer
28  * codes, we cannot merge it with the run_command() for now.
29  */
30 static int run_command_and_time_it(int flag, int argc, char *const argv[],
31                 ulong *cycles)
32 {
33         cmd_tbl_t *cmdtp = find_cmd(argv[0]);
34         int retval = 0;
35         unsigned long start;
36
37         if (!cmdtp) {
38                 printf("%s: command not found\n", argv[0]);
39                 return 1;
40         }
41         if (argc > cmdtp->maxargs)
42                 return CMD_RET_USAGE;
43
44         start = get_timer(0);
45         retval = cmdtp->cmd(cmdtp, flag, argc, argv);
46         *cycles = get_timer(start);
47
48         return retval;
49 }
50
51 static void report_time(ulong cycles)
52 {
53         ulong minutes, seconds, milliseconds;
54         ulong total_seconds, remainder;
55
56         total_seconds = cycles / CONFIG_SYS_HZ;
57         remainder = cycles % CONFIG_SYS_HZ;
58         minutes = total_seconds / 60;
59         seconds = total_seconds % 60;
60         /* approximate millisecond value */
61         milliseconds = (remainder * 1000 + CONFIG_SYS_HZ / 2) / CONFIG_SYS_HZ;
62
63         printf("\ntime:");
64         if (minutes)
65                 printf(" %lu minutes,", minutes);
66         printf(" %lu.%03lu seconds, %lu ticks\n",
67                         seconds, milliseconds, cycles);
68 }
69
70 static int do_time(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
71 {
72         ulong cycles = 0;
73         int retval = 0;
74
75         if (argc == 1)
76                 return CMD_RET_USAGE;
77
78         retval = run_command_and_time_it(0, argc - 1, argv + 1, &cycles);
79         report_time(cycles);
80
81         return retval;
82 }
83
84 U_BOOT_CMD(time, CONFIG_SYS_MAXARGS, 0, do_time,
85                 "run commands and summarize execution time",
86                 "command [args...]\n");