qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL v2 00/17] loongarch-to-apply queue
@ 2024-03-07 15:28 Song Gao
  2024-03-07 15:28 ` [PULL v2 01/17] hw/loongarch: Move boot fucntions to boot.c Song Gao
                   ` (17 more replies)
  0 siblings, 18 replies; 22+ messages in thread
From: Song Gao @ 2024-03-07 15:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

The following changes since commit 8f6330a807f2642dc2a3cdf33347aa28a4c00a87:

  Merge tag 'pull-maintainer-updates-060324-1' of https://gitlab.com/stsquad/qemu into staging (2024-03-06 16:56:20 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 4dc2edfd6f8abfc38f0ba110502790aa5051b1b5:

  hw/loongarch: Add cells missing from rtc node (2024-03-07 21:58:00 +0800)

----------------------------------------------------------------
pull-loongarch-20240307

----------------------------------------------------------------
Song Gao (17):
      hw/loongarch: Move boot fucntions to boot.c
      hw/loongarch: Add load initrd
      hw/loongarch: Add slave cpu boot_code
      hw/loongarch: Add init_cmdline
      hw/loongarch: Init efi_system_table
      hw/loongarch: Init efi_boot_memmap table
      hw/loongarch: Init efi_initrd table
      hw/loongarch: Init efi_fdt table
      hw/loongarch: Fix fdt memory node wrong 'reg'
      hw/loongarch: fdt adds cpu interrupt controller node
      hw/loongarch: fdt adds Extend I/O Interrupt Controller
      hw/loongarch: fdt adds pch_pic Controller
      hw/loongarch: fdt adds pch_msi Controller
      hw/loongarch: fdt adds pcie irq_map node
      hw/loongarch: fdt remove unused irqchip node
      hw/loongarch: Add cells missing from uart node
      hw/loongarch: Add cells missing from rtc node

 hw/loongarch/boot.c                | 330 +++++++++++++++++++++++++++++++++
 hw/loongarch/meson.build           |   1 +
 hw/loongarch/virt.c                | 363 +++++++++++++++++++++----------------
 include/hw/intc/loongarch_extioi.h |   1 +
 include/hw/loongarch/boot.h        | 109 +++++++++++
 include/hw/loongarch/virt.h        |  14 ++
 include/hw/pci-host/ls7a.h         |   2 +
 target/loongarch/cpu.h             |   2 +
 8 files changed, 662 insertions(+), 160 deletions(-)
 create mode 100644 hw/loongarch/boot.c
 create mode 100644 include/hw/loongarch/boot.h



