From: Li Chen <chenl311@chinatelecom.cn>
The virt machines always instantiate a PL011/16550 at UART0 and
describe it in ACPI (DSDT device node plus optional SPCR table). When
the command line contains “-serial none” there is no backend attached to
that UART, yet the guest still discovers it via ACPI and may try to use
it as a console, causing unexpected results.
And also explicitly add "-serial stdio" in bios-tables-test.c to allow
serial device creation, otherwise DSDT assert would get failure because
"-nodefaults" will not create uart device by default:
```
stderr:
acpi-test: Warning! DSDT binary file mismatch. Actual [aml:/tmp/aml-BMOL72], Expected [aml:tests/data/acpi/aarch64/virt/DSDT].
See source file tests/qtest/bios-tables-test.c for instructions on how to update expected files.
acpi-test: Warning! DSDT mismatch. Actual [asl:/tmp/asl-RNOL72.dsl, aml:/tmp/aml-BMOL72], Expected [asl:/tmp/asl-ZVQL72.dsl, aml:tests/data/acpi/aarch64/virt/DS
DT].
```
Suggested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Li Chen <chenl311@chinatelecom.cn>
Reviewed-by: Sunil V L <sunilvl@ventanamicro.com>
---
Notes:
Changes since v4: 1. Also suppress UART device & SPCR when guest has no serial hardware on loongarch
2. rename serial_exist to serial_exists
3. fix style issue
Changes since v3: 1. Add Reviewed-by from Sunil V L <sunilvl@ventanamicro.com>
2. Explicitly add "-serial stdio" to pass DSDT assert
hw/arm/virt-acpi-build.c | 15 +++++++++------
hw/loongarch/virt-acpi-build.c | 8 +++++---
hw/riscv/virt-acpi-build.c | 8 ++++++--
include/system/system.h | 2 ++
system/vl.c | 5 +++++
tests/qtest/bios-tables-test.c | 5 +++--
6 files changed, 30 insertions(+), 13 deletions(-)
diff --git a/hw/arm/virt-acpi-build.c b/hw/arm/virt-acpi-build.c
index 782b17b966..8761e814ec 100644
--- a/hw/arm/virt-acpi-build.c
+++ b/hw/arm/virt-acpi-build.c
@@ -61,6 +61,7 @@
#include "hw/acpi/viot.h"
#include "hw/virtio/virtio-acpi.h"
#include "target/arm/multiprocessing.h"
+#include "system/system.h"
#define ARM_SPI_BASE 32
@@ -908,11 +909,13 @@ build_dsdt(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
*/
scope = aml_scope("\\_SB");
acpi_dsdt_add_cpus(scope, vms);
- acpi_dsdt_add_uart(scope, &memmap[VIRT_UART0],
- (irqmap[VIRT_UART0] + ARM_SPI_BASE), 0);
- if (vms->second_ns_uart_present) {
- acpi_dsdt_add_uart(scope, &memmap[VIRT_UART1],
- (irqmap[VIRT_UART1] + ARM_SPI_BASE), 1);
+ if (serial_exists()) {
+ acpi_dsdt_add_uart(scope, &memmap[VIRT_UART0],
+ (irqmap[VIRT_UART0] + ARM_SPI_BASE), 0);
+ if (vms->second_ns_uart_present) {
+ acpi_dsdt_add_uart(scope, &memmap[VIRT_UART1],
+ (irqmap[VIRT_UART1] + ARM_SPI_BASE), 1);
+ }
}
if (vmc->acpi_expose_flash) {
acpi_dsdt_add_flash(scope, &memmap[VIRT_FLASH]);
@@ -1024,7 +1027,7 @@ void virt_acpi_build(VirtMachineState *vms, AcpiBuildTables *tables)
acpi_add_table(table_offsets, tables_blob);
- if (ms->acpi_spcr_enabled) {
+ if (ms->acpi_spcr_enabled && serial_exists()) {
spcr_setup(tables_blob, tables->linker, vms);
}
diff --git a/hw/loongarch/virt-acpi-build.c b/hw/loongarch/virt-acpi-build.c
index 8c2228a772..d356578968 100644
--- a/hw/loongarch/virt-acpi-build.c
+++ b/hw/loongarch/virt-acpi-build.c
@@ -485,8 +485,10 @@ build_dsdt(GArray *table_data, BIOSLinker *linker, MachineState *machine)
acpi_table_begin(&table, table_data);
dsdt = init_aml_allocator();
- for (i = 0; i < VIRT_UART_COUNT; i++) {
- build_uart_device_aml(dsdt, i);
+ if (serial_exists()) {
+ for (i = 0; i < VIRT_UART_COUNT; i++) {
+ build_uart_device_aml(dsdt, i);
+ }
}
build_pci_device_aml(dsdt, lvms);
build_la_ged_aml(dsdt, machine);
@@ -558,7 +560,7 @@ static void acpi_build(AcpiBuildTables *tables, MachineState *machine)
build_srat(tables_blob, tables->linker, machine);
acpi_add_table(table_offsets, tables_blob);
- if (machine->acpi_spcr_enabled)
+ if (machine->acpi_spcr_enabled && serial_exists())
spcr_setup(tables_blob, tables->linker, machine);
if (machine->numa_state->num_nodes) {
diff --git a/hw/riscv/virt-acpi-build.c b/hw/riscv/virt-acpi-build.c
index ee1416d264..5132aa7b55 100644
--- a/hw/riscv/virt-acpi-build.c
+++ b/hw/riscv/virt-acpi-build.c
@@ -39,6 +39,7 @@
#include "qapi/error.h"
#include "qemu/error-report.h"
#include "system/reset.h"
+#include "system/system.h"
#define ACPI_BUILD_TABLE_SIZE 0x20000
#define ACPI_BUILD_INTC_ID(socket, index) ((socket << 24) | (index))
@@ -474,7 +475,10 @@ static void build_dsdt(GArray *table_data,
memmap[VIRT_APLIC_S].size, "RSCV0002");
}
- acpi_dsdt_add_uart(scope, &memmap[VIRT_UART0], UART0_IRQ);
+ if (serial_exists()) {
+ acpi_dsdt_add_uart(scope, &memmap[VIRT_UART0], UART0_IRQ);
+ }
+
if (virt_is_iommu_sys_enabled(s)) {
acpi_dsdt_add_iommu_sys(scope, &memmap[VIRT_IOMMU_SYS], IOMMU_SYS_IRQ);
}
@@ -895,7 +899,7 @@ static void virt_acpi_build(RISCVVirtState *s, AcpiBuildTables *tables)
acpi_add_table(table_offsets, tables_blob);
- if (ms->acpi_spcr_enabled) {
+ if (ms->acpi_spcr_enabled && serial_exists()) {
spcr_setup(tables_blob, tables->linker, s);
}
diff --git a/include/system/system.h b/include/system/system.h
index a7effe7dfd..022222c81a 100644
--- a/include/system/system.h
+++ b/include/system/system.h
@@ -75,6 +75,8 @@ extern unsigned int nb_prom_envs;
/* Return the Chardev for serial port i, or NULL if none */
Chardev *serial_hd(int i);
+bool serial_exists(void);
+
/* parallel ports */
#define MAX_PARALLEL_PORTS 3
diff --git a/system/vl.c b/system/vl.c
index 3b7057e6c6..2ec18d4a59 100644
--- a/system/vl.c
+++ b/system/vl.c
@@ -1482,6 +1482,11 @@ Chardev *serial_hd(int i)
return NULL;
}
+bool serial_exists(void)
+{
+ return serial_hd(0) ? true : false;
+}
+
static bool parallel_parse(const char *devname, Error **errp)
{
static int index = 0;
diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
index 04a9d8a4da..802ad5ccfd 100644
--- a/tests/qtest/bios-tables-test.c
+++ b/tests/qtest/bios-tables-test.c
@@ -824,10 +824,11 @@ static char *test_acpi_create_args(test_data *data, const char *params)
/*
* TODO: convert '-drive if=pflash' to new syntax (see e33763be7cd3)
* when arm/virt boad starts to support it.
+ * NOTE: Explicitly add "-serial stdio" to enable uart in DSDT.
*/
if (data->cd) {
args = g_strdup_printf("-machine %s%s %s -accel tcg "
- "-nodefaults -nographic "
+ "-nodefaults -serial stdio -nographic "
"-drive if=pflash,format=raw,file=%s,readonly=on "
"-drive if=pflash,format=raw,file=%s,snapshot=on -cdrom %s %s",
data->machine, data->machine_param ?: "",
@@ -835,7 +836,7 @@ static char *test_acpi_create_args(test_data *data, const char *params)
data->uefi_fl1, data->uefi_fl2, data->cd, params ? params : "");
} else {
args = g_strdup_printf("-machine %s%s %s -accel tcg "
- "-nodefaults -nographic "
+ "-nodefaults -serial stdio -nographic "
"-drive if=pflash,format=raw,file=%s,readonly=on "
"-drive if=pflash,format=raw,file=%s,snapshot=on %s",
data->machine, data->machine_param ?: "",
--
2.50.0