qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v2 00/14] target-mips queue
@ 2015-02-14 17:44 Leon Alrae
  2015-02-14 17:44 ` [Qemu-devel] [PULL v2 01/14] isa: add memory space parameter to isa_bus_new Leon Alrae
                   ` (15 more replies)
  0 siblings, 16 replies; 18+ messages in thread
From: Leon Alrae @ 2015-02-14 17:44 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Aurelien Jarno

Hi,

Here is version 2 of target-mips pullreq - rebased and with signed tag.

Thanks,
Leon

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

The following changes since commit cd2d5541271f1934345d8ca42f5fafff1744eee7:

  Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20150212' into staging (2015-02-13 11:44:50 +0000)

are available in the git repository at:

  git://github.com/lalrae/qemu.git tags/mips-20150213-2

for you to fetch changes up to 1ab2aea2489f34a05dabfe5bd91a76d89dd8c922:

  linux-user: correct stat structure in MIPS N32 (2015-02-13 14:11:29 +0000)

----------------------------------------------------------------
MIPS patches 2015-02-13

Changes:
* bug fixes, cleanups and minor improvements

----------------------------------------------------------------
Hervé Poussineau (7):
      isa: add memory space parameter to isa_bus_new
      jazz: do not explode QEMUMachineInitArgs structure
      jazz: remove usage of isa_mem_base
      mips: remove isa_mem_base usage
      piix4: use PCI address space instead of system memory
      gt64xxx: remove isa_mem_base usage
      isa: remove isa_mem_base variable

Leon Alrae (6):
      target-mips: fix detection of the end of the page during translation
      target-mips: ll and lld cause AdEL exception for unaligned address
      target-mips: use CP0EnLo_XI instead of magic number
      target-mips: fix broken snapshotting
      target-mips: pass 0 instead of -1 as rs in microMIPS LUI instruction
      linux-user: correct stat structure in MIPS N32

Maciej W. Rozycki (1):
      target-mips: Make CP0.Status.CU1 read-only for the 5Kc and 5KEc processors

 hw/alpha/typhoon.c           |  2 +-
 hw/display/cirrus_vga.c      |  2 +-
 hw/display/vga-isa.c         |  2 +-
 hw/display/vga.c             |  3 +-
 hw/i386/pc_piix.c            |  2 +-
 hw/isa/i82378.c              |  3 +-
 hw/isa/isa-bus.c             | 12 ++++--
 hw/isa/lpc_ich9.c            |  2 +-
 hw/isa/piix4.c               |  3 +-
 hw/isa/vt82c686.c            |  3 +-
 hw/mips/gt64xxx_pci.c        | 95 +++++++++++++++++++++++++++++++-------------
 hw/mips/mips_jazz.c          | 44 ++++++++++----------
 hw/mips/mips_r4k.c           | 19 ++++-----
 hw/pci-host/piix.c           |  3 +-
 hw/sparc64/sun4u.c           |  3 +-
 include/hw/isa/isa.h         |  6 +--
 linux-user/syscall_defs.h    | 86 +++++++++------------------------------
 target-mips/machine.c        |  6 ++-
 target-mips/op_helper.c      | 10 +++--
 target-mips/translate.c      | 11 +++--
 target-mips/translate_init.c |  4 +-
 21 files changed, 165 insertions(+), 156 deletions(-)

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

end of thread, other threads:[~2015-02-24 12:07 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-14 17:44 [Qemu-devel] [PULL v2 00/14] target-mips queue Leon Alrae
2015-02-14 17:44 ` [Qemu-devel] [PULL v2 01/14] isa: add memory space parameter to isa_bus_new Leon Alrae
2015-02-14 17:44 ` [Qemu-devel] [PULL v2 02/14] jazz: do not explode QEMUMachineInitArgs structure Leon Alrae
2015-02-14 17:44 ` [Qemu-devel] [PULL v2 03/14] jazz: remove usage of isa_mem_base Leon Alrae
2015-02-14 17:44 ` [Qemu-devel] [PULL v2 04/14] mips: remove isa_mem_base usage Leon Alrae
2015-02-14 17:44 ` [Qemu-devel] [PULL v2 05/14] piix4: use PCI address space instead of system memory Leon Alrae
2015-02-14 17:44 ` [Qemu-devel] [PULL v2 06/14] gt64xxx: remove isa_mem_base usage Leon Alrae
2015-02-14 17:44 ` [Qemu-devel] [PULL v2 07/14] isa: remove isa_mem_base variable Leon Alrae
2015-02-14 17:44 ` [Qemu-devel] [PULL v2 08/14] target-mips: Make CP0.Status.CU1 read-only for the 5Kc and 5KEc processors Leon Alrae
2015-02-14 17:44 ` [Qemu-devel] [PULL v2 09/14] target-mips: fix detection of the end of the page during translation Leon Alrae
2015-02-14 17:45 ` [Qemu-devel] [PULL v2 10/14] target-mips: ll and lld cause AdEL exception for unaligned address Leon Alrae
2015-02-14 17:45 ` [Qemu-devel] [PULL v2 11/14] target-mips: use CP0EnLo_XI instead of magic number Leon Alrae
2015-02-14 17:45 ` [Qemu-devel] [PULL v2 12/14] target-mips: fix broken snapshotting Leon Alrae
2015-02-14 17:45 ` [Qemu-devel] [PULL v2 13/14] target-mips: pass 0 instead of -1 as rs in microMIPS LUI instruction Leon Alrae
2015-02-14 17:45 ` [Qemu-devel] [PULL v2 14/14] linux-user: correct stat structure in MIPS N32 Leon Alrae
2015-02-17  8:02 ` [Qemu-devel] [PULL v2 00/14] target-mips queue Peter Maydell
2015-02-17 15:40   ` Stefan Hajnoczi
2015-02-24 12:07 ` 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).