pxa3xx_nand.c 36.0 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 25
#include <linux/io.h>
#include <linux/irq.h>
26
#include <linux/slab.h>
27 28
#include <linux/of.h>
#include <linux/of_device.h>
E
eric miao 已提交
29

30 31 32 33 34
#if defined(CONFIG_ARCH_PXA) || defined(CONFIG_ARCH_MMP)
#define ARCH_HAS_DMA
#endif

#ifdef ARCH_HAS_DMA
35
#include <mach/dma.h>
36 37
#endif

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

#define	CHIP_DELAY_TIMEOUT	(2 * HZ/10)
L
Lei Wen 已提交
41
#define NAND_STOP_DELAY		(2 * HZ/50)
42
#define PAGE_CHUNK_SIZE		(2048)
E
eric miao 已提交
43

44 45 46 47 48 49 50
/*
 * 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 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
/* 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 */
#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 已提交
75
#define NDCR_STOP_ON_UNCOR	(0x1 << 19)
E
eric miao 已提交
76 77 78 79 80 81
#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 已提交
82
#define NDCR_INT_MASK           (0xFFF)
E
eric miao 已提交
83 84

#define NDSR_MASK		(0xfff)
L
Lei Wen 已提交
85 86
#define NDSR_RDY                (0x1 << 12)
#define NDSR_FLASH_RDY          (0x1 << 11)
E
eric miao 已提交
87 88 89 90 91 92 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)
#define NDSR_DBERR		(0x1 << 4)
#define NDSR_SBERR		(0x1 << 3)
#define NDSR_WRDREQ		(0x1 << 2)
#define NDSR_RDDREQ		(0x1 << 1)
#define NDSR_WRCMDREQ		(0x1)

99
#define NDCB0_LEN_OVRD		(0x1 << 28)
100
#define NDCB0_ST_ROW_EN         (0x1 << 26)
E
eric miao 已提交
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
#define NDCB0_AUTO_RS		(0x1 << 25)
#define NDCB0_CSEL		(0x1 << 24)
#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)

/* macros for registers read/write */
#define nand_writel(info, off, val)	\
	__raw_writel((val), (info)->mmio_base + (off))

#define nand_readl(info, off)		\
	__raw_readl((info)->mmio_base + (off))

/* error code and state */
enum {
	ERR_NONE	= 0,
	ERR_DMABUSERR	= -1,
	ERR_SENDCMD	= -2,
	ERR_DBERR	= -3,
	ERR_BBERR	= -4,
127
	ERR_SBERR	= -5,
E
eric miao 已提交
128 129 130
};

enum {
L
Lei Wen 已提交
131
	STATE_IDLE = 0,
132
	STATE_PREPARED,
E
eric miao 已提交
133 134 135 136 137 138
	STATE_CMD_HANDLE,
	STATE_DMA_READING,
	STATE_DMA_WRITING,
	STATE_DMA_DONE,
	STATE_PIO_READING,
	STATE_PIO_WRITING,
L
Lei Wen 已提交
139 140
	STATE_CMD_DONE,
	STATE_READY,
E
eric miao 已提交
141 142
};

143 144 145 146 147
enum pxa3xx_nand_variant {
	PXA3XX_NAND_VARIANT_PXA,
	PXA3XX_NAND_VARIANT_ARMADA370,
};

148 149 150 151 152 153 154 155
struct pxa3xx_nand_host {
	struct nand_chip	chip;
	struct mtd_info         *mtd;
	void			*info_data;

	/* page size of attached chip */
	unsigned int		page_size;
	int			use_ecc;
156
	int			cs;
E
eric miao 已提交
157

158 159 160 161 162 163 164 165
	/* 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 {
166
	struct nand_hw_control	controller;
E
eric miao 已提交
167 168 169 170
	struct platform_device	 *pdev;

	struct clk		*clk;
	void __iomem		*mmio_base;
171
	unsigned long		mmio_phys;
172
	struct completion	cmd_complete;
E
eric miao 已提交
173 174 175

	unsigned int 		buf_start;
	unsigned int		buf_count;
176
	unsigned int		buf_size;
E
eric miao 已提交
177 178 179 180 181 182

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

	unsigned char		*data_buff;
183
	unsigned char		*oob_buff;
E
eric miao 已提交
184 185 186 187 188
	dma_addr_t 		data_buff_phys;
	int 			data_dma_ch;
	struct pxa_dma_desc	*data_desc;
	dma_addr_t 		data_desc_addr;

189
	struct pxa3xx_nand_host *host[NUM_CHIP_SELECT];
E
eric miao 已提交
190 191
	unsigned int		state;

192 193 194 195 196 197
	/*
	 * This driver supports NFCv1 (as found in PXA SoC)
	 * and NFCv2 (as found in Armada 370/XP SoC).
	 */
	enum pxa3xx_nand_variant variant;

198
	int			cs;
E
eric miao 已提交
199 200
	int			use_ecc;	/* use HW ECC ? */
	int			use_dma;	/* use DMA ? */
201
	int			use_spare;	/* use spare ? */
202
	int			is_ready;
E
eric miao 已提交
203

204 205
	unsigned int		page_size;	/* page size of attached chip */
	unsigned int		data_size;	/* data size in FIFO */
206
	unsigned int		oob_size;
E
eric miao 已提交
207 208
	int 			retcode;

209 210 211 212 213
	/* cached register value */
	uint32_t		reg_ndcr;
	uint32_t		ndtr0cs0;
	uint32_t		ndtr1cs0;

E
eric miao 已提交
214 215 216 217
	/* generated NDCBx register values */
	uint32_t		ndcb0;
	uint32_t		ndcb1;
	uint32_t		ndcb2;
218
	uint32_t		ndcb3;
E
eric miao 已提交
219 220
};

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

