]> Git Repo - J-u-boot.git/blame - cmd/ubi.c
spinand: bind mtdblock
[J-u-boot.git] / cmd / ubi.c
CommitLineData
694a0b3f
KP
1/*
2 * Unsorted Block Image commands
3 *
4 * Copyright (C) 2008 Samsung Electronics
5 * Kyungmin Park <[email protected]>
6 *
2d579e50 7 * Copyright 2008-2009 Stefan Roese <[email protected]>, DENX Software Engineering
694a0b3f
KP
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
694a0b3f 14#include <command.h>
c7694dd4 15#include <env.h>
694a0b3f 16#include <exports.h>
336d4615 17#include <malloc.h>
6e295186 18#include <memalign.h>
c58fb2cd 19#include <mtd.h>
694a0b3f
KP
20#include <nand.h>
21#include <onenand_uboot.h>
61b29b82 22#include <dm/devres.h>
694a0b3f
KP
23#include <linux/mtd/mtd.h>
24#include <linux/mtd/partitions.h>
ff94bc40 25#include <linux/err.h>
694a0b3f 26#include <ubi_uboot.h>
1221ce45 27#include <linux/errno.h>
694a0b3f 28#include <jffs2/load_kernel.h>
6de1daf6 29#include <linux/log2.h>
694a0b3f 30
147162da
JH
31#undef ubi_msg
32#define ubi_msg(fmt, ...) printf("UBI: " fmt "\n", ##__VA_ARGS__)
33
694a0b3f
KP
34/* Private own data */
35static struct ubi_device *ubi;
694a0b3f 36
2f15cfd1 37#ifdef CONFIG_CMD_UBIFS
10c20440 38#include <ubifs_uboot.h>
2f15cfd1
SR
39#endif
40
694a0b3f
KP
41static void display_volume_info(struct ubi_device *ubi)
42{
43 int i;
44
45 for (i = 0; i < (ubi->vtbl_slots + 1); i++) {
46 if (!ubi->volumes[i])
47 continue; /* Empty record */
48 ubi_dump_vol_info(ubi->volumes[i]);
49 }
50}
51
52static void display_ubi_info(struct ubi_device *ubi)
53{
54 ubi_msg("MTD device name: \"%s\"", ubi->mtd->name);
55 ubi_msg("MTD device size: %llu MiB", ubi->flash_size >> 20);
56 ubi_msg("physical eraseblock size: %d bytes (%d KiB)",
57 ubi->peb_size, ubi->peb_size >> 10);
58 ubi_msg("logical eraseblock size: %d bytes", ubi->leb_size);
59 ubi_msg("number of good PEBs: %d", ubi->good_peb_count);
60 ubi_msg("number of bad PEBs: %d", ubi->bad_peb_count);
61 ubi_msg("smallest flash I/O unit: %d", ubi->min_io_size);
62 ubi_msg("VID header offset: %d (aligned %d)",
63 ubi->vid_hdr_offset, ubi->vid_hdr_aloffset);
64 ubi_msg("data offset: %d", ubi->leb_start);
65 ubi_msg("max. allowed volumes: %d", ubi->vtbl_slots);
66 ubi_msg("wear-leveling threshold: %d", CONFIG_MTD_UBI_WL_THRESHOLD);
67 ubi_msg("number of internal volumes: %d", UBI_INT_VOL_COUNT);
68 ubi_msg("number of user volumes: %d",
69 ubi->vol_count - UBI_INT_VOL_COUNT);
70 ubi_msg("available PEBs: %d", ubi->avail_pebs);
71 ubi_msg("total number of reserved PEBs: %d", ubi->rsvd_pebs);
72 ubi_msg("number of PEBs reserved for bad PEB handling: %d",
73 ubi->beb_rsvd_pebs);
74 ubi_msg("max/mean erase counter: %d/%d", ubi->max_ec, ubi->mean_ec);
75}
76
77static int ubi_info(int layout)
78{
79 if (layout)
80 display_volume_info(ubi);
81 else
82 display_ubi_info(ubi);
83
84 return 0;
85}
86
6de1daf6
T
87static int ubi_list(const char *var, int numeric)
88{
89 size_t namelen, len, size;
90 char *str, *str2;
91 int i;
92
93 if (!var) {
94 for (i = 0; i < (ubi->vtbl_slots + 1); i++) {
95 if (!ubi->volumes[i])
96 continue;
97 if (ubi->volumes[i]->vol_id >= UBI_INTERNAL_VOL_START)
98 continue;
99 printf("%d: %s\n",
100 ubi->volumes[i]->vol_id,
101 ubi->volumes[i]->name);
102 }
103 return 0;
104 }
105
106 len = 0;
107 size = 16;
108 str = malloc(size);
109 if (!str)
110 return 1;
111
112 for (i = 0; i < (ubi->vtbl_slots + 1); i++) {
113 if (!ubi->volumes[i])
114 continue;
115 if (ubi->volumes[i]->vol_id >= UBI_INTERNAL_VOL_START)
116 continue;
117
118 if (numeric)
119 namelen = 10; /* strlen(stringify(INT_MAX)) */
120 else
121 namelen = strlen(ubi->volumes[i]->name);
122
123 if (len + namelen + 1 > size) {
124 size = roundup_pow_of_two(len + namelen + 1) * 2;
125 str2 = realloc(str, size);
126 if (!str2) {
127 free(str);
128 return 1;
129 }
130 str = str2;
131 }
132
133 if (len)
134 str[len++] = ' ';
135
136 if (numeric) {
137 len += sprintf(str + len, "%d", ubi->volumes[i]->vol_id) + 1;
138 } else {
139 memcpy(str + len, ubi->volumes[i]->name, namelen);
140 len += namelen;
141 str[len] = 0;
142 }
143 }
144
145 env_set(var, str);
146 free(str);
147
148 return 0;
149}
150
f9f4d809
HS
151static int ubi_check_volumename(const struct ubi_volume *vol, char *name)
152{
153 return strcmp(vol->name, name);
154}
155
156static int ubi_check(char *name)
157{
158 int i;
159
160 for (i = 0; i < (ubi->vtbl_slots + 1); i++) {
161 if (!ubi->volumes[i])
162 continue; /* Empty record */
163
164 if (!ubi_check_volumename(ubi->volumes[i], name))
165 return 0;
166 }
167
6d0f4526 168 return 1;
f9f4d809
HS
169}
170
694a0b3f
KP
171static int verify_mkvol_req(const struct ubi_device *ubi,
172 const struct ubi_mkvol_req *req)
173{
7f5d8a4d 174 int n, err = EINVAL;
694a0b3f
KP
175
176 if (req->bytes < 0 || req->alignment < 0 || req->vol_type < 0 ||
177 req->name_len < 0)
178 goto bad;
179
180 if ((req->vol_id < 0 || req->vol_id >= ubi->vtbl_slots) &&
181 req->vol_id != UBI_VOL_NUM_AUTO)
182 goto bad;
183
184 if (req->alignment == 0)
185 goto bad;
186
7f5d8a4d
SR
187 if (req->bytes == 0) {
188 printf("No space left in UBI device!\n");
189 err = ENOMEM;
694a0b3f 190 goto bad;
7f5d8a4d 191 }
694a0b3f
KP
192
193 if (req->vol_type != UBI_DYNAMIC_VOLUME &&
194 req->vol_type != UBI_STATIC_VOLUME)
195 goto bad;
196
197 if (req->alignment > ubi->leb_size)
198 goto bad;
199
200 n = req->alignment % ubi->min_io_size;
201 if (req->alignment != 1 && n)
202 goto bad;
203
204 if (req->name_len > UBI_VOL_NAME_MAX) {
7f5d8a4d
SR
205 printf("Name too long!\n");
206 err = ENAMETOOLONG;
694a0b3f
KP
207 goto bad;
208 }
209
210 return 0;
211bad:
694a0b3f
KP
212 return err;
213}
214
386f20ca
QS
215static int ubi_create_vol(char *volume, int64_t size, int dynamic, int vol_id,
216 bool skipcheck)
694a0b3f
KP
217{
218 struct ubi_mkvol_req req;
219 int err;
220
221 if (dynamic)
222 req.vol_type = UBI_DYNAMIC_VOLUME;
223 else
224 req.vol_type = UBI_STATIC_VOLUME;
225
00612422 226 req.vol_id = vol_id;
694a0b3f
KP
227 req.alignment = 1;
228 req.bytes = size;
229
230 strcpy(req.name, volume);
231 req.name_len = strlen(volume);
232 req.name[req.name_len] = '\0';
386f20ca
QS
233 req.flags = 0;
234 if (skipcheck)
235 req.flags |= UBI_VOL_SKIP_CRC_CHECK_FLG;
236
694a0b3f
KP
237 /* It's duplicated at drivers/mtd/ubi/cdev.c */
238 err = verify_mkvol_req(ubi, &req);
239 if (err) {
240 printf("verify_mkvol_req failed %d\n", err);
241 return err;
242 }
dd7185f1 243 printf("Creating %s volume %s of size %lld\n",
694a0b3f
KP
244 dynamic ? "dynamic" : "static", volume, size);
245 /* Call real ubi create volume */
246 return ubi_create_volume(ubi, &req);
247}
248
7f5d8a4d 249static struct ubi_volume *ubi_find_volume(char *volume)
694a0b3f 250{
abae0b76 251 struct ubi_volume *vol;
7f5d8a4d 252 int i;
694a0b3f
KP
253
254 for (i = 0; i < ubi->vtbl_slots; i++) {
255 vol = ubi->volumes[i];
7f5d8a4d
SR
256 if (vol && !strcmp(vol->name, volume))
257 return vol;
694a0b3f 258 }
7f5d8a4d
SR
259
260 printf("Volume %s not found!\n", volume);
261 return NULL;
262}
263
264static int ubi_remove_vol(char *volume)
265{
266 int err, reserved_pebs, i;
267 struct ubi_volume *vol;
268
269 vol = ubi_find_volume(volume);
270 if (vol == NULL)
271 return ENODEV;
272
273 printf("Remove UBI volume %s (id %d)\n", vol->name, vol->vol_id);
694a0b3f
KP
274
275 if (ubi->ro_mode) {
276 printf("It's read-only mode\n");
7f5d8a4d 277 err = EROFS;
694a0b3f
KP
278 goto out_err;
279 }
280
7f5d8a4d 281 err = ubi_change_vtbl_record(ubi, vol->vol_id, NULL);
694a0b3f
KP
282 if (err) {
283 printf("Error changing Vol tabel record err=%x\n", err);
284 goto out_err;
285 }
286 reserved_pebs = vol->reserved_pebs;
287 for (i = 0; i < vol->reserved_pebs; i++) {
288 err = ubi_eba_unmap_leb(ubi, vol, i);
289 if (err)
290 goto out_err;
291 }
292
293 kfree(vol->eba_tbl);
7f5d8a4d
SR
294 ubi->volumes[vol->vol_id]->eba_tbl = NULL;
295 ubi->volumes[vol->vol_id] = NULL;
694a0b3f
KP
296
297 ubi->rsvd_pebs -= reserved_pebs;
298 ubi->avail_pebs += reserved_pebs;
299 i = ubi->beb_rsvd_level - ubi->beb_rsvd_pebs;
300 if (i > 0) {
301 i = ubi->avail_pebs >= i ? i : ubi->avail_pebs;
302 ubi->avail_pebs -= i;
303 ubi->rsvd_pebs += i;
304 ubi->beb_rsvd_pebs += i;
305 if (i > 0)
306 ubi_msg("reserve more %d PEBs", i);
307 }
308 ubi->vol_count -= 1;
309
310 return 0;
311out_err:
0195a7bb 312 ubi_err(ubi, "cannot remove volume %s, error %d", volume, err);
7f5d8a4d
SR
313 if (err < 0)
314 err = -err;
694a0b3f
KP
315 return err;
316}
317
83f7078b
PR
318static int ubi_rename_vol(char *oldname, char *newname)
319{
320 struct ubi_volume *vol;
321 struct ubi_rename_entry rename;
322 struct ubi_volume_desc desc;
323 struct list_head list;
324
325 vol = ubi_find_volume(oldname);
326 if (!vol) {
327 printf("%s: volume %s doesn't exist\n", __func__, oldname);
328 return ENODEV;
329 }
330
1639988f
PR
331 if (!ubi_check(newname)) {
332 printf("%s: volume %s already exist\n", __func__, newname);
333 return EINVAL;
334 }
335
83f7078b
PR
336 printf("Rename UBI volume %s to %s\n", oldname, newname);
337
338 if (ubi->ro_mode) {
339 printf("%s: ubi device is in read-only mode\n", __func__);
340 return EROFS;
341 }
342
343 rename.new_name_len = strlen(newname);
344 strcpy(rename.new_name, newname);
345 rename.remove = 0;
346 desc.vol = vol;
347 desc.mode = 0;
348 rename.desc = &desc;
349 INIT_LIST_HEAD(&rename.list);
350 INIT_LIST_HEAD(&list);
351 list_add(&rename.list, &list);
352
353 return ubi_rename_volumes(ubi, &list);
354}
355
0e350f81 356static int ubi_volume_continue_write(char *volume, void *buf, size_t size)
694a0b3f 357{
abae0b76 358 int err;
694a0b3f
KP
359 struct ubi_volume *vol;
360
7f5d8a4d
SR
361 vol = ubi_find_volume(volume);
362 if (vol == NULL)
363 return ENODEV;
364
27b169f9
MK
365 if (!vol->updating) {
366 printf("UBI volume update was not initiated\n");
367 return EINVAL;
368 }
369
694a0b3f
KP
370 err = ubi_more_update_data(ubi, vol, buf, size);
371 if (err < 0) {
7f5d8a4d
SR
372 printf("Couldnt or partially wrote data\n");
373 return -err;
694a0b3f
KP
374 }
375
376 if (err) {
377 size = err;
378
379 err = ubi_check_volume(ubi, vol->vol_id);
7f5d8a4d
SR
380 if (err < 0)
381 return -err;
694a0b3f
KP
382
383 if (err) {
0195a7bb
HS
384 ubi_warn(ubi, "volume %d on UBI device %d is corrupt",
385 vol->vol_id, ubi->ubi_num);
694a0b3f
KP
386 vol->corrupted = 1;
387 }
388
389 vol->checked = 1;
390 ubi_gluebi_updated(vol);
391 }
392
393 return 0;
394}
395
cc734f5a
PB
396int ubi_volume_begin_write(char *volume, void *buf, size_t size,
397 size_t full_size)
398{
abae0b76
MK
399 int err;
400 int rsvd_bytes;
cc734f5a
PB
401 struct ubi_volume *vol;
402
403 vol = ubi_find_volume(volume);
404 if (vol == NULL)
405 return ENODEV;
406
407 rsvd_bytes = vol->reserved_pebs * (ubi->leb_size - vol->data_pad);
18f41f2f 408 if (size > rsvd_bytes) {
cc734f5a
PB
409 printf("size > volume size! Aborting!\n");
410 return EINVAL;
411 }
412
413 err = ubi_start_update(ubi, vol, full_size);
414 if (err < 0) {
415 printf("Cannot start volume update\n");
416 return -err;
417 }
418
27b169f9
MK
419 /* The volume is just wiped out */
420 if (!full_size)
421 return 0;
422
cc734f5a
PB
423 return ubi_volume_continue_write(volume, buf, size);
424}
425
426int ubi_volume_write(char *volume, void *buf, size_t size)
427{
428 return ubi_volume_begin_write(volume, buf, size, size);
429}
430
71829067 431int ubi_volume_read(char *volume, char *buf, size_t size)
694a0b3f 432{
7f5d8a4d 433 int err, lnum, off, len, tbuf_size;
694a0b3f
KP
434 void *tbuf;
435 unsigned long long tmp;
7f5d8a4d 436 struct ubi_volume *vol;
694a0b3f 437 loff_t offp = 0;
985fa93e 438 size_t len_read;
694a0b3f 439
7f5d8a4d
SR
440 vol = ubi_find_volume(volume);
441 if (vol == NULL)
442 return ENODEV;
694a0b3f 443
694a0b3f
KP
444 if (vol->updating) {
445 printf("updating");
7f5d8a4d 446 return EBUSY;
694a0b3f
KP
447 }
448 if (vol->upd_marker) {
449 printf("damaged volume, update marker is set");
7f5d8a4d 450 return EBADF;
694a0b3f
KP
451 }
452 if (offp == vol->used_bytes)
453 return 0;
454
455 if (size == 0) {
7f5d8a4d 456 printf("No size specified -> Using max size (%lld)\n", vol->used_bytes);
694a0b3f
KP
457 size = vol->used_bytes;
458 }
459
13415337 460 printf("Read %zu bytes from volume %s to %p\n", size, volume, buf);
68c7025d 461
694a0b3f
KP
462 if (vol->corrupted)
463 printf("read from corrupted volume %d", vol->vol_id);
464 if (offp + size > vol->used_bytes)
2984fd16 465 size = vol->used_bytes - offp;
694a0b3f
KP
466
467 tbuf_size = vol->usable_leb_size;
468 if (size < tbuf_size)
469 tbuf_size = ALIGN(size, ubi->min_io_size);
4519668b 470 tbuf = malloc_cache_aligned(tbuf_size);
694a0b3f
KP
471 if (!tbuf) {
472 printf("NO MEM\n");
7f5d8a4d 473 return ENOMEM;
694a0b3f
KP
474 }
475 len = size > tbuf_size ? tbuf_size : size;
476
477 tmp = offp;
478 off = do_div(tmp, vol->usable_leb_size);
479 lnum = tmp;
985fa93e 480 len_read = size;
694a0b3f
KP
481 do {
482 if (off + len >= vol->usable_leb_size)
483 len = vol->usable_leb_size - off;
484
485 err = ubi_eba_read_leb(ubi, vol, lnum, tbuf, off, len, 0);
486 if (err) {
487 printf("read err %x\n", err);
7f5d8a4d 488 err = -err;
694a0b3f
KP
489 break;
490 }
491 off += len;
492 if (off == vol->usable_leb_size) {
493 lnum += 1;
494 off -= vol->usable_leb_size;
495 }
496
497 size -= len;
498 offp += len;
499
694a0b3f 500 memcpy(buf, tbuf, len);
694a0b3f
KP
501
502 buf += len;
503 len = size > tbuf_size ? tbuf_size : size;
504 } while (size);
505
985fa93e
HD
506 if (!size)
507 env_set_hex("filesize", len_read);
508
694a0b3f 509 free(tbuf);
7f5d8a4d 510 return err;
694a0b3f
KP
511}
512
c58fb2cd 513static int ubi_dev_scan(struct mtd_info *info, const char *vid_header_offset)
694a0b3f 514{
25c8f400 515 char ubi_mtd_param_buffer[80];
694a0b3f
KP
516 int err;
517
c58fb2cd
MR
518 if (!vid_header_offset)
519 sprintf(ubi_mtd_param_buffer, "%s", info->name);
520 else
521 sprintf(ubi_mtd_param_buffer, "%s,%s", info->name,
522 vid_header_offset);
694a0b3f 523
25c8f400 524 err = ubi_mtd_param_parse(ubi_mtd_param_buffer, NULL);
c58fb2cd 525 if (err)
7f5d8a4d 526 return -err;
694a0b3f
KP
527
528 err = ubi_init();
c58fb2cd 529 if (err)
7f5d8a4d 530 return -err;
2ee951ba 531
694a0b3f
KP
532 return 0;
533}
534
e6661cf7
SR
535static int ubi_set_skip_check(char *volume, bool skip_check)
536{
537 struct ubi_vtbl_record vtbl_rec;
538 struct ubi_volume *vol;
539
540 vol = ubi_find_volume(volume);
541 if (!vol)
542 return ENODEV;
543
544 printf("%sing skip_check on volume %s\n",
545 skip_check ? "Sett" : "Clear", volume);
546
547 vtbl_rec = ubi->vtbl[vol->vol_id];
548 if (skip_check) {
549 vtbl_rec.flags |= UBI_VTBL_SKIP_CRC_CHECK_FLG;
550 vol->skip_check = 1;
551 } else {
552 vtbl_rec.flags &= ~UBI_VTBL_SKIP_CRC_CHECK_FLG;
553 vol->skip_check = 0;
554 }
555
556 return ubi_change_vtbl_record(ubi, vol->vol_id, &vtbl_rec);
557}
558
d821e5ed 559static int ubi_detach(void)
694a0b3f 560{
71829067
JH
561#ifdef CONFIG_CMD_UBIFS
562 /*
563 * Automatically unmount UBIFS partition when user
564 * changes the UBI device. Otherwise the following
565 * UBIFS commands will crash.
566 */
567 if (ubifs_is_mounted())
568 cmd_ubifs_umount();
569#endif
570
71829067
JH
571 /*
572 * Call ubi_exit() before re-initializing the UBI subsystem
573 */
c58fb2cd 574 if (ubi)
71829067 575 ubi_exit();
71829067 576
c58fb2cd
MR
577 ubi = NULL;
578
cddfc97d
HS
579 return 0;
580}
581
582int ubi_part(char *part_name, const char *vid_header_offset)
583{
c58fb2cd 584 struct mtd_info *mtd;
abae0b76 585 int err;
cddfc97d 586
af298f3d
AB
587 if (ubi && ubi->mtd && !strcmp(ubi->mtd->name, part_name)) {
588 printf("UBI partition '%s' already selected\n", part_name);
589 return 0;
590 }
591
cddfc97d 592 ubi_detach();
c58fb2cd
MR
593
594 mtd_probe_devices();
595 mtd = get_mtd_device_nm(part_name);
596 if (IS_ERR(mtd)) {
71829067
JH
597 printf("Partition %s not found!\n", part_name);
598 return 1;
599 }
c58fb2cd 600 put_mtd_device(mtd);
71829067 601
c58fb2cd 602 err = ubi_dev_scan(mtd, vid_header_offset);
71829067
JH
603 if (err) {
604 printf("UBI init error %d\n", err);
4a94e53b 605 printf("Please check, if the correct MTD partition is used (size big enough?)\n");
71829067
JH
606 return err;
607 }
608
609 ubi = ubi_devices[0];
610
611 return 0;
612}
613
09140113 614static int do_ubi(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
71829067 615{
abae0b76 616 int64_t size;
71829067 617 ulong addr = 0;
386f20ca 618 bool skipcheck = false;
71829067
JH
619
620 if (argc < 2)
621 return CMD_RET_USAGE;
622
76428561 623 if (strcmp(argv[1], "detach") == 0)
cddfc97d 624 return ubi_detach();
cddfc97d 625
694a0b3f 626 if (strcmp(argv[1], "part") == 0) {
25c8f400 627 const char *vid_header_offset = NULL;
2d579e50 628
694a0b3f
KP
629 /* Print current partition */
630 if (argc == 2) {
c58fb2cd
MR
631 if (!ubi) {
632 printf("Error, no UBI device selected!\n");
694a0b3f
KP
633 return 1;
634 }
635
c58fb2cd
MR
636 printf("Device %d: %s, MTD partition %s\n",
637 ubi->ubi_num, ubi->ubi_name, ubi->mtd->name);
694a0b3f
KP
638 return 0;
639 }
640
47e26b1b 641 if (argc < 3)
4c12eeb8 642 return CMD_RET_USAGE;
694a0b3f 643
25c8f400
SK
644 if (argc > 3)
645 vid_header_offset = argv[3];
694a0b3f 646
71829067 647 return ubi_part(argv[2], vid_header_offset);
694a0b3f
KP
648 }
649
c58fb2cd
MR
650 if ((strcmp(argv[1], "part") != 0) && !ubi) {
651 printf("Error, no UBI device selected!\n");
694a0b3f
KP
652 return 1;
653 }
654
655 if (strcmp(argv[1], "info") == 0) {
656 int layout = 0;
657 if (argc > 2 && !strncmp(argv[2], "l", 1))
658 layout = 1;
659 return ubi_info(layout);
660 }
661
6de1daf6
T
662 if (strcmp(argv[1], "list") == 0) {
663 int numeric = 0;
34031e9c 664 if (argc >= 3 && argv[2][0] == '-') {
6de1daf6
T
665 if (strcmp(argv[2], "-numeric") == 0)
666 numeric = 1;
667 else
668 return CMD_RET_USAGE;
669 }
670 if (!numeric && argc != 2 && argc != 3)
671 return CMD_RET_USAGE;
672 if (numeric && argc != 3 && argc != 4)
673 return CMD_RET_USAGE;
674 return ubi_list(argv[numeric ? 3 : 2], numeric);
675 }
676
f9f4d809
HS
677 if (strcmp(argv[1], "check") == 0) {
678 if (argc > 2)
679 return ubi_check(argv[2]);
680
681 printf("Error, no volume name passed\n");
682 return 1;
683 }
684
694a0b3f
KP
685 if (strncmp(argv[1], "create", 6) == 0) {
686 int dynamic = 1; /* default: dynamic volume */
00612422 687 int id = UBI_VOL_NUM_AUTO;
694a0b3f
KP
688
689 /* Use maximum available size */
690 size = 0;
691
386f20ca
QS
692 /* E.g., create volume with "skipcheck" bit set */
693 if (argc == 7) {
694 skipcheck = strncmp(argv[6], "--skipcheck", 11) == 0;
695 argc--;
696 }
697
00612422
LM
698 /* E.g., create volume size type vol_id */
699 if (argc == 6) {
700 id = simple_strtoull(argv[5], NULL, 16);
701 argc--;
702 }
703
694a0b3f
KP
704 /* E.g., create volume size type */
705 if (argc == 5) {
706 if (strncmp(argv[4], "s", 1) == 0)
707 dynamic = 0;
708 else if (strncmp(argv[4], "d", 1) != 0) {
709 printf("Incorrect type\n");
710 return 1;
711 }
712 argc--;
713 }
714 /* E.g., create volume size */
715 if (argc == 4) {
f59f07ec
LM
716 if (argv[3][0] != '-')
717 size = simple_strtoull(argv[3], NULL, 16);
694a0b3f
KP
718 argc--;
719 }
720 /* Use maximum available size */
7f5d8a4d 721 if (!size) {
dd7185f1
PB
722 size = (int64_t)ubi->avail_pebs * ubi->leb_size;
723 printf("No size specified -> Using max size (%lld)\n", size);
7f5d8a4d 724 }
694a0b3f 725 /* E.g., create volume */
386f20ca
QS
726 if (argc == 3) {
727 return ubi_create_vol(argv[2], size, dynamic, id,
728 skipcheck);
729 }
694a0b3f
KP
730 }
731
732 if (strncmp(argv[1], "remove", 6) == 0) {
733 /* E.g., remove volume */
734 if (argc == 3)
735 return ubi_remove_vol(argv[2]);
736 }
737
83f7078b
PR
738 if (IS_ENABLED(CONFIG_CMD_UBI_RENAME) && !strncmp(argv[1], "rename", 6))
739 return ubi_rename_vol(argv[2], argv[3]);
740
e6661cf7
SR
741 if (strncmp(argv[1], "skipcheck", 9) == 0) {
742 /* E.g., change skip_check flag */
743 if (argc == 4) {
744 skipcheck = strncmp(argv[3], "on", 2) == 0;
745 return ubi_set_skip_check(argv[2], skipcheck);
746 }
747 }
748
694a0b3f 749 if (strncmp(argv[1], "write", 5) == 0) {
71829067
JH
750 int ret;
751
694a0b3f
KP
752 if (argc < 5) {
753 printf("Please see usage\n");
754 return 1;
755 }
756
7e5f460e
SG
757 addr = hextoul(argv[2], NULL);
758 size = hextoul(argv[4], NULL);
694a0b3f 759
cc734f5a
PB
760 if (strlen(argv[1]) == 10 &&
761 strncmp(argv[1] + 5, ".part", 5) == 0) {
762 if (argc < 6) {
763 ret = ubi_volume_continue_write(argv[3],
764 (void *)addr, size);
765 } else {
766 size_t full_size;
7e5f460e 767 full_size = hextoul(argv[5], NULL);
cc734f5a
PB
768 ret = ubi_volume_begin_write(argv[3],
769 (void *)addr, size, full_size);
770 }
771 } else {
772 ret = ubi_volume_write(argv[3], (void *)addr, size);
773 }
71829067 774 if (!ret) {
dd7185f1 775 printf("%lld bytes written to volume %s\n", size,
71829067
JH
776 argv[3]);
777 }
778
779 return ret;
694a0b3f
KP
780 }
781
782 if (strncmp(argv[1], "read", 4) == 0) {
783 size = 0;
784
785 /* E.g., read volume size */
786 if (argc == 5) {
7e5f460e 787 size = hextoul(argv[4], NULL);
694a0b3f
KP
788 argc--;
789 }
790
791 /* E.g., read volume */
792 if (argc == 4) {
7e5f460e 793 addr = hextoul(argv[2], NULL);
694a0b3f
KP
794 argc--;
795 }
796
71829067 797 if (argc == 3) {
694a0b3f 798 return ubi_volume_read(argv[3], (char *)addr, size);
71829067 799 }
694a0b3f
KP
800 }
801
802 printf("Please see usage\n");
7f5d8a4d 803 return 1;
694a0b3f
KP
804}
805
388a29d0 806U_BOOT_CMD(
386f20ca 807 ubi, 7, 1, do_ubi,
2fb2604d 808 "ubi commands",
cddfc97d
HS
809 "detach"
810 " - detach ubi from a mtd partition\n"
811 "ubi part [part] [offset]\n"
25c8f400
SK
812 " - Show or set current partition (with optional VID"
813 " header offset)\n"
694a0b3f
KP
814 "ubi info [l[ayout]]"
815 " - Display volume and ubi layout information\n"
6de1daf6
T
816 "ubi list [flags]"
817 " - print the list of volumes\n"
818 "ubi list [flags] <varname>"
819 " - set environment variable to the list of volumes"
820 " (flags can be -numeric)\n"
f9f4d809
HS
821 "ubi check volumename"
822 " - check if volumename exists\n"
386f20ca 823 "ubi create[vol] volume [size] [type] [id] [--skipcheck]\n"
f59f07ec
LM
824 " - create volume name with size ('-' for maximum"
825 " available size)\n"
694a0b3f
KP
826 "ubi write[vol] address volume size"
827 " - Write volume from address with size\n"
cc734f5a
PB
828 "ubi write.part address volume size [fullsize]\n"
829 " - Write part of a volume from address\n"
694a0b3f
KP
830 "ubi read[vol] address volume [size]"
831 " - Read volume to address with size\n"
832 "ubi remove[vol] volume"
833 " - Remove volume\n"
83f7078b
PR
834#if IS_ENABLED(CONFIG_CMD_UBI_RENAME)
835 "ubi rename oldname newname\n"
836#endif
e6661cf7 837 "ubi skipcheck volume on/off - Set or clear skip_check flag in volume header\n"
694a0b3f 838 "[Legends]\n"
f6ca3b70
AW
839 " volume: character name\n"
840 " size: specified in bytes\n"
a89c33db 841 " type: s[tatic] or d[ynamic] (default=dynamic)"
694a0b3f 842);
This page took 0.687143 seconds and 4 git commands to generate.