pxa3xx_nand.c 49.4 KB
Newer Older
E
eric miao 已提交
1 2 3 4 5 6 7 8 9
/*
 * drivers/mtd/nand/pxa3xx_nand.c
 *
 * Copyright © 2005 Intel Corporation
 * Copyright © 2006 Marvell International Ltd.
 *
 * 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.
10 11
 *
 * See Documentation/mtd/nand/pxa3xx-nand.txt for more details.
E
eric miao 已提交
12 13
 */

14
#include <linux/kernel.h>
E
eric miao 已提交
15 16 17 18 19 20 21 22 23
#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/platform_device.h>
#include <linux/dma-mapping.h>
#include <linux/delay.h>
#include <linux/clk.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/nand.h>
#include <linux/mtd/partitions.h>
24
#include <linux/io.h>
25
#include <linux/iopoll.h>
26
#include <linux/irq.h>
27
#include <linux/slab.h>
28 29
#include <linux/of.h>
#include <linux/of_device.h>
30
#include <linux/of_mtd.h>
E
eric miao 已提交
31

32
#if defined(CONFIG_ARM) && (defined(CONFIG_ARCH_PXA) || defined(CONFIG_ARCH_MMP))
33 34 35 36
#define ARCH_HAS_DMA
#endif

#ifdef ARCH_HAS_DMA
37
#include <mach/dma.h>
38 39
#endif

40
#include <linux/platform_data/mtd-nand-pxa3xx.h>
E
eric miao 已提交
41

42 43
#define	CHIP_DELAY_TIMEOUT	msecs_to_jiffies(200)
#define NAND_STOP_DELAY		msecs_to_jiffies(40)
44
#define PAGE_CHUNK_SIZE		(2048)
E
eric miao 已提交
45

46 47 48 49 50 51 52
/*
 * Define a buffer size for the initial command that detects the flash device:
 * STATUS, READID and PARAM. The largest of these is the PARAM command,
 * needing 256 bytes.
 */
#define INIT_BUFFER_SIZE	256

E
eric miao 已提交
53 54 55 56 57 58 59 60
/* registers and bit definitions */
#define NDCR		(0x00) /* Control register */
#define NDTR0CS0	(0x04) /* Timing Parameter 0 for CS0 */
#define NDTR1CS0	(0x0C) /* Timing Parameter 1 for CS0 */
#define NDSR		(0x14) /* Status Register */
#define NDPCR		(0x18) /* Page Count Register */
#define NDBDR0		(0x1C) /* Bad Block Register 0 */
#define NDBDR1		(0x20) /* Bad Block Register 1 */
61
#define NDECCCTRL	(0x28) /* ECC control */
E
eric miao 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
#define NDDB		(0x40) /* Data Buffer */
#define NDCB0		(0x48) /* Command Buffer0 */
#define NDCB1		(0x4C) /* Command Buffer1 */
#define NDCB2		(0x50) /* Command Buffer2 */

#define NDCR_SPARE_EN		(0x1 << 31)
#define NDCR_ECC_EN		(0x1 << 30)
#define NDCR_DMA_EN		(0x1 << 29)
#define NDCR_ND_RUN		(0x1 << 28)
#define NDCR_DWIDTH_C		(0x1 << 27)
#define NDCR_DWIDTH_M		(0x1 << 26)
#define NDCR_PAGE_SZ		(0x1 << 24)
#define NDCR_NCSX		(0x1 << 23)
#define NDCR_ND_MODE		(0x3 << 21)
#define NDCR_NAND_MODE   	(0x0)
#define NDCR_CLR_PG_CNT		(0x1 << 20)
L
Lei Wen 已提交
78
#define NDCR_STOP_ON_UNCOR	(0x1 << 19)
E
eric miao 已提交
79 80 81 82 83 84
#define NDCR_RD_ID_CNT_MASK	(0x7 << 16)
#define NDCR_RD_ID_CNT(x)	(((x) << 16) & NDCR_RD_ID_CNT_MASK)

#define NDCR_RA_START		(0x1 << 15)
#define NDCR_PG_PER_BLK		(0x1 << 14)
#define NDCR_ND_ARB_EN		(0x1 << 12)
L
Lei Wen 已提交
85
#define NDCR_INT_MASK           (0xFFF)
E
eric miao 已提交
86 87

#define NDSR_MASK		(0xfff)
88 89 90
#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)
L
Lei Wen 已提交
91 92
#define NDSR_RDY                (0x1 << 12)
#define NDSR_FLASH_RDY          (0x1 << 11)
E
eric miao 已提交
93 94 95 96 97 98
#define NDSR_CS0_PAGED		(0x1 << 10)
#define NDSR_CS1_PAGED		(0x1 << 9)
#define NDSR_CS0_CMDD		(0x1 << 8)
#define NDSR_CS1_CMDD		(0x1 << 7)
#define NDSR_CS0_BBD		(0x1 << 6)
#define NDSR_CS1_BBD		(0x1 << 5)
99 100
#define NDSR_UNCORERR		(0x1 << 4)
#define NDSR_CORERR		(0x1 << 3)
E
eric miao 已提交
101 102 103 104
#define NDSR_WRDREQ		(0x1 << 2)
#define NDSR_RDDREQ		(0x1 << 1)
#define NDSR_WRCMDREQ		(0x1)

105
#define NDCB0_LEN_OVRD		(0x1 << 28)
106
#define NDCB0_ST_ROW_EN         (0x1 << 26)
E
eric miao 已提交
107 108
#define NDCB0_AUTO_RS		(0x1 << 25)
#define NDCB0_CSEL		(0x1 << 24)
109 110
#define NDCB0_EXT_CMD_TYPE_MASK	(0x7 << 29)
#define NDCB0_EXT_CMD_TYPE(x)	(((x) << 29) & NDCB0_EXT_CMD_TYPE_MASK)
E
eric miao 已提交
111 112 113 114 115 116 117 118 119 120
#define NDCB0_CMD_TYPE_MASK	(0x7 << 21)
#define NDCB0_CMD_TYPE(x)	(((x) << 21) & NDCB0_CMD_TYPE_MASK)
#define NDCB0_NC		(0x1 << 20)
#define NDCB0_DBC		(0x1 << 19)
#define NDCB0_ADDR_CYC_MASK	(0x7 << 16)
#define NDCB0_ADDR_CYC(x)	(((x) << 16) & NDCB0_ADDR_CYC_MASK)
#define NDCB0_CMD2_MASK		(0xff << 8)
#define NDCB0_CMD1_MASK		(0xff)
#define NDCB0_ADDR_CYC_SHIFT	(16)

121 122 123 124 125 126 127 128
#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 */

E
eric miao 已提交
129 130
/* macros for registers read/write */
#define nand_writel(info, off, val)	\
131
	writel_relaxed((val), (info)->mmio_base + (off))
E
eric miao 已提交
132 133

#define nand_readl(info, off)		\
134
	readl_relaxed((info)->mmio_base + (off))
E
eric miao 已提交
135 136 137 138 139 140

/* error code and state */
enum {
	ERR_NONE	= 0,
	ERR_DMABUSERR	= -1,
	ERR_SENDCMD	= -2,
141
	ERR_UNCORERR	= -3,
E
eric miao 已提交
142
	ERR_BBERR	= -4,
143
	ERR_CORERR	= -5,
E
eric miao 已提交
144 145 146
};

enum {
L
Lei Wen 已提交
147
	STATE_IDLE = 0,
148
	STATE_PREPARED,
E
eric miao 已提交
149 150 151 152 153 154
	STATE_CMD_HANDLE,
	STATE_DMA_READING,
	STATE_DMA_WRITING,
	STATE_DMA_DONE,
	STATE_PIO_READING,
	STATE_PIO_WRITING,
L
Lei Wen 已提交
155 156
	STATE_CMD_DONE,
	STATE_READY,
E
eric miao 已提交
157 158
};

159 160 161 162 163
enum pxa3xx_nand_variant {
	PXA3XX_NAND_VARIANT_PXA,
	PXA3XX_NAND_VARIANT_ARMADA370,
};

164 165 166 167 168 169 170
struct pxa3xx_nand_host {
	struct nand_chip	chip;
	struct mtd_info         *mtd;
	void			*info_data;

	/* page size of attached chip */
	int			use_ecc;
171
	int			cs;
E
eric miao 已提交
172

173 174 175 176 177 178 179 180
	/* calculated from pxa3xx_nand_flash data */
	unsigned int		col_addr_cycles;
	unsigned int		row_addr_cycles;
	size_t			read_id_bytes;

};

struct pxa3xx_nand_info {
181
	struct nand_hw_control	controller;
E
eric miao 已提交
182 183 184 185
	struct platform_device	 *pdev;

