ist.h 418 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. #ifndef _ASM_X86_IST_H
  3. #define _ASM_X86_IST_H
  4. /*
  5. * Include file for the interface to IST BIOS
  6. * Copyright 2002 Andy Grover <andrew.grover@intel.com>
  7. */
  8. #include <linux/types.h>
  9. struct ist_info {
  10. __u32 signature;
  11. __u32 command;
  12. __u32 event;
  13. __u32 perf_level;
  14. };
  15. #ifdef __KERNEL__
  16. extern struct ist_info ist_info;
  17. #endif /* __KERNEL__ */
  18. #endif /* _ASM_X86_IST_H */