2008-06-18 15:08:48 +00:00
|
|
|
#ifndef ASM_X86__IST_H
|
|
|
|
#define ASM_X86__IST_H
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Include file for the interface to IST BIOS
|
|
|
|
* Copyright 2002 Andy Grover <andrew.grover@intel.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2, or (at your option) any
|
|
|
|
* later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2007-07-19 00:19:30 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
struct ist_info {
|
2007-10-22 00:56:19 +00:00
|
|
|
__u32 signature;
|
|
|
|
__u32 command;
|
|
|
|
__u32 event;
|
|
|
|
__u32 perf_level;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2007-10-22 00:56:19 +00:00
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
extern struct ist_info ist_info;
|
|
|
|
|
|
|
|
#endif /* __KERNEL__ */
|
2008-06-18 15:08:48 +00:00
|
|
|
#endif /* ASM_X86__IST_H */
|