diff options
Diffstat (limited to 'arch/frv/kernel')
-rw-r--r-- | arch/frv/kernel/gdb-io.c | 4 | ||||
-rw-r--r-- | arch/frv/kernel/gdb-stub.c | 61 |
2 files changed, 63 insertions, 2 deletions
diff --git a/arch/frv/kernel/gdb-io.c b/arch/frv/kernel/gdb-io.c index c997bccb9221..2ca641d199f8 100644 --- a/arch/frv/kernel/gdb-io.c +++ b/arch/frv/kernel/gdb-io.c | |||
@@ -171,11 +171,11 @@ int gdbstub_rx_char(unsigned char *_ch, int nonblock) | |||
171 | return -EINTR; | 171 | return -EINTR; |
172 | } | 172 | } |
173 | else if (st & (UART_LSR_FE|UART_LSR_OE|UART_LSR_PE)) { | 173 | else if (st & (UART_LSR_FE|UART_LSR_OE|UART_LSR_PE)) { |
174 | gdbstub_proto("### GDB Rx Error (st=%02x) ###\n",st); | 174 | gdbstub_io("### GDB Rx Error (st=%02x) ###\n",st); |
175 | return -EIO; | 175 | return -EIO; |
176 | } | 176 | } |
177 | else { | 177 | else { |
178 | gdbstub_proto("### GDB Rx %02x (st=%02x) ###\n",ch,st); | 178 | gdbstub_io("### GDB Rx %02x (st=%02x) ###\n",ch,st); |
179 | *_ch = ch & 0x7f; | 179 | *_ch = ch & 0x7f; |
180 | return 0; | 180 | return 0; |
181 | } | 181 | } |
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 | ||