riscv_features.h 454 B

123456789101112131415161718
  1. /* riscv_features.h -- check for riscv features.
  2. *
  3. * Copyright (C) 2023 SiFive, Inc. All rights reserved.
  4. * Contributed by Alex Chiang <alex.chiang@sifive.com>
  5. *
  6. * For conditions of distribution and use, see copyright notice in zlib.h
  7. */
  8. #ifndef RISCV_FEATURES_H_
  9. #define RISCV_FEATURES_H_
  10. struct riscv_cpu_features {
  11. int has_rvv;
  12. };
  13. void Z_INTERNAL riscv_check_features(struct riscv_cpu_features *features);
  14. #endif /* RISCV_FEATURES_H_ */