qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL v2 0/9] loongarch-to-apply queue
@ 2022-09-20  9:50 Song Gao
  2022-09-20  9:50 ` [PULL v2 1/9] hw/loongarch: Remove vga device when loongarch init Song Gao
                   ` (10 more replies)
  0 siblings, 11 replies; 15+ messages in thread
From: Song Gao @ 2022-09-20  9:50 UTC (permalink / raw)
  To: qemu-devel; +Cc: richard.henderson, stefanha

The following changes since commit d29201ff34a135cdfc197f4413c1c5047e4f58bb:

  Merge tag 'pull-hmp-20220915a' of https://gitlab.com/dagrh/qemu into staging (2022-09-17 10:31:11 -0400)

are available in the Git repository at:

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

for you to fetch changes up to 1895b967922890f76ad0ba8eefad6019e0328606:

  hw/loongarch: Improve acpi dsdt table (2022-09-20 15:44:25 +0800)

----------------------------------------------------------------
v2: fix compile error.

----------------------------------------------------------------
Xiaojuan Yang (9):
      hw/loongarch: Remove vga device when loongarch init
      hw/loongarch: Support fw_cfg dma function
      hw/loongarch: Add interrupt information to FDT table
      hw/loongarch: Add platform bus support
      hw/loongarch: Add hotplug handler for machine
      hw/loongarch: Add RAMFB to dynamic_sysbus_devices list
      hw/loongarch: Fix acpi ged irq number in dsdt table
      hw/loongarch: Support memory hotplug
      hw/loongarch: Improve acpi dsdt table

 hw/loongarch/Kconfig        |   5 +-
 hw/loongarch/acpi-build.c   | 191 ++++++++++-------------------------------
 hw/loongarch/fw_cfg.c       |   3 +-
 hw/loongarch/virt.c         | 204 +++++++++++++++++++++++++++++++++++++++++++-
 include/hw/loongarch/virt.h |   2 +
 include/hw/pci-host/ls7a.h  |   5 ++
 6 files changed, 258 insertions(+), 152 deletions(-)



^ permalink raw reply	[flat|nested] 15+ messages in thread
* [PULL v2 0/9] loongarch-to-apply queue
@ 2022-11-04 10:00 Song Gao
  2022-11-05 12:34 ` Stefan Hajnoczi
  0 siblings, 1 reply; 15+ messages in thread
From: Song Gao @ 2022-11-04 10:00 UTC (permalink / raw)
  To: qemu-devel; +Cc: richard.henderson, stefanha

The following changes since commit ece5f8374d0416a339f0c0a9399faa2c42d4ad6f:

  Merge tag 'linux-user-for-7.2-pull-request' of https://gitlab.com/laurent_vivier/qemu into staging (2022-11-03 10:55:05 -0400)

are available in the Git repository at:

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

for you to fetch changes up to 2419978cb09e11bc53a07d4de5621424d2a6a86d:

  target/loongarch: Fix emulation of float-point disable exception (2022-11-04 17:10:53 +0800)

----------------------------------------------------------------
pull-loongarch-20221104

v2:
 - fix win32/win64 complie error;
 - Add Rui Wang' patches.

----------------------------------------------------------------
Rui Wang (2):
      target/loongarch: Adjust the layout of hardware flags bit fields
      target/loongarch: Fix emulation of float-point disable exception

Song Gao (2):
      target/loongarch: Add exception subcode
      target/loongarch: Fix raise_mmu_exception() set wrong exception_index

Xiaojuan Yang (5):
      hw/intc: Convert the memops to with_attrs in LoongArch extioi
      hw/intc: Fix LoongArch extioi coreisr accessing
      hw/loongarch: Load FDT table into dram memory space
      hw/loongarch: Improve fdt for LoongArch virt machine
      hw/loongarch: Add TPM device for LoongArch virt machine

 hw/intc/loongarch_extioi.c                         | 41 +++++++------
 hw/intc/trace-events                               |  3 +-
 hw/loongarch/acpi-build.c                          | 51 +++++++++++++++-
 hw/loongarch/virt.c                                | 53 ++++++++++++++---
 include/hw/loongarch/virt.h                        |  3 -
 include/hw/pci-host/ls7a.h                         |  1 +
 target/loongarch/cpu.c                             | 10 +++-
 target/loongarch/cpu.h                             | 69 +++++++++++++---------
 target/loongarch/insn_trans/trans_farith.c.inc     | 30 ++++++++++
 target/loongarch/insn_trans/trans_fcmp.c.inc       | 11 +++-
 target/loongarch/insn_trans/trans_fmemory.c.inc    | 34 +++++++++--
 target/loongarch/insn_trans/trans_fmov.c.inc       | 29 ++++++++-
 target/loongarch/insn_trans/trans_privileged.c.inc |  2 +-
 target/loongarch/iocsr_helper.c                    | 19 +++---
 target/loongarch/tlb_helper.c                      |  5 +-
 target/loongarch/translate.c                       |  6 +-
 16 files changed, 283 insertions(+), 84 deletions(-)



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

end of thread, other threads:[~2022-11-07 14:11 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-20  9:50 [PULL v2 0/9] loongarch-to-apply queue Song Gao
2022-09-20  9:50 ` [PULL v2 1/9] hw/loongarch: Remove vga device when loongarch init Song Gao
2022-09-20  9:50 ` [PULL v2 2/9] hw/loongarch: Support fw_cfg dma function Song Gao
2022-09-20  9:50 ` [PULL v2 3/9] hw/loongarch: Add interrupt information to FDT table Song Gao
2022-09-20  9:50 ` [PULL v2 4/9] hw/loongarch: Add platform bus support Song Gao
2022-09-20  9:50 ` [PULL v2 5/9] hw/loongarch: Add hotplug handler for machine Song Gao
2022-09-20  9:50 ` [PULL v2 6/9] hw/loongarch: Add RAMFB to dynamic_sysbus_devices list Song Gao
2022-09-20  9:50 ` [PULL v2 7/9] hw/loongarch: Fix acpi ged irq number in dsdt table Song Gao
2022-09-20  9:50 ` [PULL v2 8/9] hw/loongarch: Support memory hotplug Song Gao
2022-09-20  9:50 ` [PULL v2 9/9] hw/loongarch: Improve acpi dsdt table Song Gao
2022-09-20 18:33 ` [PULL v2 0/9] loongarch-to-apply queue Stefan Hajnoczi
2022-09-21  3:08   ` gaosong
2022-09-20 20:19 ` Stefan Hajnoczi
  -- strict thread matches above, loose matches on Subject: below --
2022-11-04 10:00 Song Gao
2022-11-05 12:34 ` 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).