Statistics
| Branch: | Revision:

root / m68k-semi.c @ 579a97f7

History | View | Annotate | Download (11.8 kB)

1 a87295e8 pbrook
/*
2 a87295e8 pbrook
 *  m68k/ColdFire Semihosting syscall interface
3 5fafdf24 ths
 *
4 a87295e8 pbrook
 *  Copyright (c) 2005-2007 CodeSourcery.
5 a87295e8 pbrook
 *
6 a87295e8 pbrook
 *  This program is free software; you can redistribute it and/or modify
7 a87295e8 pbrook
 *  it under the terms of the GNU General Public License as published by
8 a87295e8 pbrook
 *  the Free Software Foundation; either version 2 of the License, or
9 a87295e8 pbrook
 *  (at your option) any later version.
10 a87295e8 pbrook
 *
11 a87295e8 pbrook
 *  This program is distributed in the hope that it will be useful,
12 a87295e8 pbrook
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 a87295e8 pbrook
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 a87295e8 pbrook
 *  GNU General Public License for more details.
15 a87295e8 pbrook
 *
16 a87295e8 pbrook
 *  You should have received a copy of the GNU General Public License
17 a87295e8 pbrook
 *  along with this program; if not, write to the Free Software
18 a87295e8 pbrook
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 a87295e8 pbrook
 */