^ permalink raw reply	[flat|nested] 22+ messages in thread
* [PULL v2 00/17] loongarch-to-apply queue
@ 2024-04-29  2:30 Song Gao
  2024-04-29  2:30 ` [PULL v2 03/17] hw/loongarch: Add slave cpu boot_code Song Gao
  0 siblings, 1 reply; 22+ messages in thread
From: Song Gao @ 2024-04-29  2:30 UTC (permalink / raw)
  To: qemu-devel; +Cc: richard.henderson

The following changes since commit fd87be1dada5672f877e03c2ca8504458292c479:

  Merge tag 'accel-20240426' of https://github.com/philmd/qemu into staging (2024-04-26 15:28:13 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 841ef2c9df5317e32de590424b0c5c36fbb4de78:

  hw/loongarch: Add cells missing from rtc node (2024-04-29 10:25:56 +0800)

----------------------------------------------------------------
Add boot LoongArch elf kernel with FDT

v2: Fix 'make check-tcg' failed.

----------------------------------------------------------------
Song Gao (17):
      hw/loongarch: Move boot functions to boot.c
      hw/loongarch: Add load initrd
      hw/loongarch: Add slave cpu boot_code
      hw/loongarch: Add init_cmdline
      hw/loongarch: Init efi_system_table
      hw/loongarch: Init efi_boot_memmap table
      hw/loongarch: Init efi_initrd table
      hw/loongarch: Init efi_fdt table
      hw/loongarch: Fix fdt memory node wrong 'reg'
      hw/loongarch: fdt adds cpu interrupt controller node
      hw/loongarch: fdt adds Extend I/O Interrupt Controller
      hw/loongarch: fdt adds pch_pic Controller
      hw/loongarch: fdt adds pch_msi Controller
      hw/loongarch: fdt adds pcie irq_map node
      hw/loongarch: fdt remove unused irqchip node
      hw/loongarch: Add cells missing from uart node
      hw/loongarch: Add cells missing from rtc node

 hw/loongarch/boot.c                | 336 ++++++++++++++++++++++++++++++++++
 hw/loongarch/meson.build           |   1 +
 hw/loongarch/virt.c                | 365 +++++++++++++++++++++----------------
 include/hw/intc/loongarch_extioi.h |   1 +
 include/hw/loongarch/boot.h        | 109 +++++++++++
 include/hw/loongarch/virt.h        |  16 ++
 include/hw/pci-host/ls7a.h         |   2 +
 target/loongarch/cpu.h             |   2 +
 8 files changed, 670 insertions(+), 162 deletions(-)
 create mode 100644 hw/loongarch/boot.c
 create mode 100644 include/hw/loongarch/boot.h



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

end of thread, other threads:[~2024-04-29  2:49 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-07 15:28 [PULL v2 00/17] loongarch-to-apply queue Song Gao
2024-03-07 15:28 ` [PULL v2 01/17] hw/loongarch: Move boot fucntions to boot.c Song Gao
2024-03-07 15:28 ` [PULL v2 02/17] hw/loongarch: Add load initrd Song Gao
2024-03-07 15:28 ` [PULL v2 03/17] hw/loongarch: Add slave cpu boot_code Song Gao
2024-03-11  2:22   ` chen huacai
2024-03-07 15:28 ` [PULL v2 04/17] hw/loongarch: Add init_cmdline Song Gao
2024-03-07 15:28 ` [PULL v2 05/17] hw/loongarch: Init efi_system_table Song Gao
2024-03-07 15:28 ` [PULL v2 06/17] hw/loongarch: Init efi_boot_memmap table Song Gao
2024-03-07 15:28 ` [PULL v2 07/17] hw/loongarch: Init efi_initrd table Song Gao
2024-03-07 15:28 ` [PULL v2 08/17] hw/loongarch: Init efi_fdt table Song Gao
2024-03-07 15:28 ` [PULL v2 09/17] hw/loongarch: Fix fdt memory node wrong 'reg' Song Gao
2024-03-07 15:28 ` [PULL v2 10/17] hw/loongarch: fdt adds cpu interrupt controller node Song Gao
2024-03-07 15:28 ` [PULL v2 11/17] hw/loongarch: fdt adds Extend I/O Interrupt Controller Song Gao
2024-03-07 15:28 ` [PULL v2 12/17] hw/loongarch: fdt adds pch_pic Controller Song Gao
2024-03-07 15:28 ` [PULL v2 13/17] hw/loongarch: fdt adds pch_msi Controller Song Gao
2024-03-07 15:28 ` [PULL v2 14/17] hw/loongarch: fdt adds pcie irq_map node Song Gao
2024-03-07 15:28 ` [PULL v2 15/17] hw/loongarch: fdt remove unused irqchip node Song Gao
2024-03-07 15:28 ` [PULL v2 16/17] hw/loongarch: Add cells missing from uart node Song Gao
2024-03-07 15:28 ` [PULL v2 17/17] hw/loongarch: Add cells missing from rtc node Song Gao
2024-03-07 15:37 ` [PULL v2 00/17] loongarch-to-apply queue Peter Maydell
2024-03-07 16:08   ` gaosong
  -- strict thread matches above, loose matches on Subject: below --
2024-04-29  2:30 Song Gao
2024-04-29  2:30 ` [PULL v2 03/17] hw/loongarch: Add slave cpu boot_code Song Gao

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