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.
19 #include <onenand_uboot.h>
20 #include <linux/mtd/mtd.h>
21 #include <linux/mtd/partitions.h>
22 #include <ubi_uboot.h>
23 #include <asm/errno.h>
24 #include <jffs2/load_kernel.h>
26 #define DEV_TYPE_NONE 0
27 #define DEV_TYPE_NAND 1
28 #define DEV_TYPE_ONENAND 2
29 #define DEV_TYPE_NOR 3
31 /* Private own data */
32 static struct ubi_device *ubi;
33 static char buffer[80];
34 static int ubi_initialized;
40 struct mtd_info *mtd_info;
43 static struct selected_dev ubi_dev;
45 #ifdef CONFIG_CMD_UBIFS
46 int ubifs_is_mounted(void);
47 void cmd_ubifs_umount(void);
50 static void ubi_dump_vol_info(const struct ubi_volume *vol)
52 ubi_msg("volume information dump:");
53 ubi_msg("vol_id %d", vol->vol_id);
54 ubi_msg("reserved_pebs %d", vol->reserved_pebs);
55 ubi_msg("alignment %d", vol->alignment);
56 ubi_msg("data_pad %d", vol->data_pad);
57 ubi_msg("vol_type %d", vol->vol_type);
58 ubi_msg("name_len %d", vol->name_len);
59 ubi_msg("usable_leb_size %d", vol->usable_leb_size);
60 ubi_msg("used_ebs %d", vol->used_ebs);
61 ubi_msg("used_bytes %lld", vol->used_bytes);
62 ubi_msg("last_eb_bytes %d", vol->last_eb_bytes);
63 ubi_msg("corrupted %d", vol->corrupted);
64 ubi_msg("upd_marker %d", vol->upd_marker);
66 if (vol->name_len <= UBI_VOL_NAME_MAX &&
67 strnlen(vol->name, vol->name_len + 1) == vol->name_len) {
68 ubi_msg("name %s", vol->name);
70 ubi_msg("the 1st 5 characters of the name: %c%c%c%c%c",
71 vol->name[0], vol->name[1], vol->name[2],
72 vol->name[3], vol->name[4]);
77 static void display_volume_info(struct ubi_device *ubi)
81 for (i = 0; i < (ubi->vtbl_slots + 1); i++) {
83 continue; /* Empty record */
84 ubi_dump_vol_info(ubi->volumes[i]);
88 static void display_ubi_info(struct ubi_device *ubi)
90 ubi_msg("MTD device name: \"%s\"", ubi->mtd->name);
91 ubi_msg("MTD device size: %llu MiB", ubi->flash_size >> 20);
92 ubi_msg("physical eraseblock size: %d bytes (%d KiB)",
93 ubi->peb_size, ubi->peb_size >> 10);
94 ubi_msg("logical eraseblock size: %d bytes", ubi->leb_size);
95 ubi_msg("number of good PEBs: %d", ubi->good_peb_count);
96 ubi_msg("number of bad PEBs: %d", ubi->bad_peb_count);
97 ubi_msg("smallest flash I/O unit: %d", ubi->min_io_size);
98 ubi_msg("VID header offset: %d (aligned %d)",
99 ubi->vid_hdr_offset, ubi->vid_hdr_aloffset);
100 ubi_msg("data offset: %d", ubi->leb_start);
101 ubi_msg("max. allowed volumes: %d", ubi->vtbl_slots);
102 ubi_msg("wear-leveling threshold: %d", CONFIG_MTD_UBI_WL_THRESHOLD);
103 ubi_msg("number of internal volumes: %d", UBI_INT_VOL_COUNT);
104 ubi_msg("number of user volumes: %d",
105 ubi->vol_count - UBI_INT_VOL_COUNT);
106 ubi_msg("available PEBs: %d", ubi->avail_pebs);
107 ubi_msg("total number of reserved PEBs: %d", ubi->rsvd_pebs);
108 ubi_msg("number of PEBs reserved for bad PEB handling: %d",
110 ubi_msg("max/mean erase counter: %d/%d", ubi->max_ec, ubi->mean_ec);
113 static int ubi_info(int layout)
116 display_volume_info(ubi);
118 display_ubi_info(ubi);
123 static int verify_mkvol_req(const struct ubi_device *ubi,
124 const struct ubi_mkvol_req *req)
128 if (req->bytes < 0 || req->alignment < 0 || req->vol_type < 0 ||
132 if ((req->vol_id < 0 || req->vol_id >= ubi->vtbl_slots) &&
133 req->vol_id != UBI_VOL_NUM_AUTO)
136 if (req->alignment == 0)
139 if (req->bytes == 0) {
140 printf("No space left in UBI device!\n");
145 if (req->vol_type != UBI_DYNAMIC_VOLUME &&
146 req->vol_type != UBI_STATIC_VOLUME)
149 if (req->alignment > ubi->leb_size)
152 n = req->alignment % ubi->min_io_size;
153 if (req->alignment != 1 && n)
156 if (req->name_len > UBI_VOL_NAME_MAX) {
157 printf("Name too long!\n");
167 static int ubi_create_vol(char *volume, int size, int dynamic)
169 struct ubi_mkvol_req req;
173 req.vol_type = UBI_DYNAMIC_VOLUME;
175 req.vol_type = UBI_STATIC_VOLUME;
177 req.vol_id = UBI_VOL_NUM_AUTO;
181 strcpy(req.name, volume);
182 req.name_len = strlen(volume);
183 req.name[req.name_len] = '\0';
185 /* It's duplicated at drivers/mtd/ubi/cdev.c */
186 err = verify_mkvol_req(ubi, &req);
188 printf("verify_mkvol_req failed %d\n", err);
191 printf("Creating %s volume %s of size %d\n",
192 dynamic ? "dynamic" : "static", volume, size);
193 /* Call real ubi create volume */
194 return ubi_create_volume(ubi, &req);
197 static struct ubi_volume *ubi_find_volume(char *volume)
199 struct ubi_volume *vol = NULL;
202 for (i = 0; i < ubi->vtbl_slots; i++) {
203 vol = ubi->volumes[i];
204 if (vol && !strcmp(vol->name, volume))
208 printf("Volume %s not found!\n", volume);
212 static int ubi_remove_vol(char *volume)
214 int err, reserved_pebs, i;
215 struct ubi_volume *vol;
217 vol = ubi_find_volume(volume);
221 printf("Remove UBI volume %s (id %d)\n", vol->name, vol->vol_id);
224 printf("It's read-only mode\n");
229 err = ubi_change_vtbl_record(ubi, vol->vol_id, NULL);
231 printf("Error changing Vol tabel record err=%x\n", err);
234 reserved_pebs = vol->reserved_pebs;
235 for (i = 0; i < vol->reserved_pebs; i++) {
236 err = ubi_eba_unmap_leb(ubi, vol, i);
242 ubi->volumes[vol->vol_id]->eba_tbl = NULL;
243 ubi->volumes[vol->vol_id] = NULL;
245 ubi->rsvd_pebs -= reserved_pebs;
246 ubi->avail_pebs += reserved_pebs;
247 i = ubi->beb_rsvd_level - ubi->beb_rsvd_pebs;
249 i = ubi->avail_pebs >= i ? i : ubi->avail_pebs;
250 ubi->avail_pebs -= i;
252 ubi->beb_rsvd_pebs += i;
254 ubi_msg("reserve more %d PEBs", i);
260 ubi_err("cannot remove volume %s, error %d", volume, err);
266 static int ubi_volume_write(char *volume, void *buf, size_t size)
270 struct ubi_volume *vol;
272 vol = ubi_find_volume(volume);
276 rsvd_bytes = vol->reserved_pebs * (ubi->leb_size - vol->data_pad);
277 if (size < 0 || size > rsvd_bytes) {
278 printf("size > volume size! Aborting!\n");
282 err = ubi_start_update(ubi, vol, size);
284 printf("Cannot start volume update\n");
288 err = ubi_more_update_data(ubi, vol, buf, size);
290 printf("Couldnt or partially wrote data\n");
297 err = ubi_check_volume(ubi, vol->vol_id);
302 ubi_warn("volume %d on UBI device %d is corrupted",
303 vol->vol_id, ubi->ubi_num);
308 ubi_gluebi_updated(vol);
311 printf("%d bytes written to volume %s\n", size, volume);
316 static int ubi_volume_read(char *volume, char *buf, size_t size)
318 int err, lnum, off, len, tbuf_size;
319 size_t count_save = size;
321 unsigned long long tmp;
322 struct ubi_volume *vol;
325 vol = ubi_find_volume(volume);
329 printf("Read %d bytes from volume %s to %p\n", size, volume, buf);
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;
348 printf("read from corrupted volume %d", vol->vol_id);
349 if (offp + size > vol->used_bytes)
350 count_save = size = vol->used_bytes - offp;
352 tbuf_size = vol->usable_leb_size;
353 if (size < tbuf_size)
354 tbuf_size = ALIGN(size, ubi->min_io_size);
355 tbuf = malloc(tbuf_size);
360 len = size > tbuf_size ? tbuf_size : size;
363 off = do_div(tmp, vol->usable_leb_size);
366 if (off + len >= vol->usable_leb_size)
367 len = vol->usable_leb_size - off;
369 err = ubi_eba_read_leb(ubi, vol, lnum, tbuf, off, len, 0);
371 printf("read err %x\n", err);
376 if (off == vol->usable_leb_size) {
378 off -= vol->usable_leb_size;
384 memcpy(buf, tbuf, len);
387 len = size > tbuf_size ? tbuf_size : size;
394 static int ubi_dev_scan(struct mtd_info *info, char *ubidev,
395 const char *vid_header_offset)
397 struct mtd_device *dev;
398 struct part_info *part;
399 struct mtd_partition mtd_part;
400 char ubi_mtd_param_buffer[80];
404 if (find_dev_and_part(ubidev, &dev, &pnum, &part) != 0)
407 sprintf(buffer, "mtd=%d", pnum);
408 memset(&mtd_part, 0, sizeof(mtd_part));
409 mtd_part.name = buffer;
410 mtd_part.size = part->size;
411 mtd_part.offset = part->offset;
412 add_mtd_partitions(info, &mtd_part, 1);
414 strcpy(ubi_mtd_param_buffer, buffer);
415 if (vid_header_offset)
416 sprintf(ubi_mtd_param_buffer, "mtd=%d,%s", pnum,
418 err = ubi_mtd_param_parse(ubi_mtd_param_buffer, NULL);
420 del_mtd_partitions(info);
426 del_mtd_partitions(info);
435 static int do_ubi(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
442 return cmd_usage(cmdtp);
444 if (mtdparts_init() != 0) {
445 printf("Error initializing mtdparts!\n");
449 if (strcmp(argv[1], "part") == 0) {
451 struct mtd_device *dev;
452 struct part_info *part;
453 const char *vid_header_offset = NULL;
456 /* Print current partition */
458 if (!ubi_dev.selected) {
459 printf("Error, no UBI device/partition selected!\n");
463 printf("Device %d: %s, partition %s\n",
464 ubi_dev.nr, ubi_dev.mtd_info->name, ubi_dev.part_name);
469 return cmd_usage(cmdtp);
471 #ifdef CONFIG_CMD_UBIFS
473 * Automatically unmount UBIFS partition when user
474 * changes the UBI device. Otherwise the following
475 * UBIFS commands will crash.
477 if (ubifs_is_mounted())
481 /* todo: get dev number for NAND... */
485 * Call ubi_exit() before re-initializing the UBI subsystem
487 if (ubi_initialized) {
489 del_mtd_partitions(ubi_dev.mtd_info);
493 * Search the mtd device number where this partition
496 if (find_dev_and_part(argv[2], &dev, &pnum, &part)) {
497 printf("Partition %s not found!\n", argv[2]);
500 sprintf(mtd_dev, "%s%d", MTD_DEV_TYPE(dev->id->type), dev->id->num);
501 ubi_dev.mtd_info = get_mtd_device_nm(mtd_dev);
502 if (IS_ERR(ubi_dev.mtd_info)) {
503 printf("Partition %s not found on device %s!\n", argv[2], mtd_dev);
507 ubi_dev.selected = 1;
510 vid_header_offset = argv[3];
511 strcpy(ubi_dev.part_name, argv[2]);
512 err = ubi_dev_scan(ubi_dev.mtd_info, ubi_dev.part_name,
515 printf("UBI init error %d\n", err);
516 ubi_dev.selected = 0;
520 ubi = ubi_devices[0];
525 if ((strcmp(argv[1], "part") != 0) && (!ubi_dev.selected)) {
526 printf("Error, no UBI device/partition selected!\n");
530 if (strcmp(argv[1], "info") == 0) {
532 if (argc > 2 && !strncmp(argv[2], "l", 1))
534 return ubi_info(layout);
537 if (strncmp(argv[1], "create", 6) == 0) {
538 int dynamic = 1; /* default: dynamic volume */
540 /* Use maximum available size */
543 /* E.g., create volume size type */
545 if (strncmp(argv[4], "s", 1) == 0)
547 else if (strncmp(argv[4], "d", 1) != 0) {
548 printf("Incorrect type\n");
553 /* E.g., create volume size */
555 size = simple_strtoul(argv[3], NULL, 16);
558 /* Use maximum available size */
560 size = ubi->avail_pebs * ubi->leb_size;
561 printf("No size specified -> Using max size (%u)\n", size);
563 /* E.g., create volume */
565 return ubi_create_vol(argv[2], size, dynamic);
568 if (strncmp(argv[1], "remove", 6) == 0) {
569 /* E.g., remove volume */
571 return ubi_remove_vol(argv[2]);
574 if (strncmp(argv[1], "write", 5) == 0) {
576 printf("Please see usage\n");
580 addr = simple_strtoul(argv[2], NULL, 16);
581 size = simple_strtoul(argv[4], NULL, 16);
583 return ubi_volume_write(argv[3], (void *)addr, size);
586 if (strncmp(argv[1], "read", 4) == 0) {
589 /* E.g., read volume size */
591 size = simple_strtoul(argv[4], NULL, 16);
595 /* E.g., read volume */
597 addr = simple_strtoul(argv[2], NULL, 16);
602 return ubi_volume_read(argv[3], (char *)addr, size);
605 printf("Please see usage\n");
612 "part [part] [offset]\n"
613 " - Show or set current partition (with optional VID"
615 "ubi info [l[ayout]]"
616 " - Display volume and ubi layout information\n"
617 "ubi create[vol] volume [size] [type]"
618 " - create volume name with size\n"
619 "ubi write[vol] address volume size"
620 " - Write volume from address with size\n"
621 "ubi read[vol] address volume [size]"
622 " - Read volume to address with size\n"
623 "ubi remove[vol] volume"
626 " volume: character name\n"
627 " size: specified in bytes\n"
628 " type: s[tatic] or d[ynamic] (default=dynamic)"