aboutsummaryrefslogtreecommitdiff
path: root/libstb/secvar/storage/tpmnv_ops.c
diff options
context:
space:
mode:
Diffstat (limited to 'libstb/secvar/storage/tpmnv_ops.c')
-rw-r--r--libstb/secvar/storage/tpmnv_ops.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/libstb/secvar/storage/tpmnv_ops.c b/libstb/secvar/storage/tpmnv_ops.c
new file mode 100644
index 0000000..d6135c3
--- /dev/null
+++ b/libstb/secvar/storage/tpmnv_ops.c
@@ -0,0 +1,15 @@
+// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
+/* Copyright 2020 IBM Corp. */
+#include <tssskiboot.h>
+#include "secboot_tpm.h"
+
+struct tpmnv_ops_s tpmnv_ops = {
+ .read = tss_nv_read,
+ .write = tss_nv_write,
+ .writelock = tss_nv_write_lock,
+ .definespace = tss_nv_define_space,
+ .getindices = tss_get_defined_nv_indices,
+ .undefinespace = tss_nv_undefine_space,
+ .readpublic = tss_nv_read_public,
+};
+