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
16 #include <asm/semihosting.h>
24 #define MODE_READBIN 0x1
29 static int smh_trap(unsigned int sysnum, void *addr)
31 register int 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, load a file into memory, and close it. Check that the available space
43 * is sufficient to store the entire file. Return the bytes actually read from
44 * the file as seen by the read function. The verbose flag enables some extra
45 * printing of successful read status.
47 int smh_load(const char *fname, void *memp, int avail, int verbose)
53 debug("%s: fname \'%s\', avail %u, memp %p\n", __func__, fname,
57 fd = smh_open(fname, "rb");
61 /* Get the file length */
68 /* Check that the file will fit in the supplied buffer */
70 printf("%s: ERROR ret %d, avail %u\n", __func__, ret,
78 /* Read the file into the buffer */
79 ret = smh_read(fd, memp, len);
81 /* Print successful load information if requested */
83 printf("\n%s\n", fname);
84 printf(" 0x%8p dest\n", memp);
85 printf(" 0x%08x size\n", len);
86 printf(" 0x%08x avail\n", avail);
97 * Read 'len' bytes of file into 'memp'. Returns 0 on success, else failure
99 int smh_read(int fd, void *memp, int len)
108 debug("%s: fd %d, memp %p, len %d\n", __func__, fd, memp, len);
114 ret = smh_trap(SYSREAD, &read);
119 * The ARM handler allows for returning partial lengths,
120 * but in practice this never happens so rather than create
121 * hard to maintain partial read loops and such, just fail
122 * with an error message.
124 printf("%s: ERROR ret %d, fd %d, len %u memp %p\n",
125 __func__, ret, fd, len, memp);
131 * Open a file on the host. Mode is "r" or "rb" currently. Returns a file
132 * descriptor or -1 on error.
134 int smh_open(const char *fname, char *modestr)
143 debug("%s: file \'%s\', mode \'%s\'\n", __func__, fname, modestr);
147 /* Check the file mode */
148 if (!(strcmp(modestr, "r"))) {
150 } else if (!(strcmp(modestr, "rb"))) {
153 printf("%s: ERROR mode \'%s\' not supported\n", __func__,
159 open.len = strlen(fname);
162 /* Open the file on the host */
163 fd = smh_trap(SYSOPEN, &open);
165 printf("%s: ERROR fd %d for file \'%s\'\n", __func__, fd,
172 * Close the file using the file descriptor
174 int smh_close(int fd)
179 debug("%s: fd %d\n", __func__, fd);
182 ret = smh_trap(SYSCLOSE, &fdlong);
184 printf("%s: ERROR fd %d\n", __func__, fd);
190 * Get the file length from the file descriptor
192 int smh_len_fd(int fd)
197 debug("%s: fd %d\n", __func__, fd);
200 ret = smh_trap(SYSFLEN, &fdlong);
202 printf("%s: ERROR ret %d\n", __func__, ret);
208 * Get the file length from the filename
210 int smh_len(const char *fname)
214 debug("%s: file \'%s\'\n", __func__, fname);
217 fd = smh_open(fname, "rb");
221 /* Get the file length */
222 len = smh_len_fd(fd);
229 debug("%s: returning len %d\n", __func__, len);
231 /* Return the file length (or -1 error indication) */