Blame view

cmd/ubi.c 15.4 KB
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
1
2
3
4
5
6
  /*
   * Unsorted Block Image commands
   *
   *  Copyright (C) 2008 Samsung Electronics
   *  Kyungmin Park <kyungmin.park@samsung.com>
   *
2d579e506   Stefan Roese   ubi: Remove flash...
7
   * Copyright 2008-2009 Stefan Roese <sr@denx.de>, DENX Software Engineering
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
8
9
10
11
12
13
14
15
16
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   */
  
  #include <common.h>
  #include <command.h>
  #include <exports.h>
6e295186c   Simon Glass   Move malloc_cache...
17
  #include <memalign.h>
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
18
19
20
21
  #include <nand.h>
  #include <onenand_uboot.h>
  #include <linux/mtd/mtd.h>
  #include <linux/mtd/partitions.h>
ff94bc40a   Heiko Schocher   mtd, ubi, ubifs: ...
22
  #include <linux/err.h>
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
23
  #include <ubi_uboot.h>
1221ce459   Masahiro Yamada   treewide: replace...
24
  #include <linux/errno.h>
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
25
  #include <jffs2/load_kernel.h>
147162dac   Joe Hershberger   ubi: ubifs: Turn ...
26
27
28
  #undef ubi_msg
  #define ubi_msg(fmt, ...) printf("UBI: " fmt "
  ", ##__VA_ARGS__)
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
29
30
31
  #define DEV_TYPE_NONE		0
  #define DEV_TYPE_NAND		1
  #define DEV_TYPE_ONENAND	2
25ea652e9   Piotr Ziecik   UBI: Add proof-of...
32
  #define DEV_TYPE_NOR		3
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
33
34
35
  
  /* Private own data */
  static struct ubi_device *ubi;
a5c406701   Stefan Roese   UBI: Change parsi...
36
  static char buffer[80];
2ee951ba2   Stefan Roese   UBI: Enable re-in...
37
  static int ubi_initialized;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
38
39
  
  struct selected_dev {
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
40
  	char part_name[80];
2d579e506   Stefan Roese   ubi: Remove flash...
41
  	int selected;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
42
43
44
45
46
  	int nr;
  	struct mtd_info *mtd_info;
  };
  
  static struct selected_dev ubi_dev;
2f15cfd18   Stefan Roese   UBI/UBIFS: Automa...
47
48
49
50
  #ifdef CONFIG_CMD_UBIFS
  int ubifs_is_mounted(void);
  void cmd_ubifs_umount(void);
  #endif
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  static void display_volume_info(struct ubi_device *ubi)
  {
  	int i;
  
  	for (i = 0; i < (ubi->vtbl_slots + 1); i++) {
  		if (!ubi->volumes[i])
  			continue;	/* Empty record */
  		ubi_dump_vol_info(ubi->volumes[i]);
  	}
  }
  
  static void display_ubi_info(struct ubi_device *ubi)
  {
  	ubi_msg("MTD device name:            \"%s\"", ubi->mtd->name);
  	ubi_msg("MTD device size:            %llu MiB", ubi->flash_size >> 20);
  	ubi_msg("physical eraseblock size:   %d bytes (%d KiB)",
  			ubi->peb_size, ubi->peb_size >> 10);
  	ubi_msg("logical eraseblock size:    %d bytes", ubi->leb_size);
  	ubi_msg("number of good PEBs:        %d", ubi->good_peb_count);
  	ubi_msg("number of bad PEBs:         %d", ubi->bad_peb_count);
  	ubi_msg("smallest flash I/O unit:    %d", ubi->min_io_size);
  	ubi_msg("VID header offset:          %d (aligned %d)",
  			ubi->vid_hdr_offset, ubi->vid_hdr_aloffset);
  	ubi_msg("data offset:                %d", ubi->leb_start);
  	ubi_msg("max. allowed volumes:       %d", ubi->vtbl_slots);
  	ubi_msg("wear-leveling threshold:    %d", CONFIG_MTD_UBI_WL_THRESHOLD);
  	ubi_msg("number of internal volumes: %d", UBI_INT_VOL_COUNT);
  	ubi_msg("number of user volumes:     %d",
  			ubi->vol_count - UBI_INT_VOL_COUNT);
  	ubi_msg("available PEBs:             %d", ubi->avail_pebs);
  	ubi_msg("total number of reserved PEBs: %d", ubi->rsvd_pebs);
  	ubi_msg("number of PEBs reserved for bad PEB handling: %d",
  			ubi->beb_rsvd_pebs);
  	ubi_msg("max/mean erase counter: %d/%d", ubi->max_ec, ubi->mean_ec);
  }
  
  static int ubi_info(int layout)
  {
  	if (layout)
  		display_volume_info(ubi);
  	else
  		display_ubi_info(ubi);
  
  	return 0;
  }
