2018-12-26 16:20:35 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* The 'exception' command can be used for testing exception handling.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018, Heinrich Schuchardt <xypron.glpk@gmx.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
|
|
|
|
2020-08-06 10:34:59 +00:00
|
|
|
static int do_unaligned(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[])
|
|
|
|
{
|
|
|
|
asm volatile (
|
|
|
|
"auipc a1, 0\n"
|
|
|
|
"ori a1, a1, 3\n"
|
|
|
|
"lw a2, (0)(a1)\n"
|
|
|
|
);
|
|
|
|
printf("The system supports unaligned access.\n");
|
|
|
|
return CMD_RET_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
static int do_undefined(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[])
|
2018-12-26 16:20:35 +00:00
|
|
|
{
|
|
|
|
asm volatile (".word 0xffffffff\n");
|
|
|
|
return CMD_RET_FAILURE;
|
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
static struct cmd_tbl cmd_sub[] = {
|
2020-08-06 10:34:59 +00:00
|
|
|
U_BOOT_CMD_MKENT(unaligned, CONFIG_SYS_MAXARGS, 1, do_unaligned,
|
|
|
|
"", ""),
|
2018-12-26 16:20:35 +00:00
|
|
|
U_BOOT_CMD_MKENT(undefined, CONFIG_SYS_MAXARGS, 1, do_undefined,
|
|
|
|
"", ""),
|
|
|
|
};
|
|
|
|
|
|
|
|
static char exception_help_text[] =
|
|
|
|
"<ex>\n"
|
|
|
|
" The following exceptions are available:\n"
|
2020-08-06 10:34:59 +00:00
|
|
|
" undefined - illegal instruction\n"
|
|
|
|
" unaligned - load address misaligned\n"
|
2018-12-26 16:20:35 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
#include <exception.h>
|