mirror of https://gitee.com/openkylin/qemu.git
acpi: add aml builder stubs
Add stubs for aml_interrupt and aml_memory32_fixed, these will be needed by followup patches, Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-id: 20201020074844.5304-2-kraxel@redhat.com
This commit is contained in:
parent
0a10b8f718
commit
284e269d7e
|
@ -57,6 +57,20 @@ Aml *aml_irq_no_flags(uint8_t irq)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Aml *aml_interrupt(AmlConsumerAndProducer con_and_pro,
|
||||||
|
AmlLevelAndEdge level_and_edge,
|
||||||
|
AmlActiveHighAndLow high_and_low, AmlShared shared,
|
||||||
|
uint32_t *irq_list, uint8_t irq_count)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
Aml *aml_memory32_fixed(uint32_t addr, uint32_t size,
|
||||||
|
AmlReadAndWrite read_and_write)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
Aml *aml_int(const uint64_t val)
|
Aml *aml_int(const uint64_t val)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in New Issue