summaryrefslogtreecommitdiffstats
path: root/include/cmd_flash.h
blob: 6f5c6cd045df07052ac78ffbec4d2b8fc09f77e1 (plain)
1
2
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
 * (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
 */

/*
 * FLASH support
 */
#ifndef	_CMD_FLASH_H
#define	_CMD_FLASH_H

#if (CONFIG_COMMANDS & CFG_CMD_FLASH)
#define	CMD_TBL_FLINFO	MK_CMD_TBL_ENTRY(					\
	"flinfo",	3,	2,	1,	do_flinfo,			\
	"flinfo  - print FLASH memory information\n",				\
	"\n    - print information for all FLASH memory banks\n"		\
	"flinfo N\n    - print information for FLASH memory bank # N\n"		\
),

#define	CMD_TBL_FLERASE	MK_CMD_TBL_ENTRY(					\
	"erase",	3,	3,	1,	do_flerase,			\
	"erase   - erase FLASH memory\n",					\
	"start end\n"								\
	"    - erase FLASH from addr 'start' to addr 'end'\n"			\
	"erase N:SF[-SL]\n    - erase sectors SF-SL in FLASH bank # N\n"	\
	"erase bank N\n    - erase FLASH bank # N\n"				\
	"erase all\n    - erase all FLASH banks\n"				\
),

#define	CMD_TBL_PROTECT	MK_CMD_TBL_ENTRY(					\
	"protect",	4,	4,	1,	do_protect,			\
	"protect - enable or disable FLASH write protection\n",			\
	"on  start end\n"							\
	"    - protect FLASH from addr 'start' to addr 'end'\n"			\
	"protect on  N:SF[-SL]\n"						\
	"    - protect sectors SF-SL in FLASH bank # N\n"			\
	"protect on  bank N\n    - protect FLASH bank # N\n"			\
	"protect on  all\n    - protect all FLASH banks\n"			\
	"protect off start end\n"						\
	"    - make FLASH from addr 'start' to addr 'end' writable\n"		\
	"protect off N:SF[-SL]\n"						\
	"    - make sectors SF-SL writable in FLASH bank # N\n"			\
	"protect off bank N\n    - make FLASH bank # N writable\n"		\
	"protect off all\n    - make all FLASH banks writable\n"		\
),
int do_flinfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
int do_flerase(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
int do_protect(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
#else
#define CMD_TBL_FLINFO
#define CMD_TBL_FLERASE
#define CMD_TBL_PROTECT
#endif	/* CFG_CMD_FLASH */

#endif	/* _CMD_FLASH_H */
OpenPOWER on IntegriCloud