qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] target/arm : add pvpanic mmio device


From: Philippe Mathieu-Daudé
Subject: Re: [Qemu-devel] [PATCH] target/arm : add pvpanic mmio device
Date: Thu, 18 Oct 2018 14:49:04 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.0

On 18/10/2018 02:55, address@hidden wrote:
>> Hi Peng,
>>
>> On 17/10/2018 11:23, Peng Hao wrote:
>>> Add pvpanic mmio device that is similar to x86's pvpanic device.
>>
>>>
>>> Signed-off-by: Peng Hao <address@hidden>
>>> ---
>>>  default-configs/arm-softmmu.mak |  2 +-
>>>  hw/arm/virt.c                   | 21 ++++++++++++
>>>  hw/misc/Makefile.objs           |  1 +
>>>  hw/misc/pvpanic-mmio.c          | 76 
>>> +++++++++++++++++++++++++++++++++++++++++
>>>  include/hw/arm/virt.h           |  1 +
>>>  include/hw/misc/pvpanic-mmio.h  | 12 +++++++
>>>  6 files changed, 112 insertions(+), 1 deletion(-)
>>>  create mode 100644 hw/misc/pvpanic-mmio.c
>>>  create mode 100644 include/hw/misc/pvpanic-mmio.h
>>>
>>> diff --git a/default-configs/arm-softmmu.mak 
>>> b/default-configs/arm-softmmu.mak
>>> index 2420491..4713c92 100644
>>> --- a/default-configs/arm-softmmu.mak
>>> +++ b/default-configs/arm-softmmu.mak
>>> @@ -43,7 +43,7 @@ CONFIG_USB_MUSB=y
>>>  CONFIG_USB_EHCI_SYSBUS=y
>>>  CONFIG_PLATFORM_BUS=y
>>>  CONFIG_VIRTIO_MMIO=y
>>> -
>>> +CONFIG_PVPANIC_MMIO=y
>>>  CONFIG_ARM11MPCORE=y
>>>  CONFIG_A9MPCORE=y
>>>  CONFIG_A15MPCORE=y
>>> diff --git a/hw/arm/virt.c b/hw/arm/virt.c
>>> index a472566..ab41128 100644
>>> --- a/hw/arm/virt.c
>>> +++ b/hw/arm/virt.c
>>> @@ -140,6 +140,7 @@ static const MemMapEntry a15memmap[] = {
>>>      [VIRT_UART] =               { 0x09000000, 0x00001000 },
>>>      [VIRT_RTC] =                { 0x09010000, 0x00001000 },
>>>      [VIRT_FW_CFG] =             { 0x09020000, 0x00000018 },
>>> +    [VIRT_PVPANIC_MMIO] =       { 0x09020018, 0x00000002 },
>>>      [VIRT_GPIO] =               { 0x09030000, 0x00001000 },
>>>      [VIRT_SECURE_UART] =        { 0x09040000, 0x00001000 },
>>>      [VIRT_SMMU] =               { 0x09050000, 0x00020000 },
>>> @@ -798,6 +799,24 @@ static void create_gpio(const VirtMachineState *vms, 
>>> qemu_irq *pic)
>>>      g_free(nodename);
>>>  }
>>>
>>> +static void create_pvpanic_device(const VirtMachineState *vms)
>>> +{
>>> +    char *nodename;
>>> +    hwaddr base = vms->memmap[VIRT_PVPANIC_MMIO].base;
>>> +    hwaddr size = vms->memmap[VIRT_PVPANIC_MMIO].size;
>>> +
>>> +    sysbus_create_simple("pvpanic-mmio", base, NULL);
>>> +
>>> +    nodename = g_strdup_printf("/address@hidden" PRIx64, base);
>>> +    qemu_fdt_add_subnode(vms->fdt, nodename);
>>> +    qemu_fdt_setprop_string(vms->fdt, nodename,
>>> +                            "compatible", "pvpanic,mmio");
>>> +    qemu_fdt_setprop_sized_cells(vms->fdt, nodename, "reg",
>>> +                                 2, base, 2, size);
>>> +    g_free(nodename);
>>> +
>>> +}
>>> +
>>>  static void create_virtio_devices(const VirtMachineState *vms, qemu_irq 
>>> *pic)
>>>  {
>>>      int i;
>>> @@ -1544,6 +1563,8 @@ static void machvirt_init(MachineState *machine)
>>>
>>>      create_pcie(vms, pic);
>>>
>>> +    create_pvpanic_device(vms);
>>> +
>>>      create_gpio(vms, pic);
>>>
>>>      /* Create mmio transports, so the user can create virtio backends
>>> diff --git a/hw/misc/Makefile.objs b/hw/misc/Makefile.objs
>>> index 6d50b03..6326260 100644
>>> --- a/hw/misc/Makefile.objs
>>> +++ b/hw/misc/Makefile.objs
>>> @@ -71,6 +71,7 @@ obj-$(CONFIG_IOTKIT_SYSCTL) += iotkit-sysctl.o
>>>  obj-$(CONFIG_IOTKIT_SYSINFO) += iotkit-sysinfo.o
>>>
>>>  obj-$(CONFIG_PVPANIC) += pvpanic.o
>>> +obj-$(CONFIG_PVPANIC_MMIO) += pvpanic-mmio.o
>>>  obj-$(CONFIG_HYPERV_TESTDEV) += hyperv_testdev.o
>>>  obj-$(CONFIG_AUX) += auxbus.o
>>>  obj-$(CONFIG_ASPEED_SOC) += aspeed_scu.o aspeed_sdmc.o
>>> diff --git a/hw/misc/pvpanic-mmio.c b/hw/misc/pvpanic-mmio.c
>>> new file mode 100644
>>> index 0000000..c7f373e
>>> --- /dev/null
>>> +++ b/hw/misc/pvpanic-mmio.c
>>> @@ -0,0 +1,76 @@
>>> +#include "qemu/osdep.h"
>>> +#include "sysemu/sysemu.h"
>>> +#include "qemu/log.h"
>>> +#include "hw/misc/pvpanic-mmio.h"
>>> +
>>> +#define PVPANIC_MMIO_FEAT_CRASHED      0
>>> +
>>> +#define PVPANIC_MMIO_CRASHED        (1 << PVPANIC_MMIO_FEAT_CRASHED)
>>> +
>>> +static void handle_mmio_event(int event)
>>> +{
>>> +    static bool logged;
>>> +
>>> +    if (event & ~PVPANIC_MMIO_CRASHED && !logged) {
>>> +        qemu_log_mask(LOG_GUEST_ERROR, "pvpanic-mmio: unknown event 
>>> %#x.\n", event);
>>> +        logged = true;
>>> +    }
>>> +
>>> +    if (event & PVPANIC_MMIO_CRASHED) {
>>> +        qemu_system_guest_panicked(NULL);
>>> +        return;
>>> +    }
>>
>> It would be easier to maintain a single pvpanic device. There is no
>> improvement here, it is the same handler than 'pvpanic.c'.
>>
>> The current pvpanic device is not x86-only, it only implements the
>> ioport API.
> But in linux kernel the driver of pvpanic device is x86-only.
> 
>> If you want to use the mmio API, please add it there.
>> Basically you don't have to write any more code that in this patch, but
>> just move it in the pvpanic.c file.
> I want to use pvpanic directly instead of adding a new device emulation.
> But I can't use it. Firstly pvpanic use ioport, but arm don't support ioport.
> secondly pvpanic device is emulated as a isa bus device, but arm don't support
> isa bus.

I tried to explain how to do it, but it was easier to just refactor your
patch to show what I was expecting, so I'll send a series instead.

> thirdly the realization of pvpanic device is depends on ACPI in linux kernel 
> driver and in qemu
> the port info is passed through ACPI , but It is not necessary to configure 
> ACPI for arm guest. 
> 
> Thanks.
>>
>> Thanks,
>>
>> Phil.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]