|
root / base / usr / src / cmd / bhyve / common / tpm_device.h
tpm_device.h C 21 lines 408 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
/*-
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (c) 2023 Beckhoff Automation GmbH & Co. KG
 * Author: Corvin Köhne <corvink@FreeBSD.org>
 */

#pragma once

#include <vmmapi.h>

#include "config.h"

struct tpm_device;

int tpm_device_create(struct tpm_device **new_dev, struct vmctx *vm_ctx,
    nvlist_t *nvl);
void tpm_device_destroy(struct tpm_device *dev);

int init_tpm(struct vmctx *ctx);