225
static struct pxa3xx_nand_timing timing[] = {
226 227 228 229
	{ 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, },
230 231
};

232
static struct pxa3xx_nand_flash builtin_flash_types[] = {
233 234 235 236 237 238 239 240 241
{ "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] },
242 243
};

244 245 246
/* Define a default flash type setting serve as flash detecting only */
#define DEFAULT_FLASH_TYPE (&builtin_flash_types[0])

E
eric miao 已提交
247 248 249 250 251 252 253 254 255 256 257 258
#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 已提交
259
#define ns2cycle(ns, clk)	(int)((ns) * (clk / 1000000) / 1000)
E
eric miao 已提交
260

261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
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;
}

280
static void pxa3xx_nand_set_timing(struct pxa3xx_nand_host *host,
281
				   const struct pxa3xx_nand_timing *t)
E
eric miao 已提交
282
{
283
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
284 285 286 287 288 289 290 291 292 293 294 295 296 297
	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));

298 299
	info->ndtr0cs0 = ndtr0;
	info->ndtr1cs0 = ndtr1;
E
eric miao 已提交
300 301 302 303
	nand_writel(info, NDTR0CS0, ndtr0);
	nand_writel(info, NDTR1CS0, ndtr1);
}

304
static void pxa3xx_set_datasize(struct pxa3xx_nand_info *info)
E
eric miao 已提交
305
{
306
	struct pxa3xx_nand_host *host = info->host[info->cs];
307
	int oob_enable = info->reg_ndcr & NDCR_SPARE_EN;
308

309
	info->data_size = host->page_size;
310 311 312 313 314
	if (!oob_enable) {
		info->oob_size = 0;
		return;
	}

315
	switch (host->page_size) {
E
eric miao 已提交
316
	case 2048:
317
		info->oob_size = (info->use_ecc) ? 40 : 64;
E
eric miao 已提交
318 319
		break;
	case 512:
320
		info->oob_size = (info->use_ecc) ? 8 : 16;
E
eric miao 已提交
321 322
		break;
	}
323 324
}

L
Lei Wen 已提交
325 326 327 328 329 330 331 332 333 334
/**
 * 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;

335
	ndcr = info->reg_ndcr;
336 337 338 339 340 341 342 343 344 345 346

	if (info->use_ecc)
		ndcr |= NDCR_ECC_EN;
	else
		ndcr &= ~NDCR_ECC_EN;

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

347 348 349 350 351
	if (info->use_spare)
		ndcr |= NDCR_SPARE_EN;
	else
		ndcr &= ~NDCR_SPARE_EN;

L
Lei Wen 已提交
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
	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);
}

380 381
static void __maybe_unused
enable_int(struct pxa3xx_nand_info *info, uint32_t int_mask)
E
eric miao 已提交
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
{
	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);
}

L
Lei Wen 已提交
397
static void handle_data_pio(struct pxa3xx_nand_info *info)
E
eric miao 已提交
398 399 400 401
{
	switch (info->state) {
	case STATE_PIO_WRITING:
		__raw_writesl(info->mmio_base + NDDB, info->data_buff,
402
				DIV_ROUND_UP(info->data_size, 4));
403 404 405
		if (info->oob_size > 0)
			__raw_writesl(info->mmio_base + NDDB, info->oob_buff,
					DIV_ROUND_UP(info->oob_size, 4));
E
eric miao 已提交
406 407 408
		break;
	case STATE_PIO_READING:
		__raw_readsl(info->mmio_base + NDDB, info->data_buff,
409
				DIV_ROUND_UP(info->data_size, 4));
410 411 412
		if (info->oob_size > 0)
			__raw_readsl(info->mmio_base + NDDB, info->oob_buff,
					DIV_ROUND_UP(info->oob_size, 4));
E
eric miao 已提交
413 414
		break;
	default:
415
		dev_err(&info->pdev->dev, "%s: invalid state %d\n", __func__,
E
eric miao 已提交
416
				info->state);
L
Lei Wen 已提交
417
		BUG();
E
eric miao 已提交
418 419 420
	}
}

421
#ifdef ARCH_HAS_DMA
L
Lei Wen 已提交
422
static void start_data_dma(struct pxa3xx_nand_info *info)
E
eric miao 已提交
423 424
{
	struct pxa_dma_desc *desc = info->data_desc;
425
	int dma_len = ALIGN(info->data_size + info->oob_size, 32);
E
eric miao 已提交
426 427 428 429

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

L
Lei Wen 已提交
430 431
	switch (info->state) {
	case STATE_DMA_WRITING:
E
eric miao 已提交
432
		desc->dsadr = info->data_buff_phys;
433
		desc->dtadr = info->mmio_phys + NDDB;
E
eric miao 已提交
434
		desc->dcmd |= DCMD_INCSRCADDR | DCMD_FLOWTRG;
L
Lei Wen 已提交
435 436
		break;
	case STATE_DMA_READING:
E
eric miao 已提交
437
		desc->dtadr = info->data_buff_phys;
438
		desc->dsadr = info->mmio_phys + NDDB;
E
eric miao 已提交
439
		desc->dcmd |= DCMD_INCTRGADDR | DCMD_FLOWSRC;
L
Lei Wen 已提交
440 441
		break;
	default:
442
		dev_err(&info->pdev->dev, "%s: invalid state %d\n", __func__,
L
Lei Wen 已提交
443 444
				info->state);
		BUG();
E
eric miao 已提交
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
	}

	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 已提交
464 465 466
	info->state = STATE_DMA_DONE;
	enable_int(info, NDCR_INT_MASK);
	nand_writel(info, NDSR, NDSR_WRDREQ | NDSR_RDDREQ);
E
eric miao 已提交
467
}
468 469 470 471
#else
static void start_data_dma(struct pxa3xx_nand_info *info)
{}
#endif
E
eric miao 已提交
472 473 474 475

static irqreturn_t pxa3xx_nand_irq(int irq, void *devid)
{
	struct pxa3xx_nand_info *info = devid;
L
Lei Wen 已提交
476
	unsigned int status, is_completed = 0;
477 478 479 480 481 482 483 484 485
	unsigned int ready, cmd_done;

	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 已提交
486 487 488

	status = nand_readl(info, NDSR);

L
Lei Wen 已提交
489 490 491 492 493 494
	if (status & NDSR_DBERR)
		info->retcode = ERR_DBERR;
	if (status & NDSR_SBERR)
		info->retcode = ERR_SBERR;
	if (status & (NDSR_RDDREQ | NDSR_WRDREQ)) {
		/* whether use dma to transfer data */
