mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
31 lines
No EOL
838 B
C
Vendored
31 lines
No EOL
838 B
C
Vendored
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
#ifndef _PAPR_PHYSICAL_ATTESTATION_H_
|
|
#define _PAPR_PHYSICAL_ATTESTATION_H_
|
|
|
|
#include <linux/types.h>
|
|
#include <asm/ioctl.h>
|
|
#include <asm/papr-miscdev.h>
|
|
|
|
#define PAPR_PHYATTEST_MAX_INPUT 4084 /* Max 4K buffer: 4K-12 */
|
|
|
|
/*
|
|
* Defined in PAPR 2.13+ 21.6 Attestation Command Structures.
|
|
* User space pass this struct and the max size should be 4K.
|
|
*/
|
|
struct papr_phy_attest_io_block {
|
|
__u8 version;
|
|
__u8 command;
|
|
__u8 TCG_major_ver;
|
|
__u8 TCG_minor_ver;
|
|
__be32 length;
|
|
__be32 correlator;
|
|
__u8 payload[PAPR_PHYATTEST_MAX_INPUT];
|
|
};
|
|
|
|
/*
|
|
* ioctl for /dev/papr-physical-attestation. Returns a attestation
|
|
* command fd handle
|
|
*/
|
|
#define PAPR_PHY_ATTEST_IOC_HANDLE _IOW(PAPR_MISCDEV_IOC_ID, 8, struct papr_phy_attest_io_block)
|
|
|
|
#endif /* _PAPR_PHYSICAL_ATTESTATION_H_ */ |