Nios® V Processor Software Developer Handbook

ID 743810
Date 5/26/2023
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

13.1.1.47. alt_load_section()

Prototype

void alt_load_section(alt_u32* from,

alt_u32* to,

alt_u32* end)

Commonly Called By

C/C++ programs

Thread-safe

No.

Available from ISR

No.

Include

<sys/alt_load.h>

Description

When operating in run-from-flash mode, the sections .exceptions, .rodata, and .rwdata are automatically loaded from the boot device to RAM at boot time. However, if there are any additional sections that require loading, the alt_load_section() function loads them manually before these sections are used.

Intel recommends to call below the macro ALT_LOAD_SECTION_BY_NAME and before alt_dcache_flush_all() and alt_icache_flush_all().

The input argument from is the start address in the boot device of the section; to is the start address in RAM of the section, and end is the end address in RAM of the section.

To load one of the additional memory sections provided by the default linker script, use the macro ALT_LOAD_SECTION_BY_NAME rather than calling alt_load_section() directly. For example, to load the section .onchip_ram, use the following code:

ALT_LOAD_SECTION_BY_NAME(onchip_ram);

The leading ‘.’ is omitted in the section name. This macro is defined in the header sys/alt_load.h.

Return

--