Lines Matching full:tee
18 TEE_LOAD_ADDR_RE = re.compile(r'TEE load address @ (?P<load_addr>0x[0-9a-f]+)')
35 This scripts reads an OP-TEE abort or panic message from stdin and adds debug
37 address in the call stack. Any message generated by OP-TEE and containing a
39 includes aborts and panics from the TEE core as well as from any TA.
41 binary (tee.elf or Trusted Application). The GNU binutils (addr2line, objdump,
49 OP-TEE abort and panic messages are sent to the secure console. They look like
68 Also, this script reads function graph generated for OP-TEE user TA from
116 description='Symbolizes OP-TEE abort dumps or function graphs',
119 help='Search for ELF file in DIR. tee.elf is needed '
120 'to decode a TEE Core or pseudo-TA abort, while '
215 # In case address is not found in TA ELF file, fallback to tee.elf
221 # tee.elf
227 return 'tee.elf'
247 if self.elf_for_addr(addr) == 'tee.elf':
249 int(self.first_vma('tee.elf'), 16))
412 self._elfs = {0: ["tee.elf", 0]} # {idx: [uuid, load_addr], ...}