arm: socfpga: Add onchip RAM size macro
[oweals/u-boot.git] / arch / arm / mach-imx / cmd_nandbcb.c
index 065b814b2e3ba64e00000f1cc5a1758fc32a78e2..b3e59b1b003550c0ec92b67186105268ff47f5bc 100644 (file)
  */
 
 #include <common.h>
+#include <malloc.h>
 #include <nand.h>
+#include <dm/devres.h>
 
 #include <asm/io.h>
 #include <jffs2/jffs2.h>
+#include <linux/bch.h>
 #include <linux/mtd/mtd.h>
 
+#include <asm/arch/sys_proto.h>
 #include <asm/mach-imx/imx-nandbcb.h>
 #include <asm/mach-imx/imximage.cfg>
 #include <mxs_nand.h>
 #include <linux/mtd/mtd.h>
 #include <nand.h>
 
+#include "../../../cmd/legacy-mtd-utils.h"
+
 #define BF_VAL(v, bf)          (((v) & bf##_MASK) >> bf##_OFFSET)
 #define GETBIT(v, n)           (((v) >> (n)) & 0x1)
 
+#if defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)
+static uint8_t reverse_bit(uint8_t b)
+{
+       b = (b & 0xf0) >> 4 | (b & 0x0f) << 4;
+       b = (b & 0xcc) >> 2 | (b & 0x33) << 2;
+       b = (b & 0xaa) >> 1 | (b & 0x55) << 1;
+
+       return b;
+}
+
+static void encode_bch_ecc(void *buf, struct fcb_block *fcb, int eccbits)
+{
+       int i, j, m = 13;
+       int blocksize = 128;
+       int numblocks = 8;
+       int ecc_buf_size = (m * eccbits + 7) / 8;
+       struct bch_control *bch = init_bch(m, eccbits, 0);
+       u8 *ecc_buf = kzalloc(ecc_buf_size, GFP_KERNEL);
+       u8 *tmp_buf = kzalloc(blocksize * numblocks, GFP_KERNEL);
+       u8 *psrc, *pdst;
+
+       /*
+        * The blocks here are bit aligned. If eccbits is a multiple of 8,
+        * we just can copy bytes. Otherwiese we must move the blocks to
+        * the next free bit position.
+        */
+       WARN_ON(eccbits % 8);
+
+       memcpy(tmp_buf, fcb, sizeof(*fcb));
+
+       for (i = 0; i < numblocks; i++) {
+               memset(ecc_buf, 0, ecc_buf_size);
+               psrc = tmp_buf + i * blocksize;
+               pdst = buf + i * (blocksize + ecc_buf_size);
+
+               /* copy data byte aligned to destination buf */
+               memcpy(pdst, psrc, blocksize);
+
+               /*
+                * imx-kobs use a modified encode_bch which reverse the
+                * bit order of the data before calculating bch.
+                * Do this in the buffer and use the bch lib here.
+                */
+               for (j = 0; j < blocksize; j++)
+                       psrc[j] = reverse_bit(psrc[j]);
+
+               encode_bch(bch, psrc, blocksize, ecc_buf);
+
+               /* reverse ecc bit */
+               for (j = 0; j < ecc_buf_size; j++)
+                       ecc_buf[j] = reverse_bit(ecc_buf[j]);
+
+               /* Here eccbuf is byte aligned and we can just copy it */
+               memcpy(pdst + blocksize, ecc_buf, ecc_buf_size);
+       }
+
+       kfree(ecc_buf);
+       kfree(tmp_buf);
+       free_bch(bch);
+}
+#else
+
 static u8 calculate_parity_13_8(u8 d)
 {
        u8 p = 0;
@@ -50,6 +118,7 @@ static void encode_hamming_13_8(void *_src, void *_ecc, size_t size)
        for (i = 0; i < size; i++)
                ecc[i] = calculate_parity_13_8(src[i]);
 }
+#endif
 
 static u32 calc_chksum(void *buf, size_t size)
 {
@@ -63,30 +132,41 @@ static u32 calc_chksum(void *buf, size_t size)
        return ~chksum;
 }
 
