qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/10] Add basic ACPI support for risc-v virt
@ 2023-02-02  4:52 Sunil V L
  2023-02-02  4:52 ` [PATCH 01/10] hw/riscv/virt: Add OEM_ID and OEM_TABLE_ID fields Sunil V L
                   ` (9 more replies)
  0 siblings, 10 replies; 49+ messages in thread
From: Sunil V L @ 2023-02-02  4:52 UTC (permalink / raw)
  To: Palmer Dabbelt, Alistair Francis, Bin Meng
  Cc: qemu-riscv, qemu-devel, Andrew Jones, Anup Patel,
	Atish Kumar Patra, Sunil V L

This series adds the basic ACPI support for the RISC-V virt machine. 
Currently only INTC interrupt controller specification is approved by the
UEFI forum. External interrupt controller support in ACPI is in progress.

The basic infrstructure changes are mostly leveraged from ARM.

This adds support for INTC and RHCT tables as specified in below ECR links
which are approved by UEFI forum.
RINTC - https://drive.google.com/file/d/1R6k4MshhN3WTT-hwqAquu5nX6xSEqK2l/view
RHCT - https://drive.google.com/file/d/1nP3nFiH4jkPMp6COOxP6123DCZKR-tia/view

These changes are also available @
https://github.com/vlsunil/qemu/tree/acpi_b1_us_review

The series is tested using SBI HVC console and initrd.

Test instructions:
1) Build Qemu with ACPI support (this series)

2) Build EDK2 as per instructions in
https://github.com/vlsunil/riscv-uefi-edk2-docs/wiki/RISC-V-Qemu-Virt-support

3) Build Linux with ACPI support using below branch
https://github.com/vlsunil/linux/commits/acpi_b1_us_review_ipi17
after enabling SBI HVC and SBI earlycon options.

CONFIG_RISCV_SBI_V01=y
CONFIG_SERIAL_EARLYCON_RISCV_SBI=y
CONFIG_HVC_RISCV_SBI=y

4) Build buildroot.

Run with below command.
qemu-system-riscv64   -nographic \
-drive file=Build/RiscVVirtQemu/RELEASE_GCC5/FV/RISCV_VIRT.fd,if=pflash,format=raw,unit=1 \
-machine virt,acpi=on -smp 16 -m 2G \
-kernel arch/riscv/boot/Image \
-initrd buildroot/output/images/rootfs.cpio \
-append "root=/dev/ram ro console=hvc0 earlycon=sbi"

Sunil V L (10):
  hw/riscv/virt: Add OEM_ID and OEM_TABLE_ID fields
  hw/riscv/virt: Add a switch to enable/disable ACPI
  hw/riscv/virt: Add memmap pointer to RiscVVirtState
  hw/riscv/virt: virt-acpi-build.c: Add basic ACPI tables
  hw/riscv/virt: virt-acpi-build.c: Add RINTC in MADT
  hw/riscv/virt: virt-acpi-build.c: Add RHCT Table
  hw/riscv: meson.build: Build virt-acpi-build.c
  hw/riscv/Kconfig: virt: Enable ACPI config options
  hw/riscv/virt.c: Initialize the ACPI tables
  MAINTAINERS: Add entry for RISC-V ACPI

 MAINTAINERS                |   6 +
 hw/riscv/Kconfig           |   3 +
 hw/riscv/meson.build       |   1 +
 hw/riscv/virt-acpi-build.c | 391 +++++++++++++++++++++++++++++++++++++
 hw/riscv/virt.c            |  48 +++++
 include/hw/riscv/virt.h    |   6 +
 6 files changed, 455 insertions(+)
 create mode 100644 hw/riscv/virt-acpi-build.c

-- 
2.38.0



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

end of thread, other threads:[~2023-02-24 16:15 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-02  4:52 [PATCH 00/10] Add basic ACPI support for risc-v virt Sunil V L
2023-02-02  4:52 ` [PATCH 01/10] hw/riscv/virt: Add OEM_ID and OEM_TABLE_ID fields Sunil V L
2023-02-06  5:49   ` Bin Meng
2023-02-09  0:17   ` Alistair Francis
2023-02-02  4:52 ` [PATCH 02/10] hw/riscv/virt: Add a switch to enable/disable ACPI Sunil V L
2023-02-06  9:43   ` Bin Meng
2023-02-06 10:54   ` Andrea Bolognani
2023-02-06 11:18     ` Philippe Mathieu-Daudé
2023-02-06 12:35       ` Andrew Jones
2023-02-06 13:04         ` Sunil V L
2023-02-07  3:57         ` Bin Meng
2023-02-07  5:37           ` Andrew Jones
2023-02-07 12:33           ` Sunil V L
2023-02-06 12:56       ` Gerd Hoffmann
2023-02-07  8:50         ` Philippe Mathieu-Daudé
2023-02-07 10:12           ` Sunil V L
2023-02-07 10:14           ` Andrew Jones
2023-02-06 23:14       ` Bernhard Beschow
2023-02-07 10:23       ` Andrew Jones
2023-02-07 13:56         ` Andrea Bolognani
2023-02-07 14:02           ` Thomas Huth
2023-02-07 14:38             ` Andrea Bolognani
2023-02-07 19:20               ` Andrew Jones
2023-02-08 16:48                 ` Andrea Bolognani
2023-02-09  5:15                   ` Thomas Huth
2023-02-02  4:52 ` [PATCH 03/10] hw/riscv/virt: Add memmap pointer to RiscVVirtState Sunil V L
2023-02-06  9:50   ` Bin Meng
2023-02-09  0:18   ` Alistair Francis
2023-02-02  4:52 ` [PATCH 04/10] hw/riscv/virt: virt-acpi-build.c: Add basic ACPI tables Sunil V L
2023-02-06 10:17   ` Bin Meng
2023-02-06 13:24     ` Sunil V L
2023-02-07 16:10       ` Bin Meng
2023-02-07 18:15         ` Sunil V L
2023-02-08  1:06           ` Bin Meng
2023-02-08  4:49             ` Sunil V L
2023-02-24 16:14             ` Igor Mammedov
2023-02-02  4:52 ` [PATCH 05/10] hw/riscv/virt: virt-acpi-build.c: Add RINTC in MADT Sunil V L
2023-02-09  0:21   ` Alistair Francis
2023-02-02  4:52 ` [PATCH 06/10] hw/riscv/virt: virt-acpi-build.c: Add RHCT Table Sunil V L
2023-02-02  4:52 ` [PATCH 07/10] hw/riscv: meson.build: Build virt-acpi-build.c Sunil V L
2023-02-06 10:26   ` Bin Meng
2023-02-02  4:52 ` [PATCH 08/10] hw/riscv/Kconfig: virt: Enable ACPI config options Sunil V L
2023-02-06 10:29   ` Bin Meng
2023-02-06 14:19     ` Sunil V L
2023-02-02  4:52 ` [PATCH 09/10] hw/riscv/virt.c: Initialize the ACPI tables Sunil V L
2023-02-06 10:32   ` Bin Meng
2023-02-02  4:52 ` [PATCH 10/10] MAINTAINERS: Add entry for RISC-V ACPI Sunil V L
2023-02-06 10:33   ` Bin Meng
2023-02-09  0:23   ` Alistair Francis

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