Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* sim/arm RedBoot meminfo syscall [PATCH]
@ 2005-12-17 22:46 Shaun Jackman
  2006-01-23  2:01 ` Daniel Jacobowitz
  0 siblings, 1 reply; 7+ messages in thread
From: Shaun Jackman @ 2005-12-17 22:46 UTC (permalink / raw)
  To: gdb-patches

This patch implements the RedBoot meminfo syscall. In addition, rather
than ignoring unhandled syscalls, it sets errno to ENOSYS and returns
-1. This makes it possible to run "Hello, world!" compiled using
newlib and a RedBoot libgloss.

Cheers,
Shaun

2005-12-14  Shaun Jackman  <sjackman@gmail.com>

	* sim/arm/armos.c (ARMul_OSHandleSWI): Handle the RedBoot system
	call meminfo. Return ENOSYS for unhandled RedBoot syscalls.

Index: armos.c
===================================================================
RCS file: /cvs/src/src/sim/arm/armos.c,v
retrieving revision 1.23
diff -u -r1.23 armos.c
--- armos.c	17 Nov 2005 04:23:03 -0000	1.23
+++ armos.c	14 Dec 2005 18:36:19 -0000
@@ -859,9 +859,26 @@
  	    case 18: /* Time.  */
 	      sim_callback->printf_filtered
 		(sim_callback,
-		 "sim: unhandled RedBoot syscall '%d' encountered - ignoring\n",
+		 "sim: unhandled RedBoot syscall `%d' encountered - "
+		 "returning ENOSYS\n",
  		 state->Reg[0]);
-	      return FALSE;
+	      state->Reg[0] = -1;
+	      OSptr->ErrorNo = cb_host_to_target_errno
+		(sim_callback, ENOSYS);
+	      break;
+	    case 1001: /* Meminfo. */
+	      {
+		ARMword totmem = state->Reg[1],
+			topmem = state->Reg[2];
+		ARMword stack = state->MemSize > 0
+		  ? state->MemSize : ADDRUSERSTACK;
+		if (totmem != 0)
+		  ARMul_WriteWord (state, totmem, stack);
+		if (topmem != 0)
+		  ARMul_WriteWord (state, topmem, stack);
+		state->Reg[0] = 0;
+		break;
+	      }

  	    default:
 	      sim_callback->printf_filtered


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-02-02 13:49 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-12-17 22:46 sim/arm RedBoot meminfo syscall [PATCH] Shaun Jackman
2006-01-23  2:01 ` Daniel Jacobowitz
2006-01-23 15:57   ` Richard Earnshaw
2006-01-23 16:03     ` Daniel Jacobowitz
2006-01-24 23:19       ` Shaun Jackman
2006-02-02  1:49         ` Daniel Jacobowitz
2006-02-02 13:49           ` Shaun Jackman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox