upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
677 B
34 lines
677 B
10 years ago
|
/*
|
||
|
* Copyright (C) 2014 Panasonic Corporation
|
||
|
* Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <asm/arch/boot-device.h>
|
||
10 years ago
|
#include <asm/arch/sbc-regs.h>
|
||
10 years ago
|
|
||
|
static int do_pinmon(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
||
|
{
|
||
10 years ago
|
int mode_sel, i;
|
||
10 years ago
|
|
||
10 years ago
|
printf("Boot Swap: %s\n\n", boot_is_swapped() ? "ON" : "OFF");
|
||
|
|
||
10 years ago
|
mode_sel = get_boot_mode_sel();
|
||
|
|
||
10 years ago
|
puts("Boot Mode Pin:\n");
|
||
|
|
||
10 years ago
|
for (i = 0; boot_device_table[i].info; i++)
|
||
10 years ago
|
printf(" %c %02x %s\n", i == mode_sel ? '*' : ' ', i,
|
||
|
boot_device_table[i].info);
|
||
10 years ago
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
U_BOOT_CMD(
|
||
|
pinmon, 1, 1, do_pinmon,
|
||
|
"pin monitor",
|
||
|
""
|
||
|
);
|