summaryrefslogtreecommitdiffstats
path: root/ArmVirtPkg/FdtClientDxe
diff options
context:
space:
mode:
authorArd Biesheuvel <ard.biesheuvel@linaro.org>2017-04-04 13:55:44 +0100
committerArd Biesheuvel <ard.biesheuvel@linaro.org>2017-04-04 15:24:59 +0100
commitd014044395b5ac2d37efb65f889dd8910869a332 (patch)
treea0959146b844909ca06d92165c945abbb2a253fe /ArmVirtPkg/FdtClientDxe
parent12b04866af2c348bf7e28e17b4ddc1eaf410211c (diff)
downloadedk2-d014044395b5ac2d37efb65f889dd8910869a332.tar.gz
edk2-d014044395b5ac2d37efb65f889dd8910869a332.tar.bz2
edk2-d014044395b5ac2d37efb65f889dd8910869a332.zip
ArmVirtPkg/FdtClientDxe: honor memory DT node 'status' property
In some cases, (e.g., when running QEMU with TrustZone emulation), the DT may contain memory nodes whose status is set to 'secure'. Similarly, the status may be set to 'disabled' if the consumer of the DT image is expected to treat it as if it weren't there. So check whether a 'status' property is present, and if so, ignore the node if the status is not 'okay'. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'ArmVirtPkg/FdtClientDxe')
-rw-r--r--ArmVirtPkg/FdtClientDxe/FdtClientDxe.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ArmVirtPkg/FdtClientDxe/FdtClientDxe.c b/ArmVirtPkg/FdtClientDxe/FdtClientDxe.c
index 2d867b16fd..fb6e0aeb92 100644
--- a/ArmVirtPkg/FdtClientDxe/FdtClientDxe.c
+++ b/ArmVirtPkg/FdtClientDxe/FdtClientDxe.c
@@ -210,6 +210,7 @@ FindNextMemoryNodeReg (
{
INT32 Prev, Next;
CONST CHAR8 *DeviceType;
+ CONST CHAR8 *NodeStatus;
INT32 Len;
EFI_STATUS Status;
@@ -222,6 +223,13 @@ FindNextMemoryNodeReg (
break;
}
+ NodeStatus = fdt_getprop (mDeviceTreeBase, Next, "status", &Len);
+ if (NodeStatus != NULL && AsciiStrCmp (NodeStatus, "okay") != 0) {
+ DEBUG ((DEBUG_WARN, "%a: ignoring memory node with status \"%a\"\n",
+ __FUNCTION__, NodeStatus));
+ continue;
+ }
+
DeviceType = fdt_getprop (mDeviceTreeBase, Next, "device_type", &Len);
if (DeviceType != NULL && AsciiStrCmp (DeviceType, "memory") == 0) {
//