power_features.h 517 B

123456789101112131415161718
  1. /* power_features.h -- check for POWER CPU features
  2. * Copyright (C) 2020 Matheus Castanho <msc@linux.ibm.com>, IBM
  3. * Copyright (C) 2021 Mika T. Lindqvist <postmaster@raasu.org>
  4. * For conditions of distribution and use, see copyright notice in zlib.h
  5. */
  6. #ifndef POWER_FEATURES_H_
  7. #define POWER_FEATURES_H_
  8. struct power_cpu_features {
  9. int has_altivec;
  10. int has_arch_2_07;
  11. int has_arch_3_00;
  12. };
  13. void Z_INTERNAL power_check_features(struct power_cpu_features *features);
  14. #endif /* POWER_FEATURES_H_ */