blob: 9fc1acaec1275c60279a5aabe184f66b2bbef31e [file] [log] [blame]
Peter Huewed5a36f62018-06-12 00:59:26 +02001/* SPDX-License-Identifier: BSD-2 */
Philip Tricca850bb592018-04-03 09:29:22 -07002/*
3 * Copyright (c) 2018 Intel Corporation
4 * All rights reserved.
Philip Tricca850bb592018-04-03 09:29:22 -07005 */
6#ifndef TCTI_DEVICE_H
7#define TCTI_DEVICE_H
8
9#include "tcti-common.h"
10
11#define TCTI_DEVICE_MAGIC 0x89205e72e319e5bbULL
12
13typedef struct {
14 TSS2_TCTI_COMMON_CONTEXT common;
15 int fd;
16} TSS2_TCTI_DEVICE_CONTEXT;
17
18#endif /* TCTI_DEVICE_H */