E
eric miao 已提交
495
		if (info->use_dma) {
L
Lei Wen 已提交
496 497 498 499 500
			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 已提交
501
		} else {
L
Lei Wen 已提交
502 503 504
			info->state = (status & NDSR_RDDREQ) ?
				      STATE_PIO_READING : STATE_PIO_WRITING;
			handle_data_pio(info);
E
eric miao 已提交
505 506
		}
	}
507
	if (status & cmd_done) {
L
Lei Wen 已提交
508 509
		info->state = STATE_CMD_DONE;
		is_completed = 1;
E
eric miao 已提交
510
	}
511
	if (status & ready) {
512
		info->is_ready = 1;
L
Lei Wen 已提交
513
		info->state = STATE_READY;
514
	}
E
eric miao 已提交
515

L
Lei Wen 已提交
516 517 518 519
	if (status & NDSR_WRCMDREQ) {
		nand_writel(info, NDSR, NDSR_WRCMDREQ);
		status &= ~NDSR_WRCMDREQ;
		info->state = STATE_CMD_HANDLE;
520 521 522 523 524 525 526 527 528

		/*
		 * 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 已提交
529 530 531
		nand_writel(info, NDCB0, info->ndcb0);
		nand_writel(info, NDCB0, info->ndcb1);
		nand_writel(info, NDCB0, info->ndcb2);
532 533 534 535

		/* 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 已提交
536 537
	}

L
Lei Wen 已提交
538 539 540 541 542 543
	/* clear NDSR to let the controller exit the IRQ */
	nand_writel(info, NDSR, status);
	if (is_completed)
		complete(&info->cmd_complete);
NORMAL_IRQ_EXIT:
	return IRQ_HANDLED;
E
eric miao 已提交
544 545 546 547 548 549 550 551 552 553
}

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

554 555
static int prepare_command_pool(struct pxa3xx_nand_info *info, int command,
		uint16_t column, int page_addr)
