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.
21 #include <onenand_uboot.h>
22 #include <linux/mtd/mtd.h>
23 #include <linux/mtd/partitions.h>
24 #include <linux/err.h>
25 #include <ubi_uboot.h>
26 #include <linux/errno.h>
27 #include <jffs2/load_kernel.h>
30 #define ubi_msg(fmt, ...) printf("UBI: " fmt "\n", ##__VA_ARGS__)
32 /* Private own data */
33 static struct ubi_device *ubi;
35 #ifdef CONFIG_CMD_UBIFS
36 #include <ubifs_uboot.h>
39 static void display_volume_info(struct ubi_device *ubi)
43 for (i = 0; i < (ubi->vtbl_slots + 1); i++) {
45 continue; /* Empty record */
46 ubi_dump_vol_info(ubi->volumes[i]);
50 static void display_ubi_info(struct ubi_device *ubi)
52 ubi_msg("MTD device name: \"%s\"", ubi->mtd->name);
53 ubi_msg("MTD device size: %llu MiB", ubi->flash_size >> 20);
54 ubi_msg("physical eraseblock size: %d bytes (%d KiB)",
55 ubi->peb_size, ubi->peb_size >> 10);
56 ubi_msg("logical eraseblock size: %d bytes", ubi->leb_size);
57 ubi_msg("number of good PEBs: %d", ubi->good_peb_count);
58 ubi_msg("number of bad PEBs: %d", ubi->bad_peb_count);
59 ubi_msg("smallest flash I/O unit: %d", ubi->min_io_size);
60 ubi_msg("VID header offset: %d (aligned %d)",
61 ubi->vid_hdr_offset, ubi->vid_hdr_aloffset);
62 ubi_msg("data offset: %d", ubi->leb_start);
63 ubi_msg("max. allowed volumes: %d", ubi->vtbl_slots);
64 ubi_msg("wear-leveling threshold: %d", CONFIG_MTD_UBI_WL_THRESHOLD);
65 ubi_msg("number of internal volumes: %d", UBI_INT_VOL_COUNT);
66 ubi_msg("number of user volumes: %d",
67 ubi->vol_count - UBI_INT_VOL_COUNT);
68 ubi_msg("available PEBs: %d", ubi->avail_pebs);
69 ubi_msg("total number of reserved PEBs: %d", ubi->rsvd_pebs);
70 ubi_msg("number of PEBs reserved for bad PEB handling: %d",
72 ubi_msg("max/mean erase counter: %d/%d", ubi->max_ec, ubi->mean_ec);
75 static int ubi_info(int layout)
78 display_volume_info(ubi);
80 display_ubi_info(ubi);
85 static int ubi_check_volumename(const struct ubi_volume *vol, char *name)
87 return strcmp(vol->name, name);
90 static int ubi_check(char *name)
94 for (i = 0; i < (ubi->vtbl_slots + 1); i++) {
96 continue; /* Empty record */
98 if (!ubi_check_volumename(ubi->volumes[i], name))
105 static int verify_mkvol_req(const struct ubi_device *ubi,
106 const struct ubi_mkvol_req *req)
110 if (req->bytes < 0 || req->alignment < 0 || req->vol_type < 0 ||
114 if ((req->vol_id < 0 || req->vol_id >= ubi->vtbl_slots) &&
115 req->vol_id != UBI_VOL_NUM_AUTO)
118 if (req->alignment == 0)
121 if (req->bytes == 0) {
122 printf("No space left in UBI device!\n");
127 if (req->vol_type != UBI_DYNAMIC_VOLUME &&
128 req->vol_type != UBI_STATIC_VOLUME)
131 if (req->alignment > ubi->leb_size)
134 n = req->alignment % ubi->min_io_size;
135 if (req->alignment != 1 && n)
138 if (req->name_len > UBI_VOL_NAME_MAX) {
139 printf("Name too long!\n");
149 static int ubi_create_vol(char *volume, int64_t size, int dynamic, int vol_id,
152 struct ubi_mkvol_req req;
156 req.vol_type = UBI_DYNAMIC_VOLUME;
158 req.vol_type = UBI_STATIC_VOLUME;
164 strcpy(req.name, volume);
165 req.name_len = strlen(volume);
166 req.name[req.name_len] = '\0';
169 req.flags |= UBI_VOL_SKIP_CRC_CHECK_FLG;
171 /* It's duplicated at drivers/mtd/ubi/cdev.c */
172 err = verify_mkvol_req(ubi, &req);
174 printf("verify_mkvol_req failed %d\n", err);
177 printf("Creating %s volume %s of size %lld\n",
178 dynamic ? "dynamic" : "static", volume, size);
179 /* Call real ubi create volume */
180 return ubi_create_volume(ubi, &req);
183 static struct ubi_volume *ubi_find_volume(char *volume)
185 struct ubi_volume *vol = NULL;
188 for (i = 0; i < ubi->vtbl_slots; i++) {
189 vol = ubi->volumes[i];
190 if (vol && !strcmp(vol->name, volume))
194 printf("Volume %s not found!\n", volume);
198 static int ubi_remove_vol(char *volume)
200 int err, reserved_pebs, i;
201 struct ubi_volume *vol;
203 vol = ubi_find_volume(volume);
207 printf("Remove UBI volume %s (id %d)\n", vol->name, vol->vol_id);
210 printf("It's read-only mode\n");
215 err = ubi_change_vtbl_record(ubi, vol->vol_id, NULL);
217 printf("Error changing Vol tabel record err=%x\n", err);
220 reserved_pebs = vol->reserved_pebs;
221 for (i = 0; i < vol->reserved_pebs; i++) {
222 err = ubi_eba_unmap_leb(ubi, vol, i);
228 ubi->volumes[vol->vol_id]->eba_tbl = NULL;
229 ubi->volumes[vol->vol_id] = NULL;
231 ubi->rsvd_pebs -= reserved_pebs;
232 ubi->avail_pebs += reserved_pebs;
233 i = ubi->beb_rsvd_level - ubi->beb_rsvd_pebs;
235 i = ubi->avail_pebs >= i ? i : ubi->avail_pebs;
236 ubi->avail_pebs -= i;
238 ubi->beb_rsvd_pebs += i;
240 ubi_msg("reserve more %d PEBs", i);
246 ubi_err(ubi, "cannot remove volume %s, error %d", volume, err);
252 static int ubi_volume_continue_write(char *volume, void *buf, size_t size)
255 struct ubi_volume *vol;
257 vol = ubi_find_volume(volume);
261 err = ubi_more_update_data(ubi, vol, buf, size);
263 printf("Couldnt or partially wrote data\n");
270 err = ubi_check_volume(ubi, vol->vol_id);
275 ubi_warn(ubi, "volume %d on UBI device %d is corrupt",
276 vol->vol_id, ubi->ubi_num);
281 ubi_gluebi_updated(vol);
287 int ubi_volume_begin_write(char *volume, void *buf, size_t size,
292 struct ubi_volume *vol;
294 vol = ubi_find_volume(volume);
298 rsvd_bytes = vol->reserved_pebs * (ubi->leb_size - vol->data_pad);
299 if (size > rsvd_bytes) {
300 printf("size > volume size! Aborting!\n");
304 err = ubi_start_update(ubi, vol, full_size);
306 printf("Cannot start volume update\n");
310 return ubi_volume_continue_write(volume, buf, size);
313 int ubi_volume_write(char *volume, void *buf, size_t size)
315 return ubi_volume_begin_write(volume, buf, size, size);
318 int ubi_volume_read(char *volume, char *buf, size_t size)
320 int err, lnum, off, len, tbuf_size;
322 unsigned long long tmp;
323 struct ubi_volume *vol;
327 vol = ubi_find_volume(volume);
335 if (vol->upd_marker) {
336 printf("damaged volume, update marker is set");
339 if (offp == vol->used_bytes)
343 printf("No size specified -> Using max size (%lld)\n", vol->used_bytes);
344 size = vol->used_bytes;
347 printf("Read %zu bytes from volume %s to %p\n", size, volume, buf);
350 printf("read from corrupted volume %d", vol->vol_id);
351 if (offp + size > vol->used_bytes)
352 size = vol->used_bytes - offp;
354 tbuf_size = vol->usable_leb_size;
355 if (size < tbuf_size)
356 tbuf_size = ALIGN(size, ubi->min_io_size);
357 tbuf = malloc_cache_aligned(tbuf_size);
362 len = size > tbuf_size ? tbuf_size : size;
365 off = do_div(tmp, vol->usable_leb_size);
369 if (off + len >= vol->usable_leb_size)
370 len = vol->usable_leb_size - off;
372 err = ubi_eba_read_leb(ubi, vol, lnum, tbuf, off, len, 0);
374 printf("read err %x\n", err);
379 if (off == vol->usable_leb_size) {
381 off -= vol->usable_leb_size;
387 memcpy(buf, tbuf, len);
390 len = size > tbuf_size ? tbuf_size : size;
394 env_set_hex("filesize", len_read);
400 static int ubi_dev_scan(struct mtd_info *info, const char *vid_header_offset)
402 char ubi_mtd_param_buffer[80];
405 if (!vid_header_offset)
406 sprintf(ubi_mtd_param_buffer, "%s", info->name);
408 sprintf(ubi_mtd_param_buffer, "%s,%s", info->name,
411 err = ubi_mtd_param_parse(ubi_mtd_param_buffer, NULL);
422 static int ubi_set_skip_check(char *volume, bool skip_check)
424 struct ubi_vtbl_record vtbl_rec;
425 struct ubi_volume *vol;
427 vol = ubi_find_volume(volume);
431 printf("%sing skip_check on volume %s\n",
432 skip_check ? "Sett" : "Clear", volume);
434 vtbl_rec = ubi->vtbl[vol->vol_id];
436 vtbl_rec.flags |= UBI_VTBL_SKIP_CRC_CHECK_FLG;
439 vtbl_rec.flags &= ~UBI_VTBL_SKIP_CRC_CHECK_FLG;
443 return ubi_change_vtbl_record(ubi, vol->vol_id, &vtbl_rec);
446 static int ubi_detach(void)
448 #ifdef CONFIG_CMD_UBIFS
450 * Automatically unmount UBIFS partition when user
451 * changes the UBI device. Otherwise the following
452 * UBIFS commands will crash.
454 if (ubifs_is_mounted())
459 * Call ubi_exit() before re-initializing the UBI subsystem
469 int ubi_part(char *part_name, const char *vid_header_offset)
471 struct mtd_info *mtd;
477 mtd = get_mtd_device_nm(part_name);
479 printf("Partition %s not found!\n", part_name);
484 err = ubi_dev_scan(mtd, vid_header_offset);
486 printf("UBI init error %d\n", err);
487 printf("Please check, if the correct MTD partition is used (size big enough?)\n");
491 ubi = ubi_devices[0];
496 static int do_ubi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
500 bool skipcheck = false;
503 return CMD_RET_USAGE;
505 if (strcmp(argv[1], "detach") == 0)
508 if (strcmp(argv[1], "part") == 0) {
509 const char *vid_header_offset = NULL;
511 /* Print current partition */
514 printf("Error, no UBI device selected!\n");
518 printf("Device %d: %s, MTD partition %s\n",
519 ubi->ubi_num, ubi->ubi_name, ubi->mtd->name);
524 return CMD_RET_USAGE;
527 vid_header_offset = argv[3];
529 return ubi_part(argv[2], vid_header_offset);
532 if ((strcmp(argv[1], "part") != 0) && !ubi) {
533 printf("Error, no UBI device selected!\n");
537 if (strcmp(argv[1], "info") == 0) {
539 if (argc > 2 && !strncmp(argv[2], "l", 1))
541 return ubi_info(layout);
544 if (strcmp(argv[1], "check") == 0) {
546 return ubi_check(argv[2]);
548 printf("Error, no volume name passed\n");
552 if (strncmp(argv[1], "create", 6) == 0) {
553 int dynamic = 1; /* default: dynamic volume */
554 int id = UBI_VOL_NUM_AUTO;
556 /* Use maximum available size */
559 /* E.g., create volume with "skipcheck" bit set */
561 skipcheck = strncmp(argv[6], "--skipcheck", 11) == 0;
565 /* E.g., create volume size type vol_id */
567 id = simple_strtoull(argv[5], NULL, 16);
571 /* E.g., create volume size type */
573 if (strncmp(argv[4], "s", 1) == 0)
575 else if (strncmp(argv[4], "d", 1) != 0) {
576 printf("Incorrect type\n");
581 /* E.g., create volume size */
583 if (argv[3][0] != '-')
584 size = simple_strtoull(argv[3], NULL, 16);
587 /* Use maximum available size */
589 size = (int64_t)ubi->avail_pebs * ubi->leb_size;
590 printf("No size specified -> Using max size (%lld)\n", size);
592 /* E.g., create volume */
594 return ubi_create_vol(argv[2], size, dynamic, id,
599 if (strncmp(argv[1], "remove", 6) == 0) {
600 /* E.g., remove volume */
602 return ubi_remove_vol(argv[2]);
605 if (strncmp(argv[1], "skipcheck", 9) == 0) {
606 /* E.g., change skip_check flag */
608 skipcheck = strncmp(argv[3], "on", 2) == 0;
609 return ubi_set_skip_check(argv[2], skipcheck);
613 if (strncmp(argv[1], "write", 5) == 0) {
617 printf("Please see usage\n");
621 addr = simple_strtoul(argv[2], NULL, 16);
622 size = simple_strtoul(argv[4], NULL, 16);
624 if (strlen(argv[1]) == 10 &&
625 strncmp(argv[1] + 5, ".part", 5) == 0) {
627 ret = ubi_volume_continue_write(argv[3],
631 full_size = simple_strtoul(argv[5], NULL, 16);
632 ret = ubi_volume_begin_write(argv[3],
633 (void *)addr, size, full_size);
636 ret = ubi_volume_write(argv[3], (void *)addr, size);
639 printf("%lld bytes written to volume %s\n", size,
646 if (strncmp(argv[1], "read", 4) == 0) {
649 /* E.g., read volume size */
651 size = simple_strtoul(argv[4], NULL, 16);
655 /* E.g., read volume */
657 addr = simple_strtoul(argv[2], NULL, 16);
662 return ubi_volume_read(argv[3], (char *)addr, size);
666 printf("Please see usage\n");
674 " - detach ubi from a mtd partition\n"
675 "ubi part [part] [offset]\n"
676 " - Show or set current partition (with optional VID"
678 "ubi info [l[ayout]]"
679 " - Display volume and ubi layout information\n"
680 "ubi check volumename"
681 " - check if volumename exists\n"
682 "ubi create[vol] volume [size] [type] [id] [--skipcheck]\n"
683 " - create volume name with size ('-' for maximum"
685 "ubi write[vol] address volume size"
686 " - Write volume from address with size\n"
687 "ubi write.part address volume size [fullsize]\n"
688 " - Write part of a volume from address\n"
689 "ubi read[vol] address volume [size]"
690 " - Read volume to address with size\n"
691 "ubi remove[vol] volume"
693 "ubi skipcheck volume on/off - Set or clear skip_check flag in volume header\n"
695 " volume: character name\n"
696 " size: specified in bytes\n"
697 " type: s[tatic] or d[ynamic] (default=dynamic)"