| /u-boot/tools/binman/ |
| A D | state.py | 88 def GetFdtForEtype(etype): argument 101 value = output_fdt_info.get(etype); 106 def GetFdtPath(etype): argument 120 def GetFdtContents(etype='u-boot-dtb'): argument 135 if etype not in output_fdt_info: 138 pathname = GetFdtPath(etype) 141 fname = output_fdt_info[etype][1] 146 def UpdateFdtContents(etype, data): argument 156 dtb, fname = output_fdt_info[etype] 300 for etype in output_fdt_info: [all …]
|
| /u-boot/tools/binman/etype/ |
| A D | u_boot_spl_expanded.py | 11 from binman.etype.blob_phase import Entry_blob_phase 34 def __init__(self, section, etype, node): argument 36 super().__init__(section, etype, node, 'u-boot-spl', 'u-boot-spl-dtb', 40 def UseExpanded(cls, node, etype, new_etype): argument 44 (node.path, etype, new_etype, '' if val else 'not '))
|
| A D | u_boot_vpl_expanded.py | 11 from binman.etype.blob_phase import Entry_blob_phase 34 def __init__(self, section, etype, node): argument 36 super().__init__(section, etype, node, 'u-boot-vpl', 'u-boot-vpl-dtb', 40 def UseExpanded(cls, node, etype, new_etype): argument 44 (node.path, etype, new_etype, '' if val else 'not '))
|
| A D | u_boot_tpl_expanded.py | 11 from binman.etype.blob_phase import Entry_blob_phase 34 def __init__(self, section, etype, node): argument 36 super().__init__(section, etype, node, 'u-boot-tpl', 'u-boot-tpl-dtb', 40 def UseExpanded(cls, node, etype, new_etype): argument 44 (node.path, etype, new_etype, '' if val else 'not '))
|
| A D | u_boot_tpl_with_ucode_ptr.py | 11 from binman.etype.blob import Entry_blob 12 from binman.etype.u_boot_with_ucode_ptr import Entry_u_boot_with_ucode_ptr 22 def __init__(self, section, etype, node): argument 23 super().__init__(section, etype, node, auto_write_symbols=True)
|
| A D | intel_fsp.py | 8 from binman.etype.blob_ext import Entry_blob_ext 25 def __init__(self, section, etype, node): argument 26 super().__init__(section, etype, node)
|
| A D | intel_fsp_m.py | 8 from binman.etype.blob_ext import Entry_blob_ext 25 def __init__(self, section, etype, node): argument 26 super().__init__(section, etype, node)
|
| A D | intel_fsp_s.py | 8 from binman.etype.blob_ext import Entry_blob_ext 25 def __init__(self, section, etype, node): argument 26 super().__init__(section, etype, node)
|
| A D | intel_fsp_t.py | 8 from binman.etype.blob_ext import Entry_blob_ext 24 def __init__(self, section, etype, node): argument 25 super().__init__(section, etype, node)
|
| A D | intel_me.py | 8 from binman.etype.blob_ext import Entry_blob_ext 28 def __init__(self, section, etype, node): argument 29 super().__init__(section, etype, node)
|
| A D | intel_cmc.py | 8 from binman.etype.blob_ext import Entry_blob_ext 21 def __init__(self, section, etype, node): argument 22 super().__init__(section, etype, node)
|
| A D | intel_vbt.py | 7 from binman.etype.blob_ext import Entry_blob_ext 20 def __init__(self, section, etype, node): argument 21 super().__init__(section, etype, node)
|
| A D | intel_vga.py | 8 from binman.etype.blob_ext import Entry_blob_ext 23 def __init__(self, section, etype, node): argument 24 super().__init__(section, etype, node)
|
| A D | u_boot_dtb_with_ucode.py | 9 from binman.etype.blob_dtb import Entry_blob_dtb 29 def __init__(self, section, etype, node): argument 34 super().__init__(section, etype, node) 65 etype = self.GetFdtEtype() 66 fdt = state.GetFdtForEtype(etype) 69 raise self.Raise("No /microcode node found in '%s'" % etype)
|
| A D | u_boot_expanded.py | 8 from binman.etype.blob_phase import Entry_blob_phase 23 def __init__(self, section, etype, node): argument 24 super().__init__(section, etype, node, 'u-boot', 'u-boot-dtb', False)
|
| A D | intel_refcode.py | 8 from binman.etype.blob_ext import Entry_blob_ext 22 def __init__(self, section, etype, node): argument 23 super().__init__(section, etype, node)
|
| A D | powerpc_mpc85xx_bootpg_resetvec.py | 7 from binman.etype.blob import Entry_blob 20 def __init__(self, section, etype, node): argument 21 super().__init__(section, etype, node)
|
| A D | intel_mrc.py | 8 from binman.etype.blob_ext import Entry_blob_ext 22 def __init__(self, section, etype, node): argument 23 super().__init__(section, etype, node)
|
| A D | opensbi.py | 8 from binman.etype.blob_named_by_arg import Entry_blob_named_by_arg 21 def __init__(self, section, etype, node): argument 22 super().__init__(section, etype, node, 'opensbi')
|
| A D | rockchip_tpl.py | 6 from binman.etype.blob_named_by_arg import Entry_blob_named_by_arg 18 def __init__(self, section, etype, node): argument 19 super().__init__(section, etype, node, 'rockchip-tpl')
|
| A D | scp.py | 7 from binman.etype.blob_named_by_arg import Entry_blob_named_by_arg 17 def __init__(self, section, etype, node): argument 18 super().__init__(section, etype, node, 'scp')
|
| A D | atf_bl31.py | 8 from binman.etype.blob_named_by_arg import Entry_blob_named_by_arg 22 def __init__(self, section, etype, node): argument 23 super().__init__(section, etype, node, 'atf-bl31')
|
| A D | u_boot_tpl_dtb_with_ucode.py | 8 from binman.etype.u_boot_dtb_with_ucode import Entry_u_boot_dtb_with_ucode 18 def __init__(self, section, etype, node): argument 19 super().__init__(section, etype, node)
|
| A D | cros_ec_rw.py | 8 from binman.etype.blob_named_by_arg import Entry_blob_named_by_arg 19 def __init__(self, section, etype, node): argument 20 super().__init__(section, etype, node, 'cros-ec-rw', required=True)
|
| A D | u_boot.py | 9 from binman.etype.blob import Entry_blob 26 def __init__(self, section, etype, node): argument 27 super().__init__(section, etype, node)
|