blob: 3561727a5a659bbc7a3f66c3b2af36e2b5366630 [file] [log] [blame]
Stephen Warren045fa1e2012-10-22 06:43:51 +00001/*
2 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include <config.h>
18#include <common.h>
19#include <part.h>
20#include <ext4fs.h>
21#include <fat.h>
22#include <fs.h>
23
Stephen Warrena1b231c2012-10-30 07:50:47 +000024DECLARE_GLOBAL_DATA_PTR;
25
Stephen Warren045fa1e2012-10-22 06:43:51 +000026static block_dev_desc_t *fs_dev_desc;
27static disk_partition_t fs_partition;
28static int fs_type = FS_TYPE_ANY;
29
Simon Glass2ded0d42012-12-26 09:53:31 +000030static inline int fs_probe_unsupported(block_dev_desc_t *fs_dev_desc,
31 disk_partition_t *fs_partition)
Simon Glass436e2b72012-12-26 09:53:29 +000032{
33 printf("** Unrecognized filesystem type **\n");
34 return -1;
35}
36
Stephen Warren045fa1e2012-10-22 06:43:51 +000037static inline int fs_ls_unsupported(const char *dirname)
38{
Stephen Warren045fa1e2012-10-22 06:43:51 +000039 return -1;
40}
41
42static inline int fs_read_unsupported(const char *filename, ulong addr,
43 int offset, int len)
44{
Stephen Warren045fa1e2012-10-22 06:43:51 +000045 return -1;
46}
47
Simon Glass436e2b72012-12-26 09:53:29 +000048static inline void fs_close_unsupported(void)
49{
50}
51
Stephen Warren045fa1e2012-10-22 06:43:51 +000052#ifdef CONFIG_FS_FAT
Simon Glass2ded0d42012-12-26 09:53:31 +000053static int fs_probe_fat(block_dev_desc_t *fs_dev_desc,
54 disk_partition_t *fs_partition)
Stephen Warren045fa1e2012-10-22 06:43:51 +000055{
Simon Glass2ded0d42012-12-26 09:53:31 +000056 return fat_set_blk_dev(fs_dev_desc, fs_partition);
Stephen Warren045fa1e2012-10-22 06:43:51 +000057}
58
59static void fs_close_fat(void)
60{
61}
62
63#define fs_ls_fat file_fat_ls
64
65static int fs_read_fat(const char *filename, ulong addr, int offset, int len)
66{
67 int len_read;
68
69 len_read = file_fat_read_at(filename, offset,
70 (unsigned char *)addr, len);
71 if (len_read == -1) {
72 printf("** Unable to read file %s **\n", filename);
73 return -1;
74 }
75
76 return len_read;
77}
78#else
79static inline int fs_probe_fat(void)
80{
81 return -1;
82}
83
84static inline void fs_close_fat(void)
85{
86}
87
88#define fs_ls_fat fs_ls_unsupported
89#define fs_read_fat fs_read_unsupported
90#endif
91
92#ifdef CONFIG_FS_EXT4
Simon Glass2ded0d42012-12-26 09:53:31 +000093static int fs_probe_ext(block_dev_desc_t *fs_dev_desc,
94 disk_partition_t *fs_partition)
Stephen Warren045fa1e2012-10-22 06:43:51 +000095{
Simon Glass2ded0d42012-12-26 09:53:31 +000096 ext4fs_set_blk_dev(fs_dev_desc, fs_partition);
Stephen Warren045fa1e2012-10-22 06:43:51 +000097
Simon Glass2ded0d42012-12-26 09:53:31 +000098 if (!ext4fs_mount(fs_partition->size)) {
Stephen Warren045fa1e2012-10-22 06:43:51 +000099 ext4fs_close();
100 return -1;
101 }
102
103 return 0;
104}
105
106static void fs_close_ext(void)
107{
108 ext4fs_close();
109}
110
111#define fs_ls_ext ext4fs_ls
112
113static int fs_read_ext(const char *filename, ulong addr, int offset, int len)
114{
115 int file_len;
116 int len_read;
117
118 if (offset != 0) {
119 printf("** Cannot support non-zero offset **\n");
120 return -1;
121 }
122
123 file_len = ext4fs_open(filename);
124 if (file_len < 0) {
125 printf("** File not found %s **\n", filename);
126 ext4fs_close();
127 return -1;
128 }
129
130 if (len == 0)
131 len = file_len;
132
133 len_read = ext4fs_read((char *)addr, len);
134 ext4fs_close();
135
136 if (len_read != len) {
137 printf("** Unable to read file %s **\n", filename);
138 return -1;
139 }
140
141 return len_read;
142}
143#else
144static inline int fs_probe_ext(void)
145{
146 return -1;
147}
148
149static inline void fs_close_ext(void)
150{
151}
152
153#define fs_ls_ext fs_ls_unsupported
154#define fs_read_ext fs_read_unsupported
155#endif
156
Simon Glass436e2b72012-12-26 09:53:29 +0000157struct fstype_info {
Stephen Warren045fa1e2012-10-22 06:43:51 +0000158 int fstype;
Simon Glass2ded0d42012-12-26 09:53:31 +0000159 int (*probe)(block_dev_desc_t *fs_dev_desc,
160 disk_partition_t *fs_partition);
Simon Glass436e2b72012-12-26 09:53:29 +0000161 int (*ls)(const char *dirname);
162 int (*read)(const char *filename, ulong addr, int offset, int len);
163 void (*close)(void);
164};
165
166static struct fstype_info fstypes[] = {
167#ifdef CONFIG_FS_FAT
Stephen Warren045fa1e2012-10-22 06:43:51 +0000168 {
169 .fstype = FS_TYPE_FAT,
170 .probe = fs_probe_fat,
Simon Glass436e2b72012-12-26 09:53:29 +0000171 .close = fs_close_fat,
172 .ls = file_fat_ls,
173 .read = fs_read_fat,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000174 },
Simon Glass436e2b72012-12-26 09:53:29 +0000175#endif
176#ifdef CONFIG_FS_EXT4
Stephen Warren045fa1e2012-10-22 06:43:51 +0000177 {
178 .fstype = FS_TYPE_EXT,
179 .probe = fs_probe_ext,
Simon Glass436e2b72012-12-26 09:53:29 +0000180 .close = fs_close_ext,
181 .ls = ext4fs_ls,
182 .read = fs_read_ext,
183 },
184#endif
185 {
186 .fstype = FS_TYPE_ANY,
187 .probe = fs_probe_unsupported,
188 .close = fs_close_unsupported,
189 .ls = fs_ls_unsupported,
190 .read = fs_read_unsupported,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000191 },
192};
193
Simon Glassc6f548d2012-12-26 09:53:30 +0000194static struct fstype_info *fs_get_info(int fstype)
195{
196 struct fstype_info *info;
197 int i;
198
199 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes) - 1; i++, info++) {
200 if (fstype == info->fstype)
201 return info;
202 }
203
204 /* Return the 'unsupported' sentinel */
205 return info;
206}
207
Stephen Warren045fa1e2012-10-22 06:43:51 +0000208int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
209{
Simon Glass436e2b72012-12-26 09:53:29 +0000210 struct fstype_info *info;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000211 int part, i;
Stephen Warrena1b231c2012-10-30 07:50:47 +0000212#ifdef CONFIG_NEEDS_MANUAL_RELOC
213 static int relocated;
214
215 if (!relocated) {
Simon Glass436e2b72012-12-26 09:53:29 +0000216 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes);
217 i++, info++) {
218 info->probe += gd->reloc_off;
219 info->close += gd->reloc_off;
220 info->ls += gd->reloc_off;
221 info->read += gd->reloc_off;
222 }
Stephen Warrena1b231c2012-10-30 07:50:47 +0000223 relocated = 1;
224 }
225#endif
Stephen Warren045fa1e2012-10-22 06:43:51 +0000226
227 part = get_device_and_partition(ifname, dev_part_str, &fs_dev_desc,
228 &fs_partition, 1);
229 if (part < 0)
230 return -1;
231
Simon Glass436e2b72012-12-26 09:53:29 +0000232 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
233 if (fstype != FS_TYPE_ANY && info->fstype != FS_TYPE_ANY &&
234 fstype != info->fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000235 continue;
236
Simon Glass2ded0d42012-12-26 09:53:31 +0000237 if (!info->probe(fs_dev_desc, &fs_partition)) {
Simon Glass436e2b72012-12-26 09:53:29 +0000238 fs_type = info->fstype;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000239 return 0;
240 }
241 }
242
Stephen Warren045fa1e2012-10-22 06:43:51 +0000243 return -1;
244}
245
246static void fs_close(void)
247{
Simon Glassc6f548d2012-12-26 09:53:30 +0000248 struct fstype_info *info = fs_get_info(fs_type);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000249
Simon Glassc6f548d2012-12-26 09:53:30 +0000250 info->close();
Stephen Warren045fa1e2012-10-22 06:43:51 +0000251 fs_type = FS_TYPE_ANY;
252}
253
254int fs_ls(const char *dirname)
255{
256 int ret;
257
Simon Glassc6f548d2012-12-26 09:53:30 +0000258 struct fstype_info *info = fs_get_info(fs_type);
259
260 ret = info->ls(dirname);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000261
262 fs_close();
263
264 return ret;
265}
266
267int fs_read(const char *filename, ulong addr, int offset, int len)
268{
Simon Glassc6f548d2012-12-26 09:53:30 +0000269 struct fstype_info *info = fs_get_info(fs_type);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000270 int ret;
271
Simon Glassc6f548d2012-12-26 09:53:30 +0000272 ret = info->read(filename, addr, offset, len);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000273
Simon Glassc6f548d2012-12-26 09:53:30 +0000274 /* If we requested a specific number of bytes, check we got it */
275 if (ret >= 0 && len && ret != len) {
276 printf("** Unable to read file %s **\n", filename);
277 ret = -1;
278 }
Stephen Warren045fa1e2012-10-22 06:43:51 +0000279 fs_close();
280
281 return ret;
282}
283
Stephen Warrenf9b55e22012-10-31 11:05:07 +0000284int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Stephen Warren3f83c872012-10-30 12:04:19 +0000285 int fstype, int cmdline_base)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000286{
287 unsigned long addr;
288 const char *addr_str;
289 const char *filename;
290 unsigned long bytes;
291 unsigned long pos;
292 int len_read;
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100293 unsigned long time;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000294
Stephen Warrene9b0f992012-10-30 12:04:17 +0000295 if (argc < 2)
296 return CMD_RET_USAGE;
297 if (argc > 7)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000298 return CMD_RET_USAGE;
299
Stephen Warrene9b0f992012-10-30 12:04:17 +0000300 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000301 return 1;
302
303 if (argc >= 4) {
Stephen Warren3f83c872012-10-30 12:04:19 +0000304 addr = simple_strtoul(argv[3], NULL, cmdline_base);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000305 } else {
306 addr_str = getenv("loadaddr");
307 if (addr_str != NULL)
308 addr = simple_strtoul(addr_str, NULL, 16);
309 else
310 addr = CONFIG_SYS_LOAD_ADDR;
311 }
312 if (argc >= 5) {
313 filename = argv[4];
314 } else {
315 filename = getenv("bootfile");
316 if (!filename) {
317 puts("** No boot file defined **\n");
318 return 1;
319 }
320 }
321 if (argc >= 6)
Stephen Warren3f83c872012-10-30 12:04:19 +0000322 bytes = simple_strtoul(argv[5], NULL, cmdline_base);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000323 else
324 bytes = 0;
325 if (argc >= 7)
Stephen Warren3f83c872012-10-30 12:04:19 +0000326 pos = simple_strtoul(argv[6], NULL, cmdline_base);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000327 else
328 pos = 0;
329
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100330 time = get_timer(0);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000331 len_read = fs_read(filename, addr, pos, bytes);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100332 time = get_timer(time);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000333 if (len_read <= 0)
334 return 1;
335
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100336 printf("%d bytes read in %lu ms", len_read, time);
337 if (time > 0) {
338 puts(" (");
339 print_size(len_read / time * 1000, "/s");
340 puts(")");
341 }
342 puts("\n");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000343
Simon Glass49c4f032013-02-24 17:33:23 +0000344 setenv_hex("filesize", len_read);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000345
346 return 0;
347}
348
349int do_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
350 int fstype)
351{
352 if (argc < 2)
353 return CMD_RET_USAGE;
Stephen Warrene9b0f992012-10-30 12:04:17 +0000354 if (argc > 4)
355 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000356
357 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
358 return 1;
359
Stephen Warrene9b0f992012-10-30 12:04:17 +0000360 if (fs_ls(argc >= 4 ? argv[3] : "/"))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000361 return 1;
362
363 return 0;
364}