Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jack Humbert
reform-boundary-uboot
Commits
4ef60b6d
Commit
4ef60b6d
authored
22 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Initial revision
parent
121cb96d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/cmd_boot.h
+137
-0
137 additions, 0 deletions
include/cmd_boot.h
with
137 additions
and
0 deletions
include/cmd_boot.h
0 → 100644
+
137
−
0
View file @
4ef60b6d
/*
* (C) Copyright 2000
* 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
*/
/*
* Boot support
*/
#ifndef _CMD_BOOT_H
#define _CMD_BOOT_H
#if (CONFIG_COMMANDS & CFG_CMD_BDI)
#define CMD_TBL_BDINFO MK_CMD_TBL_ENTRY( \
"bdinfo", 2, 1, 1, do_bdinfo, \
"bdinfo - print Board Info structure\n", \
NULL \
),
int
do_bdinfo
(
cmd_tbl_t
*
cmdtp
,
int
flag
,
int
argc
,
char
*
argv
[]);
#else
#define CMD_TBL_BDINFO
#endif
#define CMD_TBL_GO MK_CMD_TBL_ENTRY( \
"go", 2, CFG_MAXARGS, 1, do_go, \
"go - start application at address 'addr'\n", \
"addr [arg ...]\n - start application at address 'addr'\n" \
" passing 'arg' as arguments\n" \
),
int
do_go
(
cmd_tbl_t
*
cmdtp
,
int
flag
,
int
argc
,
char
*
argv
[]);
#if (CONFIG_COMMANDS & CFG_CMD_LOADS)
#ifdef CFG_LOADS_BAUD_CHANGE
#define CMD_TBL_LOADS MK_CMD_TBL_ENTRY( \
"loads", 5, 3, 0, do_load_serial, \
"loads - load S-Record file over serial line\n", \
"[ off ] [ baud ]\n" \
" - load S-Record file over serial line" \
" with offset 'off' and baudrate 'baud'\n" \
),
#else
/* ! CFG_LOADS_BAUD_CHANGE */
#define CMD_TBL_LOADS MK_CMD_TBL_ENTRY( \
"loads", 5, 2, 0, do_load_serial, \
"loads - load S-Record file over serial line\n", \
"[ off ]\n" \
" - load S-Record file over serial line with offset 'off'\n" \
),
#endif
/* CFG_LOADS_BAUD_CHANGE */
int
do_load_serial
(
cmd_tbl_t
*
cmdtp
,
int
flag
,
int
argc
,
char
*
argv
[]);
/*
* SAVES always requires LOADS support, but not vice versa
*/
#if (CONFIG_COMMANDS & CFG_CMD_SAVES)
#ifdef CFG_LOADS_BAUD_CHANGE
#define CMD_TBL_SAVES MK_CMD_TBL_ENTRY( \
"saves", 5, 4, 0, do_save_serial, \
"saves - save S-Record file over serial line\n", \
"[ off ] [size] [ baud ]\n" \
" - save S-Record file over serial line" \
" with offset 'off', size 'size' and baudrate 'baud'\n" \
),
#else
/* ! CFG_LOADS_BAUD_CHANGE */
#define CMD_TBL_SAVES MK_CMD_TBL_ENTRY( \
"saves", 5, 3, 0, do_save_serial, \
"saves - save S-Record file over serial line\n", \
"[ off ] [size]\n" \
" - save S-Record file over serial line with offset 'off' and size 'size'\n" \
),
#endif
/* CFG_LOADS_BAUD_CHANGE */
int
do_save_serial
(
cmd_tbl_t
*
cmdtp
,
int
flag
,
int
argc
,
char
*
argv
[]);
#else
/* ! CFG_CMD_SAVES */
#define CMD_TBL_SAVES
#endif
/* CFG_CMD_SAVES */
#else
/* ! CFG_CMD_LOADS */
#define CMD_TBL_LOADS
#define CMD_TBL_SAVES
#endif
/* CFG_CMD_LOADS */
#if (CONFIG_COMMANDS & CFG_CMD_LOADB)
#define CMD_TBL_LOADB MK_CMD_TBL_ENTRY( \
"loadb", 5, 3, 0, do_load_serial_bin, \
"loadb - load binary file over serial line (kermit mode)\n", \
"[ off ] [ baud ]\n" \
" - load binary file over serial line" \
" with offset 'off' and baudrate 'baud'\n" \
),
int
do_load_serial_bin
(
cmd_tbl_t
*
cmdtp
,
int
flag
,
int
argc
,
char
*
argv
[]);
#else
#define CMD_TBL_LOADB
#endif
/* CFG_CMD_LOADB */
#define CMD_TBL_RESET MK_CMD_TBL_ENTRY( \
"reset", 5, 1, 0, do_reset, \
"reset - Perform RESET of the CPU\n", \
NULL \
),
/* Implemented in $(CPU)/cpu.c */
int
do_reset
(
cmd_tbl_t
*
cmdtp
,
int
flag
,
int
argc
,
char
*
argv
[]);
#if (CONFIG_COMMANDS & CFG_CMD_HWFLOW)
#define CMD_TBL_HWFLOW MK_CMD_TBL_ENTRY( \
"hwflow [on|off]", 2, 2, 0, do_hwflow, \
"hwflow - turn the harwdare flow control on/off\n", \
"\n - change RTS/CTS hardware flow control over serial line\n" \
),
int
do_hwflow
(
cmd_tbl_t
*
cmdtp
,
int
flag
,
int
argc
,
char
*
argv
[]);
#else
#define CMD_TBL_HWFLOW
#endif
#endif
/* _CMD_BOOT_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment