qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH for 4.2 v5 00/12] target/mips: Misc patches for 4.2
@ 2019-08-01 16:45 Aleksandar Markovic
  2019-08-01 16:45 ` [Qemu-devel] [PATCH for 4.2 v5 01/12] target/mips: Add support for DSPRAM Aleksandar Markovic
                   ` (11 more replies)
  0 siblings, 12 replies; 17+ messages in thread
From: Aleksandar Markovic @ 2019-08-01 16:45 UTC (permalink / raw)
  To: qemu-devel; +Cc: arikalo, amarkovic

From: Aleksandar Markovic <amarkovic@wavecomp.com>

This series includes misc MIPS patches intended to be integrated after
4.1 release.

v4->v5:

  - fixed more build errors
  - added five patches on style improvements
  - added a patch on updating vmstate
  - other minor improvements

v3->v4:

  - fixed build error

v2->v3:

  - corrected the patch on WatchHi to include "mi" field
  - corrected the patch on WatchHi to bump VMStateDescription version

v1->v2:

  - fixed checkpatch warnings
  - added four new patches on various topics

Aleksandar Markovic (7):
  target/mips: Style improvements in cp0_timer.c
  target/mips: Style improvements in cpu.c
  target/mips: Style improvements in helper.c
  target/mips: Style improvements in internal.h
  target/mips: Style improvements in machine.c
  tests/tcg: target/mips: Add optional printing of more detailed failure
    info
  tests/tcg: target/mips: Fix target configurations for MSA tests

Yongbok Kim (5):
  target/mips: Add support for DSPRAM
  target/mips: Amend CP0 WatchHi register implementation
  target/mips: Update vmstate structures related to MemoryMapID register
  target/mips: Add support for emulation of GINVT instruction
  target/mips: Add support for emulation of CRC32 group of instructions

 disas/mips.c                                       |  10 +
 hw/mips/cps.c                                      |  29 +-
 hw/misc/Makefile.objs                              |   1 +
 hw/misc/mips_dspram.c                              | 153 ++++
 include/hw/mips/cps.h                              |   2 +
 include/hw/misc/mips_dspram.h                      |  46 ++
 target/mips/cp0_timer.c                            |  42 +-
 target/mips/cpu.c                                  |  17 +-
 target/mips/cpu.h                                  |  13 +-
 target/mips/helper.c                               | 122 ++-
 target/mips/helper.h                               |   7 +
 target/mips/internal.h                             |  61 +-
 target/mips/machine.c                              |  17 +-
 target/mips/op_helper.c                            | 185 ++++-
 target/mips/translate.c                            | 139 +++-
 target/mips/translate_init.inc.c                   |   2 +
 tests/tcg/mips/include/test_utils_128.h            |  23 +-
 .../mips/user/ase/msa/test_msa_compile_32r5eb.sh   | 917 +++++++++++++++++++++
 .../mips/user/ase/msa/test_msa_compile_32r5el.sh   | 917 +++++++++++++++++++++
 .../mips/user/ase/msa/test_msa_compile_32r6eb.sh   | 643 ---------------
 .../mips/user/ase/msa/test_msa_compile_32r6el.sh   | 643 ---------------
 tests/tcg/mips/user/ase/msa/test_msa_run_32r5eb.sh | 371 +++++++++
 tests/tcg/mips/user/ase/msa/test_msa_run_32r5el.sh | 371 +++++++++
 tests/tcg/mips/user/ase/msa/test_msa_run_32r6eb.sh | 371 ---------
 tests/tcg/mips/user/ase/msa/test_msa_run_32r6el.sh | 371 ---------
 25 files changed, 3320 insertions(+), 2153 deletions(-)
 create mode 100644 hw/misc/mips_dspram.c
 create mode 100644 include/hw/misc/mips_dspram.h
 create mode 100755 tests/tcg/mips/user/ase/msa/test_msa_compile_32r5eb.sh
 create mode 100755 tests/tcg/mips/user/ase/msa/test_msa_compile_32r5el.sh
 delete mode 100755 tests/tcg/mips/user/ase/msa/test_msa_compile_32r6eb.sh
 delete mode 100755 tests/tcg/mips/user/ase/msa/test_msa_compile_32r6el.sh
 create mode 100755 tests/tcg/mips/user/ase/msa/test_msa_run_32r5eb.sh
 create mode 100755 tests/tcg/mips/user/ase/msa/test_msa_run_32r5el.sh
 delete mode 100644 tests/tcg/mips/user/ase/msa/test_msa_run_32r6eb.sh
 delete mode 100755 tests/tcg/mips/user/ase/msa/test_msa_run_32r6el.sh

-- 
2.7.4



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

end of thread, other threads:[~2019-08-02 16:11 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-01 16:45 [Qemu-devel] [PATCH for 4.2 v5 00/12] target/mips: Misc patches for 4.2 Aleksandar Markovic
2019-08-01 16:45 ` [Qemu-devel] [PATCH for 4.2 v5 01/12] target/mips: Add support for DSPRAM Aleksandar Markovic
2019-08-01 16:45 ` [Qemu-devel] [PATCH for 4.2 v5 02/12] target/mips: Amend CP0 WatchHi register implementation Aleksandar Markovic
2019-08-01 16:45 ` [Qemu-devel] [PATCH for 4.2 v5 03/12] target/mips: Update vmstate structures related to MemoryMapID register Aleksandar Markovic
2019-08-01 16:45 ` [Qemu-devel] [PATCH for 4.2 v5 04/12] target/mips: Add support for emulation of GINVT instruction Aleksandar Markovic
2019-08-01 16:45 ` [Qemu-devel] [PATCH for 4.2 v5 05/12] target/mips: Add support for emulation of CRC32 group of instructions Aleksandar Markovic
2019-08-01 16:45 ` [Qemu-devel] [PATCH for 4.2 v5 06/12] target/mips: Style improvements in cp0_timer.c Aleksandar Markovic
2019-08-02 16:08   ` Philippe Mathieu-Daudé
2019-08-01 16:45 ` [Qemu-devel] [PATCH for 4.2 v5 07/12] target/mips: Style improvements in cpu.c Aleksandar Markovic
2019-08-02 16:09   ` Philippe Mathieu-Daudé
2019-08-01 16:45 ` [Qemu-devel] [PATCH for 4.2 v5 08/12] target/mips: Style improvements in helper.c Aleksandar Markovic
2019-08-01 16:45 ` [Qemu-devel] [PATCH for 4.2 v5 09/12] target/mips: Style improvements in internal.h Aleksandar Markovic
2019-08-02 16:09   ` Philippe Mathieu-Daudé
2019-08-01 16:45 ` [Qemu-devel] [PATCH for 4.2 v5 10/12] target/mips: Style improvements in machine.c Aleksandar Markovic
2019-08-02 16:10   ` Philippe Mathieu-Daudé
2019-08-01 16:45 ` [Qemu-devel] [PATCH for 4.2 v5 11/12] tests/tcg: target/mips: Add optional printing of more detailed failure info Aleksandar Markovic
2019-08-01 16:45 ` [Qemu-devel] [PATCH for 4.2 v5 12/12] tests/tcg: target/mips: Fix target configurations for MSA tests Aleksandar Markovic

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).