1 /* gdb-stub.c: FRV GDB stub
3 * Copyright (C) 2003,4 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 * - Derived from Linux/MIPS version, Copyright (C) 1995 Andreas Busse
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
14 * To enable debugger support, two things need to happen. One, a
15 * call to set_debug_traps() is necessary in order to allow any breakpoints
16 * or error conditions to be properly intercepted and reported to gdb.
17 * Two, a breakpoint needs to be generated to begin communication. This
18 * is most easily accomplished by a call to breakpoint(). Breakpoint()
19 * simulates a breakpoint by executing a BREAK instruction.
22 * The following gdb commands are supported:
24 * command function Return value
26 * g return the value of the CPU registers hex data or ENN
27 * G set the value of the CPU registers OK or ENN
29 * mAA..AA,LLLL Read LLLL bytes at address AA..AA hex data or ENN
30 * MAA..AA,LLLL: Write LLLL bytes at address AA.AA OK or ENN
32 * c Resume at current address SNN ( signal NN)
33 * cAA..AA Continue at address AA..AA SNN
35 * s Step one instruction SNN
36 * sAA..AA Step one instruction from AA..AA SNN
40 * ? What was the last sigval ? SNN (signal NN)
42 * bBB..BB Set baud rate to BB..BB OK or BNN, then sets
45 * All commands and responses are sent with a packet which includes a
46 * checksum. A packet consists of
48 * $<packet info>#<checksum>.
51 * <packet info> :: <characters representing the command or response>
52 * <checksum> :: < two hex digits computed as modulo 256 sum of <packetinfo>>
54 * When a packet is received, it is first acknowledged with either '+' or '-'.
55 * '+' indicates a successful transfer. '-' indicates a failed transfer.
60 * $m0,10#2a +$00010203040506070809101112131415#42
67 * For reference -- the following are the steps that one
68 * company took (RidgeRun Inc) to get remote gdb debugging
69 * going. In this scenario the host machine was a PC and the
70 * target platform was a Galileo EVB64120A MIPS evaluation
74 * First download gdb-5.0.tar.gz from the internet.
75 * and then build/install the package.
78 * $ tar zxf gdb-5.0.tar.gz
80 * $ ./configure --target=frv-elf-gdb
85 * Configure linux for remote debugging and build it.
89 * $ make menuconfig <go to "Kernel Hacking" and turn on remote debugging>
93 * Download the kernel to the remote target and start
94 * the kernel running. It will promptly halt and wait
95 * for the host gdb session to connect. It does this
96 * since the "Kernel Hacking" option has defined
97 * CONFIG_REMOTE_DEBUG which in turn enables your calls
103 * Start the gdb session on the host.
106 * $ frv-elf-gdb vmlinux
107 * (gdb) set remotebaud 115200
108 * (gdb) target remote /dev/ttyS1
109 * ...at this point you are connected to
110 * the remote target and can use gdb
111 * in the normal fasion. Setting
112 * breakpoints, single stepping,
113 * printing variables, etc.
117 #include <linux/string.h>
118 #include <linux/kernel.h>
119 #include <linux/signal.h>
120 #include <linux/sched.h>
121 #include <linux/mm.h>
122 #include <linux/console.h>
123 #include <linux/init.h>
124 #include <linux/slab.h>
125 #include <linux/nmi.h>
127 #include <asm/asm-offsets.h>
128 #include <asm/pgtable.h>
129 #include <asm/system.h>
130 #include <asm/gdb-stub.h>
132 #define LEDS(x) do { /* *(u32*)0xe1200004 = ~(x); mb(); */ } while(0)
134 #undef GDBSTUB_DEBUG_PROTOCOL
136 extern void debug_to_serial(const char *p
, int n
);
137 extern void gdbstub_console_write(struct console
*co
, const char *p
, unsigned n
);
139 extern volatile uint32_t __break_error_detect
[3]; /* ESFR1, ESR15, EAR15 */
143 } __attribute__((aligned(8)));
147 unsigned long hsr0
, pcsr
, esr0
, ear0
, epcr0
;
149 unsigned long tplr
, tppr
, tpxr
, cxnr
;
153 struct __debug_amr iamr
[16];
154 struct __debug_amr damr
[16];
157 struct __debug_amr tlb
[64*2];
161 static struct __debug_mmu __debug_mmu
;
164 * BUFMAX defines the maximum number of characters in inbound/outbound buffers
165 * at least NUMREGBYTES*2 are needed for register packets
169 #define BREAK_INSN 0x801000c0 /* use "break" as bkpt */
171 static const char gdbstub_banner
[] = "Linux/FR-V GDB Stub (c) RedHat 2003\n";
173 volatile u8 gdbstub_rx_buffer
[PAGE_SIZE
] __attribute__((aligned(PAGE_SIZE
)));
174 volatile u32 gdbstub_rx_inp
= 0;
175 volatile u32 gdbstub_rx_outp
= 0;
176 volatile u8 gdbstub_rx_overflow
= 0;
177 u8 gdbstub_rx_unget
= 0;
179 /* set with GDB whilst running to permit step through exceptions */
180 extern volatile u32
__attribute__((section(".bss"))) gdbstub_trace_through_exceptions
;
182 static char input_buffer
[BUFMAX
];
183 static char output_buffer
[BUFMAX
];
185 static const char *regnames
[] = {
186 "PSR ", "ISR ", "CCR ", "CCCR",
187 "LR ", "LCR ", "PC ", "_stt",
188 "sys ", "GR8*", "GNE0", "GNE1",
190 "TBR ", "SP ", "FP ", "GR3 ",
191 "GR4 ", "GR5 ", "GR6 ", "GR7 ",
192 "GR8 ", "GR9 ", "GR10", "GR11",
193 "GR12", "GR13", "GR14", "GR15",
194 "GR16", "GR17", "GR18", "GR19",
195 "GR20", "GR21", "GR22", "GR23",
196 "GR24", "GR25", "GR26", "GR27",
197 "EFRM", "CURR", "GR30", "BFRM"
200 struct gdbstub_bkpt
{
201 unsigned long addr
; /* address of breakpoint */
202 unsigned len
; /* size of breakpoint */
203 uint32_t originsns
[7]; /* original instructions */
206 static struct gdbstub_bkpt gdbstub_bkpts
[256];
212 static void gdbstub_recv_packet(char *buffer
);
213 static int gdbstub_send_packet(char *buffer
);
214 static int gdbstub_compute_signal(unsigned long tbr
);
215 static int hex(unsigned char ch
);
216 static int hexToInt(char **ptr
, unsigned long *intValue
);
217 static unsigned char *mem2hex(const void *mem
, char *buf
, int count
, int may_fault
);
218 static char *hex2mem(const char *buf
, void *_mem
, int count
);
221 * Convert ch from a hex digit to an int
223 static int hex(unsigned char ch
)
225 if (ch
>= 'a' && ch
<= 'f')
227 if (ch
>= '0' && ch
<= '9')
229 if (ch
>= 'A' && ch
<= 'F')
234 void gdbstub_printk(const char *fmt
, ...)
236 static char buf
[1024];
240 /* Emit the output into the temporary buffer */
242 len
= vsnprintf(buf
, sizeof(buf
), fmt
, args
);
244 debug_to_serial(buf
, len
);
247 static inline char *gdbstub_strcpy(char *dst
, const char *src
)
250 while ((dst
[loop
] = src
[loop
]))
255 static void gdbstub_purge_cache(void)
257 asm volatile(" dcef @(gr0,gr0),#1 \n"
258 " icei @(gr0,gr0),#1 \n"
264 /*****************************************************************************/
266 * scan for the sequence $<data>#<checksum>
268 static void gdbstub_recv_packet(char *buffer
)
270 unsigned char checksum
;
271 unsigned char xmitcsum
;
273 int count
, i
, ret
, error
;
276 /* wait around for the start character, ignore all other characters */
278 gdbstub_rx_char(&ch
, 0);
286 /* now, read until a # or end of buffer is found */
287 while (count
< BUFMAX
) {
288 ret
= gdbstub_rx_char(&ch
, 0);
300 gdbstub_proto("### GDB Rx Error - Skipping packet ###\n");
301 gdbstub_proto("### GDB Tx NAK\n");
302 gdbstub_tx_char('-');
306 if (count
>= BUFMAX
|| error
)
311 /* read the checksum */
312 ret
= gdbstub_rx_char(&ch
, 0);
315 xmitcsum
= hex(ch
) << 4;
317 ret
= gdbstub_rx_char(&ch
, 0);
324 gdbstub_proto("### GDB Rx Error - Skipping packet\n");
325 gdbstub_proto("### GDB Tx NAK\n");
326 gdbstub_tx_char('-');
330 /* check the checksum */
331 if (checksum
!= xmitcsum
) {
332 gdbstub_proto("### GDB Tx NAK\n");
333 gdbstub_tx_char('-'); /* failed checksum */
337 gdbstub_proto("### GDB Rx '$%s#%02x' ###\n", buffer
, checksum
);
338 gdbstub_proto("### GDB Tx ACK\n");
339 gdbstub_tx_char('+'); /* successful transfer */
341 /* if a sequence char is present, reply the sequence ID */
342 if (buffer
[2] == ':') {
343 gdbstub_tx_char(buffer
[0]);
344 gdbstub_tx_char(buffer
[1]);
346 /* remove sequence chars from buffer */
348 while (buffer
[count
]) count
++;
349 for (i
=3; i
<= count
; i
++)
350 buffer
[i
- 3] = buffer
[i
];
355 } /* end gdbstub_recv_packet() */
357 /*****************************************************************************/
359 * send the packet in buffer.
360 * - return 0 if successfully ACK'd
361 * - return 1 if abandoned due to new incoming packet
363 static int gdbstub_send_packet(char *buffer
)
365 unsigned char checksum
;
369 /* $<packet info>#<checksum> */
370 gdbstub_proto("### GDB Tx '%s' ###\n", buffer
);
373 gdbstub_tx_char('$');
377 while ((ch
= buffer
[count
]) != 0) {
383 gdbstub_tx_char('#');
384 gdbstub_tx_char(hex_asc_hi(checksum
));
385 gdbstub_tx_char(hex_asc_lo(checksum
));
387 } while (gdbstub_rx_char(&ch
,0),
388 #ifdef GDBSTUB_DEBUG_PROTOCOL
389 ch
=='-' && (gdbstub_proto("### GDB Rx NAK\n"),0),
390 ch
!='-' && ch
!='+' && (gdbstub_proto("### GDB Rx ??? %02x\n",ch
),0),
395 gdbstub_proto("### GDB Rx ACK\n");
399 gdbstub_proto("### GDB Tx Abandoned\n");
400 gdbstub_rx_unget
= ch
;
402 } /* end gdbstub_send_packet() */
405 * While we find nice hex chars, build an int.
406 * Return number of chars processed.
408 static int hexToInt(char **ptr
, unsigned long *_value
)
418 *_value
= (*_value
<< 4) | ((uint8_t) ch
& 0xf);
427 /*****************************************************************************/
429 * probe an address to see whether it maps to anything
431 static inline int gdbstub_addr_probe(const void *vaddr
)
436 asm("lrad %1,%0,#1,#0,#0" : "=r"(paddr
) : "r"(vaddr
));
437 if (!(paddr
& xAMPRx_V
))
442 } /* end gdbstub_addr_probe() */
445 static unsigned long __saved_dampr
, __saved_damlr
;
447 static inline unsigned long gdbstub_virt_to_pte(unsigned long vaddr
)
453 unsigned long val
, dampr5
;
455 pgd
= (pgd_t
*) __get_DAMLR(3) + pgd_index(vaddr
);
456 pud
= pud_offset(pgd
, vaddr
);
457 pmd
= pmd_offset(pud
, vaddr
);
459 if (pmd_bad(*pmd
) || !pmd_present(*pmd
))
462 /* make sure dampr5 maps to the correct pmd */
463 dampr5
= __get_DAMPR(5);
465 __set_DAMPR(5, val
| xAMPRx_L
| xAMPRx_SS_16Kb
| xAMPRx_S
| xAMPRx_C
| xAMPRx_V
);
467 /* now its safe to access pmd */
468 pte
= (pte_t
*)__get_DAMLR(5) + __pte_index(vaddr
);
469 if (pte_present(*pte
))
474 /* restore original dampr5 */
475 __set_DAMPR(5, dampr5
);
481 static inline int gdbstub_addr_map(const void *vaddr
)
486 __saved_dampr
= __get_DAMPR(2);
487 __saved_damlr
= __get_DAMLR(2);
489 if (gdbstub_addr_probe(vaddr
))
492 pte
= gdbstub_virt_to_pte((unsigned long) vaddr
);
495 __set_DAMLR(2, (unsigned long) vaddr
& PAGE_MASK
);
502 static inline void gdbstub_addr_unmap(void)
505 __set_DAMPR(2, __saved_dampr
);
506 __set_DAMLR(2, __saved_damlr
);
511 * access potentially dodgy memory through a potentially dodgy pointer
513 static inline int gdbstub_read_dword(const void *addr
, uint32_t *_res
)
518 if (!gdbstub_addr_map(addr
))
521 asm volatile(" movgs gr0,brr \n"
524 : "=r"(res
), "=r"(brr
)
525 : "m"(*(uint32_t *) addr
));
527 gdbstub_addr_unmap();
531 static inline int gdbstub_write_dword(void *addr
, uint32_t val
)
535 if (!gdbstub_addr_map(addr
))
538 asm volatile(" movgs gr0,brr \n"
542 : "r"(val
), "m"(*(uint32_t *) addr
));
543 gdbstub_addr_unmap();
547 static inline int gdbstub_read_word(const void *addr
, uint16_t *_res
)
552 if (!gdbstub_addr_map(addr
))
555 asm volatile(" movgs gr0,brr \n"
558 : "=r"(res
), "=r"(brr
)
559 : "m"(*(uint16_t *) addr
));
561 gdbstub_addr_unmap();
565 static inline int gdbstub_write_word(void *addr
, uint16_t val
)
569 if (!gdbstub_addr_map(addr
))
572 asm volatile(" movgs gr0,brr \n"
576 : "r"(val
), "m"(*(uint16_t *) addr
));
577 gdbstub_addr_unmap();
581 static inline int gdbstub_read_byte(const void *addr
, uint8_t *_res
)
586 if (!gdbstub_addr_map(addr
))
589 asm volatile(" movgs gr0,brr \n"
592 : "=r"(res
), "=r"(brr
)
593 : "m"(*(uint8_t *) addr
));
595 gdbstub_addr_unmap();
599 static inline int gdbstub_write_byte(void *addr
, uint8_t val
)
603 if (!gdbstub_addr_map(addr
))
606 asm volatile(" movgs gr0,brr \n"
610 : "r"(val
), "m"(*(uint8_t *) addr
));
611 gdbstub_addr_unmap();
615 static void __gdbstub_console_write(struct console
*co
, const char *p
, unsigned n
)
625 while (n
> 0 && qty
< 20) {
626 mem2hex(p
, outbuf
+ qty
, 2, 0);
637 gdbstub_send_packet(outbuf
);
642 void debug_to_serial(const char *p
, int n
)
644 gdbstub_console_write(NULL
,p
,n
);
648 #ifdef CONFIG_GDB_CONSOLE
650 static struct console gdbstub_console
= {
652 .write
= gdbstub_console_write
, /* in break.S */
653 .flags
= CON_PRINTBUFFER
,
659 /*****************************************************************************/
661 * Convert the memory pointed to by mem into hex, placing result in buf.
662 * - if successful, return a pointer to the last char put in buf (NUL)
663 * - in case of mem fault, return NULL
664 * may_fault is non-zero if we are reading from arbitrary memory, but is currently
667 static unsigned char *mem2hex(const void *_mem
, char *buf
, int count
, int may_fault
)
669 const uint8_t *mem
= _mem
;
670 uint8_t ch
[4] __attribute__((aligned(4)));
672 if ((uint32_t)mem
&1 && count
>=1) {
673 if (!gdbstub_read_byte(mem
,ch
))
675 buf
= pack_hex_byte(buf
, ch
[0]);
680 if ((uint32_t)mem
&3 && count
>=2) {
681 if (!gdbstub_read_word(mem
,(uint16_t *)ch
))
683 buf
= pack_hex_byte(buf
, ch
[0]);
684 buf
= pack_hex_byte(buf
, ch
[1]);
690 if (!gdbstub_read_dword(mem
,(uint32_t *)ch
))
692 buf
= pack_hex_byte(buf
, ch
[0]);
693 buf
= pack_hex_byte(buf
, ch
[1]);
694 buf
= pack_hex_byte(buf
, ch
[2]);
695 buf
= pack_hex_byte(buf
, ch
[3]);
701 if (!gdbstub_read_word(mem
,(uint16_t *)ch
))
703 buf
= pack_hex_byte(buf
, ch
[0]);
704 buf
= pack_hex_byte(buf
, ch
[1]);
710 if (!gdbstub_read_byte(mem
,ch
))
712 buf
= pack_hex_byte(buf
, ch
[0]);
718 } /* end mem2hex() */
720 /*****************************************************************************/
722 * convert the hex array pointed to by buf into binary to be placed in mem
723 * return a pointer to the character AFTER the last byte of buffer consumed
725 static char *hex2mem(const char *buf
, void *_mem
, int count
)
734 if ((u32
)mem
&1 && count
>=1) {
735 ch
.b
[0] = hex(*buf
++) << 4;
736 ch
.b
[0] |= hex(*buf
++);
737 if (!gdbstub_write_byte(mem
,ch
.b
[0]))
743 if ((u32
)mem
&3 && count
>=2) {
744 ch
.b
[0] = hex(*buf
++) << 4;
745 ch
.b
[0] |= hex(*buf
++);
746 ch
.b
[1] = hex(*buf
++) << 4;
747 ch
.b
[1] |= hex(*buf
++);
748 if (!gdbstub_write_word(mem
,ch
.w
))
755 ch
.b
[0] = hex(*buf
++) << 4;
756 ch
.b
[0] |= hex(*buf
++);
757 ch
.b
[1] = hex(*buf
++) << 4;
758 ch
.b
[1] |= hex(*buf
++);
759 ch
.b
[2] = hex(*buf
++) << 4;
760 ch
.b
[2] |= hex(*buf
++);
761 ch
.b
[3] = hex(*buf
++) << 4;
762 ch
.b
[3] |= hex(*buf
++);
763 if (!gdbstub_write_dword(mem
,ch
.l
))
770 ch
.b
[0] = hex(*buf
++) << 4;
771 ch
.b
[0] |= hex(*buf
++);
772 ch
.b
[1] = hex(*buf
++) << 4;
773 ch
.b
[1] |= hex(*buf
++);
774 if (!gdbstub_write_word(mem
,ch
.w
))
781 ch
.b
[0] = hex(*buf
++) << 4;
782 ch
.b
[0] |= hex(*buf
++);
783 if (!gdbstub_write_byte(mem
,ch
.b
[0]))
788 } /* end hex2mem() */
790 /*****************************************************************************/
792 * This table contains the mapping between FRV TBR.TT exception codes,
793 * and signals, which are primarily what GDB understands. It also
794 * indicates which hardware traps we need to commandeer when
795 * initializing the stub.
797 static const struct brr_to_sig_map
{
798 unsigned long brr_mask
; /* BRR bitmask */
799 unsigned long tbr_tt
; /* TBR.TT code (in BRR.EBTT) */
800 unsigned int signo
; /* Signal that we map this into */
801 } brr_to_sig_map
[] = {
802 { BRR_EB
, TBR_TT_INSTR_ACC_ERROR
, SIGSEGV
},
803 { BRR_EB
, TBR_TT_ILLEGAL_INSTR
, SIGILL
},
804 { BRR_EB
, TBR_TT_PRIV_INSTR
, SIGILL
},
805 { BRR_EB
, TBR_TT_MP_EXCEPTION
, SIGFPE
},
806 { BRR_EB
, TBR_TT_DATA_ACC_ERROR
, SIGSEGV
},
807 { BRR_EB
, TBR_TT_DATA_STR_ERROR
, SIGSEGV
},
808 { BRR_EB
, TBR_TT_DIVISION_EXCEP
, SIGFPE
},
809 { BRR_EB
, TBR_TT_COMPOUND_EXCEP
, SIGSEGV
},
810 { BRR_EB
, TBR_TT_INTERRUPT_13
, SIGALRM
}, /* watchdog */
811 { BRR_EB
, TBR_TT_INTERRUPT_14
, SIGINT
}, /* GDB serial */
812 { BRR_EB
, TBR_TT_INTERRUPT_15
, SIGQUIT
}, /* NMI */
813 { BRR_CB
, 0, SIGUSR1
},
814 { BRR_TB
, 0, SIGUSR2
},
815 { BRR_DBNEx
, 0, SIGTRAP
},
816 { BRR_DBx
, 0, SIGTRAP
}, /* h/w watchpoint */
817 { BRR_IBx
, 0, SIGTRAP
}, /* h/w breakpoint */
818 { BRR_CBB
, 0, SIGTRAP
},
819 { BRR_SB
, 0, SIGTRAP
},
820 { BRR_ST
, 0, SIGTRAP
}, /* single step */
821 { 0, 0, SIGHUP
} /* default */
824 /*****************************************************************************/
826 * convert the FRV BRR register contents into a UNIX signal number
828 static inline int gdbstub_compute_signal(unsigned long brr
)
830 const struct brr_to_sig_map
*map
;
831 unsigned long tbr
= (brr
& BRR_EBTT
) >> 12;
833 for (map
= brr_to_sig_map
; map
->brr_mask
; map
++)
834 if (map
->brr_mask
& brr
)
835 if (!map
->tbr_tt
|| map
->tbr_tt
== tbr
)
839 } /* end gdbstub_compute_signal() */
841 /*****************************************************************************/
843 * set a software breakpoint or a hardware breakpoint or watchpoint
845 static int gdbstub_set_breakpoint(unsigned long type
, unsigned long addr
, unsigned long len
)
848 int bkpt
, loop
, xloop
;
852 unsigned long mask0
, mask1
;
857 //gdbstub_printk("setbkpt(%ld,%08lx,%ld)\n", type, addr, len);
860 /* set software breakpoint */
862 if (addr
& 3 || len
> 7*4)
865 for (bkpt
= 255; bkpt
>= 0; bkpt
--)
866 if (!gdbstub_bkpts
[bkpt
].addr
)
871 for (loop
= 0; loop
< len
/4; loop
++)
872 if (!gdbstub_read_dword(&((uint32_t *) addr
)[loop
],
873 &gdbstub_bkpts
[bkpt
].originsns
[loop
]))
876 for (loop
= 0; loop
< len
/4; loop
++)
877 if (!gdbstub_write_dword(&((uint32_t *) addr
)[loop
],
880 /* need to undo the changes if possible */
881 for (xloop
= 0; xloop
< loop
; xloop
++)
882 gdbstub_write_dword(&((uint32_t *) addr
)[xloop
],
883 gdbstub_bkpts
[bkpt
].originsns
[xloop
]);
887 gdbstub_bkpts
[bkpt
].addr
= addr
;
888 gdbstub_bkpts
[bkpt
].len
= len
;
891 gdbstub_printk("Set BKPT[%02x]: %08lx #%d {%04x, %04x} -> { %04x, %04x }\n",
893 gdbstub_bkpts
[bkpt
].addr
,
894 gdbstub_bkpts
[bkpt
].len
,
895 gdbstub_bkpts
[bkpt
].originsns
[0],
896 gdbstub_bkpts
[bkpt
].originsns
[1],
897 ((uint32_t *) addr
)[0],
898 ((uint32_t *) addr
)[1]
903 /* set hardware breakpoint */
905 if (addr
& 3 || len
!= 4)
908 if (!(__debug_regs
->dcr
& DCR_IBE0
)) {
909 //gdbstub_printk("set h/w break 0: %08lx\n", addr);
910 __debug_regs
->dcr
|= DCR_IBE0
;
911 __debug_regs
->ibar
[0] = addr
;
912 asm volatile("movgs %0,ibar0" : : "r"(addr
));
916 if (!(__debug_regs
->dcr
& DCR_IBE1
)) {
917 //gdbstub_printk("set h/w break 1: %08lx\n", addr);
918 __debug_regs
->dcr
|= DCR_IBE1
;
919 __debug_regs
->ibar
[1] = addr
;
920 asm volatile("movgs %0,ibar1" : : "r"(addr
));
924 if (!(__debug_regs
->dcr
& DCR_IBE2
)) {
925 //gdbstub_printk("set h/w break 2: %08lx\n", addr);
926 __debug_regs
->dcr
|= DCR_IBE2
;
927 __debug_regs
->ibar
[2] = addr
;
928 asm volatile("movgs %0,ibar2" : : "r"(addr
));
932 if (!(__debug_regs
->dcr
& DCR_IBE3
)) {
933 //gdbstub_printk("set h/w break 3: %08lx\n", addr);
934 __debug_regs
->dcr
|= DCR_IBE3
;
935 __debug_regs
->ibar
[3] = addr
;
936 asm volatile("movgs %0,ibar3" : : "r"(addr
));
942 /* set data read/write/access watchpoint */
946 if ((addr
& ~7) != ((addr
+ len
- 1) & ~7))
951 memset(dbmr
.bytes
, 0xff, sizeof(dbmr
.bytes
));
952 for (loop
= 0; loop
< len
; loop
++)
953 dbmr
.bytes
[tmp
+ loop
] = 0;
957 if (!(__debug_regs
->dcr
& (DCR_DRBE0
|DCR_DWBE0
))) {
958 //gdbstub_printk("set h/w watchpoint 0 type %ld: %08lx\n", type, addr);
959 tmp
= type
==2 ? DCR_DWBE0
: type
==3 ? DCR_DRBE0
: DCR_DRBE0
|DCR_DWBE0
;
961 __debug_regs
->dcr
|= tmp
;
962 __debug_regs
->dbar
[0] = addr
;
963 __debug_regs
->dbmr
[0][0] = dbmr
.mask0
;
964 __debug_regs
->dbmr
[0][1] = dbmr
.mask1
;
965 __debug_regs
->dbdr
[0][0] = 0;
966 __debug_regs
->dbdr
[0][1] = 0;
968 asm volatile(" movgs %0,dbar0 \n"
969 " movgs %1,dbmr00 \n"
970 " movgs %2,dbmr01 \n"
971 " movgs gr0,dbdr00 \n"
972 " movgs gr0,dbdr01 \n"
973 : : "r"(addr
), "r"(dbmr
.mask0
), "r"(dbmr
.mask1
));
977 if (!(__debug_regs
->dcr
& (DCR_DRBE1
|DCR_DWBE1
))) {
978 //gdbstub_printk("set h/w watchpoint 1 type %ld: %08lx\n", type, addr);
979 tmp
= type
==2 ? DCR_DWBE1
: type
==3 ? DCR_DRBE1
: DCR_DRBE1
|DCR_DWBE1
;
981 __debug_regs
->dcr
|= tmp
;
982 __debug_regs
->dbar
[1] = addr
;
983 __debug_regs
->dbmr
[1][0] = dbmr
.mask0
;
984 __debug_regs
->dbmr
[1][1] = dbmr
.mask1
;
985 __debug_regs
->dbdr
[1][0] = 0;
986 __debug_regs
->dbdr
[1][1] = 0;
988 asm volatile(" movgs %0,dbar1 \n"
989 " movgs %1,dbmr10 \n"
990 " movgs %2,dbmr11 \n"
991 " movgs gr0,dbdr10 \n"
992 " movgs gr0,dbdr11 \n"
993 : : "r"(addr
), "r"(dbmr
.mask0
), "r"(dbmr
.mask1
));
1003 } /* end gdbstub_set_breakpoint() */
1005 /*****************************************************************************/
1007 * clear a breakpoint or watchpoint
1009 int gdbstub_clear_breakpoint(unsigned long type
, unsigned long addr
, unsigned long len
)
1016 unsigned long mask0
, mask1
;
1021 //gdbstub_printk("clearbkpt(%ld,%08lx,%ld)\n", type, addr, len);
1024 /* clear software breakpoint */
1026 for (bkpt
= 255; bkpt
>= 0; bkpt
--)
1027 if (gdbstub_bkpts
[bkpt
].addr
== addr
&& gdbstub_bkpts
[bkpt
].len
== len
)
1032 gdbstub_bkpts
[bkpt
].addr
= 0;
1034 for (loop
= 0; loop
< len
/4; loop
++)
1035 if (!gdbstub_write_dword(&((uint32_t *) addr
)[loop
],
1036 gdbstub_bkpts
[bkpt
].originsns
[loop
]))
1040 /* clear hardware breakpoint */
1042 if (addr
& 3 || len
!= 4)
1045 #define __get_ibar(X) ({ unsigned long x; asm volatile("movsg ibar"#X",%0" : "=r"(x)); x; })
1047 if (__debug_regs
->dcr
& DCR_IBE0
&& __get_ibar(0) == addr
) {
1048 //gdbstub_printk("clear h/w break 0: %08lx\n", addr);
1049 __debug_regs
->dcr
&= ~DCR_IBE0
;
1050 __debug_regs
->ibar
[0] = 0;
1051 asm volatile("movgs gr0,ibar0");
1055 if (__debug_regs
->dcr
& DCR_IBE1
&& __get_ibar(1) == addr
) {
1056 //gdbstub_printk("clear h/w break 1: %08lx\n", addr);
1057 __debug_regs
->dcr
&= ~DCR_IBE1
;
1058 __debug_regs
->ibar
[1] = 0;
1059 asm volatile("movgs gr0,ibar1");
1063 if (__debug_regs
->dcr
& DCR_IBE2
&& __get_ibar(2) == addr
) {
1064 //gdbstub_printk("clear h/w break 2: %08lx\n", addr);
1065 __debug_regs
->dcr
&= ~DCR_IBE2
;
1066 __debug_regs
->ibar
[2] = 0;
1067 asm volatile("movgs gr0,ibar2");
1071 if (__debug_regs
->dcr
& DCR_IBE3
&& __get_ibar(3) == addr
) {
1072 //gdbstub_printk("clear h/w break 3: %08lx\n", addr);
1073 __debug_regs
->dcr
&= ~DCR_IBE3
;
1074 __debug_regs
->ibar
[3] = 0;
1075 asm volatile("movgs gr0,ibar3");
1081 /* clear data read/write/access watchpoint */
1085 if ((addr
& ~7) != ((addr
+ len
- 1) & ~7))
1090 memset(dbmr
.bytes
, 0xff, sizeof(dbmr
.bytes
));
1091 for (loop
= 0; loop
< len
; loop
++)
1092 dbmr
.bytes
[tmp
+ loop
] = 0;
1096 #define __get_dbar(X) ({ unsigned long x; asm volatile("movsg dbar"#X",%0" : "=r"(x)); x; })
1097 #define __get_dbmr0(X) ({ unsigned long x; asm volatile("movsg dbmr"#X"0,%0" : "=r"(x)); x; })
1098 #define __get_dbmr1(X) ({ unsigned long x; asm volatile("movsg dbmr"#X"1,%0" : "=r"(x)); x; })
1100 /* consider DBAR 0 */
1101 tmp
= type
==2 ? DCR_DWBE0
: type
==3 ? DCR_DRBE0
: DCR_DRBE0
|DCR_DWBE0
;
1103 if ((__debug_regs
->dcr
& (DCR_DRBE0
|DCR_DWBE0
)) != tmp
||
1104 __get_dbar(0) != addr
||
1105 __get_dbmr0(0) != dbmr
.mask0
||
1106 __get_dbmr1(0) != dbmr
.mask1
)
1109 //gdbstub_printk("clear h/w watchpoint 0 type %ld: %08lx\n", type, addr);
1110 __debug_regs
->dcr
&= ~(DCR_DRBE0
|DCR_DWBE0
);
1111 __debug_regs
->dbar
[0] = 0;
1112 __debug_regs
->dbmr
[0][0] = 0;
1113 __debug_regs
->dbmr
[0][1] = 0;
1114 __debug_regs
->dbdr
[0][0] = 0;
1115 __debug_regs
->dbdr
[0][1] = 0;
1117 asm volatile(" movgs gr0,dbar0 \n"
1118 " movgs gr0,dbmr00 \n"
1119 " movgs gr0,dbmr01 \n"
1120 " movgs gr0,dbdr00 \n"
1121 " movgs gr0,dbdr01 \n");
1125 /* consider DBAR 0 */
1126 tmp
= type
==2 ? DCR_DWBE1
: type
==3 ? DCR_DRBE1
: DCR_DRBE1
|DCR_DWBE1
;
1128 if ((__debug_regs
->dcr
& (DCR_DRBE1
|DCR_DWBE1
)) != tmp
||
1129 __get_dbar(1) != addr
||
1130 __get_dbmr0(1) != dbmr
.mask0
||
1131 __get_dbmr1(1) != dbmr
.mask1
)
1134 //gdbstub_printk("clear h/w watchpoint 1 type %ld: %08lx\n", type, addr);
1135 __debug_regs
->dcr
&= ~(DCR_DRBE1
|DCR_DWBE1
);
1136 __debug_regs
->dbar
[1] = 0;
1137 __debug_regs
->dbmr
[1][0] = 0;
1138 __debug_regs
->dbmr
[1][1] = 0;
1139 __debug_regs
->dbdr
[1][0] = 0;
1140 __debug_regs
->dbdr
[1][1] = 0;
1142 asm volatile(" movgs gr0,dbar1 \n"
1143 " movgs gr0,dbmr10 \n"
1144 " movgs gr0,dbmr11 \n"
1145 " movgs gr0,dbdr10 \n"
1146 " movgs gr0,dbdr11 \n");
1155 } /* end gdbstub_clear_breakpoint() */
1157 /*****************************************************************************/
1159 * check a for an internal software breakpoint, and wind the PC back if necessary
1161 static void gdbstub_check_breakpoint(void)
1163 unsigned long addr
= __debug_frame
->pc
- 4;
1166 for (bkpt
= 255; bkpt
>= 0; bkpt
--)
1167 if (gdbstub_bkpts
[bkpt
].addr
== addr
)
1170 __debug_frame
->pc
= addr
;
1172 //gdbstub_printk("alter pc [%d] %08lx\n", bkpt, __debug_frame->pc);
1174 } /* end gdbstub_check_breakpoint() */
1176 /*****************************************************************************/
1180 static void __maybe_unused
gdbstub_show_regs(void)
1185 gdbstub_printk("\n");
1187 gdbstub_printk("Frame: @%p [%s]\n",
1189 __debug_frame
->psr
& PSR_S
? "kernel" : "user");
1191 reg
= (unsigned long *) __debug_frame
;
1192 for (loop
= 0; loop
< NR_PT_REGS
; loop
++) {
1193 printk("%s %08lx", regnames
[loop
+ 0], reg
[loop
+ 0]);
1195 if (loop
== NR_PT_REGS
- 1 || loop
% 5 == 4)
1201 gdbstub_printk("Process %s (pid: %d)\n", current
->comm
, current
->pid
);
1202 } /* end gdbstub_show_regs() */
1204 /*****************************************************************************/
1206 * dump debugging regs
1208 static void __maybe_unused
gdbstub_dump_debugregs(void)
1210 gdbstub_printk("DCR %08lx ", __debug_status
.dcr
);
1211 gdbstub_printk("BRR %08lx\n", __debug_status
.brr
);
1213 gdbstub_printk("IBAR0 %08lx ", __get_ibar(0));
1214 gdbstub_printk("IBAR1 %08lx ", __get_ibar(1));
1215 gdbstub_printk("IBAR2 %08lx ", __get_ibar(2));
1216 gdbstub_printk("IBAR3 %08lx\n", __get_ibar(3));
1218 gdbstub_printk("DBAR0 %08lx ", __get_dbar(0));
1219 gdbstub_printk("DBMR00 %08lx ", __get_dbmr0(0));
1220 gdbstub_printk("DBMR01 %08lx\n", __get_dbmr1(0));
1222 gdbstub_printk("DBAR1 %08lx ", __get_dbar(1));
1223 gdbstub_printk("DBMR10 %08lx ", __get_dbmr0(1));
1224 gdbstub_printk("DBMR11 %08lx\n", __get_dbmr1(1));
1226 gdbstub_printk("\n");
1227 } /* end gdbstub_dump_debugregs() */
1229 /*****************************************************************************/
1231 * dump the MMU state into a structure so that it can be accessed with GDB
1233 void gdbstub_get_mmu_state(void)
1235 asm volatile("movsg hsr0,%0" : "=r"(__debug_mmu
.regs
.hsr0
));
1236 asm volatile("movsg pcsr,%0" : "=r"(__debug_mmu
.regs
.pcsr
));
1237 asm volatile("movsg esr0,%0" : "=r"(__debug_mmu
.regs
.esr0
));
1238 asm volatile("movsg ear0,%0" : "=r"(__debug_mmu
.regs
.ear0
));
1239 asm volatile("movsg epcr0,%0" : "=r"(__debug_mmu
.regs
.epcr0
));
1241 /* read the protection / SAT registers */
1242 __debug_mmu
.iamr
[0].L
= __get_IAMLR(0);
1243 __debug_mmu
.iamr
[0].P
= __get_IAMPR(0);
1244 __debug_mmu
.iamr
[1].L
= __get_IAMLR(1);
1245 __debug_mmu
.iamr
[1].P
= __get_IAMPR(1);
1246 __debug_mmu
.iamr
[2].L
= __get_IAMLR(2);
1247 __debug_mmu
.iamr
[2].P
= __get_IAMPR(2);
1248 __debug_mmu
.iamr
[3].L
= __get_IAMLR(3);
1249 __debug_mmu
.iamr
[3].P
= __get_IAMPR(3);
1250 __debug_mmu
.iamr
[4].L
= __get_IAMLR(4);
1251 __debug_mmu
.iamr
[4].P
= __get_IAMPR(4);
1252 __debug_mmu
.iamr
[5].L
= __get_IAMLR(5);
1253 __debug_mmu
.iamr
[5].P
= __get_IAMPR(5);
1254 __debug_mmu
.iamr
[6].L
= __get_IAMLR(6);
1255 __debug_mmu
.iamr
[6].P
= __get_IAMPR(6);
1256 __debug_mmu
.iamr
[7].L
= __get_IAMLR(7);
1257 __debug_mmu
.iamr
[7].P
= __get_IAMPR(7);
1258 __debug_mmu
.iamr
[8].L
= __get_IAMLR(8);
1259 __debug_mmu
.iamr
[8].P
= __get_IAMPR(8);
1260 __debug_mmu
.iamr
[9].L
= __get_IAMLR(9);
1261 __debug_mmu
.iamr
[9].P
= __get_IAMPR(9);
1262 __debug_mmu
.iamr
[10].L
= __get_IAMLR(10);
1263 __debug_mmu
.iamr
[10].P
= __get_IAMPR(10);
1264 __debug_mmu
.iamr
[11].L
= __get_IAMLR(11);
1265 __debug_mmu
.iamr
[11].P
= __get_IAMPR(11);
1266 __debug_mmu
.iamr
[12].L
= __get_IAMLR(12);
1267 __debug_mmu
.iamr
[12].P
= __get_IAMPR(12);
1268 __debug_mmu
.iamr
[13].L
= __get_IAMLR(13);
1269 __debug_mmu
.iamr
[13].P
= __get_IAMPR(13);
1270 __debug_mmu
.iamr
[14].L
= __get_IAMLR(14);
1271 __debug_mmu
.iamr
[14].P
= __get_IAMPR(14);
1272 __debug_mmu
.iamr
[15].L
= __get_IAMLR(15);
1273 __debug_mmu
.iamr
[15].P
= __get_IAMPR(15);
1275 __debug_mmu
.damr
[0].L
= __get_DAMLR(0);
1276 __debug_mmu
.damr
[0].P
= __get_DAMPR(0);
1277 __debug_mmu
.damr
[1].L
= __get_DAMLR(1);
1278 __debug_mmu
.damr
[1].P
= __get_DAMPR(1);
1279 __debug_mmu
.damr
[2].L
= __get_DAMLR(2);
1280 __debug_mmu
.damr
[2].P
= __get_DAMPR(2);
1281 __debug_mmu
.damr
[3].L
= __get_DAMLR(3);
1282 __debug_mmu
.damr
[3].P
= __get_DAMPR(3);
1283 __debug_mmu
.damr
[4].L
= __get_DAMLR(4);
1284 __debug_mmu
.damr
[4].P
= __get_DAMPR(4);
1285 __debug_mmu
.damr
[5].L
= __get_DAMLR(5);
1286 __debug_mmu
.damr
[5].P
= __get_DAMPR(5);
1287 __debug_mmu
.damr
[6].L
= __get_DAMLR(6);
1288 __debug_mmu
.damr
[6].P
= __get_DAMPR(6);
1289 __debug_mmu
.damr
[7].L
= __get_DAMLR(7);
1290 __debug_mmu
.damr
[7].P
= __get_DAMPR(7);
1291 __debug_mmu
.damr
[8].L
= __get_DAMLR(8);
1292 __debug_mmu
.damr
[8].P
= __get_DAMPR(8);
1293 __debug_mmu
.damr
[9].L
= __get_DAMLR(9);
1294 __debug_mmu
.damr
[9].P
= __get_DAMPR(9);
1295 __debug_mmu
.damr
[10].L
= __get_DAMLR(10);
1296 __debug_mmu
.damr
[10].P
= __get_DAMPR(10);
1297 __debug_mmu
.damr
[11].L
= __get_DAMLR(11);
1298 __debug_mmu
.damr
[11].P
= __get_DAMPR(11);
1299 __debug_mmu
.damr
[12].L
= __get_DAMLR(12);
1300 __debug_mmu
.damr
[12].P
= __get_DAMPR(12);
1301 __debug_mmu
.damr
[13].L
= __get_DAMLR(13);
1302 __debug_mmu
.damr
[13].P
= __get_DAMPR(13);
1303 __debug_mmu
.damr
[14].L
= __get_DAMLR(14);
1304 __debug_mmu
.damr
[14].P
= __get_DAMPR(14);
1305 __debug_mmu
.damr
[15].L
= __get_DAMLR(15);
1306 __debug_mmu
.damr
[15].P
= __get_DAMPR(15);
1310 /* read the DAT entries from the TLB */
1311 struct __debug_amr
*p
;
1314 asm volatile("movsg tplr,%0" : "=r"(__debug_mmu
.regs
.tplr
));
1315 asm volatile("movsg tppr,%0" : "=r"(__debug_mmu
.regs
.tppr
));
1316 asm volatile("movsg tpxr,%0" : "=r"(__debug_mmu
.regs
.tpxr
));
1317 asm volatile("movsg cxnr,%0" : "=r"(__debug_mmu
.regs
.cxnr
));
1319 p
= __debug_mmu
.tlb
;
1322 asm volatile("movgs %0,tpxr" :: "r"(0 << TPXR_WAY_SHIFT
));
1323 for (loop
= 0; loop
< 64; loop
++) {
1324 asm volatile("tlbpr %0,gr0,#1,#0" :: "r"(loop
<< PAGE_SHIFT
));
1325 asm volatile("movsg tplr,%0" : "=r"(p
->L
));
1326 asm volatile("movsg tppr,%0" : "=r"(p
->P
));
1331 asm volatile("movgs %0,tpxr" :: "r"(1 << TPXR_WAY_SHIFT
));
1332 for (loop
= 0; loop
< 64; loop
++) {
1333 asm volatile("tlbpr %0,gr0,#1,#0" :: "r"(loop
<< PAGE_SHIFT
));
1334 asm volatile("movsg tplr,%0" : "=r"(p
->L
));
1335 asm volatile("movsg tppr,%0" : "=r"(p
->P
));
1339 asm volatile("movgs %0,tplr" :: "r"(__debug_mmu
.regs
.tplr
));
1340 asm volatile("movgs %0,tppr" :: "r"(__debug_mmu
.regs
.tppr
));
1341 asm volatile("movgs %0,tpxr" :: "r"(__debug_mmu
.regs
.tpxr
));
1345 } /* end gdbstub_get_mmu_state() */
1348 * handle general query commands of the form 'qXXXXX'
1350 static void gdbstub_handle_query(void)
1352 if (strcmp(input_buffer
, "qAttached") == 0) {
1353 /* return current thread ID */
1354 sprintf(output_buffer
, "1");
1358 if (strcmp(input_buffer
, "qC") == 0) {
1359 /* return current thread ID */
1360 sprintf(output_buffer
, "QC 0");
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");
1370 if (strcmp(input_buffer
, "qSymbol::") == 0) {
1371 sprintf(output_buffer
, "OK");
1375 if (strcmp(input_buffer
, "qSupported") == 0) {
1376 /* query of supported features */
1377 sprintf(output_buffer
, "PacketSize=%u;ReverseContinue-;ReverseStep-",
1378 sizeof(input_buffer
));
1382 gdbstub_strcpy(output_buffer
,"E01");
1385 /*****************************************************************************/
1387 * handle event interception and GDB remote protocol processing
1389 * PSR.ET==0, PSR.S==1 and the CPU is in debug mode
1390 * __debug_frame points to the saved registers
1391 * __frame points to the kernel mode exception frame, if it was in kernel
1392 * mode when the break happened
1394 void gdbstub(int sigval
)
1396 unsigned long addr
, length
, loop
, dbar
, temp
, temp2
, temp3
;
1399 int flush_cache
= 0;
1404 #ifndef CONFIG_GDBSTUB_IMMEDIATE
1405 /* return immediately if GDB immediate activation option not set */
1412 save_user_regs(&__debug_frame0
->uc
);
1415 gdbstub_printk("--> gdbstub() %08x %p %08x %08x\n",
1419 __debug_regs
->bpsr
);
1420 // gdbstub_show_regs();
1425 /* if we were interrupted by input on the serial gdbstub serial port,
1426 * restore the context prior to the interrupt so that we return to that
1429 temp
= (unsigned long) __entry_kerneltrap_table
;
1430 temp2
= (unsigned long) __entry_usertrap_table
;
1431 temp3
= __debug_frame
->pc
& ~15;
1433 if (temp3
== temp
+ TBR_TT_INTERRUPT_15
||
1434 temp3
== temp2
+ TBR_TT_INTERRUPT_15
1436 asm volatile("movsg pcsr,%0" : "=r"(__debug_frame
->pc
));
1437 __debug_frame
->psr
|= PSR_ET
;
1438 __debug_frame
->psr
&= ~PSR_S
;
1439 if (__debug_frame
->psr
& PSR_PS
)
1440 __debug_frame
->psr
|= PSR_S
;
1441 __debug_status
.brr
= (__debug_frame
->tbr
& TBR_TT
) << 12;
1442 __debug_status
.brr
|= BRR_EB
;
1446 /* handle the decrement timer going off (FR451 only) */
1447 if (temp3
== temp
+ TBR_TT_DECREMENT_TIMER
||
1448 temp3
== temp2
+ TBR_TT_DECREMENT_TIMER
1450 asm volatile("movgs %0,timerd" :: "r"(10000000));
1451 asm volatile("movsg pcsr,%0" : "=r"(__debug_frame
->pc
));
1452 __debug_frame
->psr
|= PSR_ET
;
1453 __debug_frame
->psr
&= ~PSR_S
;
1454 if (__debug_frame
->psr
& PSR_PS
)
1455 __debug_frame
->psr
|= PSR_S
;
1456 __debug_status
.brr
= (__debug_frame
->tbr
& TBR_TT
) << 12;
1457 __debug_status
.brr
|= BRR_EB
;
1463 /* after a BREAK insn, the PC lands on the far side of it */
1464 if (__debug_status
.brr
& BRR_SB
)
1465 gdbstub_check_breakpoint();
1469 /* handle attempts to write console data via GDB "O" commands */
1470 if (__debug_frame
->pc
== (unsigned long) gdbstub_console_write
+ 4) {
1471 __gdbstub_console_write((struct console
*) __debug_frame
->gr8
,
1472 (const char *) __debug_frame
->gr9
,
1473 (unsigned) __debug_frame
->gr10
);
1477 if (gdbstub_rx_unget
) {
1479 goto packet_waiting
;
1483 sigval
= gdbstub_compute_signal(__debug_status
.brr
);
1487 /* send a message to the debugger's user saying what happened if it may
1488 * not be clear cut (we can't map exceptions onto signals properly)
1490 if (sigval
!= SIGINT
&& sigval
!= SIGTRAP
&& sigval
!= SIGILL
) {
1491 static const char title
[] = "Break ";
1492 static const char crlf
[] = "\r\n";
1493 unsigned long brr
= __debug_status
.brr
;
1496 ptr
= output_buffer
;
1498 ptr
= mem2hex(title
, ptr
, sizeof(title
) - 1,0);
1500 hx
= hex_asc_hi(brr
>> 24);
1501 ptr
= pack_hex_byte(ptr
, hx
);
1502 hx
= hex_asc_lo(brr
>> 24);
1503 ptr
= pack_hex_byte(ptr
, hx
);
1504 hx
= hex_asc_hi(brr
>> 16);
1505 ptr
= pack_hex_byte(ptr
, hx
);
1506 hx
= hex_asc_lo(brr
>> 16);
1507 ptr
= pack_hex_byte(ptr
, hx
);
1508 hx
= hex_asc_hi(brr
>> 8);
1509 ptr
= pack_hex_byte(ptr
, hx
);
1510 hx
= hex_asc_lo(brr
>> 8);
1511 ptr
= pack_hex_byte(ptr
, hx
);
1512 hx
= hex_asc_hi(brr
);
1513 ptr
= pack_hex_byte(ptr
, hx
);
1514 hx
= hex_asc_lo(brr
);
1515 ptr
= pack_hex_byte(ptr
, hx
);
1517 ptr
= mem2hex(crlf
, ptr
, sizeof(crlf
) - 1, 0);
1519 gdbstub_send_packet(output_buffer
); /* send it off... */
1524 /* tell the debugger that an exception has occurred */
1525 ptr
= output_buffer
;
1527 /* Send trap type (converted to signal) */
1529 ptr
= pack_hex_byte(ptr
, sigval
);
1532 ptr
= pack_hex_byte(ptr
, GDB_REG_PC
);
1534 ptr
= mem2hex(&__debug_frame
->pc
, ptr
, 4, 0);
1538 * Send frame pointer
1540 ptr
= pack_hex_byte(ptr
, GDB_REG_FP
);
1542 ptr
= mem2hex(&__debug_frame
->fp
, ptr
, 4, 0);
1546 * Send stack pointer
1548 ptr
= pack_hex_byte(ptr
, GDB_REG_SP
);
1550 ptr
= mem2hex(&__debug_frame
->sp
, ptr
, 4, 0);
1554 gdbstub_send_packet(output_buffer
); /* send it off... */
1559 gdbstub_get_mmu_state();
1561 /* wait for input from remote GDB */
1563 output_buffer
[0] = 0;
1566 gdbstub_recv_packet(input_buffer
);
1567 LEDS(0x5600 | input_buffer
[0]);
1569 switch (input_buffer
[0]) {
1570 /* request repeat of last signal number */
1572 output_buffer
[0] = 'S';
1573 output_buffer
[1] = hex_asc_hi(sigval
);
1574 output_buffer
[2] = hex_asc_lo(sigval
);
1575 output_buffer
[3] = 0;
1579 /* toggle debug flag */
1582 /* return the value of the CPU registers
1583 * - GR0, GR1, GR2, GR3, GR4, GR5, GR6, GR7,
1584 * - GR8, GR9, GR10, GR11, GR12, GR13, GR14, GR15,
1585 * - GR16, GR17, GR18, GR19, GR20, GR21, GR22, GR23,
1586 * - GR24, GR25, GR26, GR27, GR28, GR29, GR30, GR31,
1587 * - GR32, GR33, GR34, GR35, GR36, GR37, GR38, GR39,
1588 * - GR40, GR41, GR42, GR43, GR44, GR45, GR46, GR47,
1589 * - GR48, GR49, GR50, GR51, GR52, GR53, GR54, GR55,
1590 * - GR56, GR57, GR58, GR59, GR60, GR61, GR62, GR63,
1591 * - FP0, FP1, FP2, FP3, FP4, FP5, FP6, FP7,
1592 * - FP8, FP9, FP10, FP11, FP12, FP13, FP14, FP15,
1593 * - FP16, FP17, FP18, FP19, FP20, FP21, FP22, FP23,
1594 * - FP24, FP25, FP26, FP27, FP28, FP29, FP30, FP31,
1595 * - FP32, FP33, FP34, FP35, FP36, FP37, FP38, FP39,
1596 * - FP40, FP41, FP42, FP43, FP44, FP45, FP46, FP47,
1597 * - FP48, FP49, FP50, FP51, FP52, FP53, FP54, FP55,
1598 * - FP56, FP57, FP58, FP59, FP60, FP61, FP62, FP63,
1599 * - PC, PSR, CCR, CCCR,
1600 * - _X132, _X133, _X134
1601 * - TBR, BRR, DBAR0, DBAR1, DBAR2, DBAR3,
1602 * - _X141, _X142, _X143, _X144,
1607 ptr
= output_buffer
;
1609 /* deal with GR0, GR1-GR27, GR28-GR31, GR32-GR63 */
1610 ptr
= mem2hex(&zero
, ptr
, 4, 0);
1612 for (loop
= 1; loop
<= 27; loop
++)
1613 ptr
= mem2hex(&__debug_user_context
->i
.gr
[loop
], ptr
, 4, 0);
1614 temp
= (unsigned long) __frame
;
1615 ptr
= mem2hex(&temp
, ptr
, 4, 0);
1616 ptr
= mem2hex(&__debug_user_context
->i
.gr
[29], ptr
, 4, 0);
1617 ptr
= mem2hex(&__debug_user_context
->i
.gr
[30], ptr
, 4, 0);
1619 ptr
= mem2hex(&__debug_user_context
->i
.gr
[31], ptr
, 4, 0);
1621 temp
= (unsigned long) __debug_frame
;
1622 ptr
= mem2hex(&temp
, ptr
, 4, 0);
1625 for (loop
= 32; loop
<= 63; loop
++)
1626 ptr
= mem2hex(&__debug_user_context
->i
.gr
[loop
], ptr
, 4, 0);
1628 /* deal with FR0-FR63 */
1629 for (loop
= 0; loop
<= 63; loop
++)
1630 ptr
= mem2hex(&__debug_user_context
->f
.fr
[loop
], ptr
, 4, 0);
1632 /* deal with special registers */
1633 ptr
= mem2hex(&__debug_frame
->pc
, ptr
, 4, 0);
1634 ptr
= mem2hex(&__debug_frame
->psr
, ptr
, 4, 0);
1635 ptr
= mem2hex(&__debug_frame
->ccr
, ptr
, 4, 0);
1636 ptr
= mem2hex(&__debug_frame
->cccr
, ptr
, 4, 0);
1637 ptr
= mem2hex(&zero
, ptr
, 4, 0);
1638 ptr
= mem2hex(&zero
, ptr
, 4, 0);
1639 ptr
= mem2hex(&zero
, ptr
, 4, 0);
1640 ptr
= mem2hex(&__debug_frame
->tbr
, ptr
, 4, 0);
1641 ptr
= mem2hex(&__debug_status
.brr
, ptr
, 4, 0);
1643 asm volatile("movsg dbar0,%0" : "=r"(dbar
));
1644 ptr
= mem2hex(&dbar
, ptr
, 4, 0);
1645 asm volatile("movsg dbar1,%0" : "=r"(dbar
));
1646 ptr
= mem2hex(&dbar
, ptr
, 4, 0);
1647 asm volatile("movsg dbar2,%0" : "=r"(dbar
));
1648 ptr
= mem2hex(&dbar
, ptr
, 4, 0);
1649 asm volatile("movsg dbar3,%0" : "=r"(dbar
));
1650 ptr
= mem2hex(&dbar
, ptr
, 4, 0);
1652 asm volatile("movsg scr0,%0" : "=r"(dbar
));
1653 ptr
= mem2hex(&dbar
, ptr
, 4, 0);
1654 asm volatile("movsg scr1,%0" : "=r"(dbar
));
1655 ptr
= mem2hex(&dbar
, ptr
, 4, 0);
1656 asm volatile("movsg scr2,%0" : "=r"(dbar
));
1657 ptr
= mem2hex(&dbar
, ptr
, 4, 0);
1658 asm volatile("movsg scr3,%0" : "=r"(dbar
));
1659 ptr
= mem2hex(&dbar
, ptr
, 4, 0);
1661 ptr
= mem2hex(&__debug_frame
->lr
, ptr
, 4, 0);
1662 ptr
= mem2hex(&__debug_frame
->lcr
, ptr
, 4, 0);
1664 ptr
= mem2hex(&__debug_frame
->iacc0
, ptr
, 8, 0);
1666 ptr
= mem2hex(&__debug_user_context
->f
.fsr
[0], ptr
, 4, 0);
1668 for (loop
= 0; loop
<= 7; loop
++)
1669 ptr
= mem2hex(&__debug_user_context
->f
.acc
[loop
], ptr
, 4, 0);
1671 ptr
= mem2hex(&__debug_user_context
->f
.accg
, ptr
, 8, 0);
1673 for (loop
= 0; loop
<= 1; loop
++)
1674 ptr
= mem2hex(&__debug_user_context
->f
.msr
[loop
], ptr
, 4, 0);
1676 ptr
= mem2hex(&__debug_frame
->gner0
, ptr
, 4, 0);
1677 ptr
= mem2hex(&__debug_frame
->gner1
, ptr
, 4, 0);
1679 ptr
= mem2hex(&__debug_user_context
->f
.fner
[0], ptr
, 4, 0);
1680 ptr
= mem2hex(&__debug_user_context
->f
.fner
[1], ptr
, 4, 0);
1684 /* set the values of the CPU registers */
1686 ptr
= &input_buffer
[1];
1688 /* deal with GR0, GR1-GR27, GR28-GR31, GR32-GR63 */
1689 ptr
= hex2mem(ptr
, &temp
, 4);
1691 for (loop
= 1; loop
<= 27; loop
++)
1692 ptr
= hex2mem(ptr
, &__debug_user_context
->i
.gr
[loop
], 4);
1694 ptr
= hex2mem(ptr
, &temp
, 4);
1695 __frame
= (struct pt_regs
*) temp
;
1696 ptr
= hex2mem(ptr
, &__debug_frame
->gr29
, 4);
1697 ptr
= hex2mem(ptr
, &__debug_frame
->gr30
, 4);
1699 ptr
= hex2mem(ptr
, &__debug_frame
->gr31
, 4);
1701 ptr
= hex2mem(ptr
, &temp
, 4);
1704 for (loop
= 32; loop
<= 63; loop
++)
1705 ptr
= hex2mem(ptr
, &__debug_user_context
->i
.gr
[loop
], 4);
1707 /* deal with FR0-FR63 */
1708 for (loop
= 0; loop
<= 63; loop
++)
1709 ptr
= mem2hex(&__debug_user_context
->f
.fr
[loop
], ptr
, 4, 0);
1711 /* deal with special registers */
1712 ptr
= hex2mem(ptr
, &__debug_frame
->pc
, 4);
1713 ptr
= hex2mem(ptr
, &__debug_frame
->psr
, 4);
1714 ptr
= hex2mem(ptr
, &__debug_frame
->ccr
, 4);
1715 ptr
= hex2mem(ptr
, &__debug_frame
->cccr
,4);
1717 for (loop
= 132; loop
<= 140; loop
++)
1718 ptr
= hex2mem(ptr
, &temp
, 4);
1720 ptr
= hex2mem(ptr
, &temp
, 4);
1721 asm volatile("movgs %0,scr0" :: "r"(temp
));
1722 ptr
= hex2mem(ptr
, &temp
, 4);
1723 asm volatile("movgs %0,scr1" :: "r"(temp
));
1724 ptr
= hex2mem(ptr
, &temp
, 4);
1725 asm volatile("movgs %0,scr2" :: "r"(temp
));
1726 ptr
= hex2mem(ptr
, &temp
, 4);
1727 asm volatile("movgs %0,scr3" :: "r"(temp
));
1729 ptr
= hex2mem(ptr
, &__debug_frame
->lr
, 4);
1730 ptr
= hex2mem(ptr
, &__debug_frame
->lcr
, 4);
1732 ptr
= hex2mem(ptr
, &__debug_frame
->iacc0
, 8);
1734 ptr
= hex2mem(ptr
, &__debug_user_context
->f
.fsr
[0], 4);
1736 for (loop
= 0; loop
<= 7; loop
++)
1737 ptr
= hex2mem(ptr
, &__debug_user_context
->f
.acc
[loop
], 4);
1739 ptr
= hex2mem(ptr
, &__debug_user_context
->f
.accg
, 8);
1741 for (loop
= 0; loop
<= 1; loop
++)
1742 ptr
= hex2mem(ptr
, &__debug_user_context
->f
.msr
[loop
], 4);
1744 ptr
= hex2mem(ptr
, &__debug_frame
->gner0
, 4);
1745 ptr
= hex2mem(ptr
, &__debug_frame
->gner1
, 4);
1747 ptr
= hex2mem(ptr
, &__debug_user_context
->f
.fner
[0], 4);
1748 ptr
= hex2mem(ptr
, &__debug_user_context
->f
.fner
[1], 4);
1750 gdbstub_strcpy(output_buffer
,"OK");
1753 /* mAA..AA,LLLL Read LLLL bytes at address AA..AA */
1755 ptr
= &input_buffer
[1];
1757 if (hexToInt(&ptr
, &addr
) &&
1759 hexToInt(&ptr
, &length
)
1761 if (mem2hex((char *)addr
, output_buffer
, length
, 1))
1763 gdbstub_strcpy (output_buffer
, "E03");
1766 gdbstub_strcpy(output_buffer
,"E01");
1770 /* MAA..AA,LLLL: Write LLLL bytes at address AA.AA return OK */
1772 ptr
= &input_buffer
[1];
1774 if (hexToInt(&ptr
, &addr
) &&
1776 hexToInt(&ptr
, &length
) &&
1779 if (hex2mem(ptr
, (char *)addr
, length
)) {
1780 gdbstub_strcpy(output_buffer
, "OK");
1783 gdbstub_strcpy(output_buffer
, "E03");
1787 gdbstub_strcpy(output_buffer
, "E02");
1792 /* pNN: Read value of reg N and return it */
1794 /* return no value, indicating that we don't support
1795 * this command and that gdb should use 'g' instead */
1798 /* PNN,=RRRRRRRR: Write value R to reg N return OK */
1800 ptr
= &input_buffer
[1];
1802 if (!hexToInt(&ptr
, &addr
) ||
1804 !hexToInt(&ptr
, &temp
)
1806 gdbstub_strcpy(output_buffer
, "E01");
1814 case GDB_REG_GR(1) ... GDB_REG_GR(63):
1815 __debug_user_context
->i
.gr
[addr
- GDB_REG_GR(0)] = temp
;
1817 case GDB_REG_FR(0) ... GDB_REG_FR(63):
1818 __debug_user_context
->f
.fr
[addr
- GDB_REG_FR(0)] = temp
;
1821 __debug_user_context
->i
.pc
= temp
;
1824 __debug_user_context
->i
.psr
= temp
;
1827 __debug_user_context
->i
.ccr
= temp
;
1830 __debug_user_context
->i
.cccr
= temp
;
1833 __debug_status
.brr
= temp
;
1836 __debug_user_context
->i
.lr
= temp
;
1839 __debug_user_context
->i
.lcr
= temp
;
1842 __debug_user_context
->f
.fsr
[0] = temp
;
1844 case GDB_REG_ACC(0) ... GDB_REG_ACC(7):
1845 __debug_user_context
->f
.acc
[addr
- GDB_REG_ACC(0)] = temp
;
1847 case GDB_REG_ACCG(0):
1848 *(uint32_t *) &__debug_user_context
->f
.accg
[0] = temp
;
1850 case GDB_REG_ACCG(4):
1851 *(uint32_t *) &__debug_user_context
->f
.accg
[4] = temp
;
1853 case GDB_REG_MSR(0) ... GDB_REG_MSR(1):
1854 __debug_user_context
->f
.msr
[addr
- GDB_REG_MSR(0)] = temp
;
1856 case GDB_REG_GNER(0) ... GDB_REG_GNER(1):
1857 __debug_user_context
->i
.gner
[addr
- GDB_REG_GNER(0)] = temp
;
1859 case GDB_REG_FNER(0) ... GDB_REG_FNER(1):
1860 __debug_user_context
->f
.fner
[addr
- GDB_REG_FNER(0)] = temp
;
1868 gdbstub_strcpy(output_buffer
, "OK");
1871 gdbstub_strcpy(output_buffer
, "E02");
1875 /* cAA..AA Continue at address AA..AA(optional) */
1877 /* try to read optional parameter, pc unchanged if no parm */
1878 ptr
= &input_buffer
[1];
1879 if (hexToInt(&ptr
, &addr
))
1880 __debug_frame
->pc
= addr
;
1883 /* kill the program */
1885 goto done
; /* just continue */
1889 gdbstub_strcpy(output_buffer
, "OK");
1892 /* reset the whole machine (FIXME: system dependent) */
1897 /* step to next instruction */
1899 __debug_regs
->dcr
|= DCR_SE
;
1900 __debug_status
.dcr
|= DCR_SE
;
1903 /* extended command */
1905 if (strcmp(input_buffer
, "vCont?") == 0) {
1906 output_buffer
[0] = 0;
1909 goto unsupported_cmd
;
1911 /* set baud rate (bBB) */
1913 ptr
= &input_buffer
[1];
1914 if (!hexToInt(&ptr
, &temp
)) {
1915 gdbstub_strcpy(output_buffer
,"B01");
1920 /* ack before changing speed */
1921 gdbstub_send_packet("OK");
1922 gdbstub_set_baud(temp
);
1926 /* set breakpoint */
1928 ptr
= &input_buffer
[1];
1930 if (!hexToInt(&ptr
,&temp
) || *ptr
++ != ',' ||
1931 !hexToInt(&ptr
,&addr
) || *ptr
++ != ',' ||
1932 !hexToInt(&ptr
,&length
)
1934 gdbstub_strcpy(output_buffer
,"E01");
1939 gdbstub_strcpy(output_buffer
,"E03");
1943 if (gdbstub_set_breakpoint(temp
, addr
, length
) < 0) {
1944 gdbstub_strcpy(output_buffer
,"E03");
1949 flush_cache
= 1; /* soft bkpt by modified memory */
1951 gdbstub_strcpy(output_buffer
,"OK");
1954 /* clear breakpoint */
1956 ptr
= &input_buffer
[1];
1958 if (!hexToInt(&ptr
,&temp
) || *ptr
++ != ',' ||
1959 !hexToInt(&ptr
,&addr
) || *ptr
++ != ',' ||
1960 !hexToInt(&ptr
,&length
)
1962 gdbstub_strcpy(output_buffer
,"E01");
1967 gdbstub_strcpy(output_buffer
,"E03");
1971 if (gdbstub_clear_breakpoint(temp
, addr
, length
) < 0) {
1972 gdbstub_strcpy(output_buffer
,"E03");
1977 flush_cache
= 1; /* soft bkpt by modified memory */
1979 gdbstub_strcpy(output_buffer
,"OK");
1982 /* Thread-setting packet */
1984 gdbstub_strcpy(output_buffer
, "OK");
1988 gdbstub_handle_query();
1993 gdbstub_proto("### GDB Unsupported Cmd '%s'\n",input_buffer
);
1994 gdbstub_strcpy(output_buffer
,"E01");
1998 /* reply to the request */
2000 gdbstub_send_packet(output_buffer
);
2004 restore_user_regs(&__debug_frame0
->uc
);
2006 //gdbstub_dump_debugregs();
2007 //gdbstub_printk("<-- gdbstub() %08x\n", __debug_frame->pc);
2009 /* need to flush the instruction cache before resuming, as we may have
2010 * deposited a breakpoint, and the icache probably has no way of
2011 * knowing that a data ref to some location may have changed something
2012 * that is in the instruction cache. NB: We flush both caches, just to
2016 /* note: flushing the icache will clobber EAR0 on the FR451 */
2018 gdbstub_purge_cache();
2022 } /* end gdbstub() */
2024 /*****************************************************************************/
2026 * initialise the GDB stub
2028 void __init
gdbstub_init(void)
2030 #ifdef CONFIG_GDBSTUB_IMMEDIATE
2035 gdbstub_printk("%s", gdbstub_banner
);
2039 /* try to talk to GDB (or anyone insane enough to want to type GDB protocol by hand) */
2040 gdbstub_proto("### GDB Tx ACK\n");
2041 gdbstub_tx_char('+'); /* 'hello world' */
2043 #ifdef CONFIG_GDBSTUB_IMMEDIATE
2044 gdbstub_printk("GDB Stub waiting for packet\n");
2047 * In case GDB is started before us, ack any packets
2048 * (presumably "$?#xx") sitting there.
2050 do { gdbstub_rx_char(&ch
, 0); } while (ch
!= '$');
2051 do { gdbstub_rx_char(&ch
, 0); } while (ch
!= '#');
2052 do { ret
= gdbstub_rx_char(&ch
, 0); } while (ret
!= 0); /* eat first csum byte */
2053 do { ret
= gdbstub_rx_char(&ch
, 0); } while (ret
!= 0); /* eat second csum byte */
2055 gdbstub_proto("### GDB Tx NAK\n");
2056 gdbstub_tx_char('-'); /* nak it */
2059 gdbstub_printk("GDB Stub set\n");
2064 ptr
= output_buffer
;
2066 ptr
= mem2hex(gdbstub_banner
, ptr
, sizeof(gdbstub_banner
) - 1, 0);
2067 gdbstub_send_packet(output_buffer
);
2069 #if defined(CONFIG_GDB_CONSOLE) && defined(CONFIG_GDBSTUB_IMMEDIATE)
2070 register_console(&gdbstub_console
);
2073 } /* end gdbstub_init() */
2075 /*****************************************************************************/
2077 * register the console at a more appropriate time
2079 #if defined (CONFIG_GDB_CONSOLE) && !defined(CONFIG_GDBSTUB_IMMEDIATE)
2080 static int __init
gdbstub_postinit(void)
2082 printk("registering console\n");
2083 register_console(&gdbstub_console
);
2085 } /* end gdbstub_postinit() */
2087 __initcall(gdbstub_postinit
);
2090 /*****************************************************************************/
2092 * send an exit message to GDB
2094 void gdbstub_exit(int status
)
2096 unsigned char checksum
;
2100 sprintf(output_buffer
,"W%02x",status
&0xff);
2102 gdbstub_tx_char('$');
2106 while ((ch
= output_buffer
[count
]) != 0) {
2107 gdbstub_tx_char(ch
);
2112 gdbstub_tx_char('#');
2113 gdbstub_tx_char(hex_asc_hi(checksum
));
2114 gdbstub_tx_char(hex_asc_lo(checksum
));
2116 /* make sure the output is flushed, or else RedBoot might clobber it */
2117 gdbstub_tx_char('-');
2120 } /* end gdbstub_exit() */
2122 /*****************************************************************************/
2124 * GDB wants to call malloc() and free() to allocate memory for calling kernel
2125 * functions directly from its command line
2127 static void *malloc(size_t size
) __maybe_unused
;
2128 static void *malloc(size_t size
)
2130 return kmalloc(size
, GFP_ATOMIC
);
2133 static void free(void *p
) __maybe_unused
;
2134 static void free(void *p
)
2139 static uint32_t ___get_HSR0(void) __maybe_unused
;
2140 static uint32_t ___get_HSR0(void)
2142 return __get_HSR(0);
2145 static uint32_t ___set_HSR0(uint32_t x
) __maybe_unused
;
2146 static uint32_t ___set_HSR0(uint32_t x
)
2149 return __get_HSR(0);