view target-utils/libcommon/cmd_jump.c @ 992:a7b0b426f9ca

target-utils: boot ROM UART autodetection revamped The new implementation should work with both the familiar Calypso C035 boot ROM version found in our regular targets as well as the older Calypso F741979B version found on the vintage D-Sample board.
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Wed, 30 Dec 2015 21:28:41 +0000
parents 1a3bbab2ea26
children
line wrap: on
line source

/*
 * jump hexaddr -- transfer control with BX
 */

#include <sys/types.h>
#include "types.h"

void
cmd_jump(argbulk)
	char *argbulk;
{
	char *argv[2];
	u_long addr;

	if (parse_args(argbulk, 1, 1, argv, 0) < 0)
		return;
	if (parse_hexarg(argv[0], 8, &addr) < 0) {
		printf("ERROR: argument must be a valid 32-bit hex address\n");
		return;
	}
	serial_flush();
	asm volatile ("bx %0" : : "r" (addr));
	__builtin_unreachable();
}