]> cloudbase.mooo.com Git - z180-stamp.git/blame - avr/command_tbl.c
Get common_base from cpm3.sys file. Update default environment (BOOTCMD)
[z180-stamp.git] / avr / command_tbl.c
CommitLineData
35edb766
L
1/*
2 * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
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 []);
c0abd68b 19extern command_ret_t do_loadcpm3(cmd_tbl_t *, int, int, char * const []);
179bc609 20extern command_ret_t do_loadihex(cmd_tbl_t *, int, int, char * const []);
393b1897
L
21#if defined(CONFIG_CMD_LOADB)
22extern command_ret_t do_load_serial_bin(cmd_tbl_t *, int, int, char * const []);
23#endif
d0581f88
L
24extern command_ret_t do_go(cmd_tbl_t *, int, int, char * const []);
25extern command_ret_t do_restart(cmd_tbl_t *, int, int, char * const []);
89adce76 26extern command_ret_t do_console(cmd_tbl_t *, int, int, char * const []);
d0581f88 27extern command_ret_t do_dump_mem(cmd_tbl_t *, int, int, char * const []);
ad9bc17c
L
28extern command_ret_t do_mem_mm_avr(cmd_tbl_t *, int, int, char * const []);
29extern command_ret_t do_mem_nm_avr(cmd_tbl_t *, int, int, char * const []);
d0581f88
L
30extern command_ret_t do_eep_cp(cmd_tbl_t *, int, int, char * const []);
31extern command_ret_t do_busreq_pulse(cmd_tbl_t *, int, int, char * const []);
61b0cfe9 32extern command_ret_t do_date(cmd_tbl_t *, int, int, char * const []);
05994bd9
L
33extern command_ret_t do_gpio(cmd_tbl_t *, int, int, char * const []);
34extern command_ret_t do_sd(cmd_tbl_t *, int, int, char * const []);
2f53dd65
L
35extern command_ret_t do_fat_stat(cmd_tbl_t *, int, int, char * const []);
36extern command_ret_t do_fat_ls(cmd_tbl_t *, int, int, char * const []);
4565be9a
L
37//extern command_ret_t do_fat_read(cmd_tbl_t *, int, int, char * const []);
38//extern command_ret_t do_fat_write(cmd_tbl_t *, int, int, char * const []);
39extern command_ret_t do_fat_rw(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"
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),
117CMD_TBL_ITEM_COMPLETE(
118 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
119 "print environment variables",
72f58822 120 "\n"
534e1dfc 121 " - print values of all environment variables\n"
d684c216
L
122 "printenv name ...\n"
123 " - print value of environment variable 'name'",
124 var_complete
125),
126CMD_TBL_ITEM_COMPLETE(
127 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
128 "set environment variables",
72f58822
L
129 "name value ...\n"
130 " - set environment variable 'name' to 'value ...'\n"
131 "setenv name\n"
132 " - delete environment variable 'name'",
d684c216
L
133 var_complete
134),
323398b1
L
135CMD_TBL_ITEM(
136 saveenv, 1, 0, do_env_save,
137 "save environment variables to persistent storage",
138 ""
139),
7e24905c
L
140CMD_TBL_ITEM(
141 defaultenv, 1, 0, do_env_default,
142 "set all environment variables to their default values",
143 ""
144),
72f58822 145
534e1dfc 146CMD_TBL_ITEM(
323398b1 147 loadf, 1, 0, do_loadf,
534e1dfc
L
148 "load srec_cat prepared image from controller flash",
149 ""
150),
c0abd68b
L
151CMD_TBL_ITEM(
152 loadcpm3, 3, 0, do_loadcpm3,
153 "load CPM3.SYS file",
98aac4d0 154 "[filename [common-base [banked-base]]] \n"
fa84c3ba
L
155 " - Load CP/M 3 system file from FAT filesystem. This command makes\n"
156 " CPMLDR superfluous. Uses the following environment variables if set:\n"
b51d2360
L
157 " '"ENV_CPM3_SYSFILE"' File to load. Default is '"CONFIG_CPM3_SYSFILE"'.\n"
158 " '"ENV_CPM3_BANKED_BASE"' Default is '"CONFIG_CPM3_BANKED_BASE_STR"'.\n"
159 " Sets the following environment variables after loading:\n"
160 " '"ENV_CPM3_COMMON_BASE"'\n"
161 " '"ENV_STARTADDRESS"'"
c0abd68b 162),
179bc609
L
163CMD_TBL_ITEM(
164 loadi, 2, 0, do_loadihex,
bf587043
L
165 "load intel hex file over serial line",
166 "[[-]offset]\n"
167 " - load Intel-Hex-Record file over serial line with offset 'offset'"
179bc609 168),
393b1897
L
169
170#if defined(CONFIG_CMD_LOADB)
171CMD_TBL_ITEM(
172 loadb, 1, 0, do_load_serial_bin,
173 "load binary file over serial line (kermit mode)",
174 " - load binary file over serial line"
175),
176
177CMD_TBL_ITEM(
178 loadx, 1, 0, do_load_serial_bin,
179 "load binary file over serial line (xmodem mode)",
180 " - load binary file over serial line"
181),
182
183CMD_TBL_ITEM(
184 loady, 1, 0, do_load_serial_bin,
185 "load binary file over serial line (ymodem mode)",
186 " - load binary file over serial line"
187),
188#endif /* CONFIG_CMD_LOADB */
189
534e1dfc 190CMD_TBL_ITEM(
323398b1 191 go, 2, 0, do_go,
534e1dfc
L
192 "start application at address 'addr'",
193 "addr\n"
194 " - start application at address 'addr'"
195// "\n"
196// " passing 'arg' as arguments"
197),
198CMD_TBL_ITEM(
323398b1 199 reset, 1, 0, do_reset,
534e1dfc
L
200 "Keep CPU in RESET state",
201 ""
202),
203CMD_TBL_ITEM(
89adce76 204 restart, 1, 1, do_restart,
534e1dfc
L
205 "Perform RESET of the CPU",
206 ""
207),
89adce76 208CMD_TBL_ITEM(
2fe44122 209 connect, 1, 0, do_console,
89adce76 210 "Connect to CPU console i/o",
98aac4d0
L
211 "\n"
212 " - type the escape character followed by Q to close the connection, \n"
213 " or followed by ? to see other options. The default escape character \n"
214 " is Ctrl-^ (0x1E). It can be changed by setting env var '"ENV_ESC_CHAR"'."
215
89adce76 216),
41d36f28 217
41d36f28 218CMD_TBL_ITEM(
05994bd9 219 pin, CONFIG_SYS_MAXARGS, 1, do_gpio,
cd5ee544
L
220 "Set or query pin state",
221 "[-s] [<pins>]\n"
41d36f28
L
222 " - print cofiguration and state or frequency of pins\n"
223 " print all pins, if argument is omitted\n"
cd5ee544 224 "pin <pins> h[igh]|l[ow]\n"
41d36f28 225 " - config pins as output and set to level high or low\n"
cd5ee544 226 "pin <pins> ts|i[n]|p[ullup]\n"
41d36f28 227 " - config pins as input/tristate or input with pullup\n"
cd5ee544 228 "pin <pins> value[K|M][Hz]\n"
41d36f28
L
229 " - output a clock on pins\n"
230 " value is system clock divider or frequency, if 'Hz' is appended\n"
231 " divider is rounded down to next possible value (depends on pin)\n"
232 "\n"
cd5ee544 233 "<pins> is a comma separated list of numbers or ranges, i.e. \"0,9,3-6\"\n"
6035a17b 234),
534e1dfc 235
72f58822
L
236CMD_TBL_ITEM(
237 md, 3, 1, do_mem_md,
238 "memory display",
239 "address [# of objects]"
240),
241CMD_TBL_ITEM(
242 mm, 2, 1, do_mem_mm,
243 "memory modify (auto-incrementing address)",
244 "address"
245),
246CMD_TBL_ITEM(
247 nm, 2, 1, do_mem_nm,
248 "memory modify (constant address)",
249 "address"
250),
251CMD_TBL_ITEM(
252 mw, 4, 1, do_mem_mw,
253 "memory write (fill)",
254 "address value [count]"
255),
256CMD_TBL_ITEM(
257 cp, 4, 1, do_mem_cp,
258 "memory copy",
259 "source target count"
260),
261CMD_TBL_ITEM(
262 cmp, 4, 1, do_mem_cmp,
263 "memory compare",
264 "addr1 addr2 count"
265),
266CMD_TBL_ITEM(
c79c80b4 267 base, 2, 0, do_mem_base,
72f58822
L
268 "print or set address offset",
269 "\n"
270 " - print address offset for memory commands\n"
271 "base offset\n"
272 " - set address offset for memory commands to 'offset'"
273),
274CMD_TBL_ITEM(
5480dc65 275 mloop, 3, 1, do_mem_loop,
72f58822
L
276 "infinite loop on address range",
277 "address number_of_bytes"
278),
72f58822 279CMD_TBL_ITEM(
5480dc65 280 mloopw, 4, 1, do_mem_loopw,
72f58822
L
281 "infinite write loop on address range",
282 "address number_of_bytes data_to_write"
283),
72f58822
L
284
285#ifdef CONFIG_CMD_MEMTEST
286CMD_TBL_ITEM(
5480dc65 287 mtest, 4, 1, do_mem_mtest,
72f58822 288 "simple RAM read/write test",
5480dc65 289 "[start [end [iterations]]]"
72f58822
L
290),
291#endif /* CONFIG_CMD_MEMTEST */
292
293#ifdef CONFIG_MX_CYCLIC
294CMD_TBL_ITEM(
295 mdc, 4, 1, do_mem_mdc,
296 "memory display cyclic",
297 "address count delay(ms)"
298),
299CMD_TBL_ITEM(
5480dc65 300 mwc, 4, 1, do_mem_mdc,
72f58822
L
301 "memory write cyclic",
302 "address value delay(ms)"
303),
304#endif /* CONFIG_MX_CYCLIC */
305
7f552300
L
306CMD_TBL_ITEM(
307 sd, CONFIG_SYS_MAXARGS, 1, do_sd,
308 "SD/MMC card handling commands",
309 "<subcommand> args ...\n"
310 "sd help\n"
311 " - print help on subcommands"
312),
72f58822 313
2f53dd65
L
314CMD_TBL_ITEM(
315 fatstat, 2, 1, do_fat_stat,
316 "Show logical drive status",
317 "dev"
318),
319CMD_TBL_ITEM(
320 fatls, 2, 1, do_fat_ls,
321 "Directory listing",
322 "path"
323),
324CMD_TBL_ITEM(
4565be9a 325 fatload, 5, 0, do_fat_rw,
2f53dd65
L
326 "load binary file from a dos filesystem",
327 "<d:/path/filename> <addr> [bytes [pos]]\n"
328 " - Load binary file 'path/filename' on logical drive 'd'\n"
329 " to address 'addr' from dos filesystem.\n"
330 " 'pos' gives the file position to start loading from.\n"
331 " If 'pos' is omitted, 0 is used. 'pos' requires 'bytes'.\n"
332 " 'bytes' gives the size to load. If 'bytes' is 0 or omitted,\n"
333 " the load stops on end of file."
334),
335CMD_TBL_ITEM(
4565be9a 336 fatwrite, 4, 0, do_fat_rw,
2f53dd65
L
337 "write file into a dos filesystem",
338 "<d:/path/filename> <addr> <bytes>\n"
4565be9a
L
339 " - Write file to 'path/filename' on logical drive 'd' from RAM\n"
340 " starting at address 'addr'. 'bytes' gives the size to load.\n"
341 " If 'bytes' is 0 or omitted, the load stops on end of file."
2f53dd65
L
342),
343
d684c216
L
344CMD_TBL_ITEM(
345 help, CONFIG_SYS_MAXARGS, 1, do_help,
346 "print command description/usage",
347 "\n"
348 " - print brief description of all commands\n"
349 "help command ...\n"
350 " - print detailed usage of 'command'"
351),
352
72f58822 353/* This does not use the CMD_TBL_ITEM macro as ? can't be used in symbol names */
d684c216
L
354 {FSTR("?"), CONFIG_SYS_MAXARGS, 1, do_help,
355 FSTR("alias for 'help'"),
356#ifdef CONFIG_SYS_LONGHELP
357 FSTR(""),
358#endif /* CONFIG_SYS_LONGHELP */
359#ifdef CONFIG_AUTO_COMPLETE
360 0,
361#endif
362},
363/* Mark end of table */
364{ 0 },
365};