blob: f431015dc8a50c65a870ab02cbf8b4933ffd41f8 [file] [log] [blame]
David J. Maria4f437002018-07-02 14:55:16 -07001/* SPDX-License-Identifier: BSD-2 */
2/*
3 * Copyright (c) 2018 Intel Corporation
4 * All rights reserved.
5 */
6 /* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. */
7#ifndef TCTI_TBS_H
8#define TCTI_TBS_H
9
10#include "tcti-common.h"
11
12#define TCTI_TBS_MAGIC 0xfbf2afa3761e188aULL
13
14typedef struct {
15 TSS2_TCTI_COMMON_CONTEXT common;
16 void *hContext;
17 PBYTE commandBuffer;
18 UINT32 commandSize;
19} TSS2_TCTI_TBS_CONTEXT;
20
21
22
23#endif /* TCTI_TBS_H */