ist.h 419 B

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