mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-31 06:13:53 -06:00

This removes the TARGET_I386 condition from the Xen event channel commands, moving them to the recently introduced misc-i386.json QAPI file, given they are inherantly i386 specific commands. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Acked-by: David Woodhouse <dwmw@amazon.co.uk> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-ID: <20250522190542.588267-7-pierrick.bouvier@linaro.org> Reviewed-by: Markus Armbruster <armbru@redhat.com>
39 lines
812 B
C
39 lines
812 B
C
/*
|
|
* QEMU Xen emulation: QMP stubs
|
|
*
|
|
* Copyright © 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
*
|
|
* Authors: David Woodhouse <dwmw2@infradead.org>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "qapi/error.h"
|
|
|
|
#include "xen_evtchn.h"
|
|
#include "xen_primary_console.h"
|
|
|
|
void xen_evtchn_snoop_msi(PCIDevice *dev, bool is_msix, unsigned int vector,
|
|
uint64_t addr, uint32_t data, bool is_masked)
|
|
{
|
|
}
|
|
|
|
void xen_evtchn_remove_pci_device(PCIDevice *dev)
|
|
{
|
|
}
|
|
|
|
bool xen_evtchn_deliver_pirq_msi(uint64_t address, uint32_t data)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void xen_primary_console_create(void)
|
|
{
|
|
}
|
|
|
|
void xen_primary_console_set_be_port(uint16_t port)
|
|
{
|
|
}
|