E
eric miao 已提交
556
{
557
	int addr_cycle, exec_cmd;
558 559
	struct pxa3xx_nand_host *host;
	struct mtd_info *mtd;
E
eric miao 已提交
560

561 562
	host = info->host[info->cs];
	mtd = host->mtd;
563 564 565 566
	addr_cycle = 0;
	exec_cmd = 1;

	/* reset data and oob column point to handle data */
567 568
	info->buf_start		= 0;
	info->buf_count		= 0;
569 570
	info->oob_size		= 0;
	info->use_ecc		= 0;
571
	info->use_spare		= 1;
572
	info->is_ready		= 0;
573
	info->retcode		= ERR_NONE;
574 575 576 577
	if (info->cs != 0)
		info->ndcb0 = NDCB0_CSEL;
	else
		info->ndcb0 = 0;
E
eric miao 已提交
578 579

	switch (command) {
580 581 582
	case NAND_CMD_READ0:
	case NAND_CMD_PAGEPROG:
		info->use_ecc = 1;
E
eric miao 已提交
583
	case NAND_CMD_READOOB:
584
		pxa3xx_set_datasize(info);
E
eric miao 已提交
585
		break;
586 587 588
	case NAND_CMD_PARAM:
		info->use_spare = 0;
		break;
589 590 591 592 593 594
	case NAND_CMD_SEQIN:
		exec_cmd = 0;
		break;
	default:
		info->ndcb1 = 0;
		info->ndcb2 = 0;
595
		info->ndcb3 = 0;
596 597 598
		break;
	}

599 600
	addr_cycle = NDCB0_ADDR_CYC(host->row_addr_cycles
				    + host->col_addr_cycles);
E
eric miao 已提交
601

602 603
	switch (command) {
	case NAND_CMD_READOOB:
E
eric miao 已提交
604
	case NAND_CMD_READ0:
605 606 607 608 609
		info->buf_start = column;
		info->ndcb0 |= NDCB0_CMD_TYPE(0)
				| addr_cycle
				| NAND_CMD_READ0;

610
		if (command == NAND_CMD_READOOB)
611
			info->buf_start += mtd->writesize;
612

613 614 615
		/* Second command setting for large pages */
		if (host->page_size >= PAGE_CHUNK_SIZE)
			info->ndcb0 |= NDCB0_DBC | (NAND_CMD_READSTART << 8);
E
eric miao 已提交
616 617

	case NAND_CMD_SEQIN:
618
		/* small page addr setting */
619
		if (unlikely(host->page_size < PAGE_CHUNK_SIZE)) {
620 621 622 623 624 625 626 627 628 629 630 631 632 633
			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;
		}

E
eric miao 已提交
634
		info->buf_count = mtd->writesize + mtd->oobsize;
635
		memset(info->data_buff, 0xFF, info->buf_count);
E
eric miao 已提交
636 637

		break;
638

E
eric miao 已提交
639
	case NAND_CMD_PAGEPROG:
640 641 642 643 644
		if (is_buf_blank(info->data_buff,
					(mtd->writesize + mtd->oobsize))) {
			exec_cmd = 0;
			break;
		}
E
eric miao 已提交
645

646 647 648 649
		info->ndcb0 |= NDCB0_CMD_TYPE(0x1)
				| NDCB0_AUTO_RS
				| NDCB0_ST_ROW_EN
				| NDCB0_DBC
650 651
				| (NAND_CMD_PAGEPROG << 8)
				| NAND_CMD_SEQIN
652
				| addr_cycle;
E
eric miao 已提交
653
		break;
654

655 656 657 658
	case NAND_CMD_PARAM:
		info->buf_count = 256;
		info->ndcb0 |= NDCB0_CMD_TYPE(0)
				| NDCB0_ADDR_CYC(1)
659
				| NDCB0_LEN_OVRD
660
				| command;
661
		info->ndcb1 = (column & 0xFF);
662
		info->ndcb3 = 256;
663 664 665
		info->data_size = 256;
		break;

E
eric miao 已提交
666
	case NAND_CMD_READID:
667
		info->buf_count = host->read_id_bytes;
668 669
		info->ndcb0 |= NDCB0_CMD_TYPE(3)
				| NDCB0_ADDR_CYC(1)
670
				| command;
671
		info->ndcb1 = (column & 0xFF);
672 673 674

		info->data_size = 8;
		break;
E
eric miao 已提交
675
	case NAND_CMD_STATUS:
676 677 678
		info->buf_count = 1;
		info->ndcb0 |= NDCB0_CMD_TYPE(4)
				| NDCB0_ADDR_CYC(1)
679
				| command;
680 681 682 683 684 685 686 687 688

		info->data_size = 8;
		break;

	case NAND_CMD_ERASE1:
		info->ndcb0 |= NDCB0_CMD_TYPE(2)
				| NDCB0_AUTO_RS
				| NDCB0_ADDR_CYC(3)
				| NDCB0_DBC
689 690
				| (NAND_CMD_ERASE2 << 8)
				| NAND_CMD_ERASE1;
691 692 693
		info->ndcb1 = page_addr;
		info->ndcb2 = 0;

E
eric miao 已提交
694 695
		break;
	case NAND_CMD_RESET:
696
		info->ndcb0 |= NDCB0_CMD_TYPE(5)
697
				| command;
698 699 700 701 702

		break;

	case NAND_CMD_ERASE2:
		exec_cmd = 0;
E
eric miao 已提交
703
		break;
704

E
eric miao 已提交
705
	default:
706
		exec_cmd = 0;
707 708
		dev_err(&info->pdev->dev, "non-supported command %x\n",
				command);
E
eric miao 已提交
709 710 711
		break;
	}

712 713 714 715 716 717
	return exec_cmd;
}

