qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/7] target-mips queue
@ 2014-11-07 16:56 Leon Alrae
  2014-11-07 16:56 ` [Qemu-devel] [PULL 1/7] mips: Remove CONFIG_VT82C686 from non-Fulong configs Leon Alrae
                   ` (7 more replies)
  0 siblings, 8 replies; 13+ messages in thread
From: Leon Alrae @ 2014-11-07 16:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Aurelien Jarno

Hi,

A bunch of bug fixes for 2.2, please pull.

Thanks,
Leon

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

The following changes since commit 6e76d125f244e10676b917208f2a074729820246:

  Update version for v2.2.0-rc0 release (2014-11-05 15:21:04 +0000)

are available in the git repository at:

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

for you to fetch changes up to cb269f273fdbdb26ddb1cba4a0fe2249418a8e77:

  target-mips: fix multiple TCG registers covering same data (2014-11-07 14:15:28 +0000)

----------------------------------------------------------------
MIPS patches 2014-11-07

Changes:
* bug fixes

----------------------------------------------------------------
Leon Alrae (1):
      target-mips: fix for missing delay slot in BC1EQZ and BC1NEZ

Maciej W. Rozycki (5):
      mips: Remove CONFIG_VT82C686 from non-Fulong configs
      mips: Respect CP0.Status.CU1 for microMIPS FP branches
      mips: Add macros for CP0.Config3 and CP0.Config4 bits
      mips: Set the CP0.Config3.DSP and CP0.Config3.DSP2P bits
      mips: Ensure PC update with MTC0 single-stepping

Yongbok Kim (1):
      target-mips: fix multiple TCG registers covering same data

 default-configs/mips-softmmu.mak   |  1 -
 default-configs/mips64-softmmu.mak |  1 -
 default-configs/mipsel-softmmu.mak |  1 -
 target-mips/cpu.h                  | 13 +++++++++++++
 target-mips/translate.c            | 20 ++++++++++++--------
 target-mips/translate_init.c       |  8 +++++---
 6 files changed, 30 insertions(+), 14 deletions(-)

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [Qemu-devel] [PULL 0/7] target-mips queue
@ 2017-09-21 13:38 Yongbok Kim
  2017-09-21 13:55 ` no-reply
  2017-09-21 14:41 ` Peter Maydell
  0 siblings, 2 replies; 13+ messages in thread
From: Yongbok Kim @ 2017-09-21 13:38 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell

Hi, 

The patch 1 and 2 contain checkpatch.pl errors but patch 1 is relocating a file
and patch 2 has false positive warnings.

Regards,
Yongbok

The following changes since commit ff5667ed53c544c4dc88dcd7cb23cc509c9a55e0:

  Merge remote-tracking branch 'remotes/mcayland/tags/qemu-sparc-signed' into staging (2017-09-21 10:56:09 +0100)

are available in the git repository at:

  git://github.com/yongbok/upstream-qemu.git tags/mips-20170921

for you to fetch changes up to 2a2be359c4335607c7f746cf27c412c08ab89aff:

  mips: Improve macro parenthesization (2017-09-21 13:25:41 +0100)

----------------------------------------------------------------
MIPS patches 2017-09-21

Changes:
QOMify MIPS cpu
Improve macro parenthesization

----------------------------------------------------------------

Eric Blake (1):
  mips: Improve macro parenthesization

Igor Mammedov (2):
  mips: MIPSCPU model subclasses
  mips: replace cpu_mips_init() with cpu_generic_init()

Philippe Mathieu-Daudé (4):
  mips: move hw/mips/cputimer.c to target/mips/
  mips: introduce internal.h and cleanup cpu.h
  mips: split cpu_mips_realize_env() out of cpu_mips_init()
  mips: call cpu_mips_realize_env() from mips_cpu_realizefn()

 hw/mips/Makefile.objs        |   2 +-
 hw/mips/cps.c                |   2 +-
 hw/mips/cputimer.c           | 165 -----------------
 hw/mips/mips_fulong2e.c      |   2 +-
 hw/mips/mips_jazz.c          |   2 +-
 hw/mips/mips_malta.c         |   2 +-
 hw/mips/mips_mipssim.c       |   2 +-
 hw/mips/mips_r4k.c           |   2 +-
 target/mips/Makefile.objs    |   2 +-
 target/mips/cp0_timer.c      | 165 +++++++++++++++++
 target/mips/cpu-qom.h        |   1 +
 target/mips/cpu.c            |  54 +++++-
 target/mips/cpu.h            | 357 +-----------------------------------
 target/mips/dsp_helper.c     |  56 +++---
 target/mips/gdbstub.c        |   1 +
 target/mips/helper.c         |   1 +
 target/mips/internal.h       | 422 +++++++++++++++++++++++++++++++++++++++++++
 target/mips/kvm.c            |   1 +
 target/mips/machine.c        |   1 +
 target/mips/msa_helper.c     |   1 +
 target/mips/op_helper.c      |   1 +
 target/mips/translate.c      |  23 +--
 target/mips/translate_init.c |  58 +-----
 23 files changed, 692 insertions(+), 631 deletions(-)
 delete mode 100644 hw/mips/cputimer.c
 create mode 100644 target/mips/cp0_timer.c
 create mode 100644 target/mips/internal.h

-- 
2.7.4

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

end of thread, other threads:[~2017-09-21 14:41 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-07 16:56 [Qemu-devel] [PULL 0/7] target-mips queue Leon Alrae
2014-11-07 16:56 ` [Qemu-devel] [PULL 1/7] mips: Remove CONFIG_VT82C686 from non-Fulong configs Leon Alrae
2014-11-07 16:56 ` [Qemu-devel] [PULL 2/7] mips: Respect CP0.Status.CU1 for microMIPS FP branches Leon Alrae
2014-11-07 16:56 ` [Qemu-devel] [PULL 3/7] mips: Add macros for CP0.Config3 and CP0.Config4 bits Leon Alrae
2014-11-07 16:56 ` [Qemu-devel] [PULL 4/7] mips: Set the CP0.Config3.DSP and CP0.Config3.DSP2P bits Leon Alrae
2014-11-07 16:56 ` [Qemu-devel] [PULL 5/7] target-mips: fix for missing delay slot in BC1EQZ and BC1NEZ Leon Alrae
2014-11-07 16:56 ` [Qemu-devel] [PULL 6/7] mips: Ensure PC update with MTC0 single-stepping Leon Alrae
2014-11-07 16:56 ` [Qemu-devel] [PULL 7/7] target-mips: fix multiple TCG registers covering same data Leon Alrae
2014-11-10 14:57 ` [Qemu-devel] [PULL 0/7] target-mips queue Peter Maydell
2014-11-10 15:05   ` Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2017-09-21 13:38 Yongbok Kim
2017-09-21 13:55 ` no-reply
2017-09-21 14:41 ` 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).