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.
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:
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
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