cpu.h 876 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* cpu.h - automatically selects the correct arch.h file to include */
  2. /*
  3. * Copyright (c) 1997-2014 Wind River Systems, Inc.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_ARCH_CPU_H_
  8. #define ZEPHYR_INCLUDE_ARCH_CPU_H_
  9. #include <sys/arch_interface.h>
  10. #if defined(CONFIG_X86)
  11. #include <arch/x86/arch.h>
  12. #elif defined(CONFIG_ARM64)
  13. #include <arch/arm64/arch.h>
  14. #elif defined(CONFIG_ARM)
  15. #include <arch/arm/aarch32/arch.h>
  16. #elif defined(CONFIG_ARC)
  17. #include <arch/arc/arch.h>
  18. #elif defined(CONFIG_NIOS2)
  19. #include <arch/nios2/arch.h>
  20. #elif defined(CONFIG_RISCV)
  21. #include <arch/riscv/arch.h>
  22. #elif defined(CONFIG_XTENSA)
  23. #include <arch/xtensa/arch.h>
  24. #elif defined(CONFIG_ARCH_POSIX)
  25. #include <arch/posix/arch.h>
  26. #elif defined(CONFIG_SPARC)
  27. #include <arch/sparc/arch.h>
  28. #else
  29. #error "Unknown Architecture"
  30. #endif
  31. #endif /* ZEPHYR_INCLUDE_ARCH_CPU_H_ */