HomeSort by relevance Sort by last modified time
    Searched defs:Fdt (Results 1 - 5 of 5) sorted by null

  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/UpdateFdtDxe/
UpdateFdtDxe.c 24 #include <Guid/Fdt.h>
38 // Check the FDT header is valid. We only make this check in DEBUG mode in case the FDT header change on
53 // Install the FDT into the Configuration Table
91 VOID* Fdt;
101 Fdt = (VOID*)(PcdGet64(FdtFileAddress));
121 (VOID) CopyMem((VOID*)NewFdtBlobBase, Fdt, Size);
  /external/u-boot/tools/dtoc/
fdt.py 17 # FdtScan() as a convenience function to create and scan an Fdt.
176 def __init__(self, fdt, parent, offset, name, path):
177 self._fdt = fdt
259 class Fdt:
263 fname: Filename of fdt
275 self._fdt_obj = libfdt.Fdt(self._fdt)
332 """Get the contents of the FDT
335 The FDT contents as a string of bytes
394 def Node(self, fdt, parent, offset, name, path):
397 This is used by Fdt.Scan() to create a new node using the correc
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/D02/FdtUpdateLibD02/
FdtUpdateLib.c 104 DelPhyhandleUpdateMacAddress(IN VOID* Fdt)
114 node = fdt_subnode_offset(Fdt, 0, "soc");
125 ethernetnode=fdt_subnode_offset(Fdt, node,EthName[port]);
130 m_prop = fdt_get_property_w(Fdt, ethernetnode, "local-mac-address", &m_oldlen);
133 Error = fdt_delprop(Fdt, ethernetnode, "local-mac-address");
139 Error = fdt_setprop(Fdt, ethernetnode, "local-mac-address",gMacAddress,sizeof(MAC_ADDRESS));
151 EFI_STATUS UpdateMemoryNode(VOID* Fdt)
174 node = fdt_subnode_offset(Fdt, 0, "memory");
178 node = fdt_add_subnode(Fdt, 0, "memory");
181 DEBUG((EFI_D_INFO, "[%a]:[%dL] fdt add subnode error\n", __FUNCTION__, __LINE__));
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/D03/Library/FdtUpdateLib/
FdtUpdateLib.c 133 DelPhyhandleUpdateMacAddress(IN VOID* Fdt)
144 node = fdt_subnode_offset(Fdt, 0, "soc");
155 ethernetnode = fdt_subnode_offset(Fdt, node,EthName[port]);
165 m_prop = fdt_get_property_w(Fdt, ethernetnode, "local-mac-address", &m_oldlen);
168 Error = fdt_delprop(Fdt, ethernetnode, "local-mac-address");
174 Error = fdt_setprop(Fdt, ethernetnode, "local-mac-address",gMacAddress,sizeof(MAC_ADDRESS));
189 UpdateRefClk (IN VOID* Fdt)
205 node = fdt_subnode_offset(Fdt, 0, "soc");
211 node = fdt_subnode_offset(Fdt, node, "refclk");
217 m_prop = fdt_get_property_w(Fdt, node, Property, &m_oldlen);
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/AbootimgLib/
AbootimgLib.c 219 OUT VOID **Fdt
225 err = fdt_check_header ((VOID*)(UINTN)*Fdt);
234 /* FDT is at the end of kernel image */
235 *Fdt = (VOID *)((EFI_PHYSICAL_ADDRESS)(UINTN)Kernel + RawKernelSize);
238 // Sanity checks on the FDT blob.
240 err = fdt_check_header ((VOID*)(UINTN)*Fdt);
341 // Sanity checks on the new FDT blob.
495 IN OUT VOID **Fdt
526 // Get the FDT that attached at the end of gzip kernel
527 *Fdt = CompressedKernel + CompressedKernelSize
    [all...]

Completed in 163 milliseconds