2 * Unsorted Block Image commands
4 * Copyright (C) 2008 Samsung Electronics
5 * Kyungmin Park <kyungmin.park@samsung.com>
7 * Copyright 2008-2009 Stefan Roese <sr@denx.de>, DENX Software Engineering
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.
22 #include <onenand_uboot.h>
23 #include <dm/devres.h>
24 #include <linux/mtd/mtd.h>
25 #include <linux/mtd/partitions.h>
26 #include <linux/err.h>
27 #include <ubi_uboot.h>
28 #include <linux/errno.h>
29 #include <jffs2/load_kernel.h>
30 #include <linux/log2.h>
33 #define ubi_msg(fmt, ...) printf("UBI: " fmt "\n", ##__VA_ARGS__)
35 /* Private own data */
36 static struct ubi_device
*ubi
;
38 #ifdef CONFIG_CMD_UBIFS
39 #include <ubifs_uboot.h>
42 static void display_volume_info(struct ubi_device
*ubi
)
46 for (i
= 0; i
< (ubi
->vtbl_slots
+ 1); i
++) {
48 continue; /* Empty record */
49 ubi_dump_vol_info(ubi
->volumes
[i
]);
53 static void display_ubi_info(struct ubi_device
*ubi
)
55 ubi_msg("MTD device name: \"%s\"", ubi
->mtd
->name
);
56 ubi_msg("MTD device size: %llu MiB", ubi
->flash_size
>> 20);
57 ubi_msg("physical eraseblock size: %d bytes (%d KiB)",
58 ubi
->peb_size
, ubi
->peb_size
>> 10);
59 ubi_msg("logical eraseblock size: %d bytes", ubi
->leb_size
);
60 ubi_msg("number of good PEBs: %d", ubi
->good_peb_count
);
61 ubi_msg("number of bad PEBs: %d", ubi
->bad_peb_count
);
62 ubi_msg("smallest flash I/O unit: %d", ubi
->min_io_size
);
63 ubi_msg("VID header offset: %d (aligned %d)",
64 ubi
->vid_hdr_offset
, ubi
->vid_hdr_aloffset
);
65 ubi_msg("data offset: %d", ubi
->leb_start
);
66 ubi_msg("max. allowed volumes: %d", ubi
->vtbl_slots
);
67 ubi_msg("wear-leveling threshold: %d", CONFIG_MTD_UBI_WL_THRESHOLD
);
68 ubi_msg("number of internal volumes: %d", UBI_INT_VOL_COUNT
);
69 ubi_msg("number of user volumes: %d",
70 ubi
->vol_count
- UBI_INT_VOL_COUNT
);
71 ubi_msg("available PEBs: %d", ubi
->avail_pebs
);
72 ubi_msg("total number of reserved PEBs: %d", ubi
->rsvd_pebs
);
73 ubi_msg("number of PEBs reserved for bad PEB handling: %d",
75 ubi_msg("max/mean erase counter: %d/%d", ubi
->max_ec
, ubi
->mean_ec
);
78 static int ubi_info(int layout
)
81 display_volume_info(ubi
);
83 display_ubi_info(ubi
);
88 static int ubi_list(const char *var
, int numeric
)
90 size_t namelen
, len
, size
;
95 for (i
= 0; i
< (ubi
->vtbl_slots
+ 1); i
++) {
98 if (ubi
->volumes
[i
]->vol_id
>= UBI_INTERNAL_VOL_START
)
101 ubi
->volumes
[i
]->vol_id
,
102 ubi
->volumes
[i
]->name
);
113 for (i
= 0; i
< (ubi
->vtbl_slots
+ 1); i
++) {
114 if (!ubi
->volumes
[i
])
116 if (ubi
->volumes
[i
]->vol_id
>= UBI_INTERNAL_VOL_START
)
120 namelen
= 10; /* strlen(stringify(INT_MAX)) */
122 namelen
= strlen(ubi
->volumes
[i
]->name
);
124 if (len
+ namelen
+ 1 > size
) {
125 size
= roundup_pow_of_two(len
+ namelen
+ 1) * 2;
126 str2
= realloc(str
, size
);
138 len
+= sprintf(str
+ len
, "%d", ubi
->volumes
[i
]->vol_id
) + 1;
140 memcpy(str
+ len
, ubi
->volumes
[i
]->name
, namelen
);
152 static int ubi_check_volumename(const struct ubi_volume
*vol
, char *name
)
154 return strcmp(vol
->name
, name
);
157 static int ubi_check(char *name
)
161 for (i
= 0; i
< (ubi
->vtbl_slots
+ 1); i
++) {
162 if (!ubi
->volumes
[i
])
163 continue; /* Empty record */
165 if (!ubi_check_volumename(ubi
->volumes
[i
], name
))
172 static int verify_mkvol_req(const struct ubi_device
*ubi
,
173 const struct ubi_mkvol_req
*req
)
177 if (req
->bytes
< 0 || req
->alignment
< 0 || req
->vol_type
< 0 ||
181 if ((req
->vol_id
< 0 || req
->vol_id
>= ubi
->vtbl_slots
) &&
182 req
->vol_id
!= UBI_VOL_NUM_AUTO
)
185 if (req
->alignment
== 0)
188 if (req
->bytes
== 0) {
189 printf("No space left in UBI device!\n");
194 if (req
->vol_type
!= UBI_DYNAMIC_VOLUME
&&
195 req
->vol_type
!= UBI_STATIC_VOLUME
)
198 if (req
->alignment
> ubi
->leb_size
)
201 n
= req
->alignment
% ubi
->min_io_size
;
202 if (req
->alignment
!= 1 && n
)
205 if (req
->name_len
> UBI_VOL_NAME_MAX
) {
206 printf("Name too long!\n");
216 static int ubi_create_vol(char *volume
, int64_t size
, int dynamic
, int vol_id
,
219 struct ubi_mkvol_req req
;
223 req
.vol_type
= UBI_DYNAMIC_VOLUME
;
225 req
.vol_type
= UBI_STATIC_VOLUME
;
231 strcpy(req
.name
, volume
);
232 req
.name_len
= strlen(volume
);
233 req
.name
[req
.name_len
] = '\0';
236 req
.flags
|= UBI_VOL_SKIP_CRC_CHECK_FLG
;
238 /* It's duplicated at drivers/mtd/ubi/cdev.c */
239 err
= verify_mkvol_req(ubi
, &req
);
241 printf("verify_mkvol_req failed %d\n", err
);
244 printf("Creating %s volume %s of size %lld\n",
245 dynamic
? "dynamic" : "static", volume
, size
);
246 /* Call real ubi create volume */
247 return ubi_create_volume(ubi
, &req
);
250 static struct ubi_volume
*ubi_find_volume(char *volume
)
252 struct ubi_volume
*vol
;
255 for (i
= 0; i
< ubi
->vtbl_slots
; i
++) {
256 vol
= ubi
->volumes
[i
];
257 if (vol
&& !strcmp(vol
->name
, volume
))
261 printf("Volume %s not found!\n", volume
);
265 static int ubi_remove_vol(char *volume
)
267 int err
, reserved_pebs
, i
;
268 struct ubi_volume
*vol
;
270 vol
= ubi_find_volume(volume
);
274 printf("Remove UBI volume %s (id %d)\n", vol
->name
, vol
->vol_id
);
277 printf("It's read-only mode\n");
282 err
= ubi_change_vtbl_record(ubi
, vol
->vol_id
, NULL
);
284 printf("Error changing Vol tabel record err=%x\n", err
);
287 reserved_pebs
= vol
->reserved_pebs
;
288 for (i
= 0; i
< vol
->reserved_pebs
; i
++) {
289 err
= ubi_eba_unmap_leb(ubi
, vol
, i
);
295 ubi
->volumes
[vol
->vol_id
]->eba_tbl
= NULL
;
296 ubi
->volumes
[vol
->vol_id
] = NULL
;
298 ubi
->rsvd_pebs
-= reserved_pebs
;
299 ubi
->avail_pebs
+= reserved_pebs
;
300 i
= ubi
->beb_rsvd_level
- ubi
->beb_rsvd_pebs
;
302 i
= ubi
->avail_pebs
>= i
? i
: ubi
->avail_pebs
;
303 ubi
->avail_pebs
-= i
;
305 ubi
->beb_rsvd_pebs
+= i
;
307 ubi_msg("reserve more %d PEBs", i
);
313 ubi_err(ubi
, "cannot remove volume %s, error %d", volume
, err
);
319 static int ubi_rename_vol(char *oldname
, char *newname
)
321 struct ubi_volume
*vol
;
322 struct ubi_rename_entry rename
;
323 struct ubi_volume_desc desc
;
324 struct list_head list
;
326 vol
= ubi_find_volume(oldname
);
328 printf("%s: volume %s doesn't exist\n", __func__
, oldname
);
332 if (!ubi_check(newname
)) {
333 printf("%s: volume %s already exist\n", __func__
, newname
);
337 printf("Rename UBI volume %s to %s\n", oldname
, newname
);
340 printf("%s: ubi device is in read-only mode\n", __func__
);
344 rename
.new_name_len
= strlen(newname
);
345 strcpy(rename
.new_name
, newname
);
350 INIT_LIST_HEAD(&rename
.list
);
351 INIT_LIST_HEAD(&list
);
352 list_add(&rename
.list
, &list
);
354 return ubi_rename_volumes(ubi
, &list
);
357 static int ubi_volume_continue_write(char *volume
, void *buf
, size_t size
)
360 struct ubi_volume
*vol
;
362 vol
= ubi_find_volume(volume
);
366 if (!vol
->updating
) {
367 printf("UBI volume update was not initiated\n");
371 err
= ubi_more_update_data(ubi
, vol
, buf
, size
);
373 printf("Couldnt or partially wrote data\n");
380 err
= ubi_check_volume(ubi
, vol
->vol_id
);
385 ubi_warn(ubi
, "volume %d on UBI device %d is corrupt",
386 vol
->vol_id
, ubi
->ubi_num
);
391 ubi_gluebi_updated(vol
);
397 int ubi_volume_begin_write(char *volume
, void *buf
, size_t size
,
402 struct ubi_volume
*vol
;
404 vol
= ubi_find_volume(volume
);
408 rsvd_bytes
= vol
->reserved_pebs
* (ubi
->leb_size
- vol
->data_pad
);
409 if (size
> rsvd_bytes
) {
410 printf("size > volume size! Aborting!\n");
414 err
= ubi_start_update(ubi
, vol
, full_size
);
416 printf("Cannot start volume update\n");
420 /* The volume is just wiped out */
424 return ubi_volume_continue_write(volume
, buf
, size
);
427 static int ubi_volume_offset_write(char *volume
, void *buf
, loff_t offset
,
430 int len
, tbuf_size
, ret
;
432 struct ubi_volume
*vol
;
436 vol
= ubi_find_volume(volume
);
440 if (size
> vol
->reserved_pebs
* (ubi
->leb_size
- vol
->data_pad
))
443 tbuf_size
= vol
->usable_leb_size
;
444 tbuf
= malloc_cache_aligned(tbuf_size
);
449 off
= do_div(lnum
, vol
->usable_leb_size
);
452 struct ubi_volume_desc desc
= {
454 .mode
= UBI_READWRITE
,
457 len
= size
> tbuf_size
? tbuf_size
: size
;
458 if (off
+ len
>= vol
->usable_leb_size
)
459 len
= vol
->usable_leb_size
- off
;
461 ret
= ubi_read(&desc
, (int)lnum
, tbuf
, 0, tbuf_size
);
463 pr_err("Failed to read leb %lld (%d)\n", lnum
, ret
);
467 memcpy(tbuf
+ off
, buf
, len
);
469 ret
= ubi_leb_change(&desc
, (int)lnum
, tbuf
, tbuf_size
);
471 pr_err("Failed to write leb %lld (%d)\n", lnum
, ret
);
476 if (off
>= vol
->usable_leb_size
) {
478 off
-= vol
->usable_leb_size
;
490 int ubi_volume_write(char *volume
, void *buf
, loff_t offset
, size_t size
)
494 led_activity_blink();
497 ret
= ubi_volume_begin_write(volume
, buf
, size
, size
);
499 ret
= ubi_volume_offset_write(volume
, buf
, offset
, size
);
506 int ubi_volume_read(char *volume
, char *buf
, loff_t offset
, size_t size
)
508 int err
, lnum
, off
, len
, tbuf_size
;
510 unsigned long long tmp
;
511 struct ubi_volume
*vol
;
512 loff_t offp
= offset
;
515 vol
= ubi_find_volume(volume
);
523 if (vol
->upd_marker
) {
524 printf("damaged volume, update marker is set");
527 if (offp
== vol
->used_bytes
)
531 printf("No size specified -> Using max size (%lld)\n", vol
->used_bytes
);
532 size
= vol
->used_bytes
;
535 printf("Read %zu bytes from volume %s to %p\n", size
, volume
, buf
);
538 printf("read from corrupted volume %d", vol
->vol_id
);
539 if (offp
+ size
> vol
->used_bytes
)
540 size
= vol
->used_bytes
- offp
;
542 tbuf_size
= vol
->usable_leb_size
;
543 if (size
< tbuf_size
)
544 tbuf_size
= ALIGN(size
, ubi
->min_io_size
);
545 tbuf
= malloc_cache_aligned(tbuf_size
);
550 len
= size
> tbuf_size
? tbuf_size
: size
;
553 off
= do_div(tmp
, vol
->usable_leb_size
);
557 if (off
+ len
>= vol
->usable_leb_size
)
558 len
= vol
->usable_leb_size
- off
;
560 err
= ubi_eba_read_leb(ubi
, vol
, lnum
, tbuf
, off
, len
, 0);
562 printf("read err %x\n", err
);
567 if (off
== vol
->usable_leb_size
) {
569 off
-= vol
->usable_leb_size
;
575 memcpy(buf
, tbuf
, len
);
578 len
= size
> tbuf_size
? tbuf_size
: size
;
582 env_set_hex("filesize", len_read
);
588 static int ubi_dev_scan(struct mtd_info
*info
, const char *vid_header_offset
)
590 char ubi_mtd_param_buffer
[80];
593 if (!vid_header_offset
)
594 sprintf(ubi_mtd_param_buffer
, "%s", info
->name
);
596 sprintf(ubi_mtd_param_buffer
, "%s,%s", info
->name
,
599 err
= ubi_mtd_param_parse(ubi_mtd_param_buffer
, NULL
);
610 static int ubi_set_skip_check(char *volume
, bool skip_check
)
612 struct ubi_vtbl_record vtbl_rec
;
613 struct ubi_volume
*vol
;
615 vol
= ubi_find_volume(volume
);
619 printf("%sing skip_check on volume %s\n",
620 skip_check
? "Sett" : "Clear", volume
);
622 vtbl_rec
= ubi
->vtbl
[vol
->vol_id
];
624 vtbl_rec
.flags
|= UBI_VTBL_SKIP_CRC_CHECK_FLG
;
627 vtbl_rec
.flags
&= ~UBI_VTBL_SKIP_CRC_CHECK_FLG
;
631 return ubi_change_vtbl_record(ubi
, vol
->vol_id
, &vtbl_rec
);
634 static int ubi_detach(void)
636 #ifdef CONFIG_CMD_UBIFS
638 * Automatically unmount UBIFS partition when user
639 * changes the UBI device. Otherwise the following
640 * UBIFS commands will crash.
642 if (ubifs_is_mounted())
647 * Call ubi_exit() before re-initializing the UBI subsystem
657 int ubi_part(char *part_name
, const char *vid_header_offset
)
659 struct mtd_info
*mtd
;
662 if (ubi
&& ubi
->mtd
&& !strcmp(ubi
->mtd
->name
, part_name
)) {
663 printf("UBI partition '%s' already selected\n", part_name
);
670 mtd
= get_mtd_device_nm(part_name
);
672 printf("Partition %s not found!\n", part_name
);
677 err
= ubi_dev_scan(mtd
, vid_header_offset
);
679 printf("UBI init error %d\n", err
);
680 printf("Please check, if the correct MTD partition is used (size big enough?)\n");
684 ubi
= ubi_devices
[0];
689 static int do_ubi(struct cmd_tbl
*cmdtp
, int flag
, int argc
, char *const argv
[])
693 bool skipcheck
= false;
696 return CMD_RET_USAGE
;
698 if (strcmp(argv
[1], "detach") == 0)
701 if (strcmp(argv
[1], "part") == 0) {
702 const char *vid_header_offset
= NULL
;
704 /* Print current partition */
707 printf("Error, no UBI device selected!\n");
711 printf("Device %d: %s, MTD partition %s\n",
712 ubi
->ubi_num
, ubi
->ubi_name
, ubi
->mtd
->name
);
717 return CMD_RET_USAGE
;
720 vid_header_offset
= argv
[3];
722 return ubi_part(argv
[2], vid_header_offset
);
725 if ((strcmp(argv
[1], "part") != 0) && !ubi
) {
726 printf("Error, no UBI device selected!\n");
730 if (strcmp(argv
[1], "info") == 0) {
732 if (argc
> 2 && !strncmp(argv
[2], "l", 1))
734 return ubi_info(layout
);
737 if (strcmp(argv
[1], "list") == 0) {
739 if (argc
>= 3 && argv
[2][0] == '-') {
740 if (strcmp(argv
[2], "-numeric") == 0)
743 return CMD_RET_USAGE
;
745 if (!numeric
&& argc
!= 2 && argc
!= 3)
746 return CMD_RET_USAGE
;
747 if (numeric
&& argc
!= 3 && argc
!= 4)
748 return CMD_RET_USAGE
;
749 return ubi_list(argv
[numeric
? 3 : 2], numeric
);
752 if (strcmp(argv
[1], "check") == 0) {
754 return ubi_check(argv
[2]);
756 printf("Error, no volume name passed\n");
760 if (strncmp(argv
[1], "create", 6) == 0) {
761 int dynamic
= 1; /* default: dynamic volume */
762 int id
= UBI_VOL_NUM_AUTO
;
764 /* Use maximum available size */
767 /* E.g., create volume with "skipcheck" bit set */
769 skipcheck
= strncmp(argv
[6], "--skipcheck", 11) == 0;
773 /* E.g., create volume size type vol_id */
775 id
= simple_strtoull(argv
[5], NULL
, 16);
779 /* E.g., create volume size type */
781 if (strncmp(argv
[4], "s", 1) == 0)
783 else if (strncmp(argv
[4], "d", 1) != 0) {
784 printf("Incorrect type\n");
789 /* E.g., create volume size */
791 if (argv
[3][0] != '-')
792 size
= simple_strtoull(argv
[3], NULL
, 16);
795 /* Use maximum available size */
797 size
= (int64_t)ubi
->avail_pebs
* ubi
->leb_size
;
798 printf("No size specified -> Using max size (%lld)\n", size
);
800 /* E.g., create volume */
802 return ubi_create_vol(argv
[2], size
, dynamic
, id
,
807 if (strncmp(argv
[1], "remove", 6) == 0) {
808 /* E.g., remove volume */
810 return ubi_remove_vol(argv
[2]);
813 if (IS_ENABLED(CONFIG_CMD_UBI_RENAME
) && !strncmp(argv
[1], "rename", 6))
814 return ubi_rename_vol(argv
[2], argv
[3]);
816 if (strncmp(argv
[1], "skipcheck", 9) == 0) {
817 /* E.g., change skip_check flag */
819 skipcheck
= strncmp(argv
[3], "on", 2) == 0;
820 return ubi_set_skip_check(argv
[2], skipcheck
);
824 if (strncmp(argv
[1], "write", 5) == 0) {
828 printf("Please see usage\n");
832 addr
= hextoul(argv
[2], NULL
);
833 size
= hextoul(argv
[4], NULL
);
835 if (strlen(argv
[1]) == 10 &&
836 strncmp(argv
[1] + 5, ".part", 5) == 0) {
838 ret
= ubi_volume_continue_write(argv
[3],
842 full_size
= hextoul(argv
[5], NULL
);
843 ret
= ubi_volume_begin_write(argv
[3],
844 (void *)addr
, size
, full_size
);
847 ret
= ubi_volume_write(argv
[3], (void *)addr
, 0, size
);
850 printf("%lld bytes written to volume %s\n", size
,
857 if (strncmp(argv
[1], "read", 4) == 0) {
860 /* E.g., read volume size */
862 size
= hextoul(argv
[4], NULL
);
866 /* E.g., read volume */
868 addr
= hextoul(argv
[2], NULL
);
873 return ubi_volume_read(argv
[3], (char *)addr
, 0, size
);
877 printf("Please see usage\n");
885 " - detach ubi from a mtd partition\n"
886 "ubi part [part] [offset]\n"
887 " - Show or set current partition (with optional VID"
889 "ubi info [l[ayout]]"
890 " - Display volume and ubi layout information\n"
892 " - print the list of volumes\n"
893 "ubi list [flags] <varname>"
894 " - set environment variable to the list of volumes"
895 " (flags can be -numeric)\n"
896 "ubi check volumename"
897 " - check if volumename exists\n"
898 "ubi create[vol] volume [size] [type] [id] [--skipcheck]\n"
899 " - create volume name with size ('-' for maximum"
901 "ubi write[vol] address volume size"
902 " - Write volume from address with size\n"
903 "ubi write.part address volume size [fullsize]\n"
904 " - Write part of a volume from address\n"
905 "ubi read[vol] address volume [size]"
906 " - Read volume to address with size\n"
907 "ubi remove[vol] volume"
909 #if IS_ENABLED(CONFIG_CMD_UBI_RENAME)
910 "ubi rename oldname newname\n"
912 "ubi skipcheck volume on/off - Set or clear skip_check flag in volume header\n"
914 " volume: character name\n"
915 " size: specified in bytes\n"
916 " type: s[tatic] or d[ynamic] (default=dynamic)"