diff options
author | David Howells <dhowells@redhat.com> | 2010-05-24 17:32:54 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-25 11:07:02 -0400 |
commit | 7ca8b9c0dafd1cb36289aa4c92c7beae7adcd34f (patch) | |
tree | a762d0b8bbb090b423eafae7f009839592e23290 /arch/frv/kernel/gdb-stub.c | |
parent | c6f6b596a5a73e63e5e930c414375c0c389199ab (diff) |
frv: extend gdbstub to support more features of gdb
Extend gdbstub to support more features of gdb remote protocol to keep
gdb-7 and emacs gud mode happy:
(*) The D command. Detach debugger.
(*) The H command. Handle setting the target thread by ignoring it.
(*) The qAttached command. Indicate we 'attached' to an existing process.
(*) The qC command. Indicate that the current thread ID is 0.
(*) The qOffsets command. Indicate that no relocation has been done.
(*) The qSymbol:: command. Indicate that we're not interested in looking up
any symbol addresses.
(*) The qSupported command. Indicate the maximum packet size and the fact
that reverse step and continue aren't supported.
(*) The vCont? command. Indicate that we don't support any of its variants.
Also make it possible to trace the commands and replies without tracing
the individual character I/O.
[akpm@linux-foundation.org: make gdbstub_handle_query() static]
Signed-off-by: David Howells <dhowells@redhat.com>
Cc: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/frv/kernel/gdb-stub.c')
-rw-r--r-- | arch/frv/kernel/gdb-stub.c | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/arch/frv/kernel/gdb-stub.c b/arch/frv/kernel/gdb-stub.c index 7ca8a6b19ac9..84d103c33c9c 100644 --- a/arch/frv/kernel/gdb-stub.c +++ b/arch/frv/kernel/gdb-stub.c | |||
@@ -1344,6 +1344,44 @@ void gdbstub_get_mmu_state(void) | |||
1344 | 1344 | ||
1345 | } /* end gdbstub_get_mmu_state() */ | 1345 | } /* end gdbstub_get_mmu_state() */ |
1346 | 1346 | ||
1347 | /* | ||
1348 | * handle general query commands of the form 'qXXXXX' | ||
1349 | */ | ||
1350 | static void gdbstub_handle_query(void) | ||
1351 | { | ||
1352 | if (strcmp(input_buffer, "qAttached") == 0) { | ||
1353 | /* return current thread ID */ | ||
1354 | sprintf(output_buffer, "1"); | ||
1355 | return; | ||
1356 | } | ||
1357 | |||
1358 | if (strcmp(input_buffer, "qC") == 0) { | ||
1359 | /* return current thread ID */ | ||
1360 | sprintf(output_buffer, "QC 0"); | ||
1361 | return; | ||
1362 | } | ||
1363 | |||
1364 | if (strcmp(input_buffer, "qOffsets") == 0) { | ||
1365 | /* return relocation offset of text and data segments */ | ||
1366 | sprintf(output_buffer, "Text=0;Data=0;Bss=0"); | ||
1367 | return; | ||
1368 | } | ||
1369 | |||
1370 | if (strcmp(input_buffer, "qSymbol::") == 0) { | ||
1371 | sprintf(output_buffer, "OK"); | ||
1372 | return; | ||
1373 | } | ||
1374 | |||
1375 | if (strcmp(input_buffer, "qSupported") == 0) { | ||
1376 | /* query of supported features */ | ||
1377 | sprintf(output_buffer, "PacketSize=%u;ReverseContinue-;ReverseStep-", | ||
1378 | sizeof(input_buffer)); | ||
1379 | return; | ||
1380 | } | ||
1381 | |||
1382 | gdbstub_strcpy(output_buffer,"E01"); | ||
1383 | } | ||
1384 | |||
1347 | /*****************************************************************************/ | 1385 | /*****************************************************************************/ |
1348 | /* | 1386 | /* |
1349 | * handle event interception and GDB remote protocol processing | 1387 | * handle event interception and GDB remote protocol processing |
@@ -1840,6 +1878,10 @@ void gdbstub(int sigval) | |||
1840 | case 'k' : | 1878 | case 'k' : |
1841 | goto done; /* just continue */ | 1879 | goto done; /* just continue */ |
1842 | 1880 | ||
1881 | /* detach */ | ||
1882 | case 'D': | ||
1883 | gdbstub_strcpy(output_buffer, "OK"); | ||
1884 | break; | ||
1843 | 1885 | ||
1844 | /* reset the whole machine (FIXME: system dependent) */ | 1886 | /* reset the whole machine (FIXME: system dependent) */ |
1845 | case 'r': | 1887 | case 'r': |
@@ -1852,6 +1894,14 @@ void gdbstub(int sigval) | |||
1852 | __debug_status.dcr |= DCR_SE; | 1894 | __debug_status.dcr |= DCR_SE; |
1853 | goto done; | 1895 | goto done; |
1854 | 1896 | ||
1897 | /* extended command */ | ||
1898 | case 'v': | ||
1899 | if (strcmp(input_buffer, "vCont?") == 0) { | ||
1900 | output_buffer[0] = 0; | ||
1901 | break; | ||
1902 | } | ||
1903 | goto unsupported_cmd; | ||
1904 | |||
1855 | /* set baud rate (bBB) */ | 1905 | /* set baud rate (bBB) */ |
1856 | case 'b': | 1906 | case 'b': |
1857 | ptr = &input_buffer[1]; | 1907 | ptr = &input_buffer[1]; |
@@ -1923,8 +1973,19 @@ void gdbstub(int sigval) | |||
1923 | gdbstub_strcpy(output_buffer,"OK"); | 1973 | gdbstub_strcpy(output_buffer,"OK"); |
1924 | break; | 1974 | break; |
1925 | 1975 | ||
1976 | /* Thread-setting packet */ | ||
1977 | case 'H': | ||
1978 | gdbstub_strcpy(output_buffer, "OK"); | ||
1979 | break; | ||
1980 | |||
1981 | case 'q': | ||
1982 | gdbstub_handle_query(); | ||
1983 | break; | ||
1984 | |||
1926 | default: | 1985 | default: |
1986 | unsupported_cmd: | ||
1927 | gdbstub_proto("### GDB Unsupported Cmd '%s'\n",input_buffer); | 1987 | gdbstub_proto("### GDB Unsupported Cmd '%s'\n",input_buffer); |
1988 | gdbstub_strcpy(output_buffer,"E01"); | ||
1928 | break; | 1989 | break; |
1929 | } | 1990 | } |
1930 | 1991 | ||