mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-03 04:51:35 +02:00
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commit c8ffd1356d42223cbb8c86280a083cc3c93e6426, reversing changes made to 2ee6f3a5f7550de3599faef9704e166e5dcace35. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
68 lines
1.4 KiB
C
68 lines
1.4 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2018, Google Inc.
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <command.h>
|
|
#include <dm.h>
|
|
#include <spl.h>
|
|
#include <asm/global_data.h>
|
|
#include <asm/state.h>
|
|
|
|
static int do_sb_handoff(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
char *const argv[])
|
|
{
|
|
#if CONFIG_IS_ENABLED(HANDOFF)
|
|
if (gd->spl_handoff)
|
|
printf("SPL handoff magic %lx\n", gd->spl_handoff->arch.magic);
|
|
else
|
|
printf("SPL handoff info not received\n");
|
|
|
|
return 0;
|
|
#else
|
|
printf("Command not supported\n");
|
|
|
|
return CMD_RET_USAGE;
|
|
#endif
|
|
}
|
|
|
|
static int do_sb_state(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
char *const argv[])
|
|
{
|
|
struct sandbox_state *state;
|
|
|
|
state = state_get_current();
|
|
state_show(state);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct cmd_tbl cmd_sb_sub[] = {
|
|
U_BOOT_CMD_MKENT(handoff, 1, 0, do_sb_handoff, "", ""),
|
|
U_BOOT_CMD_MKENT(state, 1, 0, do_sb_state, "", ""),
|
|
};
|
|
|
|
static int do_sb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
|
{
|
|
struct cmd_tbl *c;
|
|
|
|
/* Skip past 'sb' */
|
|
argc--;
|
|
argv++;
|
|
|
|
c = find_cmd_tbl(argv[0], cmd_sb_sub, ARRAY_SIZE(cmd_sb_sub));
|
|
if (c)
|
|
return c->cmd(cmdtp, flag, argc, argv);
|
|
else
|
|
return CMD_RET_USAGE;
|
|
}
|
|
|
|
U_BOOT_CMD(
|
|
sb, 8, 1, do_sb,
|
|
"Sandbox status commands",
|
|
"handoff - Show handoff data received from SPL\n"
|
|
"sb state - Show sandbox state"
|
|
);
|