static void pxa3xx_nand_cmdfunc(struct mtd_info *mtd, unsigned command,
				int column, int page_addr)
{
718 719
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
720 721 722 723 724 725 726
	int ret, exec_cmd;

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

730 731 732 733 734 735 736
	/*
	 * 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;
737 738
		nand_writel(info, NDTR0CS0, info->ndtr0cs0);
		nand_writel(info, NDTR1CS0, info->ndtr1cs0);
739 740
	}

741
	info->state = STATE_PREPARED;
742
	exec_cmd = prepare_command_pool(info, command, column, page_addr);
L
Lei Wen 已提交
743 744 745 746 747 748 749
	if (exec_cmd) {
		init_completion(&info->cmd_complete);
		pxa3xx_nand_start(info);

		ret = wait_for_completion_timeout(&info->cmd_complete,
				CHIP_DELAY_TIMEOUT);
		if (!ret) {
750
			dev_err(&info->pdev->dev, "Wait time out!!!\n");
L
Lei Wen 已提交
751 752 753 754
			/* Stop State Machine for next command cycle */
			pxa3xx_nand_stop(info);
		}
	}
755
	info->state = STATE_IDLE;
L
Lei Wen 已提交
756 757
}

758
static int pxa3xx_nand_write_page_hwecc(struct mtd_info *mtd,
759
		struct nand_chip *chip, const uint8_t *buf, int oob_required)
L
Lei Wen 已提交
760 761 762
{
	chip->write_buf(mtd, buf, mtd->writesize);
	chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
763 764

	return 0;
L
Lei Wen 已提交
765 766 767
}

static int pxa3xx_nand_read_page_hwecc(struct mtd_info *mtd,
768 769
		struct nand_chip *chip, uint8_t *buf, int oob_required,
		int page)
L
Lei Wen 已提交
770
{
771 772
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
773
	int max_bitflips = 0;
L
Lei Wen 已提交
774 775 776 777 778 779 780

	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:
781
			max_bitflips = 1;
L
Lei Wen 已提交
782 783 784 785 786 787 788 789 790 791 792 793 794
			mtd->ecc_stats.corrected++;
			break;
		case 0:
		default:
			break;
		}
	} else if (info->retcode == ERR_DBERR) {
		/*
		 * 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
		 */
		if (is_buf_blank(buf, mtd->writesize))
795 796
			info->retcode = ERR_NONE;
		else
L
Lei Wen 已提交
797
			mtd->ecc_stats.failed++;
E
eric miao 已提交
798
	}
L
Lei Wen 已提交
799

800
	return max_bitflips;
E
eric miao 已提交
801 802 803 804
}

static uint8_t pxa3xx_nand_read_byte(struct mtd_info *mtd)
{
805 806
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
807 808 809 810 811 812 813 814 815 816 817
	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)
{
818 819
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
820 821 822 823 824 825 826 827 828 829 830
	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)
{
831 832
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
833 834 835 836 837 838 839 840 841
	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)
{
842 843
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
844 845 846 847 848 849 850 851 852 853 854 855 856
	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)
{
857 858
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876

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

	return 0;
}

static int pxa3xx_nand_config_flash(struct pxa3xx_nand_info *info,
877
				    const struct pxa3xx_nand_flash *f)
E
eric miao 已提交
878 879
{
	struct platform_device *pdev = info->pdev;
J
Jingoo Han 已提交
880
	struct pxa3xx_nand_platform_data *pdata = dev_get_platdata(&pdev->dev);
881
	struct pxa3xx_nand_host *host = info->host[info->cs];
L
Lei Wen 已提交
882
	uint32_t ndcr = 0x0; /* enable all interrupts */
E
eric miao 已提交
883

884 885
	if (f->page_size != 2048 && f->page_size != 512) {
		dev_err(&pdev->dev, "Current only support 2048 and 512 size\n");
E
eric miao 已提交
886
		return -EINVAL;
887
	}
E
eric miao 已提交
888

889 890
	if (f->flash_width != 16 && f->flash_width != 8) {
		dev_err(&pdev->dev, "Only support 8bit and 16 bit!\n");
E
eric miao 已提交
891
		return -EINVAL;
892
	}
E
eric miao 已提交
893 894

	/* calculate flash information */
895 896
	host->page_size = f->page_size;
	host->read_id_bytes = (f->page_size == 2048) ? 4 : 2;
E
eric miao 已提交
897 898

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

	if (f->num_blocks * f->page_per_block > 65536)
902
		host->row_addr_cycles = 3;
E
eric miao 已提交
903
	else
904
		host->row_addr_cycles = 2;
E
eric miao 已提交
905 906

	ndcr |= (pdata->enable_arbiter) ? NDCR_ND_ARB_EN : 0;
907
	ndcr |= (host->col_addr_cycles == 2) ? NDCR_RA_START : 0;
E
eric miao 已提交
908 909 910 911 912
	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;

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

916
	info->reg_ndcr = ndcr;
E
eric miao 已提交
917

918
	pxa3xx_nand_set_timing(host, f->timing);
E
eric miao 已提交
919 920 921
	return 0;
}

