blob: 2fb7202303acd04af16b8c8f288f0d695351094d [file] [log] [blame]
Heinrich Schuchardta31a5942019-12-24 22:17:37 +01001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * The 'rng' command prints bytes from the hardware random number generator.
4 *
5 * Copyright (c) 2019, Heinrich Schuchardt <xypron.glpk@gmx.de>
6 */
Heinrich Schuchardta31a5942019-12-24 22:17:37 +01007#include <command.h>
8#include <dm.h>
9#include <hexdump.h>
Simon Glass9bc15642020-02-03 07:36:16 -070010#include <malloc.h>
Heinrich Schuchardta31a5942019-12-24 22:17:37 +010011#include <rng.h>
12
Simon Glassed38aef2020-05-10 11:40:03 -060013static int do_rng(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Heinrich Schuchardta31a5942019-12-24 22:17:37 +010014{
Sughosh Ganub746dee2022-07-22 21:32:06 +053015 size_t n;
Sughosh Ganu407ec092022-07-22 21:32:07 +053016 u8 buf[64];
Sughosh Ganub746dee2022-07-22 21:32:06 +053017 int devnum;
Sughosh Ganu407ec092022-07-22 21:32:07 +053018 struct udevice *dev;
Marek BehĂșn5304d5d2024-04-04 09:51:05 +020019 int ret = CMD_RET_SUCCESS, err;
Heinrich Schuchardta31a5942019-12-24 22:17:37 +010020
Weizhao Ouyang168e9472024-03-04 14:42:42 +000021 if (argc == 2 && !strcmp(argv[1], "list")) {
22 int idx = 0;
23
24 uclass_foreach_dev_probe(UCLASS_RNG, dev) {
25 idx++;
26 printf("RNG #%d - %s\n", dev->seq_, dev->name);
27 }
28
29 if (!idx) {
30 log_err("No RNG device\n");
31 return CMD_RET_FAILURE;
32 }
33
34 return CMD_RET_SUCCESS;
35 }
36
Sughosh Ganub746dee2022-07-22 21:32:06 +053037 switch (argc) {
38 case 1:
39 devnum = 0;
40 n = 0x40;
41 break;
42 case 2:
43 devnum = hextoul(argv[1], NULL);
44 n = 0x40;
45 break;
46 case 3:
47 devnum = hextoul(argv[1], NULL);
48 n = hextoul(argv[2], NULL);
49 break;
50 default:
51 return CMD_RET_USAGE;
52 }
53
54 if (uclass_get_device_by_seq(UCLASS_RNG, devnum, &dev) || !dev) {
Heinrich Schuchardta31a5942019-12-24 22:17:37 +010055 printf("No RNG device\n");
56 return CMD_RET_FAILURE;
57 }
58
Sughosh Ganu407ec092022-07-22 21:32:07 +053059 if (!n)
60 return 0;
61
62 n = min(n, sizeof(buf));
Heinrich Schuchardta31a5942019-12-24 22:17:37 +010063
Marek BehĂșn5304d5d2024-04-04 09:51:05 +020064 err = dm_rng_read(dev, buf, n);
65 if (err) {
66 puts(err == -EINTR ? "Abort\n" : "Reading RNG failed\n");
Heinrich Schuchardta31a5942019-12-24 22:17:37 +010067 ret = CMD_RET_FAILURE;
68 } else {
69 print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, buf, n);
70 }
71
Heinrich Schuchardta31a5942019-12-24 22:17:37 +010072 return ret;
73}
74
Heinrich Schuchardta31a5942019-12-24 22:17:37 +010075U_BOOT_CMD(
Sughosh Ganub746dee2022-07-22 21:32:06 +053076 rng, 3, 0, do_rng,
Heinrich Schuchardta31a5942019-12-24 22:17:37 +010077 "print bytes from the hardware random number generator",
Weizhao Ouyang168e9472024-03-04 14:42:42 +000078 "list - list all the probed rng devices\n"
79 "rng [dev] [n] - print n random bytes(max 64) read from dev\n"
Heinrich Schuchardta31a5942019-12-24 22:17:37 +010080);