command.h 3.7 KB
Newer Older
W
wdenk 已提交
1
/*
2
 * (C) Copyright 2000-2009
W
wdenk 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 *
 * See file CREDITS for list of people who contributed to this
 * project.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 * MA 02111-1307 USA
 */

/*
 *  Definitions for Command Processor
 */
#ifndef __COMMAND_H
#define __COMMAND_H

S
Stefan Roese 已提交
30 31
#include <config.h>

W
wdenk 已提交
32 33 34 35
#ifndef NULL
#define NULL	0
#endif

P
Peter Tyser 已提交
36 37 38 39 40
/* Default to a width of 8 characters for help message command width */
#ifndef CONFIG_SYS_HELP_CMD_WIDTH
#define CONFIG_SYS_HELP_CMD_WIDTH	8
#endif

W
wdenk 已提交
41 42 43 44 45 46 47 48 49 50
#ifndef	__ASSEMBLY__
/*
 * Monitor Command Table
 */

struct cmd_tbl_s {
	char		*name;		/* Command Name			*/
	int		maxargs;	/* maximum number of arguments	*/
	int		repeatable;	/* autorepeat allowed?		*/
					/* Implementation function	*/
51
	int		(*cmd)(struct cmd_tbl_s *, int, int, char * const []);
W
wdenk 已提交
52
	char		*usage;		/* Usage message	(short)	*/
53
#ifdef	CONFIG_SYS_LONGHELP
W
wdenk 已提交
54 55
	char		*help;		/* Help  message	(long)	*/
#endif
56 57
#ifdef CONFIG_AUTO_COMPLETE
	/* do auto completion on the arguments */
58
	int		(*complete)(int argc, char * const argv[], char last_char, int maxv, char *cmdv[]);
59
#endif
W
wdenk 已提交
60 61 62 63
};

typedef struct cmd_tbl_s	cmd_tbl_t;

W
wdenk 已提交
64 65
extern cmd_tbl_t  __u_boot_cmd_start;
extern cmd_tbl_t  __u_boot_cmd_end;
W
wdenk 已提交
66 67 68


/* common/command.c */
69
int _do_help (cmd_tbl_t *cmd_start, int cmd_items, cmd_tbl_t * cmdtp, int
70
	      flag, int argc, char * const argv[]);
W
wdenk 已提交
71
cmd_tbl_t *find_cmd(const char *cmd);
72
cmd_tbl_t *find_cmd_tbl (const char *cmd, cmd_tbl_t *table, int table_len);
W
wdenk 已提交
73

74
extern int cmd_usage(cmd_tbl_t *cmdtp);
75

76 77 78 79 80
#ifdef CONFIG_AUTO_COMPLETE
extern void install_auto_complete(void);
extern int cmd_auto_complete(const char *const prompt, char *buf, int *np, int *colp);
#endif

W
wdenk 已提交
81 82 83 84 85
/*
 * Monitor Command
 *
 * All commands use a common argument format:
 *
86
 * void function (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
W
wdenk 已提交
87 88
 */

W
Wolfgang Denk 已提交
89
typedef	void	command_t (cmd_tbl_t *, int, int, char *[]);
W
wdenk 已提交
90

91 92 93 94 95 96 97 98 99
#if defined(CONFIG_CMD_MEMORY)		\
    || defined(CONFIG_CMD_I2C)		\
    || defined(CONFIG_CMD_ITEST)	\
    || defined(CONFIG_CMD_PCI)		\
    || defined(CONFIG_CMD_PORTIO)
#define CMD_DATA_SIZE
extern int cmd_get_data_size(char* arg, int default_size);
#endif

W
wdenk 已提交
100 101 102 103 104 105 106 107
#endif	/* __ASSEMBLY__ */

/*
 * Command Flags:
 */
#define CMD_FLAG_REPEAT		0x0001	/* repeat last command		*/
#define CMD_FLAG_BOOTD		0x0002	/* command is from bootd	*/

W
wdenk 已提交
108 109
#define Struct_Section  __attribute__ ((unused,section (".u_boot_cmd")))

110
#ifdef  CONFIG_SYS_LONGHELP
W
wdenk 已提交
111

W
wdenk 已提交
112 113
#define U_BOOT_CMD(name,maxargs,rep,cmd,usage,help) \
cmd_tbl_t __u_boot_cmd_##name Struct_Section = {#name, maxargs, rep, cmd, usage, help}
W
wdenk 已提交
114

115 116 117
#define U_BOOT_CMD_MKENT(name,maxargs,rep,cmd,usage,help) \
{#name, maxargs, rep, cmd, usage, help}

W
wdenk 已提交
118 119
#else	/* no long help info */

W
wdenk 已提交
120 121
#define U_BOOT_CMD(name,maxargs,rep,cmd,usage,help) \
cmd_tbl_t __u_boot_cmd_##name Struct_Section = {#name, maxargs, rep, cmd, usage}
W
wdenk 已提交
122

123 124 125
#define U_BOOT_CMD_MKENT(name,maxargs,rep,cmd,usage,help) \
{#name, maxargs, rep, cmd, usage}

126
#endif	/* CONFIG_SYS_LONGHELP */
W
wdenk 已提交
127

H
Heiko Schocher 已提交
128 129 130
#if !defined(CONFIG_RELOC_FIXUP_WORKS)
void fixup_cmdtable(cmd_tbl_t *cmdtp, int size);
#endif
W
wdenk 已提交
131
#endif	/* __COMMAND_H */