Lines Matching +full:block +full:- +full:copy
1 // SPDX-License-Identifier: GPL-2.0+
10 * The MLC NAND flash controller provides hardware Reed-Solomon ECC
11 * covering in- and out-of-band data together. Therefore, in- and out-
12 * of-band data must be written together in order to have a valid ECC.
14 * Consequently, pages with meaningful in-band data are written with
15 * blank (all-ones) out-of-band data and a valid ECC, and any later
16 * out-of-band data write will void the ECC.
18 * Therefore, code which reads such late-written out-of-band data
62 #define ICR_ADDR4 0x00000002 /* configure for 4-word addrs */
75 /* time-out for NAND chip / controller loops, in us */
100 * Note: the OOB bytes contain the bad block marker at offsets 0 and 1.
121 width, large block device, and 4 address words */ in lpc32xx_nand_init()
125 &lpc32xx_nand_mlc_registers->lock_pr); in lpc32xx_nand_init()
129 &lpc32xx_nand_mlc_registers->icr); in lpc32xx_nand_init()
132 writel(0, &lpc32xx_nand_mlc_registers->irq_mr); in lpc32xx_nand_init()
136 &lpc32xx_nand_mlc_registers->ceh); in lpc32xx_nand_init()
149 &lpc32xx_nand_mlc_registers->time_reg); in lpc32xx_nand_init()
155 * lpc32xx_cmd_ctrl - write command to either cmd or data register
165 writeb(cmd & 0Xff, &lpc32xx_nand_mlc_registers->cmd); in lpc32xx_cmd_ctrl()
167 writeb(cmd & 0Xff, &lpc32xx_nand_mlc_registers->addr); in lpc32xx_cmd_ctrl()
171 * lpc32xx_read_byte - read a byte from the NAND
177 return readb(&lpc32xx_nand_mlc_registers->data); in lpc32xx_read_byte()
181 * lpc32xx_dev_ready - test if NAND device (actually controller) is ready
189 int status = readl(&lpc32xx_nand_mlc_registers->isr); in lpc32xx_dev_ready()
194 * ECC layout -- this is needed whatever ECC mode we are using.
196 * To make U-Boot's life easier, we pack 'useable' OOB at the
208 /* bytes 0 and 1 are used for the bad block marker */
217 * lpc32xx_read_page_hwecc - read in- and out-of-band data with ECC
221 * @oob_required: caller requires OOB data read to chip->oob_poi
224 * Use large block Auto Decode Read Mode(1) as described in User Manual
229 * ECC will be false if out-of-band data has been updated since in-band
238 struct lpc32xx_oob *oob = (struct lpc32xx_oob *)chip->oob_poi; in lpc32xx_read_page_hwecc()
243 writel(0, &lpc32xx_nand_mlc_registers->ecc_auto_dec_reg); in lpc32xx_read_page_hwecc()
245 for (timeout = LPC32X_NAND_TIMEOUT; timeout; timeout--) { in lpc32xx_read_page_hwecc()
246 status = readl(&lpc32xx_nand_mlc_registers->isr); in lpc32xx_read_page_hwecc()
253 return -1; in lpc32xx_read_page_hwecc()
260 /* copy first 512 bytes into buffer */ in lpc32xx_read_page_hwecc()
261 memcpy(buf+512*i, lpc32xx_nand_mlc_registers->buff, 512); in lpc32xx_read_page_hwecc()
262 /* copy next 6 bytes at front of OOB buffer */ in lpc32xx_read_page_hwecc()
263 memcpy(&oob->free[i], lpc32xx_nand_mlc_registers->buff, 6); in lpc32xx_read_page_hwecc()
264 /* copy last 10 bytes (R/S ECC) at back of OOB buffer */ in lpc32xx_read_page_hwecc()
265 memcpy(&oob->ecc[i], lpc32xx_nand_mlc_registers->buff, 10); in lpc32xx_read_page_hwecc()
271 * lpc32xx_read_page_raw - read raw (in-band, out-of-band and ECC) data
275 * @oob_required: caller requires OOB data read to chip->oob_poi
286 struct lpc32xx_oob *oob = (struct lpc32xx_oob *)chip->oob_poi; in lpc32xx_read_page_raw()
293 for (timeout = LPC32X_NAND_TIMEOUT; timeout; timeout--) { in lpc32xx_read_page_raw()
294 status = readl(&lpc32xx_nand_mlc_registers->isr); in lpc32xx_read_page_raw()
301 return -1; in lpc32xx_read_page_raw()
302 /* copy first 512 bytes into buffer */ in lpc32xx_read_page_raw()
303 memcpy(buf+512*i, lpc32xx_nand_mlc_registers->data, 512); in lpc32xx_read_page_raw()
304 /* copy next 6 bytes at front of OOB buffer */ in lpc32xx_read_page_raw()
305 memcpy(&oob->free[i], lpc32xx_nand_mlc_registers->data, 6); in lpc32xx_read_page_raw()
306 /* copy last 10 bytes (R/S ECC) at back of OOB buffer */ in lpc32xx_read_page_raw()
307 memcpy(&oob->ecc[i], lpc32xx_nand_mlc_registers->data, 10); in lpc32xx_read_page_raw()
313 * lpc32xx_read_oob - read out-of-band data
318 * Read out-of-band data. User Manual section 8.6.4 suggests using Read
323 * ECC covers in- and out-of-band data and was written when out-of-band
324 * data was blank. Therefore, if the out-of-band being read here is not
334 struct lpc32xx_oob *oob = (struct lpc32xx_oob *)chip->oob_poi; in lpc32xx_read_oob()
338 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page); in lpc32xx_read_oob()
343 writel(0, &lpc32xx_nand_mlc_registers->ecc_auto_dec_reg); in lpc32xx_read_oob()
345 for (timeout = LPC32X_NAND_TIMEOUT; timeout; timeout--) { in lpc32xx_read_oob()
346 status = readl(&lpc32xx_nand_mlc_registers->isr); in lpc32xx_read_oob()
361 writel(0, &lpc32xx_nand_mlc_registers->robp); in lpc32xx_read_oob()
362 /* copy next 6 bytes at front of OOB buffer */ in lpc32xx_read_oob()
363 memcpy(&oob->free[i], lpc32xx_nand_mlc_registers->buff, 6); in lpc32xx_read_oob()
364 /* copy next 10 bytes (R/S ECC) at back of OOB buffer */ in lpc32xx_read_oob()
365 memcpy(&oob->ecc[i], lpc32xx_nand_mlc_registers->buff, 10); in lpc32xx_read_oob()
371 * lpc32xx_write_page_hwecc - write in- and out-of-band data with ECC
375 * @oob_required: must write chip->oob_poi to OOB
377 * Use large block Auto Encode as per User Manual section 8.6.4.
388 struct lpc32xx_oob *oob = (struct lpc32xx_oob *)chip->oob_poi; in lpc32xx_write_page_hwecc()
393 writel(0, &lpc32xx_nand_mlc_registers->ecc_enc_reg); in lpc32xx_write_page_hwecc()
394 /* copy first 512 bytes from buffer */ in lpc32xx_write_page_hwecc()
395 memcpy(&lpc32xx_nand_mlc_registers->buff, buf+512*i, 512); in lpc32xx_write_page_hwecc()
396 /* copy next 6 bytes from OOB buffer -- excluding ECC */ in lpc32xx_write_page_hwecc()
397 memcpy(&lpc32xx_nand_mlc_registers->buff, &oob->free[i], 6); in lpc32xx_write_page_hwecc()
399 for (timeout = LPC32X_NAND_TIMEOUT; timeout; timeout--) { in lpc32xx_write_page_hwecc()
400 status = readl(&lpc32xx_nand_mlc_registers->isr); in lpc32xx_write_page_hwecc()
407 return -1; in lpc32xx_write_page_hwecc()
409 writel(0, &lpc32xx_nand_mlc_registers->ecc_auto_enc_reg); in lpc32xx_write_page_hwecc()
411 for (timeout = LPC32X_NAND_TIMEOUT; timeout; timeout--) { in lpc32xx_write_page_hwecc()
412 status = readl(&lpc32xx_nand_mlc_registers->isr); in lpc32xx_write_page_hwecc()
419 return -1; in lpc32xx_write_page_hwecc()
425 * lpc32xx_write_page_raw - write raw (in-band, out-of-band and ECC) data
429 * @oob_required: caller requires OOB data read to chip->oob_poi
432 * Use large block write but without encode.
437 * This function will write the full out-of-band data, including the
446 struct lpc32xx_oob *oob = (struct lpc32xx_oob *)chip->oob_poi; in lpc32xx_write_page_raw()
450 /* copy first 512 bytes from buffer */ in lpc32xx_write_page_raw()
451 memcpy(lpc32xx_nand_mlc_registers->buff, buf+512*i, 512); in lpc32xx_write_page_raw()
452 /* copy next 6 bytes into OOB buffer -- excluding ECC */ in lpc32xx_write_page_raw()
453 memcpy(lpc32xx_nand_mlc_registers->buff, &oob->free[i], 6); in lpc32xx_write_page_raw()
454 /* copy next 10 bytes into OOB buffer -- that is 'ECC' */ in lpc32xx_write_page_raw()
455 memcpy(lpc32xx_nand_mlc_registers->buff, &oob->ecc[i], 10); in lpc32xx_write_page_raw()
461 * lpc32xx_write_oob - write out-of-band data
466 * Since ECC covers in- and out-of-band data, writing out-of-band data
467 * with ECC will render the page ECC wrong -- or, if the page was blank,
468 * then it will produce a good ECC but a later in-band data write will
473 * This implies that we do four writes, since non-ECC out-of-band data
482 struct lpc32xx_oob *oob = (struct lpc32xx_oob *)chip->oob_poi; in lpc32xx_write_oob()
486 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x200+0x210*i, page); in lpc32xx_write_oob()
487 /* copy 6 non-ECC out-of-band bytes directly into NAND */ in lpc32xx_write_oob()
488 memcpy(lpc32xx_nand_mlc_registers->data, &oob->free[i], 6); in lpc32xx_write_oob()
490 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1); in lpc32xx_write_oob()
492 for (timeout = LPC32X_NAND_TIMEOUT; timeout; timeout--) { in lpc32xx_write_oob()
493 status = readl(&lpc32xx_nand_mlc_registers->isr); in lpc32xx_write_oob()
500 return -1; in lpc32xx_write_oob()
506 * lpc32xx_waitfunc - wait until a command is done
518 for (timeout = LPC32X_NAND_TIMEOUT; timeout; timeout--) { in lpc32xx_waitfunc()
519 status = readl(&lpc32xx_nand_mlc_registers->isr); in lpc32xx_waitfunc()
528 return -1; in lpc32xx_waitfunc()
530 writel(NAND_CMD_STATUS, &lpc32xx_nand_mlc_registers->cmd); in lpc32xx_waitfunc()
532 return readb(&lpc32xx_nand_mlc_registers->data); in lpc32xx_waitfunc()
536 * We are self-initializing, so we need our own chip struct
550 /* Set all BOARDSPECIFIC (actually core-specific) fields */ in board_nand_init()
552 lpc32xx_chip.IO_ADDR_R = &lpc32xx_nand_mlc_registers->buff; in board_nand_init()
553 lpc32xx_chip.IO_ADDR_W = &lpc32xx_nand_mlc_registers->buff; in board_nand_init()
557 /* do not set setup_read_retry: this is NAND-chip-specific */ in board_nand_init()
627 writel(NAND_CMD_READ0, &lpc32xx_nand_mlc_registers->cmd); in read_single_page()
629 writel(0, &lpc32xx_nand_mlc_registers->addr); in read_single_page()
630 writel(0, &lpc32xx_nand_mlc_registers->addr); in read_single_page()
631 writel(page & 0xff, &lpc32xx_nand_mlc_registers->addr); in read_single_page()
632 writel((page>>8) & 0xff, &lpc32xx_nand_mlc_registers->addr); in read_single_page()
633 writel((page>>16) & 0xff, &lpc32xx_nand_mlc_registers->addr); in read_single_page()
635 writel(NAND_CMD_READSTART, &lpc32xx_nand_mlc_registers->cmd); in read_single_page()
640 writel(0, &lpc32xx_nand_mlc_registers->ecc_auto_dec_reg); in read_single_page()
642 for (timeout = LPC32X_NAND_TIMEOUT; timeout; timeout--) { in read_single_page()
643 status = readl(&lpc32xx_nand_mlc_registers->isr); in read_single_page()
650 return -1; in read_single_page()
653 return -1; in read_single_page()
660 /* copy first 512 bytes into buffer */ in read_single_page()
661 memcpy(dest+i*512, lpc32xx_nand_mlc_registers->buff, 512); in read_single_page()
662 /* copy next 6 bytes bytes into OOB buffer */ in read_single_page()
663 memcpy(&oob->free[i], lpc32xx_nand_mlc_registers->buff, 6); in read_single_page()
669 * Load U-Boot signed image.
671 * A block is declared bad if at least one of its readable pages has
672 * a bad block marker in its OOB at position 0.
673 * If all pages ion a block are unreadable, the block is considered
678 * If the first block of the image is fully unreadable, it will be
685 * In order to avoid this risk, LPC32XX-based boards which use this
699 int block = 0; in nand_spl_load_image() local
701 /* perform reads block by block */ in nand_spl_load_image()
705 /* read at most one block, possibly less */ in nand_spl_load_image()
713 /* we shall read a full block of pages, maybe less */ in nand_spl_load_image()
719 /* while pages are left and the block is not known as bad */ in nand_spl_load_image()
721 /* we will read OOB, too, for bad block markers */ in nand_spl_load_image()
741 block_pages--; in nand_spl_load_image()
743 /* a fully unreadable block is considered bad */ in nand_spl_load_image()
748 return -1; in nand_spl_load_image()
752 bytes_left -= block_bytes_left; in nand_spl_load_image()
753 pages_left -= block_pages_left; in nand_spl_load_image()
754 blocks_left--; in nand_spl_load_image()
756 /* good or bad, we're done with this block */ in nand_spl_load_image()
757 block++; in nand_spl_load_image()