-static void fill_fcb(struct fcb_block *fcb, struct mtd_info *mtd)
+static void fill_fcb(struct fcb_block *fcb, struct mtd_info *mtd,
+                    u32 fw1_start, u32 fw2_start, u32 fw_pages)
 {
        struct nand_chip *chip = mtd_to_nand(mtd);
        struct mxs_nand_info *nand_info = nand_get_controller_data(chip);
+       struct mxs_nand_layout l;
+
+       mxs_nand_get_layout(mtd, &l);
 
        fcb->fingerprint = FCB_FINGERPRINT;
        fcb->version = FCB_VERSION_1;
+
        fcb->pagesize = mtd->writesize;
        fcb->oob_pagesize = mtd->writesize + mtd->oobsize;
        fcb->sectors = mtd->erasesize / mtd->writesize;
 
-       /* Divide ECC strength by two and save the value into FCB structure. */
-       fcb->ecc_level = nand_info->bch_geometry.ecc_strength >> 1;
-
-       fcb->ecc_type = fcb->ecc_level;
+       fcb->meta_size = l.meta_size;
+       fcb->nr_blocks = l.nblocks;
+       fcb->ecc_nr = l.data0_size;
+       fcb->ecc_level = l.ecc0;
+       fcb->ecc_size = l.datan_size;
+       fcb->ecc_type = l.eccn;
 
        /* Also hardcoded in kobs-ng */
-       fcb->ecc_nr = 0x00000200;
-       fcb->ecc_size = 0x00000200;
-       fcb->datasetup = 80;
-       fcb->datahold = 60;
-       fcb->addr_setup = 25;
-       fcb->dsample_time = 6;
-       fcb->meta_size = 10;
+       if (is_mx6()) {
+               fcb->datasetup = 80;
+               fcb->datahold = 60;
+               fcb->addr_setup = 25;
+               fcb->dsample_time = 6;
+       } else if (is_mx7()) {
+               fcb->datasetup = 10;
+               fcb->datahold = 7;
+               fcb->addr_setup = 15;
+               fcb->dsample_time = 6;
+       }
 
        /* DBBT search area starts at second page on first block */
        fcb->dbbt_start = 1;
@@ -98,6 +178,14 @@ static void fill_fcb(struct fcb_block *fcb, struct mtd_info *mtd)
 
        fcb->nr_blocks = mtd->writesize / fcb->ecc_nr - 1;
 
+       fcb->disbbm = 0;
+       fcb->disbbm_search = 0;
+
+       fcb->fw1_start = fw1_start; /* Firmware image starts on this sector */
+       fcb->fw2_start = fw2_start; /* Secondary FW Image starting Sector */
+       fcb->fw1_pages = fw_pages; /* Number of sectors in firmware image */
+       fcb->fw2_pages = fw_pages; /* Number of sector in secondary FW image */
+
        fcb->checksum = calc_chksum((void *)fcb + 4, sizeof(*fcb) - 4);
 }
 
@@ -121,6 +209,114 @@ static int dbbt_fill_data(struct mtd_info *mtd, void *buf, int num_blocks)
        return n_bad_blocks;
 }
 
