Hi. I'm trying to use Openocd 0.6.1 to debug Pandaboard (rev A4) with
gdb... And it do not work for me.

Background information

* I'm using Debian Squeeze as PC OS.

* Openocd 0.6.1 compiled from the source code, with a little patch to
add channel specification with ftdi2232.

* Cable opendous (is not the same supported in openocd). Is similar to
jtagkey but it use channel 2. Here you can know about the cable:
http://code.google.com/p/opendous/wiki/JTAG

* I has debugged AT91SAM3U-EK using gdb without problems.

* I am trying to debug a program that I put in internal SRAM (0x40300000).

* I added the ID of Pandaboard rev A4 to omap4430.cfg file. I also
changed -work-area-phys to 0x4030B000, because I had problems (I am
using the address 0x40300000 to put my program).

* I am using the toolchain from Linaro (GNU gdb (crosstool-NG
linaro-1.13.1-2012.09-20120921 - Linaro GCC 2012.09) 7.5-2012.09)

* I have not had problems using telnet to transfer the program or to
debug step-by-step.

>>>>> Openocd file
gdb_port pipe
add_script_search_dir ../../../openocd/scripts/
source [find interface/opendous.cfg]
source [find board/ti_pandaboard.cfg]
log_output openocd_gdb.log
debug_level 3
init
reset
halt
<<<<<

>>>>> gdb file
target remote | openocd -f gdb.cfg
load Work/GPIOs.elf
symbol-file Work/GPIOs.elf
<<<<<


Note: I has tried a lot of others options in both files, but these
didn't change the situation.


$ arm-linux-gnueabihf-gdb -x debug_ram.gdb
GNU gdb (crosstool-NG linaro-1.13.1-2012.09-20120921 - Linaro GCC
2012.09) 7.5-2012.09
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "--host=i686-build_pc-linux-gnu
--target=arm-linux-gnueabihf".
For bug reporting instructions, please see:
<https://bugs.launchpad.net/gcc-linaro>.
Open On-Chip Debugger 0.6.1 (2012-12-06-16:41)
Licensed under GNU GPL v2
For bug reports, read
    http://openocd.sourceforge.net/doc/doxygen/bugs.html
Info : only one transport option; autoselect 'jtag'
adapter speed: 6000 kHz
Using dbgbase = 0x80000000
force hard breakpoints
trst_only separate trst_push_pull
0x00000000 in ?? ()
Loading section .text, size 0xa4 lma 0x40300000
Loading section .interp, size 0x19 lma 0x403000a4
Loading section .dynstr, size 0xb lma 0x403000c0
Loading section .hash, size 0xc lma 0x403000cc
Loading section .dynamic, size 0x68 lma 0x403000d8
Loading section .got.plt, size 0xc lma 0x40300140
Start address 0x40300000, load size 328
Transfer rate: 16 KB/sec, 54 bytes/write.
(gdb) step
main () at GPIOs.c:46
46    {
Could not insert single-step breakpoint at 0x40300004


I saw with telnet that with 'load' the code in address 0x40300000 is not
changing.

If I try to use any monitor command, gdb do not return the prompt. I
have to do ctrl+C a lot of times.

I tried to transfer the program with telnet and connect gdb with "target
remote localhost:3333". The first step worked, but next ones not (long
periods ignoring my ctrl+C).

I attach my modified version of omap4430.cfg and the log of the given
example.

Please, I was circling about this problem several days and I need gdb
running with a cortex A9.

Thanks in advance for any idea.



--
Ing. Rodrigo Alejandro Melo<[email protected]>
INTI- Electrónica e Informática
Av. Gral. Paz 5445, CC157, (CP B1650WAB)
San Martín, Bs. As., Argentina  Te:+54 011 4724-6315
0800 444 4004 | www.inti.gob.ar

# OMAP4430

if { [info exists CHIPNAME] } {
        set _CHIPNAME $CHIPNAME
} else {
        set _CHIPNAME omap4430
}


# Although the OMAP4430 supposedly has an ICEpick-D, only the
# ICEpick-C router commands seem to work.
# See http://processors.wiki.ti.com/index.php/ICEPICK
source [find target/icepick.cfg]


#
# A9 DAP
#
if { [info exists DAP_TAPID] } {
        set _DAP_TAPID $DAP_TAPID
} else {
        set _DAP_TAPID 0x3BA00477
}

jtag newtap $_CHIPNAME dap -irlen 4 -ircapture 0x1 -irmask 0xf \
        -expected-id $_DAP_TAPID -disable
jtag configure $_CHIPNAME.dap -event tap-enable \
        "icepick_c_tapenable $_CHIPNAME.jrc 9"


#
# M3 DAPs, one per core
#
if { [info exists M3_DAP_TAPID] } {
        set _M3_DAP_TAPID $M3_DAP_TAPID
} else {
        set _M3_DAP_TAPID 0x4BA00477
}

jtag newtap $_CHIPNAME m31_dap -irlen 4 -ircapture 0x1 -irmask 0xf \
        -expected-id $_M3_DAP_TAPID -disable
jtag configure $_CHIPNAME.m31_dap -event tap-enable \
        "icepick_c_tapenable $_CHIPNAME.jrc 5"

