]> cloudbase.mooo.com Git - z180-stamp.git/blame_incremental - avr/command_tbl.c
ENV_HOME macro. 'fat help' command table entry
[z180-stamp.git] / avr / command_tbl.c
... / ...
CommitLineData
1/*
2 * (C) Copyright 2014-2016 Leo C. <erbl259-lmu@yahoo.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0
5 */
6
7#include "common.h"
8#include "command.h"
9#include "cmd_mem.h"
10
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 []);
13extern command_ret_t do_sleep(cmd_tbl_t *, int, int, char * const []);
14extern command_ret_t do_env_print(cmd_tbl_t *, int, int, char * const []);
15extern command_ret_t do_env_default(cmd_tbl_t *, int, int, char * const []);
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 []);
19extern command_ret_t do_bootcf(cmd_tbl_t *, int, int, char * const []);
20extern command_ret_t do_loadcpm3(cmd_tbl_t *, int, int, char * const []);
21extern command_ret_t do_loadihex(cmd_tbl_t *, int, int, char * const []);
22#if defined(CONFIG_CMD_LOADB)
23extern command_ret_t do_load_serial_bin(cmd_tbl_t *, int, int, char * const []);
24#endif
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 []);
27extern command_ret_t do_console(cmd_tbl_t *, int, int, char * const []);
28extern command_ret_t do_dump_mem(cmd_tbl_t *, int, int, char * const []);
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 []);
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 []);
33extern command_ret_t do_date(cmd_tbl_t *, int, int, char * const []);
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 []);
36extern command_ret_t do_fat(cmd_tbl_t *, int, int, char * const []);
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 []);
40
41#ifdef CONFIG_SYS_LONGHELP
42const FLASH char sd_help_text[] =
43 "bla \t- do bla\n"
44 ;
45#endif /* CONFIG_SYS_LONGHELP */
46
47
48cmd_tbl_t cmd_tbl[] = {
49
50CMD_TBL_ITEM(
51 date, 2, 1, do_date,
52 "get/set date & time",
53 "[MMDDhhmm[[CC]YY][.ss]]\n"
54 " - without arguments: print date & time\n"
55 " - with numeric argument: set the system date & time\n"
56),
57
58#ifdef DEBUG
59
60CMD_TBL_ITEM(
61 !mdr, 3, 1, do_dump_mem,
62 "RAM dump",
63 "address [count]"
64),
65CMD_TBL_ITEM(
66 !mde, 3, 1, do_dump_mem,
67 "EEPROM dump",
68 "address [count]"
69),
70CMD_TBL_ITEM(
71 !mdf, 3, 1, do_dump_mem,
72 "FLASH dump",
73 "address [count]"
74),
75CMD_TBL_ITEM(
76 !cpe, 4, 0, do_eep_cp,
77 "EEPROM copy",
78 "source target count"
79),
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),
90#endif
91CMD_TBL_ITEM(
92 mstep, 2, 1, do_busreq_pulse,
93 "execute one M cycle",
94 "[count]\n"
95 " - repeat count times"
96),
97CMD_TBL_ITEM(
98 echo, CONFIG_SYS_MAXARGS, 1, do_echo,
99 "display a line of text",
100 "[-n] [argument ...]\n"
101 "- echo the argument(s) to console.\n"
102 " -n do not output the trailing newline"
103),
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),
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),
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),
124CMD_TBL_ITEM_COMPLETE(
125 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
126 "print environment variables",
127 "[-s] [name ...]\n"
128 " Print value of environment variable(s) 'name'\n"
129 " If no names are given, print values of all environment variables\n"
130 " -s Print in setenv form",
131 var_complete
132),
133CMD_TBL_ITEM_COMPLETE(
134 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
135 "set environment variables",
136 "name value ...\n"
137 " - set environment variable 'name' to 'value ...'\n"
138 "setenv name\n"
139 " - delete environment variable 'name'",
140 var_complete
141),
142CMD_TBL_ITEM(
143 saveenv, 1, 0, do_env_save,
144 "save environment variables to persistent storage",
145 ""
146),
147CMD_TBL_ITEM(
148 defaultenv, 1, 0, do_env_default,
149 "set all environment variables to their default values",
150 ""
151),
152
153CMD_TBL_ITEM(
154 loadf, 1, 0, do_loadf,
155 "load srec_cat prepared image from controller flash",
156 ""
157),
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),
179CMD_TBL_ITEM(
180 loadcpm3, 3, 0, do_loadcpm3,
181 "load CPM3.SYS file",
182 "[filename [common-base [banked-base]]] \n"
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"
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"'"
190),
191CMD_TBL_ITEM(
192 loadi, 2, 0, do_loadihex,
193 "load intel hex file over serial line",
194 "[[-]offset]\n"
195 " - load Intel-Hex-Record file over serial line with offset 'offset'"
196),
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
218CMD_TBL_ITEM(
219 go, 2, 0, do_go,
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(
227 reset, 1, 0, do_reset,
228 "Keep CPU in RESET state",
229 ""
230),
231CMD_TBL_ITEM(
232 restart, 1, 1, do_restart,
233 "Perform RESET of the CPU",
234 ""
235),
236CMD_TBL_ITEM(
237 connect, 1, 0, do_console,
238 "Connect to CPU console i/o",
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
244),
245
246CMD_TBL_ITEM(
247 pin, CONFIG_SYS_MAXARGS, 1, do_gpio,
248 "Set or query pin state",
249 "[-s] [<pins>]\n"
250 " - print cofiguration and state or frequency of pins\n"
251 " print all pins, if argument is omitted\n"
252 "pin <pins> h[igh]|l[ow]\n"
253 " - config pins as output and set to level high or low\n"
254 "pin <pins> ts|i[n]|p[ullup]\n"
255 " - config pins as input/tristate or input with pullup\n"
256 "pin <pins> value[K|M][Hz]\n"
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"
261 "<pins> is a comma separated list of numbers or ranges, i.e. \"0,9,3-6\"\n"
262),
263
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(
280 mw, CONFIG_SYS_MAXARGS, 1, do_mem_mw,
281 "memory write (fill)",
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"
285 " -l write value as long (32 bit)"
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(
298 base, 2, 0, do_mem_base,
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(
306 mloop, 3, 1, do_mem_loop,
307 "infinite loop on address range",
308 "address number_of_bytes"
309),
310CMD_TBL_ITEM(
311 mloopw, 4, 1, do_mem_loopw,
312 "infinite write loop on address range",
313 "address number_of_bytes data_to_write"
314),
315
316#ifdef CONFIG_CMD_MEMTEST
317CMD_TBL_ITEM(
318 mtest, 4, 1, do_mem_mtest,
319 "simple RAM read/write test",
320 "[start [end [iterations]]]"
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(
331 mwc, CONFIG_SYS_MAXARGS, 1, do_mem_mdc,
332 "memory write cyclic",
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)"
337),
338#endif /* CONFIG_MX_CYCLIC */
339
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),
347CMD_TBL_ITEM(
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"
353),
354
355CMD_TBL_ITEM(
356 attach, CONFIG_SYS_MAXARGS, 1, do_attach,
357 "attach filesystem image file to CP/M drive",
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"
375 "attach\n"
376 " Without arguments, list current assignments\n"
377),
378CMD_TBL_ITEM(
379 detach, 2, 1, do_attach,
380 "detach file from CP/M drive",
381 "dsk<n>]\n"
382 " - alias for 'attach -d dsk<n>'"
383),
384
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
394/* This does not use the CMD_TBL_ITEM macro as ? can't be used in symbol names */
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};