diff --git a/boards/risc-v/eic7700x/starpro64/include/board_memorymap.h b/boards/risc-v/eic7700x/starpro64/include/board_memorymap.h index 1a37af1211320..8bb29963a5eaf 100644 --- a/boards/risc-v/eic7700x/starpro64/include/board_memorymap.h +++ b/boards/risc-v/eic7700x/starpro64/include/board_memorymap.h @@ -33,11 +33,6 @@ * Pre-processor Definitions ****************************************************************************/ -/* DDR start address */ - -#define EIC7700X_DDR_BASE (0x50200000) -#define EIC7700X_DDR_SIZE (0x03e00000) - /* Kernel code memory (RX) */ #define KFLASH_START (uintptr_t)__kflash_start diff --git a/boards/risc-v/eic7700x/starpro64/scripts/ld.script b/boards/risc-v/eic7700x/starpro64/scripts/ld.script index 7daac0f8f7625..b4e6a8fb91b62 100644 --- a/boards/risc-v/eic7700x/starpro64/scripts/ld.script +++ b/boards/risc-v/eic7700x/starpro64/scripts/ld.script @@ -30,7 +30,7 @@ MEMORY OUTPUT_ARCH("riscv") -/* Provide the kernel boundaries */ +/* Define the kernel boundaries */ __kflash_start = ORIGIN(kflash); __kflash_size = LENGTH(kflash); @@ -53,7 +53,7 @@ SECTIONS { . = 0x80200000; - /* where the global variable out-of-bounds detection information located */ + /* Global variable out-of-bounds detection */ #ifdef CONFIG_MM_KASAN_GLOBAL .kasan.unused : { @@ -79,7 +79,7 @@ SECTIONS *(.glue_7t) *(.jcr) - /* C++ support: The .init and .fini sections contain specific logic + /* C++ support: The .init and .fini sections contain specific logic * to manage static constructors and destructors. */ @@ -139,7 +139,7 @@ SECTIONS _ebss = . ; } > ksram - /* Page tables here, align to 4K boundary */ + /* Page tables, aligned to 4K boundary */ .pgtables (NOLOAD) : ALIGN(0x1000) { @@ -155,7 +155,7 @@ SECTIONS _ebss = ABSOLUTE(.); } > ksram - /* Stabs debugging sections. */ + /* Stabs debugging */ .stab 0 : { *(.stab) } .stabstr 0 : { *(.stabstr) }