]> git.sur5r.net Git - u-boot/blobdiff - drivers/mtd/nand/sunxi_nand_spl.c
Merge branch 'master' of git://git.denx.de/u-boot-i2c; branch 'master' of git://git...
[u-boot] / drivers / mtd / nand / sunxi_nand_spl.c
index 61eb393446fb205e4ae031b37dadb937bfd85924..b0e07aa2d088a27977ddbb380d263b4a10e4a2be 100644 (file)
@@ -42,6 +42,8 @@
 #define NFC_CTL_EN                 (1 << 0)
 #define NFC_CTL_RESET              (1 << 1)
 #define NFC_CTL_RAM_METHOD         (1 << 14)
+#define NFC_CTL_PAGE_SIZE_MASK     (0xf << 8)
+#define NFC_CTL_PAGE_SIZE(a)       ((fls(a) - 11) << 8)
 
 
 #define NFC_ECC_EN                 (1 << 0)
@@ -65,7 +67,8 @@
 #define NFC_SEND_CMD3              (1 << 28)
 #define NFC_SEND_CMD4              (1 << 29)
 
-#define NFC_CMD_INT_FLAG           (1 << 1)
+#define NFC_ST_CMD_INT_FLAG        (1 << 1)
+#define NFC_ST_DMA_INT_FLAG        (1 << 2)
 
 #define NFC_READ_CMD_OFFSET         0
 #define NFC_RANDOM_READ_CMD0_OFFSET 8
@@ -167,18 +170,20 @@ void nand_init(void)
        }
 
        /* reset NAND */
+       writel(NFC_ST_CMD_INT_FLAG, SUNXI_NFC_BASE + NFC_ST);
        writel(NFC_SEND_CMD1 | NFC_WAIT_FLAG | NAND_CMD_RESET,
               SUNXI_NFC_BASE + NFC_CMD);
 
