summaryrefslogtreecommitdiffstats
path: root/usr.sbin/nandtool/usage.h
blob: 74e8543b25c26f99dfb64b76c5ad61d8e6451781 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*-
 * Copyright (c) 2010-2012 Semihalf.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 * $FreeBSD$
 */

#ifndef	__USAGE_H
#define	__USAGE_H

static const char nand_help_usage[] =
	"Usage: %s help topic=<cmd>\n"
	"\n"
	"Arguments:\n"
	"\tcmd\t- [help|read|write|erase|readoob|writeoob|info]\n"
	"\n";

static const char nand_read_usage[] =
	"Usage: %s read dev=<gnand_device> (block|page|pos)=n [count=n]\n"
	"\n"
	"Arguments:\n"
	"\tdev\t- path to gnand device node\n"
	"\tblock\t- starting block or\n"
	"\tpage\t- starting page or\n"
	"\tpos\t- starting position (in bytes, must be page-aligned)\n"
	"\tout\t- output file (hexdump to stdout if not supplied)\n"
	"\n"
	"Note that you can only specify only one of: 'block', 'page', 'pos'\n"
	"parameters at once. 'count' parameter is meaningful in terms of used\n"
	"unit (page, block or byte).\n";

static const char nand_write_usage[] =
	"Usage: %s write dev=<gnand_device> in=<file> (block|page|pos)=n [count=n]\n"
	"\n"
	"Arguments:\n"
	"\tdev\t- path to gnand device node\n"
	"\tin\t- path to input file which be writed to gnand\n"
	"\tblock\t- starting block or\n"
	"\tpage\t- starting page or\n"
	"\tpos\t- starting position (in bytes, must be page-aligned)\n"
	"\tcount\t- byte/page/block count\n"
	"\n"
	"";

static const char nand_erase_usage[] =
	"Usage: %s erase dev=<gnand_device> (block|page|pos)=n [count=n]\n"
	"\n"
	"Arguments:\n"
	"\tdev\t- path to gnand device node\n"
	"\tblock\t- starting block or\n"
	"\tpage\t- starting page or\n"
	"\tpos\t- starting position (in bytes, muse be block-aligned)\n"
	"\tcount\t- byte/page/block count\n"
	"\n"
	"NOTE: position and count for erase operation MUST be block-aligned\n";

static const char nand_read_oob_usage[] =
	"Usage: %s readoob dev=<gnand_device> page=n [out=file] [count=n]\n"
	"\n"
	"Arguments:\n"
	"\tdev\t- path to gnand device node\n"
	"\tpage\t- page (page) number\n"
	"\tout\t- outut file (hexdump to stdout if not supplied)\n"
	"\tcount\t- page count (default is 1)\n"
	"\n"
	"If you supply count parameter with value other than 1, data will be\n"
	"read from subsequent page's OOB areas\n";

static const char nand_write_oob_usage[] =
	"Usage: %s writeoob dev=<gnand_device> in=<file> page=n [count=n]\n"
	"\n"
	"\tdev\t- path to gnand device node\n"
	"\tin\t- path to file containing data which will be written\n"
	"\tpage\t- page (page) number\n"
	"\n"
	"If you supply count parameter with value other than 1, data will be\n"
	"written to subsequent page's OOB areas\n";

static const char nand_info_usage[] =
	"Usage: %s info dev=<gnand_device>\n"
	"\n"
	"Arguments:\n"
	"\tdev\t- path to gnand device node\n";

static const char nand_stats_usage[] =
	"Usage: %s stats dev=<gnand_device> (page|block)=<n>\n"
	"\n"
	"Arguments:\n"
	"\tdev\t- path to gnand device node\n";

#endif	/* __USAGE_H */
OpenPOWER on IntegriCloud