sa0.ld.S 797 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2020, Renesas Electronics Corporation. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. SECTIONS
  7. {
  8. . = 0x00000000;
  9. .rodata : {
  10. KEEP(*(.sa0_bootrom))
  11. /* Map Type 3 for eMMC Boot */
  12. /* A-side IPL content cert "Start Address" */
  13. . = 0x000001D4; /* H'00000080 + H'00000154 */
  14. KEEP(*(.sa0_bl2dst_addr3))
  15. /* A-side IPL content cert "Size" */
  16. . = 0x000002E4; /* H'00000080 + H'00000264 */
  17. KEEP(*(.sa0_bl2dst_size3))
  18. /* Map Type 1 for HyperFlash/QSPI Flash Boot */
  19. /* A-side IPL content cert "Start Address" */
  20. . = 0x00000D54; /* H'00000C00 + H'00000154 */
  21. KEEP(*(.sa0_bl2dst_addr1))
  22. /* A-side IPL content cert "Size" */
  23. . = 0x00000E64; /* H'00000C00 + H'00000264 */
  24. KEEP(*(.sa0_bl2dst_size1))
  25. }
  26. }