cpufeature_64.h 554 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * cpufeature_32.h
  3. *
  4. * Defines x86 CPU feature bits
  5. */
  6. #ifndef __ASM_X8664_CPUFEATURE_H
  7. #define __ASM_X8664_CPUFEATURE_H
  8. #include "cpufeature_32.h"
  9. #undef cpu_has_vme
  10. #define cpu_has_vme 0
  11. #undef cpu_has_pae
  12. #define cpu_has_pae ___BUG___
  13. #undef cpu_has_mp
  14. #define cpu_has_mp 1 /* XXX */
  15. #undef cpu_has_k6_mtrr
  16. #define cpu_has_k6_mtrr 0
  17. #undef cpu_has_cyrix_arr
  18. #define cpu_has_cyrix_arr 0
  19. #undef cpu_has_centaur_mcr
  20. #define cpu_has_centaur_mcr 0
  21. #endif /* __ASM_X8664_CPUFEATURE_H */