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