2 * LPC32xx SLC NAND flash controller driver
4 * (C) Copyright 2015 Vladimir Zapolskiy <vz@mleia.com>
6 * Hardware ECC support original source code
7 * Copyright (C) 2008 by NXP Semiconductors
10 * Copyright (c) 2015 Tyco Fire Protection Products.
12 * SPDX-License-Identifier: GPL-2.0+
17 #include <linux/mtd/nand_ecc.h>
18 #include <asm/errno.h>
20 #include <asm/arch/config.h>
21 #include <asm/arch/clk.h>
22 #include <asm/arch/sys_proto.h>
23 #include <asm/arch/dma.h>
24 #include <asm/arch/cpu.h>
26 #if defined(CONFIG_DMA_LPC32XX) && defined(CONFIG_SPL_BUILD)
27 #warning "DMA support in SPL image is not tested"
30 struct lpc32xx_nand_slc_regs {
49 #define CFG_CE_LOW (1 << 5)
50 #define CFG_DMA_ECC (1 << 4) /* Enable DMA ECC bit */
51 #define CFG_ECC_EN (1 << 3) /* ECC enable bit */
52 #define CFG_DMA_BURST (1 << 2) /* DMA burst bit */
53 #define CFG_DMA_DIR (1 << 1) /* DMA write(0)/read(1) bit */
56 #define CTRL_SW_RESET (1 << 2)
57 #define CTRL_ECC_CLEAR (1 << 1) /* Reset ECC bit */
58 #define CTRL_DMA_START (1 << 0) /* Start DMA channel bit */
61 #define STAT_DMA_FIFO (1 << 2) /* DMA FIFO has data bit */
62 #define STAT_NAND_READY (1 << 0)
64 /* INT_STAT register */
65 #define INT_STAT_TC (1 << 1)
66 #define INT_STAT_RDY (1 << 0)
68 /* TAC register bits, be aware of overflows */
69 #define TAC_W_RDY(n) (max_t(uint32_t, (n), 0xF) << 28)
70 #define TAC_W_WIDTH(n) (max_t(uint32_t, (n), 0xF) << 24)
71 #define TAC_W_HOLD(n) (max_t(uint32_t, (n), 0xF) << 20)
72 #define TAC_W_SETUP(n) (max_t(uint32_t, (n), 0xF) << 16)
73 #define TAC_R_RDY(n) (max_t(uint32_t, (n), 0xF) << 12)
74 #define TAC_R_WIDTH(n) (max_t(uint32_t, (n), 0xF) << 8)
75 #define TAC_R_HOLD(n) (max_t(uint32_t, (n), 0xF) << 4)
76 #define TAC_R_SETUP(n) (max_t(uint32_t, (n), 0xF) << 0)
78 /* NAND ECC Layout for small page NAND devices
79 * Note: For large page devices, the default layouts are used. */
80 static struct nand_ecclayout lpc32xx_nand_oob_16 = {
82 .eccpos = {10, 11, 12, 13, 14, 15},
91 #if defined(CONFIG_DMA_LPC32XX)
92 #define ECCSTEPS (CONFIG_SYS_NAND_PAGE_SIZE / CONFIG_SYS_NAND_ECCSIZE)
96 * For Large Block: 17 descriptors = ((16 Data and ECC Read) + 1 Spare Area)
97 * For Small Block: 5 descriptors = ((4 Data and ECC Read) + 1 Spare Area)
99 static struct lpc32xx_dmac_ll dmalist[ECCSTEPS * 2 + 1];
100 static u32 ecc_buffer[8]; /* MAX ECC size */
101 static unsigned int dmachan = (unsigned int)-1; /* Invalid channel */
104 * Helper macro for the DMA client (i.e. NAND SLC):
105 * - to write the next DMA linked list item address
106 * (see arch/include/asm/arch-lpc32xx/dma.h).
107 * - to assign the DMA data register to DMA source or destination address.
108 * - to assign the ECC register to DMA source or destination address.
110 #define lpc32xx_dmac_next_lli(x) ((u32)x)
111 #define lpc32xx_dmac_set_dma_data() ((u32)&lpc32xx_nand_slc_regs->dma_data)
112 #define lpc32xx_dmac_set_ecc() ((u32)&lpc32xx_nand_slc_regs->ecc)
115 static struct lpc32xx_nand_slc_regs __iomem *lpc32xx_nand_slc_regs
116 = (struct lpc32xx_nand_slc_regs __iomem *)SLC_NAND_BASE;
118 static void lpc32xx_nand_init(void)
120 uint32_t hclk = get_hclk_clk_rate();
122 /* Reset SLC NAND controller */
123 writel(CTRL_SW_RESET, &lpc32xx_nand_slc_regs->ctrl);
125 /* 8-bit bus, no DMA, no ECC, ordinary CE signal */
126 writel(0, &lpc32xx_nand_slc_regs->cfg);
128 /* Interrupts disabled and cleared */
129 writel(0, &lpc32xx_nand_slc_regs->ien);
130 writel(INT_STAT_TC | INT_STAT_RDY,
131 &lpc32xx_nand_slc_regs->icr);
133 /* Configure NAND flash timings */
134 writel(TAC_W_RDY(CONFIG_LPC32XX_NAND_SLC_WDR_CLKS) |
135 TAC_W_WIDTH(hclk / CONFIG_LPC32XX_NAND_SLC_WWIDTH) |
136 TAC_W_HOLD(hclk / CONFIG_LPC32XX_NAND_SLC_WHOLD) |
137 TAC_W_SETUP(hclk / CONFIG_LPC32XX_NAND_SLC_WSETUP) |
138 TAC_R_RDY(CONFIG_LPC32XX_NAND_SLC_RDR_CLKS) |
139 TAC_R_WIDTH(hclk / CONFIG_LPC32XX_NAND_SLC_RWIDTH) |
140 TAC_R_HOLD(hclk / CONFIG_LPC32XX_NAND_SLC_RHOLD) |
141 TAC_R_SETUP(hclk / CONFIG_LPC32XX_NAND_SLC_RSETUP),
142 &lpc32xx_nand_slc_regs->tac);
145 static void lpc32xx_nand_cmd_ctrl(struct mtd_info *mtd,
146 int cmd, unsigned int ctrl)
148 debug("ctrl: 0x%08x, cmd: 0x%08x\n", ctrl, cmd);
151 setbits_le32(&lpc32xx_nand_slc_regs->cfg, CFG_CE_LOW);
153 clrbits_le32(&lpc32xx_nand_slc_regs->cfg, CFG_CE_LOW);
155 if (cmd == NAND_CMD_NONE)
159 writel(cmd & 0xFF, &lpc32xx_nand_slc_regs->cmd);
160 else if (ctrl & NAND_ALE)
161 writel(cmd & 0xFF, &lpc32xx_nand_slc_regs->addr);
164 static int lpc32xx_nand_dev_ready(struct mtd_info *mtd)
166 return readl(&lpc32xx_nand_slc_regs->stat) & STAT_NAND_READY;
169 #if defined(CONFIG_DMA_LPC32XX)
171 * Prepares DMA descriptors for NAND RD/WR operations
172 * If the size is < 256 Bytes then it is assumed to be
175 static void lpc32xx_nand_dma_configure(struct nand_chip *chip,
176 const u8 *buffer, int size,
179 u32 i, dmasrc, ctrl, ecc_ctrl, oob_ctrl, dmadst;
180 struct lpc32xx_dmac_ll *dmalist_cur;
181 struct lpc32xx_dmac_ll *dmalist_cur_ecc;
184 * CTRL descriptor entry for reading ECC
185 * Copy Multiple times to sync DMA with Flash Controller
188 DMAC_CHAN_SRC_BURST_1 |
189 DMAC_CHAN_DEST_BURST_1 |
190 DMAC_CHAN_SRC_WIDTH_32 |
191 DMAC_CHAN_DEST_WIDTH_32 |
194 /* CTRL descriptor entry for reading/writing Data */
195 ctrl = (CONFIG_SYS_NAND_ECCSIZE / 4) |
196 DMAC_CHAN_SRC_BURST_4 |
197 DMAC_CHAN_DEST_BURST_4 |
198 DMAC_CHAN_SRC_WIDTH_32 |
199 DMAC_CHAN_DEST_WIDTH_32 |
202 /* CTRL descriptor entry for reading/writing Spare Area */
203 oob_ctrl = (CONFIG_SYS_NAND_OOBSIZE / 4) |
204 DMAC_CHAN_SRC_BURST_4 |
205 DMAC_CHAN_DEST_BURST_4 |
206 DMAC_CHAN_SRC_WIDTH_32 |
207 DMAC_CHAN_DEST_WIDTH_32 |
211 dmasrc = lpc32xx_dmac_set_dma_data();
212 dmadst = (u32)buffer;
213 ctrl |= DMAC_CHAN_DEST_AUTOINC;
215 dmadst = lpc32xx_dmac_set_dma_data();
216 dmasrc = (u32)buffer;
217 ctrl |= DMAC_CHAN_SRC_AUTOINC;
221 * Write Operation Sequence for Small Block NAND
222 * ----------------------------------------------------------
223 * 1. X'fer 256 bytes of data from Memory to Flash.
224 * 2. Copy generated ECC data from Register to Spare Area
225 * 3. X'fer next 256 bytes of data from Memory to Flash.
226 * 4. Copy generated ECC data from Register to Spare Area.
227 * 5. X'fer 16 byets of Spare area from Memory to Flash.
228 * Read Operation Sequence for Small Block NAND
229 * ----------------------------------------------------------
230 * 1. X'fer 256 bytes of data from Flash to Memory.
231 * 2. Copy generated ECC data from Register to ECC calc Buffer.
232 * 3. X'fer next 256 bytes of data from Flash to Memory.
233 * 4. Copy generated ECC data from Register to ECC calc Buffer.
234 * 5. X'fer 16 bytes of Spare area from Flash to Memory.
235 * Write Operation Sequence for Large Block NAND
236 * ----------------------------------------------------------
237 * 1. Steps(1-4) of Write Operations repeate for four times
238 * which generates 16 DMA descriptors to X'fer 2048 bytes of
239 * data & 32 bytes of ECC data.
240 * 2. X'fer 64 bytes of Spare area from Memory to Flash.
241 * Read Operation Sequence for Large Block NAND
242 * ----------------------------------------------------------
243 * 1. Steps(1-4) of Read Operations repeate for four times
244 * which generates 16 DMA descriptors to X'fer 2048 bytes of
245 * data & 32 bytes of ECC data.
246 * 2. X'fer 64 bytes of Spare area from Flash to Memory.
249 for (i = 0; i < size/CONFIG_SYS_NAND_ECCSIZE; i++) {
250 dmalist_cur = &dmalist[i * 2];
251 dmalist_cur_ecc = &dmalist[(i * 2) + 1];
253 dmalist_cur->dma_src = (read ? (dmasrc) : (dmasrc + (i*256)));
254 dmalist_cur->dma_dest = (read ? (dmadst + (i*256)) : dmadst);
255 dmalist_cur->next_lli = lpc32xx_dmac_next_lli(dmalist_cur_ecc);
256 dmalist_cur->next_ctrl = ctrl;
258 dmalist_cur_ecc->dma_src = lpc32xx_dmac_set_ecc();
259 dmalist_cur_ecc->dma_dest = (u32)&ecc_buffer[i];
260 dmalist_cur_ecc->next_lli =
261 lpc32xx_dmac_next_lli(&dmalist[(i * 2) + 2]);
262 dmalist_cur_ecc->next_ctrl = ecc_ctrl;
265 if (i) { /* Data only transfer */
266 dmalist_cur_ecc = &dmalist[(i * 2) - 1];
267 dmalist_cur_ecc->next_lli = 0;
268 dmalist_cur_ecc->next_ctrl |= DMAC_CHAN_INT_TC_EN;
272 /* OOB only transfer */
274 dmasrc = lpc32xx_dmac_set_dma_data();
275 dmadst = (u32)buffer;
276 oob_ctrl |= DMAC_CHAN_DEST_AUTOINC;
278 dmadst = lpc32xx_dmac_set_dma_data();
279 dmasrc = (u32)buffer;
280 oob_ctrl |= DMAC_CHAN_SRC_AUTOINC;
283 /* Read/ Write Spare Area Data To/From Flash */
284 dmalist_cur = &dmalist[i * 2];
285 dmalist_cur->dma_src = dmasrc;
286 dmalist_cur->dma_dest = dmadst;
287 dmalist_cur->next_lli = 0;
288 dmalist_cur->next_ctrl = (oob_ctrl | DMAC_CHAN_INT_TC_EN);
291 static void lpc32xx_nand_xfer(struct mtd_info *mtd, const u8 *buf,
294 struct nand_chip *chip = mtd->priv;
298 /* DMA Channel Configuration */
299 config = (read ? DMAC_CHAN_FLOW_D_P2M : DMAC_CHAN_FLOW_D_M2P) |
300 (read ? DMAC_DEST_PERIP(0) : DMAC_DEST_PERIP(DMA_PERID_NAND1)) |
301 (read ? DMAC_SRC_PERIP(DMA_PERID_NAND1) : DMAC_SRC_PERIP(0)) |
304 /* Prepare DMA descriptors */
305 lpc32xx_nand_dma_configure(chip, buf, len, read);
307 /* Setup SLC controller and start transfer */
309 setbits_le32(&lpc32xx_nand_slc_regs->cfg, CFG_DMA_DIR);
310 else /* NAND_ECC_WRITE */
311 clrbits_le32(&lpc32xx_nand_slc_regs->cfg, CFG_DMA_DIR);
312 setbits_le32(&lpc32xx_nand_slc_regs->cfg, CFG_DMA_BURST);
314 /* Write length for new transfers */
315 if (!((readl(&lpc32xx_nand_slc_regs->stat) & STAT_DMA_FIFO) |
316 readl(&lpc32xx_nand_slc_regs->tc))) {
317 int tmp = (len != mtd->oobsize) ? mtd->oobsize : 0;
318 writel(len + tmp, &lpc32xx_nand_slc_regs->tc);
321 setbits_le32(&lpc32xx_nand_slc_regs->ctrl, CTRL_DMA_START);
323 /* Start DMA transfers */
324 ret = lpc32xx_dma_start_xfer(dmachan, dmalist, config);
325 if (unlikely(ret < 0))
329 /* Wait for NAND to be ready */
330 while (!lpc32xx_nand_dev_ready(mtd))
333 /* Wait till DMA transfer is DONE */
334 if (lpc32xx_dma_wait_status(dmachan))
335 pr_err("NAND DMA transfer error!\r\n");
337 /* Stop DMA & HW ECC */
338 clrbits_le32(&lpc32xx_nand_slc_regs->ctrl, CTRL_DMA_START);
339 clrbits_le32(&lpc32xx_nand_slc_regs->cfg,
340 CFG_DMA_DIR | CFG_DMA_BURST | CFG_ECC_EN | CFG_DMA_ECC);
343 static u32 slc_ecc_copy_to_buffer(u8 *spare, const u32 *ecc, int count)
346 for (i = 0; i < (count * CONFIG_SYS_NAND_ECCBYTES);
347 i += CONFIG_SYS_NAND_ECCBYTES) {
348 u32 ce = ecc[i / CONFIG_SYS_NAND_ECCBYTES];
349 ce = ~(ce << 2) & 0xFFFFFF;
350 spare[i+2] = (u8)(ce & 0xFF); ce >>= 8;
351 spare[i+1] = (u8)(ce & 0xFF); ce >>= 8;
352 spare[i] = (u8)(ce & 0xFF);
357 static int lpc32xx_ecc_calculate(struct mtd_info *mtd, const uint8_t *dat,
360 return slc_ecc_copy_to_buffer(ecc_code, ecc_buffer, ECCSTEPS);
364 * Enables and prepares SLC NAND controller
365 * for doing data transfers with H/W ECC enabled.
367 static void lpc32xx_hwecc_enable(struct mtd_info *mtd, int mode)
370 writel(CTRL_ECC_CLEAR, &lpc32xx_nand_slc_regs->ctrl);
372 /* Setup SLC controller for H/W ECC operations */
373 setbits_le32(&lpc32xx_nand_slc_regs->cfg, CFG_ECC_EN | CFG_DMA_ECC);
377 * lpc32xx_correct_data - [NAND Interface] Detect and correct bit error(s)
378 * mtd: MTD block structure
379 * dat: raw data read from the chip
380 * read_ecc: ECC from the chip
381 * calc_ecc: the ECC calculated from raw data
383 * Detect and correct a 1 bit error for 256 byte block
385 int lpc32xx_correct_data(struct mtd_info *mtd, u_char *dat,
386 u_char *read_ecc, u_char *calc_ecc)
390 u_char *r = read_ecc;
391 u_char *c = calc_ecc;
394 for (i = 0 ; i < ECCSTEPS ; i++) {
395 r += CONFIG_SYS_NAND_ECCBYTES;
396 c += CONFIG_SYS_NAND_ECCBYTES;
397 data_offset += CONFIG_SYS_NAND_ECCSIZE;
399 ret1 = nand_correct_data(mtd, dat + data_offset, r, c);
410 #if defined(CONFIG_DMA_LPC32XX)
411 static void lpc32xx_dma_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
413 lpc32xx_nand_xfer(mtd, buf, len, 1);
416 static void lpc32xx_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
419 *buf++ = readl(&lpc32xx_nand_slc_regs->data);
423 static uint8_t lpc32xx_read_byte(struct mtd_info *mtd)
425 return readl(&lpc32xx_nand_slc_regs->data);
428 #if defined(CONFIG_DMA_LPC32XX)
429 static void lpc32xx_dma_write_buf(struct mtd_info *mtd, const uint8_t *buf,
432 lpc32xx_nand_xfer(mtd, buf, len, 0);
435 static void lpc32xx_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
438 writel(*buf++, &lpc32xx_nand_slc_regs->data);
442 static void lpc32xx_write_byte(struct mtd_info *mtd, uint8_t byte)
444 writel(byte, &lpc32xx_nand_slc_regs->data);
447 #if defined(CONFIG_DMA_LPC32XX)
448 /* Reuse the logic from "nand_read_page_hwecc()" */
449 static int lpc32xx_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
450 uint8_t *buf, int oob_required, int page)
455 uint8_t *ecc_calc = chip->buffers->ecccalc;
456 uint8_t *ecc_code = chip->buffers->ecccode;
457 uint32_t *eccpos = chip->ecc.layout->eccpos;
458 unsigned int max_bitflips = 0;
461 * As per the "LPC32x0 and LPC32x0/01 User manual" table 173 notes
462 * and section 9.7, the NAND SLC & DMA allowed single DMA transaction
463 * of a page size using DMA controller scatter/gather mode through
464 * linked list; the ECC read is done without any software intervention.
467 lpc32xx_hwecc_enable(mtd, NAND_ECC_READ);
468 lpc32xx_dma_read_buf(mtd, p, chip->ecc.size * chip->ecc.steps);
469 lpc32xx_ecc_calculate(mtd, p, &ecc_calc[0]);
470 lpc32xx_dma_read_buf(mtd, chip->oob_poi, mtd->oobsize);
472 for (i = 0; i < chip->ecc.total; i++)
473 ecc_code[i] = chip->oob_poi[eccpos[i]];
475 stat = chip->ecc.correct(mtd, p, &ecc_code[0], &ecc_calc[0]);
477 mtd->ecc_stats.failed++;
479 mtd->ecc_stats.corrected += stat;
480 max_bitflips = max_t(unsigned int, max_bitflips, stat);
486 /* Reuse the logic from "nand_write_page_hwecc()" */
487 static int lpc32xx_write_page_hwecc(struct mtd_info *mtd,
488 struct nand_chip *chip,
489 const uint8_t *buf, int oob_required)
492 uint8_t *ecc_calc = chip->buffers->ecccalc;
493 const uint8_t *p = buf;
494 uint32_t *eccpos = chip->ecc.layout->eccpos;
497 * As per the "LPC32x0 and LPC32x0/01 User manual" table 173 notes
498 * and section 9.7, the NAND SLC & DMA allowed single DMA transaction
499 * of a page size using DMA controller scatter/gather mode through
500 * linked list; the ECC read is done without any software intervention.
503 lpc32xx_hwecc_enable(mtd, NAND_ECC_WRITE);
504 lpc32xx_dma_write_buf(mtd, p, chip->ecc.size * chip->ecc.steps);
505 lpc32xx_ecc_calculate(mtd, p, &ecc_calc[0]);
507 for (i = 0; i < chip->ecc.total; i++)
508 chip->oob_poi[eccpos[i]] = ecc_calc[i];
510 lpc32xx_dma_write_buf(mtd, chip->oob_poi, mtd->oobsize);
517 * LPC32xx has only one SLC NAND controller, don't utilize
518 * CONFIG_SYS_NAND_SELF_INIT to be able to reuse this function
519 * both in SPL NAND and U-boot images.
521 int board_nand_init(struct nand_chip *lpc32xx_chip)
523 #if defined(CONFIG_DMA_LPC32XX)
526 /* Acquire a channel for our use */
527 ret = lpc32xx_dma_get_channel();
528 if (unlikely(ret < 0)) {
529 pr_info("Unable to get free DMA channel for NAND transfers\n");
532 dmachan = (unsigned int)ret;
535 lpc32xx_chip->cmd_ctrl = lpc32xx_nand_cmd_ctrl;
536 lpc32xx_chip->dev_ready = lpc32xx_nand_dev_ready;
539 * The implementation of these functions is quite common, but
540 * they MUST be defined, because access to data register
541 * is strictly 32-bit aligned.
543 lpc32xx_chip->read_byte = lpc32xx_read_byte;
544 lpc32xx_chip->write_byte = lpc32xx_write_byte;
546 #if defined(CONFIG_DMA_LPC32XX)
547 /* Hardware ECC calculation is supported when DMA driver is selected */
548 lpc32xx_chip->ecc.mode = NAND_ECC_HW;
550 lpc32xx_chip->read_buf = lpc32xx_dma_read_buf;
551 lpc32xx_chip->write_buf = lpc32xx_dma_write_buf;
553 lpc32xx_chip->ecc.calculate = lpc32xx_ecc_calculate;
554 lpc32xx_chip->ecc.correct = lpc32xx_correct_data;
555 lpc32xx_chip->ecc.hwctl = lpc32xx_hwecc_enable;
556 lpc32xx_chip->chip_delay = 2000;
558 lpc32xx_chip->ecc.read_page = lpc32xx_read_page_hwecc;
559 lpc32xx_chip->ecc.write_page = lpc32xx_write_page_hwecc;
560 lpc32xx_chip->options |= NAND_NO_SUBPAGE_WRITE;
563 * Hardware ECC calculation is not supported by the driver,
564 * because it requires DMA support, see LPC32x0 User Manual,
565 * note after SLC_ECC register description (UM10326, p.198)
567 lpc32xx_chip->ecc.mode = NAND_ECC_SOFT;
570 * The implementation of these functions is quite common, but
571 * they MUST be defined, because access to data register
572 * is strictly 32-bit aligned.
574 lpc32xx_chip->read_buf = lpc32xx_read_buf;
575 lpc32xx_chip->write_buf = lpc32xx_write_buf;
579 * These values are predefined
580 * for both small and large page NAND flash devices.
582 lpc32xx_chip->ecc.size = CONFIG_SYS_NAND_ECCSIZE;
583 lpc32xx_chip->ecc.bytes = CONFIG_SYS_NAND_ECCBYTES;
584 lpc32xx_chip->ecc.strength = 1;
586 if (CONFIG_SYS_NAND_PAGE_SIZE != NAND_LARGE_BLOCK_PAGE_SIZE)
587 lpc32xx_chip->ecc.layout = &lpc32xx_nand_oob_16;
589 #if defined(CONFIG_SYS_NAND_USE_FLASH_BBT)
590 lpc32xx_chip->bbt_options |= NAND_BBT_USE_FLASH;
593 /* Initialize NAND interface */