|
@@ -7,6 +7,8 @@
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
* published by the Free Software Foundation.
|
|
|
+ *
|
|
|
+ * See Documentation/mtd/nand/pxa3xx-nand.txt for more details.
|
|
|
*/
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
@@ -24,6 +26,7 @@
|
|
|
#include <linux/slab.h>
|
|
|
#include <linux/of.h>
|
|
|
#include <linux/of_device.h>
|
|
|
+#include <linux/of_mtd.h>
|
|
|
|
|
|
#if defined(CONFIG_ARCH_PXA) || defined(CONFIG_ARCH_MMP)
|
|
|
#define ARCH_HAS_DMA
|
|
@@ -35,6 +38,7 @@
|
|
|
|
|
|
#include <linux/platform_data/mtd-nand-pxa3xx.h>
|
|
|
|
|
|
+#define NAND_DEV_READY_TIMEOUT 50
|
|
|
#define CHIP_DELAY_TIMEOUT (2 * HZ/10)
|
|
|
#define NAND_STOP_DELAY (2 * HZ/50)
|
|
|
#define PAGE_CHUNK_SIZE (2048)
|
|
@@ -54,6 +58,7 @@
|
|
|
#define NDPCR (0x18) /* Page Count Register */
|
|
|
#define NDBDR0 (0x1C) /* Bad Block Register 0 */
|
|
|
#define NDBDR1 (0x20) /* Bad Block Register 1 */
|
|
|
+#define NDECCCTRL (0x28) /* ECC control */
|
|
|
#define NDDB (0x40) /* Data Buffer */
|
|
|
#define NDCB0 (0x48) /* Command Buffer0 */
|
|
|
#define NDCB1 (0x4C) /* Command Buffer1 */
|
|
@@ -80,6 +85,9 @@
|
|
|
#define NDCR_INT_MASK (0xFFF)
|
|
|
|
|
|
#define NDSR_MASK (0xfff)
|
|
|
+#define NDSR_ERR_CNT_OFF (16)
|
|
|
+#define NDSR_ERR_CNT_MASK (0x1f)
|
|
|
+#define NDSR_ERR_CNT(sr) ((sr >> NDSR_ERR_CNT_OFF) & NDSR_ERR_CNT_MASK)
|
|
|
#define NDSR_RDY (0x1 << 12)
|
|
|
#define NDSR_FLASH_RDY (0x1 << 11)
|
|
|
#define NDSR_CS0_PAGED (0x1 << 10)
|
|
@@ -88,8 +96,8 @@
|
|
|
#define NDSR_CS1_CMDD (0x1 << 7)
|
|
|
#define NDSR_CS0_BBD (0x1 << 6)
|
|
|
#define NDSR_CS1_BBD (0x1 << 5)
|
|
|
-#define NDSR_DBERR (0x1 << 4)
|
|
|
-#define NDSR_SBERR (0x1 << 3)
|
|
|
+#define NDSR_UNCORERR (0x1 << 4)
|
|
|
+#define NDSR_CORERR (0x1 << 3)
|
|
|
#define NDSR_WRDREQ (0x1 << 2)
|
|
|
#define NDSR_RDDREQ (0x1 << 1)
|
|
|
#define NDSR_WRCMDREQ (0x1)
|
|
@@ -98,6 +106,8 @@
|
|
|
#define NDCB0_ST_ROW_EN (0x1 << 26)
|
|
|
#define NDCB0_AUTO_RS (0x1 << 25)
|
|
|
#define NDCB0_CSEL (0x1 << 24)
|
|
|
+#define NDCB0_EXT_CMD_TYPE_MASK (0x7 << 29)
|
|
|
+#define NDCB0_EXT_CMD_TYPE(x) (((x) << 29) & NDCB0_EXT_CMD_TYPE_MASK)
|
|
|
#define NDCB0_CMD_TYPE_MASK (0x7 << 21)
|
|
|
#define NDCB0_CMD_TYPE(x) (((x) << 21) & NDCB0_CMD_TYPE_MASK)
|
|
|
#define NDCB0_NC (0x1 << 20)
|
|
@@ -108,6 +118,14 @@
|
|
|
#define NDCB0_CMD1_MASK (0xff)
|
|
|
#define NDCB0_ADDR_CYC_SHIFT (16)
|
|
|
|
|
|
+#define EXT_CMD_TYPE_DISPATCH 6 /* Command dispatch */
|
|
|
+#define EXT_CMD_TYPE_NAKED_RW 5 /* Naked read or Naked write */
|
|
|
+#define EXT_CMD_TYPE_READ 4 /* Read */
|
|
|
+#define EXT_CMD_TYPE_DISP_WR 4 /* Command dispatch with write */
|
|
|
+#define EXT_CMD_TYPE_FINAL 3 /* Final command */
|
|
|
+#define EXT_CMD_TYPE_LAST_RW 1 /* Last naked read/write */
|
|
|
+#define EXT_CMD_TYPE_MONO 0 /* Monolithic read/write */
|
|
|
+
|
|
|
/* macros for registers read/write */
|
|
|
#define nand_writel(info, off, val) \
|
|
|
__raw_writel((val), (info)->mmio_base + (off))
|
|
@@ -120,9 +138,9 @@ enum {
|
|
|
ERR_NONE = 0,
|
|
|
ERR_DMABUSERR = -1,
|
|
|
ERR_SENDCMD = -2,
|
|
|
- ERR_DBERR = -3,
|
|
|
+ ERR_UNCORERR = -3,
|
|
|
ERR_BBERR = -4,
|
|
|
- ERR_SBERR = -5,
|
|
|
+ ERR_CORERR = -5,
|
|
|
};
|
|
|
|
|
|
enum {
|
|
@@ -149,7 +167,6 @@ struct pxa3xx_nand_host {
|
|
|
void *info_data;
|
|
|
|
|
|
/* page size of attached chip */
|
|
|
- unsigned int page_size;
|
|
|
int use_ecc;
|
|
|
int cs;
|
|
|
|
|
@@ -167,11 +184,13 @@ struct pxa3xx_nand_info {
|
|
|
struct clk *clk;
|
|
|
void __iomem *mmio_base;
|
|
|
unsigned long mmio_phys;
|
|
|
- struct completion cmd_complete;
|
|
|
+ struct completion cmd_complete, dev_ready;
|
|
|
|
|
|
unsigned int buf_start;
|
|
|
unsigned int buf_count;
|
|
|
unsigned int buf_size;
|
|
|
+ unsigned int data_buff_pos;
|
|
|
+ unsigned int oob_buff_pos;
|
|
|
|
|
|
/* DMA information */
|
|
|
int drcmr_dat;
|
|
@@ -195,13 +214,18 @@ struct pxa3xx_nand_info {
|
|
|
|
|
|
int cs;
|
|
|
int use_ecc; /* use HW ECC ? */
|
|
|
+ int ecc_bch; /* using BCH ECC? */
|
|
|
int use_dma; /* use DMA ? */
|
|
|
int use_spare; /* use spare ? */
|
|
|
- int is_ready;
|
|
|
+ int need_wait;
|
|
|
|
|
|
- unsigned int page_size; /* page size of attached chip */
|
|
|
- unsigned int data_size; /* data size in FIFO */
|
|
|
+ unsigned int data_size; /* data to be read from FIFO */
|
|
|
+ unsigned int chunk_size; /* split commands chunk size */
|
|
|
unsigned int oob_size;
|
|
|
+ unsigned int spare_size;
|
|
|
+ unsigned int ecc_size;
|
|
|
+ unsigned int ecc_err_cnt;
|
|
|
+ unsigned int max_bitflips;
|
|
|
int retcode;
|
|
|
|
|
|
/* cached register value */
|
|
@@ -239,6 +263,64 @@ static struct pxa3xx_nand_flash builtin_flash_types[] = {
|
|
|
{ "256MiB 16-bit", 0xba20, 64, 2048, 16, 16, 2048, &timing[3] },
|
|
|
};
|
|
|
|
|
|
+static u8 bbt_pattern[] = {'M', 'V', 'B', 'b', 't', '0' };
|
|
|
+static u8 bbt_mirror_pattern[] = {'1', 't', 'b', 'B', 'V', 'M' };
|
|
|
+
|
|
|
+static struct nand_bbt_descr bbt_main_descr = {
|
|
|
+ .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
|
|
|
+ | NAND_BBT_2BIT | NAND_BBT_VERSION,
|
|
|
+ .offs = 8,
|
|
|
+ .len = 6,
|
|
|
+ .veroffs = 14,
|
|
|
+ .maxblocks = 8, /* Last 8 blocks in each chip */
|
|
|
+ .pattern = bbt_pattern
|
|
|
+};
|
|
|
+
|
|
|
+static struct nand_bbt_descr bbt_mirror_descr = {
|
|
|
+ .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
|
|
|
+ | NAND_BBT_2BIT | NAND_BBT_VERSION,
|
|
|
+ .offs = 8,
|
|
|
+ .len = 6,
|
|
|
+ .veroffs = 14,
|
|
|
+ .maxblocks = 8, /* Last 8 blocks in each chip */
|
|
|
+ .pattern = bbt_mirror_pattern
|
|
|
+};
|
|
|
+
|
|
|
+static struct nand_ecclayout ecc_layout_2KB_bch4bit = {
|
|
|
+ .eccbytes = 32,
|
|
|
+ .eccpos = {
|
|
|
+ 32, 33, 34, 35, 36, 37, 38, 39,
|
|
|
+ 40, 41, 42, 43, 44, 45, 46, 47,
|
|
|
+ 48, 49, 50, 51, 52, 53, 54, 55,
|
|
|
+ 56, 57, 58, 59, 60, 61, 62, 63},
|
|
|
+ .oobfree = { {2, 30} }
|
|
|
+};
|
|
|
+
|
|
|
+static struct nand_ecclayout ecc_layout_4KB_bch4bit = {
|
|
|
+ .eccbytes = 64,
|
|
|
+ .eccpos = {
|
|
|
+ 32, 33, 34, 35, 36, 37, 38, 39,
|
|
|
+ 40, 41, 42, 43, 44, 45, 46, 47,
|
|
|
+ 48, 49, 50, 51, 52, 53, 54, 55,
|
|
|
+ 56, 57, 58, 59, 60, 61, 62, 63,
|
|
|
+ 96, 97, 98, 99, 100, 101, 102, 103,
|
|
|
+ 104, 105, 106, 107, 108, 109, 110, 111,
|
|
|
+ 112, 113, 114, 115, 116, 117, 118, 119,
|
|
|
+ 120, 121, 122, 123, 124, 125, 126, 127},
|
|
|
+ /* Bootrom looks in bytes 0 & 5 for bad blocks */
|
|
|
+ .oobfree = { {6, 26}, { 64, 32} }
|
|
|
+};
|
|
|
+
|
|
|
+static struct nand_ecclayout ecc_layout_4KB_bch8bit = {
|
|
|
+ .eccbytes = 128,
|
|
|
+ .eccpos = {
|
|
|
+ 32, 33, 34, 35, 36, 37, 38, 39,
|
|
|
+ 40, 41, 42, 43, 44, 45, 46, 47,
|
|
|
+ 48, 49, 50, 51, 52, 53, 54, 55,
|
|
|
+ 56, 57, 58, 59, 60, 61, 62, 63},
|
|
|
+ .oobfree = { }
|
|
|
+};
|
|
|
+
|
|
|
/* Define a default flash type setting serve as flash detecting only */
|
|
|
#define DEFAULT_FLASH_TYPE (&builtin_flash_types[0])
|
|
|
|
|
@@ -256,6 +338,29 @@ static struct pxa3xx_nand_flash builtin_flash_types[] = {
|
|
|
/* convert nano-seconds to nand flash controller clock cycles */
|
|
|
#define ns2cycle(ns, clk) (int)((ns) * (clk / 1000000) / 1000)
|
|
|
|
|
|
+static struct of_device_id pxa3xx_nand_dt_ids[] = {
|
|
|
+ {
|
|
|
+ .compatible = "marvell,pxa3xx-nand",
|
|
|
+ .data = (void *)PXA3XX_NAND_VARIANT_PXA,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ .compatible = "marvell,armada370-nand",
|
|
|
+ .data = (void *)PXA3XX_NAND_VARIANT_ARMADA370,
|
|
|
+ },
|
|
|
+ {}
|
|
|
+};
|
|
|
+MODULE_DEVICE_TABLE(of, pxa3xx_nand_dt_ids);
|
|
|
+
|
|
|
+static enum pxa3xx_nand_variant
|
|
|
+pxa3xx_nand_get_variant(struct platform_device *pdev)
|
|
|
+{
|
|
|
+ const struct of_device_id *of_id =
|
|
|
+ of_match_device(pxa3xx_nand_dt_ids, &pdev->dev);
|
|
|
+ if (!of_id)
|
|
|
+ return PXA3XX_NAND_VARIANT_PXA;
|
|
|
+ return (enum pxa3xx_nand_variant)of_id->data;
|
|
|
+}
|
|
|
+
|
|
|
static void pxa3xx_nand_set_timing(struct pxa3xx_nand_host *host,
|
|
|
const struct pxa3xx_nand_timing *t)
|
|
|
{
|
|
@@ -280,25 +385,23 @@ static void pxa3xx_nand_set_timing(struct pxa3xx_nand_host *host,
|
|
|
nand_writel(info, NDTR1CS0, ndtr1);
|
|
|
}
|
|
|
|
|
|
-static void pxa3xx_set_datasize(struct pxa3xx_nand_info *info)
|
|
|
+/*
|
|
|
+ * Set the data and OOB size, depending on the selected
|
|
|
+ * spare and ECC configuration.
|
|
|
+ * Only applicable to READ0, READOOB and PAGEPROG commands.
|
|
|
+ */
|
|
|
+static void pxa3xx_set_datasize(struct pxa3xx_nand_info *info,
|
|
|
+ struct mtd_info *mtd)
|
|
|
{
|
|
|
- struct pxa3xx_nand_host *host = info->host[info->cs];
|
|
|
int oob_enable = info->reg_ndcr & NDCR_SPARE_EN;
|
|
|
|
|
|
- info->data_size = host->page_size;
|
|
|
- if (!oob_enable) {
|
|
|
- info->oob_size = 0;
|
|
|
+ info->data_size = mtd->writesize;
|
|
|
+ if (!oob_enable)
|
|
|
return;
|
|
|
- }
|
|
|
|
|
|
- switch (host->page_size) {
|
|
|
- case 2048:
|
|
|
- info->oob_size = (info->use_ecc) ? 40 : 64;
|
|
|
- break;
|
|
|
- case 512:
|
|
|
- info->oob_size = (info->use_ecc) ? 8 : 16;
|
|
|
- break;
|
|
|
- }
|
|
|
+ info->oob_size = info->spare_size;
|
|
|
+ if (!info->use_ecc)
|
|
|
+ info->oob_size += info->ecc_size;
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -313,10 +416,15 @@ static void pxa3xx_nand_start(struct pxa3xx_nand_info *info)
|
|
|
|
|
|
ndcr = info->reg_ndcr;
|
|
|
|
|
|
- if (info->use_ecc)
|
|
|
+ if (info->use_ecc) {
|
|
|
ndcr |= NDCR_ECC_EN;
|
|
|
- else
|
|
|
+ if (info->ecc_bch)
|
|
|
+ nand_writel(info, NDECCCTRL, 0x1);
|
|
|
+ } else {
|
|
|
ndcr &= ~NDCR_ECC_EN;
|
|
|
+ if (info->ecc_bch)
|
|
|
+ nand_writel(info, NDECCCTRL, 0x0);
|
|
|
+ }
|
|
|
|
|
|
if (info->use_dma)
|
|
|
ndcr |= NDCR_DMA_EN;
|
|
@@ -375,26 +483,39 @@ static void disable_int(struct pxa3xx_nand_info *info, uint32_t int_mask)
|
|
|
|
|
|
static void handle_data_pio(struct pxa3xx_nand_info *info)
|
|
|
{
|
|
|
+ unsigned int do_bytes = min(info->data_size, info->chunk_size);
|
|
|
+
|
|
|
switch (info->state) {
|
|
|
case STATE_PIO_WRITING:
|
|
|
- __raw_writesl(info->mmio_base + NDDB, info->data_buff,
|
|
|
- DIV_ROUND_UP(info->data_size, 4));
|
|
|
+ __raw_writesl(info->mmio_base + NDDB,
|
|
|
+ info->data_buff + info->data_buff_pos,
|
|
|
+ DIV_ROUND_UP(do_bytes, 4));
|
|
|
+
|
|
|
if (info->oob_size > 0)
|
|
|
- __raw_writesl(info->mmio_base + NDDB, info->oob_buff,
|
|
|
- DIV_ROUND_UP(info->oob_size, 4));
|
|
|
+ __raw_writesl(info->mmio_base + NDDB,
|
|
|
+ info->oob_buff + info->oob_buff_pos,
|
|
|
+ DIV_ROUND_UP(info->oob_size, 4));
|
|
|
break;
|
|
|
case STATE_PIO_READING:
|
|
|
- __raw_readsl(info->mmio_base + NDDB, info->data_buff,
|
|
|
- DIV_ROUND_UP(info->data_size, 4));
|
|
|
+ __raw_readsl(info->mmio_base + NDDB,
|
|
|
+ info->data_buff + info->data_buff_pos,
|
|
|
+ DIV_ROUND_UP(do_bytes, 4));
|
|
|
+
|
|
|
if (info->oob_size > 0)
|
|
|
- __raw_readsl(info->mmio_base + NDDB, info->oob_buff,
|
|
|
- DIV_ROUND_UP(info->oob_size, 4));
|
|
|
+ __raw_readsl(info->mmio_base + NDDB,
|
|
|
+ info->oob_buff + info->oob_buff_pos,
|
|
|
+ DIV_ROUND_UP(info->oob_size, 4));
|
|
|
break;
|
|
|
default:
|
|
|
dev_err(&info->pdev->dev, "%s: invalid state %d\n", __func__,
|
|
|
info->state);
|
|
|
BUG();
|
|
|
}
|
|
|
+
|
|
|
+ /* Update buffer pointers for multi-page read/write */
|
|
|
+ info->data_buff_pos += do_bytes;
|
|
|
+ info->oob_buff_pos += info->oob_size;
|
|
|
+ info->data_size -= do_bytes;
|
|
|
}
|
|
|
|
|
|
#ifdef ARCH_HAS_DMA
|
|
@@ -452,7 +573,7 @@ static void start_data_dma(struct pxa3xx_nand_info *info)
|
|
|
static irqreturn_t pxa3xx_nand_irq(int irq, void *devid)
|
|
|
{
|
|
|
struct pxa3xx_nand_info *info = devid;
|
|
|
- unsigned int status, is_completed = 0;
|
|
|
+ unsigned int status, is_completed = 0, is_ready = 0;
|
|
|
unsigned int ready, cmd_done;
|
|
|
|
|
|
if (info->cs == 0) {
|
|
@@ -465,10 +586,25 @@ static irqreturn_t pxa3xx_nand_irq(int irq, void *devid)
|
|
|
|
|
|
status = nand_readl(info, NDSR);
|
|
|
|
|
|
- if (status & NDSR_DBERR)
|
|
|
- info->retcode = ERR_DBERR;
|
|
|
- if (status & NDSR_SBERR)
|
|
|
- info->retcode = ERR_SBERR;
|
|
|
+ if (status & NDSR_UNCORERR)
|
|
|
+ info->retcode = ERR_UNCORERR;
|
|
|
+ if (status & NDSR_CORERR) {
|
|
|
+ info->retcode = ERR_CORERR;
|
|
|
+ if (info->variant == PXA3XX_NAND_VARIANT_ARMADA370 &&
|
|
|
+ info->ecc_bch)
|
|
|
+ info->ecc_err_cnt = NDSR_ERR_CNT(status);
|
|
|
+ else
|
|
|
+ info->ecc_err_cnt = 1;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Each chunk composing a page is corrected independently,
|
|
|
+ * and we need to store maximum number of corrected bitflips
|
|
|
+ * to return it to the MTD layer in ecc.read_page().
|
|
|
+ */
|
|
|
+ info->max_bitflips = max_t(unsigned int,
|
|
|
+ info->max_bitflips,
|
|
|
+ info->ecc_err_cnt);
|
|
|
+ }
|
|
|
if (status & (NDSR_RDDREQ | NDSR_WRDREQ)) {
|
|
|
/* whether use dma to transfer data */
|
|
|
if (info->use_dma) {
|
|
@@ -488,8 +624,8 @@ static irqreturn_t pxa3xx_nand_irq(int irq, void *devid)
|
|
|
is_completed = 1;
|
|
|
}
|
|
|
if (status & ready) {
|
|
|
- info->is_ready = 1;
|
|
|
info->state = STATE_READY;
|
|
|
+ is_ready = 1;
|
|
|
}
|
|
|
|
|
|
if (status & NDSR_WRCMDREQ) {
|
|
@@ -518,6 +654,8 @@ static irqreturn_t pxa3xx_nand_irq(int irq, void *devid)
|
|
|
nand_writel(info, NDSR, status);
|
|
|
if (is_completed)
|
|
|
complete(&info->cmd_complete);
|
|
|
+ if (is_ready)
|
|
|
+ complete(&info->dev_ready);
|
|
|
NORMAL_IRQ_EXIT:
|
|
|
return IRQ_HANDLED;
|
|
|
}
|
|
@@ -530,51 +668,94 @@ static inline int is_buf_blank(uint8_t *buf, size_t len)
|
|
|
return 1;
|
|
|
}
|
|
|
|
|
|
-static int prepare_command_pool(struct pxa3xx_nand_info *info, int command,
|
|
|
- uint16_t column, int page_addr)
|
|
|
+static void set_command_address(struct pxa3xx_nand_info *info,
|
|
|
+ unsigned int page_size, uint16_t column, int page_addr)
|
|
|
{
|
|
|
- int addr_cycle, exec_cmd;
|
|
|
- struct pxa3xx_nand_host *host;
|
|
|
- struct mtd_info *mtd;
|
|
|
+ /* small page addr setting */
|
|
|
+ if (page_size < PAGE_CHUNK_SIZE) {
|
|
|
+ info->ndcb1 = ((page_addr & 0xFFFFFF) << 8)
|
|
|
+ | (column & 0xFF);
|
|
|
|
|
|
- host = info->host[info->cs];
|
|
|
- mtd = host->mtd;
|
|
|
- addr_cycle = 0;
|
|
|
- exec_cmd = 1;
|
|
|
+ info->ndcb2 = 0;
|
|
|
+ } else {
|
|
|
+ info->ndcb1 = ((page_addr & 0xFFFF) << 16)
|
|
|
+ | (column & 0xFFFF);
|
|
|
+
|
|
|
+ if (page_addr & 0xFF0000)
|
|
|
+ info->ndcb2 = (page_addr & 0xFF0000) >> 16;
|
|
|
+ else
|
|
|
+ info->ndcb2 = 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void prepare_start_command(struct pxa3xx_nand_info *info, int command)
|
|
|
+{
|
|
|
+ struct pxa3xx_nand_host *host = info->host[info->cs];
|
|
|
+ struct mtd_info *mtd = host->mtd;
|
|
|
|
|
|
/* reset data and oob column point to handle data */
|
|
|
info->buf_start = 0;
|
|
|
info->buf_count = 0;
|
|
|
info->oob_size = 0;
|
|
|
+ info->data_buff_pos = 0;
|
|
|
+ info->oob_buff_pos = 0;
|
|
|
info->use_ecc = 0;
|
|
|
info->use_spare = 1;
|
|
|
- info->is_ready = 0;
|
|
|
info->retcode = ERR_NONE;
|
|
|
- if (info->cs != 0)
|
|
|
- info->ndcb0 = NDCB0_CSEL;
|
|
|
- else
|
|
|
- info->ndcb0 = 0;
|
|
|
+ info->ecc_err_cnt = 0;
|
|
|
+ info->ndcb3 = 0;
|
|
|
+ info->need_wait = 0;
|
|
|
|
|
|
switch (command) {
|
|
|
case NAND_CMD_READ0:
|
|
|
case NAND_CMD_PAGEPROG:
|
|
|
info->use_ecc = 1;
|
|
|
case NAND_CMD_READOOB:
|
|
|
- pxa3xx_set_datasize(info);
|
|
|
+ pxa3xx_set_datasize(info, mtd);
|
|
|
break;
|
|
|
case NAND_CMD_PARAM:
|
|
|
info->use_spare = 0;
|
|
|
break;
|
|
|
- case NAND_CMD_SEQIN:
|
|
|
- exec_cmd = 0;
|
|
|
- break;
|
|
|
default:
|
|
|
info->ndcb1 = 0;
|
|
|
info->ndcb2 = 0;
|
|
|
- info->ndcb3 = 0;
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
+ /*
|
|
|
+ * If we are about to issue a read command, or about to set
|
|
|
+ * the write address, then clean the data buffer.
|
|
|
+ */
|
|
|
+ if (command == NAND_CMD_READ0 ||
|
|
|
+ command == NAND_CMD_READOOB ||
|
|
|
+ command == NAND_CMD_SEQIN) {
|
|
|
+
|
|
|
+ info->buf_count = mtd->writesize + mtd->oobsize;
|
|
|
+ memset(info->data_buff, 0xFF, info->buf_count);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+static int prepare_set_command(struct pxa3xx_nand_info *info, int command,
|
|
|
+ int ext_cmd_type, uint16_t column, int page_addr)
|
|
|
+{
|
|
|
+ int addr_cycle, exec_cmd;
|
|
|
+ struct pxa3xx_nand_host *host;
|
|
|
+ struct mtd_info *mtd;
|
|
|
+
|
|
|
+ host = info->host[info->cs];
|
|
|
+ mtd = host->mtd;
|
|
|
+ addr_cycle = 0;
|
|
|
+ exec_cmd = 1;
|
|
|
+
|
|
|
+ if (info->cs != 0)
|
|
|
+ info->ndcb0 = NDCB0_CSEL;
|
|
|
+ else
|
|
|
+ info->ndcb0 = 0;
|
|
|
+
|
|
|
+ if (command == NAND_CMD_SEQIN)
|
|
|
+ exec_cmd = 0;
|
|
|
+
|
|
|
addr_cycle = NDCB0_ADDR_CYC(host->row_addr_cycles
|
|
|
+ host->col_addr_cycles);
|
|
|
|
|
@@ -589,30 +770,42 @@ static int prepare_command_pool(struct pxa3xx_nand_info *info, int command,
|
|
|
if (command == NAND_CMD_READOOB)
|
|
|
info->buf_start += mtd->writesize;
|
|
|
|
|
|
- /* Second command setting for large pages */
|
|
|
- if (host->page_size >= PAGE_CHUNK_SIZE)
|
|
|
+ /*
|
|
|
+ * Multiple page read needs an 'extended command type' field,
|
|
|
+ * which is either naked-read or last-read according to the
|
|
|
+ * state.
|
|
|
+ */
|
|
|
+ if (mtd->writesize == PAGE_CHUNK_SIZE) {
|
|
|
info->ndcb0 |= NDCB0_DBC | (NAND_CMD_READSTART << 8);
|
|
|
+ } else if (mtd->writesize > PAGE_CHUNK_SIZE) {
|
|
|
+ info->ndcb0 |= NDCB0_DBC | (NAND_CMD_READSTART << 8)
|
|
|
+ | NDCB0_LEN_OVRD
|
|
|
+ | NDCB0_EXT_CMD_TYPE(ext_cmd_type);
|
|
|
+ info->ndcb3 = info->chunk_size +
|
|
|
+ info->oob_size;
|
|
|
+ }
|
|
|
+
|
|
|
+ set_command_address(info, mtd->writesize, column, page_addr);
|
|
|
+ break;
|
|
|
|
|
|
case NAND_CMD_SEQIN:
|
|
|
- /* small page addr setting */
|
|
|
- if (unlikely(host->page_size < PAGE_CHUNK_SIZE)) {
|
|
|
- info->ndcb1 = ((page_addr & 0xFFFFFF) << 8)
|
|
|
- | (column & 0xFF);
|
|
|
|
|
|
- info->ndcb2 = 0;
|
|
|
- } else {
|
|
|
- info->ndcb1 = ((page_addr & 0xFFFF) << 16)
|
|
|
- | (column & 0xFFFF);
|
|
|
+ info->buf_start = column;
|
|
|
+ set_command_address(info, mtd->writesize, 0, page_addr);
|
|
|
|
|
|
- if (page_addr & 0xFF0000)
|
|
|
- info->ndcb2 = (page_addr & 0xFF0000) >> 16;
|
|
|
- else
|
|
|
- info->ndcb2 = 0;
|
|
|
+ /*
|
|
|
+ * Multiple page programming needs to execute the initial
|
|
|
+ * SEQIN command that sets the page address.
|
|
|
+ */
|
|
|
+ if (mtd->writesize > PAGE_CHUNK_SIZE) {
|
|
|
+ info->ndcb0 |= NDCB0_CMD_TYPE(0x1)
|
|
|
+ | NDCB0_EXT_CMD_TYPE(ext_cmd_type)
|
|
|
+ | addr_cycle
|
|
|
+ | command;
|
|
|
+ /* No data transfer in this case */
|
|
|
+ info->data_size = 0;
|
|
|
+ exec_cmd = 1;
|
|
|
}
|
|
|
-
|
|
|
- info->buf_count = mtd->writesize + mtd->oobsize;
|
|
|
- memset(info->data_buff, 0xFF, info->buf_count);
|
|
|
-
|
|
|
break;
|
|
|
|
|
|
case NAND_CMD_PAGEPROG:
|
|
@@ -622,13 +815,40 @@ static int prepare_command_pool(struct pxa3xx_nand_info *info, int command,
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
- info->ndcb0 |= NDCB0_CMD_TYPE(0x1)
|
|
|
- | NDCB0_AUTO_RS
|
|
|
- | NDCB0_ST_ROW_EN
|
|
|
- | NDCB0_DBC
|
|
|
- | (NAND_CMD_PAGEPROG << 8)
|
|
|
- | NAND_CMD_SEQIN
|
|
|
- | addr_cycle;
|
|
|
+ /* Second command setting for large pages */
|
|
|
+ if (mtd->writesize > PAGE_CHUNK_SIZE) {
|
|
|
+ /*
|
|
|
+ * Multiple page write uses the 'extended command'
|
|
|
+ * field. This can be used to issue a command dispatch
|
|
|
+ * or a naked-write depending on the current stage.
|
|
|
+ */
|
|
|
+ info->ndcb0 |= NDCB0_CMD_TYPE(0x1)
|
|
|
+ | NDCB0_LEN_OVRD
|
|
|
+ | NDCB0_EXT_CMD_TYPE(ext_cmd_type);
|
|
|
+ info->ndcb3 = info->chunk_size +
|
|
|
+ info->oob_size;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * This is the command dispatch that completes a chunked
|
|
|
+ * page program operation.
|
|
|
+ */
|
|
|
+ if (info->data_size == 0) {
|
|
|
+ info->ndcb0 = NDCB0_CMD_TYPE(0x1)
|
|
|
+ | NDCB0_EXT_CMD_TYPE(ext_cmd_type)
|
|
|
+ | command;
|
|
|
+ info->ndcb1 = 0;
|
|
|
+ info->ndcb2 = 0;
|
|
|
+ info->ndcb3 = 0;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ info->ndcb0 |= NDCB0_CMD_TYPE(0x1)
|
|
|
+ | NDCB0_AUTO_RS
|
|
|
+ | NDCB0_ST_ROW_EN
|
|
|
+ | NDCB0_DBC
|
|
|
+ | (NAND_CMD_PAGEPROG << 8)
|
|
|
+ | NAND_CMD_SEQIN
|
|
|
+ | addr_cycle;
|
|
|
+ }
|
|
|
break;
|
|
|
|
|
|
case NAND_CMD_PARAM:
|
|
@@ -691,8 +911,8 @@ static int prepare_command_pool(struct pxa3xx_nand_info *info, int command,
|
|
|
return exec_cmd;
|
|
|
}
|
|
|
|
|
|
-static void pxa3xx_nand_cmdfunc(struct mtd_info *mtd, unsigned command,
|
|
|
- int column, int page_addr)
|
|
|
+static void nand_cmdfunc(struct mtd_info *mtd, unsigned command,
|
|
|
+ int column, int page_addr)
|
|
|
{
|
|
|
struct pxa3xx_nand_host *host = mtd->priv;
|
|
|
struct pxa3xx_nand_info *info = host->info_data;
|
|
@@ -717,10 +937,15 @@ static void pxa3xx_nand_cmdfunc(struct mtd_info *mtd, unsigned command,
|
|
|
nand_writel(info, NDTR1CS0, info->ndtr1cs0);
|
|
|
}
|
|
|
|
|
|
+ prepare_start_command(info, command);
|
|
|
+
|
|
|
info->state = STATE_PREPARED;
|
|
|
- exec_cmd = prepare_command_pool(info, command, column, page_addr);
|
|
|
+ exec_cmd = prepare_set_command(info, command, 0, column, page_addr);
|
|
|
+
|
|
|
if (exec_cmd) {
|
|
|
init_completion(&info->cmd_complete);
|
|
|
+ init_completion(&info->dev_ready);
|
|
|
+ info->need_wait = 1;
|
|
|
pxa3xx_nand_start(info);
|
|
|
|
|
|
ret = wait_for_completion_timeout(&info->cmd_complete,
|
|
@@ -734,6 +959,117 @@ static void pxa3xx_nand_cmdfunc(struct mtd_info *mtd, unsigned command,
|
|
|
info->state = STATE_IDLE;
|
|
|
}
|
|
|
|
|
|
+static void nand_cmdfunc_extended(struct mtd_info *mtd,
|
|
|
+ const unsigned command,
|
|
|
+ int column, int page_addr)
|
|
|
+{
|
|
|
+ struct pxa3xx_nand_host *host = mtd->priv;
|
|
|
+ struct pxa3xx_nand_info *info = host->info_data;
|
|
|
+ int ret, exec_cmd, ext_cmd_type;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * if this is a x16 device then convert the input
|
|
|
+ * "byte" address into a "word" address appropriate
|
|
|
+ * for indexing a word-oriented device
|
|
|
+ */
|
|
|
+ if (info->reg_ndcr & NDCR_DWIDTH_M)
|
|
|
+ column /= 2;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * There may be different NAND chip hooked to
|
|
|
+ * different chip select, so check whether
|
|
|
+ * chip select has been changed, if yes, reset the timing
|
|
|
+ */
|
|
|
+ if (info->cs != host->cs) {
|
|
|
+ info->cs = host->cs;
|
|
|
+ nand_writel(info, NDTR0CS0, info->ndtr0cs0);
|
|
|
+ nand_writel(info, NDTR1CS0, info->ndtr1cs0);
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Select the extended command for the first command */
|
|
|
+ switch (command) {
|
|
|
+ case NAND_CMD_READ0:
|
|
|
+ case NAND_CMD_READOOB:
|
|
|
+ ext_cmd_type = EXT_CMD_TYPE_MONO;
|
|
|
+ break;
|
|
|
+ case NAND_CMD_SEQIN:
|
|
|
+ ext_cmd_type = EXT_CMD_TYPE_DISPATCH;
|
|
|
+ break;
|
|
|
+ case NAND_CMD_PAGEPROG:
|
|
|
+ ext_cmd_type = EXT_CMD_TYPE_NAKED_RW;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ ext_cmd_type = 0;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ prepare_start_command(info, command);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Prepare the "is ready" completion before starting a command
|
|
|
+ * transaction sequence. If the command is not executed the
|
|
|
+ * completion will be completed, see below.
|
|
|
+ *
|
|
|
+ * We can do that inside the loop because the command variable
|
|
|
+ * is invariant and thus so is the exec_cmd.
|
|
|
+ */
|
|
|
+ info->need_wait = 1;
|
|
|
+ init_completion(&info->dev_ready);
|
|
|
+ do {
|
|
|
+ info->state = STATE_PREPARED;
|
|
|
+ exec_cmd = prepare_set_command(info, command, ext_cmd_type,
|
|
|
+ column, page_addr);
|
|
|
+ if (!exec_cmd) {
|
|
|
+ info->need_wait = 0;
|
|
|
+ complete(&info->dev_ready);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ init_completion(&info->cmd_complete);
|
|
|
+ pxa3xx_nand_start(info);
|
|
|
+
|
|
|
+ ret = wait_for_completion_timeout(&info->cmd_complete,
|
|
|
+ CHIP_DELAY_TIMEOUT);
|
|
|
+ if (!ret) {
|
|
|
+ dev_err(&info->pdev->dev, "Wait time out!!!\n");
|
|
|
+ /* Stop State Machine for next command cycle */
|
|
|
+ pxa3xx_nand_stop(info);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Check if the sequence is complete */
|
|
|
+ if (info->data_size == 0 && command != NAND_CMD_PAGEPROG)
|
|
|
+ break;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * After a splitted program command sequence has issued
|
|
|
+ * the command dispatch, the command sequence is complete.
|
|
|
+ */
|
|
|
+ if (info->data_size == 0 &&
|
|
|
+ command == NAND_CMD_PAGEPROG &&
|
|
|
+ ext_cmd_type == EXT_CMD_TYPE_DISPATCH)
|
|
|
+ break;
|
|
|
+
|
|
|
+ if (command == NAND_CMD_READ0 || command == NAND_CMD_READOOB) {
|
|
|
+ /* Last read: issue a 'last naked read' */
|
|
|
+ if (info->data_size == info->chunk_size)
|
|
|
+ ext_cmd_type = EXT_CMD_TYPE_LAST_RW;
|
|
|
+ else
|
|
|
+ ext_cmd_type = EXT_CMD_TYPE_NAKED_RW;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * If a splitted program command has no more data to transfer,
|
|
|
+ * the command dispatch must be issued to complete.
|
|
|
+ */
|
|
|
+ } else if (command == NAND_CMD_PAGEPROG &&
|
|
|
+ info->data_size == 0) {
|
|
|
+ ext_cmd_type = EXT_CMD_TYPE_DISPATCH;
|
|
|
+ }
|
|
|
+ } while (1);
|
|
|
+
|
|
|
+ info->state = STATE_IDLE;
|
|
|
+}
|
|
|
+
|
|
|
static int pxa3xx_nand_write_page_hwecc(struct mtd_info *mtd,
|
|
|
struct nand_chip *chip, const uint8_t *buf, int oob_required)
|
|
|
{
|
|
@@ -753,20 +1089,14 @@ static int pxa3xx_nand_read_page_hwecc(struct mtd_info *mtd,
|
|
|
chip->read_buf(mtd, buf, mtd->writesize);
|
|
|
chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
|
|
|
|
|
|
- if (info->retcode == ERR_SBERR) {
|
|
|
- switch (info->use_ecc) {
|
|
|
- case 1:
|
|
|
- mtd->ecc_stats.corrected++;
|
|
|
- break;
|
|
|
- case 0:
|
|
|
- default:
|
|
|
- break;
|
|
|
- }
|
|
|
- } else if (info->retcode == ERR_DBERR) {
|
|
|
+ if (info->retcode == ERR_CORERR && info->use_ecc) {
|
|
|
+ mtd->ecc_stats.corrected += info->ecc_err_cnt;
|
|
|
+
|
|
|
+ } else if (info->retcode == ERR_UNCORERR) {
|
|
|
/*
|
|
|
* for blank page (all 0xff), HW will calculate its ECC as
|
|
|
* 0, which is different from the ECC information within
|
|
|
- * OOB, ignore such double bit errors
|
|
|
+ * OOB, ignore such uncorrectable errors
|
|
|
*/
|
|
|
if (is_buf_blank(buf, mtd->writesize))
|
|
|
info->retcode = ERR_NONE;
|
|
@@ -774,7 +1104,7 @@ static int pxa3xx_nand_read_page_hwecc(struct mtd_info *mtd,
|
|
|
mtd->ecc_stats.failed++;
|
|
|
}
|
|
|
|
|
|
- return 0;
|
|
|
+ return info->max_bitflips;
|
|
|
}
|
|
|
|
|
|
static uint8_t pxa3xx_nand_read_byte(struct mtd_info *mtd)
|
|
@@ -833,21 +1163,27 @@ static int pxa3xx_nand_waitfunc(struct mtd_info *mtd, struct nand_chip *this)
|
|
|
{
|
|
|
struct pxa3xx_nand_host *host = mtd->priv;
|
|
|
struct pxa3xx_nand_info *info = host->info_data;
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ if (info->need_wait) {
|
|
|
+ ret = wait_for_completion_timeout(&info->dev_ready,
|
|
|
+ CHIP_DELAY_TIMEOUT);
|
|
|
+ info->need_wait = 0;
|
|
|
+ if (!ret) {
|
|
|
+ dev_err(&info->pdev->dev, "Ready time out!!!\n");
|
|
|
+ return NAND_STATUS_FAIL;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
/* pxa3xx_nand_send_command has waited for command complete */
|
|
|
if (this->state == FL_WRITING || this->state == FL_ERASING) {
|
|
|
if (info->retcode == ERR_NONE)
|
|
|
return 0;
|
|
|
- else {
|
|
|
- /*
|
|
|
- * any error make it return 0x01 which will tell
|
|
|
- * the caller the erase and write fail
|
|
|
- */
|
|
|
- return 0x01;
|
|
|
- }
|
|
|
+ else
|
|
|
+ return NAND_STATUS_FAIL;
|
|
|
}
|
|
|
|
|
|
- return 0;
|
|
|
+ return NAND_STATUS_READY;
|
|
|
}
|
|
|
|
|
|
static int pxa3xx_nand_config_flash(struct pxa3xx_nand_info *info,
|
|
@@ -869,7 +1205,6 @@ static int pxa3xx_nand_config_flash(struct pxa3xx_nand_info *info,
|
|
|
}
|
|
|
|
|
|
/* calculate flash information */
|
|
|
- host->page_size = f->page_size;
|
|
|
host->read_id_bytes = (f->page_size == 2048) ? 4 : 2;
|
|
|
|
|
|
/* calculate addressing information */
|
|
@@ -906,13 +1241,15 @@ static int pxa3xx_nand_detect_config(struct pxa3xx_nand_info *info)
|
|
|
uint32_t ndcr = nand_readl(info, NDCR);
|
|
|
|
|
|
if (ndcr & NDCR_PAGE_SZ) {
|
|
|
- host->page_size = 2048;
|
|
|
+ /* Controller's FIFO size */
|
|
|
+ info->chunk_size = 2048;
|
|
|
host->read_id_bytes = 4;
|
|
|
} else {
|
|
|
- host->page_size = 512;
|
|
|
+ info->chunk_size = 512;
|
|
|
host->read_id_bytes = 2;
|
|
|
}
|
|
|
|
|
|
+ /* Set an initial chunk size */
|
|
|
info->reg_ndcr = ndcr & ~NDCR_INT_MASK;
|
|
|
info->ndtr0cs0 = nand_readl(info, NDTR0CS0);
|
|
|
info->ndtr1cs0 = nand_readl(info, NDTR1CS0);
|
|
@@ -988,18 +1325,89 @@ static void pxa3xx_nand_free_buff(struct pxa3xx_nand_info *info)
|
|
|
static int pxa3xx_nand_sensing(struct pxa3xx_nand_info *info)
|
|
|
{
|
|
|
struct mtd_info *mtd;
|
|
|
+ struct nand_chip *chip;
|
|
|
int ret;
|
|
|
+
|
|
|
mtd = info->host[info->cs]->mtd;
|
|
|
+ chip = mtd->priv;
|
|
|
+
|
|
|
/* use the common timing to make a try */
|
|
|
ret = pxa3xx_nand_config_flash(info, &builtin_flash_types[0]);
|
|
|
if (ret)
|
|
|
return ret;
|
|
|
|
|
|
- pxa3xx_nand_cmdfunc(mtd, NAND_CMD_RESET, 0, 0);
|
|
|
- if (info->is_ready)
|
|
|
- return 0;
|
|
|
+ chip->cmdfunc(mtd, NAND_CMD_RESET, 0, 0);
|
|
|
+ ret = chip->waitfunc(mtd, chip);
|
|
|
+ if (ret & NAND_STATUS_FAIL)
|
|
|
+ return -ENODEV;
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
|
|
|
- return -ENODEV;
|
|
|
+static int pxa_ecc_init(struct pxa3xx_nand_info *info,
|
|
|
+ struct nand_ecc_ctrl *ecc,
|
|
|
+ int strength, int ecc_stepsize, int page_size)
|
|
|
+{
|
|
|
+ if (strength == 1 && ecc_stepsize == 512 && page_size == 2048) {
|
|
|
+ info->chunk_size = 2048;
|
|
|
+ info->spare_size = 40;
|
|
|
+ info->ecc_size = 24;
|
|
|
+ ecc->mode = NAND_ECC_HW;
|
|
|
+ ecc->size = 512;
|
|
|
+ ecc->strength = 1;
|
|
|
+ return 1;
|
|
|
+
|
|
|
+ } else if (strength == 1 && ecc_stepsize == 512 && page_size == 512) {
|
|
|
+ info->chunk_size = 512;
|
|
|
+ info->spare_size = 8;
|
|
|
+ info->ecc_size = 8;
|
|
|
+ ecc->mode = NAND_ECC_HW;
|
|
|
+ ecc->size = 512;
|
|
|
+ ecc->strength = 1;
|
|
|
+ return 1;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Required ECC: 4-bit correction per 512 bytes
|
|
|
+ * Select: 16-bit correction per 2048 bytes
|
|
|
+ */
|
|
|
+ } else if (strength == 4 && ecc_stepsize == 512 && page_size == 2048) {
|
|
|
+ info->ecc_bch = 1;
|
|
|
+ info->chunk_size = 2048;
|
|
|
+ info->spare_size = 32;
|
|
|
+ info->ecc_size = 32;
|
|
|
+ ecc->mode = NAND_ECC_HW;
|
|
|
+ ecc->size = info->chunk_size;
|
|
|
+ ecc->layout = &ecc_layout_2KB_bch4bit;
|
|
|
+ ecc->strength = 16;
|
|
|
+ return 1;
|
|
|
+
|
|
|
+ } else if (strength == 4 && ecc_stepsize == 512 && page_size == 4096) {
|
|
|
+ info->ecc_bch = 1;
|
|
|
+ info->chunk_size = 2048;
|
|
|
+ info->spare_size = 32;
|
|
|
+ info->ecc_size = 32;
|
|
|
+ ecc->mode = NAND_ECC_HW;
|
|
|
+ ecc->size = info->chunk_size;
|
|
|
+ ecc->layout = &ecc_layout_4KB_bch4bit;
|
|
|
+ ecc->strength = 16;
|
|
|
+ return 1;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Required ECC: 8-bit correction per 512 bytes
|
|
|
+ * Select: 16-bit correction per 1024 bytes
|
|
|
+ */
|
|
|
+ } else if (strength == 8 && ecc_stepsize == 512 && page_size == 4096) {
|
|
|
+ info->ecc_bch = 1;
|
|
|
+ info->chunk_size = 1024;
|
|
|
+ info->spare_size = 0;
|
|
|
+ info->ecc_size = 32;
|
|
|
+ ecc->mode = NAND_ECC_HW;
|
|
|
+ ecc->size = info->chunk_size;
|
|
|
+ ecc->layout = &ecc_layout_4KB_bch8bit;
|
|
|
+ ecc->strength = 16;
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+ return 0;
|
|
|
}
|
|
|
|
|
|
static int pxa3xx_nand_scan(struct mtd_info *mtd)
|
|
@@ -1014,6 +1422,7 @@ static int pxa3xx_nand_scan(struct mtd_info *mtd)
|
|
|
uint32_t id = -1;
|
|
|
uint64_t chipsize;
|
|
|
int i, ret, num;
|
|
|
+ uint16_t ecc_strength, ecc_step;
|
|
|
|
|
|
if (pdata->keep_config && !pxa3xx_nand_detect_config(info))
|
|
|
goto KEEP_CONFIG;
|
|
@@ -1072,15 +1481,60 @@ static int pxa3xx_nand_scan(struct mtd_info *mtd)
|
|
|
pxa3xx_flash_ids[1].name = NULL;
|
|
|
def = pxa3xx_flash_ids;
|
|
|
KEEP_CONFIG:
|
|
|
- chip->ecc.mode = NAND_ECC_HW;
|
|
|
- chip->ecc.size = host->page_size;
|
|
|
- chip->ecc.strength = 1;
|
|
|
-
|
|
|
if (info->reg_ndcr & NDCR_DWIDTH_M)
|
|
|
chip->options |= NAND_BUSWIDTH_16;
|
|
|
|
|
|
+ /* Device detection must be done with ECC disabled */
|
|
|
+ if (info->variant == PXA3XX_NAND_VARIANT_ARMADA370)
|
|
|
+ nand_writel(info, NDECCCTRL, 0x0);
|
|
|
+
|
|
|
if (nand_scan_ident(mtd, 1, def))
|
|
|
return -ENODEV;
|
|
|
+
|
|
|
+ if (pdata->flash_bbt) {
|
|
|
+ /*
|
|
|
+ * We'll use a bad block table stored in-flash and don't
|
|
|
+ * allow writing the bad block marker to the flash.
|
|
|
+ */
|
|
|
+ chip->bbt_options |= NAND_BBT_USE_FLASH |
|
|
|
+ NAND_BBT_NO_OOB_BBM;
|
|
|
+ chip->bbt_td = &bbt_main_descr;
|
|
|
+ chip->bbt_md = &bbt_mirror_descr;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ * If the page size is bigger than the FIFO size, let's check
|
|
|
+ * we are given the right variant and then switch to the extended
|
|
|
+ * (aka splitted) command handling,
|
|
|
+ */
|
|
|
+ if (mtd->writesize > PAGE_CHUNK_SIZE) {
|
|
|
+ if (info->variant == PXA3XX_NAND_VARIANT_ARMADA370) {
|
|
|
+ chip->cmdfunc = nand_cmdfunc_extended;
|
|
|
+ } else {
|
|
|
+ dev_err(&info->pdev->dev,
|
|
|
+ "unsupported page size on this variant\n");
|
|
|
+ return -ENODEV;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ ecc_strength = chip->ecc_strength_ds;
|
|
|
+ ecc_step = chip->ecc_step_ds;
|
|
|
+
|
|
|
+ /* Set default ECC strength requirements on non-ONFI devices */
|
|
|
+ if (ecc_strength < 1 && ecc_step < 1) {
|
|
|
+ ecc_strength = 1;
|
|
|
+ ecc_step = 512;
|
|
|
+ }
|
|
|
+
|
|
|
+ ret = pxa_ecc_init(info, &chip->ecc, ecc_strength,
|
|
|
+ ecc_step, mtd->writesize);
|
|
|
+ if (!ret) {
|
|
|
+ dev_err(&info->pdev->dev,
|
|
|
+ "ECC strength %d at page size %d is not supported\n",
|
|
|
+ chip->ecc_strength_ds, mtd->writesize);
|
|
|
+ return -ENODEV;
|
|
|
+ }
|
|
|
+
|
|
|
/* calculate addressing information */
|
|
|
if (mtd->writesize >= 2048)
|
|
|
host->col_addr_cycles = 2;
|
|
@@ -1121,6 +1575,7 @@ static int alloc_nand_resource(struct platform_device *pdev)
|
|
|
return -ENOMEM;
|
|
|
|
|
|
info->pdev = pdev;
|
|
|
+ info->variant = pxa3xx_nand_get_variant(pdev);
|
|
|
for (cs = 0; cs < pdata->num_cs; cs++) {
|
|
|
mtd = (struct mtd_info *)((unsigned int)&info[1] +
|
|
|
(sizeof(*mtd) + sizeof(*host)) * cs);
|
|
@@ -1138,11 +1593,12 @@ static int alloc_nand_resource(struct platform_device *pdev)
|
|
|
chip->controller = &info->controller;
|
|
|
chip->waitfunc = pxa3xx_nand_waitfunc;
|
|
|
chip->select_chip = pxa3xx_nand_select_chip;
|
|
|
- chip->cmdfunc = pxa3xx_nand_cmdfunc;
|
|
|
chip->read_word = pxa3xx_nand_read_word;
|
|
|
chip->read_byte = pxa3xx_nand_read_byte;
|
|
|
chip->read_buf = pxa3xx_nand_read_buf;
|
|
|
chip->write_buf = pxa3xx_nand_write_buf;
|
|
|
+ chip->options |= NAND_NO_SUBPAGE_WRITE;
|
|
|
+ chip->cmdfunc = nand_cmdfunc;
|
|
|
}
|
|
|
|
|
|
spin_lock_init(&chip->controller->lock);
|
|
@@ -1254,25 +1710,6 @@ static int pxa3xx_nand_remove(struct platform_device *pdev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static struct of_device_id pxa3xx_nand_dt_ids[] = {
|
|
|
- {
|
|
|
- .compatible = "marvell,pxa3xx-nand",
|
|
|
- .data = (void *)PXA3XX_NAND_VARIANT_PXA,
|
|
|
- },
|
|
|
- {}
|
|
|
-};
|
|
|
-MODULE_DEVICE_TABLE(of, pxa3xx_nand_dt_ids);
|
|
|
-
|
|
|
-static enum pxa3xx_nand_variant
|
|
|
-pxa3xx_nand_get_variant(struct platform_device *pdev)
|
|
|
-{
|
|
|
- const struct of_device_id *of_id =
|
|
|
- of_match_device(pxa3xx_nand_dt_ids, &pdev->dev);
|
|
|
- if (!of_id)
|
|
|
- return PXA3XX_NAND_VARIANT_PXA;
|
|
|
- return (enum pxa3xx_nand_variant)of_id->data;
|
|
|
-}
|
|
|
-
|
|
|
static int pxa3xx_nand_probe_dt(struct platform_device *pdev)
|
|
|
{
|
|
|
struct pxa3xx_nand_platform_data *pdata;
|
|
@@ -1292,6 +1729,7 @@ static int pxa3xx_nand_probe_dt(struct platform_device *pdev)
|
|
|
if (of_get_property(np, "marvell,nand-keep-config", NULL))
|
|
|
pdata->keep_config = 1;
|
|
|
of_property_read_u32(np, "num-cs", &pdata->num_cs);
|
|
|
+ pdata->flash_bbt = of_get_nand_on_flash_bbt(np);
|
|
|
|
|
|
pdev->dev.platform_data = pdata;
|
|
|
|
|
@@ -1329,7 +1767,6 @@ static int pxa3xx_nand_probe(struct platform_device *pdev)
|
|
|
}
|
|
|
|
|
|
info = platform_get_drvdata(pdev);
|
|
|
- info->variant = pxa3xx_nand_get_variant(pdev);
|
|
|
probe_success = 0;
|
|
|
for (cs = 0; cs < pdata->num_cs; cs++) {
|
|
|
struct mtd_info *mtd = info->host[cs]->mtd;
|