This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCSv6.1.3, HW breakpoints in u-Boot SPL C source code does not work

Other Parts Discussed in Thread: AM4378

Hi all,

I am facing a problem with CCSv6.1.3.00033 (on Linux Ubuntu 14.04). I am trying to debug SPL following the training http://processors.wiki.ti.com/index.php/Sitara_Linux_Training:_uboot_linux_debug_with_ccsv5 on AM437x Starter Kit (http://www.ti.com/tool/TMDXSK437X, rev. 1.2A). I performed following steps: 

  1. Clone the u-Boot source code from GIT repository (git://git.ti.com/ti-u-boot/ti-u-boot.git, branch ti-u-boot-2015.07, version 2cc2dbc8).
  2. Compile u-Boot using command ‘make clean && make ARCH=arm CROSS_COMPILE=arm-none-eabi- am43xx_evm_config &&  make ARCH=arm CROSS_COMPILE=arm-none-eabi-‘ (using gcc from CCSv6 installation /opt/ti/ccsv6/tools/compiler/gcc-arm-none-eabi-4_9-2015q3/bin//arm-none-eabi-gcc).
  3. Import project to CCSv6 as ‘C/C++ -> Makefile Project with Existing Core’.
  4. Setup target configuration with Connection = ‘Texas Instruments XDS100v2 USB Debug Probe’ and Board or Device = AM4378.
  5. Launch the configuration and connect to the CortexA9 target.
  6. Load memory with ti-u-boot/spl/u-boot-spl.bin file, start address 0x402f4000 (according to CONFIG_ISW_ENTRY_ADDR value in u-boot-spl.cfg), type-size 32b.
  7. Load symbols from ti-u-boot/spl/u-boot-spl (code and data offset left empty).
  8. Set Set PC to SPL memory address (0x402F4000) and disable thumb mode CPSR.T=0.

After these steps, I am able to step through source codes in edit view (F5, F6). I am able to step through assembly code in Disassembly view (Shift+Ctrl+F5, Shift+Ctrl+F6) and define HW breakpoints in Disassembly view on lines including instructions or labels.

But, I cannot define a HW breakpoint in source codes edit view. Breakpoints could be defined only in the vectors.S file but not in the other source files. For example, if I step into start.S file and define a breakpoint at line 42, the breakpoint is created but it is disabled. I get an error “No code is associated with …” if I try to enable it (see screenshot ccsv6_starts_breakpoint_error.png below for further details). Does not matter if the source file is assembly or C file (the same issue can be observed for example with ti-u-boot/board/ti/am43xx/board.c file line 659, common/spl/spl.c line 270, …). Same behavior could be observed also if the breakpoint is created on the symbol line (for example ‘42    mrs  r0, cpsr’) inside the Disassembly view. The symbols seems to be loaded correctly and also the path to the file displayed in the Disassembly window when the mouse pointer is put over the symbol line seems to be valid (see second screen shot ccsv6_starts_breakpoint.png below for further details).

At very first debug session, the message “No source code available for …” was reported for the SPL start address in the source code view together with ‘Locate file’ button as far as I remember. The correct content is displayed in the source edit view after the vectors.S file directory was located using the ‘Locate file’ option.

I found several issues reported on e2e.ti.com related to this topic, for example:

Does anybody know where did I made a mistake? Any help is appreciated.

Thanks

Tomas

ccsv6_starts_breakpoint_error.png:

ccsv6_starts_breakpoint.png:

  • Hi Tomas,

    Setting source line breakpoint from the disassembly view or from the editor where the project contain multiple source files with the same name is known issue. The uboot project has a number of source files with the same name at various folders, the source lookup algorithm wasn’t able to locate the correct source file.

    You can workaround setting breakpoint by clicking on the blue breakpoint icon in the Breakpoints view toolbar (not the arrow) and enter the following expression in the text box "start.S, line 42". You can also set hardward breakpoint using the same method.

    Regards,
    Patrick

  • Hi Patrick,

    thank you. The proposed workaround works and I can live with that.

    Anyway, it is bit curious because the correct file path is displayed when I put mouse pointer over the line number corresponding to the symbol in the Disassembly view (as illustrated in the second screenshot above). So, the CCS somehow knows the link between the assembly and the correct source file.

    Best regards

    Tomas
  • Tomas,

    It is complicated to explain the detail. The short answer is that breakpoint in each view (editor/disassembly view) has its own breakpoint marker and the editor marker failed to resolve the correct source path.

    Regards,
    Patrick