ERROR(CMD16-TAD59-NAL63): ! Failed to load "helloWorld.axf"

Hi all,

I am working on Agilex-7 SoC Dev-Kit and currently I'm facing a problem while trying to debug a simple hello world app. The error is "ERROR(CMD16-TAD59-NAL63): ! Failed to load "helloWorld.axf" ! Download of 145.536 bytes to address EL3:0x0000000000008000 failed while writing block of 4.096 bytes to address EL3:0x0000000000008000"

Could you please help about that?

Best Regards,

Balerion

Parents
  • My name is Stephen and I work at Arm.

    The error message:
    "Download of 145.536 bytes to address EL3:0x0000000000008000 failed"
    implies that there is no (writable) memory at EL3:0x8000 on your system.

    Suggest you first check whether that memory space is writable.

    You don't say which compiler you used to build the Hello World app but, if you used Arm Compiler 5 or 6 then, at link time, the Arm Linker will default to a base address of 0x8000.  To specify a different link address, use e.g. the --ro-base option, or use a scatter file.

    If you need more with the Intel tools then please try the Intel forum at:

    community.intel.com/.../soc-fpga-embedded-development-suite

    Hope this helps

    Stephen

Reply
  • My name is Stephen and I work at Arm.

    The error message:
    "Download of 145.536 bytes to address EL3:0x0000000000008000 failed"
    implies that there is no (writable) memory at EL3:0x8000 on your system.

    Suggest you first check whether that memory space is writable.

    You don't say which compiler you used to build the Hello World app but, if you used Arm Compiler 5 or 6 then, at link time, the Arm Linker will default to a base address of 0x8000.  To specify a different link address, use e.g. the --ro-base option, or use a scatter file.

    If you need more with the Intel tools then please try the Intel forum at:

    community.intel.com/.../soc-fpga-embedded-development-suite

    Hope this helps

    Stephen

Children