+static int write_fcb_dbbt(struct mtd_info *mtd, struct fcb_block *fcb,
+                         struct dbbt_block *dbbt, void *dbbt_data_page,
+                         loff_t off)
+{
+       void *fcb_raw_page = 0;
+       int i, ret;
+       size_t dummy;
+
+       /*
+        * We prepare raw page only for i.MX6, for i.MX7 we
+        * leverage BCH hw module instead
+        */
+       if (is_mx6()) {
+               /* write fcb/dbbt */
+               fcb_raw_page = kzalloc(mtd->writesize + mtd->oobsize,
+                                      GFP_KERNEL);
+               if (!fcb_raw_page) {
+                       debug("failed to allocate fcb_raw_page\n");
+                       ret = -ENOMEM;
+                       return ret;
+               }
+
+#if defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)
+               /* 40 bit BCH, for i.MX6UL(L) */
+               encode_bch_ecc(fcb_raw_page + 32, fcb, 40);
+#else
+               memcpy(fcb_raw_page + 12, fcb, sizeof(struct fcb_block));
+               encode_hamming_13_8(fcb_raw_page + 12,
+                                   fcb_raw_page + 12 + 512, 512);
+#endif
+               /*
+                * Set the first and second byte of OOB data to 0xFF,
+                * not 0x00. These bytes are used as the Manufacturers Bad
+                * Block Marker (MBBM). Since the FCB is mostly written to
+                * the first page in a block, a scan for
+                * factory bad blocks will detect these blocks as bad, e.g.
+                * when function nand_scan_bbt() is executed to build a new
+                * bad block table.
+                */
+               memset(fcb_raw_page + mtd->writesize, 0xFF, 2);
+       }
+       for (i = 0; i < 2; i++) {
+               if (mtd_block_isbad(mtd, off)) {
+                       printf("Block %d is bad, skipped\n", i);
+                       continue;
+               }
+
+               /*
+                * User BCH ECC hardware module for i.MX7
+                */
+               if (is_mx7()) {
+                       u32 off = i * mtd->erasesize;
+                       size_t rwsize = sizeof(*fcb);
+
+                       printf("Writing %d bytes to 0x%x: ", rwsize, off);
+
+                       /* switch nand BCH to FCB compatible settings */
+                       mxs_nand_mode_fcb(mtd);
+                       ret = nand_write(mtd, off, &rwsize,
+                                        (unsigned char *)fcb);
+                       mxs_nand_mode_normal(mtd);
+
+                       printf("%s\n", ret ? "ERROR" : "OK");
+               } else if (is_mx6()) {
+                       /* raw write */
+                       mtd_oob_ops_t ops = {
+                               .datbuf = (u8 *)fcb_raw_page,
+                               .oobbuf = ((u8 *)fcb_raw_page) +
+                                         mtd->writesize,
+                               .len = mtd->writesize,
+                               .ooblen = mtd->oobsize,
+                               .mode = MTD_OPS_RAW
+                       };
+
+                       ret = mtd_write_oob(mtd, mtd->erasesize * i, &ops);
+                       if (ret)
+                               goto fcb_raw_page_err;
+                       debug("NAND fcb write: 0x%x offset 0x%x written: %s\n",
+                             mtd->erasesize * i, ops.len, ret ?
+                             "ERROR" : "OK");
+               }
+
+               ret = mtd_write(mtd, mtd->erasesize * i + mtd->writesize,
+                               mtd->writesize, &dummy, (void *)dbbt);
+               if (ret)
+                       goto fcb_raw_page_err;
+               debug("NAND dbbt write: 0x%x offset, 0x%x bytes written: %s\n",
+                     mtd->erasesize * i + mtd->writesize, dummy,
+                     ret ? "ERROR" : "OK");
+
+               /* dbbtpages == 0 if no bad blocks */
+               if (dbbt->dbbtpages > 0) {
+                       loff_t to = (mtd->erasesize * i + mtd->writesize * 5);
+
+                       ret = mtd_write(mtd, to, mtd->writesize, &dummy,
+                                       dbbt_data_page);
+                       if (ret)
+                               goto fcb_raw_page_err;
+               }
+       }
+
+fcb_raw_page_err:
+       if (is_mx6())
+               kfree(fcb_raw_page);
+
+       return ret;
+}
+
 static int nandbcb_update(struct mtd_info *mtd, loff_t off, size_t size,
                          size_t maxsize, const u_char *buf)
 {
@@ -128,10 +324,11 @@ static int nandbcb_update(struct mtd_info *mtd, loff_t off, size_t size,
        struct fcb_block *fcb;
        struct dbbt_block *dbbt;
        loff_t fw1_off;
-       void *fwbuf, *fcb_raw_page, *dbbt_page, *dbbt_data_page;
+       void *fwbuf, *dbbt_page, *dbbt_data_page;
+       u32 fw1_start, fw1_pages;
        int nr_blks, nr_blks_fcb, fw1_blk;
-       size_t fwsize, dummy;
-       int i, ret;
+       size_t fwsize;
+       int ret;
 
        /* erase */
        memset(&opts, 0, sizeof(opts));
@@ -194,9 +391,9 @@ static int nandbcb_update(struct mtd_info *mtd, loff_t off, size_t size,
                goto fwbuf_err;
        }
 
-       fcb->fw1_start = (fw1_blk * mtd->erasesize) / mtd->writesize;
-       fcb->fw1_pages = size / mtd->writesize + 1;
-       fill_fcb(fcb, mtd);
+       fw1_start = (fw1_blk * mtd->erasesize) / mtd->writesize;
+       fw1_pages = size / mtd->writesize + 1;
+       fill_fcb(fcb, mtd, fw1_start, 0, fw1_pages);
 
        /* fill dbbt */
        dbbt_page = kzalloc(mtd->writesize, GFP_KERNEL);
@@ -223,77 +420,103 @@ static int nandbcb_update(struct mtd_info *mtd, loff_t off, size_t size,
        else if (ret > 0)
                dbbt->dbbtpages = 1;
 
-       /* write fcb/dbbt */
-       fcb_raw_page = kzalloc(mtd->writesize + mtd->oobsize, GFP_KERNEL);
-       if (!fcb_raw_page) {
-               debug("failed to allocate fcb_raw_page\n");
-               ret = -ENOMEM;
-               goto dbbt_data_page_err;
+       /* write fcb and dbbt to nand */
+       ret = write_fcb_dbbt(mtd, fcb, dbbt, dbbt_data_page, off);
+       if (ret < 0)
+               printf("failed to write FCB/DBBT\n");
+
+dbbt_data_page_err:
+       kfree(dbbt_data_page);
+dbbt_page_err:
+       kfree(dbbt_page);
+fcb_err:
+       kfree(fcb);
+fwbuf_err:
+       kfree(fwbuf);
+err:
+       return ret;
+}
+
+static int do_nandbcb_bcbonly(int argc, char * const argv[])
+{
+       struct fcb_block *fcb;
+       struct dbbt_block *dbbt;
+       u32 fw_len, fw1_off, fw2_off;
+       struct mtd_info *mtd;
+       void *dbbt_page, *dbbt_data_page;
+       int dev, ret;
+
+       dev = nand_curr_device;
+       if ((dev < 0) || (dev >= CONFIG_SYS_MAX_NAND_DEVICE) ||
+           (!get_nand_dev_by_index(dev))) {
+               puts("No devices available\n");
+               return CMD_RET_FAILURE;
        }
 
-       memcpy(fcb_raw_page + 12, fcb, sizeof(struct fcb_block));
-       encode_hamming_13_8(fcb_raw_page + 12, fcb_raw_page + 12 + 512, 512);
-       /*
-        * Set the first and second byte of OOB data to 0xFF, not 0x00. These
-        * bytes are used as the Manufacturers Bad Block Marker (MBBM). Since
-        * the FCB is mostly written to the first page in a block, a scan for
-        * factory bad blocks will detect these blocks as bad, e.g. when
-        * function nand_scan_bbt() is executed to build a new bad block table.
-        */
-       memset(fcb_raw_page + mtd->writesize, 0xFF, 2);
+       mtd = get_nand_dev_by_index(dev);
 
-       for (i = 0; i < nr_blks_fcb; i++) {
-               if (mtd_block_isbad(mtd, off)) {
-                       printf("Block %d is bad, skipped\n", i);
-                       continue;
-               }
+       if (argc < 3)
+               return CMD_RET_FAILURE;
 
-               /* raw write */
-               mtd_oob_ops_t ops = {
-                       .datbuf = (u8 *)fcb_raw_page,
-                       .oobbuf = ((u8 *)fcb_raw_page) + mtd->writesize,
-                       .len = mtd->writesize,
-                       .ooblen = mtd->oobsize,
-                       .mode = MTD_OPS_RAW
-               };
+       fw_len = simple_strtoul(argv[1], NULL, 16);
+       fw1_off = simple_strtoul(argv[2], NULL, 16);
 
-               ret = mtd_write_oob(mtd, mtd->erasesize * i, &ops);
-               if (ret)
-                       goto fcb_raw_page_err;
-               debug("NAND fcb write: 0x%x offset, 0x%x bytes written: %s\n",
-                     mtd->erasesize * i, ops.len, ret ? "ERROR" : "OK");
+       if (argc > 3)
+               fw2_off = simple_strtoul(argv[3], NULL, 16);
+       else
+               fw2_off = fw1_off;
 
-               ret = mtd_write(mtd, mtd->erasesize * i + mtd->writesize,
-                               mtd->writesize, &dummy, dbbt_page);
-               if (ret)
-                       goto fcb_raw_page_err;
-               debug("NAND dbbt write: 0x%x offset, 0x%x bytes written: %s\n",
-                     mtd->erasesize * i + mtd->writesize, dummy,
-                     ret ? "ERROR" : "OK");
+       /* fill fcb */
+       fcb = kzalloc(sizeof(*fcb), GFP_KERNEL);
+       if (!fcb) {
+               debug("failed to allocate fcb\n");
+               ret = -ENOMEM;
+               return CMD_RET_FAILURE;
+       }
 
-               /* dbbtpages == 0 if no bad blocks */
-               if (dbbt->dbbtpages > 0) {
-                       loff_t to = (mtd->erasesize * i + mtd->writesize * 5);
+       fill_fcb(fcb, mtd, fw1_off / mtd->writesize,
+                fw2_off / mtd->writesize, fw_len / mtd->writesize);
 
-                       ret = mtd_write(mtd, to, mtd->writesize, &dummy,
-                                       dbbt_data_page);
-                       if (ret)
-                               goto fcb_raw_page_err;
-               }
+       /* fill dbbt */
+       dbbt_page = kzalloc(mtd->writesize, GFP_KERNEL);
+       if (!dbbt_page) {
+               debug("failed to allocate dbbt_page\n");
+               ret = -ENOMEM;
+               goto fcb_err;
        }
 
-fcb_raw_page_err:
-       kfree(fcb_raw_page);
+       dbbt_data_page = kzalloc(mtd->writesize, GFP_KERNEL);
+       if (!dbbt_data_page) {
+               debug("failed to allocate dbbt_data_page\n");
+               ret = -ENOMEM;
+               goto dbbt_page_err;
+       }
+
+       dbbt = dbbt_page;
+       dbbt->checksum = 0;
+       dbbt->fingerprint = DBBT_FINGERPRINT2;
+       dbbt->version = DBBT_VERSION_1;
+       ret = dbbt_fill_data(mtd, dbbt_data_page, 0);
+       if (ret < 0)
+               goto dbbt_data_page_err;
+       else if (ret > 0)
+               dbbt->dbbtpages = 1;
+
+       /* write fcb and dbbt to nand */
+       ret = write_fcb_dbbt(mtd, fcb, dbbt, dbbt_data_page, 0);
 dbbt_data_page_err:
        kfree(dbbt_data_page);
 dbbt_page_err:
        kfree(dbbt_page);
 fcb_err:
        kfree(fcb);
-fwbuf_err:
-       kfree(fwbuf);
-err:
-       return ret;
+
+       if (ret < 0) {
+               printf("failed to write FCB/DBBT\n");
+               return CMD_RET_FAILURE;
+       }
+
+       return CMD_RET_SUCCESS;
 }
 
 static int do_nandbcb_update(int argc, char * const argv[])
@@ -310,7 +533,7 @@ static int do_nandbcb_update(int argc, char * const argv[])
 
        dev = nand_curr_device;
        if (dev < 0) {
-               printf("failed to get nand_curr_device, run nand device");
+               printf("failed to get nand_curr_device, run nand device\n");
                return CMD_RET_FAILURE;
        }
 
@@ -352,6 +575,11 @@ static int do_nandbcb(cmd_tbl_t *cmdtp, int flag, int argc,
                goto done;
        }
 
+       if (strcmp(cmd, "bcbonly") == 0) {
+               ret = do_nandbcb_bcbonly(argc, argv);
+               goto done;
+       }
+
 done:
        if (ret != -1)
                return ret;
@@ -359,11 +587,19 @@ usage:
        return CMD_RET_USAGE;
 }
 
+#ifdef CONFIG_SYS_LONGHELP
 static char nandbcb_help_text[] =
        "update addr off|partition len  - update 'len' bytes starting at\n"
-       "       'off|part' to memory address 'addr', skipping  bad blocks";
+       "       'off|part' to memory address 'addr', skipping  bad blocks\n"
+       "bcbonly fw-size fw1-off [fw2-off] - write only BCB (FCB and DBBT)\n"
+       "       where `fw-size` is fw sizes in bytes, `fw1-off`\n"
+       "       and `fw2-off` - firmware offsets\n"
+       "       FIY, BCB isn't erased automatically, so mtd erase should\n"
+       "       be called in advance before writing new BCB:\n"
+       "           > mtd erase mx7-bcb";
+#endif
 
 U_BOOT_CMD(nandbcb, 5, 1, do_nandbcb,
-          "i.MX6 Nand BCB",
+          "i.MX6/i.MX7 NAND Boot Control Blocks write",
           nandbcb_help_text
 );