blob: 93cc06091bbcde2e7eaee1c10bbc040d25b7fb18 [file] [log] [blame]
/* SPDX-License-Identifier: BSD-2-Clause */
/***********************************************************************
* Copyright (c) 2017-2018, Intel Corporation
*
* All rights reserved.
***********************************************************************/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include "tss2_sys.h"
#define LOGMODULE test
#include "util/log.h"
#include "test.h"
int
test_invoke (TSS2_SYS_CONTEXT *sys_context)
{
TSS2_RC rc;
TPMS_CAPABILITY_DATA capability_data;
LOG_INFO("Get TPM Properties Test started.");
rc = Tss2_Sys_GetCapability(sys_context, 0, TPM2_CAP_TPM_PROPERTIES,
TPM2_PT_MANUFACTURER, 1, 0, &capability_data, 0);
if (rc != TSS2_RC_SUCCESS ||
capability_data.data.tpmProperties.tpmProperty[0].property != TPM2_PT_MANUFACTURER) {
LOG_ERROR("Get TPM Properties TPM2_PT_MANUFACTURER FAILED! Response Code : 0x%x", rc);
exit(1);
}
LOG_INFO("TPM Manufacturer 0x%x", capability_data.data.tpmProperties.tpmProperty[0].value);
rc = Tss2_Sys_GetCapability(sys_context, 0, TPM2_CAP_TPM_PROPERTIES,
TPM2_PT_REVISION, 1, 0, &capability_data, 0);
if (rc != TSS2_RC_SUCCESS ||
capability_data.data.tpmProperties.tpmProperty[0].property != TPM2_PT_REVISION) {
LOG_ERROR("Get TPM Properties TPM2_PT_REVISION FAILED! Response Code : 0x%x", rc);
exit(1);
}
LOG_INFO("TPM revision 0x%X", capability_data.data.tpmProperties.tpmProperty[0].value);
LOG_INFO("Get TPM Properties Test Passed!");
return 0;
}