	struct clk		*clk;
	void __iomem		*mmio_base;
186
	unsigned long		mmio_phys;
187
	struct completion	cmd_complete, dev_ready;
E
eric miao 已提交
188 189 190

	unsigned int 		buf_start;
	unsigned int		buf_count;
191
	unsigned int		buf_size;
192 193
	unsigned int		data_buff_pos;
	unsigned int		oob_buff_pos;
E
eric miao 已提交
194 195 196 197 198 199

	/* DMA information */
	int			drcmr_dat;
	int			drcmr_cmd;

	unsigned char		*data_buff;
200
	unsigned char		*oob_buff;
E
eric miao 已提交
201 202 203 204 205
	dma_addr_t 		data_buff_phys;
	int 			data_dma_ch;
	struct pxa_dma_desc	*data_desc;
	dma_addr_t 		data_desc_addr;

206
	struct pxa3xx_nand_host *host[NUM_CHIP_SELECT];
E
eric miao 已提交
207 208
	unsigned int		state;

209 210 211 212 213 214
	/*
	 * This driver supports NFCv1 (as found in PXA SoC)
	 * and NFCv2 (as found in Armada 370/XP SoC).
	 */
	enum pxa3xx_nand_variant variant;

215
	int			cs;
E
eric miao 已提交
216
	int			use_ecc;	/* use HW ECC ? */
217
	int			ecc_bch;	/* using BCH ECC? */
E
eric miao 已提交
218
	int			use_dma;	/* use DMA ? */
219
	int			use_spare;	/* use spare ? */
220
	int			need_wait;
E
eric miao 已提交
221

222
	unsigned int		data_size;	/* data to be read from FIFO */
223
	unsigned int		chunk_size;	/* split commands chunk size */
224
	unsigned int		oob_size;
225 226
	unsigned int		spare_size;
	unsigned int		ecc_size;
227 228
	unsigned int		ecc_err_cnt;
	unsigned int		max_bitflips;
E
eric miao 已提交
229 230
	int 			retcode;

231 232 233 234 235
	/* cached register value */
	uint32_t		reg_ndcr;
	uint32_t		ndtr0cs0;
	uint32_t		ndtr1cs0;

E
eric miao 已提交
236 237 238 239
	/* generated NDCBx register values */
	uint32_t		ndcb0;
	uint32_t		ndcb1;
	uint32_t		ndcb2;
240
	uint32_t		ndcb3;
E
eric miao 已提交
241 242
};

243
static bool use_dma = 1;
E
eric miao 已提交
244
module_param(use_dma, bool, 0444);
L
Lucas De Marchi 已提交
245
MODULE_PARM_DESC(use_dma, "enable DMA for data transferring to/from NAND HW");
E
eric miao 已提交
246

247
static struct pxa3xx_nand_timing timing[] = {
248 249 250 251
	{ 40, 80, 60, 100, 80, 100, 90000, 400, 40, },
	{ 10,  0, 20,  40, 30,  40, 11123, 110, 10, },
	{ 10, 25, 15,  25, 15,  30, 25000,  60, 10, },
	{ 10, 35, 15,  25, 15,  25, 25000,  60, 10, },
252 253
};

254
static struct pxa3xx_nand_flash builtin_flash_types[] = {
255 256 257 258 259 260 261 262 263
{ "DEFAULT FLASH",      0,   0, 2048,  8,  8,    0, &timing[0] },
{ "64MiB 16-bit",  0x46ec,  32,  512, 16, 16, 4096, &timing[1] },
{ "256MiB 8-bit",  0xdaec,  64, 2048,  8,  8, 2048, &timing[1] },
{ "4GiB 8-bit",    0xd7ec, 128, 4096,  8,  8, 8192, &timing[1] },
{ "128MiB 8-bit",  0xa12c,  64, 2048,  8,  8, 1024, &timing[2] },
{ "128MiB 16-bit", 0xb12c,  64, 2048, 16, 16, 1024, &timing[2] },
{ "512MiB 8-bit",  0xdc2c,  64, 2048,  8,  8, 4096, &timing[2] },
{ "512MiB 16-bit", 0xcc2c,  64, 2048, 16, 16, 4096, &timing[2] },
{ "256MiB 16-bit", 0xba20,  64, 2048, 16, 16, 2048, &timing[3] },
264 265
};

266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
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
};

289 290 291 292 293 294 295 296 297 298
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} }
};

299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
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 = { }
};

324 325 326
/* Define a default flash type setting serve as flash detecting only */
#define DEFAULT_FLASH_TYPE (&builtin_flash_types[0])

E
eric miao 已提交
327 328 329 330 331 332 333 334 335 336 337 338
#define NDTR0_tCH(c)	(min((c), 7) << 19)
#define NDTR0_tCS(c)	(min((c), 7) << 16)
#define NDTR0_tWH(c)	(min((c), 7) << 11)
#define NDTR0_tWP(c)	(min((c), 7) << 8)
#define NDTR0_tRH(c)	(min((c), 7) << 3)
#define NDTR0_tRP(c)	(min((c), 7) << 0)

#define NDTR1_tR(c)	(min((c), 65535) << 16)
#define NDTR1_tWHR(c)	(min((c), 15) << 4)
#define NDTR1_tAR(c)	(min((c), 15) << 0)

/* convert nano-seconds to nand flash controller clock cycles */
A
Axel Lin 已提交
339
#define ns2cycle(ns, clk)	(int)((ns) * (clk / 1000000) / 1000)
E
eric miao 已提交
340

341
static const struct of_device_id pxa3xx_nand_dt_ids[] = {
342 343 344 345
	{
		.compatible = "marvell,pxa3xx-nand",
		.data       = (void *)PXA3XX_NAND_VARIANT_PXA,
	},
346 347 348 349
	{
		.compatible = "marvell,armada370-nand",
		.data       = (void *)PXA3XX_NAND_VARIANT_ARMADA370,
	},
350 351 352 353 354 355 356 357 358 359 360 361 362 363
	{}
};
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;
}

364
static void pxa3xx_nand_set_timing(struct pxa3xx_nand_host *host,
365
				   const struct pxa3xx_nand_timing *t)
E
eric miao 已提交
366
{
367
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
368 369 370 371 372 373 374 375 376 377 378 379 380 381
	unsigned long nand_clk = clk_get_rate(info->clk);
	uint32_t ndtr0, ndtr1;

	ndtr0 = NDTR0_tCH(ns2cycle(t->tCH, nand_clk)) |
		NDTR0_tCS(ns2cycle(t->tCS, nand_clk)) |
		NDTR0_tWH(ns2cycle(t->tWH, nand_clk)) |
		NDTR0_tWP(ns2cycle(t->tWP, nand_clk)) |
		NDTR0_tRH(ns2cycle(t->tRH, nand_clk)) |
		NDTR0_tRP(ns2cycle(t->tRP, nand_clk));

	ndtr1 = NDTR1_tR(ns2cycle(t->tR, nand_clk)) |
		NDTR1_tWHR(ns2cycle(t->tWHR, nand_clk)) |
		NDTR1_tAR(ns2cycle(t->tAR, nand_clk));

382 383
	info->ndtr0cs0 = ndtr0;
	info->ndtr1cs0 = ndtr1;
E
eric miao 已提交
384 385 386 387
	nand_writel(info, NDTR0CS0, ndtr0);
	nand_writel(info, NDTR1CS0, ndtr1);
}

388 389 390 391 392
/*
 * Set the data and OOB size, depending on the selected
 * spare and ECC configuration.
 * Only applicable to READ0, READOOB and PAGEPROG commands.
 */
393 394
static void pxa3xx_set_datasize(struct pxa3xx_nand_info *info,
				struct mtd_info *mtd)
E
eric miao 已提交
395
{
396
	int oob_enable = info->reg_ndcr & NDCR_SPARE_EN;
397

398
	info->data_size = mtd->writesize;
399
	if (!oob_enable)
400 401
		return;

402 403 404
	info->oob_size = info->spare_size;
	if (!info->use_ecc)
		info->oob_size += info->ecc_size;
405 406
}

L
Lei Wen 已提交
407 408 409 410 411 412 413 414 415 416
/**
 * NOTE: it is a must to set ND_RUN firstly, then write
 * command buffer, otherwise, it does not work.
 * We enable all the interrupt at the same time, and
 * let pxa3xx_nand_irq to handle all logic.
 */