-       if (!check_value(SUNXI_NFC_BASE + NFC_ST, NFC_CMD_INT_FLAG,
+       if (!check_value(SUNXI_NFC_BASE + NFC_ST, NFC_ST_CMD_INT_FLAG,
                         MAX_RETRIES)) {
                printf("Error timeout waiting for nand reset\n");
                return;
        }
+       writel(NFC_ST_CMD_INT_FLAG, SUNXI_NFC_BASE + NFC_ST);
 }
 
-static void nand_read_page(unsigned int real_addr, dma_addr_t dst,
-                          int syndrome, uint32_t *ecc_errors)
+static int nand_read_page(int page_size, int ecc_strength, int ecc_page_size,
+       int addr_cycles, uint32_t real_addr, dma_addr_t dst, int syndrome)
 {
        uint32_t val;
        int i, ecc_off = 0;
@@ -186,28 +191,26 @@ static void nand_read_page(unsigned int real_addr, dma_addr_t dst,
        uint16_t rand_seed;
        uint32_t page;
        uint16_t column;
-       uint32_t oob_offset;
        static const u8 strengths[] = { 16, 24, 28, 32, 40, 48, 56, 60, 64 };
 
        for (i = 0; i < ARRAY_SIZE(strengths); i++) {
-               if (CONFIG_NAND_SUNXI_SPL_ECC_STRENGTH == strengths[i]) {
+               if (ecc_strength == strengths[i]) {
                        ecc_mode = i;
                        break;
                }
        }
 
        /* HW ECC always request ECC bytes for 1024 bytes blocks */
-       ecc_off = DIV_ROUND_UP(CONFIG_NAND_SUNXI_SPL_ECC_STRENGTH * fls(8 * 1024), 8);
+       ecc_off = DIV_ROUND_UP(ecc_strength * fls(8 * 1024), 8);
        /* HW ECC always work with even numbers of ECC bytes */
        ecc_off += (ecc_off & 1);
        ecc_off += 4; /* prepad */
 
-       page = real_addr / CONFIG_NAND_SUNXI_SPL_PAGE_SIZE;
-       column = real_addr % CONFIG_NAND_SUNXI_SPL_PAGE_SIZE;
+       page = real_addr / page_size;
+       column = real_addr % page_size;
 
        if (syndrome)
-               column += (column / CONFIG_NAND_SUNXI_SPL_ECC_PAGE_SIZE)
-                       * ecc_off;
+               column += (column / ecc_page_size) * ecc_off;
 
        /* clear ecc status */
        writel(0, SUNXI_NFC_BASE + NFC_ECC_ST);
@@ -225,16 +228,11 @@ static void nand_read_page(unsigned int real_addr, dma_addr_t dst,
        val = readl(SUNXI_NFC_BASE + NFC_CTL);
        writel(val | NFC_CTL_RAM_METHOD, SUNXI_NFC_BASE + NFC_CTL);
 
-       if (!syndrome) {
-               oob_offset = CONFIG_NAND_SUNXI_SPL_PAGE_SIZE
-                       + (column / CONFIG_NAND_SUNXI_SPL_ECC_PAGE_SIZE)
-                       * ecc_off;
-               writel(oob_offset, SUNXI_NFC_BASE + NFC_SPARE_AREA);
-       }
+       if (!syndrome)
+               writel(page_size + (column / ecc_page_size) * ecc_off,
+                      SUNXI_NFC_BASE + NFC_SPARE_AREA);
 
-       flush_dcache_range(dst,
-                          ALIGN(dst + CONFIG_NAND_SUNXI_SPL_ECC_PAGE_SIZE,
-                                ARCH_DMA_MINALIGN));
+       flush_dcache_range(dst, ALIGN(dst + ecc_page_size, ARCH_DMA_MINALIGN));
 
        /* SUNXI_DMA */
        writel(0x0, SUNXI_DMA_BASE + SUNXI_DMA_CFG_REG0); /* clr dma cmd */
@@ -246,7 +244,7 @@ static void nand_read_page(unsigned int real_addr, dma_addr_t dst,
        writel(SUNXI_DMA_DDMA_PARA_REG_SRC_WAIT_CYC
                        | SUNXI_DMA_DDMA_PARA_REG_SRC_BLK_SIZE,
                        SUNXI_DMA_BASE + SUNXI_DMA_DDMA_PARA_REG0);
-       writel(CONFIG_NAND_SUNXI_SPL_ECC_PAGE_SIZE,
+       writel(ecc_page_size,
               SUNXI_DMA_BASE + SUNXI_DMA_DDMA_BC_REG0); /* 1kB */
        writel(SUNXI_DMA_DDMA_CFG_REG_LOADING
                | SUNXI_DMA_DDMA_CFG_REG_DMA_DEST_DATA_WIDTH_32
@@ -264,45 +262,137 @@ static void nand_read_page(unsigned int real_addr, dma_addr_t dst,
        writel(((page & 0xFFFF) << 16) | column,
               SUNXI_NFC_BASE + NFC_ADDR_LOW);
        writel((page >> 16) & 0xFF, SUNXI_NFC_BASE + NFC_ADDR_HIGH);
+       writel(NFC_ST_DMA_INT_FLAG, SUNXI_NFC_BASE + NFC_ST);
        writel(NFC_SEND_CMD1 | NFC_SEND_CMD2 | NFC_DATA_TRANS |
-               NFC_PAGE_CMD | NFC_WAIT_FLAG | (4 << NFC_ADDR_NUM_OFFSET) |
+               NFC_PAGE_CMD | NFC_WAIT_FLAG |
+               ((addr_cycles - 1) << NFC_ADDR_NUM_OFFSET) |
                NFC_SEND_ADR | NFC_DATA_SWAP_METHOD | (syndrome ? NFC_SEQ : 0),
                SUNXI_NFC_BASE + NFC_CMD);
 
-       if (!check_value(SUNXI_NFC_BASE + NFC_ST, (1 << 2),
+       if (!check_value(SUNXI_NFC_BASE + NFC_ST, NFC_ST_DMA_INT_FLAG,
                         MAX_RETRIES)) {
                printf("Error while initializing dma interrupt\n");
-               return;
+               return -1;
        }
+       writel(NFC_ST_DMA_INT_FLAG, SUNXI_NFC_BASE + NFC_ST);
 
        if (!check_value_negated(SUNXI_DMA_BASE + SUNXI_DMA_CFG_REG0,
                                 SUNXI_DMA_DDMA_CFG_REG_LOADING, MAX_RETRIES)) {
                printf("Error while waiting for dma transfer to finish\n");
-               return;
+               return -1;
        }
 
        invalidate_dcache_range(dst,
-                       ALIGN(dst + CONFIG_NAND_SUNXI_SPL_ECC_PAGE_SIZE,
-                             ARCH_DMA_MINALIGN));
+                               ALIGN(dst + ecc_page_size, ARCH_DMA_MINALIGN));
 
        if (readl(SUNXI_NFC_BASE + NFC_ECC_ST))
-               (*ecc_errors)++;
+               return -1;
+
+       return 0;
+}
+
+static int nand_read_ecc(int page_size, int ecc_strength, int ecc_page_size,
+       int addr_cycles, uint32_t offs, uint32_t size, void *dest, int syndrome)
+{
+       void *end = dest + size;
+
+       clrsetbits_le32(SUNXI_NFC_BASE + NFC_CTL, NFC_CTL_PAGE_SIZE_MASK,
+                       NFC_CTL_PAGE_SIZE(page_size));
+
+       for ( ;dest < end; dest += ecc_page_size, offs += ecc_page_size) {
+               if (nand_read_page(page_size, ecc_strength, ecc_page_size,
+                                  addr_cycles, offs, (dma_addr_t)dest,
+                                  syndrome))
+                       return -1;
+       }
+
+       return 0;
+}
+
+static int nand_read_buffer(uint32_t offs, unsigned int size, void *dest,
+                           int syndrome)
+{
+       const struct {
+               int page_size;
+               int ecc_strength;
+               int ecc_page_size;
+               int addr_cycles;
+       } nand_configs[] = {
+               {  8192, 40, 1024, 5 },
+               { 16384, 56, 1024, 5 },
+               {  8192, 24, 1024, 5 },
+               {  4096, 24, 1024, 5 },
+       };
+       static int nand_config = -1;
+       int i;
+
+       if (nand_config == -1) {
+               for (i = 0; i < ARRAY_SIZE(nand_configs); i++) {
+                       debug("nand: trying page %d ecc %d / %d addr %d: ",
+                             nand_configs[i].page_size,
+                             nand_configs[i].ecc_strength,
+                             nand_configs[i].ecc_page_size,
+                             nand_configs[i].addr_cycles);
+                       if (nand_read_ecc(nand_configs[i].page_size,
+                                         nand_configs[i].ecc_strength,
+                                         nand_configs[i].ecc_page_size,
+                                         nand_configs[i].addr_cycles,
+                                         offs, size, dest, syndrome) == 0) {
+                               debug("success\n");
+                               nand_config = i;
+                               return 0;
+                       }
+                       debug("failed\n");
+               }
+               return -1;
+       }
+
+       return nand_read_ecc(nand_configs[nand_config].page_size,
+                            nand_configs[nand_config].ecc_strength,
+                            nand_configs[nand_config].ecc_page_size,
+                            nand_configs[nand_config].addr_cycles,
+                            offs, size, dest, syndrome);
 }
 
 int nand_spl_load_image(uint32_t offs, unsigned int size, void *dest)
 {
-       void *current_dest;
-       uint32_t ecc_errors = 0;
-
-       for (current_dest = dest;
-                       current_dest < (dest + size);
-                       current_dest += CONFIG_NAND_SUNXI_SPL_ECC_PAGE_SIZE) {
-               nand_read_page(offs, (dma_addr_t)current_dest,
-                       offs < CONFIG_NAND_SUNXI_SPL_SYNDROME_PARTITIONS_END,
-                       &ecc_errors);
-               offs += CONFIG_NAND_SUNXI_SPL_ECC_PAGE_SIZE;
+#if CONFIG_SYS_NAND_U_BOOT_OFFS == CONFIG_SPL_PAD_TO
+       /*
+        * u-boot-dtb.bin appended to SPL, use syndrome (like the BROM does)
+        * and try different erase block sizes to find the backup.
+        */
+       const uint32_t boot_offsets[] = {
+               0 * 1024 * 1024 + CONFIG_SYS_NAND_U_BOOT_OFFS,
+               1 * 1024 * 1024 + CONFIG_SYS_NAND_U_BOOT_OFFS,
+               2 * 1024 * 1024 + CONFIG_SYS_NAND_U_BOOT_OFFS,
+               4 * 1024 * 1024 + CONFIG_SYS_NAND_U_BOOT_OFFS,
+       };
+       const int syndrome = 1;
+#else
+       /*
+        * u-boot-dtb.bin on its own partition, do not use syndrome, u-boot
+        * partition sits after 2 eraseblocks (spl, spl-backup), look for
+        * backup u-boot 1 erase block further.
+        */
+       const uint32_t eraseblock_size = CONFIG_SYS_NAND_U_BOOT_OFFS / 2;
+       const uint32_t boot_offsets[] = {
+               CONFIG_SYS_NAND_U_BOOT_OFFS,
+               CONFIG_SYS_NAND_U_BOOT_OFFS + eraseblock_size,
+       };
+       const int syndrome = 0;
+#endif
+       int i;
+
+       if (offs == CONFIG_SYS_NAND_U_BOOT_OFFS) {
+               for (i = 0; i < ARRAY_SIZE(boot_offsets); i++) {
+                       if (nand_read_buffer(boot_offsets[i], size,
+                                            dest, syndrome) == 0)
+                               return 0;
+               }
+               return -1;
        }
-       return ecc_errors ? -1 : 0;
+
+       return nand_read_buffer(offs, size, dest, syndrome);
 }
 
 void nand_deselect(void)