922 923
static int pxa3xx_nand_detect_config(struct pxa3xx_nand_info *info)
{
924 925 926 927 928
	/*
	 * 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];
929 930
	uint32_t ndcr = nand_readl(info, NDCR);

931 932 933 934 935 936 937 938
	if (ndcr & NDCR_PAGE_SZ) {
		host->page_size = 2048;
		host->read_id_bytes = 4;
	} else {
		host->page_size = 512;
		host->read_id_bytes = 2;
	}

939 940 941
	info->reg_ndcr = ndcr & ~NDCR_INT_MASK;
	info->ndtr0cs0 = nand_readl(info, NDTR0CS0);
	info->ndtr1cs0 = nand_readl(info, NDTR1CS0);
942 943 944
	return 0;
}

945
#ifdef ARCH_HAS_DMA
E
eric miao 已提交
946 947 948
static int pxa3xx_nand_init_buff(struct pxa3xx_nand_info *info)
{
	struct platform_device *pdev = info->pdev;
949
	int data_desc_offset = info->buf_size - sizeof(struct pxa_dma_desc);
E
eric miao 已提交
950 951

	if (use_dma == 0) {
952
		info->data_buff = kmalloc(info->buf_size, GFP_KERNEL);
E
eric miao 已提交
953 954 955 956 957
		if (info->data_buff == NULL)
			return -ENOMEM;
		return 0;
	}

958
	info->data_buff = dma_alloc_coherent(&pdev->dev, info->buf_size,
E
eric miao 已提交
959 960 961 962 963 964 965 966 967 968 969 970 971
				&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");
972
		dma_free_coherent(&pdev->dev, info->buf_size,
E
eric miao 已提交
973 974 975 976
				info->data_buff, info->data_buff_phys);
		return info->data_dma_ch;
	}

977 978 979 980 981
	/*
	 * Now that DMA buffers are allocated we turn on
	 * DMA proper for I/O operations.
	 */
	info->use_dma = 1;
E
eric miao 已提交
982 983 984
	return 0;
}

