plat.ld.S 377 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2022-2023, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef PLAT_LD_S
  7. #define PLAT_LD_S
  8. #include <lib/xlat_tables/xlat_tables_defs.h>
  9. MEMORY {
  10. RAM2 (rw): ORIGIN = DDR2_SEC_BASE, LENGTH = DDR2_SEC_SIZE
  11. }
  12. SECTIONS
  13. {
  14. .ram2_region (NOLOAD) : {
  15. *(.ram2_region)
  16. }>RAM2
  17. }
  18. #endif /* PLAT_LD_S */