You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.2 KiB
84 lines
2.2 KiB
4 months ago
|
/*
|
||
|
* Copyright (c) Hisilicon Technologies Co., Ltd. 2019-2021. All rights reserved.
|
||
|
* Description: Test the file of the tee ctrl lock interface.
|
||
|
* Author: Hisilicon
|
||
|
* Create: 2019-09-23
|
||
|
*/
|
||
|
#include "sample_otp_base.h"
|
||
|
|
||
|
static td_s32 get_tee_ctrl_lock_stat(td_s32 argc, td_char *argv[]);
|
||
|
static td_s32 set_tee_ctrl_lock(td_s32 argc, td_char *argv[]);
|
||
|
|
||
|
static otp_sample g_otp_sample_data[] = {
|
||
|
{ 0, "help", NULL, { "Display this help and exit.", "example: ./sample_otp_teectrllock help" } },
|
||
|
{ 1, "set", set_tee_ctrl_lock, { "Set TEE ctrl lock.", "example: ./sample_otp_teectrllock set" } },
|
||
|
{ 2, "get", get_tee_ctrl_lock_stat, { "Get TEE ctrl lock stat.", "example: ./sample_otp_teectrllock get" } },
|
||
|
};
|
||
|
|
||
|
static td_s32 get_tee_ctrl_lock_stat(td_s32 argc, td_char *argv[])
|
||
|
{
|
||
|
td_s32 ret;
|
||
|
td_bool stat = TD_FALSE;
|
||
|
|
||
|
ret = uapi_otp_get_tee_ctrl_lock(&stat);
|
||
|
if (ret != TD_SUCCESS) {
|
||
|
sample_printf("Failed to get TEE ctrl lock stat, ret = 0x%x \n", ret);
|
||
|
goto out;
|
||
|
}
|
||
|
|
||
|
sample_printf("Get TEE ctrl lock : %d\n", stat);
|
||
|
|
||
|
unused(argc);
|
||
|
unused(argv);
|
||
|
out:
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
static td_s32 set_tee_ctrl_lock(td_s32 argc, td_char *argv[])
|
||
|
{
|
||
|
td_s32 ret;
|
||
|
|
||
|
ret = uapi_otp_set_tee_ctrl_lock();
|
||
|
if (ret != TD_SUCCESS) {
|
||
|
sample_printf("Failed to set TEE ctrl lock, ret = 0x%x \n", ret);
|
||
|
goto out;
|
||
|
}
|
||
|
|
||
|
unused(argc);
|
||
|
unused(argv);
|
||
|
out:
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
td_s32 main(int argc, char *argv[])
|
||
|
{
|
||
|
td_s32 ret;
|
||
|
|
||
|
if (argc < 0x2) {
|
||
|
sample_printf("sample parameter error.\n");
|
||
|
ret = SOC_ERR_OTP_INVALID_PARA;
|
||
|
goto out1;
|
||
|
}
|
||
|
|
||
|
if (case_strcmp("help", argv[1])) {
|
||
|
show_usage(g_otp_sample_data, sizeof(g_otp_sample_data) / sizeof(g_otp_sample_data[0]));
|
||
|
ret = TD_SUCCESS;
|
||
|
goto out0;
|
||
|
}
|
||
|
|
||
|
ret = uapi_otp_init();
|
||
|
if (ret != TD_SUCCESS) {
|
||
|
sample_printf("OTP init failed, ret = 0x%x \n", ret);
|
||
|
goto out1;
|
||
|
}
|
||
|
|
||
|
ret = run_cmdline(argc, argv, g_otp_sample_data, sizeof(g_otp_sample_data) / sizeof(g_otp_sample_data[0]));
|
||
|
|
||
|
(td_void)uapi_otp_deinit();
|
||
|
|
||
|
out1:
|
||
|
show_returne_msg(g_otp_sample_data, sizeof(g_otp_sample_data) / sizeof(g_otp_sample_data[0]), ret);
|
||
|
out0:
|
||
|
return ret;
|
||
|
}
|