Searched refs:RegProp (Results 1 - 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/ArmVirtPkg/HighMemDxe/
H A DHighMemDxe.c38 CONST VOID *RegProp; local
71 RegProp = fdt_getprop (DeviceTreeBase, Node, "reg", &Len);
72 if (RegProp != NULL && Len == (2 * sizeof (UINT64))) {
74 CurBase = fdt64_to_cpu (((UINT64 *)RegProp)[0]);
75 CurSize = fdt64_to_cpu (((UINT64 *)RegProp)[1]);
/device/linaro/bootloader/edk2/ArmVirtPkg/Library/ArmVirtPlatformLib/
H A DVirt.c79 CONST UINT64 *RegProp; local
110 RegProp = fdt_getprop (DeviceTreeBase, Node, "reg", &Len);
111 if (RegProp != 0 && Len == (2 * sizeof (UINT64))) {
113 CurBase = fdt64_to_cpu (ReadUnaligned64 (RegProp));
114 CurSize = fdt64_to_cpu (ReadUnaligned64 (RegProp + 1));
/device/linaro/bootloader/edk2/ArmVirtPkg/Library/PlatformPeiLib/
H A DPlatformPeiLib.c43 CONST UINT64 *RegProp; local
86 RegProp = fdt_getprop (Base, Node, "reg", &Len);
89 UartBase = fdt64_to_cpu (ReadUnaligned64 (RegProp));
/device/linaro/bootloader/edk2/ArmVirtPkg/VirtFdtDxe/
H A DVirtFdtDxe.c137 param[in] RegProp Pointer to the "reg" property of Node. The caller
152 IN CONST VOID *RegProp
166 ConfigBase = fdt64_to_cpu (((CONST UINT64 *)RegProp)[0]);
167 ConfigSize = fdt64_to_cpu (((CONST UINT64 *)RegProp)[1]);
293 CONST VOID *RegProp; local
350 RegProp = fdt_getprop (DeviceTreeBase, Node, "reg", &Len);
351 ASSERT ((RegProp != NULL) || (PropType == PropertyTypeTimer) ||
357 Status = ProcessPciHost (DeviceTreeBase, Node, RegProp);
364 FwCfgDataAddress = fdt64_to_cpu (((UINT64 *)RegProp)[0]);
388 if (fdt64_to_cpu (((UINT64 *)RegProp)[
[all...]

Completed in 214 milliseconds