blob: 8be2ed4fe634dadfa296223aa5e7839eb24533d3 [file] [log] [blame]
Masahiro Yamada5894ca02014-10-03 19:21:06 +09001/*
2 * Copyright (C) 2014 Panasonic Corporation
3 * Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
Masahiro Yamadaa86ac952015-02-27 02:26:44 +09009#include <mach/boot-device.h>
10#include <mach/sbc-regs.h>
Masahiro Yamada5894ca02014-10-03 19:21:06 +090011
12static int do_pinmon(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
13{
Masahiro Yamada44316842015-02-05 20:56:23 +090014 int mode_sel, i;
Masahiro Yamada5894ca02014-10-03 19:21:06 +090015
Masahiro Yamada7b77c9a2014-12-19 20:20:54 +090016 printf("Boot Swap: %s\n\n", boot_is_swapped() ? "ON" : "OFF");
17
Masahiro Yamada44316842015-02-05 20:56:23 +090018 mode_sel = get_boot_mode_sel();
19
Masahiro Yamada5894ca02014-10-03 19:21:06 +090020 puts("Boot Mode Pin:\n");
21
Masahiro Yamada4e799082015-02-05 20:56:24 +090022 for (i = 0; boot_device_table[i].info; i++)
Masahiro Yamada44316842015-02-05 20:56:23 +090023 printf(" %c %02x %s\n", i == mode_sel ? '*' : ' ', i,
24 boot_device_table[i].info);
Masahiro Yamada5894ca02014-10-03 19:21:06 +090025
26 return 0;
27}
28
29U_BOOT_CMD(
30 pinmon, 1, 1, do_pinmon,
31 "pin monitor",
32 ""
33);