structs.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Copyright (c) BayLibre SAS
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /*
  7. * The purpose of this file is to provide essential/minimal architecture-
  8. * specific structure definitions to be included in generic kernel
  9. * structures.
  10. *
  11. * The following rules must be observed:
  12. * 1. arch/structs.h shall not depend on kernel.h both directly and
  13. * indirectly (i.e. it shall not include any header files that include
  14. * kernel.h in their dependency chain).
  15. * 2. kernel.h shall imply arch/structs.h via kernel_structs.h , such that
  16. * it shall not be necessary to include arch/structs.h explicitly when
  17. * kernel.h is included.
  18. */
  19. #ifndef ZEPHYR_INCLUDE_ARCH_STRUCTS_H_
  20. #define ZEPHYR_INCLUDE_ARCH_STRUCTS_H_
  21. #if !defined(_ASMLANGUAGE)
  22. #if defined(CONFIG_ARM64)
  23. #include <arch/arm64/structs.h>
  24. #else
  25. /* Default definitions when no architecture specific definitions exist. */
  26. /* Per CPU architecture specifics (empty) */
  27. struct _cpu_arch {
  28. };
  29. #endif
  30. /* typedefs to be used with GEN_OFFSET_SYM(), etc. */
  31. typedef struct _cpu_arch _cpu_arch_t;
  32. #endif /* _ASMLANGUAGE */
  33. #endif /* ZEPHYR_INCLUDE_ARCH_STRUCTS_H_ */