]> cloudbase.mooo.com Git - z180-stamp.git/blame - avr/command_tbl.c
new debug command: xx test. get freq command from single step branch.
[z180-stamp.git] / avr / command_tbl.c
CommitLineData
35edb766 1/*
04f84937 2 * (C) Copyright 2014-2016, 2018 Leo C. <erbl259-lmu@yahoo.de>
35edb766 3 *
b51d2360 4 * SPDX-License-Identifier: GPL-2.0
35edb766 5 */
d684c216
L
6
7#include "common.h"
d684c216 8#include "command.h"
72f58822 9#include "cmd_mem.h"
7eecbdac 10#include "cmd_boot.h"
226d3221 11#include "cmd_cpu.h"
7eecbdac
L
12#include "cmd_misc.h"
13#include "cmd_date.h"
14#include "cmd_run.h"
15#include "cmd_loadcpm3.h"
16#include "cmd_loadihex.h"
17#include "cmd_gpio.h"
18#include "cmd_sd.h"
19#include "cmd_fat.h"
20#include "cmd_attach.h"
21#include "env.h"
22#include "debug.h"
d684c216 23
d684c216
L
24
25cmd_tbl_t cmd_tbl[] = {
26
51dd0948
L
27CMD_TBL_ITEM_TOP(
28 xx, CONFIG_SYS_MAXARGS, 0, do_cpu,
29 "experimental commands",
30 "<subcommand> args ...\n"
31 "xx help\n",
32 cmd_tbl_cpu
33),
34
35
61b0cfe9
L
36CMD_TBL_ITEM(
37 date, 2, 1, do_date,
a036b05f 38 "get/set date & time",
85046f8c 39 "[MMDDhhmm[[CC]YY][.ss]]\n"
61b0cfe9
L
40 " - without arguments: print date & time\n"
41 " - with numeric argument: set the system date & time\n"
61b0cfe9
L
42),
43
323398b1 44#ifdef DEBUG
4565be9a 45
323398b1 46CMD_TBL_ITEM(
7a1ed620 47 !mdr, 3, CTBL_DBG|CTBL_RPT, do_dump_mem,
f338df2a
L
48 "RAM dump",
49 "address [count]"
50),
51CMD_TBL_ITEM(
7a1ed620 52 !mde, 3, CTBL_DBG|CTBL_RPT, do_dump_mem,
323398b1
L
53 "EEPROM dump",
54 "address [count]"
55),
c748023e 56CMD_TBL_ITEM(
7a1ed620 57 !mdf, 3, CTBL_DBG|CTBL_RPT, do_dump_mem,
c748023e
L
58 "FLASH dump",
59 "address [count]"
60),
323398b1 61CMD_TBL_ITEM(
7a1ed620 62 !cpe, 4, CTBL_DBG, do_eep_cp,
323398b1
L
63 "EEPROM copy",
64 "source target count"
65),
ad9bc17c 66CMD_TBL_ITEM(
7a1ed620 67 !mm, 2, CTBL_DBG|CTBL_RPT, do_mem_mm_avr,
ad9bc17c
L
68 "avr memory modify (auto-incrementing address)",
69 "address"
70),
71CMD_TBL_ITEM(
7a1ed620 72 !nm, 2, CTBL_DBG|CTBL_RPT, do_mem_nm_avr,
ad9bc17c
L
73 "avr memory modify (constant address)",
74 "address"
75),
fb9b17a9 76CMD_TBL_ITEM(
7a1ed620 77 !prfree, 1, CTBL_DBG|CTBL_RPT, do_pr_free_avr,
fb9b17a9 78 "print avr heap free list",
b9aef06e
L
79 ""
80),
81CMD_TBL_ITEM(
7a1ed620 82 !prheap, 1, CTBL_DBG, do_pr_heap_avr,
b9aef06e
L
83 "dump avr heap",
84 ""
fb9b17a9 85),
323398b1 86#endif
1e5609bf
L
87CMD_TBL_ITEM(
88 msize, 1, 1, do_mem_size,
89 "Detect memory size",
90 ""
91),
f338df2a
L
92CMD_TBL_ITEM(
93 mstep, 2, 1, do_busreq_pulse,
94 "execute one M cycle",
95 "[count]\n"
96 " - repeat count times"
97),
d684c216
L
98CMD_TBL_ITEM(
99 echo, CONFIG_SYS_MAXARGS, 1, do_echo,
bbd45c46
L
100 "display a line of text",
101 "[-n] [argument ...]\n"
32154e5a
L
102 "- echo the argument(s) to console.\n"
103 " -n do not output the trailing newline"
d684c216 104),
8a7decea
L
105CMD_TBL_ITEM(
106 sleep , 2, 1, do_sleep,
107 "delay execution for some time",
108 "N[m][s]\n"
109 " - delay execution for decimal N (milli) seconds"
110),
d684c216
L
111CMD_TBL_ITEM_COMPLETE(
112 run, CONFIG_SYS_MAXARGS, 1, do_run,
113 "run commands in an environment variable",
114 "var [...]\n"
115 " - run the commands in the environment variable(s) 'var'",
116 var_complete
117),
85d34e10
L
118CMD_TBL_ITEM(
119 boot, 1, 1, do_bootd,
120 "boot default, i.e., run 'bootcmd'",
121 ""
122),
04b3ea0e
L
123CMD_TBL_ITEM_COMPLETE(
124 source, CONFIG_SYS_MAXARGS, 1, do_source,
125 "run commands from a file",
126 "filename\n"
127 " - run the commands in the script file 'filename'",
128 var_complete
129),
dab74a42
L
130
131CMD_TBL_ITEM_TOP(
132 env, CONFIG_SYS_MAXARGS, 0, do_env,
133 "environment handling commands",
134 "",
135 cmd_tbl_env
7e24905c 136),
72f58822 137
534e1dfc 138CMD_TBL_ITEM(
323398b1 139 loadf, 1, 0, do_loadf,
534e1dfc
L
140 "load srec_cat prepared image from controller flash",
141 ""
142),
a2907f2e
L
143CMD_TBL_ITEM(
144 bootcf, CONFIG_SYS_MAXARGS, 0, do_bootcf,
145 "boot from cf card",
146 "[options]\n"
147 " Load a number of sectors from the first CP/M partition and jump to\n"
148 " the load address.\n"
149 " -a ADDRESS\n"
150 " Load and start address (default 100 hex)\n"
151 " -s NUM\n"
152 " First sector of partition to load (0..255, default 0)\n"
153 " -c NUM\n"
154 " Number of sectors to load (1..127, default 7)\n"
155 " -i NUM\n"
156 " Partition type to look for (default 52 hex)\n"
157 " -n\n"
158 " Load only, do not execute\n"
159 " -t NUM\n"
160 " Timeout for IDE commands (1..65535, default 10000)\n"
161 " -v verbose\n"
162 " TODO: be verbose"
163),
c0abd68b
L
164CMD_TBL_ITEM(
165 loadcpm3, 3, 0, do_loadcpm3,
166 "load CPM3.SYS file",
98aac4d0 167 "[filename [common-base [banked-base]]] \n"
fa84c3ba
L
168 " - Load CP/M 3 system file from FAT filesystem. This command makes\n"
169 " CPMLDR superfluous. Uses the following environment variables if set:\n"
b51d2360
L
170 " '"ENV_CPM3_SYSFILE"' File to load. Default is '"CONFIG_CPM3_SYSFILE"'.\n"
171 " '"ENV_CPM3_BANKED_BASE"' Default is '"CONFIG_CPM3_BANKED_BASE_STR"'.\n"
172 " Sets the following environment variables after loading:\n"
173 " '"ENV_CPM3_COMMON_BASE"'\n"
174 " '"ENV_STARTADDRESS"'"
c0abd68b 175),
179bc609
L
176CMD_TBL_ITEM(
177 loadi, 2, 0, do_loadihex,
bf587043
L
178 "load intel hex file over serial line",
179 "[[-]offset]\n"
180 " - load Intel-Hex-Record file over serial line with offset 'offset'"
179bc609 181),
393b1897
L
182
183#if defined(CONFIG_CMD_LOADB)
184CMD_TBL_ITEM(
185 loadb, 1, 0, do_load_serial_bin,
186 "load binary file over serial line (kermit mode)",
187 " - load binary file over serial line"
188),
189
190CMD_TBL_ITEM(
191 loadx, 1, 0, do_load_serial_bin,
192 "load binary file over serial line (xmodem mode)",
193 " - load binary file over serial line"
194),
195
196CMD_TBL_ITEM(
197 loady, 1, 0, do_load_serial_bin,
198 "load binary file over serial line (ymodem mode)",
199 " - load binary file over serial line"
200),
201#endif /* CONFIG_CMD_LOADB */
202
534e1dfc 203CMD_TBL_ITEM(
323398b1 204 go, 2, 0, do_go,
534e1dfc
L
205 "start application at address 'addr'",
206 "addr\n"
207 " - start application at address 'addr'"
208// "\n"
209// " passing 'arg' as arguments"
210),
211CMD_TBL_ITEM(
323398b1 212 reset, 1, 0, do_reset,
534e1dfc
L
213 "Keep CPU in RESET state",
214 ""
215),
216CMD_TBL_ITEM(
89adce76 217 restart, 1, 1, do_restart,
534e1dfc
L
218 "Perform RESET of the CPU",
219 ""
220),
89adce76 221CMD_TBL_ITEM(
2fe44122 222 connect, 1, 0, do_console,
89adce76 223 "Connect to CPU console i/o",
98aac4d0
L
224 "\n"
225 " - type the escape character followed by Q to close the connection, \n"
226 " or followed by ? to see other options. The default escape character \n"
227 " is Ctrl-^ (0x1E). It can be changed by setting env var '"ENV_ESC_CHAR"'."
228
89adce76 229),
41d36f28 230
41d36f28 231CMD_TBL_ITEM(
05994bd9 232 pin, CONFIG_SYS_MAXARGS, 1, do_gpio,
cd5ee544
L
233 "Set or query pin state",
234 "[-s] [<pins>]\n"
41d36f28
L
235 " - print cofiguration and state or frequency of pins\n"
236 " print all pins, if argument is omitted\n"
cd5ee544 237 "pin <pins> h[igh]|l[ow]\n"
41d36f28 238 " - config pins as output and set to level high or low\n"
cd5ee544 239 "pin <pins> ts|i[n]|p[ullup]\n"
41d36f28 240 " - config pins as input/tristate or input with pullup\n"
cd5ee544 241 "pin <pins> value[K|M][Hz]\n"
41d36f28
L
242 " - output a clock on pins\n"
243 " value is system clock divider or frequency, if 'Hz' is appended\n"
244 " divider is rounded down to next possible value (depends on pin)\n"
245 "\n"
cd5ee544 246 "<pins> is a comma separated list of numbers or ranges, i.e. \"0,9,3-6\"\n"
6035a17b 247),
534e1dfc 248
72f58822 249CMD_TBL_ITEM(
7a1ed620 250 md, 3, CTBL_RPT, do_mem_md,
72f58822
L
251 "memory display",
252 "address [# of objects]"
253),
254CMD_TBL_ITEM(
7a1ed620 255 mm, 2, CTBL_RPT, do_mem_mm,
72f58822
L
256 "memory modify (auto-incrementing address)",
257 "address"
258),
259CMD_TBL_ITEM(
7a1ed620 260 nm, 2, CTBL_RPT, do_mem_nm,
72f58822
L
261 "memory modify (constant address)",
262 "address"
263),
264CMD_TBL_ITEM(
7a1ed620 265 mw, CONFIG_SYS_MAXARGS, CTBL_RPT, do_mem_mw,
72f58822 266 "memory write (fill)",
32154e5a
L
267 "[-bwl] address value [count]\n"
268 " -b write value as byte (8 bit, default)\n"
269 " -w write value as word (16 bit)\n"
fcd2239e 270 " -l write value as long (32 bit)"
72f58822
L
271),
272CMD_TBL_ITEM(
04f84937 273 mcp, 4, CTBL_RPT, do_mem_cp,
72f58822
L
274 "memory copy",
275 "source target count"
276),
277CMD_TBL_ITEM(
04f84937 278 mcmp, 4, CTBL_RPT, do_mem_cmp,
72f58822
L
279 "memory compare",
280 "addr1 addr2 count"
281),
282CMD_TBL_ITEM(
c79c80b4 283 base, 2, 0, do_mem_base,
72f58822
L
284 "print or set address offset",
285 "\n"
286 " - print address offset for memory commands\n"
287 "base offset\n"
288 " - set address offset for memory commands to 'offset'"
289),
290CMD_TBL_ITEM(
7a1ed620 291 mloop, 3, CTBL_RPT, do_mem_loop,
72f58822
L
292 "infinite loop on address range",
293 "address number_of_bytes"
294),
72f58822 295CMD_TBL_ITEM(
7a1ed620 296 mloopw, 4, CTBL_RPT, do_mem_loopw,
72f58822
L
297 "infinite write loop on address range",
298 "address number_of_bytes data_to_write"
299),
72f58822
L
300
301#ifdef CONFIG_CMD_MEMTEST
302CMD_TBL_ITEM(
7a1ed620 303 mtest, 4, CTBL_RPT, do_mem_mtest,
72f58822 304 "simple RAM read/write test",
5480dc65 305 "[start [end [iterations]]]"
72f58822
L
306),
307#endif /* CONFIG_CMD_MEMTEST */
308
309#ifdef CONFIG_MX_CYCLIC
310CMD_TBL_ITEM(
7a1ed620 311 mdc, 4, CTBL_RPT, do_mem_mdc,
72f58822
L
312 "memory display cyclic",
313 "address count delay(ms)"
314),
315CMD_TBL_ITEM(
7a1ed620 316 mwc, CONFIG_SYS_MAXARGS, CTBL_RPT, do_mem_mdc,
72f58822 317 "memory write cyclic",
fcd2239e
L
318 "[-bwl] address value delay(ms)\n"
319 " -b write value as byte (8 bit, default)\n"
320 " -w write value as word (16 bit)\n"
321 " -l write value as long (32 bit)"
72f58822
L
322),
323#endif /* CONFIG_MX_CYCLIC */
324
8da60ec5 325CMD_TBL_ITEM_TOP(
04f84937 326 sd, CONFIG_SYS_MAXARGS, 0, do_sd,
7f552300
L
327 "SD/MMC card handling commands",
328 "<subcommand> args ...\n"
329 "sd help\n"
8da60ec5
L
330 " - print help on subcommands",
331 cmd_tbl_sd
7f552300 332),
8da60ec5 333CMD_TBL_ITEM_TOP(
dab74a42 334 fat, CONFIG_SYS_MAXARGS, 0, do_fat,
8a2b0da0
L
335 "fat filesystem commands",
336 "<subcommand> args ...\n"
337 "fat help\n"
8da60ec5
L
338 " - print help on subcommands",
339 cmd_tbl_fat
2f53dd65 340),
8a2b0da0 341
cb4fb1ed 342CMD_TBL_ITEM(
7a1ed620 343 attach, CONFIG_SYS_MAXARGS, CTBL_RPT, do_attach,
cb4fb1ed 344 "attach filesystem image file to CP/M drive",
96798b2c 345 "[-rw] [-o options] dsk<n> diskfile\n"
5e8ac5e0 346 " Attach diskfile to dsk<n>, where n in 0.."CONFIG_CPM_MAX_DRNR_STR"\n"
96798b2c
L
347 " -r File is read only (write protected)\n"
348 " -w File is read/write (default)\n"
349 " -o options\n"
350 " Options is a comma-separated list of\n"
351 " ro, rw, debug, nodebug\n"
352 "\n"
353 "attach [-rw] -o reattach[,other options] dsk<n>\n"
354 " Change options for dsk<n>.\n"
355 " Options as above.\n"
356 "\n"
357 "attach -d -a|dsk<n>\n"
358 "detach -a|dsk<n>\n"
359 " Detach diskfile from dsk<n>.\n"
360 " -a Detach all.\n"
361 "\n"
cb4fb1ed 362 "attach\n"
8da60ec5 363 " Without arguments, list current assignments"
cb4fb1ed
L
364),
365CMD_TBL_ITEM(
7a1ed620 366 detach, 2, 0, do_attach,
cb4fb1ed
L
367 "detach file from CP/M drive",
368 "dsk<n>]\n"
a2907f2e 369 " - alias for 'attach -d dsk<n>'"
cb4fb1ed 370),
2f53dd65 371
d684c216 372CMD_TBL_ITEM(
7a1ed620 373 help, CONFIG_SYS_MAXARGS, 0, do_help,
d684c216 374 "print command description/usage",
c646b5a9
L
375 "[-a]\n"
376 " print brief description of all commands\n"
377 " -a print description of subcommands too\n"
378 "help -fk keyword ...\n"
379 " print brief description of commands matching keyword\n"
380 " -f search keyword in command name\n"
381 " -k search keyword in command name and description\n"
382 "help [-a] command ...\n"
383 " print detailed usage of 'command'"
d684c216
L
384),
385
72f58822 386/* This does not use the CMD_TBL_ITEM macro as ? can't be used in symbol names */
d684c216
L
387 {FSTR("?"), CONFIG_SYS_MAXARGS, 1, do_help,
388 FSTR("alias for 'help'"),
389#ifdef CONFIG_SYS_LONGHELP
390 FSTR(""),
391#endif /* CONFIG_SYS_LONGHELP */
8da60ec5 392 NULL,
d684c216 393#ifdef CONFIG_AUTO_COMPLETE
8da60ec5 394 NULL,
d684c216
L
395#endif
396},
397/* Mark end of table */
5caa8c2b 398CMD_TBL_END(cmd_tbl)
d684c216 399};