static void pxa3xx_nand_start(struct pxa3xx_nand_info *info)
{
	uint32_t ndcr;

417
	ndcr = info->reg_ndcr;
418

419
	if (info->use_ecc) {
420
		ndcr |= NDCR_ECC_EN;
421 422 423
		if (info->ecc_bch)
			nand_writel(info, NDECCCTRL, 0x1);
	} else {
424
		ndcr &= ~NDCR_ECC_EN;
425 426 427
		if (info->ecc_bch)
			nand_writel(info, NDECCCTRL, 0x0);
	}
428 429 430 431 432 433

	if (info->use_dma)
		ndcr |= NDCR_DMA_EN;
	else
		ndcr &= ~NDCR_DMA_EN;

434 435 436 437 438
	if (info->use_spare)
		ndcr |= NDCR_SPARE_EN;
	else
		ndcr &= ~NDCR_SPARE_EN;

L
Lei Wen 已提交
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
	ndcr |= NDCR_ND_RUN;

	/* clear status bits and run */
	nand_writel(info, NDCR, 0);
	nand_writel(info, NDSR, NDSR_MASK);
	nand_writel(info, NDCR, ndcr);
}

static void pxa3xx_nand_stop(struct pxa3xx_nand_info *info)
{
	uint32_t ndcr;
	int timeout = NAND_STOP_DELAY;

	/* wait RUN bit in NDCR become 0 */
	ndcr = nand_readl(info, NDCR);
	while ((ndcr & NDCR_ND_RUN) && (timeout-- > 0)) {
		ndcr = nand_readl(info, NDCR);
		udelay(1);
	}

	if (timeout <= 0) {
		ndcr &= ~NDCR_ND_RUN;
		nand_writel(info, NDCR, ndcr);
	}
	/* clear status bits */
	nand_writel(info, NDSR, NDSR_MASK);
}

467 468
static void __maybe_unused
enable_int(struct pxa3xx_nand_info *info, uint32_t int_mask)
E
eric miao 已提交
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
{
	uint32_t ndcr;

	ndcr = nand_readl(info, NDCR);
	nand_writel(info, NDCR, ndcr & ~int_mask);
}

static void disable_int(struct pxa3xx_nand_info *info, uint32_t int_mask)
{
	uint32_t ndcr;

	ndcr = nand_readl(info, NDCR);
	nand_writel(info, NDCR, ndcr | int_mask);
}

484 485 486
static void drain_fifo(struct pxa3xx_nand_info *info, void *data, int len)
{
	if (info->ecc_bch) {
487 488
		u32 val;
		int ret;
489 490 491 492 493 494 495 496 497 498

		/*
		 * According to the datasheet, when reading from NDDB
		 * with BCH enabled, after each 32 bytes reads, we
		 * have to make sure that the NDSR.RDDREQ bit is set.
		 *
		 * Drain the FIFO 8 32 bits reads at a time, and skip
		 * the polling on the last read.
		 */
		while (len > 8) {
499
			readsl(info->mmio_base + NDDB, data, 8);
500

501 502 503 504 505 506
			ret = readl_relaxed_poll_timeout(info->mmio_base + NDSR, val,
							 val & NDSR_RDDREQ, 1000, 5000);
			if (ret) {
				dev_err(&info->pdev->dev,
					"Timeout on RDDREQ while draining the FIFO\n");
				return;
507 508 509 510 511 512 513
			}

			data += 32;
			len -= 8;
		}
	}

514
	readsl(info->mmio_base + NDDB, data, len);
515 516
}

L
Lei Wen 已提交
517
static void handle_data_pio(struct pxa3xx_nand_info *info)
E
eric miao 已提交
518
{
519
	unsigned int do_bytes = min(info->data_size, info->chunk_size);
520

E
eric miao 已提交
521 522
	switch (info->state) {
	case STATE_PIO_WRITING:
523 524 525
		writesl(info->mmio_base + NDDB,
			info->data_buff + info->data_buff_pos,
			DIV_ROUND_UP(do_bytes, 4));
526

527
		if (info->oob_size > 0)
528 529 530
			writesl(info->mmio_base + NDDB,
				info->oob_buff + info->oob_buff_pos,
				DIV_ROUND_UP(info->oob_size, 4));
E
eric miao 已提交
531 532
		break;
	case STATE_PIO_READING:
533 534 535
		drain_fifo(info,
			   info->data_buff + info->data_buff_pos,
			   DIV_ROUND_UP(do_bytes, 4));
536

537
		if (info->oob_size > 0)
538 539 540
			drain_fifo(info,
				   info->oob_buff + info->oob_buff_pos,
				   DIV_ROUND_UP(info->oob_size, 4));
E
eric miao 已提交
541 542
		break;
	default:
543
		dev_err(&info->pdev->dev, "%s: invalid state %d\n", __func__,
E
eric miao 已提交
544
				info->state);
L
Lei Wen 已提交
545
		BUG();
E
eric miao 已提交
546
	}
547 548 549 550 551

	/* 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;
E
eric miao 已提交
552 553
}

554
#ifdef ARCH_HAS_DMA
L
Lei Wen 已提交
555
static void start_data_dma(struct pxa3xx_nand_info *info)
E
eric miao 已提交
556 557
{
	struct pxa_dma_desc *desc = info->data_desc;
558
	int dma_len = ALIGN(info->data_size + info->oob_size, 32);
E
eric miao 已提交
559 560 561 562

	desc->ddadr = DDADR_STOP;
	desc->dcmd = DCMD_ENDIRQEN | DCMD_WIDTH4 | DCMD_BURST32 | dma_len;

L
Lei Wen 已提交
563 564
	switch (info->state) {
	case STATE_DMA_WRITING:
E
eric miao 已提交
565
		desc->dsadr = info->data_buff_phys;
566
		desc->dtadr = info->mmio_phys + NDDB;
E
eric miao 已提交
567
		desc->dcmd |= DCMD_INCSRCADDR | DCMD_FLOWTRG;
L
Lei Wen 已提交
568 569
		break;
	case STATE_DMA_READING:
E
eric miao 已提交
570
		desc->dtadr = info->data_buff_phys;
571
		desc->dsadr = info->mmio_phys + NDDB;
E
eric miao 已提交
572
		desc->dcmd |= DCMD_INCTRGADDR | DCMD_FLOWSRC;
L
Lei Wen 已提交
573 574
		break;
	default:
575
		dev_err(&info->pdev->dev, "%s: invalid state %d\n", __func__,
L
Lei Wen 已提交
576 577
				info->state);
		BUG();
E
eric miao 已提交
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
	}

	DRCMR(info->drcmr_dat) = DRCMR_MAPVLD | info->data_dma_ch;
	DDADR(info->data_dma_ch) = info->data_desc_addr;
	DCSR(info->data_dma_ch) |= DCSR_RUN;
}

static void pxa3xx_nand_data_dma_irq(int channel, void *data)
{
	struct pxa3xx_nand_info *info = data;
	uint32_t dcsr;

	dcsr = DCSR(channel);
	DCSR(channel) = dcsr;

	if (dcsr & DCSR_BUSERR) {
		info->retcode = ERR_DMABUSERR;
	}

L
Lei Wen 已提交
597 598 599
	info->state = STATE_DMA_DONE;
	enable_int(info, NDCR_INT_MASK);
	nand_writel(info, NDSR, NDSR_WRDREQ | NDSR_RDDREQ);
E
eric miao 已提交
600
}
601 602 603 604
#else
static void start_data_dma(struct pxa3xx_nand_info *info)
{}
#endif
E
eric miao 已提交
605

606 607 608 609 610 611 612 613 614 615 616 617
static irqreturn_t pxa3xx_nand_irq_thread(int irq, void *data)
{
	struct pxa3xx_nand_info *info = data;

	handle_data_pio(info);

	info->state = STATE_CMD_DONE;
	nand_writel(info, NDSR, NDSR_WRDREQ | NDSR_RDDREQ);

	return IRQ_HANDLED;
}

E
eric miao 已提交
618 619 620
static irqreturn_t pxa3xx_nand_irq(int irq, void *devid)
{
	struct pxa3xx_nand_info *info = devid;
621
	unsigned int status, is_completed = 0, is_ready = 0;
622
	unsigned int ready, cmd_done;
623
	irqreturn_t ret = IRQ_HANDLED;
624 625 626 627 628 629 630 631

	if (info->cs == 0) {
		ready           = NDSR_FLASH_RDY;
		cmd_done        = NDSR_CS0_CMDD;
	} else {
		ready           = NDSR_RDY;
		cmd_done        = NDSR_CS1_CMDD;
	}
E
eric miao 已提交
632 633 634

	status = nand_readl(info, NDSR);

635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
	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);
	}
L
Lei Wen 已提交
654 655
	if (status & (NDSR_RDDREQ | NDSR_WRDREQ)) {
		/* whether use dma to transfer data */
E
eric miao 已提交
656
		if (info->use_dma) {
L
Lei Wen 已提交
657 658 659 660 661
			disable_int(info, NDCR_INT_MASK);
			info->state = (status & NDSR_RDDREQ) ?
				      STATE_DMA_READING : STATE_DMA_WRITING;
			start_data_dma(info);
			goto NORMAL_IRQ_EXIT;
E
eric miao 已提交
662
		} else {
L
Lei Wen 已提交
663 664
			info->state = (status & NDSR_RDDREQ) ?
				      STATE_PIO_READING : STATE_PIO_WRITING;
665 666
			ret = IRQ_WAKE_THREAD;
			goto NORMAL_IRQ_EXIT;
E
eric miao 已提交
667 668
		}
	}
