mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-03-20 07:58:55 +00:00
acpi: Implement MCFG for AArch64
Added the final PCI bus number in MCFG table. This field is mandatory on AArch64. On X86 it is optional. Signed-off-by: Michael Zhao <michael.zhao@arm.com>
This commit is contained in:
parent
e1ef141112
commit
7bfb51489b
@ -169,7 +169,7 @@ fn create_mcfg_table() -> Sdt {
|
||||
base_address: arch::layout::PCI_MMCONFIG_START.0,
|
||||
segment: 0,
|
||||
start: 0,
|
||||
end: 0,
|
||||
end: ((arch::layout::PCI_MMCONFIG_SIZE - 1) >> 20) as u8,
|
||||
..Default::default()
|
||||
});
|
||||
mcfg
|
||||
|
Loading…
x
Reference in New Issue
Block a user