Home
last modified time | relevance | path

Searched refs:tpm_u32 (Results 1 – 2 of 2) sorted by relevance

/external/u-boot/lib/
Dtpm-v2.c17 tpm_u32(12), in tpm2_startup()
18 tpm_u32(TPM2_CC_STARTUP), in tpm2_startup()
38 tpm_u32(11), in tpm2_self_test()
39 tpm_u32(TPM2_CC_SELF_TEST), in tpm2_self_test()
50 tpm_u32(27 + pw_sz), /* Length */ in tpm2_clear()
51 tpm_u32(TPM2_CC_CLEAR), /* Command code */ in tpm2_clear()
54 tpm_u32(handle), /* TPM resource handle */ in tpm2_clear()
57 tpm_u32(9 + pw_sz), /* Authorization size */ in tpm2_clear()
58 tpm_u32(TPM2_RS_PW), /* Session handle */ in tpm2_clear()
85 tpm_u32(33 + TPM2_DIGEST_LEN), /* Length */ in tpm2_pcr_extend()
[all …]
Dtpm-utils.h19 #define tpm_u32(x) tpm_u16((x) >> 16), tpm_u16((x) & 0xFFFF) macro