669
	if (status & cmd_done) {
L
Lei Wen 已提交
670 671
		info->state = STATE_CMD_DONE;
		is_completed = 1;
E
eric miao 已提交
672
	}
673
	if (status & ready) {
L
Lei Wen 已提交
674
		info->state = STATE_READY;
675
		is_ready = 1;
676
	}
E
eric miao 已提交
677

L
Lei Wen 已提交
678 679 680 681
	if (status & NDSR_WRCMDREQ) {
		nand_writel(info, NDSR, NDSR_WRCMDREQ);
		status &= ~NDSR_WRCMDREQ;
		info->state = STATE_CMD_HANDLE;
682 683 684 685 686 687 688 689 690

		/*
		 * Command buffer registers NDCB{0-2} (and optionally NDCB3)
		 * must be loaded by writing directly either 12 or 16
		 * bytes directly to NDCB0, four bytes at a time.
		 *
		 * Direct write access to NDCB1, NDCB2 and NDCB3 is ignored
		 * but each NDCBx register can be read.
		 */
L
Lei Wen 已提交
691 692 693
		nand_writel(info, NDCB0, info->ndcb0);
		nand_writel(info, NDCB0, info->ndcb1);
		nand_writel(info, NDCB0, info->ndcb2);
694 695 696 697

		/* NDCB3 register is available in NFCv2 (Armada 370/XP SoC) */
		if (info->variant == PXA3XX_NAND_VARIANT_ARMADA370)
			nand_writel(info, NDCB0, info->ndcb3);
E
eric miao 已提交
698 699
	}

L
Lei Wen 已提交
700 701 702 703
	/* clear NDSR to let the controller exit the IRQ */
	nand_writel(info, NDSR, status);
	if (is_completed)
		complete(&info->cmd_complete);
704 705
	if (is_ready)
		complete(&info->dev_ready);
L
Lei Wen 已提交
706
NORMAL_IRQ_EXIT:
707
	return ret;
E
eric miao 已提交
708 709 710 711 712 713 714 715 716 717
}

static inline int is_buf_blank(uint8_t *buf, size_t len)
{
	for (; len > 0; len--)
		if (*buf++ != 0xff)
			return 0;
	return 1;
}

718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
static void set_command_address(struct pxa3xx_nand_info *info,
		unsigned int page_size, uint16_t column, int page_addr)
{
	/* small page addr setting */
	if (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);

		if (page_addr & 0xFF0000)
			info->ndcb2 = (page_addr & 0xFF0000) >> 16;
		else
			info->ndcb2 = 0;
	}
}

738
static void prepare_start_command(struct pxa3xx_nand_info *info, int command)
E
eric miao 已提交
739
{
740 741 742
	struct pxa3xx_nand_host *host = info->host[info->cs];
	struct mtd_info *mtd = host->mtd;

743
	/* reset data and oob column point to handle data */
744 745
	info->buf_start		= 0;
	info->buf_count		= 0;
746
	info->oob_size		= 0;
747 748
	info->data_buff_pos	= 0;
	info->oob_buff_pos	= 0;
749
	info->use_ecc		= 0;
750
	info->use_spare		= 1;
751
	info->retcode		= ERR_NONE;
752
	info->ecc_err_cnt	= 0;
753
	info->ndcb3		= 0;
754
	info->need_wait		= 0;
E
eric miao 已提交
755 756

	switch (command) {
757 758 759
	case NAND_CMD_READ0:
	case NAND_CMD_PAGEPROG:
		info->use_ecc = 1;
E
eric miao 已提交
760
	case NAND_CMD_READOOB:
761
		pxa3xx_set_datasize(info, mtd);
E
eric miao 已提交
762
		break;
763 764 765
	case NAND_CMD_PARAM:
		info->use_spare = 0;
		break;
766 767 768 769 770
	default:
		info->ndcb1 = 0;
		info->ndcb2 = 0;
		break;
	}
771 772 773 774 775 776 777 778 779 780 781 782 783

	/*
	 * 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);
	}

784 785 786
}

static int prepare_set_command(struct pxa3xx_nand_info *info, int command,
787
		int ext_cmd_type, uint16_t column, int page_addr)
788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804
{
	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;
805

806 807
	addr_cycle = NDCB0_ADDR_CYC(host->row_addr_cycles
				    + host->col_addr_cycles);
E
eric miao 已提交
808

809 810
	switch (command) {
	case NAND_CMD_READOOB:
E
eric miao 已提交
811
	case NAND_CMD_READ0:
812 813 814 815 816
		info->buf_start = column;
		info->ndcb0 |= NDCB0_CMD_TYPE(0)
				| addr_cycle
				| NAND_CMD_READ0;

817
		if (command == NAND_CMD_READOOB)
818
			info->buf_start += mtd->writesize;
819

820 821 822 823 824 825
		/*
		 * 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) {
826
			info->ndcb0 |= NDCB0_DBC | (NAND_CMD_READSTART << 8);
827 828 829 830 831 832 833
		} 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;
		}
E
eric miao 已提交
834

835 836 837
		set_command_address(info, mtd->writesize, column, page_addr);
		break;

E
eric miao 已提交
838
	case NAND_CMD_SEQIN:
839

840 841
		info->buf_start = column;
		set_command_address(info, mtd->writesize, 0, page_addr);
842 843 844 845 846 847 848 849 850 851 852 853 854 855

		/*
		 * 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;
		}
E
eric miao 已提交
856
		break;
857

E
eric miao 已提交
858
	case NAND_CMD_PAGEPROG:
859 860 861 862 863
		if (is_buf_blank(info->data_buff,
					(mtd->writesize + mtd->oobsize))) {
			exec_cmd = 0;
			break;
		}
E
eric miao 已提交
864

865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898
		/* 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;
		}
E
eric miao 已提交
899
		break;
900

901 902 903 904
	case NAND_CMD_PARAM:
		info->buf_count = 256;
		info->ndcb0 |= NDCB0_CMD_TYPE(0)
				| NDCB0_ADDR_CYC(1)
905
				| NDCB0_LEN_OVRD
906
				| command;
907
		info->ndcb1 = (column & 0xFF);
908
		info->ndcb3 = 256;
909 910 911
		info->data_size = 256;
		break;

E
eric miao 已提交
912
	case NAND_CMD_READID:
913
		info->buf_count = host->read_id_bytes;
914 915
		info->ndcb0 |= NDCB0_CMD_TYPE(3)
				| NDCB0_ADDR_CYC(1)
916
				| command;
917
		info->ndcb1 = (column & 0xFF);
918 919 920

		info->data_size = 8;
		break;
E
eric miao 已提交
921
	case NAND_CMD_STATUS:
922 923 924
		info->buf_count = 1;
		info->ndcb0 |= NDCB0_CMD_TYPE(4)
				| NDCB0_ADDR_CYC(1)
925
				| command;
926 927 928 929 930 931 932 933 934

		info->data_size = 8;
		break;

	case NAND_CMD_ERASE1:
		info->ndcb0 |= NDCB0_CMD_TYPE(2)
				| NDCB0_AUTO_RS
				| NDCB0_ADDR_CYC(3)
				| NDCB0_DBC
935 936
				| (NAND_CMD_ERASE2 << 8)
				| NAND_CMD_ERASE1;
937 938 939
		info->ndcb1 = page_addr;
		info->ndcb2 = 0;

E
eric miao 已提交
940 941
		break;
	case NAND_CMD_RESET:
942
		info->ndcb0 |= NDCB0_CMD_TYPE(5)
943
				| command;
944 945 946 947 948

		break;

	case NAND_CMD_ERASE2:
		exec_cmd = 0;
E
eric miao 已提交
949
		break;
950

E
eric miao 已提交
951
	default:
952
		exec_cmd = 0;
953 954
		dev_err(&info->pdev->dev, "non-supported command %x\n",
				command);
E
eric miao 已提交
955 956 957
		break;
	}

958 959 960
	return exec_cmd;
}

961 962
static void nand_cmdfunc(struct mtd_info *mtd, unsigned command,
			 int column, int page_addr)
963
{
964 965
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
966
	int exec_cmd;
967 968 969 970 971 972

	/*
	 * if this is a x16 device ,then convert the input
	 * "byte" address into a "word" address appropriate
	 * for indexing a word-oriented device
	 */
973
	if (info->reg_ndcr & NDCR_DWIDTH_M)
974 975
		column /= 2;

976 977 978 979 980 981 982
	/*
	 * 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;
983 984
		nand_writel(info, NDTR0CS0, info->ndtr0cs0);
		nand_writel(info, NDTR1CS0, info->ndtr1cs0);
985 986
	}

987 988
	prepare_start_command(info, command);

989
	info->state = STATE_PREPARED;
990 991
	exec_cmd = prepare_set_command(info, command, 0, column, page_addr);

L
Lei Wen 已提交
992 993
	if (exec_cmd) {
		init_completion(&info->cmd_complete);
994 995
		init_completion(&info->dev_ready);
		info->need_wait = 1;
L
Lei Wen 已提交
996 997
		pxa3xx_nand_start(info);

998 999
		if (!wait_for_completion_timeout(&info->cmd_complete,
		    CHIP_DELAY_TIMEOUT)) {
1000
			dev_err(&info->pdev->dev, "Wait time out!!!\n");
L
Lei Wen 已提交
1001 1002 1003 1004
			/* Stop State Machine for next command cycle */
			pxa3xx_nand_stop(info);
		}
	}
