Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Definitions for remote debugging interface for ROM monitors. |
b6ba6518 KB |
2 | Copyright 1990, 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000 |
3 | Free Software Foundation, Inc. | |
c5aa993b JM |
4 | Contributed by Cygnus Support. Written by Rob Savoye for Cygnus. |
5 | ||
c906108c | 6 | This file is part of GDB. |
c5aa993b | 7 | |
c906108c SS |
8 | This program is free software; you can redistribute it and/or modify |
9 | it under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 2 of the License, or | |
11 | (at your option) any later version. | |
c5aa993b | 12 | |
c906108c SS |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
c5aa993b | 17 | |
c906108c SS |
18 | You should have received a copy of the GNU General Public License |
19 | along with this program; if not, write to the Free Software | |
c5aa993b JM |
20 | Foundation, Inc., 59 Temple Place - Suite 330, |
21 | Boston, MA 02111-1307, USA. | |
22 | */ | |
c906108c SS |
23 | |
24 | #include "serial.h" | |
25 | ||
26 | /* This structure describes the strings necessary to give small command | |
27 | sequences to the monitor, and parse the response. | |
28 | ||
29 | CMD is the actual command typed at the monitor. Usually this has | |
30 | embedded sequences ala printf, which are substituted with the | |
31 | arguments appropriate to that type of command. Ie: to examine a | |
32 | register, we substitute the register name for the first arg. To | |
33 | modify memory, we substitute the memory location and the new | |
34 | contents for the first and second args, etc... | |
35 | ||
36 | RESP_DELIM used to home in on the response string, and is used to | |
37 | disambiguate the answer within the pile of text returned by the | |
38 | monitor. This should be a unique string that immediately precedes | |
39 | the answer. Ie: if your monitor prints out `PC: 00000001= ' in | |
40 | response to asking for the PC, you should use `: ' as the | |
41 | RESP_DELIM. RESP_DELIM may be NULL if the res- ponse is going to | |
42 | be ignored, or has no particular leading text. | |
43 | ||
44 | TERM is the string that the monitor outputs to indicate that it is | |
45 | idle, and waiting for input. This is usually a prompt of some | |
46 | sort. In the previous example, it would be `= '. It is important | |
47 | that TERM really means that the monitor is idle, otherwise GDB may | |
48 | try to type at it when it isn't ready for input. This is a problem | |
49 | because many monitors cannot deal with type-ahead. TERM may be | |
50 | NULL if the normal prompt is output. | |
51 | ||
52 | TERM_CMD is used to quit out of the subcommand mode and get back to | |
53 | the main prompt. TERM_CMD may be NULL if it isn't necessary. It | |
54 | will also be ignored if TERM is NULL. */ | |
55 | ||
56 | struct memrw_cmd | |
c5aa993b JM |
57 | { |
58 | char *cmdb; /* Command to send for byte read/write */ | |
59 | char *cmdw; /* Command for word (16 bit) read/write */ | |
60 | char *cmdl; /* Command for long (32 bit) read/write */ | |
61 | char *cmdll; /* Command for long long (64 bit) read/write */ | |
62 | char *resp_delim; /* String just prior to the desired value */ | |
63 | char *term; /* Terminating string to search for */ | |
64 | char *term_cmd; /* String to get out of sub-mode (if necessary) */ | |
65 | }; | |
c906108c SS |
66 | |
67 | struct regrw_cmd | |
c5aa993b JM |
68 | { |
69 | char *cmd; /* Command to send for reg read/write */ | |
70 | char *resp_delim; /* String (actually a regexp if getmem) just | |
c906108c | 71 | prior to the desired value */ |
c5aa993b JM |
72 | char *term; /* Terminating string to search for */ |
73 | char *term_cmd; /* String to get out of sub-mode (if necessary) */ | |
74 | }; | |
c906108c SS |
75 | |
76 | struct monitor_ops | |
c5aa993b JM |
77 | { |
78 | int flags; /* See below */ | |
79 | char **init; /* List of init commands. NULL terminated. */ | |
80 | char *cont; /* continue command */ | |
81 | char *step; /* single step */ | |
82 | char *stop; /* Interrupt program string */ | |
83 | char *set_break; /* set a breakpoint. If NULL, monitor implementation | |
9e086581 | 84 | sets its own to_insert_breakpoint method. */ |
c5aa993b JM |
85 | char *clr_break; /* clear a breakpoint */ |
86 | char *clr_all_break; /* Clear all breakpoints */ | |
87 | char *fill; /* Memory fill cmd (addr len val) */ | |
88 | struct memrw_cmd setmem; /* set memory to a value */ | |
89 | struct memrw_cmd getmem; /* display memory */ | |
90 | struct regrw_cmd setreg; /* set a register */ | |
91 | struct regrw_cmd getreg; /* get a register */ | |
92 | /* Some commands can dump a bunch of registers | |
93 | at once. This comes as a set of REG=VAL | |
94 | pairs. This should be called for each pair | |
95 | of registers that we can parse to supply | |
96 | GDB with the value of a register. */ | |
97 | char *dump_registers; /* Command to dump all regs at once */ | |
98 | char *register_pattern; /* Pattern that picks out register from reg dump */ | |
507f3c78 | 99 | void (*supply_register) (char *name, int namelen, char *val, int vallen); |
dee8b1a1 KB |
100 | void (*load_routine) (serial_t desc, char *file, |
101 | int hashmark); /* Download routine */ | |
102 | int (*dumpregs) (void); /* routine to dump all registers */ | |
103 | int (*continue_hook) (void); /* Emit the continue command */ | |
507f3c78 KB |
104 | int (*wait_filter) (char *buf, /* Maybe contains registers */ |
105 | int bufmax, | |
106 | int *response_length, | |
107 | struct target_waitstatus * status); | |
c5aa993b JM |
108 | char *load; /* load command */ |
109 | char *loadresp; /* Response to load command */ | |
110 | char *prompt; /* monitor command prompt */ | |
111 | char *line_term; /* end-of-command delimitor */ | |
112 | char *cmd_end; /* optional command terminator */ | |
113 | struct target_ops *target; /* target operations */ | |
114 | int stopbits; /* number of stop bits */ | |
115 | char **regnames; /* array of register names in ascii */ | |
116 | int num_breakpoints; /* If set_break != NULL, number of supported | |
9e086581 | 117 | breakpoints */ |
c5aa993b JM |
118 | int magic; /* Check value */ |
119 | }; | |
c906108c SS |
120 | |
121 | /* The monitor ops magic number, used to detect if an ops structure doesn't | |
122 | have the right number of entries filled in. */ | |
123 | ||
124 | #define MONITOR_OPS_MAGIC 600925 | |
125 | ||
126 | /* Flag definitions. */ | |
127 | ||
128 | /* If set, then clear breakpoint command uses address, otherwise it | |
129 | uses an index returned by the monitor. */ | |
130 | ||
131 | #define MO_CLR_BREAK_USES_ADDR 0x1 | |
132 | ||
133 | /* If set, then memory fill command uses STARTADDR, ENDADDR+1, VALUE | |
134 | as args, else it uses STARTADDR, LENGTH, VALUE as args. */ | |
135 | ||
136 | #define MO_FILL_USES_ADDR 0x2 | |
137 | ||
138 | /* If set, then monitor doesn't automatically supply register dump | |
139 | when coming back after a continue. */ | |
140 | ||
141 | #define MO_NEED_REGDUMP_AFTER_CONT 0x4 | |
142 | ||
143 | /* getmem needs start addr and end addr */ | |
144 | ||
145 | #define MO_GETMEM_NEEDS_RANGE 0x8 | |
146 | ||
147 | /* getmem can only read one loc at a time */ | |
148 | ||
149 | #define MO_GETMEM_READ_SINGLE 0x10 | |
150 | ||
151 | /* handle \r\n combinations */ | |
152 | ||
153 | #define MO_HANDLE_NL 0x20 | |
154 | ||
155 | /* don't expect echos in monitor_open */ | |
156 | ||
157 | #define MO_NO_ECHO_ON_OPEN 0x40 | |
158 | ||
159 | /* If set, send break to stop monitor */ | |
160 | ||
161 | #define MO_SEND_BREAK_ON_STOP 0x80 | |
162 | ||
163 | /* If set, target sends an ACK after each S-record */ | |
164 | ||
165 | #define MO_SREC_ACK 0x100 | |
166 | ||
167 | /* Allow 0x prefix on addresses retured from monitor */ | |
168 | ||
169 | #define MO_HEX_PREFIX 0x200 | |
170 | ||
171 | /* Some monitors require a different command when starting a program */ | |
172 | ||
173 | #define MO_RUN_FIRST_TIME 0x400 | |
174 | ||
175 | /* Don't expect echos when getting memory */ | |
176 | ||
177 | #define MO_NO_ECHO_ON_SETMEM 0x800 | |
178 | ||
179 | /* If set, then register store command expects value BEFORE regname */ | |
180 | ||
181 | #define MO_REGISTER_VALUE_FIRST 0x1000 | |
182 | ||
183 | /* If set, then the monitor displays registers as pairs. */ | |
184 | ||
185 | #define MO_32_REGS_PAIRED 0x2000 | |
186 | ||
187 | /* If set, then register setting happens interactively. */ | |
188 | ||
189 | #define MO_SETREG_INTERACTIVE 0x4000 | |
190 | ||
191 | /* If set, then memory setting happens interactively. */ | |
192 | ||
193 | #define MO_SETMEM_INTERACTIVE 0x8000 | |
194 | ||
195 | /* If set, then memory dumps are always on 16-byte boundaries, even | |
196 | when less is desired. */ | |
197 | ||
198 | #define MO_GETMEM_16_BOUNDARY 0x10000 | |
199 | ||
200 | /* If set, then the monitor numbers its breakpoints starting from 1. */ | |
201 | ||
202 | #define MO_CLR_BREAK_1_BASED 0x20000 | |
203 | ||
204 | /* If set, then the monitor acks srecords with a plus sign. */ | |
205 | ||
206 | #define MO_SREC_ACK_PLUS 0x40000 | |
207 | ||
208 | /* If set, then the monitor "acks" srecords with rotating lines. */ | |
209 | ||
210 | #define MO_SREC_ACK_ROTATE 0x80000 | |
211 | ||
212 | /* If set, then remove useless address bits from memory addresses. */ | |
213 | ||
214 | #define MO_ADDR_BITS_REMOVE 0x100000 | |
215 | ||
216 | /* If set, then display target program output if prefixed by ^O. */ | |
217 | ||
218 | #define MO_PRINT_PROGRAM_OUTPUT 0x200000 | |
219 | ||
220 | /* Some dump bytes commands align the first data with the preceeding | |
c5aa993b JM |
221 | 16 byte boundary. Some print blanks and start at the exactly the |
222 | requested boundary. */ | |
c906108c SS |
223 | |
224 | #define MO_EXACT_DUMPADDR 0x400000 | |
225 | ||
226 | /* Rather entering and exiting the write memory dialog for each word byte, | |
227 | we can save time by transferring the whole block without exiting | |
228 | the memory editing mode. You only need to worry about this | |
229 | if you are doing memory downloading. | |
230 | This engages a new write function registered with dcache. | |
c5aa993b | 231 | */ |
c906108c SS |
232 | #define MO_HAS_BLOCKWRITES 0x800000 |
233 | ||
234 | #define SREC_SIZE 160 | |
235 | ||
a14ed312 KB |
236 | extern void monitor_open (char *args, struct monitor_ops *ops, int from_tty); |
237 | extern void monitor_close (int quitting); | |
238 | extern char *monitor_supply_register (int regno, char *valstr); | |
239 | extern int monitor_expect (char *prompt, char *buf, int buflen); | |
240 | extern int monitor_expect_prompt (char *buf, int buflen); | |
241 | extern void monitor_printf (char *, ...) ATTR_FORMAT (printf, 1, 2); | |
242 | extern void | |
243 | monitor_printf_noecho (char *, ...) | |
c5aa993b | 244 | ATTR_FORMAT (printf, 1, 2); |
a14ed312 KB |
245 | extern void monitor_write (char *buf, int buflen); |
246 | extern int monitor_readchar (void); | |
247 | extern char *monitor_get_dev_name (void); | |
248 | extern void init_monitor_ops (struct target_ops *); | |
249 | extern int monitor_dump_reg_block (char *dump_cmd); |