jtag newtap $_CHIPNAME m30_dap -irlen 4 -ircapture 0x1 -irmask 0xf \
        -expected-id $_M3_DAP_TAPID -disable
jtag configure $_CHIPNAME.m30_dap -event tap-enable \
        "icepick_c_tapenable $_CHIPNAME.jrc 4"


#
# ICEpick-D JRC (JTAG route controller)
#

# From OMAP4430 Multimedia Device Silicon Revision 2.x (table "ID_CODE Values")
# Silicon Type          Value
# OMAP4430 ES1.0        0x0B85202F
# OMAP4430 ES2.0        0x1B85202F
# OMAP4430 ES2.1        0x3B95C02F
# OMAP4430 ES2.2        0x4B95C02F
# OMAP4430 ES2.3        0x6B95C02F

jtag newtap $_CHIPNAME jrc -irlen 6 -ircapture 0x1 -irmask 0x3f \
        -expected-id 0x0b85202f -expected-id 0x1b85202f \
        -expected-id 0x3b95c02f -expected-id 0x4b95c02f \
        -expected-id 0x6b95c02f

# Required by ICEpick to power-up the debug domain
jtag configure $_CHIPNAME.jrc -event post-reset "runtest 200"


#
# GDB target: Cortex-A9, using DAP
#
# The debugger can connect to either core of the A9, but currently
# not both simultaneously.  Change -coreid to 1 to connect to the
# second core.
#
set _TARGETNAME $_CHIPNAME.cpu

# APB DBGBASE reads 0x80040000, but this points to an empty ROM table.
# 0x80000000 is cpu0 coresight region
#
#
# CORTEX_A8_PADDRDBG_CPU_SHIFT 13
# 0x80000000 | (coreid << CORTEX_A8_PADDRDBG_CPU_SHIFT)

set _coreid 0
set _dbgbase [expr 0x80000000 | ($_coreid << 13)]
echo "Using dbgbase = [format 0x%x $_dbgbase]"
 
target create $_TARGETNAME cortex_a8 -chain-position $_CHIPNAME.dap \
  -coreid 0 -dbgbase $_dbgbase

# SRAM: 56KiB at 0x4030.0000
$_TARGETNAME configure -work-area-phys 0x4030B000 -work-area-size 0x1000


#
# M3 targets, separate TAP/DAP for each core
#
target create $_CHIPNAME.m30 cortex_m3 -chain-position $_CHIPNAME.m30_dap
target create $_CHIPNAME.m31 cortex_m3 -chain-position $_CHIPNAME.m31_dap


# Once the JRC is up, enable our TAPs
jtag configure $_CHIPNAME.jrc -event setup "
        jtag tapenable $_CHIPNAME.dap
        jtag tapenable $_CHIPNAME.m30_dap
        jtag tapenable $_CHIPNAME.m31_dap
"

# Assume SRST is unavailable (e.g. TI-14 JTAG), so we must assert reset
# ourselves using PRM_RSTCTRL.  1 is a warm reset, 2 a cold reset.
set PRM_RSTCTRL 0x4A307B00
$_TARGETNAME configure -event reset-assert "$_TARGETNAME mww phys $PRM_RSTCTRL 
0x1"
$_CHIPNAME.m30 configure -event reset-assert { }
$_CHIPNAME.m31 configure -event reset-assert { }

# Soft breakpoints don't currently work due to broken cache handling
gdb_breakpoint_override hard

