blob: 93f9eabd6b547e1cfa30bbdfb5c6872aa015c626 [file] [log] [blame]
wdenk38635852002-08-27 05:55:31 +00001/*
2 * (C) Copyright 2001
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk38635852002-08-27 05:55:31 +00006 */
7
8/*
9 * Misc functions
10 */
11#include <common.h>
12#include <command.h>
13
Kim Phillips088f1b12012-10-29 13:34:31 +000014static int do_sleep(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +000015{
Stefan Roesec4c13df2005-10-20 16:36:44 +020016 ulong start = get_timer(0);
wdenk38635852002-08-27 05:55:31 +000017 ulong delay;
18
Wolfgang Denk47e26b12010-07-17 01:06:04 +020019 if (argc != 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +000020 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +000021
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020022 delay = simple_strtoul(argv[1], NULL, 10) * CONFIG_SYS_HZ;
wdenk38635852002-08-27 05:55:31 +000023
Stefan Roesec4c13df2005-10-20 16:36:44 +020024 while (get_timer(start) < delay) {
Kim Phillips088f1b12012-10-29 13:34:31 +000025 if (ctrlc())
Stefan Roesec4c13df2005-10-20 16:36:44 +020026 return (-1);
Wolfgang Denk47e26b12010-07-17 01:06:04 +020027
Kim Phillips088f1b12012-10-29 13:34:31 +000028 udelay(100);
wdenk38635852002-08-27 05:55:31 +000029 }
Stefan Roesec4c13df2005-10-20 16:36:44 +020030
wdenk38635852002-08-27 05:55:31 +000031 return 0;
32}
Stefan Roesec4c13df2005-10-20 16:36:44 +020033
wdenk0d498392003-07-01 21:06:45 +000034U_BOOT_CMD(
Detlev Zundel99121212007-05-23 19:02:41 +020035 sleep , 2, 1, do_sleep,
Peter Tyser2fb26042009-01-27 18:03:12 -060036 "delay execution for some time",
wdenk8bde7f72003-06-27 21:31:46 +000037 "N\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +020038 " - delay execution for N seconds (N is _decimal_ !!!)"
wdenk8bde7f72003-06-27 21:31:46 +000039);
Joe Hershbergerda83bcd2012-10-03 12:14:57 +000040
41#ifdef CONFIG_CMD_TIMER
42static int do_timer(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
43{
44 static ulong start;
45
46 if (argc != 2)
47 return CMD_RET_USAGE;
48
49 if (!strcmp(argv[1], "start"))
50 start = get_timer(0);
51
52 if (!strcmp(argv[1], "get")) {
53 ulong msecs = get_timer(start) * 1000 / CONFIG_SYS_HZ;
54 printf("%ld.%03d\n", msecs / 1000, (int)(msecs % 1000));
55 }
56
57 return 0;
58}
59
60U_BOOT_CMD(
61 timer, 2, 1, do_timer,
62 "access the system timer",
63 "start - Reset the timer reference.\n"
64 "timer get - Print the time since 'start'."
65);
66#endif