blob: 904fddd6c04e0dcc279b588e3c3b642a2a215bb2 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Darwin Rambo261d2762014-06-09 11:12:59 -07002/*
3 * Copyright 2014 Broadcom Corporation
Darwin Rambo261d2762014-06-09 11:12:59 -07004 */
5
6/*
7 * Minimal semihosting implementation for reading files into memory. If more
8 * features like writing files or console output are required they can be
9 * added later. This code has been tested on arm64/aarch64 fastmodel only.
10 * An untested placeholder exists for armv7 architectures, but since they
11 * are commonly available in silicon now, fastmodel usage makes less sense
12 * for them.
13 */
14#include <common.h>
Linus Walleij202a6742015-03-23 11:06:11 +010015#include <command.h>
Simon Glass09140112020-05-10 11:40:03 -060016#include <env.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060017#include <log.h>
Darwin Rambo261d2762014-06-09 11:12:59 -070018
19#define SYSOPEN 0x01
20#define SYSCLOSE 0x02
21#define SYSREAD 0x06
22#define SYSFLEN 0x0C
23
24#define MODE_READ 0x0
25#define MODE_READBIN 0x1
26
27/*
28 * Call the handler
29 */
Linus Walleije769f682015-03-23 11:06:10 +010030static noinline long smh_trap(unsigned int sysnum, void *addr)
Darwin Rambo261d2762014-06-09 11:12:59 -070031{
Linus Walleij4e1ef152014-12-15 11:05:56 +010032 register long result asm("r0");
Darwin Rambo261d2762014-06-09 11:12:59 -070033#if defined(CONFIG_ARM64)
34 asm volatile ("hlt #0xf000" : "=r" (result) : "0"(sysnum), "r"(addr));
Vadzim Dambrouski432a6242015-10-19 19:40:14 +030035#elif defined(CONFIG_CPU_V7M)
36 asm volatile ("bkpt #0xAB" : "=r" (result) : "0"(sysnum), "r"(addr));
Darwin Rambo261d2762014-06-09 11:12:59 -070037#else
38 /* Note - untested placeholder */
39 asm volatile ("svc #0x123456" : "=r" (result) : "0"(sysnum), "r"(addr));
40#endif
41 return result;
42}
43
44/*
Linus Walleij9be5c662014-12-15 11:06:05 +010045 * Open a file on the host. Mode is "r" or "rb" currently. Returns a file
46 * descriptor or -1 on error.
47 */
48static long smh_open(const char *fname, char *modestr)
49{
50 long fd;
51 unsigned long mode;
52 struct smh_open_s {
53 const char *fname;
54 unsigned long mode;
55 size_t len;
56 } open;
57
58 debug("%s: file \'%s\', mode \'%s\'\n", __func__, fname, modestr);
59
60 /* Check the file mode */
61 if (!(strcmp(modestr, "r"))) {
62 mode = MODE_READ;
63 } else if (!(strcmp(modestr, "rb"))) {
64 mode = MODE_READBIN;
65 } else {
66 printf("%s: ERROR mode \'%s\' not supported\n", __func__,
67 modestr);
68 return -1;
69 }
70
71 open.fname = fname;
72 open.len = strlen(fname);
73 open.mode = mode;
74
75 /* Open the file on the host */
76 fd = smh_trap(SYSOPEN, &open);
77 if (fd == -1)
78 printf("%s: ERROR fd %ld for file \'%s\'\n", __func__, fd,
79 fname);
80
81 return fd;
82}
83
84/*
85 * Read 'len' bytes of file into 'memp'. Returns 0 on success, else failure
86 */
87static long smh_read(long fd, void *memp, size_t len)
88{
89 long ret;
90 struct smh_read_s {
91 long fd;
92 void *memp;
93 size_t len;
94 } read;
95
Vadzim Dambrouski7bdf75c2015-10-19 19:40:15 +030096 debug("%s: fd %ld, memp %p, len %zu\n", __func__, fd, memp, len);
Linus Walleij9be5c662014-12-15 11:06:05 +010097
98 read.fd = fd;
99 read.memp = memp;
100 read.len = len;
101
102 ret = smh_trap(SYSREAD, &read);
103 if (ret < 0) {
104 /*
105 * The ARM handler allows for returning partial lengths,
106 * but in practice this never happens so rather than create
107 * hard to maintain partial read loops and such, just fail
108 * with an error message.
109 */
Vadzim Dambrouski7bdf75c2015-10-19 19:40:15 +0300110 printf("%s: ERROR ret %ld, fd %ld, len %zu memp %p\n",
Linus Walleij9be5c662014-12-15 11:06:05 +0100111 __func__, ret, fd, len, memp);
112 return -1;
113 }
114
115 return 0;
116}
117
118/*
119 * Close the file using the file descriptor
120 */
121static long smh_close(long fd)
122{
123 long ret;
124
125 debug("%s: fd %ld\n", __func__, fd);
126
127 ret = smh_trap(SYSCLOSE, &fd);
128 if (ret == -1)
129 printf("%s: ERROR fd %ld\n", __func__, fd);
130
131 return ret;
132}
133
134/*
135 * Get the file length from the file descriptor
136 */
137static long smh_len_fd(long fd)
138{
139 long ret;
140
141 debug("%s: fd %ld\n", __func__, fd);
142
143 ret = smh_trap(SYSFLEN, &fd);
144 if (ret == -1)
145 printf("%s: ERROR ret %ld, fd %ld\n", __func__, ret, fd);
146
147 return ret;
148}
149
Linus Walleij202a6742015-03-23 11:06:11 +0100150static int smh_load_file(const char * const name, ulong load_addr,
151 ulong *end_addr)
152{
153 long fd;
154 long len;
155 long ret;
156
157 fd = smh_open(name, "rb");
158 if (fd == -1)
159 return -1;
160
161 len = smh_len_fd(fd);
162 if (len < 0) {
163 smh_close(fd);
164 return -1;
165 }
166
167 ret = smh_read(fd, (void *)load_addr, len);
168 smh_close(fd);
169
170 if (ret == 0) {
171 *end_addr = load_addr + len - 1;
172 printf("loaded file %s from %08lX to %08lX, %08lX bytes\n",
173 name,
174 load_addr,
175 *end_addr,
176 len);
177 } else {
178 printf("read failed\n");
179 return 0;
180 }
181
182 return 0;
183}
184
Simon Glass09140112020-05-10 11:40:03 -0600185static int do_smhload(struct cmd_tbl *cmdtp, int flag, int argc,
186 char *const argv[])
Linus Walleij202a6742015-03-23 11:06:11 +0100187{
188 if (argc == 3 || argc == 4) {
189 ulong load_addr;
190 ulong end_addr = 0;
Ryan Harkin072c8c42017-03-02 17:45:16 +0000191 int ret;
Linus Walleij202a6742015-03-23 11:06:11 +0100192 char end_str[64];
193
194 load_addr = simple_strtoul(argv[2], NULL, 16);
195 if (!load_addr)
196 return -1;
197
198 ret = smh_load_file(argv[1], load_addr, &end_addr);
199 if (ret < 0)
Ryan Harkin072c8c42017-03-02 17:45:16 +0000200 return CMD_RET_FAILURE;
Linus Walleij202a6742015-03-23 11:06:11 +0100201
202 /* Optionally save returned end to the environment */
203 if (argc == 4) {
204 sprintf(end_str, "0x%08lx", end_addr);
Simon Glass382bee52017-08-03 12:22:09 -0600205 env_set(argv[3], end_str);
Linus Walleij202a6742015-03-23 11:06:11 +0100206 }
207 } else {
208 return CMD_RET_USAGE;
209 }
210 return 0;
211}
212
213U_BOOT_CMD(smhload, 4, 0, do_smhload, "load a file using semihosting",
214 "<file> 0x<address> [end var]\n"
215 " - load a semihosted file to the address specified\n"
216 " if the optional [end var] is specified, the end\n"
217 " address of the file will be stored in this environment\n"
218 " variable.\n");