2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* cpufeature.h
|
|
|
|
*
|
|
|
|
* Defines x86 CPU feature bits
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_X8664_CPUFEATURE_H
|
|
|
|
#define __ASM_X8664_CPUFEATURE_H
|
|
|
|
|
2007-07-11 21:18:29 +02:00
|
|
|
#include <asm-i386/cpufeature.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-07-11 21:18:29 +02:00
|
|
|
#undef cpu_has_vme
|
2005-04-17 00:20:36 +02:00
|
|
|
#define cpu_has_vme 0
|
2007-07-11 21:18:29 +02:00
|
|
|
|
|
|
|
#undef cpu_has_pae
|
2005-04-17 00:20:36 +02:00
|
|
|
#define cpu_has_pae ___BUG___
|
2007-07-11 21:18:29 +02:00
|
|
|
|
|
|
|
#undef cpu_has_mp
|
2005-04-17 00:20:36 +02:00
|
|
|
#define cpu_has_mp 1 /* XXX */
|
2007-07-11 21:18:29 +02:00
|
|
|
|
|
|
|
#undef cpu_has_k6_mtrr
|
2005-04-17 00:20:36 +02:00
|
|
|
#define cpu_has_k6_mtrr 0
|
2007-07-11 21:18:29 +02:00
|
|
|
|
|
|
|
#undef cpu_has_cyrix_arr
|
2005-04-17 00:20:36 +02:00
|
|
|
#define cpu_has_cyrix_arr 0
|
2007-07-11 21:18:29 +02:00
|
|
|
|
|
|
|
#undef cpu_has_centaur_mcr
|
2005-04-17 00:20:36 +02:00
|
|
|
#define cpu_has_centaur_mcr 0
|
|
|
|
|
|
|
|
#endif /* __ASM_X8664_CPUFEATURE_H */
|