1005
	info->state = STATE_IDLE;
L
Lei Wen 已提交
1006 1007
}

1008 1009 1010
static void nand_cmdfunc_extended(struct mtd_info *mtd,
				  const unsigned command,
				  int column, int page_addr)
1011 1012 1013
{
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
1014
	int exec_cmd, ext_cmd_type;
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040

	/*
	 * 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;
1041 1042 1043 1044 1045 1046
	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;
1047 1048
	default:
		ext_cmd_type = 0;
1049
		break;
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
	}

	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);

1077 1078
		if (!wait_for_completion_timeout(&info->cmd_complete,
		    CHIP_DELAY_TIMEOUT)) {
1079 1080 1081 1082 1083 1084 1085
			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 */
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
		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)
1096 1097 1098 1099 1100 1101 1102 1103
			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;
1104 1105 1106 1107 1108 1109 1110 1111

		/*
		 * 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;
1112 1113 1114 1115 1116 1117
		}
	} while (1);

	info->state = STATE_IDLE;
}

1118
static int pxa3xx_nand_write_page_hwecc(struct mtd_info *mtd,
1119
		struct nand_chip *chip, const uint8_t *buf, int oob_required)
L
Lei Wen 已提交
1120 1121 1122
{
	chip->write_buf(mtd, buf, mtd->writesize);
	chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1123 1124

	return 0;
L
Lei Wen 已提交
1125 1126 1127
}

static int pxa3xx_nand_read_page_hwecc(struct mtd_info *mtd,
1128 1129
		struct nand_chip *chip, uint8_t *buf, int oob_required,
		int page)
L
Lei Wen 已提交
1130
{
1131 1132
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
L
Lei Wen 已提交
1133 1134 1135 1136

	chip->read_buf(mtd, buf, mtd->writesize);
	chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);

1137 1138 1139 1140
	if (info->retcode == ERR_CORERR && info->use_ecc) {
		mtd->ecc_stats.corrected += info->ecc_err_cnt;

	} else if (info->retcode == ERR_UNCORERR) {
L
Lei Wen 已提交
1141 1142 1143
		/*
		 * for blank page (all 0xff), HW will calculate its ECC as
		 * 0, which is different from the ECC information within
1144
		 * OOB, ignore such uncorrectable errors
L
Lei Wen 已提交
1145 1146
		 */
		if (is_buf_blank(buf, mtd->writesize))
1147 1148
			info->retcode = ERR_NONE;
		else
L
Lei Wen 已提交
1149
			mtd->ecc_stats.failed++;
E
eric miao 已提交
1150
	}
L
Lei Wen 已提交
1151

1152
	return info->max_bitflips;
E
eric miao 已提交
1153 1154 1155 1156
}

static uint8_t pxa3xx_nand_read_byte(struct mtd_info *mtd)
{
1157 1158
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
	char retval = 0xFF;

	if (info->buf_start < info->buf_count)
		/* Has just send a new command? */
		retval = info->data_buff[info->buf_start++];

	return retval;
}

static u16 pxa3xx_nand_read_word(struct mtd_info *mtd)
{
1170 1171
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182
	u16 retval = 0xFFFF;

	if (!(info->buf_start & 0x01) && info->buf_start < info->buf_count) {
		retval = *((u16 *)(info->data_buff+info->buf_start));
		info->buf_start += 2;
	}
	return retval;
}

static void pxa3xx_nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
{
1183 1184
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
1185 1186 1187 1188 1189 1190 1191 1192 1193
	int real_len = min_t(size_t, len, info->buf_count - info->buf_start);

	memcpy(buf, info->data_buff + info->buf_start, real_len);
	info->buf_start += real_len;
}

static void pxa3xx_nand_write_buf(struct mtd_info *mtd,
		const uint8_t *buf, int len)
{
1194 1195
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
	int real_len = min_t(size_t, len, info->buf_count - info->buf_start);

	memcpy(info->data_buff + info->buf_start, buf, real_len);
	info->buf_start += real_len;
}

static void pxa3xx_nand_select_chip(struct mtd_info *mtd, int chip)
{
	return;
}

static int pxa3xx_nand_waitfunc(struct mtd_info *mtd, struct nand_chip *this)
{
1209 1210
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
1211 1212 1213

	if (info->need_wait) {
		info->need_wait = 0;
1214 1215
		if (!wait_for_completion_timeout(&info->dev_ready,
		    CHIP_DELAY_TIMEOUT)) {
1216 1217 1218 1219
			dev_err(&info->pdev->dev, "Ready time out!!!\n");
			return NAND_STATUS_FAIL;
		}
	}
E
eric miao 已提交
1220 1221 1222 1223 1224

	/* 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;
1225 1226
		else
			return NAND_STATUS_FAIL;
E
eric miao 已提交
1227 1228
	}

1229
	return NAND_STATUS_READY;
E
eric miao 已提交
1230 1231 1232
}

static int pxa3xx_nand_config_flash(struct pxa3xx_nand_info *info,
1233
				    const struct pxa3xx_nand_flash *f)
E
eric miao 已提交
1234 1235
{
	struct platform_device *pdev = info->pdev;
J
Jingoo Han 已提交
1236
	struct pxa3xx_nand_platform_data *pdata = dev_get_platdata(&pdev->dev);
1237
	struct pxa3xx_nand_host *host = info->host[info->cs];
L
Lei Wen 已提交
1238
	uint32_t ndcr = 0x0; /* enable all interrupts */
E
eric miao 已提交
1239

1240 1241
	if (f->page_size != 2048 && f->page_size != 512) {
		dev_err(&pdev->dev, "Current only support 2048 and 512 size\n");
E
eric miao 已提交
1242
		return -EINVAL;
1243
	}
E
eric miao 已提交
1244

1245 1246
	if (f->flash_width != 16 && f->flash_width != 8) {
		dev_err(&pdev->dev, "Only support 8bit and 16 bit!\n");
E
eric miao 已提交
1247
		return -EINVAL;
1248
	}
E
eric miao 已提交
1249 1250

	/* calculate flash information */
1251
	host->read_id_bytes = (f->page_size == 2048) ? 4 : 2;
E
eric miao 已提交
1252 1253

	/* calculate addressing information */
1254
	host->col_addr_cycles = (f->page_size == 2048) ? 2 : 1;
E
eric miao 已提交
1255 1256

	if (f->num_blocks * f->page_per_block > 65536)
1257
		host->row_addr_cycles = 3;
E
eric miao 已提交
1258
	else
1259
		host->row_addr_cycles = 2;
E
eric miao 已提交
1260 1261

	ndcr |= (pdata->enable_arbiter) ? NDCR_ND_ARB_EN : 0;
1262
	ndcr |= (host->col_addr_cycles == 2) ? NDCR_RA_START : 0;
E
eric miao 已提交
1263 1264 1265 1266 1267
	ndcr |= (f->page_per_block == 64) ? NDCR_PG_PER_BLK : 0;
	ndcr |= (f->page_size == 2048) ? NDCR_PAGE_SZ : 0;
	ndcr |= (f->flash_width == 16) ? NDCR_DWIDTH_M : 0;
	ndcr |= (f->dfc_width == 16) ? NDCR_DWIDTH_C : 0;

1268
	ndcr |= NDCR_RD_ID_CNT(host->read_id_bytes);
E
eric miao 已提交
1269 1270
	ndcr |= NDCR_SPARE_EN; /* enable spare by default */

1271
	info->reg_ndcr = ndcr;
E
eric miao 已提交
1272

1273
	pxa3xx_nand_set_timing(host, f->timing);
E
eric miao 已提交
1274 1275 1276
	return 0;
}

