qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL v2 0/8] loongarch-to-apply queue
@ 2024-07-12  1:36 Song Gao
  2024-07-12  1:36 ` [PULL v2 1/8] hw/loongarch/boot.c: fix out-of-bound reading Song Gao
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: Song Gao @ 2024-07-12  1:36 UTC (permalink / raw)
  To: qemu-devel; +Cc: richard.henderson

The following changes since commit 23901b2b721c0576007ab7580da8aa855d6042a9:

  Merge tag 'pull-target-arm-20240711' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2024-07-11 12:00:00 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 3ef4b21a5c767ff0b15047e709762abef490ad07:

  target/loongarch: Fix cpu_reset set wrong CSR_CRMD (2024-07-12 09:41:18 +0800)

----------------------------------------------------------------
pull-loongarch-20240712

v2: drop patch 'hw/loongarch: Modify flash block size to 256K'.

----------------------------------------------------------------
Bibo Mao (2):
      hw/loongarch/virt: Remove unused assignment
      target/loongarch/kvm: Add software breakpoint support

Dmitry Frolov (1):
      hw/loongarch/boot.c: fix out-of-bound reading

Feiyang Chen (1):
      target/loongarch: Remove avail_64 in trans_srai_w() and simplify it

Jiaxun Yang (1):
      MAINTAINERS: Add myself as a reviewer of LoongArch virt machine

Song Gao (2):
      target/loongarch: Set CSR_PRCFG1 and CSR_PRCFG2 values
      target/loongarch: Fix cpu_reset set wrong CSR_CRMD

Xianglai Li (1):
      hw/loongarch: Change the tpm support by default

 MAINTAINERS                                       |  1 +
 configs/targets/loongarch64-softmmu.mak           |  1 +
 hw/loongarch/Kconfig                              |  1 +
 hw/loongarch/acpi-build.c                         |  3 +
 hw/loongarch/boot.c                               |  2 +-
 hw/loongarch/virt.c                               | 15 +++--
 target/loongarch/cpu.c                            | 23 ++++---
 target/loongarch/kvm/kvm.c                        | 76 +++++++++++++++++++++++
 target/loongarch/tcg/insn_trans/trans_shift.c.inc | 15 +----
 9 files changed, 108 insertions(+), 29 deletions(-)



^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PULL v2 0/8] loongarch-to-apply queue
@ 2024-11-02  7:47 Song Gao
  2024-11-04 17:37 ` Peter Maydell
  0 siblings, 1 reply; 12+ messages in thread
From: Song Gao @ 2024-11-02  7:47 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

The following changes since commit 92ec7805190313c9e628f8fc4eb4f932c15247bd:

  Merge tag 'pull-riscv-to-apply-20241031-1' of https://github.com/alistair23/qemu into staging (2024-10-31 16:34:25 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 47b54e15bbe78722c62dfafc3e04deded820c05e:

  target/loongarch: Add steal time support on migration (2024-11-02 15:45:45 +0800)

----------------------------------------------------------------
pull-loongarch-20241102

V2: Fix no 'asm/unistd_64.h' build error.
    Add a new patch (hw/loongarch/boot: Use warn_report when no kernel filename).
----------------------------------------------------------------
Bibo Mao (7):
      target/loongarch: Add loongson binary translation feature
      target/loongarch: Implement lbt registers save/restore function
      target/loongarch/kvm: Implement LoongArch PMU extension
      linux-headers: Add unistd_64.h
      linux-headers: loongarch: Add kvm_para.h
      linux-headers: Update to Linux v6.12-rc5
      target/loongarch: Add steal time support on migration

