nocache.ld 506 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2019 Nordic Semiconductor ASA
  3. * Copyright (c) 2019 Intel Corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /* Copied from linker.ld */
  8. /* Non-cached region of RAM */
  9. SECTION_DATA_PROLOGUE(_NOCACHE_SECTION_NAME,(NOLOAD),)
  10. {
  11. MPU_ALIGN(_nocache_ram_size);
  12. _nocache_ram_start = .;
  13. *(.nocache)
  14. *(".nocache.*")
  15. MPU_ALIGN(_nocache_ram_size);
  16. _nocache_ram_end = .;
  17. } GROUP_DATA_LINK_IN(RAMABLE_REGION, RAMABLE_REGION)
  18. _nocache_ram_size = _nocache_ram_end - _nocache_ram_start;