]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_jffs2.c
* Patches by Thomas Viehweger, 16 Mar 2004:
[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 static struct part_info part;
51
52 struct part_info*
53 jffs2_part_info(int part_num)
54 {
55         extern flash_info_t flash_info[];       /* info for FLASH chips */
56         int i;
57
58         if(part_num==0){
59
60                 if(part.usr_priv==(void*)1)
61                         return &part;
62
63                 memset(&part, 0, sizeof(part));
64
65 #if defined(CFG_JFFS2_FIRST_SECTOR)
66                 part.offset = (unsigned char *) flash_info[CFG_JFFS2_FIRST_BANK].start[CFG_JFFS2_FIRST_SECTOR];
67 #else
68                 part.offset = (unsigned char *) flash_info[CFG_JFFS2_FIRST_BANK].start[0];
69 #endif
70
71                 /* Figure out flash partition size */
72                 for (i = CFG_JFFS2_FIRST_BANK; i < CFG_JFFS2_NUM_BANKS+CFG_JFFS2_FIRST_BANK; i++)
73                         part.size += flash_info[i].size;
74
75 #if defined(CFG_JFFS2_FIRST_SECTOR) && (CFG_JFFS2_FIRST_SECTOR > 0)
76                 part.size -=
77                         flash_info[CFG_JFFS2_FIRST_BANK].start[CFG_JFFS2_FIRST_SECTOR] -
78                         flash_info[CFG_JFFS2_FIRST_BANK].start[0];
79 #endif
80
81                 /* unused in current jffs2 loader */
82                 part.erasesize = 0;
83
84                 /* Mark the struct as ready */
85                 part.usr_priv=(void*)1;
86
87                 return &part;
88         }
89         return 0;
90 }
91 #endif /* ifndef CFG_JFFS_CUSTOM_PART */
92
93 int
94 do_jffs2_fsload(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
95 {
96     struct part_info* jffs2_part_info(int);
97     int jffs2_1pass_load(char *, struct part_info *,const char *);
98     char *fsname;
99
100         char *filename = "uImage";
101         ulong offset = load_addr;
102         int size;
103         struct part_info *part;
104
105         if (argc == 2) {
106                 filename = argv[1];
107         }
108         if (argc == 3) {
109                 offset = simple_strtoul(argv[1], NULL, 16);
110                 load_addr = offset;
111                 filename = argv[2];
112         }
113
114         if (0 != (part=jffs2_part_info(part_num))){
115
116                 /* check partition type for cramfs */
117                 fsname = (cramfs_check(part) ? "CRAMFS" : "JFFS2");
118                 printf("### %s loading '%s' to 0x%lx\n", fsname, filename, offset);
119
120                 if (cramfs_check(part)) {
121                         size = cramfs_load ((char *) offset, part, filename);
122                 } else {
123                         /* if this is not cramfs assume jffs2 */
124                         size = jffs2_1pass_load((char *)offset, part, filename);
125                 }
126
127                 if (size > 0) {
128                         char buf[10];
129                         printf("### %s load complete: %d bytes loaded to 0x%lx\n",
130                                 fsname, size, offset);
131                         sprintf(buf, "%x", size);
132                         setenv("filesize", buf);
133                 } else {
134                         printf("### %s LOAD ERROR<%x> for %s!\n", fsname, size, filename);
135                 }
136
137                 return !(size > 0);
138         }
139         puts ("Active partition not valid\n");
140         return 0;
141 }
142
143 int
144 do_jffs2_ls(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
145 {
146    struct part_info* jffs2_part_info(int);
147    int jffs2_1pass_ls(struct part_info *,char *);
148
149    char *filename = "/";
150         int ret;
151         struct part_info *part;
152
153         if (argc == 2)
154                 filename = argv[1];
155
156         if (0 != (part=jffs2_part_info(part_num))){
157
158                 /* check partition type for cramfs */
159                 if (cramfs_check(part)) {
160                         ret = cramfs_ls (part, filename);
161                 } else {
162                         /* if this is not cramfs assume jffs2 */
163                         ret = jffs2_1pass_ls(part, filename);
164                 }
165
166                 return (ret == 1);
167         }
168         puts ("Active partition not valid\n");
169         return 0;
170 }
171
172 int
173 do_jffs2_fsinfo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
174 {
175         struct part_info* jffs2_part_info(int);
176         int jffs2_1pass_info(struct part_info *);
177         struct part_info *part;
178         char *fsname;
179         int ret;
180
181         if ((part=jffs2_part_info(part_num))){
182
183                 /* check partition type for cramfs */
184                 fsname = (cramfs_check(part) ? "CRAMFS" : "JFFS2");
185                 printf("### filesystem type is %s\n", fsname);
186
187                 if (cramfs_check(part)) {
188                         ret = cramfs_info (part);
189                 } else {
190                         /* if this is not cramfs assume jffs2 */
191                         ret = jffs2_1pass_info(part);
192                 }
193
194                 return (ret == 1);
195         }
196         puts ("Active partition not valid\n");
197         return 0;
198 }
199
200 int
201 do_jffs2_chpart(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
202 {
203         int tmp_part;
204         char str_part_num[3];
205    struct part_info* jffs2_part_info(int);
206
207    if (argc >= 2) {
208                 tmp_part = simple_strtoul(argv[1], NULL, 16);
209         }else{
210                 puts ("Need partition number in argument list\n");
211                 return 0;
212
213         }
214
215         if (jffs2_part_info(tmp_part)){
216                 printf("Partition changed to %d\n",tmp_part);
217                 part_num=tmp_part;
218                 sprintf(str_part_num, "%d", part_num);
219                 setenv("partition", str_part_num);
220                 return 0;
221         }
222
223         printf("Partition %d is not valid partiton\n",tmp_part);
224         return 0;
225
226 }
227
228 /***************************************************/
229
230 U_BOOT_CMD(
231         fsload, 3,      0,      do_jffs2_fsload,
232         "fsload  - load binary file from a filesystem image\n",
233         "[ off ] [ filename ]\n"
234         "    - load binary file from flash bank\n"
235         "      with offset 'off'\n"
236 );
237
238 U_BOOT_CMD(
239         fsinfo, 1,      1,      do_jffs2_fsinfo,
240         "fsinfo  - print information about filesystems\n",
241         "    - print information about filesystems\n"
242 );
243
244 U_BOOT_CMD(
245         ls,     2,      1,      do_jffs2_ls,
246         "ls      - list files in a directory (default /)\n",
247         "[ directory ]\n"
248         "    - list files in a directory.\n"
249 );
250
251 U_BOOT_CMD(
252         chpart, 2,      0,      do_jffs2_chpart,
253         "chpart  - change active partition\n",
254         "    - change active partition\n"
255 );
256
257 #endif /* CFG_CMD_JFFS2 */