User : 28 8 command.c:549 command_print(): debug_level: 3
Debug: 29 8 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_init
Debug: 30 8 command.c:145 script_debug(): command - init ocd_init
Debug: 32 8 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_target init
Debug: 33 8 command.c:145 script_debug(): command - ocd_target ocd_target init
Debug: 35 8 target.c:1183 handle_target_init_command(): Initializing targets...
Debug: 36 8 command.c:369 register_command_handler(): registering 'ocd_target_request'...
Debug: 37 8 command.c:369 register_command_handler(): registering 'ocd_trace'...
Debug: 38 8 command.c:369 register_command_handler(): registering 'ocd_trace'...
Debug: 39 8 command.c:369 register_command_handler(): registering 'ocd_fast_load_image'...
Debug: 40 8 command.c:369 register_command_handler(): registering 'ocd_fast_load'...
Debug: 41 8 command.c:369 register_command_handler(): registering 'ocd_profile'...
Debug: 42 8 command.c:369 register_command_handler(): registering 'ocd_virt2phys'...
Debug: 43 8 command.c:369 register_command_handler(): registering 'ocd_reg'...
Debug: 44 8 command.c:369 register_command_handler(): registering 'ocd_poll'...
Debug: 45 8 command.c:369 register_command_handler(): registering 'ocd_wait_halt'...
Debug: 46 8 command.c:369 register_command_handler(): registering 'ocd_halt'...
Debug: 47 8 command.c:369 register_command_handler(): registering 'ocd_resume'...
Debug: 48 8 command.c:369 register_command_handler(): registering 'ocd_reset'...
Debug: 49 8 command.c:369 register_command_handler(): registering 'ocd_soft_reset_halt'...
Debug: 50 8 command.c:369 register_command_handler(): registering 'ocd_step'...
Debug: 51 8 command.c:369 register_command_handler(): registering 'ocd_mdw'...
Debug: 52 8 command.c:369 register_command_handler(): registering 'ocd_mdh'...
Debug: 53 8 command.c:369 register_command_handler(): registering 'ocd_mdb'...
Debug: 54 8 command.c:369 register_command_handler(): registering 'ocd_mww'...
Debug: 55 8 command.c:369 register_command_handler(): registering 'ocd_mwh'...
Debug: 56 8 command.c:369 register_command_handler(): registering 'ocd_mwb'...
Debug: 57 8 command.c:369 register_command_handler(): registering 'ocd_bp'...
Debug: 58 8 command.c:369 register_command_handler(): registering 'ocd_rbp'...
Debug: 59 8 command.c:369 register_command_handler(): registering 'ocd_wp'...
Debug: 60 8 command.c:369 register_command_handler(): registering 'ocd_rwp'...
Debug: 61 8 command.c:369 register_command_handler(): registering 'ocd_load_image'...
Debug: 62 8 command.c:369 register_command_handler(): registering 'ocd_dump_image'...
Debug: 63 8 command.c:369 register_command_handler(): registering 'ocd_verify_image'...
Debug: 64 8 command.c:369 register_command_handler(): registering 'ocd_test_image'...
Debug: 65 9 command.c:369 register_command_handler(): registering 'ocd_reset_nag'...
Debug: 66 9 command.c:369 register_command_handler(): registering 'ocd_ps'...
Debug: 67 9 ft2232.c:2338 ft2232_init(): ft2232 interface using shortest path jtag state transitions
Debug: 68 9 ft2232.c:2225 ft2232_init_libftdi(): 'ft2232' interface using libftdi with 'jtagkey' layout (0403:6010)
Debug: 69 10 ft2232.c:2264 ft2232_init_libftdi(): current latency timer: 2
Debug: 70 10 ft2232.c:2275 ft2232_init_libftdi(): FTDI chip type: 4 "2232H"
Debug: 71 10 ft2232.c:2300 ft2232_set_data_bits_low_byte(): 80 08 1b
Debug: 72 10 ft2232.c:2319 ft2232_set_data_bits_high_byte(): 82 09 0f
Info : 73 11 ft2232.c:656 ftx232h_clk_divide_by_5(): max TCK change to: 30000 kHz
Debug: 74 11 core.c:1592 adapter_khz_to_speed(): convert khz to interface specific speed value
Debug: 75 11 core.c:1595 adapter_khz_to_speed(): have interface set up
Debug: 76 11 ft2232.c:625 ftx232h_adaptive_clocking(): 97
Debug: 77 11 ft2232.c:684 ft2232_speed(): 86 04 00
Debug: 78 11 core.c:1592 adapter_khz_to_speed(): convert khz to interface specific speed value
Debug: 79 11 core.c:1595 adapter_khz_to_speed(): have interface set up
Info : 80 11 core.c:1399 adapter_init(): clock speed 6000 kHz
Debug: 81 11 openocd.c:132 handle_init_command(): Debug Adapter init complete
Debug: 82 11 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_transport init
Debug: 83 12 command.c:145 script_debug(): command - ocd_transport ocd_transport init
Debug: 85 12 transport.c:240 handle_transport_init(): handle_transport_init
Debug: 86 12 ft2232.c:1395 jtagkey_reset(): trst: 0, srst: 0, high_output: 0x09, high_direction: 0x0f
Debug: 87 12 core.c:719 jtag_add_reset(): SRST line released
Debug: 88 12 core.c:743 jtag_add_reset(): TRST line released
Debug: 89 12 core.c:323 jtag_call_event_callbacks(): jtag event: TAP reset
Debug: 90 12 tcl.c:630 jtag_tap_handle_event(): JTAG tap: omap4430.jrc event: 0 (post-reset)
	action: runtest 200
Debug: 91 12 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_runtest 200
Debug: 92 12 command.c:145 script_debug(): command - runtest ocd_runtest 200
Debug: 94 12 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_jtag arp_init
Debug: 95 12 command.c:145 script_debug(): command - ocd_jtag ocd_jtag arp_init
Debug: 96 12 core.c:1412 jtag_init_inner(): Init JTAG chain
Debug: 97 12 core.c:323 jtag_call_event_callbacks(): jtag event: TAP reset
Debug: 98 12 tcl.c:630 jtag_tap_handle_event(): JTAG tap: omap4430.jrc event: 0 (post-reset)
	action: runtest 200
Debug: 99 12 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_runtest 200
Debug: 100 12 command.c:145 script_debug(): command - runtest ocd_runtest 200
Debug: 102 13 core.c:1048 jtag_examine_chain(): DR scan interrogation for IDCODE/BYPASS
Debug: 103 13 core.c:323 jtag_call_event_callbacks(): jtag event: TAP reset
Debug: 104 13 tcl.c:630 jtag_tap_handle_event(): JTAG tap: omap4430.jrc event: 0 (post-reset)
	action: runtest 200
