xip.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Copyright (c) 2010-2014 Wind River Systems, Inc.
  3. * Copyright (c) 2020 Intel Corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #include <zephyr.h>
  8. #include <kernel.h>
  9. #include <string.h>
  10. #include <linker/linker-defs.h>
  11. #ifdef CONFIG_STACK_CANARIES
  12. extern volatile uintptr_t __stack_chk_guard;
  13. #endif /* CONFIG_STACK_CANARIES */
  14. /**
  15. *
  16. * @brief Copy the data section from ROM to RAM
  17. *
  18. * This routine copies the data section from ROM to RAM.
  19. *
  20. * @return N/A
  21. */
  22. void z_data_copy(void)
  23. {
  24. (void)memcpy(&__data_region_start, &__data_region_load_start,
  25. (uintptr_t)&__data_region_end - (uintptr_t)&__data_region_start);
  26. #ifdef CONFIG_ARCH_HAS_RAMFUNC_SUPPORT
  27. (void)memcpy(&__ramfunc_start, &__ramfunc_load_start,
  28. (uintptr_t) &__ramfunc_size);
  29. #endif /* CONFIG_ARCH_HAS_RAMFUNC_SUPPORT */
  30. #ifdef CONFIG_SLEEP_FUNC_IN_SRAM
  31. (void)memcpy(&_sram_data_start, &_sram_data_rom_start,
  32. (uintptr_t) &_sram_data_ram_size);
  33. #endif /* CONFIG_SLEEP_FUNC_IN_SRAM */
  34. #if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_ccm), okay)
  35. (void)memcpy(&__ccm_data_start, &__ccm_data_rom_start,
  36. __ccm_data_end - __ccm_data_start);
  37. #endif
  38. #if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_itcm), okay)
  39. (void)memcpy(&__itcm_start, &__itcm_load_start,
  40. (uintptr_t) &__itcm_size);
  41. #endif
  42. #if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_dtcm), okay)
  43. (void)memcpy(&__dtcm_data_start, &__dtcm_data_load_start,
  44. __dtcm_data_end - __dtcm_data_start);
  45. #endif
  46. #ifdef CONFIG_CODE_DATA_RELOCATION
  47. extern void data_copy_xip_relocation(void);
  48. data_copy_xip_relocation();
  49. #endif /* CONFIG_CODE_DATA_RELOCATION */
  50. #ifdef CONFIG_USERSPACE
  51. #ifdef CONFIG_STACK_CANARIES
  52. /* stack canary checking is active for all C functions.
  53. * __stack_chk_guard is some uninitialized value living in the
  54. * app shared memory sections. Preserve it, and don't make any
  55. * function calls to perform the memory copy. The true canary
  56. * value gets set later in z_cstart().
  57. */
  58. uintptr_t guard_copy = __stack_chk_guard;
  59. uint8_t *src = (uint8_t *)&_app_smem_rom_start;
  60. uint8_t *dst = (uint8_t *)&_app_smem_start;
  61. uint32_t count = _app_smem_end - _app_smem_start;
  62. guard_copy = __stack_chk_guard;
  63. while (count > 0) {
  64. *(dst++) = *(src++);
  65. count--;
  66. }
  67. __stack_chk_guard = guard_copy;
  68. #else
  69. (void)memcpy(&_app_smem_start, &_app_smem_rom_start,
  70. _app_smem_end - _app_smem_start);
  71. #endif /* CONFIG_STACK_CANARIES */
  72. #endif /* CONFIG_USERSPACE */
  73. }