985 986 987
static void pxa3xx_nand_free_buff(struct pxa3xx_nand_info *info)
{
	struct platform_device *pdev = info->pdev;
988
	if (info->use_dma) {
989
		pxa_free_dma(info->data_dma_ch);
990
		dma_free_coherent(&pdev->dev, info->buf_size,
991 992 993 994 995
				  info->data_buff, info->data_buff_phys);
	} else {
		kfree(info->data_buff);
	}
}
996 997 998
#else
static int pxa3xx_nand_init_buff(struct pxa3xx_nand_info *info)
{
999
	info->data_buff = kmalloc(info->buf_size, GFP_KERNEL);
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
	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
1010

1011 1012
static int pxa3xx_nand_sensing(struct pxa3xx_nand_info *info)
{
1013
	struct mtd_info *mtd;
1014
	struct nand_chip *chip;
1015
	int ret;
1016

1017
	mtd = info->host[info->cs]->mtd;
1018 1019
	chip = mtd->priv;

1020
	/* use the common timing to make a try */
1021 1022 1023 1024
	ret = pxa3xx_nand_config_flash(info, &builtin_flash_types[0]);
	if (ret)
		return ret;

1025
	chip->cmdfunc(mtd, NAND_CMD_RESET, 0, 0);
1026 1027
	if (info->is_ready)
		return 0;
1028 1029

	return -ENODEV;
1030
}
E
eric miao 已提交
1031

1032
static int pxa3xx_nand_scan(struct mtd_info *mtd)
E
eric miao 已提交
1033
{
1034 1035
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
1036
	struct platform_device *pdev = info->pdev;
J
Jingoo Han 已提交
1037
	struct pxa3xx_nand_platform_data *pdata = dev_get_platdata(&pdev->dev);
1038
	struct nand_flash_dev pxa3xx_flash_ids[2], *def = NULL;
1039 1040 1041
	const struct pxa3xx_nand_flash *f = NULL;
	struct nand_chip *chip = mtd->priv;
	uint32_t id = -1;
1042
	uint64_t chipsize;
1043 1044 1045
	int i, ret, num;

	if (pdata->keep_config && !pxa3xx_nand_detect_config(info))
1046
		goto KEEP_CONFIG;
1047 1048

	ret = pxa3xx_nand_sensing(info);
1049
	if (ret) {
1050 1051
		dev_info(&info->pdev->dev, "There is no chip on cs %d!\n",
			 info->cs);
1052

1053
		return ret;
1054 1055 1056 1057 1058
	}

	chip->cmdfunc(mtd, NAND_CMD_READID, 0, 0);
	id = *((uint16_t *)(info->data_buff));
	if (id != 0)
1059
		dev_info(&info->pdev->dev, "Detect a flash id %x\n", id);
1060
	else {
1061 1062
		dev_warn(&info->pdev->dev,
			 "Read out ID 0, potential timing set wrong!!\n");
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074

		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 */
1075
		if (f->chip_id == id)
1076 1077 1078
			break;
	}

1079
	if (i >= (ARRAY_SIZE(builtin_flash_types) + pdata->num_flash - 1)) {
1080
		dev_err(&info->pdev->dev, "ERROR!! flash not defined!!!\n");
1081 1082 1083 1084

		return -EINVAL;
	}

1085 1086 1087 1088 1089 1090
	ret = pxa3xx_nand_config_flash(info, f);
	if (ret) {
		dev_err(&info->pdev->dev, "ERROR! Configure failed\n");
		return ret;
	}

1091
	pxa3xx_flash_ids[0].name = f->name;
1092
	pxa3xx_flash_ids[0].dev_id = (f->chip_id >> 8) & 0xffff;
1093 1094 1095 1096 1097 1098
	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;
1099 1100
	pxa3xx_flash_ids[1].name = NULL;
	def = pxa3xx_flash_ids;
1101
KEEP_CONFIG:
1102 1103
	chip->ecc.mode = NAND_ECC_HW;
	chip->ecc.size = host->page_size;
M
Mike Dunn 已提交
1104
	chip->ecc.strength = 1;
1105

1106
	if (info->reg_ndcr & NDCR_DWIDTH_M)
1107 1108
		chip->options |= NAND_BUSWIDTH_16;

1109
	if (nand_scan_ident(mtd, 1, def))
1110 1111
		return -ENODEV;
	/* calculate addressing information */
1112 1113 1114 1115 1116
	if (mtd->writesize >= 2048)
		host->col_addr_cycles = 2;
	else
		host->col_addr_cycles = 1;

1117 1118 1119 1120 1121 1122 1123 1124
	/* 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;
1125
	info->oob_buff = info->data_buff + mtd->writesize;
1126

1127
	if ((mtd->size >> chip->page_shift) > 65536)
1128
		host->row_addr_cycles = 3;
1129
	else
1130
		host->row_addr_cycles = 2;
1131
	return nand_scan_tail(mtd);
E
eric miao 已提交
1132 1133
}

1134
static int alloc_nand_resource(struct platform_device *pdev)
E
eric miao 已提交
1135
{
1136
	struct pxa3xx_nand_platform_data *pdata;
E
eric miao 已提交
1137
	struct pxa3xx_nand_info *info;
1138
	struct pxa3xx_nand_host *host;
1139
	struct nand_chip *chip = NULL;
E
eric miao 已提交
1140 1141
	struct mtd_info *mtd;
	struct resource *r;
1142
	int ret, irq, cs;
E
eric miao 已提交
1143

J
Jingoo Han 已提交
1144
	pdata = dev_get_platdata(&pdev->dev);
1145 1146 1147
	info = devm_kzalloc(&pdev->dev, sizeof(*info) + (sizeof(*mtd) +
			    sizeof(*host)) * pdata->num_cs, GFP_KERNEL);
	if (!info)
1148
		return -ENOMEM;
E
eric miao 已提交
1149 1150

	info->pdev = pdev;
1151
	info->variant = pxa3xx_nand_get_variant(pdev);
1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
	for (cs = 0; cs < pdata->num_cs; cs++) {
		mtd = (struct mtd_info *)((unsigned int)&info[1] +
		      (sizeof(*mtd) + sizeof(*host)) * cs);
		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->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;
1174
		chip->options		|= NAND_NO_SUBPAGE_WRITE;
1175
	}
1176 1177 1178

	spin_lock_init(&chip->controller->lock);
	init_waitqueue_head(&chip->controller->wq);
1179
	info->clk = devm_clk_get(&pdev->dev, NULL);
E
eric miao 已提交
1180 1181
	if (IS_ERR(info->clk)) {
		dev_err(&pdev->dev, "failed to get nand clock\n");
1182
		return PTR_ERR(info->clk);
E
eric miao 已提交
1183
	}
1184 1185 1186
	ret = clk_prepare_enable(info->clk);
	if (ret < 0)
		return ret;
E
eric miao 已提交
1187

1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215
	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;
1216
		}
E
eric miao 已提交
1217 1218 1219 1220 1221 1222
	}

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

	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1227 1228 1229
	info->mmio_base = devm_ioremap_resource(&pdev->dev, r);
	if (IS_ERR(info->mmio_base)) {
		ret = PTR_ERR(info->mmio_base);
1230
		goto fail_disable_clk;
E
eric miao 已提交
1231
	}
1232
	info->mmio_phys = r->start;
E
eric miao 已提交
1233

1234 1235 1236 1237 1238
	/* 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;
1239
		goto fail_disable_clk;
1240
	}
E
eric miao 已提交
1241

1242 1243 1244
	/* initialize all interrupts to be disabled */
	disable_int(info, NDSR_MASK);

1245
	ret = request_irq(irq, pxa3xx_nand_irq, 0, pdev->name, info);
E
eric miao 已提交
1246 1247 1248 1249 1250
	if (ret < 0) {
		dev_err(&pdev->dev, "failed to request IRQ\n");
		goto fail_free_buf;
	}

1251
	platform_set_drvdata(pdev, info);
E
eric miao 已提交
1252

1253
	return 0;
E
eric miao 已提交
1254 1255

fail_free_buf:
1256
	free_irq(irq, info);
1257
	kfree(info->data_buff);
1258
fail_disable_clk:
1259
	clk_disable_unprepare(info->clk);
1260
	return ret;
E
eric miao 已提交
1261 1262 1263 1264
}

static int pxa3xx_nand_remove(struct platform_device *pdev)
{
1265
	struct pxa3xx_nand_info *info = platform_get_drvdata(pdev);
1266 1267
	struct pxa3xx_nand_platform_data *pdata;
	int irq, cs;
E
eric miao 已提交
1268

1269 1270 1271
	if (!info)
		return 0;

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

1274 1275 1276
	irq = platform_get_irq(pdev, 0);
	if (irq >= 0)
		free_irq(irq, info);
1277
	pxa3xx_nand_free_buff(info);
1278

1279
	clk_disable_unprepare(info->clk);
1280

1281 1282
	for (cs = 0; cs < pdata->num_cs; cs++)
		nand_release(info->host[cs]->mtd);
E
eric miao 已提交
1283 1284 1285
	return 0;
}

1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
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);

	pdev->dev.platform_data = pdata;

	return 0;
}

