qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
To: qemu-devel@nongnu.org, peter.maydell@linaro.org
Cc: aleksandar.qemu.devel@gmail.com
Subject: [PULL 00/20] MIPS queue for June 9th, 2020
Date: Tue,  9 Jun 2020 18:28:18 +0200	[thread overview]
Message-ID: <1591720118-7378-1-git-send-email-aleksandar.qemu.devel@gmail.com> (raw)

The following changes since commit 49ee11555262a256afec592dfed7c5902d5eefd2:

  Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-5.1-pull-request' into staging (2020-06-08 11:04:57 +0100)

are available in the git repository at:

  https://github.com/AMarkovic/qemu tags/mips-queue-jun-09-2020

for you to fetch changes up to 6db06115d246ea6d24755657a98c185ed2a50210:

  target/mips: Enable hardware page table walker and CMGCR features for P5600 (2020-06-09 17:32:45 +0200)

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

MIPS queue for June 9th, 2020

Highlights:

  - Registring change of email address for two contributors
  - Cleanup and improvements of FPU helpers
  - Enabling some features of P5600
  - Adding two Loongson-3A CPU definitions
  - A checkpatch warning is known and should be ignored

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

Aleksandar Markovic (18):
  mailmap: Change email address of Filip Bozuta
  mailmap: Change email address of Stefan Brankovic
  target/mips: fpu: Demacro ADD.<D|S|PS>
  target/mips: fpu: Demacro SUB.<D|S|PS>
  target/mips: fpu: Demacro MUL.<D|S|PS>
  target/mips: fpu: Demacro DIV.<D|S|PS>
  target/mips: fpu: Remove now unused macro FLOAT_BINOP
  target/mips: fpu: Demacro MADD.<D|S|PS>
  target/mips: fpu: Demacro MSUB.<D|S|PS>
  target/mips: fpu: Demacro NMADD.<D|S|PS>
  target/mips: fpu: Demacro NMSUB.<D|S|PS>
  target/mips: fpu: Remove now unused UNFUSED_FMA and FLOAT_FMA macros
  target/mips: fpu: Demacro CLASS.<D|S>
  target/mips: fpu: Remove now unused FLOAT_CLASS macro
  target/mips: fpu: Demacro RINT.<D|S>
  target/mips: fpu: Remove now unused FLOAT_RINT macro
  target/mips: fpu: Name better paired-single variables
  target/mips: fpu: Refactor conversion from ieee to mips exception
    flags

Andrea Oliveri (1):
  target/mips: Enable hardware page table walker and CMGCR features for
    P5600

Huacai Chen (1):
  target/mips: Add Loongson-3 CPU definition

 target/mips/cpu.h                           |  32 +-
 target/mips/internal.h                      |   3 +-
 target/mips/mips-defs.h                     |  45 +-
 target/mips/fpu_helper.c                    | 658 +++++++++++++++++++---------
 target/mips/{lmi_helper.c => lmmi_helper.c} |   0
 target/mips/msa_helper.c                    |  77 ++--
 target/mips/translate.c                     |   2 +
 target/mips/translate_init.inc.c            |  95 +++-
 .mailmap                                    |   2 +
 target/mips/Makefile.objs                   |   2 +-
 10 files changed, 658 insertions(+), 258 deletions(-)
 rename target/mips/{lmi_helper.c => lmmi_helper.c} (100%)

-- 
2.7.4



             reply	other threads:[~2020-06-09 16:38 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-09 16:28 Aleksandar Markovic [this message]
2020-06-09 16:28 ` [PULL 01/20] mailmap: Change email address of Filip Bozuta Aleksandar Markovic
2020-06-09 16:28 ` [PULL 02/20] mailmap: Change email address of Stefan Brankovic Aleksandar Markovic
2020-06-09 16:28 ` [PULL 03/20] target/mips: fpu: Demacro ADD.<D|S|PS> Aleksandar Markovic
2020-06-09 16:28 ` [PULL 04/20] target/mips: fpu: Demacro SUB.<D|S|PS> Aleksandar Markovic
2020-06-09 16:28 ` [PULL 05/20] target/mips: fpu: Demacro MUL.<D|S|PS> Aleksandar Markovic
2020-06-09 16:28 ` [PULL 06/20] target/mips: fpu: Demacro DIV.<D|S|PS> Aleksandar Markovic
2020-06-09 16:28 ` [PULL 07/20] target/mips: fpu: Remove now unused macro FLOAT_BINOP Aleksandar Markovic
2020-06-09 16:28 ` [PULL 08/20] target/mips: fpu: Demacro MADD.<D|S|PS> Aleksandar Markovic
2020-06-09 16:28 ` [PULL 09/20] target/mips: fpu: Demacro MSUB.<D|S|PS> Aleksandar Markovic
2020-06-09 16:28 ` [PULL 10/20] target/mips: fpu: Demacro NMADD.<D|S|PS> Aleksandar Markovic
2020-06-09 16:28 ` [PULL 11/20] target/mips: fpu: Demacro NMSUB.<D|S|PS> Aleksandar Markovic
2020-06-09 16:28 ` [PULL 12/20] target/mips: fpu: Remove now unused UNFUSED_FMA and FLOAT_FMA macros Aleksandar Markovic
2020-06-09 16:28 ` [PULL 13/20] target/mips: fpu: Demacro CLASS.<D|S> Aleksandar Markovic
2020-06-09 16:28 ` [PULL 14/20] target/mips: fpu: Remove now unused FLOAT_CLASS macro Aleksandar Markovic
2020-06-09 16:28 ` [PULL 15/20] target/mips: fpu: Demacro RINT.<D|S> Aleksandar Markovic
2020-06-09 16:28 ` [PULL 16/20] target/mips: fpu: Remove now unused FLOAT_RINT macro Aleksandar Markovic
2020-06-09 16:28 ` [PULL 17/20] target/mips: fpu: Name better paired-single variables Aleksandar Markovic
2020-06-09 16:28 ` [PULL 18/20] target/mips: fpu: Refactor conversion from ieee to mips exception flags Aleksandar Markovic
2020-06-09 16:28 ` [PULL 19/20] target/mips: Add Loongson-3 CPU definition Aleksandar Markovic
2020-11-29 22:09   ` Philippe Mathieu-Daudé
2020-11-30  3:45     ` Jiaxun Yang
2020-06-09 16:28 ` [PULL 20/20] target/mips: Enable hardware page table walker and CMGCR features for P5600 Aleksandar Markovic
2020-06-11 14:35 ` [PULL 00/20] MIPS queue for June 9th, 2020 Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1591720118-7378-1-git-send-email-aleksandar.qemu.devel@gmail.com \
    --to=aleksandar.qemu.devel@gmail.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).