qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/10] loongarch-to-apply queue
@ 2024-05-23  1:46 Song Gao
  2024-05-23  1:46 ` [PULL 01/10] target/loongarch/kvm: Fix VM recovery from disk failures Song Gao
                   ` (10 more replies)
  0 siblings, 11 replies; 20+ messages in thread
From: Song Gao @ 2024-05-23  1:46 UTC (permalink / raw)
  To: qemu-devel; +Cc: richard.henderson

The following changes since commit 6af8037c42fdc3d20d5aa2686799ab356a9ee1a9:

  Merge tag 'pull-vfio-20240522' of https://github.com/legoater/qemu into staging (2024-05-22 06:02:06 -0700)

are available in the Git repository at:

  https://gitlab.com/gaosong/qemu.git tags/pull-loongarch-20240523

for you to fetch changes up to 6204af704a071ea68d3af55c0502b112a7af9546:

  hw/loongarch/virt: Fix FDT memory node address width (2024-05-23 09:30:41 +0800)

----------------------------------------------------------------
pull-loongarch-20240523

----------------------------------------------------------------
Bibo Mao (7):
      hw/loongarch: Add VM mode in IOCSR feature register in kvm mode
      hw/loongarch: Refine acpi srat table for numa memory
      hw/loongarch: Refine fadt memory table for numa memory
      hw/loongarch: Refine fwcfg memory map
      hw/loongarch: Refine system dram memory region
      hw/loongarch: Remove minimum and default memory size
      target/loongarch: Add loongarch vector property unconditionally

Jiaxun Yang (1):
      hw/loongarch/virt: Fix FDT memory node address width

Song Gao (2):
      target/loongarch/kvm: Fix VM recovery from disk failures
      target/loongarch/kvm: fpu save the vreg registers high 192bit

 hw/loongarch/acpi-build.c  |  58 +++++++++------
 hw/loongarch/virt.c        | 179 ++++++++++++++++++++++++++++++++-------------
 target/loongarch/cpu.c     |  14 +---
 target/loongarch/kvm/kvm.c |   6 ++
 target/loongarch/machine.c |   6 +-
 5 files changed, 176 insertions(+), 87 deletions(-)



^ permalink raw reply	[flat|nested] 20+ messages in thread
* [PULL 00/10] loongarch-to-apply queue
@ 2023-11-03  6:23 Song Gao
  2023-11-06 14:22 ` Stefan Hajnoczi
  0 siblings, 1 reply; 20+ messages in thread
From: Song Gao @ 2023-11-03  6:23 UTC (permalink / raw)
  To: qemu-devel; +Cc: stefanha

The following changes since commit d762bf97931b58839316b68a570eecc6143c9e3e:

  Merge tag 'pull-target-arm-20231102' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2023-11-03 10:04:12 +0800)

are available in the Git repository at:

  https://gitlab.com/gaosong/qemu.git tags/pull-loongarch-20231103

for you to fetch changes up to f7077737531b40aa879d4644837aeda0f7fc6aa8:

  linux-user/loongarch64: Add LASX sigcontext save/restore (2023-11-03 14:13:46 +0800)

----------------------------------------------------------------
pull-loongarch-20231103

----------------------------------------------------------------
Richard Henderson (1):
      linux-user/loongarch64: Use traps to track LSX/LASX usage

Song Gao (9):
      target/loongarch: Add cpu model 'max'
      target/loongarch: Allow user enable/disable LSX/LASX features
      target/loongarch: Implement query-cpu-model-expansion
      target/loongarch: Support 4K page size
      linux-user/loongarch64: Fix setup_extcontext alloc wrong fpu_context size
      linux-user/loongarch64: setup_sigframe() set 'end' context size 0
      linux-user/loongarch64: Use abi_{ulong,uint} types
      linux-user/loongarch64: Add LSX sigcontext save/restore
      linux-user/loongarch64: Add LASX sigcontext save/restore

 linux-user/loongarch64/cpu_loop.c           |  13 ++
 linux-user/loongarch64/signal.c             | 189 +++++++++++++++++++++++-----
 qapi/machine-target.json                    |   6 +-
 target/loongarch/cpu-param.h                |   2 +-
 target/loongarch/cpu.c                      |  74 +++++++++++
 target/loongarch/cpu.h                      |   2 +
 target/loongarch/insn_trans/trans_vec.c.inc |  11 --
 target/loongarch/loongarch-qmp-cmds.c       |  64 ++++++++++
 target/loongarch/tlb_helper.c               |   9 +-
 9 files changed, 318 insertions(+), 52 deletions(-)



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

end of thread, other threads:[~2024-06-11  1:58 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-23  1:46 [PULL 00/10] loongarch-to-apply queue Song Gao
2024-05-23  1:46 ` [PULL 01/10] target/loongarch/kvm: Fix VM recovery from disk failures Song Gao
2024-05-24 10:00   ` Michael Tokarev
2024-05-27  1:54     ` gaosong
2024-05-23  1:46 ` [PULL 02/10] target/loongarch/kvm: fpu save the vreg registers high 192bit Song Gao
2024-05-23  1:46 ` [PULL 03/10] hw/loongarch: Add VM mode in IOCSR feature register in kvm mode Song Gao
2024-05-23  1:46 ` [PULL 04/10] hw/loongarch: Refine acpi srat table for numa memory Song Gao
2024-05-23  1:46 ` [PULL 05/10] hw/loongarch: Refine fadt memory " Song Gao
2024-05-23  1:46 ` [PULL 06/10] hw/loongarch: Refine fwcfg memory map Song Gao
2024-06-07 14:31   ` Peter Maydell
2024-06-11  1:57     ` maobibo
2024-05-23  1:46 ` [PULL 07/10] hw/loongarch: Refine system dram memory region Song Gao
2024-05-23  1:46 ` [PULL 08/10] hw/loongarch: Remove minimum and default memory size Song Gao
2024-05-23  1:46 ` [PULL 09/10] target/loongarch: Add loongarch vector property unconditionally Song Gao
2024-05-23  1:46 ` [PULL 10/10] hw/loongarch/virt: Fix FDT memory node address width Song Gao
2024-05-24 10:10   ` Michael Tokarev
2024-05-24 10:54     ` Jiaxun Yang
2024-05-23 16:44 ` [PULL 00/10] loongarch-to-apply queue Richard Henderson
  -- strict thread matches above, loose matches on Subject: below --
2023-11-03  6:23 Song Gao
2023-11-06 14:22 ` Stefan Hajnoczi

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