f9f4d809a   Heiko Schocher   common, ubi: add ...
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
  static int ubi_check_volumename(const struct ubi_volume *vol, char *name)
  {
  	return strcmp(vol->name, name);
  }
  
  static int ubi_check(char *name)
  {
  	int i;
  
  	for (i = 0; i < (ubi->vtbl_slots + 1); i++) {
  		if (!ubi->volumes[i])
  			continue;	/* Empty record */
  
  		if (!ubi_check_volumename(ubi->volumes[i], name))
  			return 0;
  	}
6d0f45260   Stefan Agner   common, ubi: use ...
112
  	return 1;
f9f4d809a   Heiko Schocher   common, ubi: add ...
113
  }
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
114
115
116
  static int verify_mkvol_req(const struct ubi_device *ubi,
  			    const struct ubi_mkvol_req *req)
  {
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
117
  	int n, err = EINVAL;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
118
119
120
121
122
123
124
125
126
127
128
  
  	if (req->bytes < 0 || req->alignment < 0 || req->vol_type < 0 ||
  	    req->name_len < 0)
  		goto bad;
  
  	if ((req->vol_id < 0 || req->vol_id >= ubi->vtbl_slots) &&
  	    req->vol_id != UBI_VOL_NUM_AUTO)
  		goto bad;
  
  	if (req->alignment == 0)
  		goto bad;
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
129
130
131
132
  	if (req->bytes == 0) {
  		printf("No space left in UBI device!
  ");
  		err = ENOMEM;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
133
  		goto bad;
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
134
  	}
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
135
136
137
138
139
140
141
142
143
144
145
146
147
  
  	if (req->vol_type != UBI_DYNAMIC_VOLUME &&
  	    req->vol_type != UBI_STATIC_VOLUME)
  		goto bad;
  
  	if (req->alignment > ubi->leb_size)
  		goto bad;
  
  	n = req->alignment % ubi->min_io_size;
  	if (req->alignment != 1 && n)
  		goto bad;
  
  	if (req->name_len > UBI_VOL_NAME_MAX) {
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
148
149
150
  		printf("Name too long!
  ");
  		err = ENAMETOOLONG;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
151
152
153
154
155
  		goto bad;
  	}
  
  	return 0;
  bad:
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
156
157
  	return err;
  }
006124223   Ladislav Michl   cmd: ubi: add opt...
158
  static int ubi_create_vol(char *volume, int64_t size, int dynamic, int vol_id)
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
159
160
161
162
163
164
165
166
  {
  	struct ubi_mkvol_req req;
  	int err;
  
  	if (dynamic)
  		req.vol_type = UBI_DYNAMIC_VOLUME;
  	else
  		req.vol_type = UBI_STATIC_VOLUME;
006124223   Ladislav Michl   cmd: ubi: add opt...
167
  	req.vol_id = vol_id;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
168
169
170
171
172
173
174
175
176
177
178
179
180
181
  	req.alignment = 1;
  	req.bytes = size;
  
  	strcpy(req.name, volume);
  	req.name_len = strlen(volume);
  	req.name[req.name_len] = '\0';
  	req.padding1 = 0;
  	/* It's duplicated at drivers/mtd/ubi/cdev.c */
  	err = verify_mkvol_req(ubi, &req);
  	if (err) {
  		printf("verify_mkvol_req failed %d
  ", err);
  		return err;
  	}
dd7185f17   Paul Burton   cmd_ubi: use int6...
182
183
  	printf("Creating %s volume %s of size %lld
  ",
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
184
185
186
187
  		dynamic ? "dynamic" : "static", volume, size);
  	/* Call real ubi create volume */
  	return ubi_create_volume(ubi, &req);
  }
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
188
  static struct ubi_volume *ubi_find_volume(char *volume)
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
189
  {
3b653fdb3   Peter Tyser   cmd_ubi: Fix unin...
190
  	struct ubi_volume *vol = NULL;
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
191
  	int i;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
192
193
194
  
  	for (i = 0; i < ubi->vtbl_slots; i++) {
  		vol = ubi->volumes[i];
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
195
196
  		if (vol && !strcmp(vol->name, volume))
  			return vol;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
197
  	}
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
  
  	printf("Volume %s not found!
  ", volume);
  	return NULL;
  }
  
  static int ubi_remove_vol(char *volume)
  {
  	int err, reserved_pebs, i;
  	struct ubi_volume *vol;
  
  	vol = ubi_find_volume(volume);
  	if (vol == NULL)
  		return ENODEV;
  
  	printf("Remove UBI volume %s (id %d)
  ", vol->name, vol->vol_id);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
215
216
217
218
  
  	if (ubi->ro_mode) {
  		printf("It's read-only mode
  ");
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
219
  		err = EROFS;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
220
221
  		goto out_err;
  	}
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
222
  	err = ubi_change_vtbl_record(ubi, vol->vol_id, NULL);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
223
224
225
226
227
228
229
230
231
232
233
234
235
  	if (err) {
  		printf("Error changing Vol tabel record err=%x
  ", err);
  		goto out_err;
  	}
  	reserved_pebs = vol->reserved_pebs;
  	for (i = 0; i < vol->reserved_pebs; i++) {
  		err = ubi_eba_unmap_leb(ubi, vol, i);
  		if (err)
  			goto out_err;
  	}
  
  	kfree(vol->eba_tbl);
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
236
237
  	ubi->volumes[vol->vol_id]->eba_tbl = NULL;
  	ubi->volumes[vol->vol_id] = NULL;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
  
  	ubi->rsvd_pebs -= reserved_pebs;
  	ubi->avail_pebs += reserved_pebs;
  	i = ubi->beb_rsvd_level - ubi->beb_rsvd_pebs;
  	if (i > 0) {
  		i = ubi->avail_pebs >= i ? i : ubi->avail_pebs;
  		ubi->avail_pebs -= i;
  		ubi->rsvd_pebs += i;
  		ubi->beb_rsvd_pebs += i;
  		if (i > 0)
  			ubi_msg("reserve more %d PEBs", i);
  	}
  	ubi->vol_count -= 1;
  
  	return 0;
  out_err:
0195a7bb3   Heiko Schocher   ubi,ubifs: sync w...
254
  	ubi_err(ubi, "cannot remove volume %s, error %d", volume, err);
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
255
256
  	if (err < 0)
  		err = -err;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
257
258
  	return err;
  }
0e350f81e   Jeroen Hofstee   common: commands:...
259
  static int ubi_volume_continue_write(char *volume, void *buf, size_t size)
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
260
  {
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
261
  	int err = 1;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
262
  	struct ubi_volume *vol;
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
263
264
265
  	vol = ubi_find_volume(volume);
  	if (vol == NULL)
  		return ENODEV;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
266
267
  	err = ubi_more_update_data(ubi, vol, buf, size);
  	if (err < 0) {
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
268
269
270
  		printf("Couldnt or partially wrote data
  ");
  		return -err;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
271
272
273
274
275
276
  	}
  
  	if (err) {
  		size = err;
  
  		err = ubi_check_volume(ubi, vol->vol_id);
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
277
278
  		if (err < 0)
  			return -err;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
279
280
  
  		if (err) {
0195a7bb3   Heiko Schocher   ubi,ubifs: sync w...
281
282
  			ubi_warn(ubi, "volume %d on UBI device %d is corrupt",
  				 vol->vol_id, ubi->ubi_num);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
283
284
285
286
287
288
289
290
291
  			vol->corrupted = 1;
  		}
  
  		vol->checked = 1;
  		ubi_gluebi_updated(vol);
  	}
  
  	return 0;
  }
cc734f5ab   Paul Burton   cmd_ubi: add writ...
292
293
294
295
296
297
298
299
300
301
302
303
  int ubi_volume_begin_write(char *volume, void *buf, size_t size,
  	size_t full_size)
  {
  	int err = 1;
  	int rsvd_bytes = 0;
  	struct ubi_volume *vol;
  
  	vol = ubi_find_volume(volume);
  	if (vol == NULL)
  		return ENODEV;
  
  	rsvd_bytes = vol->reserved_pebs * (ubi->leb_size - vol->data_pad);
18f41f2fa   xypron.glpk@gmx.de   cmd: ubi: remove ...
304
  	if (size > rsvd_bytes) {
cc734f5ab   Paul Burton   cmd_ubi: add writ...
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
  		printf("size > volume size! Aborting!
  ");
  		return EINVAL;
  	}
  
  	err = ubi_start_update(ubi, vol, full_size);
  	if (err < 0) {
  		printf("Cannot start volume update
  ");
  		return -err;
  	}
  
  	return ubi_volume_continue_write(volume, buf, size);
  }
  
  int ubi_volume_write(char *volume, void *buf, size_t size)
  {
  	return ubi_volume_begin_write(volume, buf, size, size);
  }
718290675   Joe Hershberger   ubi: Expose a few...
324
  int ubi_volume_read(char *volume, char *buf, size_t size)
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
325
  {
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
326
  	int err, lnum, off, len, tbuf_size;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
327
328
  	void *tbuf;
  	unsigned long long tmp;
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
329
  	struct ubi_volume *vol;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
330
  	loff_t offp = 0;
985fa93e6   Holger Dengler   cmd: set filesize...
331
  	size_t len_read;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
332

7f5d8a4d8   Stefan Roese   UBI: Fix error co...
333
334
335
  	vol = ubi_find_volume(volume);
  	if (vol == NULL)
  		return ENODEV;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
336

694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
337
338
  	if (vol->updating) {
  		printf("updating");
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
339
  		return EBUSY;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
340
341
342
  	}
  	if (vol->upd_marker) {
  		printf("damaged volume, update marker is set");
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
343
  		return EBADF;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
344
345
346
347
348
  	}
  	if (offp == vol->used_bytes)
  		return 0;
  
  	if (size == 0) {
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
349
350
  		printf("No size specified -> Using max size (%lld)
  ", vol->used_bytes);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
351
352
353
354
355
356
  		size = vol->used_bytes;
  	}
  
  	if (vol->corrupted)
  		printf("read from corrupted volume %d", vol->vol_id);
  	if (offp + size > vol->used_bytes)
2984fd167   Marek Vasut   GCC4.6: Squash wa...
357
  		size = vol->used_bytes - offp;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
358
359
360
361
  
  	tbuf_size = vol->usable_leb_size;
  	if (size < tbuf_size)
  		tbuf_size = ALIGN(size, ubi->min_io_size);
4519668b2   Marcel Ziswiler   mtd/nand/ubi: ass...
362
  	tbuf = malloc_cache_aligned(tbuf_size);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
363
364
365
  	if (!tbuf) {
  		printf("NO MEM
  ");
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
366
  		return ENOMEM;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
367
368
369
370
371
372
  	}
  	len = size > tbuf_size ? tbuf_size : size;
  
  	tmp = offp;
  	off = do_div(tmp, vol->usable_leb_size);
  	lnum = tmp;
985fa93e6   Holger Dengler   cmd: set filesize...
373
  	len_read = size;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
374
375
376
377
378
379
380
381
  	do {
  		if (off + len >= vol->usable_leb_size)
  			len = vol->usable_leb_size - off;
  
  		err = ubi_eba_read_leb(ubi, vol, lnum, tbuf, off, len, 0);
  		if (err) {
  			printf("read err %x
  ", err);
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
382
  			err = -err;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
383
384
385
386
387
388
389
390
391
392
  			break;
  		}
  		off += len;
  		if (off == vol->usable_leb_size) {
  			lnum += 1;
  			off -= vol->usable_leb_size;
  		}
  
  		size -= len;
  		offp += len;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
393
  		memcpy(buf, tbuf, len);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
394
395
396
397
  
  		buf += len;
  		len = size > tbuf_size ? tbuf_size : size;
  	} while (size);
985fa93e6   Holger Dengler   cmd: set filesize...
398
399
  	if (!size)
  		env_set_hex("filesize", len_read);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
400
  	free(tbuf);
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
401
  	return err;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
402
  }
25c8f4005   Simon Kagstrom   Handle VID header...
403
404
  static int ubi_dev_scan(struct mtd_info *info, char *ubidev,
  		const char *vid_header_offset)
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
405
406
407
408
  {
  	struct mtd_device *dev;
  	struct part_info *part;
  	struct mtd_partition mtd_part;
25c8f4005   Simon Kagstrom   Handle VID header...
409
  	char ubi_mtd_param_buffer[80];
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
410
411
  	u8 pnum;
  	int err;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
412
413
414
415
416
417
418
419
420
  	if (find_dev_and_part(ubidev, &dev, &pnum, &part) != 0)
  		return 1;
  
  	sprintf(buffer, "mtd=%d", pnum);
  	memset(&mtd_part, 0, sizeof(mtd_part));
  	mtd_part.name = buffer;
  	mtd_part.size = part->size;
  	mtd_part.offset = part->offset;
  	add_mtd_partitions(info, &mtd_part, 1);
25c8f4005   Simon Kagstrom   Handle VID header...
421
422
423
424
425
  	strcpy(ubi_mtd_param_buffer, buffer);
  	if (vid_header_offset)
  		sprintf(ubi_mtd_param_buffer, "mtd=%d,%s", pnum,
  				vid_header_offset);
  	err = ubi_mtd_param_parse(ubi_mtd_param_buffer, NULL);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
426
427
  	if (err) {
  		del_mtd_partitions(info);
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
428
  		return -err;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
429
430
431
432
433
  	}
  
  	err = ubi_init();
  	if (err) {
  		del_mtd_partitions(info);
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
434
  		return -err;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
435
  	}
2ee951ba2   Stefan Roese   UBI: Enable re-in...
436
  	ubi_initialized = 1;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
437
438
  	return 0;
  }
cddfc97d1   Heiko Schocher   ubi: add new ubi ...
439
  int ubi_detach(void)
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
440
  {
c203ef5db   Andreas Huber   UBI/cfi-mtd: Fix ...
441
442
443
444
445
  	if (mtdparts_init() != 0) {
  		printf("Error initializing mtdparts!
  ");
  		return 1;
  	}
718290675   Joe Hershberger   ubi: Expose a few...
446
447
448
449
450
451
452
453
454
  #ifdef CONFIG_CMD_UBIFS
  	/*
  	 * Automatically unmount UBIFS partition when user
  	 * changes the UBI device. Otherwise the following
  	 * UBIFS commands will crash.
  	 */
  	if (ubifs_is_mounted())
  		cmd_ubifs_umount();
  #endif
718290675   Joe Hershberger   ubi: Expose a few...
455
456
457
458
459
460
  	/*
  	 * Call ubi_exit() before re-initializing the UBI subsystem
  	 */
  	if (ubi_initialized) {
  		ubi_exit();
  		del_mtd_partitions(ubi_dev.mtd_info);
cddfc97d1   Heiko Schocher   ubi: add new ubi ...
461
  		ubi_initialized = 0;
718290675   Joe Hershberger   ubi: Expose a few...
462
  	}
cddfc97d1   Heiko Schocher   ubi: add new ubi ...
463
464
465
466
467
468
469
470
471
472
473
474
475
  	ubi_dev.selected = 0;
  	return 0;
  }
  
  int ubi_part(char *part_name, const char *vid_header_offset)
  {
  	int err = 0;
  	char mtd_dev[16];
  	struct mtd_device *dev;
  	struct part_info *part;
  	u8 pnum;
  
  	ubi_detach();
718290675   Joe Hershberger   ubi: Expose a few...
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
  	/*
  	 * Search the mtd device number where this partition
  	 * is located
  	 */
  	if (find_dev_and_part(part_name, &dev, &pnum, &part)) {
  		printf("Partition %s not found!
  ", part_name);
  		return 1;
  	}
  	sprintf(mtd_dev, "%s%d", MTD_DEV_TYPE(dev->id->type), dev->id->num);
  	ubi_dev.mtd_info = get_mtd_device_nm(mtd_dev);
  	if (IS_ERR(ubi_dev.mtd_info)) {
  		printf("Partition %s not found on device %s!
  ", part_name,
  		       mtd_dev);
  		return 1;
  	}
  
  	ubi_dev.selected = 1;
  
  	strcpy(ubi_dev.part_name, part_name);
  	err = ubi_dev_scan(ubi_dev.mtd_info, ubi_dev.part_name,
  			vid_header_offset);
  	if (err) {
  		printf("UBI init error %d
  ", err);
  		ubi_dev.selected = 0;
  		return err;
  	}
  
  	ubi = ubi_devices[0];
  
  	return 0;
  }
  
  static int do_ubi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  {
dd7185f17   Paul Burton   cmd_ubi: use int6...
513
  	int64_t size = 0;
718290675   Joe Hershberger   ubi: Expose a few...
514
515
516
517
  	ulong addr = 0;
  
  	if (argc < 2)
  		return CMD_RET_USAGE;
cddfc97d1   Heiko Schocher   ubi: add new ubi ...
518
519
520
521
522
523
524
  
  	if (strcmp(argv[1], "detach") == 0) {
  		if (argc < 2)
  			return CMD_RET_USAGE;
  
  		return ubi_detach();
  	}
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
525
  	if (strcmp(argv[1], "part") == 0) {
25c8f4005   Simon Kagstrom   Handle VID header...
526
  		const char *vid_header_offset = NULL;
2d579e506   Stefan Roese   ubi: Remove flash...
527

694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
528
529
  		/* Print current partition */
  		if (argc == 2) {
2d579e506   Stefan Roese   ubi: Remove flash...
530
  			if (!ubi_dev.selected) {
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
531
532
533
534
  				printf("Error, no UBI device/partition selected!
  ");
  				return 1;
  			}
2d579e506   Stefan Roese   ubi: Remove flash...
535
536
  			printf("Device %d: %s, partition %s
  ",
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
537
538
539
  			       ubi_dev.nr, ubi_dev.mtd_info->name, ubi_dev.part_name);
  			return 0;
  		}
47e26b1bf   Wolfgang Denk   cmd_usage(): simp...
540
  		if (argc < 3)
4c12eeb8b   Simon Glass   Convert cmd_usage...
541
  			return CMD_RET_USAGE;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
542

25c8f4005   Simon Kagstrom   Handle VID header...
543
544
  		if (argc > 3)
  			vid_header_offset = argv[3];
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
545

718290675   Joe Hershberger   ubi: Expose a few...
546
  		return ubi_part(argv[2], vid_header_offset);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
547
  	}
2d579e506   Stefan Roese   ubi: Remove flash...
548
  	if ((strcmp(argv[1], "part") != 0) && (!ubi_dev.selected)) {
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
549
550
551
552
553
554
555
556
557
558
559
  		printf("Error, no UBI device/partition selected!
  ");
  		return 1;
  	}
  
  	if (strcmp(argv[1], "info") == 0) {
  		int layout = 0;
  		if (argc > 2 && !strncmp(argv[2], "l", 1))
  			layout = 1;
  		return ubi_info(layout);
  	}
f9f4d809a   Heiko Schocher   common, ubi: add ...
560
561
562
563
564
565
566
567
  	if (strcmp(argv[1], "check") == 0) {
  		if (argc > 2)
  			return ubi_check(argv[2]);
  
  		printf("Error, no volume name passed
  ");
  		return 1;
  	}
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
568
569
  	if (strncmp(argv[1], "create", 6) == 0) {
  		int dynamic = 1;	/* default: dynamic volume */
006124223   Ladislav Michl   cmd: ubi: add opt...
570
  		int id = UBI_VOL_NUM_AUTO;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
571
572
573
  
  		/* Use maximum available size */
  		size = 0;
006124223   Ladislav Michl   cmd: ubi: add opt...
574
575
576
577
578
  		/* E.g., create volume size type vol_id */
  		if (argc == 6) {
  			id = simple_strtoull(argv[5], NULL, 16);
  			argc--;
  		}
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
579
580
581
582
583
584
585
586
587
588
589
590
591
  		/* E.g., create volume size type */
  		if (argc == 5) {
  			if (strncmp(argv[4], "s", 1) == 0)
  				dynamic = 0;
  			else if (strncmp(argv[4], "d", 1) != 0) {
  				printf("Incorrect type
  ");
  				return 1;
  			}
  			argc--;
  		}
  		/* E.g., create volume size */
  		if (argc == 4) {
f59f07ece   Ladislav Michl   cmd: ubi: allow '...
592
593
  			if (argv[3][0] != '-')
  				size = simple_strtoull(argv[3], NULL, 16);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
594
595
596
  			argc--;
  		}
  		/* Use maximum available size */
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
597
  		if (!size) {
dd7185f17   Paul Burton   cmd_ubi: use int6...
598
599
600
  			size = (int64_t)ubi->avail_pebs * ubi->leb_size;
  			printf("No size specified -> Using max size (%lld)
  ", size);
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
601
  		}
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
602
603
  		/* E.g., create volume */
  		if (argc == 3)
006124223   Ladislav Michl   cmd: ubi: add opt...
604
  			return ubi_create_vol(argv[2], size, dynamic, id);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
605
606
607
608
609
610
611
612
613
  	}
  
  	if (strncmp(argv[1], "remove", 6) == 0) {
  		/* E.g., remove volume */
  		if (argc == 3)
  			return ubi_remove_vol(argv[2]);
  	}
  
  	if (strncmp(argv[1], "write", 5) == 0) {
718290675   Joe Hershberger   ubi: Expose a few...
614
  		int ret;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
615
616
617
618
619
620
621
  		if (argc < 5) {
  			printf("Please see usage
  ");
  			return 1;
  		}
  
  		addr = simple_strtoul(argv[2], NULL, 16);
a5c406701   Stefan Roese   UBI: Change parsi...
622
  		size = simple_strtoul(argv[4], NULL, 16);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
623

cc734f5ab   Paul Burton   cmd_ubi: add writ...
624
625
626
627
628
629
630
631
632
633
634
635
636
637
  		if (strlen(argv[1]) == 10 &&
  		    strncmp(argv[1] + 5, ".part", 5) == 0) {
  			if (argc < 6) {
  				ret = ubi_volume_continue_write(argv[3],
  						(void *)addr, size);
  			} else {
  				size_t full_size;
  				full_size = simple_strtoul(argv[5], NULL, 16);
  				ret = ubi_volume_begin_write(argv[3],
  						(void *)addr, size, full_size);
  			}
  		} else {
  			ret = ubi_volume_write(argv[3], (void *)addr, size);
  		}
718290675   Joe Hershberger   ubi: Expose a few...
638
  		if (!ret) {
dd7185f17   Paul Burton   cmd_ubi: use int6...
639
640
  			printf("%lld bytes written to volume %s
  ", size,
718290675   Joe Hershberger   ubi: Expose a few...
641
642
643
644
  			       argv[3]);
  		}
  
  		return ret;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
645
646
647
648
649
650
651
  	}
  
  	if (strncmp(argv[1], "read", 4) == 0) {
  		size = 0;
  
  		/* E.g., read volume size */
  		if (argc == 5) {
a5c406701   Stefan Roese   UBI: Change parsi...
652
  			size = simple_strtoul(argv[4], NULL, 16);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
653
654
655
656
657
658
659
660
  			argc--;
  		}
  
  		/* E.g., read volume */
  		if (argc == 4) {
  			addr = simple_strtoul(argv[2], NULL, 16);
  			argc--;
  		}
718290675   Joe Hershberger   ubi: Expose a few...
661
  		if (argc == 3) {
dd7185f17   Paul Burton   cmd_ubi: use int6...
662
663
  			printf("Read %lld bytes from volume %s to %lx
  ", size,
718290675   Joe Hershberger   ubi: Expose a few...
664
  			       argv[3], addr);
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
665
  			return ubi_volume_read(argv[3], (char *)addr, size);
718290675   Joe Hershberger   ubi: Expose a few...
666
  		}
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
667
668
669
670
  	}
  
  	printf("Please see usage
  ");
7f5d8a4d8   Stefan Roese   UBI: Fix error co...
671
  	return 1;
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
672
  }
388a29d02   Frans Meulenbroeks   various cmd_* fil...
673
674
  U_BOOT_CMD(
  	ubi, 6, 1, do_ubi,
2fb2604d5   Peter Tyser   Command usage cle...
675
  	"ubi commands",
cddfc97d1   Heiko Schocher   ubi: add new ubi ...
676
677
678
679
680
  	"detach"
  		" - detach ubi from a mtd partition
  "
  	"ubi part [part] [offset]
  "
25c8f4005   Simon Kagstrom   Handle VID header...
681
682
683
  		" - Show or set current partition (with optional VID"
  		" header offset)
  "
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
684
685
686
  	"ubi info [l[ayout]]"
  		" - Display volume and ubi layout information
  "
f9f4d809a   Heiko Schocher   common, ubi: add ...
687
688
689
  	"ubi check volumename"
  		" - check if volumename exists
  "
f59f07ece   Ladislav Michl   cmd: ubi: allow '...
690
691
692
693
694
  	"ubi create[vol] volume [size] [type] [id]
  "
  		" - create volume name with size ('-' for maximum"
  		" available size)
  "
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
695
696
697
  	"ubi write[vol] address volume size"
  		" - Write volume from address with size
  "
cc734f5ab   Paul Burton   cmd_ubi: add writ...
698
699
700
701
  	"ubi write.part address volume size [fullsize]
  "
  		" - Write part of a volume from address
  "
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
702
703
704
705
706
707
708
709
  	"ubi read[vol] address volume [size]"
  		" - Read volume to address with size
  "
  	"ubi remove[vol] volume"
  		" - Remove volume
  "
  	"[Legends]
  "
f6ca3b709   Andrzej Wolski   ubi: help message...
710
711
712
713
  	" volume: character name
  "
  	" size: specified in bytes
  "
a89c33db9   Wolfgang Denk   General help mess...
714
  	" type: s[tatic] or d[ynamic] (default=dynamic)"
694a0b3f1   Kyungmin Park   UBI: Add UBI comm...
715
  );