[Qemu-devel] [PULL v2 00/11] MIPS queue for May 19th, 2019 - v2

Aleksandar Markovic posted 11 patches 4 years, 11 months ago
Test FreeBSD passed
Test docker-clang@ubuntu passed
Test s390x passed
Test docker-mingw@fedora passed
Test checkpatch passed
Test asan passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/1558551522-24147-1-git-send-email-aleksandar.markovic@rt-rk.com
Maintainers: Paul Burton <pburton@wavecomp.com>, Aleksandar Markovic <amarkovic@wavecomp.com>, Aleksandar Rikalo <arikalo@wavecomp.com>, Aurelien Jarno <aurelien@aurel32.net>
MAINTAINERS                              |   1 +
hw/mips/boston.c                         |  25 +-
hw/mips/cps.c                            |  20 +-
hw/mips/mips_malta.c                     |  17 +-
target/mips/helper.c                     |  13 +-
target/mips/helper.h                     |  16 +-
target/mips/msa_helper.c                 | 191 ++++++++++-----
target/mips/op_helper.c                  | 388 +++++++++++++++++++++++++++----
target/mips/translate.c                  |  59 ++++-
tests/acceptance/linux_ssh_mips_malta.py | 229 ++++++++++++++++++
tests/requirements.txt                   |   1 +
11 files changed, 817 insertions(+), 143 deletions(-)
create mode 100644 tests/acceptance/linux_ssh_mips_malta.py
[Qemu-devel] [PULL v2 00/11] MIPS queue for May 19th, 2019 - v2
Posted by Aleksandar Markovic 4 years, 11 months ago
From: Aleksandar Markovic <amarkovic@wavecomp.com>

The following changes since commit a4f667b6714916683408b983cfe0a615a725775f:

  Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20190521-3' into staging (2019-05-21 16:30:13 +0100)

are available in the git repository at:

  https://github.com/AMarkovic/qemu tags/mips-queue-may-19-2019-v2

for you to fetch changes up to 9a89468145b8a3e53e508992f54061427c52780f:

  BootLinuxSshTest: Test some userspace commands on Malta (2019-05-22 20:10:46 +0200)

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

MIPS queue for May 19th, 2019 - v2

v1-v2:
   - fixed missing invocations in patch on ST.<B|H|W|D> that caused
     clang build error
   - added a patch on acceptance test for Malta

overall content:

   * Improved usage of object_initialize() and object_initialize_child()
   * Added an acceptance test for Malta board
   * Better handling of memory pages (flag PAGE_EXEC)
   * A set of fixes for emulation of MSA ASE on big endian hosts
   * Better handling of 'div by zero' cases of MSA ASE instructions

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

Jakub Jermář (1):
  mips: Decide to map PAGE_EXEC in map_address

Mateja Marjanovic (7):
  target/mips: Make the results of DIV_<U|S>.<B|H|W|D> the same as on
    hardware
  target/mips: Make the results of MOD_<U|S>.<B|H|W|D> the same as on
    hardware
  target/mips: Fix MSA instructions LD.<B|H|W|D> on big endian host
  target/mips: Fix MSA instructions ST.<B|H|W|D> on big endian host
  target/mips: Refactor and fix COPY_S.<B|H|W|D> instructions
  target/mips: Refactor and fix COPY_U.<B|H|W> instructions
  target/mips: Refactor and fix INSERT.<B|H|W|D> instructions

Philippe Mathieu-Daudé (3):
  hw/mips: Use object_initialize() on MIPSCPSState
  hw/mips: Use object_initialize_child for correct reference counting
  BootLinuxSshTest: Test some userspace commands on Malta

 MAINTAINERS                              |   1 +
 hw/mips/boston.c                         |  25 +-
 hw/mips/cps.c                            |  20 +-
 hw/mips/mips_malta.c                     |  17 +-
 target/mips/helper.c                     |  13 +-
 target/mips/helper.h                     |  16 +-
 target/mips/msa_helper.c                 | 191 ++++++++++-----
 target/mips/op_helper.c                  | 388 +++++++++++++++++++++++++++----
 target/mips/translate.c                  |  59 ++++-
 tests/acceptance/linux_ssh_mips_malta.py | 229 ++++++++++++++++++
 tests/requirements.txt                   |   1 +
 11 files changed, 817 insertions(+), 143 deletions(-)
 create mode 100644 tests/acceptance/linux_ssh_mips_malta.py

