blob: acd9bd3ef2a15995d4658ea1a6b04a770b6b3563 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Graeme Russ1bab1042010-04-24 00:05:49 +10002#ifndef _ASM_X86_IST_H
3#define _ASM_X86_IST_H
4
5/*
6 * Include file for the interface to IST BIOS
7 * Copyright 2002 Andy Grover <andrew.grover@intel.com>
Graeme Russ1bab1042010-04-24 00:05:49 +10008 */
9
Graeme Russ1bab1042010-04-24 00:05:49 +100010#include <linux/types.h>
11
12struct ist_info {
13 __u32 signature;
14 __u32 command;
15 __u32 event;
16 __u32 perf_level;
17};
18
19#ifdef __KERNEL__
20
21extern struct ist_info ist_info;
22
23#endif /* __KERNEL__ */
24#endif /* _ASM_X86_IST_H */