blob: 6cc113328ebc85fac20790580e129503065b5694 [file] [log] [blame]
Heinrich Schuchardt29cfc092018-09-07 19:43:11 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * The 'conitrace' command prints the codes received from the console input as
4 * hexadecimal numbers.
5 *
6 * Copyright (c) 2018, Heinrich Schuchardt <xypron.glpk@gmx.de>
7 */
Heinrich Schuchardt29cfc092018-09-07 19:43:11 +02008#include <command.h>
Simon Glassc05ed002020-05-10 11:40:11 -06009#include <linux/delay.h>
Heinrich Schuchardt29cfc092018-09-07 19:43:11 +020010
Simon Glass09140112020-05-10 11:40:03 -060011static int do_conitrace(struct cmd_tbl *cmdtp, int flag, int argc,
12 char *const argv[])
Heinrich Schuchardt29cfc092018-09-07 19:43:11 +020013{
14 bool first = true;
15
16 printf("Waiting for your input\n");
17 printf("To terminate type 'x'\n");
18
19 /* Empty input buffer */
20 while (tstc())
Heinrich Schuchardt2fb3ed22020-10-23 12:46:04 +020021 getchar();
Heinrich Schuchardt29cfc092018-09-07 19:43:11 +020022
23 for (;;) {
Heinrich Schuchardt2fb3ed22020-10-23 12:46:04 +020024 int c = getchar();
Heinrich Schuchardt29cfc092018-09-07 19:43:11 +020025
26 if (first && (c == 'x' || c == 'X'))
27 break;
28
29 printf("%02x ", c);
30 first = false;
31
Heinrich Schuchardt48618e92020-12-27 00:12:28 +010032 /* 10 ms delay - serves to detect separate keystrokes */
33 udelay(10000);
Heinrich Schuchardt29cfc092018-09-07 19:43:11 +020034 if (!tstc()) {
35 printf("\n");
36 first = true;
37 }
38 }
39
40 return CMD_RET_SUCCESS;
41}
42
Tom Rini36162182023-10-07 15:13:08 -040043U_BOOT_LONGHELP(conitrace, "");
Heinrich Schuchardt29cfc092018-09-07 19:43:11 +020044
45U_BOOT_CMD_COMPLETE(
46 conitrace, 2, 0, do_conitrace,
47 "trace console input",
48 conitrace_help_text, NULL
49);