From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37149) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WoGD8-0005bz-Tx for qemu-devel@nongnu.org; Sat, 24 May 2014 13:58:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WoGD2-0006wR-4p for qemu-devel@nongnu.org; Sat, 24 May 2014 13:58:22 -0400 Received: from ssl.serverraum.org ([88.198.40.39]:35334) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WoGD1-0006vC-VK for qemu-devel@nongnu.org; Sat, 24 May 2014 13:58:16 -0400 From: Michael Walle Date: Sat, 24 May 2014 19:57:46 +0200 Message-Id: <1400954270-12986-1-git-send-email-michael@walle.cc> Subject: [Qemu-devel] [PULL 0/4] lm32: semihosting support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Michael Walle Hi Peter, Please pull. As suggested by you, system calls are now intercepted in lm32_cpu_do_interrupt(). Apart from that i've rebased the submitted patches to the latest master. The following changes since commit 178ac111bca16c08a79b2609ebdc75197bea976a: Merge remote-tracking branch 'remotes/qmp-unstable/queue/qmp' into staging (2014-05-22 19:04:49 +0100) are available in the git repository at: git://github.com/mwalle/qemu tags/lm32-semihosting/20140524 for you to fetch changes up to 25156d10617794f9399d676ccd9a20f52e0c9f21: lm32: remove lm32_sys (2014-05-24 19:43:52 +0200) ---------------------------------------------------------------- Michael Walle (4): test: lm32: make test cases independent target-lm32: add semihosting support test: lm32: use semihosting for testing lm32: remove lm32_sys hw/misc/Makefile.objs | 1 - hw/misc/lm32_sys.c | 179 ----------------------------------- qemu-options.hx | 3 +- target-lm32/Makefile.objs | 1 + target-lm32/README | 15 ++- target-lm32/cpu.h | 1 + target-lm32/helper.c | 14 ++- target-lm32/lm32-semi.c | 215 +++++++++++++++++++++++++++++++++++++++++++ tests/tcg/lm32/Makefile | 15 +-- tests/tcg/lm32/crt.S | 4 +- tests/tcg/lm32/helper.S | 65 +++++++++++++ tests/tcg/lm32/macros.inc | 37 +++++--- tests/tcg/lm32/test_lb.S | 4 + tests/tcg/lm32/test_lbu.S | 4 + tests/tcg/lm32/test_lh.S | 4 + tests/tcg/lm32/test_lhu.S | 4 + tests/tcg/lm32/test_lw.S | 2 + tests/tcg/lm32/test_sb.S | 2 + tests/tcg/lm32/test_scall.S | 4 + tests/tcg/lm32/test_sh.S | 2 + tests/tcg/lm32/test_sw.S | 3 + trace-events | 3 - 22 files changed, 366 insertions(+), 216 deletions(-) delete mode 100644 hw/misc/lm32_sys.c create mode 100644 target-lm32/lm32-semi.c create mode 100644 tests/tcg/lm32/helper.S -- 1.7.10.4