kernel_offsets.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * Copyright (c) 2013-2014 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <device.h>
  7. #ifndef ZEPHYR_KERNEL_INCLUDE_KERNEL_OFFSETS_H_
  8. #define ZEPHYR_KERNEL_INCLUDE_KERNEL_OFFSETS_H_
  9. #include <syscall_list.h>
  10. /* All of this is build time magic, but LCOV gets confused. Disable coverage
  11. * for this whole file.
  12. *
  13. * LCOV_EXCL_START
  14. */
  15. /*
  16. * The final link step uses the symbol _OffsetAbsSyms to force the linkage of
  17. * offsets.o into the ELF image.
  18. */
  19. GEN_ABS_SYM_BEGIN(_OffsetAbsSyms)
  20. GEN_OFFSET_SYM(_cpu_t, current);
  21. GEN_OFFSET_SYM(_cpu_t, nested);
  22. GEN_OFFSET_SYM(_cpu_t, irq_stack);
  23. GEN_OFFSET_SYM(_cpu_t, arch);
  24. GEN_ABSOLUTE_SYM(___cpu_t_SIZEOF, sizeof(struct _cpu));
  25. GEN_OFFSET_SYM(_kernel_t, cpus);
  26. #if defined(CONFIG_THREAD_MONITOR)
  27. GEN_OFFSET_SYM(_kernel_t, threads);
  28. #endif
  29. #ifdef CONFIG_PM
  30. GEN_OFFSET_SYM(_kernel_t, idle);
  31. #endif
  32. GEN_OFFSET_SYM(_kernel_t, ready_q);
  33. #ifndef CONFIG_SMP
  34. GEN_OFFSET_SYM(_ready_q_t, cache);
  35. #endif
  36. #ifdef CONFIG_FPU_SHARING
  37. GEN_OFFSET_SYM(_kernel_t, current_fp);
  38. #endif
  39. GEN_ABSOLUTE_SYM(_STRUCT_KERNEL_SIZE, sizeof(struct z_kernel));
  40. GEN_OFFSET_SYM(_thread_base_t, user_options);
  41. GEN_OFFSET_SYM(_thread_base_t, thread_state);
  42. GEN_OFFSET_SYM(_thread_base_t, prio);
  43. GEN_OFFSET_SYM(_thread_base_t, sched_locked);
  44. GEN_OFFSET_SYM(_thread_base_t, preempt);
  45. GEN_OFFSET_SYM(_thread_base_t, swap_data);
  46. GEN_OFFSET_SYM(_thread_t, base);
  47. GEN_OFFSET_SYM(_thread_t, callee_saved);
  48. GEN_OFFSET_SYM(_thread_t, arch);
  49. #ifdef CONFIG_USE_SWITCH
  50. GEN_OFFSET_SYM(_thread_t, switch_handle);
  51. #endif
  52. #ifdef CONFIG_THREAD_STACK_INFO
  53. GEN_OFFSET_SYM(_thread_stack_info_t, start);
  54. GEN_OFFSET_SYM(_thread_stack_info_t, size);
  55. GEN_OFFSET_SYM(_thread_t, stack_info);
  56. #endif
  57. #if defined(CONFIG_THREAD_MONITOR)
  58. GEN_OFFSET_SYM(_thread_t, next_thread);
  59. #endif
  60. #ifdef CONFIG_THREAD_CUSTOM_DATA
  61. GEN_OFFSET_SYM(_thread_t, custom_data);
  62. #endif
  63. #ifdef CONFIG_THREAD_LOCAL_STORAGE
  64. GEN_OFFSET_SYM(_thread_t, tls);
  65. #endif
  66. GEN_ABSOLUTE_SYM(K_THREAD_SIZEOF, sizeof(struct k_thread));
  67. /* size of the device structure. Used by linker scripts */
  68. GEN_ABSOLUTE_SYM(_DEVICE_STRUCT_SIZEOF, sizeof(const struct device));
  69. /* member offsets in the device structure. Used in image post-processing */
  70. GEN_ABSOLUTE_SYM(_DEVICE_STRUCT_HANDLES_OFFSET,
  71. offsetof(struct device, handles));
  72. /* LCOV_EXCL_STOP */
  73. #endif /* ZEPHYR_KERNEL_INCLUDE_KERNEL_OFFSETS_H_ */