qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/20] target-mips queue
@ 2015-06-26 10:25 Leon Alrae
  2015-06-26 10:25 ` [Qemu-devel] [PULL 01/20] include/softmmu-semi.h: Make semihosting support 64-bit clean Leon Alrae
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: Leon Alrae @ 2015-06-26 10:25 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Aurelien Jarno

Hi,

This pull request adds MIPS UHI semihosting and microMIPS32 R6 support.

Thanks,
Leon

Cc: Peter Maydell <peter.maydell@linaro.org>
Cc: Aurelien Jarno <aurelien@aurel32.net>

The following changes since commit 0a4a0312bf8b029cbd32a97db2cad669cf65ac49:

  Merge remote-tracking branch 'remotes/stefanha/tags/net-pull-request' into staging (2015-06-25 14:03:55 +0100)

are available in the git repository at:

  git://github.com/lalrae/qemu.git tags/mips-20150626

for you to fetch changes up to 4b3bcd016d83cc75f6a495c1db54b6c77f037adc:

  target-mips: add mips32r6-generic CPU definition (2015-06-26 09:22:26 +0100)

----------------------------------------------------------------
MIPS patches 2015-06-26

Changes:
* MIPS UHI semihosting support
* microMIPS32 R6 support

----------------------------------------------------------------
Leon Alrae (3):
      target-mips: remove identical code in different branch
      target-mips: add Unified Hosting Interface (UHI) support
      target-mips: convert host to MIPS errno values when required

Maciej W. Rozycki (1):
      include/softmmu-semi.h: Make semihosting support 64-bit clean

Matthew Fortune (1):
      hw/mips: Do not clear BEV for MIPS malta kernel load

Yongbok Kim (15):
      target-mips: fix {RD, WR}PGPR in microMIPS
      target-mips: add microMIPS TLBINV, TLBINVF
      target-mips: remove an unused argument
      target-mips: refactor {D}LSA, {D}ALIGN, {D}BITSWAP
      target-mips: rearrange gen_compute_compact_branch
      target-mips: raise RI exceptions when FIR.PS = 0
      target-mips: signal RI for removed instructions in microMIPS R6
      target-mips: add microMIPS32 R6 opcode enum
      target-mips: microMIPS32 R6 branches and jumps
      target-mips: microMIPS32 R6 POOL32A{XF} instructions
      target-mips: microMIPS32 R6 POOL32F instructions
      target-mips: microMIPS32 R6 POOL32{I, C} instructions
      target-mips: microMIPS32 R6 Major instructions
      target-mips: microMIPS32 R6 POOL16{A, C} instructions
      target-mips: add mips32r6-generic CPU definition

 hw/mips/mips_malta.c         |   11 +-
 include/exec/softmmu-semi.h  |   13 +-
 qemu-options.hx              |   10 +-
 target-mips/Makefile.objs    |    2 +-
 target-mips/helper.h         |    2 +
 target-mips/mips-semi.c      |  358 +++++++
 target-mips/translate.c      | 2163 ++++++++++++++++++++++++++++--------------
 target-mips/translate_init.c |   37 +
 8 files changed, 1882 insertions(+), 714 deletions(-)
 create mode 100644 target-mips/mips-semi.c

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

end of thread, other threads:[~2015-06-26 12:14 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-26 10:25 [Qemu-devel] [PULL 00/20] target-mips queue Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 01/20] include/softmmu-semi.h: Make semihosting support 64-bit clean Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 02/20] hw/mips: Do not clear BEV for MIPS malta kernel load Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 03/20] target-mips: remove identical code in different branch Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 04/20] target-mips: add Unified Hosting Interface (UHI) support Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 05/20] target-mips: convert host to MIPS errno values when required Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 06/20] target-mips: fix {RD, WR}PGPR in microMIPS Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 07/20] target-mips: add microMIPS TLBINV, TLBINVF Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 08/20] target-mips: remove an unused argument Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 09/20] target-mips: refactor {D}LSA, {D}ALIGN, {D}BITSWAP Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 10/20] target-mips: rearrange gen_compute_compact_branch Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 11/20] target-mips: raise RI exceptions when FIR.PS = 0 Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 12/20] target-mips: signal RI for removed instructions in microMIPS R6 Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 13/20] target-mips: add microMIPS32 R6 opcode enum Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 14/20] target-mips: microMIPS32 R6 branches and jumps Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 15/20] target-mips: microMIPS32 R6 POOL32A{XF} instructions Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 16/20] target-mips: microMIPS32 R6 POOL32F instructions Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 17/20] target-mips: microMIPS32 R6 POOL32{I, C} instructions Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 18/20] target-mips: microMIPS32 R6 Major instructions Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 19/20] target-mips: microMIPS32 R6 POOL16{A, C} instructions Leon Alrae
2015-06-26 10:25 ` [Qemu-devel] [PULL 20/20] target-mips: add mips32r6-generic CPU definition Leon Alrae
2015-06-26 12:13 ` [Qemu-devel] [PULL 00/20] target-mips queue Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).