/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */1/*2* Include file for the interface to IST BIOS3* Copyright 2002 Andy Grover <[email protected]>4*5* This program is free software; you can redistribute it and/or modify it6* under the terms of the GNU General Public License as published by the7* Free Software Foundation; either version 2, or (at your option) any8* later version.9*10* This program is distributed in the hope that it will be useful, but11* WITHOUT ANY WARRANTY; without even the implied warranty of12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU13* General Public License for more details.14*/15#ifndef _UAPI_ASM_X86_IST_H16#define _UAPI_ASM_X86_IST_H17181920#include <linux/types.h>2122struct ist_info {23__u32 signature;24__u32 command;25__u32 event;26__u32 perf_level;27};2829#endif /* _UAPI_ASM_X86_IST_H */303132