Lines Matching refs:fdt_header
210 def fdthdr_to_cpu(self, fdt_header): argument
221 fdt_header['magic'],
222 fdt_header['totalsize'],
223 fdt_header['off_dt_struct'],
224 fdt_header['off_dt_strings'],
225 fdt_header['off_mem_rsvmap'],
226 fdt_header['version'],
227 fdt_header['last_comp_version']))
243 fdt_header = self.fdthdr_to_cpu(py_fdt_header)
245 if fdt_header[0] != constants.LX_OF_DT_HEADER:
248 gdb.write("fdt_magic: 0x{:02X}\n".format(fdt_header[0]))
249 gdb.write("fdt_totalsize: 0x{:02X}\n".format(fdt_header[1]))
250 gdb.write("off_dt_struct: 0x{:02X}\n".format(fdt_header[2]))
251 gdb.write("off_dt_strings: 0x{:02X}\n".format(fdt_header[3]))
252 gdb.write("off_mem_rsvmap: 0x{:02X}\n".format(fdt_header[4]))
253 gdb.write("version: {}\n".format(fdt_header[5]))
254 gdb.write("last_comp_version: {}\n".format(fdt_header[6]))
258 fdt_header[1]).tobytes()