Debug: 105 13 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_runtest 200
Debug: 106 13 command.c:145 script_debug(): command - runtest ocd_runtest 200
Info : 108 13 core.c:951 jtag_examine_chain_display(): JTAG tap: omap4430.jrc tap/device found: 0x6b95c02f (mfg: 0x017, part: 0xb95c, ver: 0x6)
Debug: 109 13 core.c:1208 jtag_validate_ircapture(): IR capture validation scan
Debug: 110 14 core.c:1267 jtag_validate_ircapture(): omap4430.jrc: IR capture 0x01
Debug: 111 14 tcl.c:630 jtag_tap_handle_event(): JTAG tap: omap4430.jrc event: 1 (setup)
	action: 
	jtag tapenable omap4430.dap
	jtag tapenable omap4430.m30_dap
	jtag tapenable omap4430.m31_dap

Debug: 112 14 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_jtag tapenable omap4430.dap
Debug: 113 15 command.c:145 script_debug(): command - ocd_jtag ocd_jtag tapenable omap4430.dap
Debug: 114 15 tcl.c:630 jtag_tap_handle_event(): JTAG tap: omap4430.dap event: 2 (tap-enable)
	action: icepick_c_tapenable omap4430.jrc 9
Debug: 115 15 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x07 -endstate IRPAUSE
Debug: 116 15 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x07 -endstate IRPAUSE
Debug: 118 15 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 8 0x89 -endstate DRPAUSE
Debug: 119 17 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 120 17 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 122 17 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 32 2164264960 -endstate DRPAUSE
Debug: 123 18 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 124 19 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 126 19 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 32 2836398152 -endstate DRPAUSE
Debug: 127 20 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 128 21 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 130 21 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 32 2836406344 -endstate DRPAUSE
Debug: 131 22 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 132 23 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 134 23 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 32 2836406600 -endstate DRPAUSE
Debug: 135 24 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x00 -endstate RUN/IDLE
Debug: 136 24 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x00 -endstate RUN/IDLE
Debug: 138 25 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_runtest 10
Debug: 139 25 command.c:145 script_debug(): command - runtest ocd_runtest 10
Info : 141 25 tcl.c:647 jtag_tap_handle_event(): JTAG tap: omap4430.dap enabled
Debug: 142 25 core.c:323 jtag_call_event_callbacks(): jtag event: TAP enabled
Debug: 143 25 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_jtag tapenable omap4430.m30_dap
Debug: 144 25 command.c:145 script_debug(): command - ocd_jtag ocd_jtag tapenable omap4430.m30_dap
Debug: 145 25 tcl.c:630 jtag_tap_handle_event(): JTAG tap: omap4430.m30_dap event: 2 (tap-enable)
	action: icepick_c_tapenable omap4430.jrc 4
Debug: 146 25 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x07 -endstate IRPAUSE
Debug: 147 25 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x07 -endstate IRPAUSE
User : 148 25 target.c:2241 handle_target(): Polling target failed, GDB will be halted. Polling again in 100ms
Debug: 149 25 target.c:1299 target_call_event_callbacks(): target event 0 (gdb-halt)
Debug: 151 25 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 8 0x89 -endstate DRPAUSE
Debug: 152 26 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 153 27 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 155 27 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 32 2164264960 -endstate DRPAUSE
Debug: 156 28 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 157 28 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
User : 158 29 target.c:2241 handle_target(): Polling target failed, GDB will be halted. Polling again in 300ms
Debug: 159 29 target.c:1299 target_call_event_callbacks(): target event 0 (gdb-halt)
Debug: 161 29 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 32 2752512072 -endstate DRPAUSE
Debug: 162 30 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 163 31 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 165 31 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 32 2752520264 -endstate DRPAUSE
Debug: 166 32 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 167 33 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 169 33 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 32 2752520520 -endstate DRPAUSE
Debug: 170 34 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x00 -endstate RUN/IDLE
Debug: 171 34 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x00 -endstate RUN/IDLE
Debug: 173 35 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_runtest 10
Debug: 174 35 command.c:145 script_debug(): command - runtest ocd_runtest 10
User : 175 35 target.c:2241 handle_target(): Polling target failed, GDB will be halted. Polling again in 700ms
Debug: 176 35 target.c:1299 target_call_event_callbacks(): target event 0 (gdb-halt)
Info : 178 35 tcl.c:647 jtag_tap_handle_event(): JTAG tap: omap4430.m30_dap enabled
Debug: 179 35 core.c:323 jtag_call_event_callbacks(): jtag event: TAP enabled
Debug: 180 35 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_jtag tapenable omap4430.m31_dap
Debug: 181 35 command.c:145 script_debug(): command - ocd_jtag ocd_jtag tapenable omap4430.m31_dap
Debug: 182 35 tcl.c:630 jtag_tap_handle_event(): JTAG tap: omap4430.m31_dap event: 2 (tap-enable)
	action: icepick_c_tapenable omap4430.jrc 5
