]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_jffs2.c
f7a5f9ebfd47a497ab8dddaa2788328fe194afdd
[karo-tx-uboot.git] / common / cmd_jffs2.c
1 /*
2  * (C) Copyright 2002
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  * (C) Copyright 2002
5  * Robert Schwebel, Pengutronix, <r.schwebel@pengutronix.de>
6  * (C) Copyright 2003
7  * Kai-Uwe Bloem, Auerswald GmbH & Co KG, <linux-development@auerswald.de>
8  *
9  * See file CREDITS for list of people who contributed to this
10  * project.
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License as
14  * published by the Free Software Foundation; either version 2 of
15  * the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25  * MA 02111-1307 USA
26  */
27
28 /*
29  * Boot support
30  */
31 #include <common.h>
32 #include <command.h>
33 #include <s_record.h>
34 #include <jffs2/load_kernel.h>
35 #include <net.h>
36
37 #if (CONFIG_COMMANDS & CFG_CMD_JFFS2)
38
39 #include <cramfs/cramfs_fs.h>
40
41 extern int cramfs_check (struct part_info *info);
42 extern int cramfs_load (char *loadoffset, struct part_info *info, char *filename);
43 extern int cramfs_ls (struct part_info *info, char *filename);
44 extern int cramfs_info (struct part_info *info);
45
46 static int part_num=0;
47
48 #ifndef CFG_JFFS_CUSTOM_PART
49
50 #define CFG_JFFS_SINGLE_PART    1
51
52 static struct part_info part;
53
54 #ifndef CONFIG_JFFS2_NAND
55
56 struct part_info*
57 jffs2_part_info(int part_num)
58 {
59         extern flash_info_t flash_info[];       /* info for FLASH chips */
60         int i;
61
62         if(part_num==0){
63
64                 if(part.usr_priv==(void*)1)
65                         return &part;
66
67                 memset(&part, 0, sizeof(part));
68
69 #if defined(CFG_JFFS2_FIRST_SECTOR)
70                 part.offset = (unsigned char *) flash_info[CFG_JFFS2_FIRST_BANK].start[CFG_JFFS2_FIRST_SECTOR];
71 #else
72                 part.offset = (unsigned char *) flash_info[CFG_JFFS2_FIRST_BANK].start[0];
73 #endif
74
75                 /* Figure out flash partition size */
76                 for (i = CFG_JFFS2_FIRST_BANK; i < CFG_JFFS2_NUM_BANKS+CFG_JFFS2_FIRST_BANK; i++)
77                         part.size += flash_info[i].size;
78
79 #if defined(CFG_JFFS2_FIRST_SECTOR) && (CFG_JFFS2_FIRST_SECTOR > 0)
80                 part.size -=
81                         flash_info[CFG_JFFS2_FIRST_BANK].start[CFG_JFFS2_FIRST_SECTOR] -
82                         flash_info[CFG_JFFS2_FIRST_BANK].start[0];
83 #endif
84
85                 /* Mark the struct as ready */
86                 part.usr_priv=(void*)1;
87
88                 return &part;
89         }
90         return 0;
91 }
92
93 #else /* CONFIG_JFFS2_NAND */
94
95 struct part_info*
96 jffs2_part_info(int part_num)
97 {
98         if(part_num==0){
99
100                 if(part.usr_priv==(void*)1)
101                         return &part;
102
103                 memset(&part, 0, sizeof(part));
104
105                 part.offset = (char *)CONFIG_JFFS2_NAND_OFF;
106                 part.size = CONFIG_JFFS2_NAND_SIZE; /* the bigger size the slower jffs2 */
107
108 #ifndef CONFIG_JFFS2_NAND_DEV
109 #define CONFIG_JFFS2_NAND_DEV 0
110 #endif
111                 /* nand device with the JFFS2 parition plus 1 */
112                 part.usr_priv = (void*)(CONFIG_JFFS2_NAND_DEV+1);
113                 return &part;
114         }
115         return 0;
116 }
117
118 #endif /* CONFIG_JFFS2_NAND */
119 #endif /* ifndef CFG_JFFS_CUSTOM_PART */
120
121 int
122 do_jffs2_fsload(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
123 {
124         struct part_info* jffs2_part_info(int);
125         int jffs2_1pass_load(char *, struct part_info *,const char *);
126         char *fsname;
127         char *filename;
128         int size;
129         struct part_info *part;
130         ulong offset = load_addr;
131
132         /* pre-set Boot file name */
133         if ((filename = getenv("bootfile")) == NULL) {
134                 filename = "uImage";
135         }
136
137         if (argc == 2) {
138                 filename = argv[1];
139         }
140         if (argc == 3) {
141                 offset = simple_strtoul(argv[1], NULL, 16);
142                 load_addr = offset;
143                 filename = argv[2];
144         }
145
146         if (0 != (part=jffs2_part_info(part_num))){
147
148                 /* check partition type for cramfs */
149                 fsname = (cramfs_check(part) ? "CRAMFS" : "JFFS2");
150                 printf("### %s loading '%s' to 0x%lx\n", fsname, filename, offset);
151
152                 if (cramfs_check(part)) {
153                         size = cramfs_load ((char *) offset, part, filename);
154                 } else {
155                         /* if this is not cramfs assume jffs2 */
156                         size = jffs2_1pass_load((char *)offset, part, filename);
157                 }
158
159                 if (size > 0) {
160                         char buf[10];
161                         printf("### %s load complete: %d bytes loaded to 0x%lx\n",
162                                 fsname, size, offset);
163                         sprintf(buf, "%x", size);
164                         setenv("filesize", buf);
165                 } else {
166                         printf("### %s LOAD ERROR<%x> for %s!\n", fsname, size, filename);
167                 }
168
169                 return !(size > 0);
170         }
171         puts ("Active partition not valid\n");
172         return 0;
173 }
174
175 int
176 do_jffs2_ls(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
177 {
178    struct part_info* jffs2_part_info(int);
179    int jffs2_1pass_ls(struct part_info *,char *);
180
181    char *filename = "/";
182         int ret;
183         struct part_info *part;
184
185         if (argc == 2)
186                 filename = argv[1];
187
188         if (0 != (part=jffs2_part_info(part_num))){
189
190                 /* check partition type for cramfs */
191                 if (cramfs_check(part)) {
192                         ret = cramfs_ls (part, filename);
193                 } else {
194                         /* if this is not cramfs assume jffs2 */
195                         ret = jffs2_1pass_ls(part, filename);
196                 }
197
198                 return (ret == 1);
199         }
200         puts ("Active partition not valid\n");
201         return 0;
202 }
203
204 int
205 do_jffs2_fsinfo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
206 {
207         struct part_info* jffs2_part_info(int);
208         int jffs2_1pass_info(struct part_info *);
209         struct part_info *part;
210         char *fsname;
211         int ret;
212
213         if ((part=jffs2_part_info(part_num))){
214
215                 /* check partition type for cramfs */
216                 fsname = (cramfs_check(part) ? "CRAMFS" : "JFFS2");
217                 printf("### filesystem type is %s\n", fsname);
218
219                 if (cramfs_check(part)) {
220                         ret = cramfs_info (part);
221                 } else {
222                         /* if this is not cramfs assume jffs2 */
223                         ret = jffs2_1pass_info(part);
224                 }
225
226                 return (ret == 1);
227         }
228         puts ("Active partition not valid\n");
229         return 0;
230 }
231
232 #ifndef CFG_JFFS_SINGLE_PART
233 int
234 do_jffs2_chpart(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
235 {
236         int tmp_part;
237         char str_part_num[3];
238    struct part_info* jffs2_part_info(int);
239
240    if (argc >= 2) {
241                 tmp_part = simple_strtoul(argv[1], NULL, 16);
242         }else{
243                 puts ("Need partition number in argument list\n");
244                 return 0;
245
246         }
247
248         if (jffs2_part_info(tmp_part)){
249                 printf("Partition changed to %d\n",tmp_part);
250                 part_num=tmp_part;
251                 sprintf(str_part_num, "%d", part_num);
252                 setenv("partition", str_part_num);
253                 return 0;
254         }
255
256         printf("Partition %d is not valid partiton\n",tmp_part);
257         return 0;
258
259 }
260 #endif  /* CFG_JFFS_SINGLE_PART */
261
262 /***************************************************/
263
264 U_BOOT_CMD(
265         fsload, 3,      0,      do_jffs2_fsload,
266         "fsload\t- load binary file from a filesystem image\n",
267         "[ off ] [ filename ]\n"
268         "    - load binary file from flash bank\n"
269         "      with offset 'off'\n"
270 );
271
272 U_BOOT_CMD(
273         fsinfo, 1,      1,      do_jffs2_fsinfo,
274         "fsinfo\t- print information about filesystems\n",
275         "    - print information about filesystems\n"
276 );
277
278 U_BOOT_CMD(
279         ls,     2,      1,      do_jffs2_ls,
280         "ls\t- list files in a directory (default /)\n",
281         "[ directory ]\n"
282         "    - list files in a directory.\n"
283 );
284
285 U_BOOT_CMD(
286         chpart, 2,      0,      do_jffs2_chpart,
287         "chpart\t- change active partition\n",
288         "    - change active partition\n"
289 );
290
291 #endif /* CFG_CMD_JFFS2 */