1277 1278
static int pxa3xx_nand_detect_config(struct pxa3xx_nand_info *info)
{
1279 1280 1281 1282 1283
	/*
	 * We set 0 by hard coding here, for we don't support keep_config
	 * when there is more than one chip attached to the controller
	 */
	struct pxa3xx_nand_host *host = info->host[0];
1284 1285
	uint32_t ndcr = nand_readl(info, NDCR);

1286
	if (ndcr & NDCR_PAGE_SZ) {
1287
		/* Controller's FIFO size */
1288
		info->chunk_size = 2048;
1289 1290
		host->read_id_bytes = 4;
	} else {
1291
		info->chunk_size = 512;
1292 1293 1294
		host->read_id_bytes = 2;
	}

1295
	/* Set an initial chunk size */
1296 1297 1298
	info->reg_ndcr = ndcr & ~NDCR_INT_MASK;
	info->ndtr0cs0 = nand_readl(info, NDTR0CS0);
	info->ndtr1cs0 = nand_readl(info, NDTR1CS0);
1299 1300 1301
	return 0;
}

1302
#ifdef ARCH_HAS_DMA
E
eric miao 已提交
1303 1304 1305
static int pxa3xx_nand_init_buff(struct pxa3xx_nand_info *info)
{
	struct platform_device *pdev = info->pdev;
1306
	int data_desc_offset = info->buf_size - sizeof(struct pxa_dma_desc);
E
eric miao 已提交
1307 1308

	if (use_dma == 0) {
1309
		info->data_buff = kmalloc(info->buf_size, GFP_KERNEL);
E
eric miao 已提交
1310 1311 1312 1313 1314
		if (info->data_buff == NULL)
			return -ENOMEM;
		return 0;
	}

1315
	info->data_buff = dma_alloc_coherent(&pdev->dev, info->buf_size,
E
eric miao 已提交
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
				&info->data_buff_phys, GFP_KERNEL);
	if (info->data_buff == NULL) {
		dev_err(&pdev->dev, "failed to allocate dma buffer\n");
		return -ENOMEM;
	}

	info->data_desc = (void *)info->data_buff + data_desc_offset;
	info->data_desc_addr = info->data_buff_phys + data_desc_offset;

	info->data_dma_ch = pxa_request_dma("nand-data", DMA_PRIO_LOW,
				pxa3xx_nand_data_dma_irq, info);
	if (info->data_dma_ch < 0) {
		dev_err(&pdev->dev, "failed to request data dma\n");
1329
		dma_free_coherent(&pdev->dev, info->buf_size,
E
eric miao 已提交
1330 1331 1332 1333
				info->data_buff, info->data_buff_phys);
		return info->data_dma_ch;
	}

1334 1335 1336 1337 1338
	/*
	 * Now that DMA buffers are allocated we turn on
	 * DMA proper for I/O operations.
	 */
	info->use_dma = 1;
E
eric miao 已提交
1339 1340 1341
	return 0;
}

1342 1343 1344
static void pxa3xx_nand_free_buff(struct pxa3xx_nand_info *info)
{
	struct platform_device *pdev = info->pdev;
1345
	if (info->use_dma) {
1346
		pxa_free_dma(info->data_dma_ch);
1347
		dma_free_coherent(&pdev->dev, info->buf_size,
1348 1349 1350 1351 1352
				  info->data_buff, info->data_buff_phys);
	} else {
		kfree(info->data_buff);
	}
}
1353 1354 1355
#else
static int pxa3xx_nand_init_buff(struct pxa3xx_nand_info *info)
{
1356
	info->data_buff = kmalloc(info->buf_size, GFP_KERNEL);
1357 1358 1359 1360 1361 1362 1363 1364 1365 1366
	if (info->data_buff == NULL)
		return -ENOMEM;
	return 0;
}

static void pxa3xx_nand_free_buff(struct pxa3xx_nand_info *info)
{
	kfree(info->data_buff);
}
#endif
1367

1368 1369
static int pxa3xx_nand_sensing(struct pxa3xx_nand_info *info)
{
1370
	struct mtd_info *mtd;
1371
	struct nand_chip *chip;
1372
	int ret;
1373

1374
	mtd = info->host[info->cs]->mtd;
1375 1376
	chip = mtd->priv;

1377
	/* use the common timing to make a try */
1378 1379 1380 1381
	ret = pxa3xx_nand_config_flash(info, &builtin_flash_types[0]);
	if (ret)
		return ret;

1382
	chip->cmdfunc(mtd, NAND_CMD_RESET, 0, 0);
1383 1384 1385
	ret = chip->waitfunc(mtd, chip);
	if (ret & NAND_STATUS_FAIL)
		return -ENODEV;
1386

1387
	return 0;
1388
}
E
eric miao 已提交
1389

1390 1391
static int pxa_ecc_init(struct pxa3xx_nand_info *info,
			struct nand_ecc_ctrl *ecc,
1392
			int strength, int ecc_stepsize, int page_size)
1393
{
1394
	if (strength == 1 && ecc_stepsize == 512 && page_size == 2048) {
1395
		info->chunk_size = 2048;
1396 1397 1398 1399 1400 1401
		info->spare_size = 40;
		info->ecc_size = 24;
		ecc->mode = NAND_ECC_HW;
		ecc->size = 512;
		ecc->strength = 1;

1402
	} else if (strength == 1 && ecc_stepsize == 512 && page_size == 512) {
1403
		info->chunk_size = 512;
1404 1405 1406 1407 1408 1409
		info->spare_size = 8;
		info->ecc_size = 8;
		ecc->mode = NAND_ECC_HW;
		ecc->size = 512;
		ecc->strength = 1;

1410 1411 1412 1413
	/*
	 * Required ECC: 4-bit correction per 512 bytes
	 * Select: 16-bit correction per 2048 bytes
	 */
1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
	} 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;

1424
	} else if (strength == 4 && ecc_stepsize == 512 && page_size == 4096) {
1425 1426 1427 1428 1429 1430 1431 1432 1433
		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;

1434 1435 1436 1437 1438
	/*
	 * 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) {
1439 1440 1441 1442 1443 1444 1445 1446
		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;
1447 1448 1449 1450 1451
	} else {
		dev_err(&info->pdev->dev,
			"ECC strength %d at page size %d is not supported\n",
			strength, page_size);
		return -ENODEV;
1452
	}
1453 1454 1455

	dev_info(&info->pdev->dev, "ECC strength %d, ECC step size %d\n",
		 ecc->strength, ecc->size);
1456 1457 1458
	return 0;
}

1459
static int pxa3xx_nand_scan(struct mtd_info *mtd)
E
eric miao 已提交
1460
{
1461 1462
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
1463
	struct platform_device *pdev = info->pdev;
J
Jingoo Han 已提交
1464
	struct pxa3xx_nand_platform_data *pdata = dev_get_platdata(&pdev->dev);
1465
	struct nand_flash_dev pxa3xx_flash_ids[2], *def = NULL;
1466 1467 1468
	const struct pxa3xx_nand_flash *f = NULL;
	struct nand_chip *chip = mtd->priv;
	uint32_t id = -1;
1469
	uint64_t chipsize;
1470
	int i, ret, num;
1471
	uint16_t ecc_strength, ecc_step;
1472 1473

	if (pdata->keep_config && !pxa3xx_nand_detect_config(info))
1474
		goto KEEP_CONFIG;
1475 1476

	ret = pxa3xx_nand_sensing(info);
1477
	if (ret) {
1478 1479
		dev_info(&info->pdev->dev, "There is no chip on cs %d!\n",
			 info->cs);
1480

1481
		return ret;
1482 1483 1484 1485 1486
	}

	chip->cmdfunc(mtd, NAND_CMD_READID, 0, 0);
	id = *((uint16_t *)(info->data_buff));
	if (id != 0)
1487
		dev_info(&info->pdev->dev, "Detect a flash id %x\n", id);
1488
	else {
1489 1490
		dev_warn(&info->pdev->dev,
			 "Read out ID 0, potential timing set wrong!!\n");
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502

		return -EINVAL;
	}

	num = ARRAY_SIZE(builtin_flash_types) + pdata->num_flash - 1;
	for (i = 0; i < num; i++) {
		if (i < pdata->num_flash)
			f = pdata->flash + i;
		else
			f = &builtin_flash_types[i - pdata->num_flash + 1];

		/* find the chip in default list */
1503
		if (f->chip_id == id)
1504 1505 1506
			break;
	}