1311 1312 1313
static int pxa3xx_nand_probe(struct platform_device *pdev)
{
	struct pxa3xx_nand_platform_data *pdata;
1314
	struct mtd_part_parser_data ppdata = {};
1315
	struct pxa3xx_nand_info *info;
1316
	int ret, cs, probe_success;
1317

1318 1319 1320 1321 1322 1323 1324
#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
1325 1326 1327 1328
	ret = pxa3xx_nand_probe_dt(pdev);
	if (ret)
		return ret;

J
Jingoo Han 已提交
1329
	pdata = dev_get_platdata(&pdev->dev);
1330 1331 1332 1333 1334
	if (!pdata) {
		dev_err(&pdev->dev, "no platform data defined\n");
		return -ENODEV;
	}

1335 1336 1337 1338 1339
	ret = alloc_nand_resource(pdev);
	if (ret) {
		dev_err(&pdev->dev, "alloc nand resource failed\n");
		return ret;
	}
1340

1341
	info = platform_get_drvdata(pdev);
1342 1343
	probe_success = 0;
	for (cs = 0; cs < pdata->num_cs; cs++) {
1344
		struct mtd_info *mtd = info->host[cs]->mtd;
1345

1346 1347 1348 1349 1350 1351
		/*
		 * 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";
1352
		info->cs = cs;
1353
		ret = pxa3xx_nand_scan(mtd);
1354 1355 1356 1357 1358 1359
		if (ret) {
			dev_warn(&pdev->dev, "failed to scan nand at cs %d\n",
				cs);
			continue;
		}

1360
		ppdata.of_node = pdev->dev.of_node;
1361
		ret = mtd_device_parse_register(mtd, NULL,
1362
						&ppdata, pdata->parts[cs],
1363
						pdata->nr_parts[cs]);
1364 1365 1366 1367 1368
		if (!ret)
			probe_success = 1;
	}

	if (!probe_success) {
1369 1370 1371 1372
		pxa3xx_nand_remove(pdev);
		return -ENODEV;
	}

1373
	return 0;
1374 1375
}

E
eric miao 已提交
1376 1377 1378
#ifdef CONFIG_PM
static int pxa3xx_nand_suspend(struct platform_device *pdev, pm_message_t state)
{
1379
	struct pxa3xx_nand_info *info = platform_get_drvdata(pdev);
1380 1381 1382
	struct pxa3xx_nand_platform_data *pdata;
	struct mtd_info *mtd;
	int cs;
E
eric miao 已提交
1383

J
Jingoo Han 已提交
1384
	pdata = dev_get_platdata(&pdev->dev);
L
Lei Wen 已提交
1385
	if (info->state) {
E
eric miao 已提交
1386 1387 1388 1389
		dev_err(&pdev->dev, "driver busy, state = %d\n", info->state);
		return -EAGAIN;
	}

1390 1391
	for (cs = 0; cs < pdata->num_cs; cs++) {
		mtd = info->host[cs]->mtd;
1392
		mtd_suspend(mtd);
1393 1394
	}

E
eric miao 已提交
1395 1396 1397 1398 1399
	return 0;
}

static int pxa3xx_nand_resume(struct platform_device *pdev)
{
1400
	struct pxa3xx_nand_info *info = platform_get_drvdata(pdev);
1401 1402 1403
	struct pxa3xx_nand_platform_data *pdata;
	struct mtd_info *mtd;
	int cs;
1404

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

1409 1410 1411 1412 1413 1414
	/*
	 * 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 已提交
1415

1416 1417 1418 1419 1420 1421 1422
	/*
	 * 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);
1423 1424
	for (cs = 0; cs < pdata->num_cs; cs++) {
		mtd = info->host[cs]->mtd;
1425
		mtd_resume(mtd);
1426 1427
	}

1428
	return 0;
E
eric miao 已提交
1429 1430 1431 1432 1433 1434 1435 1436 1437
}
#else
#define pxa3xx_nand_suspend	NULL
#define pxa3xx_nand_resume	NULL
#endif

static struct platform_driver pxa3xx_nand_driver = {
	.driver = {
		.name	= "pxa3xx-nand",
1438
		.of_match_table = pxa3xx_nand_dt_ids,
E
eric miao 已提交
1439 1440 1441 1442 1443 1444 1445
	},
	.probe		= pxa3xx_nand_probe,
	.remove		= pxa3xx_nand_remove,
	.suspend	= pxa3xx_nand_suspend,
	.resume		= pxa3xx_nand_resume,
};

1446
module_platform_driver(pxa3xx_nand_driver);
E
eric miao 已提交
1447 1448 1449

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