zynqmp: add dts overlay for hypervisor mode
The pcie node was creating untyped objects with improper addresses. Signed-off-by: Robbie VanVossen <robert.vanvossen@dornerworks.com>
This commit is contained in:
parent
8d52ba7d26
commit
c4f947994f
2 changed files with 16 additions and 0 deletions
|
|
@ -64,6 +64,10 @@ if(KernelPlatformZynqmp)
|
|||
list(APPEND KernelDTSList "src/plat/zynqmp/overlay-zynqmp.dts")
|
||||
endif()
|
||||
|
||||
if(KernelArmHypervisorSupport)
|
||||
list(APPEND KernelDTSList "src/plat/zynqmp/overlay-hs-zynqmp.dts")
|
||||
endif()
|
||||
|
||||
declare_default_headers(
|
||||
TIMER_FREQUENCY 100000000
|
||||
MAX_IRQ 187
|
||||
|
|
|
|||
12
src/plat/zynqmp/overlay-hs-zynqmp.dts
Normal file
12
src/plat/zynqmp/overlay-hs-zynqmp.dts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
/*
|
||||
* Copyright 2019, DornerWorks
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0-only
|
||||
*/
|
||||
|
||||
/ {
|
||||
amba {
|
||||
/* bug: pcie node generates untyped objects too large for hypervisor mode */
|
||||
/delete-node/ pcie@fd0e0000;
|
||||
};
|
||||
};
|
||||
Loading…
Reference in a new issue