1507
	if (i >= (ARRAY_SIZE(builtin_flash_types) + pdata->num_flash - 1)) {
1508
		dev_err(&info->pdev->dev, "ERROR!! flash not defined!!!\n");
1509 1510 1511 1512

		return -EINVAL;
	}

1513 1514 1515 1516 1517 1518
	ret = pxa3xx_nand_config_flash(info, f);
	if (ret) {
		dev_err(&info->pdev->dev, "ERROR! Configure failed\n");
		return ret;
	}

1519 1520
	memset(pxa3xx_flash_ids, 0, sizeof(pxa3xx_flash_ids));

1521
	pxa3xx_flash_ids[0].name = f->name;
1522
	pxa3xx_flash_ids[0].dev_id = (f->chip_id >> 8) & 0xffff;
1523 1524 1525 1526 1527 1528
	pxa3xx_flash_ids[0].pagesize = f->page_size;
	chipsize = (uint64_t)f->num_blocks * f->page_per_block * f->page_size;
	pxa3xx_flash_ids[0].chipsize = chipsize >> 20;
	pxa3xx_flash_ids[0].erasesize = f->page_size * f->page_per_block;
	if (f->flash_width == 16)
		pxa3xx_flash_ids[0].options = NAND_BUSWIDTH_16;
1529 1530
	pxa3xx_flash_ids[1].name = NULL;
	def = pxa3xx_flash_ids;
1531
KEEP_CONFIG:
1532
	if (info->reg_ndcr & NDCR_DWIDTH_M)
1533 1534
		chip->options |= NAND_BUSWIDTH_16;

1535 1536 1537 1538
	/* Device detection must be done with ECC disabled */
	if (info->variant == PXA3XX_NAND_VARIANT_ARMADA370)
		nand_writel(info, NDECCCTRL, 0x0);

1539
	if (nand_scan_ident(mtd, 1, def))
1540
		return -ENODEV;
1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552

	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;
	}

1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567
	/*
	 * 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;
		}
	}

1568 1569 1570 1571 1572 1573 1574
	if (pdata->ecc_strength && pdata->ecc_step_size) {
		ecc_strength = pdata->ecc_strength;
		ecc_step = pdata->ecc_step_size;
	} else {
		ecc_strength = chip->ecc_strength_ds;
		ecc_step = chip->ecc_step_ds;
	}
1575 1576 1577 1578 1579 1580 1581 1582 1583

	/* 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);
1584 1585
	if (ret)
		return ret;
1586

1587
	/* calculate addressing information */
1588 1589 1590 1591 1592
	if (mtd->writesize >= 2048)
		host->col_addr_cycles = 2;
	else
		host->col_addr_cycles = 1;

1593 1594 1595 1596 1597 1598 1599 1600
	/* release the initial buffer */
	kfree(info->data_buff);

	/* allocate the real data + oob buffer */
	info->buf_size = mtd->writesize + mtd->oobsize;
	ret = pxa3xx_nand_init_buff(info);
	if (ret)
		return ret;
1601
	info->oob_buff = info->data_buff + mtd->writesize;
1602

1603
	if ((mtd->size >> chip->page_shift) > 65536)
1604
		host->row_addr_cycles = 3;
1605
	else
1606
		host->row_addr_cycles = 2;
1607
	return nand_scan_tail(mtd);
E
eric miao 已提交
1608 1609
}

1610
static int alloc_nand_resource(struct platform_device *pdev)
E
eric miao 已提交
1611
{
1612
	struct pxa3xx_nand_platform_data *pdata;
E
eric miao 已提交
1613
	struct pxa3xx_nand_info *info;
1614
	struct pxa3xx_nand_host *host;
1615
	struct nand_chip *chip = NULL;
E
eric miao 已提交
1616 1617
	struct mtd_info *mtd;
	struct resource *r;
1618
	int ret, irq, cs;
E
eric miao 已提交
1619

J
Jingoo Han 已提交
1620
	pdata = dev_get_platdata(&pdev->dev);
1621 1622
	if (pdata->num_cs <= 0)
		return -ENODEV;
1623 1624 1625
	info = devm_kzalloc(&pdev->dev, sizeof(*info) + (sizeof(*mtd) +
			    sizeof(*host)) * pdata->num_cs, GFP_KERNEL);
	if (!info)
1626
		return -ENOMEM;
E
eric miao 已提交
1627 1628

	info->pdev = pdev;
1629
	info->variant = pxa3xx_nand_get_variant(pdev);
1630
	for (cs = 0; cs < pdata->num_cs; cs++) {
1631
		mtd = (void *)&info[1] + (sizeof(*mtd) + sizeof(*host)) * cs;
1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649
		chip = (struct nand_chip *)(&mtd[1]);
		host = (struct pxa3xx_nand_host *)chip;
		info->host[cs] = host;
		host->mtd = mtd;
		host->cs = cs;
		host->info_data = info;
		mtd->priv = host;
		mtd->owner = THIS_MODULE;

		chip->ecc.read_page	= pxa3xx_nand_read_page_hwecc;
		chip->ecc.write_page	= pxa3xx_nand_write_page_hwecc;
		chip->controller        = &info->controller;
		chip->waitfunc		= pxa3xx_nand_waitfunc;
		chip->select_chip	= pxa3xx_nand_select_chip;
		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;
1650
		chip->options		|= NAND_NO_SUBPAGE_WRITE;
1651
		chip->cmdfunc		= nand_cmdfunc;
1652
	}
1653 1654 1655

	spin_lock_init(&chip->controller->lock);
	init_waitqueue_head(&chip->controller->wq);
1656
	info->clk = devm_clk_get(&pdev->dev, NULL);
E
eric miao 已提交
1657 1658
	if (IS_ERR(info->clk)) {
		dev_err(&pdev->dev, "failed to get nand clock\n");
1659
		return PTR_ERR(info->clk);
E
eric miao 已提交
1660
	}
1661 1662 1663
	ret = clk_prepare_enable(info->clk);
	if (ret < 0)
		return ret;
E
eric miao 已提交
1664

1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692
	if (use_dma) {
		/*
		 * This is a dirty hack to make this driver work from
		 * devicetree bindings. It can be removed once we have
		 * a prober DMA controller framework for DT.
		 */
		if (pdev->dev.of_node &&
		    of_machine_is_compatible("marvell,pxa3xx")) {
			info->drcmr_dat = 97;
			info->drcmr_cmd = 99;
		} else {
			r = platform_get_resource(pdev, IORESOURCE_DMA, 0);
			if (r == NULL) {
				dev_err(&pdev->dev,
					"no resource defined for data DMA\n");
				ret = -ENXIO;
				goto fail_disable_clk;
			}
			info->drcmr_dat = r->start;

			r = platform_get_resource(pdev, IORESOURCE_DMA, 1);
			if (r == NULL) {
				dev_err(&pdev->dev,
					"no resource defined for cmd DMA\n");
				ret = -ENXIO;
				goto fail_disable_clk;
			}
			info->drcmr_cmd = r->start;
1693
		}
E
eric miao 已提交
1694 1695 1696 1697 1698 1699
	}

	irq = platform_get_irq(pdev, 0);
	if (irq < 0) {
		dev_err(&pdev->dev, "no IRQ resource defined\n");
		ret = -ENXIO;
1700
		goto fail_disable_clk;
E
eric miao 已提交
1701 1702 1703
	}

	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1704 1705 1706
	info->mmio_base = devm_ioremap_resource(&pdev->dev, r);
	if (IS_ERR(info->mmio_base)) {
		ret = PTR_ERR(info->mmio_base);
1707
		goto fail_disable_clk;
E
eric miao 已提交
1708
	}
1709
	info->mmio_phys = r->start;
E
eric miao 已提交
1710

1711 1712 1713 1714 1715
	/* Allocate a buffer to allow flash detection */
	info->buf_size = INIT_BUFFER_SIZE;
	info->data_buff = kmalloc(info->buf_size, GFP_KERNEL);
	if (info->data_buff == NULL) {
		ret = -ENOMEM;
1716
		goto fail_disable_clk;
1717
	}
E
eric miao 已提交
1718

1719 1720 1721
	/* initialize all interrupts to be disabled */
	disable_int(info, NDSR_MASK);

1722 1723 1724
	ret = request_threaded_irq(irq, pxa3xx_nand_irq,
				   pxa3xx_nand_irq_thread, IRQF_ONESHOT,
				   pdev->name, info);
E
eric miao 已提交
1725 1726 1727 1728 1729
	if (ret < 0) {
		dev_err(&pdev->dev, "failed to request IRQ\n");
		goto fail_free_buf;
	}

1730
	platform_set_drvdata(pdev, info);
E
eric miao 已提交
1731

1732
	return 0;
E
eric miao 已提交
1733 1734

fail_free_buf:
1735
	free_irq(irq, info);
1736
	kfree(info->data_buff);
1737
fail_disable_clk:
1738
	clk_disable_unprepare(info->clk);
1739
	return ret;
E
eric miao 已提交
1740 1741 1742 1743
}

