blob: 103c3d6a0871264bdacba21e96dac439e9dd978f [file] [log] [blame]
Shyam Saini1d43e242019-06-14 13:05:33 +05301/*
2 * i.MX6 nand boot control block(bcb).
3 *
4 * Based on the common/imx-bbu-nand-fcb.c from barebox and imx kobs-ng
5 *
6 * Copyright (C) 2017 Jagan Teki <jagan@amarulasolutions.com>
7 * Copyright (C) 2016 Sergey Kubushyn <ksi@koi8.net>
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 */
11
12#include <common.h>
Simon Glass336d4612020-02-03 07:36:16 -070013#include <malloc.h>
Shyam Saini1d43e242019-06-14 13:05:33 +053014#include <nand.h>
Simon Glass61b29b82020-02-03 07:36:15 -070015#include <dm/devres.h>
Shyam Saini1d43e242019-06-14 13:05:33 +053016
17#include <asm/io.h>
18#include <jffs2/jffs2.h>
Parthiban Nallathambi6aa87492019-10-18 11:46:19 +020019#include <linux/bch.h>
Shyam Saini1d43e242019-06-14 13:05:33 +053020#include <linux/mtd/mtd.h>
21
Igor Opaniukdad30dd2019-11-03 16:49:44 +010022#include <asm/arch/sys_proto.h>
Shyam Saini1d43e242019-06-14 13:05:33 +053023#include <asm/mach-imx/imx-nandbcb.h>
24#include <asm/mach-imx/imximage.cfg>
25#include <mxs_nand.h>
26#include <linux/mtd/mtd.h>
27#include <nand.h>
28
Miquel Raynaleb446ef2019-10-25 19:39:29 +020029#include "../../../cmd/legacy-mtd-utils.h"
30
Shyam Saini1d43e242019-06-14 13:05:33 +053031#define BF_VAL(v, bf) (((v) & bf##_MASK) >> bf##_OFFSET)
32#define GETBIT(v, n) (((v) >> (n)) & 0x1)
33
Parthiban Nallathambi6aa87492019-10-18 11:46:19 +020034#if defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)
35static uint8_t reverse_bit(uint8_t b)
36{
37 b = (b & 0xf0) >> 4 | (b & 0x0f) << 4;
38 b = (b & 0xcc) >> 2 | (b & 0x33) << 2;
39 b = (b & 0xaa) >> 1 | (b & 0x55) << 1;
40
41 return b;
42}
43
44static void encode_bch_ecc(void *buf, struct fcb_block *fcb, int eccbits)
45{
46 int i, j, m = 13;
47 int blocksize = 128;
48 int numblocks = 8;
49 int ecc_buf_size = (m * eccbits + 7) / 8;
50 struct bch_control *bch = init_bch(m, eccbits, 0);
51 u8 *ecc_buf = kzalloc(ecc_buf_size, GFP_KERNEL);
52 u8 *tmp_buf = kzalloc(blocksize * numblocks, GFP_KERNEL);
53 u8 *psrc, *pdst;
54
55 /*
56 * The blocks here are bit aligned. If eccbits is a multiple of 8,
57 * we just can copy bytes. Otherwiese we must move the blocks to
58 * the next free bit position.
59 */
60 WARN_ON(eccbits % 8);
61
62 memcpy(tmp_buf, fcb, sizeof(*fcb));
63
64 for (i = 0; i < numblocks; i++) {
65 memset(ecc_buf, 0, ecc_buf_size);
66 psrc = tmp_buf + i * blocksize;
67 pdst = buf + i * (blocksize + ecc_buf_size);
68
69 /* copy data byte aligned to destination buf */
70 memcpy(pdst, psrc, blocksize);
71
72 /*
73 * imx-kobs use a modified encode_bch which reverse the
74 * bit order of the data before calculating bch.
75 * Do this in the buffer and use the bch lib here.
76 */
77 for (j = 0; j < blocksize; j++)
78 psrc[j] = reverse_bit(psrc[j]);
79
80 encode_bch(bch, psrc, blocksize, ecc_buf);
81
82 /* reverse ecc bit */
83 for (j = 0; j < ecc_buf_size; j++)
84 ecc_buf[j] = reverse_bit(ecc_buf[j]);
85
86 /* Here eccbuf is byte aligned and we can just copy it */
87 memcpy(pdst + blocksize, ecc_buf, ecc_buf_size);
88 }
89
90 kfree(ecc_buf);
91 kfree(tmp_buf);
92 free_bch(bch);
93}
94#else
95
Shyam Saini1d43e242019-06-14 13:05:33 +053096static u8 calculate_parity_13_8(u8 d)
97{
98 u8 p = 0;
99
100 p |= (GETBIT(d, 6) ^ GETBIT(d, 5) ^ GETBIT(d, 3) ^ GETBIT(d, 2)) << 0;
101 p |= (GETBIT(d, 7) ^ GETBIT(d, 5) ^ GETBIT(d, 4) ^ GETBIT(d, 2) ^
102 GETBIT(d, 1)) << 1;
103 p |= (GETBIT(d, 7) ^ GETBIT(d, 6) ^ GETBIT(d, 5) ^ GETBIT(d, 1) ^
104 GETBIT(d, 0)) << 2;
105 p |= (GETBIT(d, 7) ^ GETBIT(d, 4) ^ GETBIT(d, 3) ^ GETBIT(d, 0)) << 3;
106 p |= (GETBIT(d, 6) ^ GETBIT(d, 4) ^ GETBIT(d, 3) ^ GETBIT(d, 2) ^
107 GETBIT(d, 1) ^ GETBIT(d, 0)) << 4;
108
109 return p;
110}
111
112static void encode_hamming_13_8(void *_src, void *_ecc, size_t size)
113{
114 int i;
115 u8 *src = _src;
116 u8 *ecc = _ecc;
117
118 for (i = 0; i < size; i++)
119 ecc[i] = calculate_parity_13_8(src[i]);
120}
Parthiban Nallathambi6aa87492019-10-18 11:46:19 +0200121#endif
Shyam Saini1d43e242019-06-14 13:05:33 +0530122
123static u32 calc_chksum(void *buf, size_t size)
124{
125 u32 chksum = 0;
126 u8 *bp = buf;
127 size_t i;
128
129 for (i = 0; i < size; i++)
130 chksum += bp[i];
131
132 return ~chksum;
133}
134
Igor Opaniuk1b899a82019-11-03 16:49:45 +0100135static void fill_fcb(struct fcb_block *fcb, struct mtd_info *mtd,
136 u32 fw1_start, u32 fw2_start, u32 fw_pages)
Shyam Saini1d43e242019-06-14 13:05:33 +0530137{
138 struct nand_chip *chip = mtd_to_nand(mtd);
139 struct mxs_nand_info *nand_info = nand_get_controller_data(chip);
Igor Opaniukdad30dd2019-11-03 16:49:44 +0100140 struct mxs_nand_layout l;
141
142 mxs_nand_get_layout(mtd, &l);
Shyam Saini1d43e242019-06-14 13:05:33 +0530143
144 fcb->fingerprint = FCB_FINGERPRINT;
145 fcb->version = FCB_VERSION_1;
Igor Opaniukdad30dd2019-11-03 16:49:44 +0100146
Shyam Saini1d43e242019-06-14 13:05:33 +0530147 fcb->pagesize = mtd->writesize;
148 fcb->oob_pagesize = mtd->writesize + mtd->oobsize;
149 fcb->sectors = mtd->erasesize / mtd->writesize;
150
Igor Opaniukdad30dd2019-11-03 16:49:44 +0100151 fcb->meta_size = l.meta_size;
152 fcb->nr_blocks = l.nblocks;
153 fcb->ecc_nr = l.data0_size;
154 fcb->ecc_level = l.ecc0;
155 fcb->ecc_size = l.datan_size;
156 fcb->ecc_type = l.eccn;
Han Xuc6ed3502020-05-05 22:03:59 +0800157 fcb->bchtype = l.gf_len;
Shyam Saini1d43e242019-06-14 13:05:33 +0530158
159 /* Also hardcoded in kobs-ng */
Igor Opaniukdad30dd2019-11-03 16:49:44 +0100160 if (is_mx6()) {
161 fcb->datasetup = 80;
162 fcb->datahold = 60;
163 fcb->addr_setup = 25;
164 fcb->dsample_time = 6;
165 } else if (is_mx7()) {
166 fcb->datasetup = 10;
167 fcb->datahold = 7;
168 fcb->addr_setup = 15;
169 fcb->dsample_time = 6;
170 }
Shyam Saini1d43e242019-06-14 13:05:33 +0530171
172 /* DBBT search area starts at second page on first block */
173 fcb->dbbt_start = 1;
174
175 fcb->bb_byte = nand_info->bch_geometry.block_mark_byte_offset;
176 fcb->bb_start_bit = nand_info->bch_geometry.block_mark_bit_offset;
177
178 fcb->phy_offset = mtd->writesize;
179
180 fcb->nr_blocks = mtd->writesize / fcb->ecc_nr - 1;
181
Igor Opaniukdad30dd2019-11-03 16:49:44 +0100182 fcb->disbbm = 0;
183 fcb->disbbm_search = 0;
184
Igor Opaniuk1b899a82019-11-03 16:49:45 +0100185 fcb->fw1_start = fw1_start; /* Firmware image starts on this sector */
186 fcb->fw2_start = fw2_start; /* Secondary FW Image starting Sector */
187 fcb->fw1_pages = fw_pages; /* Number of sectors in firmware image */
188 fcb->fw2_pages = fw_pages; /* Number of sector in secondary FW image */
189
Shyam Saini1d43e242019-06-14 13:05:33 +0530190 fcb->checksum = calc_chksum((void *)fcb + 4, sizeof(*fcb) - 4);
191}
192
193static int dbbt_fill_data(struct mtd_info *mtd, void *buf, int num_blocks)
194{
195 int n, n_bad_blocks = 0;
196 u32 *bb = buf + 0x8;
197 u32 *n_bad_blocksp = buf + 0x4;
198
199 for (n = 0; n < num_blocks; n++) {
200 loff_t offset = n * mtd->erasesize;
201 if (mtd_block_isbad(mtd, offset)) {
202 n_bad_blocks++;
203 *bb = n;
204 bb++;
205 }
206 }
207
208 *n_bad_blocksp = n_bad_blocks;
209
210 return n_bad_blocks;
211}
212
Igor Opaniuk1b899a82019-11-03 16:49:45 +0100213static int write_fcb_dbbt(struct mtd_info *mtd, struct fcb_block *fcb,
214 struct dbbt_block *dbbt, void *dbbt_data_page,
215 loff_t off)
216{
217 void *fcb_raw_page = 0;
218 int i, ret;
219 size_t dummy;
220
221 /*
222 * We prepare raw page only for i.MX6, for i.MX7 we
223 * leverage BCH hw module instead
224 */
225 if (is_mx6()) {
226 /* write fcb/dbbt */
227 fcb_raw_page = kzalloc(mtd->writesize + mtd->oobsize,
228 GFP_KERNEL);
229 if (!fcb_raw_page) {
230 debug("failed to allocate fcb_raw_page\n");
231 ret = -ENOMEM;
232 return ret;
233 }
234
235#if defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)
236 /* 40 bit BCH, for i.MX6UL(L) */
237 encode_bch_ecc(fcb_raw_page + 32, fcb, 40);
238#else
239 memcpy(fcb_raw_page + 12, fcb, sizeof(struct fcb_block));
240 encode_hamming_13_8(fcb_raw_page + 12,
241 fcb_raw_page + 12 + 512, 512);
242#endif
243 /*
244 * Set the first and second byte of OOB data to 0xFF,
245 * not 0x00. These bytes are used as the Manufacturers Bad
246 * Block Marker (MBBM). Since the FCB is mostly written to
247 * the first page in a block, a scan for
248 * factory bad blocks will detect these blocks as bad, e.g.
249 * when function nand_scan_bbt() is executed to build a new
250 * bad block table.
251 */
252 memset(fcb_raw_page + mtd->writesize, 0xFF, 2);
253 }
254 for (i = 0; i < 2; i++) {
255 if (mtd_block_isbad(mtd, off)) {
256 printf("Block %d is bad, skipped\n", i);
257 continue;
258 }
259
260 /*
261 * User BCH ECC hardware module for i.MX7
262 */
263 if (is_mx7()) {
264 u32 off = i * mtd->erasesize;
265 size_t rwsize = sizeof(*fcb);
266
267 printf("Writing %d bytes to 0x%x: ", rwsize, off);
268
269 /* switch nand BCH to FCB compatible settings */
270 mxs_nand_mode_fcb(mtd);
271 ret = nand_write(mtd, off, &rwsize,
272 (unsigned char *)fcb);
273 mxs_nand_mode_normal(mtd);
274
275 printf("%s\n", ret ? "ERROR" : "OK");
276 } else if (is_mx6()) {
277 /* raw write */
278 mtd_oob_ops_t ops = {
279 .datbuf = (u8 *)fcb_raw_page,
280 .oobbuf = ((u8 *)fcb_raw_page) +
281 mtd->writesize,
282 .len = mtd->writesize,
283 .ooblen = mtd->oobsize,
284 .mode = MTD_OPS_RAW
285 };
286
287 ret = mtd_write_oob(mtd, mtd->erasesize * i, &ops);
288 if (ret)
289 goto fcb_raw_page_err;
290 debug("NAND fcb write: 0x%x offset 0x%x written: %s\n",
291 mtd->erasesize * i, ops.len, ret ?
292 "ERROR" : "OK");
293 }
294
295 ret = mtd_write(mtd, mtd->erasesize * i + mtd->writesize,
296 mtd->writesize, &dummy, (void *)dbbt);
297 if (ret)
298 goto fcb_raw_page_err;
299 debug("NAND dbbt write: 0x%x offset, 0x%x bytes written: %s\n",
300 mtd->erasesize * i + mtd->writesize, dummy,
301 ret ? "ERROR" : "OK");
302
303 /* dbbtpages == 0 if no bad blocks */
304 if (dbbt->dbbtpages > 0) {
305 loff_t to = (mtd->erasesize * i + mtd->writesize * 5);
306
307 ret = mtd_write(mtd, to, mtd->writesize, &dummy,
308 dbbt_data_page);
309 if (ret)
310 goto fcb_raw_page_err;
311 }
312 }
313
314fcb_raw_page_err:
315 if (is_mx6())
316 kfree(fcb_raw_page);
317
318 return ret;
319}
320
Shyam Saini1d43e242019-06-14 13:05:33 +0530321static int nandbcb_update(struct mtd_info *mtd, loff_t off, size_t size,
322 size_t maxsize, const u_char *buf)
323{
324 nand_erase_options_t opts;
325 struct fcb_block *fcb;
326 struct dbbt_block *dbbt;
327 loff_t fw1_off;
Igor Opaniuk1b899a82019-11-03 16:49:45 +0100328 void *fwbuf, *dbbt_page, *dbbt_data_page;
329 u32 fw1_start, fw1_pages;
Shyam Saini1d43e242019-06-14 13:05:33 +0530330 int nr_blks, nr_blks_fcb, fw1_blk;
Igor Opaniuk1b899a82019-11-03 16:49:45 +0100331 size_t fwsize;
332 int ret;
Shyam Saini1d43e242019-06-14 13:05:33 +0530333
334 /* erase */
335 memset(&opts, 0, sizeof(opts));
336 opts.offset = off;
337 opts.length = maxsize - 1;
338 ret = nand_erase_opts(mtd, &opts);
339 if (ret) {
340 printf("%s: erase failed (ret = %d)\n", __func__, ret);
341 return ret;
342 }
343
344 /*
345 * Reference documentation from i.MX6DQRM section 8.5.2.2
346 *
347 * Nand Boot Control Block(BCB) contains two data structures,
348 * - Firmware Configuration Block(FCB)
349 * - Discovered Bad Block Table(DBBT)
350 *
351 * FCB contains,
352 * - nand timings
353 * - DBBT search page address,
354 * - start page address of primary firmware
355 * - start page address of secondary firmware
356 *
357 * setup fcb:
358 * - number of blocks = mtd partition size / mtd erasesize
359 * - two firmware blocks, primary and secondary
360 * - first 4 block for FCB/DBBT
361 * - rest split in half for primary and secondary firmware
362 * - same firmware will write two times
363 */
364 nr_blks_fcb = 2;
365 nr_blks = maxsize / mtd->erasesize;
366 fw1_blk = nr_blks_fcb;
367
368 /* write fw */
369 fwsize = ALIGN(size + FLASH_OFFSET_STANDARD + mtd->writesize,
370 mtd->writesize);
371 fwbuf = kzalloc(fwsize, GFP_KERNEL);
372 if (!fwbuf) {
373 debug("failed to allocate fwbuf\n");
374 ret = -ENOMEM;
375 goto err;
376 }
377
378 memcpy(fwbuf + FLASH_OFFSET_STANDARD, buf, size);
379 fw1_off = fw1_blk * mtd->erasesize;
380 ret = nand_write_skip_bad(mtd, fw1_off, &fwsize, NULL, maxsize,
381 (u_char *)fwbuf, WITH_WR_VERIFY);
382 printf("NAND fw write: 0x%llx offset, 0x%x bytes written: %s\n",
383 fw1_off, fwsize, ret ? "ERROR" : "OK");
384 if (ret)
385 goto fwbuf_err;
386
387 /* fill fcb */
388 fcb = kzalloc(sizeof(*fcb), GFP_KERNEL);
389 if (!fcb) {
390 debug("failed to allocate fcb\n");
391 ret = -ENOMEM;
392 goto fwbuf_err;
393 }
394
Igor Opaniuk1b899a82019-11-03 16:49:45 +0100395 fw1_start = (fw1_blk * mtd->erasesize) / mtd->writesize;
396 fw1_pages = size / mtd->writesize + 1;
397 fill_fcb(fcb, mtd, fw1_start, 0, fw1_pages);
Shyam Saini1d43e242019-06-14 13:05:33 +0530398
399 /* fill dbbt */
400 dbbt_page = kzalloc(mtd->writesize, GFP_KERNEL);
401 if (!dbbt_page) {
402 debug("failed to allocate dbbt_page\n");
403 ret = -ENOMEM;
404 goto fcb_err;
405 }
406
407 dbbt_data_page = kzalloc(mtd->writesize, GFP_KERNEL);
408 if (!dbbt_data_page) {
409 debug("failed to allocate dbbt_data_page\n");
410 ret = -ENOMEM;
411 goto dbbt_page_err;
412 }
413
414 dbbt = dbbt_page;
415 dbbt->checksum = 0;
416 dbbt->fingerprint = DBBT_FINGERPRINT2;
417 dbbt->version = DBBT_VERSION_1;
418 ret = dbbt_fill_data(mtd, dbbt_data_page, nr_blks);
419 if (ret < 0)
420 goto dbbt_data_page_err;
421 else if (ret > 0)
422 dbbt->dbbtpages = 1;
423
Igor Opaniuk1b899a82019-11-03 16:49:45 +0100424 /* write fcb and dbbt to nand */
425 ret = write_fcb_dbbt(mtd, fcb, dbbt, dbbt_data_page, off);
426 if (ret < 0)
427 printf("failed to write FCB/DBBT\n");
Shyam Saini1d43e242019-06-14 13:05:33 +0530428
Shyam Saini1d43e242019-06-14 13:05:33 +0530429dbbt_data_page_err:
430 kfree(dbbt_data_page);
431dbbt_page_err:
432 kfree(dbbt_page);
433fcb_err:
434 kfree(fcb);
435fwbuf_err:
436 kfree(fwbuf);
437err:
438 return ret;
439}
440
Igor Opaniukae8a53e2019-11-03 16:49:46 +0100441static int do_nandbcb_bcbonly(int argc, char * const argv[])
442{
443 struct fcb_block *fcb;
444 struct dbbt_block *dbbt;
445 u32 fw_len, fw1_off, fw2_off;
446 struct mtd_info *mtd;
447 void *dbbt_page, *dbbt_data_page;
448 int dev, ret;
449
450 dev = nand_curr_device;
451 if ((dev < 0) || (dev >= CONFIG_SYS_MAX_NAND_DEVICE) ||
452 (!get_nand_dev_by_index(dev))) {
453 puts("No devices available\n");
454 return CMD_RET_FAILURE;
455 }
456
457 mtd = get_nand_dev_by_index(dev);
458
459 if (argc < 3)
460 return CMD_RET_FAILURE;
461
462 fw_len = simple_strtoul(argv[1], NULL, 16);
463 fw1_off = simple_strtoul(argv[2], NULL, 16);
464
465 if (argc > 3)
466 fw2_off = simple_strtoul(argv[3], NULL, 16);
467 else
468 fw2_off = fw1_off;
469
470 /* fill fcb */
471 fcb = kzalloc(sizeof(*fcb), GFP_KERNEL);
472 if (!fcb) {
473 debug("failed to allocate fcb\n");
474 ret = -ENOMEM;
475 return CMD_RET_FAILURE;
476 }
477
478 fill_fcb(fcb, mtd, fw1_off / mtd->writesize,
479 fw2_off / mtd->writesize, fw_len / mtd->writesize);
480
481 /* fill dbbt */
482 dbbt_page = kzalloc(mtd->writesize, GFP_KERNEL);
483 if (!dbbt_page) {
484 debug("failed to allocate dbbt_page\n");
485 ret = -ENOMEM;
486 goto fcb_err;
487 }
488
489 dbbt_data_page = kzalloc(mtd->writesize, GFP_KERNEL);
490 if (!dbbt_data_page) {
491 debug("failed to allocate dbbt_data_page\n");
492 ret = -ENOMEM;
493 goto dbbt_page_err;
494 }
495
496 dbbt = dbbt_page;
497 dbbt->checksum = 0;
498 dbbt->fingerprint = DBBT_FINGERPRINT2;
499 dbbt->version = DBBT_VERSION_1;
500 ret = dbbt_fill_data(mtd, dbbt_data_page, 0);
501 if (ret < 0)
502 goto dbbt_data_page_err;
503 else if (ret > 0)
504 dbbt->dbbtpages = 1;
505
506 /* write fcb and dbbt to nand */
507 ret = write_fcb_dbbt(mtd, fcb, dbbt, dbbt_data_page, 0);
508dbbt_data_page_err:
509 kfree(dbbt_data_page);
510dbbt_page_err:
511 kfree(dbbt_page);
512fcb_err:
513 kfree(fcb);
514
515 if (ret < 0) {
516 printf("failed to write FCB/DBBT\n");
517 return CMD_RET_FAILURE;
518 }
519
520 return CMD_RET_SUCCESS;
521}
522
Shyam Saini1d43e242019-06-14 13:05:33 +0530523static int do_nandbcb_update(int argc, char * const argv[])
524{
525 struct mtd_info *mtd;
526 loff_t addr, offset, size, maxsize;
527 char *endp;
528 u_char *buf;
529 int dev;
530 int ret;
531
532 if (argc != 4)
533 return CMD_RET_USAGE;
534
535 dev = nand_curr_device;
536 if (dev < 0) {
Igor Opaniuk1b899a82019-11-03 16:49:45 +0100537 printf("failed to get nand_curr_device, run nand device\n");
Shyam Saini1d43e242019-06-14 13:05:33 +0530538 return CMD_RET_FAILURE;
539 }
540
541 addr = simple_strtoul(argv[1], &endp, 16);
542 if (*argv[1] == 0 || *endp != 0)
543 return CMD_RET_FAILURE;
544
545 mtd = get_nand_dev_by_index(dev);
546 if (mtd_arg_off_size(argc - 2, argv + 2, &dev, &offset, &size,
547 &maxsize, MTD_DEV_TYPE_NAND, mtd->size))
548 return CMD_RET_FAILURE;
549
550 buf = map_physmem(addr, size, MAP_WRBACK);
551 if (!buf) {
552 puts("failed to map physical memory\n");
553 return CMD_RET_FAILURE;
554 }
555
556 ret = nandbcb_update(mtd, offset, size, maxsize, buf);
557
558 return ret == 0 ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
559}
560
561static int do_nandbcb(cmd_tbl_t *cmdtp, int flag, int argc,
562 char * const argv[])
563{
564 const char *cmd;
565 int ret = 0;
566
567 if (argc < 5)
568 goto usage;
569
570 cmd = argv[1];
571 --argc;
572 ++argv;
573
574 if (strcmp(cmd, "update") == 0) {
575 ret = do_nandbcb_update(argc, argv);
576 goto done;
577 }
578
Igor Opaniukae8a53e2019-11-03 16:49:46 +0100579 if (strcmp(cmd, "bcbonly") == 0) {
580 ret = do_nandbcb_bcbonly(argc, argv);
581 goto done;
582 }
583
Shyam Saini1d43e242019-06-14 13:05:33 +0530584done:
585 if (ret != -1)
586 return ret;
587usage:
588 return CMD_RET_USAGE;
589}
590
Parthiban Nallathambi4ee0ff12019-08-23 18:35:10 +0200591#ifdef CONFIG_SYS_LONGHELP
Shyam Saini1d43e242019-06-14 13:05:33 +0530592static char nandbcb_help_text[] =
593 "update addr off|partition len - update 'len' bytes starting at\n"
Igor Opaniukae8a53e2019-11-03 16:49:46 +0100594 " 'off|part' to memory address 'addr', skipping bad blocks\n"
595 "bcbonly fw-size fw1-off [fw2-off] - write only BCB (FCB and DBBT)\n"
Igor Opaniuk061b63b2019-12-16 14:06:44 +0200596 " where `fw-size` is fw sizes in bytes, `fw1-off`\n"
597 " and `fw2-off` - firmware offsets\n"
598 " FIY, BCB isn't erased automatically, so mtd erase should\n"
599 " be called in advance before writing new BCB:\n"
600 " > mtd erase mx7-bcb";
Parthiban Nallathambi4ee0ff12019-08-23 18:35:10 +0200601#endif
Shyam Saini1d43e242019-06-14 13:05:33 +0530602
603U_BOOT_CMD(nandbcb, 5, 1, do_nandbcb,
Igor Opaniuk061b63b2019-12-16 14:06:44 +0200604 "i.MX6/i.MX7 NAND Boot Control Blocks write",
Shyam Saini1d43e242019-06-14 13:05:33 +0530605 nandbcb_help_text
606);