Debug: 183 35 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x07 -endstate IRPAUSE
Debug: 184 35 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x07 -endstate IRPAUSE
Debug: 186 36 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 8 0x89 -endstate DRPAUSE
Debug: 187 36 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 188 37 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 190 37 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 32 2164264960 -endstate DRPAUSE
Debug: 191 38 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 192 39 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 194 39 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 32 2769289288 -endstate DRPAUSE
Debug: 195 40 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 196 41 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 198 41 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 32 2769297480 -endstate DRPAUSE
Debug: 199 42 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 200 43 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x02 -endstate IRPAUSE
Debug: 202 43 command.c:145 script_debug(): command - drscan drscan omap4430.jrc 32 2769297736 -endstate DRPAUSE
Debug: 203 44 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_irscan omap4430.jrc 0x00 -endstate RUN/IDLE
Debug: 204 44 command.c:145 script_debug(): command - irscan ocd_irscan omap4430.jrc 0x00 -endstate RUN/IDLE
Debug: 206 45 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_runtest 10
Debug: 207 45 command.c:145 script_debug(): command - runtest ocd_runtest 10
Info : 209 45 tcl.c:647 jtag_tap_handle_event(): JTAG tap: omap4430.m31_dap enabled
Debug: 210 45 core.c:323 jtag_call_event_callbacks(): jtag event: TAP enabled
Debug: 211 45 openocd.c:145 handle_init_command(): Examining targets...
Debug: 212 45 target.c:1299 target_call_event_callbacks(): target event 21 (examine-start)
Debug: 213 45 arm_adi_v5.c:1097 ahbap_debugport_init():  
Debug: 214 56 cortex_a.c:2260 cortex_a8_examine_first(): cpuid = 0x411fc093
Debug: 215 56 cortex_a.c:2261 cortex_a8_examine_first(): ctypr = 0x83338003
Debug: 216 56 cortex_a.c:2262 cortex_a8_examine_first(): ttypr = 0x00000402
Debug: 217 56 cortex_a.c:2263 cortex_a8_examine_first(): didr = 0x35137013
Info : 218 56 arm_dpm.c:986 arm_dpm_setup(): omap4430.cpu: hardware has 6 breakpoints, 4 watchpoints
Debug: 219 56 cortex_a.c:704 cortex_a8_bpwp_disable(): A8: bpwp disable, cr 80000140
Debug: 220 58 cortex_a.c:704 cortex_a8_bpwp_disable(): A8: bpwp disable, cr 80000144
Debug: 221 60 cortex_a.c:704 cortex_a8_bpwp_disable(): A8: bpwp disable, cr 80000148
Debug: 222 62 cortex_a.c:704 cortex_a8_bpwp_disable(): A8: bpwp disable, cr 8000014c
Debug: 223 64 cortex_a.c:704 cortex_a8_bpwp_disable(): A8: bpwp disable, cr 80000150
Debug: 224 66 cortex_a.c:704 cortex_a8_bpwp_disable(): A8: bpwp disable, cr 80000154
Debug: 225 68 cortex_a.c:704 cortex_a8_bpwp_disable(): A8: bpwp disable, cr 800001c0
Debug: 226 70 cortex_a.c:704 cortex_a8_bpwp_disable(): A8: bpwp disable, cr 800001c4
Debug: 227 72 cortex_a.c:704 cortex_a8_bpwp_disable(): A8: bpwp disable, cr 800001c8
Debug: 228 74 cortex_a.c:704 cortex_a8_bpwp_disable(): A8: bpwp disable, cr 800001cc
Debug: 229 76 cortex_a.c:2287 cortex_a8_examine_first(): Configured 6 hw breakpoints
Debug: 230 76 cortex_a.c:175 cortex_a8_init_debug_access():  
Debug: 231 82 cortex_a.c:812 cortex_a8_poll(): Target halted
Debug: 232 82 target.c:1299 target_call_event_callbacks(): target event 22 (examine-end)
Debug: 233 82 target.c:1299 target_call_event_callbacks(): target event 21 (examine-start)
Debug: 234 82 arm_adi_v5.c:1097 ahbap_debugport_init():  
Debug: 235 86 target.c:1917 target_read_u32(): address: 0xe000ed00, value: 0x412fc230
Debug: 236 86 cortex_m.c:1815 cortex_m3_examine(): Cortex-M3 r2p0 processor detected
Debug: 237 86 cortex_m.c:1816 cortex_m3_examine(): cpuid: 0x412fc230
Debug: 238 88 target.c:1917 target_read_u32(): address: 0xe0002000, value: 0x00000260
Debug: 239 88 cortex_m.c:1860 cortex_m3_examine(): FPB fpcr 0x260, numcode 6, numlit 2
Debug: 240 90 target.c:1917 target_read_u32(): address: 0xe0001000, value: 0x4f000000
Debug: 241 90 cortex_m.c:1772 cortex_m3_dwt_setup(): DWT dwtcr 0x4f000000, comp 4, watch only
Info : 242 90 cortex_m.c:1869 cortex_m3_examine(): omap4430.m30: hardware has 6 breakpoints, 4 watchpoints
Debug: 243 90 target.c:1299 target_call_event_callbacks(): target event 22 (examine-end)
Debug: 244 90 target.c:1299 target_call_event_callbacks(): target event 21 (examine-start)
Debug: 245 90 arm_adi_v5.c:1097 ahbap_debugport_init():  
Debug: 246 94 target.c:1917 target_read_u32(): address: 0xe000ed00, value: 0x412fc230
Debug: 247 94 cortex_m.c:1815 cortex_m3_examine(): Cortex-M3 r2p0 processor detected
Debug: 248 94 cortex_m.c:1816 cortex_m3_examine(): cpuid: 0x412fc230
Debug: 249 96 target.c:1917 target_read_u32(): address: 0xe0002000, value: 0x00000260
Debug: 250 96 cortex_m.c:1860 cortex_m3_examine(): FPB fpcr 0x260, numcode 6, numlit 2
Debug: 251 98 target.c:1917 target_read_u32(): address: 0xe0001000, value: 0x4f000000
Debug: 252 98 cortex_m.c:1772 cortex_m3_dwt_setup(): DWT dwtcr 0x4f000000, comp 4, watch only
Info : 253 98 cortex_m.c:1869 cortex_m3_examine(): omap4430.m31: hardware has 6 breakpoints, 4 watchpoints
Debug: 254 98 target.c:1299 target_call_event_callbacks(): target event 22 (examine-end)
Debug: 255 98 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_flash init
Debug: 256 98 command.c:145 script_debug(): command - ocd_flash ocd_flash init
User : 257 100 target.c:2251 handle_target(): Polling succeeded again
Debug: 259 108 tcl.c:847 handle_flash_init_command(): Initializing flash devices...
Debug: 260 108 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_mflash init
Debug: 261 108 command.c:145 script_debug(): command - ocd_mflash ocd_mflash init
Debug: 263 118 mflash.c:1379 handle_mflash_init_command(): Initializing mflash devices...
Debug: 264 118 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_nand init
Debug: 265 118 command.c:145 script_debug(): command - ocd_nand ocd_nand init
Debug: 267 128 tcl.c:497 handle_nand_init_command(): Initializing NAND devices...
Debug: 268 128 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_pld init
Debug: 269 128 command.c:145 script_debug(): command - ocd_pld ocd_pld init
Debug: 271 138 pld.c:207 handle_pld_init_command(): Initializing PLDs...
Debug: 272 138 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_soft_reset_halt
Debug: 273 138 command.c:145 script_debug(): command - soft_reset_halt ocd_soft_reset_halt
User : 275 148 target.c:2490 handle_soft_reset_halt_command(): requesting target halt and executing a soft reset
Error: 276 148 target.c:688 target_soft_reset_halt_imp(): Target omap4430.cpu does not support soft_reset_halt
Debug: 277 149 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_init
Debug: 278 149 command.c:145 script_debug(): command - init ocd_init
Info : 280 158 server.c:103 add_connection(): accepting 'gdb' connection from pipe
Debug: 281 158 breakpoints.c:359 breakpoint_clear_target_internal(): Delete all breakpoints for target: omap4430.cpu
Debug: 282 158 breakpoints.c:499 watchpoint_clear_target(): Delete all watchpoints for target: omap4430.cpu
Debug: 283 158 target.c:1299 target_call_event_callbacks(): target event 23 (gdb-attach)
Debug: 284 158 gdb_server.c:821 gdb_new_connection(): New GDB Connection: 1, Target omap4430.cpu, state: halted
Debug: 285 159 gdb_server.c:2048 gdb_input_inner(): received packet: 'qSupported:multiprocess+;qRelocInsn+'
Debug: 286 160 gdb_server.c:2048 gdb_input_inner(): received packet: 'QStartNoAckMode'
Info : 287 160 server.c:103 add_connection(): accepting 'gdb' connection from pipe
Debug: 288 160 breakpoints.c:359 breakpoint_clear_target_internal(): Delete all breakpoints for target: omap4430.m30
Debug: 289 160 breakpoints.c:499 watchpoint_clear_target(): Delete all watchpoints for target: omap4430.m30
Debug: 290 160 target.c:1299 target_call_event_callbacks(): target event 23 (gdb-attach)
Debug: 291 160 gdb_server.c:821 gdb_new_connection(): New GDB Connection: 2, Target omap4430.m30, state: reset
Debug: 292 160 gdb_server.c:2048 gdb_input_inner(): received packet: 'Hg0'
Error: 293 161 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 294 161 gdb_server.c:2048 gdb_input_inner(): received packet: '?'
User : 295 161 gdb_server.c:128 gdb_last_signal(): undefined debug reason 6 - target needs reset
Error: 296 162 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 297 162 gdb_server.c:2048 gdb_input_inner(): received packet: 'Hc-1'
Error: 298 163 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 299 163 gdb_server.c:2048 gdb_input_inner(): received packet: 'qC'
Error: 300 164 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 301 164 gdb_server.c:2048 gdb_input_inner(): received packet: 'qAttached'
Error: 302 166 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 303 166 gdb_server.c:2048 gdb_input_inner(): received packet: 'g'
Error: 304 167 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 305 167 gdb_server.c:2048 gdb_input_inner(): received packet: 'm0,4'
Debug: 306 167 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x00000000, len: 0x00000004
Debug: 307 167 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x00000000
Error: 308 168 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 309 168 gdb_server.c:2048 gdb_input_inner(): received packet: 'mfffffffc,4'
Debug: 310 168 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0xfffffffc, len: 0x00000004
Debug: 311 168 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0xfffffffc
Error: 312 170 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 313 170 gdb_server.c:2048 gdb_input_inner(): received packet: 'm0,4'
Debug: 314 170 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x00000000, len: 0x00000004
Debug: 315 170 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x00000000
Error: 316 171 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 317 171 gdb_server.c:2048 gdb_input_inner(): received packet: 'mfffffffc,4'
Debug: 318 171 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0xfffffffc, len: 0x00000004
Debug: 319 172 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0xfffffffc
Error: 320 173 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 321 173 gdb_server.c:2048 gdb_input_inner(): received packet: 'm0,4'
Debug: 322 174 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x00000000, len: 0x00000004
Debug: 323 174 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x00000000
Error: 324 175 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 325 175 gdb_server.c:2048 gdb_input_inner(): received packet: 'mfffffffc,4'
Debug: 326 176 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0xfffffffc, len: 0x00000004
Debug: 327 176 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0xfffffffc
Error: 328 177 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 329 177 gdb_server.c:2048 gdb_input_inner(): received packet: 'm0,4'
Debug: 330 178 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x00000000, len: 0x00000004
Debug: 331 178 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x00000000
Error: 332 179 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 333 179 gdb_server.c:2048 gdb_input_inner(): received packet: 'mfffffffc,4'
Debug: 334 180 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0xfffffffc, len: 0x00000004
Debug: 335 180 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0xfffffffc
Error: 336 181 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 337 181 gdb_server.c:2048 gdb_input_inner(): received packet: 'm0,4'
Debug: 338 182 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x00000000, len: 0x00000004
Debug: 339 182 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x00000000
Error: 340 183 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 341 184 gdb_server.c:2048 gdb_input_inner(): received packet: 'm0,4'
Debug: 342 184 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x00000000, len: 0x00000004
Debug: 343 184 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x00000000
Error: 344 185 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 345 186 gdb_server.c:2048 gdb_input_inner(): received packet: 'm0,4'
Debug: 346 186 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x00000000, len: 0x00000004
Debug: 347 186 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x00000000
Error: 348 187 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 349 187 gdb_server.c:2048 gdb_input_inner(): received packet: 'qTStatus'
Error: 350 189 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 351 189 gdb_server.c:2046 gdb_input_inner(): received packet: 'X40300000,0:<binary-data>'
Error: 352 190 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 353 190 gdb_server.c:2046 gdb_input_inner(): received packet: 'X40300000,a4:<binary-data>'
Error: 354 191 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 355 191 gdb_server.c:1342 gdb_write_memory_binary_packet(): addr: 0x40300000, len: 0x000000a4
Debug: 356 191 target.c:1688 target_write_buffer(): writing buffer of 164 byte at 0x40300000
Debug: 357 192 gdb_server.c:2046 gdb_input_inner(): received packet: 'X403000a4,19:<binary-data>'
Error: 358 193 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 359 193 gdb_server.c:1342 gdb_write_memory_binary_packet(): addr: 0x403000a4, len: 0x00000019
Debug: 360 194 target.c:1688 target_write_buffer(): writing buffer of 25 byte at 0x403000a4
Debug: 361 196 gdb_server.c:2046 gdb_input_inner(): received packet: 'X403000c0,b:<binary-data>'
Error: 362 198 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 363 198 gdb_server.c:1342 gdb_write_memory_binary_packet(): addr: 0x403000c0, len: 0x0000000b
Debug: 364 198 target.c:1688 target_write_buffer(): writing buffer of 11 byte at 0x403000c0
Debug: 365 204 gdb_server.c:2046 gdb_input_inner(): received packet: 'X403000cc,c:<binary-data>'
Error: 366 205 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 367 205 gdb_server.c:1342 gdb_write_memory_binary_packet(): addr: 0x403000cc, len: 0x0000000c
Debug: 368 206 target.c:1688 target_write_buffer(): writing buffer of 12 byte at 0x403000cc
Debug: 369 206 gdb_server.c:2046 gdb_input_inner(): received packet: 'X403000d8,68:<binary-data>'
Error: 370 207 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 371 208 gdb_server.c:1342 gdb_write_memory_binary_packet(): addr: 0x403000d8, len: 0x00000068
Debug: 372 208 target.c:1688 target_write_buffer(): writing buffer of 104 byte at 0x403000d8
Debug: 373 208 gdb_server.c:2046 gdb_input_inner(): received packet: 'X40300140,c:<binary-data>'
Error: 374 209 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 375 210 gdb_server.c:1342 gdb_write_memory_binary_packet(): addr: 0x40300140, len: 0x0000000c
Debug: 376 210 target.c:1688 target_write_buffer(): writing buffer of 12 byte at 0x40300140
Debug: 377 210 gdb_server.c:2048 gdb_input_inner(): received packet: 'Pf=00003040'
Debug: 378 210 gdb_server.c:1119 gdb_set_register_packet(): -
Error: 379 211 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 380 212 gdb_server.c:2048 gdb_input_inner(): received packet: 'qTStatus'
Error: 381 213 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 382 213 gdb_server.c:2048 gdb_input_inner(): received packet: 'qTStatus'
Error: 383 214 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 384 214 gdb_server.c:2048 gdb_input_inner(): received packet: 'qTStatus'
Error: 385 214 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 386 214 gdb_server.c:2048 gdb_input_inner(): received packet: 'qTStatus'
Error: 387 215 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 388 215 gdb_server.c:2048 gdb_input_inner(): received packet: 'qTStatus'
Error: 389 216 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 390 216 gdb_server.c:2048 gdb_input_inner(): received packet: 'qTStatus'
Error: 391 217 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 392 217 gdb_server.c:2048 gdb_input_inner(): received packet: 'qTStatus'
Error: 393 218 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 394 219 gdb_server.c:2048 gdb_input_inner(): received packet: 'qTStatus'
Error: 395 220 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 396 220 gdb_server.c:2048 gdb_input_inner(): received packet: 'qSymbol::'
Error: 397 221 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 398 221 gdb_server.c:2048 gdb_input_inner(): received packet: 'qSymbol::'
Error: 399 4934 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 400 4934 gdb_server.c:2048 gdb_input_inner(): received packet: 'm40300000,4'
Debug: 401 4934 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x40300000, len: 0x00000004
Debug: 402 4934 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x40300000
Error: 403 4935 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 404 4935 gdb_server.c:2048 gdb_input_inner(): received packet: 'm402ffffc,4'
Debug: 405 4936 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x402ffffc, len: 0x00000004
Debug: 406 4936 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x402ffffc
Error: 407 4937 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 408 4937 gdb_server.c:2048 gdb_input_inner(): received packet: 'm40300000,4'
Debug: 409 4937 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x40300000, len: 0x00000004
Debug: 410 4937 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x40300000
Error: 411 4939 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 412 4939 gdb_server.c:2048 gdb_input_inner(): received packet: 'm402ffffc,4'
Debug: 413 4939 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x402ffffc, len: 0x00000004
Debug: 414 4939 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x402ffffc
Error: 415 4941 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 416 4941 gdb_server.c:2048 gdb_input_inner(): received packet: 'm40300000,4'
Debug: 417 4941 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x40300000, len: 0x00000004
Debug: 418 4941 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x40300000
Error: 419 4943 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 420 4943 gdb_server.c:2048 gdb_input_inner(): received packet: 'm402ffffc,4'
Debug: 421 4943 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x402ffffc, len: 0x00000004
Debug: 422 4943 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x402ffffc
Error: 423 4945 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 424 4945 gdb_server.c:2048 gdb_input_inner(): received packet: 'm40300000,4'
Debug: 425 4945 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x40300000, len: 0x00000004
Debug: 426 4945 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x40300000
Error: 427 4947 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 428 4947 gdb_server.c:2048 gdb_input_inner(): received packet: 'm402ffffc,4'
Debug: 429 4947 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x402ffffc, len: 0x00000004
Debug: 430 4947 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x402ffffc
Error: 431 4949 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 432 4949 gdb_server.c:2048 gdb_input_inner(): received packet: 'm40300000,4'
Debug: 433 4949 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x40300000, len: 0x00000004
Debug: 434 4949 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x40300000
Error: 435 4951 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 436 4951 gdb_server.c:2048 gdb_input_inner(): received packet: 'm40300000,4'
Debug: 437 4951 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x40300000, len: 0x00000004
Debug: 438 4951 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x40300000
Error: 439 4953 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 440 4953 gdb_server.c:2048 gdb_input_inner(): received packet: 'm40300000,4'
Debug: 441 4953 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x40300000, len: 0x00000004
Debug: 442 4953 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x40300000
Error: 443 4955 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 444 4955 gdb_server.c:2048 gdb_input_inner(): received packet: 'qTStatus'
Error: 445 4956 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 446 4956 gdb_server.c:2048 gdb_input_inner(): received packet: 'm40300000,4'
Debug: 447 4956 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x40300000, len: 0x00000004
Debug: 448 4956 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x40300000
Error: 449 4957 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 450 4957 gdb_server.c:2048 gdb_input_inner(): received packet: 'm40300000,4'
Debug: 451 4957 gdb_server.c:1200 gdb_read_memory_packet(): addr: 0x40300000, len: 0x00000004
Debug: 452 4958 target.c:1769 target_read_buffer(): reading buffer of 4 byte at 0x40300000
Error: 453 4959 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 454 4959 gdb_server.c:2048 gdb_input_inner(): received packet: 'Z0,40300004,4'
Debug: 455 4959 gdb_server.c:1394 gdb_breakpoint_watchpoint_packet(): -
Info : 456 4959 cortex_m.c:1202 cortex_m3_add_breakpoint(): flash patch comparator requested outside code memory region
Error: 457 4959 breakpoints.c:96 breakpoint_add_internal(): can't add breakpoint: resource not available
Debug: 458 4959 gdb_server.c:1163 gdb_error(): Reporting -308 to GDB as generic error
Error: 459 11366 gdb_server.c:436 gdb_put_packet_inner(): GDB missing ack(2) - assumed good
Debug: 460 11366 gdb_server.c:2048 gdb_input_inner(): received packet: 'qRcmd,726567207063'
Debug: 461 11373 command.c:145 script_debug(): command - ocd_command ocd_command type ocd_reg pc
Debug: 462 11373 command.c:145 script_debug(): command - reg ocd_reg pc
Warn : 464 71445 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 465 131506 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 466 191565 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 467 251621 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 468 311679 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 469 371738 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 470 431793 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 471 491854 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 472 551912 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 473 611971 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 474 672033 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 475 732093 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 476 792152 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 477 852213 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 478 912275 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 479 972334 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 480 1032394 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 481 1092455 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 482 1152515 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 483 1212574 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 484 1272636 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 485 1332694 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 486 1392755 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 487 1452810 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 488 1512872 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
Warn : 489 1572928 gdb_server.c:413 gdb_put_packet_inner(): negative reply, retrying
------------------------------------------------------------------------------
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
_______________________________________________
OpenOCD-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to