static int pxa3xx_nand_remove(struct platform_device *pdev)
{
1744
	struct pxa3xx_nand_info *info = platform_get_drvdata(pdev);
1745 1746
	struct pxa3xx_nand_platform_data *pdata;
	int irq, cs;
E
eric miao 已提交
1747

1748 1749 1750
	if (!info)
		return 0;

J
Jingoo Han 已提交
1751
	pdata = dev_get_platdata(&pdev->dev);
E
eric miao 已提交
1752

1753 1754 1755
	irq = platform_get_irq(pdev, 0);
	if (irq >= 0)
		free_irq(irq, info);
1756
	pxa3xx_nand_free_buff(info);
1757

1758
	clk_disable_unprepare(info->clk);
1759

1760 1761
	for (cs = 0; cs < pdata->num_cs; cs++)
		nand_release(info->host[cs]->mtd);
E
eric miao 已提交
1762 1763 1764
	return 0;
}

1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783
static int pxa3xx_nand_probe_dt(struct platform_device *pdev)
{
	struct pxa3xx_nand_platform_data *pdata;
	struct device_node *np = pdev->dev.of_node;
	const struct of_device_id *of_id =
			of_match_device(pxa3xx_nand_dt_ids, &pdev->dev);

	if (!of_id)
		return 0;

	pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
	if (!pdata)
		return -ENOMEM;

	if (of_get_property(np, "marvell,nand-enable-arbiter", NULL))
		pdata->enable_arbiter = 1;
	if (of_get_property(np, "marvell,nand-keep-config", NULL))
		pdata->keep_config = 1;
	of_property_read_u32(np, "num-cs", &pdata->num_cs);
1784
	pdata->flash_bbt = of_get_nand_on_flash_bbt(np);
1785

1786 1787 1788 1789 1790 1791 1792 1793
	pdata->ecc_strength = of_get_nand_ecc_strength(np);
	if (pdata->ecc_strength < 0)
		pdata->ecc_strength = 0;

	pdata->ecc_step_size = of_get_nand_ecc_step_size(np);
	if (pdata->ecc_step_size < 0)
		pdata->ecc_step_size = 0;

1794 1795 1796 1797 1798
	pdev->dev.platform_data = pdata;

	return 0;
}

1799 1800 1801
static int pxa3xx_nand_probe(struct platform_device *pdev)
{
	struct pxa3xx_nand_platform_data *pdata;
1802
	struct mtd_part_parser_data ppdata = {};
1803
	struct pxa3xx_nand_info *info;
1804
	int ret, cs, probe_success;
1805

1806 1807 1808 1809 1810 1811 1812
#ifndef ARCH_HAS_DMA
	if (use_dma) {
		use_dma = 0;
		dev_warn(&pdev->dev,
			 "This platform can't do DMA on this device\n");
	}
#endif
1813 1814 1815 1816
	ret = pxa3xx_nand_probe_dt(pdev);
	if (ret)
		return ret;

J
Jingoo Han 已提交
1817
	pdata = dev_get_platdata(&pdev->dev);
1818 1819 1820 1821 1822
	if (!pdata) {
		dev_err(&pdev->dev, "no platform data defined\n");
		return -ENODEV;
	}

1823 1824 1825 1826 1827
	ret = alloc_nand_resource(pdev);
	if (ret) {
		dev_err(&pdev->dev, "alloc nand resource failed\n");
		return ret;
	}
1828

1829
	info = platform_get_drvdata(pdev);
1830 1831
	probe_success = 0;
	for (cs = 0; cs < pdata->num_cs; cs++) {
1832
		struct mtd_info *mtd = info->host[cs]->mtd;
1833

1834 1835 1836 1837 1838 1839
		/*
		 * The mtd name matches the one used in 'mtdparts' kernel
		 * parameter. This name cannot be changed or otherwise
		 * user's mtd partitions configuration would get broken.
		 */
		mtd->name = "pxa3xx_nand-0";
1840
		info->cs = cs;
1841
		ret = pxa3xx_nand_scan(mtd);
1842 1843 1844 1845 1846 1847
		if (ret) {
			dev_warn(&pdev->dev, "failed to scan nand at cs %d\n",
				cs);
			continue;
		}

1848
		ppdata.of_node = pdev->dev.of_node;
1849
		ret = mtd_device_parse_register(mtd, NULL,
1850
						&ppdata, pdata->parts[cs],
1851
						pdata->nr_parts[cs]);
1852 1853 1854 1855 1856
		if (!ret)
			probe_success = 1;
	}

	if (!probe_success) {
1857 1858 1859 1860
		pxa3xx_nand_remove(pdev);
		return -ENODEV;
	}

1861
	return 0;
1862 1863
}

E
eric miao 已提交
1864 1865 1866
#ifdef CONFIG_PM
static int pxa3xx_nand_suspend(struct platform_device *pdev, pm_message_t state)
{
1867
	struct pxa3xx_nand_info *info = platform_get_drvdata(pdev);
1868 1869 1870
	struct pxa3xx_nand_platform_data *pdata;
	struct mtd_info *mtd;
	int cs;
E
eric miao 已提交
1871

J
Jingoo Han 已提交
1872
	pdata = dev_get_platdata(&pdev->dev);
L
Lei Wen 已提交
1873
	if (info->state) {
E
eric miao 已提交
1874 1875 1876 1877
		dev_err(&pdev->dev, "driver busy, state = %d\n", info->state);
		return -EAGAIN;
	}

1878 1879
	for (cs = 0; cs < pdata->num_cs; cs++) {
		mtd = info->host[cs]->mtd;
1880
		mtd_suspend(mtd);
1881 1882
	}

E
eric miao 已提交
1883 1884 1885 1886 1887
	return 0;
}

static int pxa3xx_nand_resume(struct platform_device *pdev)
{
1888
	struct pxa3xx_nand_info *info = platform_get_drvdata(pdev);
1889 1890 1891
	struct pxa3xx_nand_platform_data *pdata;
	struct mtd_info *mtd;
	int cs;
1892

J
Jingoo Han 已提交
1893
	pdata = dev_get_platdata(&pdev->dev);
1894 1895
	/* We don't want to handle interrupt without calling mtd routine */
	disable_int(info, NDCR_INT_MASK);
E
eric miao 已提交
1896

1897 1898 1899 1900 1901 1902
	/*
	 * Directly set the chip select to a invalid value,
	 * then the driver would reset the timing according
	 * to current chip select at the beginning of cmdfunc
	 */
	info->cs = 0xff;
E
eric miao 已提交
1903

1904 1905 1906 1907 1908 1909 1910
	/*
	 * As the spec says, the NDSR would be updated to 0x1800 when
	 * doing the nand_clk disable/enable.
	 * To prevent it damaging state machine of the driver, clear
	 * all status before resume
	 */
	nand_writel(info, NDSR, NDSR_MASK);
1911 1912
	for (cs = 0; cs < pdata->num_cs; cs++) {
		mtd = info->host[cs]->mtd;
1913
		mtd_resume(mtd);
1914 1915
	}

1916
	return 0;
E
eric miao 已提交
1917 1918 1919 1920 1921 1922 1923 1924 1925
}
#else
#define pxa3xx_nand_suspend	NULL
#define pxa3xx_nand_resume	NULL
#endif

static struct platform_driver pxa3xx_nand_driver = {
	.driver = {
		.name	= "pxa3xx-nand",
1926
		.of_match_table = pxa3xx_nand_dt_ids,
E
eric miao 已提交
1927 1928 1929 1930 1931 1932 1933
	},
	.probe		= pxa3xx_nand_probe,
	.remove		= pxa3xx_nand_remove,
	.suspend	= pxa3xx_nand_suspend,
	.resume		= pxa3xx_nand_resume,
};

1934
module_platform_driver(pxa3xx_nand_driver);
E
eric miao 已提交
1935 1936 1937

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("PXA3xx NAND controller driver");