-- 
2.7.4


Re: [Qemu-devel] [PULL v2 00/11] MIPS queue for May 19th, 2019 - v2
Posted by Aleksandar Markovic 4 years, 11 months ago
On May 22, 2019 9:15 PM, "Aleksandar Markovic" <
aleksandar.markovic@rt-rk.com> wrote:
>
> From: Aleksandar Markovic <amarkovic@wavecomp.com>
>
> The following changes since commit
a4f667b6714916683408b983cfe0a615a725775f:
>
>   Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20190521-3'
into staging (2019-05-21 16:30:13 +0100)
>
> are available in the git repository at:
>
>   https://github.com/AMarkovic/qemu tags/mips-queue-may-19-2019-v2
>
> for you to fetch changes up to 9a89468145b8a3e53e508992f54061427c52780f:
>
>   BootLinuxSshTest: Test some userspace commands on Malta (2019-05-22
20:10:46 +0200)
>
> ----------------------------------------------------------------
>

Peter,

Please put this pull request on hold, there are some reservations from test
group about patch 11/11, that came just hours after I sent this pull
request.

Yours,
Aleksandar

> MIPS queue for May 19th, 2019 - v2
>
> v1-v2:
>    - fixed missing invocations in patch on ST.<B|H|W|D> that caused
>      clang build error
>    - added a patch on acceptance test for Malta
>
> overall content:
>
>    * Improved usage of object_initialize() and object_initialize_child()
>    * Added an acceptance test for Malta board
>    * Better handling of memory pages (flag PAGE_EXEC)
>    * A set of fixes for emulation of MSA ASE on big endian hosts
>    * Better handling of 'div by zero' cases of MSA ASE instructions
>
> ----------------------------------------------------------------
>
> Jakub Jermář (1):
>   mips: Decide to map PAGE_EXEC in map_address
>
> Mateja Marjanovic (7):
>   target/mips: Make the results of DIV_<U|S>.<B|H|W|D> the same as on
>     hardware
>   target/mips: Make the results of MOD_<U|S>.<B|H|W|D> the same as on
>     hardware
>   target/mips: Fix MSA instructions LD.<B|H|W|D> on big endian host
>   target/mips: Fix MSA instructions ST.<B|H|W|D> on big endian host
>   target/mips: Refactor and fix COPY_S.<B|H|W|D> instructions
>   target/mips: Refactor and fix COPY_U.<B|H|W> instructions
>   target/mips: Refactor and fix INSERT.<B|H|W|D> instructions
>
> Philippe Mathieu-Daudé (3):
>   hw/mips: Use object_initialize() on MIPSCPSState
>   hw/mips: Use object_initialize_child for correct reference counting
>   BootLinuxSshTest: Test some userspace commands on Malta
>
>  MAINTAINERS                              |   1 +
>  hw/mips/boston.c                         |  25 +-
>  hw/mips/cps.c                            |  20 +-
>  hw/mips/mips_malta.c                     |  17 +-
>  target/mips/helper.c                     |  13 +-
>  target/mips/helper.h                     |  16 +-
>  target/mips/msa_helper.c                 | 191 ++++++++++-----
>  target/mips/op_helper.c                  | 388
+++++++++++++++++++++++++++----
>  target/mips/translate.c                  |  59 ++++-
>  tests/acceptance/linux_ssh_mips_malta.py | 229 ++++++++++++++++++
>  tests/requirements.txt                   |   1 +
>  11 files changed, 817 insertions(+), 143 deletions(-)
>  create mode 100644 tests/acceptance/linux_ssh_mips_malta.py
>
> --
> 2.7.4
>
>