2 * Copyright (C) 2016 Sigma Designs
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * version 2 as published by the Free Software Foundation.
11 #include <linux/clk.h>
12 #include <linux/iopoll.h>
13 #include <linux/module.h>
14 #include <linux/mtd/nand.h>
15 #include <linux/dmaengine.h>
16 #include <linux/dma-mapping.h>
17 #include <linux/platform_device.h>
19 /* Offsets relative to chip->base */
24 /* Offsets relative to reg_base */
25 #define NFC_STATUS 0x00
26 #define NFC_FLASH_CMD 0x04
27 #define NFC_DEVICE_CFG 0x08
28 #define NFC_TIMING1 0x0c
29 #define NFC_TIMING2 0x10
30 #define NFC_XFER_CFG 0x14
31 #define NFC_PKT_0_CFG 0x18
32 #define NFC_PKT_N_CFG 0x1c
33 #define NFC_BB_CFG 0x20
34 #define NFC_ADDR_PAGE 0x24
35 #define NFC_ADDR_OFFSET 0x28
36 #define NFC_XFER_STATUS 0x2c
38 /* NFC_STATUS values */
39 #define CMD_READY BIT(31)
41 /* NFC_FLASH_CMD values */
45 /* NFC_XFER_STATUS values */
46 #define PAGE_IS_EMPTY BIT(16)
48 /* Offsets relative to mem_base */
49 #define METADATA 0x000
50 #define ERROR_REPORT 0x1c0
53 * Error reports are split in two bytes:
54 * byte 0 for the first packet in the page (PKT_0)
55 * byte 1 for other packets in the page (PKT_N, for N > 0)
56 * ERR_COUNT_PKT_N is the max error count over all but the first packet.
58 #define DECODE_OK_PKT_0(v) ((v) & BIT(7))
59 #define DECODE_OK_PKT_N(v) ((v) & BIT(15))
60 #define ERR_COUNT_PKT_0(v) (((v) >> 0) & 0x3f)
61 #define ERR_COUNT_PKT_N(v) (((v) >> 8) & 0x3f)
63 /* Offsets relative to pbus_base */
64 #define PBUS_CS_CTRL 0x83c
65 #define PBUS_PAD_MODE 0x8f0
67 /* PBUS_CS_CTRL values */
68 #define PBUS_IORDY BIT(31)
71 * PBUS_PAD_MODE values
72 * In raw mode, the driver communicates directly with the NAND chips.
73 * In NFC mode, the NAND Flash controller manages the communication.
74 * We use NFC mode for read and write; raw mode for everything else.
77 #define MODE_NFC BIT(31)
79 #define METADATA_SIZE 4
81 #define FIELD_ORDER 15
86 struct nand_hw_control hw;
87 void __iomem *reg_base;
88 void __iomem *mem_base;
89 void __iomem *pbus_base;
90 struct tango_chip *chips[MAX_CS];
91 struct dma_chan *chan;
95 #define to_tango_nfc(ptr) container_of(ptr, struct tango_nfc, hw)
98 struct nand_chip nand_chip;
108 #define to_tango_chip(ptr) container_of(ptr, struct tango_chip, nand_chip)
110 #define XFER_CFG(cs, page_count, steps, metadata_size) \
111 ((cs) << 24 | (page_count) << 16 | (steps) << 8 | (metadata_size))
113 #define PKT_CFG(size, strength) ((size) << 16 | (strength))
115 #define BB_CFG(bb_offset, bb_size) ((bb_offset) << 16 | (bb_size))
117 #define TIMING(t0, t1, t2, t3) ((t0) << 24 | (t1) << 16 | (t2) << 8 | (t3))
119 static void tango_cmd_ctrl(struct mtd_info *mtd, int dat, unsigned int ctrl)
121 struct tango_chip *tchip = to_tango_chip(mtd_to_nand(mtd));
124 writeb_relaxed(dat, tchip->base + PBUS_CMD);
127 writeb_relaxed(dat, tchip->base + PBUS_ADDR);
130 static int tango_dev_ready(struct mtd_info *mtd)
132 struct nand_chip *chip = mtd_to_nand(mtd);
133 struct tango_nfc *nfc = to_tango_nfc(chip->controller);
135 return readl_relaxed(nfc->pbus_base + PBUS_CS_CTRL) & PBUS_IORDY;
138 static u8 tango_read_byte(struct mtd_info *mtd)
140 struct tango_chip *tchip = to_tango_chip(mtd_to_nand(mtd));
142 return readb_relaxed(tchip->base + PBUS_DATA);
145 static void tango_read_buf(struct mtd_info *mtd, u8 *buf, int len)
147 struct tango_chip *tchip = to_tango_chip(mtd_to_nand(mtd));
149 ioread8_rep(tchip->base + PBUS_DATA, buf, len);
152 static void tango_write_buf(struct mtd_info *mtd, const u8 *buf, int len)
154 struct tango_chip *tchip = to_tango_chip(mtd_to_nand(mtd));
156 iowrite8_rep(tchip->base + PBUS_DATA, buf, len);
159 static void tango_select_chip(struct mtd_info *mtd, int idx)
161 struct nand_chip *chip = mtd_to_nand(mtd);
162 struct tango_nfc *nfc = to_tango_nfc(chip->controller);
163 struct tango_chip *tchip = to_tango_chip(chip);
166 return; /* No "chip unselect" function */
168 writel_relaxed(tchip->timing1, nfc->reg_base + NFC_TIMING1);
169 writel_relaxed(tchip->timing2, nfc->reg_base + NFC_TIMING2);
170 writel_relaxed(tchip->xfer_cfg, nfc->reg_base + NFC_XFER_CFG);
171 writel_relaxed(tchip->pkt_0_cfg, nfc->reg_base + NFC_PKT_0_CFG);
172 writel_relaxed(tchip->pkt_n_cfg, nfc->reg_base + NFC_PKT_N_CFG);
173 writel_relaxed(tchip->bb_cfg, nfc->reg_base + NFC_BB_CFG);
177 * The controller does not check for bitflips in erased pages,
178 * therefore software must check instead.
180 static int check_erased_page(struct nand_chip *chip, u8 *buf)
182 struct mtd_info *mtd = nand_to_mtd(chip);
183 u8 *meta = chip->oob_poi + BBM_SIZE;
184 u8 *ecc = chip->oob_poi + BBM_SIZE + METADATA_SIZE;
185 const int ecc_size = chip->ecc.bytes;
186 const int pkt_size = chip->ecc.size;
187 int i, res, meta_len, bitflips = 0;
189 for (i = 0; i < chip->ecc.steps; ++i) {
190 meta_len = i ? 0 : METADATA_SIZE;
191 res = nand_check_erased_ecc_chunk(buf, pkt_size, ecc, ecc_size,
195 mtd->ecc_stats.failed++;
197 bitflips = max(res, bitflips);
205 static int decode_error_report(struct tango_nfc *nfc)
209 status = readl_relaxed(nfc->reg_base + NFC_XFER_STATUS);
210 if (status & PAGE_IS_EMPTY)
213 res = readl_relaxed(nfc->mem_base + ERROR_REPORT);
215 if (DECODE_OK_PKT_0(res) && DECODE_OK_PKT_N(res))
216 return max(ERR_COUNT_PKT_0(res), ERR_COUNT_PKT_N(res));
221 static void tango_dma_callback(void *arg)
226 static int do_dma(struct tango_nfc *nfc, enum dma_data_direction dir, int cmd,
227 const void *buf, int len, int page)
229 void __iomem *addr = nfc->reg_base + NFC_STATUS;
230 struct dma_chan *chan = nfc->chan;
231 struct dma_async_tx_descriptor *desc;
232 enum dma_transfer_direction tdir;
233 struct scatterlist sg;
234 struct completion tx_done;
238 sg_init_one(&sg, buf, len);
239 if (dma_map_sg(chan->device->dev, &sg, 1, dir) != 1)
242 tdir = dir == DMA_TO_DEVICE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM;
243 desc = dmaengine_prep_slave_sg(chan, &sg, 1, tdir, DMA_PREP_INTERRUPT);
247 desc->callback = tango_dma_callback;
248 desc->callback_param = &tx_done;
249 init_completion(&tx_done);
251 writel_relaxed(MODE_NFC, nfc->pbus_base + PBUS_PAD_MODE);
253 writel_relaxed(page, nfc->reg_base + NFC_ADDR_PAGE);
254 writel_relaxed(0, nfc->reg_base + NFC_ADDR_OFFSET);
255 writel_relaxed(cmd, nfc->reg_base + NFC_FLASH_CMD);
257 dmaengine_submit(desc);
258 dma_async_issue_pending(chan);
260 res = wait_for_completion_timeout(&tx_done, HZ);
262 err = readl_poll_timeout(addr, val, val & CMD_READY, 0, 1000);
264 writel_relaxed(MODE_RAW, nfc->pbus_base + PBUS_PAD_MODE);
267 dma_unmap_sg(chan->device->dev, &sg, 1, dir);
272 static int tango_read_page(struct mtd_info *mtd, struct nand_chip *chip,
273 u8 *buf, int oob_required, int page)
275 struct tango_nfc *nfc = to_tango_nfc(chip->controller);
276 int err, res, len = mtd->writesize;
279 chip->ecc.read_oob(mtd, chip, page);
281 err = do_dma(nfc, DMA_FROM_DEVICE, NFC_READ, buf, len, page);
285 res = decode_error_report(nfc);
287 chip->ecc.read_oob_raw(mtd, chip, page);
288 res = check_erased_page(chip, buf);
294 static int tango_write_page(struct mtd_info *mtd, struct nand_chip *chip,
295 const u8 *buf, int oob_required, int page)
297 struct tango_nfc *nfc = to_tango_nfc(chip->controller);
298 int err, len = mtd->writesize;
300 /* Calling tango_write_oob() would send PAGEPROG twice */
304 writel_relaxed(0xffffffff, nfc->mem_base + METADATA);
305 err = do_dma(nfc, DMA_TO_DEVICE, NFC_WRITE, buf, len, page);
312 static void aux_read(struct nand_chip *chip, u8 **buf, int len, int *pos)
314 struct mtd_info *mtd = nand_to_mtd(chip);
319 /* skip over "len" bytes */
320 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, *pos, -1);
322 tango_read_buf(mtd, *buf, len);
327 static void aux_write(struct nand_chip *chip, const u8 **buf, int len, int *pos)
329 struct mtd_info *mtd = nand_to_mtd(chip);
334 /* skip over "len" bytes */
335 chip->cmdfunc(mtd, NAND_CMD_RNDIN, *pos, -1);
337 tango_write_buf(mtd, *buf, len);
343 * Physical page layout (not drawn to scale)
345 * NB: Bad Block Marker area splits PKT_N in two (N1, N2).
347 * +---+-----------------+-------+-----+-----------+-----+----+-------+
348 * | M | PKT_0 | ECC_0 | ... | N1 | BBM | N2 | ECC_N |
349 * +---+-----------------+-------+-----+-----------+-----+----+-------+
351 * Logical page layout:
353 * +-----+---+-------+-----+-------+
354 * oob = | BBM | M | ECC_0 | ... | ECC_N |
355 * +-----+---+-------+-----+-------+
357 * +-----------------+-----+-----------------+
358 * buf = | PKT_0 | ... | PKT_N |
359 * +-----------------+-----+-----------------+
361 static void raw_read(struct nand_chip *chip, u8 *buf, u8 *oob)
363 struct mtd_info *mtd = nand_to_mtd(chip);
365 const int page_size = mtd->writesize;
366 const int ecc_size = chip->ecc.bytes;
367 const int pkt_size = chip->ecc.size;
368 int pos = 0; /* position within physical page */
369 int rem = page_size; /* bytes remaining until BBM area */
374 aux_read(chip, &oob, METADATA_SIZE, &pos);
376 while (rem > pkt_size) {
377 aux_read(chip, &buf, pkt_size, &pos);
378 aux_read(chip, &oob, ecc_size, &pos);
379 rem = page_size - pos;
382 aux_read(chip, &buf, rem, &pos);
383 aux_read(chip, &oob_orig, BBM_SIZE, &pos);
384 aux_read(chip, &buf, pkt_size - rem, &pos);
385 aux_read(chip, &oob, ecc_size, &pos);
388 static void raw_write(struct nand_chip *chip, const u8 *buf, const u8 *oob)
390 struct mtd_info *mtd = nand_to_mtd(chip);
391 const u8 *oob_orig = oob;
392 const int page_size = mtd->writesize;
393 const int ecc_size = chip->ecc.bytes;
394 const int pkt_size = chip->ecc.size;
395 int pos = 0; /* position within physical page */
396 int rem = page_size; /* bytes remaining until BBM area */
401 aux_write(chip, &oob, METADATA_SIZE, &pos);
403 while (rem > pkt_size) {
404 aux_write(chip, &buf, pkt_size, &pos);
405 aux_write(chip, &oob, ecc_size, &pos);
406 rem = page_size - pos;
409 aux_write(chip, &buf, rem, &pos);
410 aux_write(chip, &oob_orig, BBM_SIZE, &pos);
411 aux_write(chip, &buf, pkt_size - rem, &pos);
412 aux_write(chip, &oob, ecc_size, &pos);
415 static int tango_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
416 u8 *buf, int oob_required, int page)
418 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
419 raw_read(chip, buf, chip->oob_poi);
423 static int tango_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
424 const u8 *buf, int oob_required, int page)
426 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0, page);
427 raw_write(chip, buf, chip->oob_poi);
428 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
432 static int tango_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
435 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
436 raw_read(chip, NULL, chip->oob_poi);
440 static int tango_write_oob(struct mtd_info *mtd, struct nand_chip *chip,
443 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0, page);
444 raw_write(chip, NULL, chip->oob_poi);
445 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
446 chip->waitfunc(mtd, chip);
450 static int oob_ecc(struct mtd_info *mtd, int idx, struct mtd_oob_region *res)
452 struct nand_chip *chip = mtd_to_nand(mtd);
453 struct nand_ecc_ctrl *ecc = &chip->ecc;
455 if (idx >= ecc->steps)
458 res->offset = BBM_SIZE + METADATA_SIZE + ecc->bytes * idx;
459 res->length = ecc->bytes;
464 static int oob_free(struct mtd_info *mtd, int idx, struct mtd_oob_region *res)
466 return -ERANGE; /* no free space in spare area */
469 static const struct mtd_ooblayout_ops tango_nand_ooblayout_ops = {
474 static u32 to_ticks(int kHz, int ps)
476 return DIV_ROUND_UP_ULL((u64)kHz * ps, NSEC_PER_SEC);
479 static int tango_set_timings(struct mtd_info *mtd, int csline,
480 const struct nand_data_interface *conf)
482 const struct nand_sdr_timings *sdr = nand_get_sdr_timings(conf);
483 struct nand_chip *chip = mtd_to_nand(mtd);
484 struct tango_nfc *nfc = to_tango_nfc(chip->controller);
485 struct tango_chip *tchip = to_tango_chip(chip);
486 u32 Trdy, Textw, Twc, Twpw, Tacc, Thold, Trpw, Textr;
487 int kHz = nfc->freq_kHz;
492 if (csline == NAND_DATA_IFACE_CHECK_ONLY)
495 Trdy = to_ticks(kHz, sdr->tCEA_max - sdr->tREA_max);
496 Textw = to_ticks(kHz, sdr->tWB_max);
497 Twc = to_ticks(kHz, sdr->tWC_min);
498 Twpw = to_ticks(kHz, sdr->tWC_min - sdr->tWP_min);
500 Tacc = to_ticks(kHz, sdr->tREA_max);
501 Thold = to_ticks(kHz, sdr->tREH_min);
502 Trpw = to_ticks(kHz, sdr->tRC_min - sdr->tREH_min);
503 Textr = to_ticks(kHz, sdr->tRHZ_max);
505 tchip->timing1 = TIMING(Trdy, Textw, Twc, Twpw);
506 tchip->timing2 = TIMING(Tacc, Thold, Trpw, Textr);
511 static int chip_init(struct device *dev, struct device_node *np)
515 struct mtd_info *mtd;
516 struct nand_chip *chip;
517 struct tango_chip *tchip;
518 struct nand_ecc_ctrl *ecc;
519 struct tango_nfc *nfc = dev_get_drvdata(dev);
521 tchip = devm_kzalloc(dev, sizeof(*tchip), GFP_KERNEL);
525 res = of_property_count_u32_elems(np, "reg");
530 return -ENOTSUPP; /* Multi-CS chips are not supported */
532 err = of_property_read_u32_index(np, "reg", 0, &cs);
539 chip = &tchip->nand_chip;
541 mtd = nand_to_mtd(chip);
543 chip->read_byte = tango_read_byte;
544 chip->write_buf = tango_write_buf;
545 chip->read_buf = tango_read_buf;
546 chip->select_chip = tango_select_chip;
547 chip->cmd_ctrl = tango_cmd_ctrl;
548 chip->dev_ready = tango_dev_ready;
549 chip->setup_data_interface = tango_set_timings;
550 chip->options = NAND_USE_BOUNCE_BUFFER |
551 NAND_NO_SUBPAGE_WRITE |
553 chip->controller = &nfc->hw;
554 tchip->base = nfc->pbus_base + (cs * 256);
556 nand_set_flash_node(chip, np);
557 mtd_set_ooblayout(mtd, &tango_nand_ooblayout_ops);
558 mtd->dev.parent = dev;
560 err = nand_scan_ident(mtd, 1, NULL);
564 ecc->mode = NAND_ECC_HW;
565 ecc->algo = NAND_ECC_BCH;
566 ecc->bytes = DIV_ROUND_UP(ecc->strength * FIELD_ORDER, BITS_PER_BYTE);
568 ecc->read_page_raw = tango_read_page_raw;
569 ecc->write_page_raw = tango_write_page_raw;
570 ecc->read_page = tango_read_page;
571 ecc->write_page = tango_write_page;
572 ecc->read_oob = tango_read_oob;
573 ecc->write_oob = tango_write_oob;
574 ecc->options = NAND_ECC_CUSTOM_PAGE_ACCESS;
576 err = nand_scan_tail(mtd);
580 tchip->xfer_cfg = XFER_CFG(cs, 1, ecc->steps, METADATA_SIZE);
581 tchip->pkt_0_cfg = PKT_CFG(ecc->size + METADATA_SIZE, ecc->strength);
582 tchip->pkt_n_cfg = PKT_CFG(ecc->size, ecc->strength);
583 tchip->bb_cfg = BB_CFG(mtd->writesize, BBM_SIZE);
585 err = mtd_device_register(mtd, NULL, 0);
589 nfc->chips[cs] = tchip;
594 static int tango_nand_remove(struct platform_device *pdev)
597 struct tango_nfc *nfc = platform_get_drvdata(pdev);
599 dma_release_channel(nfc->chan);
601 for (cs = 0; cs < MAX_CS; ++cs) {
603 nand_release(nand_to_mtd(&nfc->chips[cs]->nand_chip));
609 static int tango_nand_probe(struct platform_device *pdev)
613 struct resource *res;
614 struct tango_nfc *nfc;
615 struct device_node *np;
617 nfc = devm_kzalloc(&pdev->dev, sizeof(*nfc), GFP_KERNEL);
621 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
622 nfc->reg_base = devm_ioremap_resource(&pdev->dev, res);
623 if (IS_ERR(nfc->reg_base))
624 return PTR_ERR(nfc->reg_base);
626 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
627 nfc->mem_base = devm_ioremap_resource(&pdev->dev, res);
628 if (IS_ERR(nfc->mem_base))
629 return PTR_ERR(nfc->mem_base);
631 res = platform_get_resource(pdev, IORESOURCE_MEM, 2);
632 nfc->pbus_base = devm_ioremap_resource(&pdev->dev, res);
633 if (IS_ERR(nfc->pbus_base))
634 return PTR_ERR(nfc->pbus_base);
636 writel_relaxed(MODE_RAW, nfc->pbus_base + PBUS_PAD_MODE);
638 clk = clk_get(&pdev->dev, NULL);
642 nfc->chan = dma_request_chan(&pdev->dev, "rxtx");
643 if (IS_ERR(nfc->chan))
644 return PTR_ERR(nfc->chan);
646 platform_set_drvdata(pdev, nfc);
647 nand_hw_control_init(&nfc->hw);
648 nfc->freq_kHz = clk_get_rate(clk) / 1000;
650 for_each_child_of_node(pdev->dev.of_node, np) {
651 err = chip_init(&pdev->dev, np);
653 tango_nand_remove(pdev);
661 static const struct of_device_id tango_nand_ids[] = {
662 { .compatible = "sigma,smp8758-nand" },
666 static struct platform_driver tango_nand_driver = {
667 .probe = tango_nand_probe,
668 .remove = tango_nand_remove,
670 .name = "tango-nand",
671 .of_match_table = tango_nand_ids,
675 module_platform_driver(tango_nand_driver);
677 MODULE_LICENSE("GPL");
678 MODULE_AUTHOR("Sigma Designs");
679 MODULE_DESCRIPTION("Tango4 NAND Flash controller driver");