Song Gao (1):
      hw/loongarch/boot: Use warn_report when no kernel filename

 hw/loongarch/boot.c                                |   5 +-
 include/standard-headers/drm/drm_fourcc.h          |  43 +++
 include/standard-headers/linux/const.h             |  17 ++
 include/standard-headers/linux/ethtool.h           | 226 ++++++++++++++
 include/standard-headers/linux/fuse.h              |  22 +-
 include/standard-headers/linux/input-event-codes.h |   2 +
 include/standard-headers/linux/pci_regs.h          |  41 ++-
 include/standard-headers/linux/virtio_balloon.h    |  16 +-
 include/standard-headers/linux/virtio_gpu.h        |   1 +
 linux-headers/asm-arm64/mman.h                     |   9 +
 linux-headers/asm-arm64/unistd.h                   |  25 +-
 linux-headers/asm-arm64/unistd_64.h                | 324 ++++++++++++++++++++
 linux-headers/asm-generic/unistd.h                 |   6 +-
 linux-headers/asm-loongarch/kvm.h                  |  24 ++
 linux-headers/asm-loongarch/kvm_para.h             |  21 ++
 linux-headers/asm-loongarch/unistd.h               |   4 +-
 linux-headers/asm-loongarch/unistd_64.h            | 320 ++++++++++++++++++++
 linux-headers/asm-riscv/kvm.h                      |   7 +
 linux-headers/asm-riscv/unistd.h                   |  41 +--
 linux-headers/asm-riscv/unistd_32.h                | 315 ++++++++++++++++++++
 linux-headers/asm-riscv/unistd_64.h                | 325 +++++++++++++++++++++
 linux-headers/asm-x86/kvm.h                        |   2 +
 linux-headers/asm-x86/unistd_64.h                  |   1 +
 linux-headers/asm-x86/unistd_x32.h                 |   1 +
 linux-headers/linux/bits.h                         |   3 +
 linux-headers/linux/const.h                        |  17 ++
 linux-headers/linux/iommufd.h                      | 143 +++++++--
 linux-headers/linux/kvm.h                          |  23 +-
 linux-headers/linux/mman.h                         |   1 +
 linux-headers/linux/psp-sev.h                      |  28 ++
 scripts/update-linux-headers.sh                    |   7 +
 target/loongarch/cpu.c                             |  43 +++
 target/loongarch/cpu.h                             |  23 ++
 target/loongarch/kvm/kvm.c                         | 225 +++++++++++++-
 target/loongarch/loongarch-qmp-cmds.c              |   2 +-
 target/loongarch/machine.c                         |  30 +-
 36 files changed, 2243 insertions(+), 100 deletions(-)
 create mode 100644 linux-headers/asm-arm64/unistd_64.h
 create mode 100644 linux-headers/asm-loongarch/kvm_para.h
 create mode 100644 linux-headers/asm-loongarch/unistd_64.h
 create mode 100644 linux-headers/asm-riscv/unistd_32.h
 create mode 100644 linux-headers/asm-riscv/unistd_64.h



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

end of thread, other threads:[~2024-11-04 17:38 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-12  1:36 [PULL v2 0/8] loongarch-to-apply queue Song Gao
2024-07-12  1:36 ` [PULL v2 1/8] hw/loongarch/boot.c: fix out-of-bound reading Song Gao
2024-07-12  1:36 ` [PULL v2 2/8] hw/loongarch: Change the tpm support by default Song Gao
2024-07-12  1:36 ` [PULL v2 3/8] hw/loongarch/virt: Remove unused assignment Song Gao
2024-07-12  1:36 ` [PULL v2 4/8] MAINTAINERS: Add myself as a reviewer of LoongArch virt machine Song Gao
2024-07-12  1:36 ` [PULL v2 5/8] target/loongarch/kvm: Add software breakpoint support Song Gao
2024-07-12  1:36 ` [PULL v2 6/8] target/loongarch: Remove avail_64 in trans_srai_w() and simplify it Song Gao
2024-07-12  1:36 ` [PULL v2 7/8] target/loongarch: Set CSR_PRCFG1 and CSR_PRCFG2 values Song Gao
2024-07-12  1:36 ` [PULL v2 8/8] target/loongarch: Fix cpu_reset set wrong CSR_CRMD Song Gao
2024-07-12 22:11 ` [PULL v2 0/8] loongarch-to-apply queue Richard Henderson
  -- strict thread matches above, loose matches on Subject: below --
2024-11-02  7:47 Song Gao
2024-11-04 17:37 ` 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).