On 15/01/2014 10:51, Boris BREZILLON wrote:
Add HW ECC support for the sunxi NAND Flash Controller.

Signed-off-by: Boris BREZILLON <b.brezillon....@gmail.com>
---
  drivers/mtd/nand/sunxi_nand.c |  251 ++++++++++++++++++++++++++++++++++++++++-
  1 file changed, 245 insertions(+), 6 deletions(-)

diff --git a/drivers/mtd/nand/sunxi_nand.c b/drivers/mtd/nand/sunxi_nand.c
index 56874f7..d4964d2 100644
--- a/drivers/mtd/nand/sunxi_nand.c
+++ b/drivers/mtd/nand/sunxi_nand.c
@@ -163,6 +163,11 @@ struct sunxi_nand_chip_sel {
  #define DEFAULT_NAME_FORMAT   "nand@%d"
  #define MAX_NAME_SIZE         (sizeof("nand@") + 2)
+struct sunxi_nand_hw_ecc {
+       int mode;
+       struct nand_ecclayout layout;
+};
+
  struct sunxi_nand_chip {
        struct list_head node;
        struct nand_chip nand;
@@ -398,6 +403,117 @@ static void sunxi_nfc_cmd_ctrl(struct mtd_info *mtd, int 
dat,
        sunxi_nfc_wait_int(nfc, NFC_CMD_INT_FLAG, 0);
  }
+static int sunxi_nfc_hwecc_read_page(struct mtd_info *mtd,
+                                    struct nand_chip *chip, uint8_t *buf,
+                                    int oob_required, int page)
+{
+       struct sunxi_nand_chip *sunxi_nand = to_sunxi_nand(mtd);
+       struct sunxi_nfc *nfc = to_sunxi_nfc(sunxi_nand->nand.controller);
+       struct nand_ecc_ctrl *ecc = &chip->ecc;
+       struct nand_ecclayout *layout = ecc->layout;
+       struct sunxi_nand_hw_ecc *data = ecc->priv;
+       int offset;
+       u32 tmp;
+       int i, j;
+
+       tmp = readl(nfc->regs + NFC_REG_ECC_CTL);
+       tmp &= ~(NFC_ECC_MODE | NFC_ECC_PIPELINE | NFC_ECC_BLOCK_SIZE |
+                NFC_ECC_BLOCK_SIZE);
+       tmp |= NFC_ECC_EN | (data->mode << NFC_ECC_MODE_SHIFT);
+       writel(tmp, nfc->regs + NFC_REG_ECC_CTL);
+
+       for (i = 0; i < mtd->writesize / ecc->size; i++) {
+               if (i)
+                       chip->cmdfunc(mtd, NAND_CMD_RNDOUT, i * ecc->size, -1);
+               chip->read_buf(mtd, NULL, chip->ecc.size);
+               offset = mtd->writesize + layout->eccpos[i * ecc->bytes] - 4;
+               chip->cmdfunc(mtd, NAND_CMD_RNDOUT, offset, -1);
+               while ((readl(nfc->regs + NFC_REG_ST) & NFC_CMD_FIFO_STATUS))
+                       ;
+               tmp = NFC_DATA_TRANS | NFC_DATA_SWAP_METHOD | (1 << 30);
+               writel(tmp, nfc->regs + NFC_REG_CMD);
+               sunxi_nfc_wait_int(nfc, NFC_CMD_INT_FLAG, 0);
+               memcpy_fromio(buf + (i * ecc->size), nfc->regs + NFC_RAM0_BASE,
+                             chip->ecc.size);
+       }
+
+       if (oob_required) {
+               chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
+               chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
+       }
+
+       tmp = readl(nfc->regs + NFC_REG_ECC_CTL);
+       tmp &= ~NFC_ECC_EN;
+
+       writel(tmp, nfc->regs + NFC_REG_ECC_CTL);
+
+       return 0;
+}
+
+static int sunxi_nfc_hwecc_write_page(struct mtd_info *mtd,
+                                     struct nand_chip *chip,
+                                     const uint8_t *buf,
+                                     int oob_required)
+{
+       struct sunxi_nand_chip *sunxi_nand = to_sunxi_nand(mtd);
+       struct sunxi_nfc *nfc = to_sunxi_nfc(sunxi_nand->nand.controller);
+       struct nand_ecc_ctrl *ecc = &chip->ecc;
+       struct nand_ecclayout *layout = ecc->layout;
+       struct sunxi_nand_hw_ecc *data = ecc->priv;
+       int offset;
+       u32 tmp;
+       int i;
+       int j;
+
+       tmp = readl(nfc->regs + NFC_REG_ECC_CTL);
+       tmp &= ~(NFC_ECC_MODE | NFC_ECC_PIPELINE | NFC_ECC_BLOCK_SIZE |
+                NFC_ECC_BLOCK_SIZE);
+       tmp |= NFC_ECC_EN | (data->mode << NFC_ECC_MODE_SHIFT);
+
+       writel(tmp, nfc->regs + NFC_REG_ECC_CTL);
+
+       for (i = 0; i < mtd->writesize / ecc->size; i++) {
+               if (i)
+                       chip->cmdfunc(mtd, NAND_CMD_RNDIN, i * ecc->size, -1);
+
+               chip->write_buf(mtd, buf + (i * ecc->size), ecc->size);
+               offset = mtd->writesize + layout->eccpos[i * ecc->bytes] - 4;
+               chip->cmdfunc(mtd, NAND_CMD_RNDIN, offset, -1);
+               while ((readl(nfc->regs + NFC_REG_ST) & NFC_CMD_FIFO_STATUS))
+                       ;
+
+               /* Fill OOB data in */
+               for (j = 0; j < 4; j++) {
+                       if (oob_required) {
+                               offset = layout->eccpos[i * ecc->size] - 4;
+                               writeb(chip->oob_poi[offset + j],
+                                      nfc->regs + NFC_REG_USER_DATA_BASE + j);
+                       } else {
+                               writeb(0xff,
+                                      nfc->regs + NFC_REG_USER_DATA_BASE + j);
+                       }
+               }
+
+               tmp = NFC_DATA_TRANS | NFC_DATA_SWAP_METHOD |
+                     NFC_ACCESS_DIR | (1 << 30);
+               writel(tmp, nfc->regs + NFC_REG_CMD);
+               sunxi_nfc_wait_int(nfc, NFC_CMD_INT_FLAG, 0);

ECC check should be done here (using ECC_CNTX + ECC_ST registers).
I just forgot about it :).

+       }
+
+       if (oob_required && chip->ecc.layout->oobfree[0].length > 2) {
+               chip->cmdfunc(mtd, NAND_CMD_RNDIN, mtd->writesize, -1);
+               chip->write_buf(mtd, chip->oob_poi,
+                               chip->ecc.layout->oobfree[0].length - 2);
+       }
+
+       tmp = readl(nfc->regs + NFC_REG_ECC_CTL);
+       tmp &= ~(NFC_ECC_EN | NFC_ECC_PIPELINE);
+
+       writel(tmp, nfc->regs + NFC_REG_ECC_CTL);
+
+       return 0;
+}
+
  static int sunxi_nand_chip_init_timings(struct sunxi_nand_chip *chip,
                                        struct device_node *np)
  {
@@ -483,6 +599,132 @@ static int sunxi_nand_chip_init_timings(struct 
sunxi_nand_chip *chip,
        return 0;
  }
+static int sunxi_nand_chip_hwecc_init(struct device *dev,
+                                     struct sunxi_nand_chip *chip,
+                                     struct mtd_info *mtd,
+                                     struct device_node *np)
+{
+       struct nand_chip *nand = &chip->nand;
+       struct nand_ecc_ctrl *ecc = &nand->ecc;
+       struct sunxi_nand_hw_ecc *data;
+       struct nand_ecclayout *layout;
+       int nsectors;
+       u32 strength;
+       u32 size;
+       int i;
+       int j;
+
+       data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
+       if (!data)
+               return -ENOMEM;
+
+       ecc->read_page = sunxi_nfc_hwecc_read_page;
+       ecc->write_page = sunxi_nfc_hwecc_write_page;
+
+       if (of_property_read_u32_index(np, "allwinner,ecc-info", 0,
+                                      &strength) ||
+           of_property_read_u32_index(np, "allwinner,ecc-info", 1, &size)) {
+               strength = nand->ecc_strength_ds;
+               size = nand->ecc_step_ds;
+       }
+
+       if (strength <= 16) {
+               strength = 16;
+               ecc->bytes = 28;
+               data->mode = 0;
+       } else if (strength <= 24) {
+               strength = 24;
+               ecc->bytes = 42;
+               data->mode = 1;
+       } else if (strength <= 28) {
+               strength = 28;
+               ecc->bytes = 50;
+               data->mode = 2;
+       } else if (strength <= 32) {
+               strength = 32;
+               ecc->bytes = 56;
+               data->mode = 3;
+       } else if (strength <= 40) {
+               strength = 40;
+               ecc->bytes = 70;
+               data->mode = 4;
+       } else {
+               dev_err(dev, "unsupported strength\n");
+               return -ENOTSUPP;
+       }
+
+       ecc->strength = strength;
+       ecc->size = size;
+
+       layout = &data->layout;
+       nsectors = mtd->writesize / size;
+
+       if (mtd->oobsize < ((ecc->bytes + 4) * nsectors))
+               return -EINVAL;
+
+       layout->eccbytes = (ecc->bytes * nsectors);
+
+       /*
+        * The first 2 bytes are used for BB markers.
+        * We merge the 4 user available bytes from HW ECC with this
+        * first section, hence why the + 2 operation (- 2 + 4).
+        */
+       layout->oobfree[0].length = mtd->oobsize + 2 -
+                                   ((ecc->bytes + 4) * nsectors);
+       layout->oobfree[0].offset = 2;
+       for (i = 0; i < nsectors; i++) {
+               /*
+                * The first 4 ECC block bytes are already counted in the first
+                * obbfree entry.
+                */
+               if (i) {
+                       layout->oobfree[i].offset =
+                               layout->oobfree[i - 1].offset +
+                               layout->oobfree[i - 1].length +
+                               ecc->bytes;
+                       layout->oobfree[i].length = 4;
+               }
+
+               for (j = 0; j < ecc->bytes; j++)
+                       layout->eccpos[(ecc->bytes * i) + j] =
+                                       layout->oobfree[i].offset +
+                                       layout->oobfree[i].length + j;
+       }
+
+       ecc->layout = layout;
+       ecc->priv = data;
+
+       return 0;
+}
+
+static int sunxi_nand_chip_ecc_init(struct device *dev,
+                                   struct sunxi_nand_chip *chip,
+                                   struct mtd_info *mtd,
+                                   struct device_node *np)
+{
+       struct nand_chip *nand = &chip->nand;
+       int ret;
+
+       nand->ecc.mode = of_get_nand_ecc_mode(np);
+       switch (nand->ecc.mode) {
+       case NAND_ECC_SOFT_BCH:
+               nand->ecc.size = nand->ecc_step_ds;
+               nand->ecc.bytes = ((nand->ecc_strength_ds *
+                                   fls(8 * nand->ecc_step_ds)) + 7) / 8;
+               break;
+       case NAND_ECC_HW:
+               ret = sunxi_nand_chip_hwecc_init(dev, chip, mtd, np);
+               if (ret)
+                       return ret;
+               break;
+       case NAND_ECC_NONE:
+       default:
+               break;
+       }
+
+       return 0;
+}
+
  static int sunxi_nand_chip_init(struct device *dev, struct sunxi_nfc *nfc,
                                struct device_node *np)
  {
@@ -555,7 +797,6 @@ static int sunxi_nand_chip_init(struct device *dev, struct 
sunxi_nfc *nfc,
        nand->write_buf = sunxi_nfc_write_buf;
        nand->read_byte = sunxi_nfc_read_byte;
- nand->ecc.mode = of_get_nand_ecc_mode(np);
        if (of_get_nand_on_flash_bbt(np))
                nand->bbt_options |= NAND_BBT_USE_FLASH;
@@ -567,11 +808,9 @@ static int sunxi_nand_chip_init(struct device *dev, struct sunxi_nfc *nfc,
        if (ret)
                return ret;
- if (nand->ecc.mode == NAND_ECC_SOFT_BCH) {
-               nand->ecc.size = nand->ecc_step_ds;
-               nand->ecc.bytes = (((nand->ecc_strength_ds *
-                                    fls(8 * nand->ecc_step_ds)) + 7) / 8);
-       }
+       ret = sunxi_nand_chip_ecc_init(dev, chip, mtd, np);
+       if (ret)
+               return ret;
ret = nand_scan_tail(mtd);
        if (ret)

--
You received this message because you are subscribed to the Google Groups 
"linux-sunxi" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to linux-sunxi+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to