blob: 333ae558142c9efe9003e7ee89a91384fc4b727e [file] [log] [blame]
Simon Glassb936a972020-09-19 18:49:26 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Command-line access to bloblist features
4 *
5 * Copyright 2020 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
Simon Glassb936a972020-09-19 18:49:26 -06009#include <bloblist.h>
10#include <command.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060011#include <asm/global_data.h>
Simon Glassb936a972020-09-19 18:49:26 -060012
13DECLARE_GLOBAL_DATA_PTR;
14
15static int do_bloblist_info(struct cmd_tbl *cmdtp, int flag, int argc,
16 char *const argv[])
17{
18 bloblist_show_stats();
19
20 return 0;
21}
22
23static int do_bloblist_list(struct cmd_tbl *cmdtp, int flag, int argc,
24 char *const argv[])
25{
26 bloblist_show_list();
27
28 return 0;
29}
30
Tom Rini03f146c2023-10-07 15:13:08 -040031U_BOOT_LONGHELP(bloblist,
Simon Glassb936a972020-09-19 18:49:26 -060032 "info - show information about the bloblist\n"
Tom Rini03f146c2023-10-07 15:13:08 -040033 "bloblist list - list blobs in the bloblist");
Simon Glassb936a972020-09-19 18:49:26 -060034
35U_BOOT_CMD_WITH_SUBCMDS(bloblist, "Bloblists", bloblist_help_text,
36 U_BOOT_SUBCMD_MKENT(info, 1, 1, do_bloblist_info),
37 U_BOOT_SUBCMD_MKENT(list, 1, 1, do_bloblist_list));