kernel_tls.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (c) 2020 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Kernel Thread Local Storage APIs.
  9. *
  10. * Kernel APIs related to thread local storage.
  11. */
  12. #ifndef ZEPHYR_KERNEL_INCLUDE_KERNEL_TLS_H_
  13. #define ZEPHYR_KERNEL_INCLUDE_KERNEL_TLS_H_
  14. #include <linker/linker-defs.h>
  15. /**
  16. * @brief Return the total size of TLS data/bss areas
  17. *
  18. * This returns the total size of thread local storage (TLS)
  19. * data and bss areas as defined in the linker script.
  20. * Note that this does not include any architecture specific
  21. * bits required for proper functionality of TLS.
  22. *
  23. * @return Total size of TLS data/bss areas
  24. */
  25. static inline size_t z_tls_data_size(void)
  26. {
  27. size_t tdata_size = ROUND_UP(__tdata_size, __tdata_align);
  28. size_t tbss_size = ROUND_UP(__tbss_size, __tbss_align);
  29. return tdata_size + tbss_size;
  30. }
  31. /**
  32. * @brief Copy the TLS data/bss areas into destination
  33. *
  34. * This copies the TLS data into destination and clear the area
  35. * of TLS bss size after the data section.
  36. *
  37. * @param dest Pointer to destination
  38. */
  39. static inline void z_tls_copy(char *dest)
  40. {
  41. size_t tdata_size = (size_t)__tdata_size;
  42. size_t tbss_size = (size_t)__tbss_size;
  43. /* Copy initialized data (tdata) */
  44. memcpy(dest, __tdata_start, tdata_size);
  45. /* Clear BSS data (tbss) */
  46. dest += ROUND_UP(tdata_size, __tdata_align);
  47. memset(dest, 0, tbss_size);
  48. }
  49. #endif /* ZEPHYR_KERNEL_INCLUDE_KERNEL_TLS_H_ */