Home
last modified time | relevance | path

Searched refs:tpm_status (Results 1 – 8 of 8) sorted by relevance

/external/vboot_reference/firmware/lib/
Dvboot_api_firmware.c29 uint32_t tpm_status = 0; in VbSelectFirmware() local
85 tpm_status = in VbSelectFirmware()
87 if (0 != tpm_status) { in VbSelectFirmware()
97 tpm_status = RollbackFirmwareLock(); in VbSelectFirmware()
98 if (0 != tpm_status) { in VbSelectFirmware()
111 tpm_status = SetTPMBootModeState(is_dev, is_rec, in VbSelectFirmware()
114 if (0 != tpm_status) { in VbSelectFirmware()
Dvboot_api_init.c32 uint32_t tpm_status = 0; in VbInit() local
196 tpm_status = RollbackFirmwareSetup(is_hw_dev, in VbInit()
202 if (0 != tpm_status) { in VbInit()
204 "firmware version (0x%x)\n", tpm_status)); in VbInit()
206 if (TPM_E_MUST_REBOOT == tpm_status) { in VbInit()
237 tpm_status); in VbInit()
Dvboot_api_kernel.c974 uint32_t tpm_status = 0; in VbSelectAndLoadKernel() local
1027 tpm_status = RollbackKernelRead(&shared->kernel_version_tpm); in VbSelectAndLoadKernel()
1028 if (0 != tpm_status) { in VbSelectAndLoadKernel()
1135 tpm_status = RollbackKernelWrite( in VbSelectAndLoadKernel()
1137 if (0 != tpm_status) { in VbSelectAndLoadKernel()
1161 tpm_status = RollbackKernelLock(shared->recovery_reason); in VbSelectAndLoadKernel()
1162 if (0 != tpm_status) { in VbSelectAndLoadKernel()
/external/autotest/server/site_tests/platform_CryptohomeTpmLiveTestServer/
Dplatform_CryptohomeTpmLiveTestServer.py20 tpm_status = tpm_utils.TPMStatus(self.client)
21 if 'Enabled' not in tpm_status:
23 'returned by cryptohome: ' + str(tpm_status))
24 if not tpm_status['Enabled']:
/external/autotest/server/site_tests/firmware_Cr50VirtualNVRamServer/
Dfirmware_Cr50VirtualNVRamServer.py23 tpm_status = tpm_utils.TPMStatus(self.client)
24 if 'Enabled' not in tpm_status:
26 'returned by cryptohome: ' + str(tpm_status))
27 if not tpm_status['Enabled']:
/external/u-boot/drivers/tpm/
Dtpm_tis_lpc.c46 u32 tpm_status; member
207 value = tis_wait_reg(priv, &regs[locality].tpm_status, in tis_senddata()
228 &regs[locality].tpm_status)); in tis_senddata()
247 value = tis_wait_reg(priv, &regs[locality].tpm_status, in tis_senddata()
273 value = tis_wait_reg(priv, &regs[locality].tpm_status, in tis_senddata()
282 tpm_write_word(priv, TIS_STS_TPM_GO, &regs[locality].tpm_status); in tis_senddata()
311 value = tis_wait_reg(priv, &regs[locality].tpm_status, in tis_readresponse()
327 value = tpm_read_word(priv, &regs[locality].tpm_status); in tis_readresponse()
361 value = tis_wait_reg(priv, &regs[locality].tpm_status, in tis_readresponse()
386 &regs[locality].tpm_status); in tis_readresponse()
[all …]
/external/autotest/client/common_lib/cros/
Dtpm_utils.py126 tpm_status = TPMStatus(client)
127 logging.info('TPM status: %s', tpm_status)
128 if tpm_status['Owned']:
/external/autotest/client/site_tests/platform_CryptohomeTPMReOwn/
Dplatform_CryptohomeTPMReOwn.py18 tpm_status = cryptohome.get_tpm_status()
19 if tpm_status['Ready'] == True: