2 * Copyright 2014 Broadcom Corporation
4 * SPDX-License-Identifier: GPL-2.0+
8 * Minimal semihosting implementation for reading files into memory. If more
9 * features like writing files or console output are required they can be
10 * added later. This code has been tested on arm64/aarch64 fastmodel only.
11 * An untested placeholder exists for armv7 architectures, but since they
12 * are commonly available in silicon now, fastmodel usage makes less sense
24 #define MODE_READBIN 0x1
29 static noinline long smh_trap(unsigned int sysnum, void *addr)
31 register long result asm("r0");
32 #if defined(CONFIG_ARM64)
33 asm volatile ("hlt #0xf000" : "=r" (result) : "0"(sysnum), "r"(addr));
35 /* Note - untested placeholder */
36 asm volatile ("svc #0x123456" : "=r" (result) : "0"(sysnum), "r"(addr));
42 * Open a file on the host. Mode is "r" or "rb" currently. Returns a file
43 * descriptor or -1 on error.
45 static long smh_open(const char *fname, char *modestr)
55 debug("%s: file \'%s\', mode \'%s\'\n", __func__, fname, modestr);
57 /* Check the file mode */
58 if (!(strcmp(modestr, "r"))) {
60 } else if (!(strcmp(modestr, "rb"))) {
63 printf("%s: ERROR mode \'%s\' not supported\n", __func__,
69 open.len = strlen(fname);
72 /* Open the file on the host */
73 fd = smh_trap(SYSOPEN, &open);
75 printf("%s: ERROR fd %ld for file \'%s\'\n", __func__, fd,
82 * Read 'len' bytes of file into 'memp'. Returns 0 on success, else failure
84 static long smh_read(long fd, void *memp, size_t len)
93 debug("%s: fd %ld, memp %p, len %lu\n", __func__, fd, memp, len);
99 ret = smh_trap(SYSREAD, &read);
102 * The ARM handler allows for returning partial lengths,
103 * but in practice this never happens so rather than create
104 * hard to maintain partial read loops and such, just fail
105 * with an error message.
107 printf("%s: ERROR ret %ld, fd %ld, len %lu memp %p\n",
108 __func__, ret, fd, len, memp);
116 * Close the file using the file descriptor
118 static long smh_close(long fd)
122 debug("%s: fd %ld\n", __func__, fd);
124 ret = smh_trap(SYSCLOSE, &fd);
126 printf("%s: ERROR fd %ld\n", __func__, fd);
132 * Get the file length from the file descriptor
134 static long smh_len_fd(long fd)
138 debug("%s: fd %ld\n", __func__, fd);
140 ret = smh_trap(SYSFLEN, &fd);
142 printf("%s: ERROR ret %ld, fd %ld\n", __func__, ret, fd);
147 static int smh_load_file(const char * const name, ulong load_addr,
154 fd = smh_open(name, "rb");
158 len = smh_len_fd(fd);
164 ret = smh_read(fd, (void *)load_addr, len);
168 *end_addr = load_addr + len - 1;
169 printf("loaded file %s from %08lX to %08lX, %08lX bytes\n",
175 printf("read failed\n");
182 static int do_smhload(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
184 if (argc == 3 || argc == 4) {
190 load_addr = simple_strtoul(argv[2], NULL, 16);
194 ret = smh_load_file(argv[1], load_addr, &end_addr);
198 /* Optionally save returned end to the environment */
200 sprintf(end_str, "0x%08lx", end_addr);
201 setenv(argv[3], end_str);
204 return CMD_RET_USAGE;
209 U_BOOT_CMD(smhload, 4, 0, do_smhload, "load a file using semihosting",
210 "<file> 0x<address> [end var]\n"
211 " - load a semihosted file to the address specified\n"
212 " if the optional [end var] is specified, the end\n"
213 " address of the file will be stored in this environment\n"