20 a87295e8 pbrook
21 a87295e8 pbrook
#include <sys/types.h>
22 a87295e8 pbrook
#include <sys/stat.h>
23 a87295e8 pbrook
#include <errno.h>
24 a87295e8 pbrook
#include <fcntl.h>
25 a87295e8 pbrook
#include <unistd.h>
26 a87295e8 pbrook
#include <stdlib.h>
27 a87295e8 pbrook
#include <stdio.h>
28 a87295e8 pbrook
#include <sys/time.h>
29 a87295e8 pbrook
#include <time.h>
30 a87295e8 pbrook
31 a87295e8 pbrook
#include "cpu.h"
32 a87295e8 pbrook
#if defined(CONFIG_USER_ONLY)
33 a87295e8 pbrook
#include "qemu.h"
34 a87295e8 pbrook
#define SEMIHOSTING_HEAP_SIZE (128 * 1024 * 1024)
35 a87295e8 pbrook
#else
36 a87295e8 pbrook
#include "vl.h"
37 a87295e8 pbrook
#include "softmmu-semi.h"
38 a87295e8 pbrook
#endif
39 a87295e8 pbrook
40 a87295e8 pbrook
#define HOSTED_EXIT  0
41 a87295e8 pbrook
#define HOSTED_INIT_SIM 1
42 a87295e8 pbrook
#define HOSTED_OPEN 2
43 a87295e8 pbrook
#define HOSTED_CLOSE 3
44 a87295e8 pbrook
#define HOSTED_READ 4
45 a87295e8 pbrook
#define HOSTED_WRITE 5
46 a87295e8 pbrook
#define HOSTED_LSEEK 6
47 a87295e8 pbrook
#define HOSTED_RENAME 7
48 a87295e8 pbrook
#define HOSTED_UNLINK 8
49 a87295e8 pbrook
#define HOSTED_STAT 9
50 a87295e8 pbrook
#define HOSTED_FSTAT 10
51 a87295e8 pbrook
#define HOSTED_GETTIMEOFDAY 11
52 a87295e8 pbrook
#define HOSTED_ISATTY 12
53 a87295e8 pbrook
#define HOSTED_SYSTEM 13
54 a87295e8 pbrook
55 a87295e8 pbrook
typedef uint32_t gdb_mode_t;
56 a87295e8 pbrook
typedef uint32_t gdb_time_t;
57 a87295e8 pbrook
58 a87295e8 pbrook
struct m68k_gdb_stat {
59 a87295e8 pbrook
  uint32_t    gdb_st_dev;     /* device */
60 a87295e8 pbrook
  uint32_t    gdb_st_ino;     /* inode */
61 a87295e8 pbrook
  gdb_mode_t  gdb_st_mode;    /* protection */
62 a87295e8 pbrook
  uint32_t    gdb_st_nlink;   /* number of hard links */
63 a87295e8 pbrook
  uint32_t    gdb_st_uid;     /* user ID of owner */
64 a87295e8 pbrook
  uint32_t    gdb_st_gid;     /* group ID of owner */
65 a87295e8 pbrook
  uint32_t    gdb_st_rdev;    /* device type (if inode device) */
66 a87295e8 pbrook
  uint64_t    gdb_st_size;    /* total size, in bytes */
67 a87295e8 pbrook
  uint64_t    gdb_st_blksize; /* blocksize for filesystem I/O */
68 a87295e8 pbrook
  uint64_t    gdb_st_blocks;  /* number of blocks allocated */
69 a87295e8 pbrook
  gdb_time_t  gdb_st_atime;   /* time of last access */
70 a87295e8 pbrook
  gdb_time_t  gdb_st_mtime;   /* time of last modification */
71 a87295e8 pbrook
  gdb_time_t  gdb_st_ctime;   /* time of last change */
72 a87295e8 pbrook
} __attribute__((packed));
73 a87295e8 pbrook
74 a87295e8 pbrook
struct gdb_timeval {
75 a87295e8 pbrook
  gdb_time_t tv_sec;  /* second */
76 a87295e8 pbrook
  uint64_t tv_usec;   /* microsecond */
77 a87295e8 pbrook
} __attribute__((packed));
78 a87295e8 pbrook
79 a87295e8 pbrook
#define GDB_O_RDONLY   0x0
80 a87295e8 pbrook
#define GDB_O_WRONLY   0x1
81 a87295e8 pbrook
#define GDB_O_RDWR     0x2
82 a87295e8 pbrook
#define GDB_O_APPEND   0x8
83 a87295e8 pbrook
#define GDB_O_CREAT  0x200
84 a87295e8 pbrook
#define GDB_O_TRUNC  0x400
85 a87295e8 pbrook
#define GDB_O_EXCL   0x800
86 a87295e8 pbrook
87 a87295e8 pbrook
static int translate_openflags(int flags)
88 a87295e8 pbrook
{
89 a87295e8 pbrook
    int hf;
90 a87295e8 pbrook
91 a87295e8 pbrook
    if (flags & GDB_O_WRONLY)
92 a87295e8 pbrook
        hf = O_WRONLY;
93 a87295e8 pbrook
    else if (flags & GDB_O_RDWR)
94 a87295e8 pbrook
        hf = O_RDWR;
95 a87295e8 pbrook
    else
96 a87295e8 pbrook
        hf = O_RDONLY;
97 a87295e8 pbrook
98 a87295e8 pbrook
    if (flags & GDB_O_APPEND) hf |= O_APPEND;
99 a87295e8 pbrook
    if (flags & GDB_O_CREAT) hf |= O_CREAT;
100 a87295e8 pbrook
    if (flags & GDB_O_TRUNC) hf |= O_TRUNC;
101 a87295e8 pbrook
    if (flags & GDB_O_EXCL) hf |= O_EXCL;
102 a87295e8 pbrook
103 a87295e8 pbrook
    return hf;
104 a87295e8 pbrook
}
105 a87295e8 pbrook
106 a87295e8 pbrook
static void translate_stat(CPUState *env, target_ulong addr, struct stat *s)
107 a87295e8 pbrook
{
108 a87295e8 pbrook
    struct m68k_gdb_stat *p;
109 a87295e8 pbrook
110 579a97f7 bellard
    if (!(p = lock_user(VERIFY_WRITE, addr, sizeof(struct m68k_gdb_stat), 0)))
111 579a97f7 bellard
        /* FIXME - should this return an error code? */
112 579a97f7 bellard
        return;
113 a87295e8 pbrook
    p->gdb_st_dev = cpu_to_be32(s->st_dev);
114 a87295e8 pbrook
    p->gdb_st_ino = cpu_to_be32(s->st_ino);
115 a87295e8 pbrook
    p->gdb_st_mode = cpu_to_be32(s->st_mode);
116 a87295e8 pbrook
    p->gdb_st_nlink = cpu_to_be32(s->st_nlink);
117 a87295e8 pbrook
    p->gdb_st_uid = cpu_to_be32(s->st_uid);
118 a87295e8 pbrook
    p->gdb_st_gid = cpu_to_be32(s->st_gid);
119 a87295e8 pbrook
    p->gdb_st_rdev = cpu_to_be32(s->st_rdev);
120 a87295e8 pbrook
    p->gdb_st_size = cpu_to_be64(s->st_size);
121 29b3a662 pbrook
#ifdef _WIN32
122 29b3a662 pbrook
    /* Windows stat is missing some fields.  */
123 29b3a662 pbrook
    p->gdb_st_blksize = 0;
124 29b3a662 pbrook
    p->gdb_st_blocks = 0;
125 29b3a662 pbrook
#else
126 a87295e8 pbrook
    p->gdb_st_blksize = cpu_to_be64(s->st_blksize);
127 a87295e8 pbrook
    p->gdb_st_blocks = cpu_to_be64(s->st_blocks);
128 29b3a662 pbrook
#endif
129 a87295e8 pbrook
    p->gdb_st_atime = cpu_to_be32(s->st_atime);
130 a87295e8 pbrook
    p->gdb_st_mtime = cpu_to_be32(s->st_mtime);
131 a87295e8 pbrook
    p->gdb_st_ctime = cpu_to_be32(s->st_ctime);
132 a87295e8 pbrook
    unlock_user(p, addr, sizeof(struct m68k_gdb_stat));
133 a87295e8 pbrook
}
134 a87295e8 pbrook
135 a87295e8 pbrook
static int m68k_semi_is_fseek;
136 a87295e8 pbrook
137 a87295e8 pbrook
static void m68k_semi_cb(CPUState *env, target_ulong ret, target_ulong err)
138 a87295e8 pbrook
{
139 a87295e8 pbrook
    target_ulong args;
140 a87295e8 pbrook
141 a87295e8 pbrook
    args = env->dregs[1];
142 a87295e8 pbrook
    if (m68k_semi_is_fseek) {
143 a87295e8 pbrook
        /* FIXME: We've already lost the high bits of the fseek
144 a87295e8 pbrook
           return value.  */
145 a87295e8 pbrook
        tput32(args, 0);
146 a87295e8 pbrook
        args += 4;
147 a87295e8 pbrook
        m68k_semi_is_fseek = 0;
148 a87295e8 pbrook
    }
149 a87295e8 pbrook
    tput32(args, ret);
150 a87295e8 pbrook
    tput32(args + 4, errno);
151 a87295e8 pbrook
}
152 a87295e8 pbrook
153 a87295e8 pbrook
#define ARG(x) tget32(args + (x) * 4)
154 a87295e8 pbrook
#define PARG(x) ((unsigned long)ARG(x))
155 a87295e8 pbrook
void do_m68k_semihosting(CPUM68KState *env, int nr)
156 a87295e8 pbrook
{
157 a87295e8 pbrook
    uint32_t args;
158 a87295e8 pbrook
    void *p;
159 a87295e8 pbrook
    void *q;
160 a87295e8 pbrook
    uint32_t len;
161 a87295e8 pbrook
    uint32_t result;
162 a87295e8 pbrook
163 a87295e8 pbrook
    args = env->dregs[1];
164 a87295e8 pbrook
    switch (nr) {
165 a87295e8 pbrook
    case HOSTED_EXIT:
166 a87295e8 pbrook
        exit(env->dregs[0]);
167 a87295e8 pbrook
    case HOSTED_OPEN:
168 a87295e8 pbrook
        if (use_gdb_syscalls()) {
169 a87295e8 pbrook
            gdb_do_syscall(m68k_semi_cb, "open,%s,%x,%x", ARG(0), (int)ARG(1),
170 a87295e8 pbrook
                           ARG(2), ARG(3));
171 a87295e8 pbrook
            return;
172 a87295e8 pbrook
        } else {
173 579a97f7 bellard
            if (!(p = lock_user_string(ARG(0)))) {
174 579a97f7 bellard
                /* FIXME - check error code? */
175 579a97f7 bellard
                result = -1;
176 579a97f7 bellard
            } else {
177 579a97f7 bellard
                result = open(p, translate_openflags(ARG(2)), ARG(3));
178 579a97f7 bellard
                unlock_user(p, ARG(0), 0);
179 579a97f7 bellard
            }
180 a87295e8 pbrook
        }
181 a87295e8 pbrook
        break;
182 a87295e8 pbrook
    case HOSTED_CLOSE:
183 a87295e8 pbrook
        {
184 a87295e8 pbrook
            /* Ignore attempts to close stdin/out/err.  */
185 a87295e8 pbrook
            int fd = ARG(0);
186 a87295e8 pbrook
            if (fd > 2) {
187 a87295e8 pbrook
                if (use_gdb_syscalls()) {
188 a87295e8 pbrook
                    gdb_do_syscall(m68k_semi_cb, "close,%x", ARG(0));
189 a87295e8 pbrook
                    return;
190 a87295e8 pbrook
                } else {
191 a87295e8 pbrook
                    result = close(fd);
192 a87295e8 pbrook
                }
193 a87295e8 pbrook
            } else {
194 a87295e8 pbrook
                result = 0;
195 a87295e8 pbrook
            }
196 a87295e8 pbrook
            break;
197 a87295e8 pbrook
        }
198 a87295e8 pbrook
    case HOSTED_READ:
199 a87295e8 pbrook
        len = ARG(2);
200 a87295e8 pbrook
        if (use_gdb_syscalls()) {
201 a87295e8 pbrook
            gdb_do_syscall(m68k_semi_cb, "read,%x,%x,%x",
202 a87295e8 pbrook
                           ARG(0), ARG(1), len);
203 a87295e8 pbrook
            return;
204 a87295e8 pbrook
        } else {
205 579a97f7 bellard
            if (!(p = lock_user(VERIFY_WRITE, ARG(1), len, 0))) {
206 579a97f7 bellard
                /* FIXME - check error code? */
207 579a97f7 bellard
                result = -1;
208 579a97f7 bellard
            } else {
209 579a97f7 bellard
                result = read(ARG(0), p, len);
210 579a97f7 bellard
                unlock_user(p, ARG(1), len);
211 579a97f7 bellard
            }
212 a87295e8 pbrook
        }
213 a87295e8 pbrook
        break;
214 a87295e8 pbrook
    case HOSTED_WRITE:
215 a87295e8 pbrook
        len = ARG(2);
216 a87295e8 pbrook
        if (use_gdb_syscalls()) {
217 a87295e8 pbrook
            gdb_do_syscall(m68k_semi_cb, "write,%x,%x,%x",
218 a87295e8 pbrook
                           ARG(0), ARG(1), len);
219 a87295e8 pbrook
            return;
220 a87295e8 pbrook
        } else {
221 579a97f7 bellard
            if (!(p = lock_user(VERIFY_READ, ARG(1), len, 1))) {
222 579a97f7 bellard
                /* FIXME - check error code? */
223 579a97f7 bellard
                result = -1;
224 579a97f7 bellard
            } else {
225 579a97f7 bellard
                result = write(ARG(0), p, len);
226 579a97f7 bellard
                unlock_user(p, ARG(0), 0);
227 579a97f7 bellard
            }
228 a87295e8 pbrook
        }
229 a87295e8 pbrook
        break;
230 a87295e8 pbrook
    case HOSTED_LSEEK:
231 a87295e8 pbrook
        {
232 a87295e8 pbrook
            uint64_t off;
233 a87295e8 pbrook
            off = (uint32_t)ARG(2) | ((uint64_t)ARG(1) << 32);
234 a87295e8 pbrook
            if (use_gdb_syscalls()) {
235 a87295e8 pbrook
                m68k_semi_is_fseek = 1;
236 a87295e8 pbrook
                gdb_do_syscall(m68k_semi_cb, "fseek,%x,%lx,%x",
237 a87295e8 pbrook
                               ARG(0), off, ARG(3));
238 a87295e8 pbrook
            } else {
239 a87295e8 pbrook
                off = lseek(ARG(0), off, ARG(3));
240 a87295e8 pbrook
                tput32(args, off >> 32);
241 a87295e8 pbrook
                tput32(args + 4, off);
242 a87295e8 pbrook
                tput32(args + 8, errno);
243 a87295e8 pbrook
            }
244 a87295e8 pbrook
            return;
245 a87295e8 pbrook
        }
246 a87295e8 pbrook
    case HOSTED_RENAME:
247 a87295e8 pbrook
        if (use_gdb_syscalls()) {
248 5fafdf24 ths
            gdb_do_syscall(m68k_semi_cb, "rename,%s,%s",
249 a87295e8 pbrook
                           ARG(0), (int)ARG(1), ARG(2), (int)ARG(3));
250 a87295e8 pbrook
            return;
251 a87295e8 pbrook
        } else {
252 a87295e8 pbrook
            p = lock_user_string(ARG(0));
253 a87295e8 pbrook
            q = lock_user_string(ARG(2));
254 579a97f7 bellard
            if (!p || !q) {
255 579a97f7 bellard
                /* FIXME - check error code? */
256 579a97f7 bellard
                result = -1;
257 579a97f7 bellard
            } else {
258 579a97f7 bellard
                result = rename(p, q);
259 579a97f7 bellard
            }
260 a87295e8 pbrook
            unlock_user(p, ARG(0), 0);
261 a87295e8 pbrook
            unlock_user(q, ARG(2), 0);
262 a87295e8 pbrook
        }
263 a87295e8 pbrook
        break;
264 a87295e8 pbrook
    case HOSTED_UNLINK:
265 a87295e8 pbrook
        if (use_gdb_syscalls()) {
266 a87295e8 pbrook
            gdb_do_syscall(m68k_semi_cb, "unlink,%s",
267 a87295e8 pbrook
                           ARG(0), (int)ARG(1));
268 a87295e8 pbrook
            return;
269 a87295e8 pbrook
        } else {
270 579a97f7 bellard
            if (!(p = lock_user_string(ARG(0)))) {
271 579a97f7 bellard
                /* FIXME - check error code? */
272 579a97f7 bellard
                result = -1;
273 579a97f7 bellard
            } else {
274 579a97f7 bellard
                result = unlink(p);
275 579a97f7 bellard
                unlock_user(p, ARG(0), 0);
276 579a97f7 bellard
            }
277 a87295e8 pbrook
        }
278 a87295e8 pbrook
        break;
279 a87295e8 pbrook
    case HOSTED_STAT:
280 a87295e8 pbrook
        if (use_gdb_syscalls()) {
281 a87295e8 pbrook
            gdb_do_syscall(m68k_semi_cb, "stat,%s,%x",
282 a87295e8 pbrook
                           ARG(0), (int)ARG(1), ARG(2));
283 a87295e8 pbrook
            return;
284 a87295e8 pbrook
        } else {
285 a87295e8 pbrook
            struct stat s;
286 579a97f7 bellard
            if (!(p = lock_user_string(ARG(0)))) {
287 579a97f7 bellard
                /* FIXME - check error code? */
288 579a97f7 bellard
                result = -1;
289 579a97f7 bellard
            } else {
290 579a97f7 bellard
                result = stat(p, &s);
291 579a97f7 bellard
                unlock_user(p, ARG(0), 0);
292 579a97f7 bellard
            }
293 a87295e8 pbrook
            if (result == 0) {
294 a87295e8 pbrook
                translate_stat(env, ARG(2), &s);
295 a87295e8 pbrook
            }
296 a87295e8 pbrook
        }
297 a87295e8 pbrook
        break;
298 a87295e8 pbrook
    case HOSTED_FSTAT:
299 a87295e8 pbrook
        if (use_gdb_syscalls()) {
300 a87295e8 pbrook
            gdb_do_syscall(m68k_semi_cb, "fstat,%x,%x",
301 a87295e8 pbrook
                           ARG(0), ARG(1));
302 a87295e8 pbrook
            return;
303 a87295e8 pbrook
        } else {
304 a87295e8 pbrook
            struct stat s;
305 a87295e8 pbrook
            result = fstat(ARG(0), &s);
306 a87295e8 pbrook
            if (result == 0) {
307 a87295e8 pbrook
                translate_stat(env, ARG(1), &s);
308 a87295e8 pbrook
            }
309 a87295e8 pbrook
        }
310 a87295e8 pbrook
        break;
311 a87295e8 pbrook
    case HOSTED_GETTIMEOFDAY:
312 a87295e8 pbrook
        if (use_gdb_syscalls()) {
313 a87295e8 pbrook
            gdb_do_syscall(m68k_semi_cb, "gettimeofday,%x,%x",
314 a87295e8 pbrook
                           ARG(0), ARG(1));
315 a87295e8 pbrook
            return;
316 a87295e8 pbrook
        } else {
317 29b3a662 pbrook
            qemu_timeval tv;
318 a87295e8 pbrook
            struct gdb_timeval *p;
319 29b3a662 pbrook
            result = qemu_gettimeofday(&tv);
320 a87295e8 pbrook
            if (result != 0) {
321 579a97f7 bellard
                if (!(p = lock_user(VERIFY_WRITE,
322 579a97f7 bellard
                                    ARG(0), sizeof(struct gdb_timeval), 0))) {
323 579a97f7 bellard
                    /* FIXME - check error code? */
324 579a97f7 bellard
                    result = -1;
325 579a97f7 bellard
                } else {
326 579a97f7 bellard
                    p->tv_sec = cpu_to_be32(tv.tv_sec);
327 579a97f7 bellard
                    p->tv_usec = cpu_to_be64(tv.tv_usec);
328 579a97f7 bellard
                    unlock_user(p, ARG(0), sizeof(struct gdb_timeval));
329 579a97f7 bellard
                }
330 a87295e8 pbrook
            }
331 a87295e8 pbrook
        }
332 a87295e8 pbrook
        break;
333 a87295e8 pbrook
    case HOSTED_ISATTY:
334 a87295e8 pbrook
        if (use_gdb_syscalls()) {
335 a87295e8 pbrook
            gdb_do_syscall(m68k_semi_cb, "isatty,%x", ARG(0));
336 a87295e8 pbrook
            return;
337 a87295e8 pbrook
        } else {
338 a87295e8 pbrook
            result = isatty(ARG(0));
339 a87295e8 pbrook
        }
340 a87295e8 pbrook
        break;
341 a87295e8 pbrook
    case HOSTED_SYSTEM:
342 a87295e8 pbrook
        if (use_gdb_syscalls()) {
343 a87295e8 pbrook
            gdb_do_syscall(m68k_semi_cb, "system,%s",
344 a87295e8 pbrook
                           ARG(0), (int)ARG(1));
345 a87295e8 pbrook
            return;
346 a87295e8 pbrook
        } else {
347 579a97f7 bellard
            if (!(p = lock_user_string(ARG(0)))) {
348 579a97f7 bellard
                /* FIXME - check error code? */
349 579a97f7 bellard
                result = -1;
350 579a97f7 bellard
            } else {
351 579a97f7 bellard
                result = system(p);
352 579a97f7 bellard
                unlock_user(p, ARG(0), 0);
353 579a97f7 bellard
            }
354 a87295e8 pbrook
        }
355 a87295e8 pbrook
        break;
356 a87295e8 pbrook
    case HOSTED_INIT_SIM:
357 a87295e8 pbrook
#if defined(CONFIG_USER_ONLY)
358 a87295e8 pbrook
        {
359 a87295e8 pbrook
        TaskState *ts = env->opaque;
360 a87295e8 pbrook
        /* Allocate the heap using sbrk.  */
361 a87295e8 pbrook
        if (!ts->heap_limit) {
362 a87295e8 pbrook
            long ret;
363 a87295e8 pbrook
            uint32_t size;
364 a87295e8 pbrook
            uint32_t base;
365 a87295e8 pbrook
366 a87295e8 pbrook
            base = do_brk(0);
367 a87295e8 pbrook
            size = SEMIHOSTING_HEAP_SIZE;
368 a87295e8 pbrook
            /* Try a big heap, and reduce the size if that fails.  */
369 a87295e8 pbrook
            for (;;) {
370 a87295e8 pbrook
                ret = do_brk(base + size);
371 a87295e8 pbrook
                if (ret != -1)
372 a87295e8 pbrook
                    break;
373 a87295e8 pbrook
                size >>= 1;
374 a87295e8 pbrook
            }
375 a87295e8 pbrook
            ts->heap_limit = base + size;
376 a87295e8 pbrook
        }
377 a87295e8 pbrook
        /* This call may happen before we have writable memory, so return
378 a87295e8 pbrook
           values directly in registers.  */
379 a87295e8 pbrook
        env->dregs[1] = ts->heap_limit;
380 a87295e8 pbrook
        env->aregs[7] = ts->stack_base;
381 a87295e8 pbrook
        }
382 a87295e8 pbrook
#else
383 a87295e8 pbrook
        /* FIXME: This is wrong for boards where RAM does not start at
384 a87295e8 pbrook
           address zero.  */
385 a87295e8 pbrook
        env->dregs[1] = ram_size;
386 a87295e8 pbrook
        env->aregs[7] = ram_size;
387 a87295e8 pbrook
#endif
388 a87295e8 pbrook
        return;
389 a87295e8 pbrook
    default:
390 a87295e8 pbrook
        cpu_abort(env, "Unsupported semihosting syscall %d\n", nr);
391 a87295e8 pbrook
        result = 0;
392 a87295e8 pbrook
    }
393 a87295e8 pbrook
    tput32(args, result);
394 a87295e8 pbrook
    tput32(args + 4, errno);
395 a87295e8 pbrook
}