linker: Add dtcm section for Cortex M7 MCUs
This commit adds a DTCM (Device Tightly Coupled Memory) section for Cortex F7 MCUs. The Address and length is defined in the corresponding device tree file. Signed-off-by: Alexander Wachter <alexander.wachter@student.tugraz.at>
This commit is contained in:
parent
1f046f9943
commit
b4c5f4b32b
7 changed files with 85 additions and 1 deletions
|
@ -216,6 +216,18 @@ extern char __ccm_noinit_end[];
|
|||
extern char __ccm_end[];
|
||||
#endif /* DT_CCM_BASE_ADDRESS */
|
||||
|
||||
#ifdef DT_DTCM_BASE_ADDRESS
|
||||
extern char __dtcm_data_start[];
|
||||
extern char __dtcm_data_end[];
|
||||
extern char __dtcm_bss_start[];
|
||||
extern char __dtcm_bss_end[];
|
||||
extern char __dtcm_noinit_start[];
|
||||
extern char __dtcm_noinit_end[];
|
||||
extern char __dtcm_data_rom_start[];
|
||||
extern char __dtcm_start[];
|
||||
extern char __dtcm_end[];
|
||||
#endif /* DT_DTCM_BASE_ADDRESS */
|
||||
|
||||
/* Used by the Security Attribution Unit to configure the
|
||||
* Non-Secure Callable region.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue