This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Changing DS-5 Debugger Expressions View Location Address space

I'm currently using an FVP model to develop my system. I'm using the DS-5 debugger. In the expressions view, I'm always getting the EL3 address space view of my expression of interest although I'm running in EL2. How can I change this? Thanks in advance

Parents
  • Hello, my guess would be that the symbols are only loaded to the EL3 level. You can load the symbols to EL2 with a command such as:

        add-symbol-file <image.axf> EL2:0x0

    See any of the startup_xxx examples provided with DS-5 (or the new Arm Development Studio) which have pre-configured debug configurations which do this.

    Ronan

Reply
  • Hello, my guess would be that the symbols are only loaded to the EL3 level. You can load the symbols to EL2 with a command such as:

        add-symbol-file <image.axf> EL2:0x0

    See any of the startup_xxx examples provided with DS-5 (or the new Arm Development Studio) which have pre-configured debug configurations which do this.

    Ronan

Children