pxa3xx_nand.c 32.2 KB
Newer Older
E
eric miao 已提交
1 2 3 4 5 6 7 8 9 10 11
/*
 * 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.
 */

12
#include <linux/kernel.h>
E
eric miao 已提交
13 14 15 16 17 18 19 20 21
#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>
22 23
#include <linux/io.h>
#include <linux/irq.h>
24
#include <linux/slab.h>
E
eric miao 已提交
25

26
#include <mach/dma.h>
27
#include <plat/pxa3xx_nand.h>
E
eric miao 已提交
28 29

#define	CHIP_DELAY_TIMEOUT	(2 * HZ/10)
L
Lei Wen 已提交
30
#define NAND_STOP_DELAY		(2 * HZ/50)
E
eric miao 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55

/* 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 已提交
56
#define NDCR_STOP_ON_UNCOR	(0x1 << 19)
E
eric miao 已提交
57 58 59 60 61 62
#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 已提交
63
#define NDCR_INT_MASK           (0xFFF)
E
eric miao 已提交
64 65

#define NDSR_MASK		(0xfff)
L
Lei Wen 已提交
66 67
#define NDSR_RDY                (0x1 << 12)
#define NDSR_FLASH_RDY          (0x1 << 11)
E
eric miao 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
#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)

#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,
106
	ERR_SBERR	= -5,
E
eric miao 已提交
107 108 109
};

enum {
L
Lei Wen 已提交
110
	STATE_IDLE = 0,
E
eric miao 已提交
111 112 113 114 115 116
	STATE_CMD_HANDLE,
	STATE_DMA_READING,
	STATE_DMA_WRITING,
	STATE_DMA_DONE,
	STATE_PIO_READING,
	STATE_PIO_WRITING,
L
Lei Wen 已提交
117 118
	STATE_CMD_DONE,
	STATE_READY,
E
eric miao 已提交
119 120 121 122 123 124
};

struct pxa3xx_nand_info {
	struct nand_chip	nand_chip;

	struct platform_device	 *pdev;
125
	struct pxa3xx_nand_cmdset *cmdset;
E
eric miao 已提交
126 127 128

	struct clk		*clk;
	void __iomem		*mmio_base;
129
	unsigned long		mmio_phys;
E
eric miao 已提交
130 131 132 133

	unsigned int 		buf_start;
	unsigned int		buf_count;

134
	struct mtd_info         *mtd;
E
eric miao 已提交
135 136 137 138 139
	/* DMA information */
	int			drcmr_dat;
	int			drcmr_cmd;

	unsigned char		*data_buff;
140
	unsigned char		*oob_buff;
E
eric miao 已提交
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
	dma_addr_t 		data_buff_phys;
	size_t			data_buff_size;
	int 			data_dma_ch;
	struct pxa_dma_desc	*data_desc;
	dma_addr_t 		data_desc_addr;

	uint32_t		reg_ndcr;

	/* saved column/page_addr during CMD_SEQIN */
	int			seqin_column;
	int			seqin_page_addr;

	/* relate to the command */
	unsigned int		state;

	int			use_ecc;	/* use HW ECC ? */
	int			use_dma;	/* use DMA ? */

159 160
	unsigned int		page_size;	/* page size of attached chip */
	unsigned int		data_size;	/* data size in FIFO */
E
eric miao 已提交
161 162 163 164 165 166 167
	int 			retcode;
	struct completion 	cmd_complete;

	/* generated NDCBx register values */
	uint32_t		ndcb0;
	uint32_t		ndcb1;
	uint32_t		ndcb2;
168

169 170 171 172
	/* timing calcuted from setting */
	uint32_t		ndtr0cs0;
	uint32_t		ndtr1cs0;

173 174 175 176 177 178
	/* calculated from pxa3xx_nand_flash data */
	size_t		oob_size;
	size_t		read_id_bytes;

	unsigned int	col_addr_cycles;
	unsigned int	row_addr_cycles;
E
eric miao 已提交
179 180 181 182 183 184
};

static int use_dma = 1;
module_param(use_dma, bool, 0444);
MODULE_PARM_DESC(use_dma, "enable DMA for data transfering to/from NAND HW");

185 186 187 188
/*
 * Default NAND flash controller configuration setup by the
 * bootloader. This configuration is used only when pdata->keep_config is set
 */
189
static struct pxa3xx_nand_cmdset default_cmdset = {
E
eric miao 已提交
190 191 192 193 194 195 196 197 198 199 200 201
	.read1		= 0x3000,
	.read2		= 0x0050,
	.program	= 0x1080,
	.read_status	= 0x0070,
	.read_id	= 0x0090,
	.erase		= 0xD060,
	.reset		= 0x00FF,
	.lock		= 0x002A,
	.unlock		= 0x2423,
	.lock_status	= 0x007A,
};

202
static struct pxa3xx_nand_timing timing[] = {
203 204 205 206
	{ 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, },
207 208
};

209
static struct pxa3xx_nand_flash builtin_flash_types[] = {
210 211 212 213 214 215 216 217 218
	{      0,   0, 2048,  8,  8,    0, &default_cmdset, &timing[0] },
	{ 0x46ec,  32,  512, 16, 16, 4096, &default_cmdset, &timing[1] },
	{ 0xdaec,  64, 2048,  8,  8, 2048, &default_cmdset, &timing[1] },
	{ 0xd7ec, 128, 4096,  8,  8, 8192, &default_cmdset, &timing[1] },
	{ 0xa12c,  64, 2048,  8,  8, 1024, &default_cmdset, &timing[2] },
	{ 0xb12c,  64, 2048, 16, 16, 1024, &default_cmdset, &timing[2] },
	{ 0xdc2c,  64, 2048,  8,  8, 4096, &default_cmdset, &timing[2] },
	{ 0xcc2c,  64, 2048, 16, 16, 4096, &default_cmdset, &timing[2] },
	{ 0xba20,  64, 2048, 16, 16, 2048, &default_cmdset, &timing[3] },
219 220
};

221 222 223
/* Define a default flash type setting serve as flash detecting only */
#define DEFAULT_FLASH_TYPE (&builtin_flash_types[0])

E
eric miao 已提交
224 225 226 227 228 229 230 231 232 233 234 235
#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 已提交
236
#define ns2cycle(ns, clk)	(int)((ns) * (clk / 1000000) / 1000)
E
eric miao 已提交
237 238

static void pxa3xx_nand_set_timing(struct pxa3xx_nand_info *info,
239
				   const struct pxa3xx_nand_timing *t)
E
eric miao 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
{
	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));

255 256
	info->ndtr0cs0 = ndtr0;
	info->ndtr1cs0 = ndtr1;
E
eric miao 已提交
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
	nand_writel(info, NDTR0CS0, ndtr0);
	nand_writel(info, NDTR1CS0, ndtr1);
}

#define WAIT_EVENT_TIMEOUT	10

static int wait_for_event(struct pxa3xx_nand_info *info, uint32_t event)
{
	int timeout = WAIT_EVENT_TIMEOUT;
	uint32_t ndsr;

	while (timeout--) {
		ndsr = nand_readl(info, NDSR) & NDSR_MASK;
		if (ndsr & event) {
			nand_writel(info, NDSR, ndsr);
			return 0;
		}
		udelay(10);
	}

	return -ETIMEDOUT;
}

280
static void pxa3xx_set_datasize(struct pxa3xx_nand_info *info)
E
eric miao 已提交
281
{
282 283 284 285 286 287 288 289
	int oob_enable = info->reg_ndcr & NDCR_SPARE_EN;

	info->data_size = info->page_size;
	if (!oob_enable) {
		info->oob_size = 0;
		return;
	}

290
	switch (info->page_size) {
E
eric miao 已提交
291
	case 2048:
292
		info->oob_size = (info->use_ecc) ? 40 : 64;
E
eric miao 已提交
293 294
		break;
	case 512:
295
		info->oob_size = (info->use_ecc) ? 8 : 16;
E
eric miao 已提交
296 297
		break;
	}
298 299
}

L
Lei Wen 已提交
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
/**
 * 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;

	ndcr = info->reg_ndcr;
	ndcr |= info->use_ecc ? NDCR_ECC_EN : 0;
	ndcr |= info->use_dma ? NDCR_DMA_EN : 0;
	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);
}

static void prepare_read_prog_cmd(struct pxa3xx_nand_info *info,
342 343 344 345
		uint16_t cmd, int column, int page_addr)
{
	const struct pxa3xx_nand_cmdset *cmdset = info->cmdset;
	pxa3xx_set_datasize(info);
E
eric miao 已提交
346 347 348 349 350

	/* generate values for NDCBx registers */
	info->ndcb0 = cmd | ((cmd & 0xff00) ? NDCB0_DBC : 0);
	info->ndcb1 = 0;
	info->ndcb2 = 0;
351
	info->ndcb0 |= NDCB0_ADDR_CYC(info->row_addr_cycles + info->col_addr_cycles);
E
eric miao 已提交
352

353
	if (info->col_addr_cycles == 2) {
E
eric miao 已提交
354 355 356
		/* large block, 2 cycles for column address
		 * row address starts from 3rd cycle
		 */
357
		info->ndcb1 |= page_addr << 16;
358
		if (info->row_addr_cycles == 3)
E
eric miao 已提交
359 360 361 362 363
			info->ndcb2 = (page_addr >> 16) & 0xff;
	} else
		/* small block, 1 cycles for column address
		 * row address starts from 2nd cycle
		 */
364
		info->ndcb1 = page_addr << 8;
E
eric miao 已提交
365 366 367 368 369

	if (cmd == cmdset->program)
		info->ndcb0 |= NDCB0_CMD_TYPE(1) | NDCB0_AUTO_RS;
}

L
Lei Wen 已提交
370
static void prepare_erase_cmd(struct pxa3xx_nand_info *info,
E
eric miao 已提交
371 372 373 374 375 376 377 378
			uint16_t cmd, int page_addr)
{
	info->ndcb0 = cmd | ((cmd & 0xff00) ? NDCB0_DBC : 0);
	info->ndcb0 |= NDCB0_CMD_TYPE(2) | NDCB0_AUTO_RS | NDCB0_ADDR_CYC(3);
	info->ndcb1 = page_addr;
	info->ndcb2 = 0;
}

L
Lei Wen 已提交
379
static void prepare_other_cmd(struct pxa3xx_nand_info *info, uint16_t cmd)
E
eric miao 已提交
380
{
381
	const struct pxa3xx_nand_cmdset *cmdset = info->cmdset;
E
eric miao 已提交
382 383 384 385 386

	info->ndcb0 = cmd | ((cmd & 0xff00) ? NDCB0_DBC : 0);
	info->ndcb1 = 0;
	info->ndcb2 = 0;

387
	info->oob_size = 0;
E
eric miao 已提交
388
	if (cmd == cmdset->read_id) {
L
Lei Wen 已提交
389
		info->ndcb0 |= NDCB0_CMD_TYPE(3) | NDCB0_ADDR_CYC(1);
E
eric miao 已提交
390 391 392 393 394 395 396 397
		info->data_size = 8;
	} else if (cmd == cmdset->read_status) {
		info->ndcb0 |= NDCB0_CMD_TYPE(4);
		info->data_size = 8;
	} else if (cmd == cmdset->reset || cmd == cmdset->lock ||
		   cmd == cmdset->unlock) {
		info->ndcb0 |= NDCB0_CMD_TYPE(5);
	} else
L
Lei Wen 已提交
398
		BUG();
E
eric miao 已提交
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
}

static void enable_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);
}

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

/* NOTE: it is a must to set ND_RUN firstly, then write command buffer
 * otherwise, it does not work
 */
static int write_cmd(struct pxa3xx_nand_info *info)
{
	uint32_t ndcr;

	/* clear status bits and run */
	nand_writel(info, NDSR, NDSR_MASK);

	ndcr = info->reg_ndcr;

	ndcr |= info->use_ecc ? NDCR_ECC_EN : 0;
	ndcr |= info->use_dma ? NDCR_DMA_EN : 0;
	ndcr |= NDCR_ND_RUN;

	nand_writel(info, NDCR, ndcr);

	if (wait_for_event(info, NDSR_WRCMDREQ)) {
		printk(KERN_ERR "timed out writing command\n");
		return -ETIMEDOUT;
	}

	nand_writel(info, NDCB0, info->ndcb0);
	nand_writel(info, NDCB0, info->ndcb1);
	nand_writel(info, NDCB0, info->ndcb2);
	return 0;
}

L
Lei Wen 已提交
446
static void handle_data_pio(struct pxa3xx_nand_info *info)
E
eric miao 已提交
447 448 449 450
{
	switch (info->state) {
	case STATE_PIO_WRITING:
		__raw_writesl(info->mmio_base + NDDB, info->data_buff,
451
				DIV_ROUND_UP(info->data_size, 4));
452 453 454
		if (info->oob_size > 0)
			__raw_writesl(info->mmio_base + NDDB, info->oob_buff,
					DIV_ROUND_UP(info->oob_size, 4));
E
eric miao 已提交
455 456 457
		break;
	case STATE_PIO_READING:
		__raw_readsl(info->mmio_base + NDDB, info->data_buff,
458
				DIV_ROUND_UP(info->data_size, 4));
459 460 461
		if (info->oob_size > 0)
			__raw_readsl(info->mmio_base + NDDB, info->oob_buff,
					DIV_ROUND_UP(info->oob_size, 4));
E
eric miao 已提交
462 463
		break;
	default:
464
		printk(KERN_ERR "%s: invalid state %d\n", __func__,
E
eric miao 已提交
465
				info->state);
L
Lei Wen 已提交
466
		BUG();
E
eric miao 已提交
467 468 469
	}
}

L
Lei Wen 已提交
470
static void start_data_dma(struct pxa3xx_nand_info *info)
E
eric miao 已提交
471 472
{
	struct pxa_dma_desc *desc = info->data_desc;
473
	int dma_len = ALIGN(info->data_size + info->oob_size, 32);
E
eric miao 已提交
474 475 476 477

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

L
Lei Wen 已提交
478 479
	switch (info->state) {
	case STATE_DMA_WRITING:
E
eric miao 已提交
480
		desc->dsadr = info->data_buff_phys;
481
		desc->dtadr = info->mmio_phys + NDDB;
E
eric miao 已提交
482
		desc->dcmd |= DCMD_INCSRCADDR | DCMD_FLOWTRG;
L
Lei Wen 已提交
483 484
		break;
	case STATE_DMA_READING:
E
eric miao 已提交
485
		desc->dtadr = info->data_buff_phys;
486
		desc->dsadr = info->mmio_phys + NDDB;
E
eric miao 已提交
487
		desc->dcmd |= DCMD_INCTRGADDR | DCMD_FLOWSRC;
L
Lei Wen 已提交
488 489 490 491 492
		break;
	default:
		printk(KERN_ERR "%s: invalid state %d\n", __func__,
				info->state);
		BUG();
E
eric miao 已提交
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
	}

	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 已提交
512 513 514
	info->state = STATE_DMA_DONE;
	enable_int(info, NDCR_INT_MASK);
	nand_writel(info, NDSR, NDSR_WRDREQ | NDSR_RDDREQ);
E
eric miao 已提交
515 516 517 518 519
}

static irqreturn_t pxa3xx_nand_irq(int irq, void *devid)
{
	struct pxa3xx_nand_info *info = devid;
L
Lei Wen 已提交
520
	unsigned int status, is_completed = 0;
E
eric miao 已提交
521 522 523

	status = nand_readl(info, NDSR);

L
Lei Wen 已提交
524 525 526 527 528 529
	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 已提交
530
		if (info->use_dma) {
L
Lei Wen 已提交
531 532 533 534 535
			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 已提交
536
		} else {
L
Lei Wen 已提交
537 538 539
			info->state = (status & NDSR_RDDREQ) ?
				      STATE_PIO_READING : STATE_PIO_WRITING;
			handle_data_pio(info);
E
eric miao 已提交
540 541
		}
	}
L
Lei Wen 已提交
542 543 544
	if (status & NDSR_CS0_CMDD) {
		info->state = STATE_CMD_DONE;
		is_completed = 1;
E
eric miao 已提交
545
	}
L
Lei Wen 已提交
546 547
	if (status & NDSR_FLASH_RDY)
		info->state = STATE_READY;
E
eric miao 已提交
548

L
Lei Wen 已提交
549 550 551 552 553 554 555
	if (status & NDSR_WRCMDREQ) {
		nand_writel(info, NDSR, NDSR_WRCMDREQ);
		status &= ~NDSR_WRCMDREQ;
		info->state = STATE_CMD_HANDLE;
		nand_writel(info, NDCB0, info->ndcb0);
		nand_writel(info, NDCB0, info->ndcb1);
		nand_writel(info, NDCB0, info->ndcb2);
E
eric miao 已提交
556 557
	}

L
Lei Wen 已提交
558 559 560 561 562 563
	/* 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 已提交
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
}

static int pxa3xx_nand_dev_ready(struct mtd_info *mtd)
{
	struct pxa3xx_nand_info *info = mtd->priv;
	return (nand_readl(info, NDSR) & NDSR_RDY) ? 1 : 0;
}

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

static void pxa3xx_nand_cmdfunc(struct mtd_info *mtd, unsigned command,
581
				int column, int page_addr)
E
eric miao 已提交
582 583
{
	struct pxa3xx_nand_info *info = mtd->priv;
584
	const struct pxa3xx_nand_cmdset *cmdset = info->cmdset;
L
Lei Wen 已提交
585
	int ret, exec_cmd = 0;
E
eric miao 已提交
586 587 588 589

	info->use_dma = (use_dma) ? 1 : 0;
	info->use_ecc = 0;
	info->data_size = 0;
L
Lei Wen 已提交
590 591
	info->state = 0;
	info->retcode = ERR_NONE;
E
eric miao 已提交
592 593 594 595 596 597

	switch (command) {
	case NAND_CMD_READOOB:
		/* disable HW ECC to get all the OOB data */
		info->buf_count = mtd->writesize + mtd->oobsize;
		info->buf_start = mtd->writesize + column;
598
		memset(info->data_buff, 0xFF, info->buf_count);
E
eric miao 已提交
599

L
Lei Wen 已提交
600 601
		prepare_read_prog_cmd(info, cmdset->read1, column, page_addr);
		exec_cmd = 1;
E
eric miao 已提交
602 603 604 605 606 607 608 609
		break;

	case NAND_CMD_READ0:
		info->use_ecc = 1;
		info->buf_start = column;
		info->buf_count = mtd->writesize + mtd->oobsize;
		memset(info->data_buff, 0xFF, info->buf_count);

L
Lei Wen 已提交
610 611
		prepare_read_prog_cmd(info, cmdset->read1, column, page_addr);
		exec_cmd = 1;
E
eric miao 已提交
612 613 614 615 616 617 618 619 620 621 622 623 624
		break;
	case NAND_CMD_SEQIN:
		info->buf_start = column;
		info->buf_count = mtd->writesize + mtd->oobsize;
		memset(info->data_buff, 0xff, info->buf_count);

		/* save column/page_addr for next CMD_PAGEPROG */
		info->seqin_column = column;
		info->seqin_page_addr = page_addr;
		break;
	case NAND_CMD_PAGEPROG:
		info->use_ecc = (info->seqin_column >= mtd->writesize) ? 0 : 1;

L
Lei Wen 已提交
625 626 627
		prepare_read_prog_cmd(info, cmdset->program,
				info->seqin_column, info->seqin_page_addr);
		exec_cmd = 1;
E
eric miao 已提交
628 629
		break;
	case NAND_CMD_ERASE1:
L
Lei Wen 已提交
630 631
		prepare_erase_cmd(info, cmdset->erase, page_addr);
		exec_cmd = 1;
E
eric miao 已提交
632 633 634 635 636 637 638 639
		break;
	case NAND_CMD_ERASE2:
		break;
	case NAND_CMD_READID:
	case NAND_CMD_STATUS:
		info->use_dma = 0;	/* force PIO read */
		info->buf_start = 0;
		info->buf_count = (command == NAND_CMD_READID) ?
640
				info->read_id_bytes : 1;
E
eric miao 已提交
641

L
Lei Wen 已提交
642 643 644
		prepare_other_cmd(info, (command == NAND_CMD_READID) ?
				cmdset->read_id : cmdset->read_status);
		exec_cmd = 1;
E
eric miao 已提交
645 646
		break;
	case NAND_CMD_RESET:
L
Lei Wen 已提交
647 648
		prepare_other_cmd(info, cmdset->reset);
		exec_cmd = 1;
E
eric miao 已提交
649 650 651 652 653 654
		break;
	default:
		printk(KERN_ERR "non-supported command.\n");
		break;
	}

L
Lei Wen 已提交
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
	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) {
			printk(KERN_ERR "Wait time out!!!\n");
			/* Stop State Machine for next command cycle */
			pxa3xx_nand_stop(info);
		}
		info->state = STATE_IDLE;
	}
}

static void pxa3xx_nand_write_page_hwecc(struct mtd_info *mtd,
		struct nand_chip *chip, const uint8_t *buf)
{
	chip->write_buf(mtd, buf, mtd->writesize);
	chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
}

static int pxa3xx_nand_read_page_hwecc(struct mtd_info *mtd,
		struct nand_chip *chip, uint8_t *buf, int page)
{
	struct pxa3xx_nand_info *info = mtd->priv;

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

	if (info->retcode == ERR_SBERR) {
		switch (info->use_ecc) {
		case 1:
			mtd->ecc_stats.corrected++;
			break;
		case 0:
		default:
			break;
		}
	} else if (info->retcode == ERR_DBERR) {
		/*
		 * 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))
			mtd->ecc_stats.failed++;
E
eric miao 已提交
702
	}
L
Lei Wen 已提交
703 704

	return 0;
E
eric miao 已提交
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782
}

static uint8_t pxa3xx_nand_read_byte(struct mtd_info *mtd)
{
	struct pxa3xx_nand_info *info = mtd->priv;
	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)
{
	struct pxa3xx_nand_info *info = mtd->priv;
	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)
{
	struct pxa3xx_nand_info *info = mtd->priv;
	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)
{
	struct pxa3xx_nand_info *info = mtd->priv;
	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 int pxa3xx_nand_verify_buf(struct mtd_info *mtd,
		const uint8_t *buf, int len)
{
	return 0;
}

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)
{
	struct pxa3xx_nand_info *info = mtd->priv;

	/* 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 __readid(struct pxa3xx_nand_info *info, uint32_t *id)
{
783
	const struct pxa3xx_nand_cmdset *cmdset = info->cmdset;
E
eric miao 已提交
784 785 786
	uint32_t ndcr;
	uint8_t  id_buff[8];

L
Lei Wen 已提交
787
	prepare_other_cmd(info, cmdset->read_id);
E
eric miao 已提交
788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808

	/* Send command */
	if (write_cmd(info))
		goto fail_timeout;

	/* Wait for CMDDM(command done successfully) */
	if (wait_for_event(info, NDSR_RDDREQ))
		goto fail_timeout;

	__raw_readsl(info->mmio_base + NDDB, id_buff, 2);
	*id = id_buff[0] | (id_buff[1] << 8);
	return 0;

fail_timeout:
	ndcr = nand_readl(info, NDCR);
	nand_writel(info, NDCR, ndcr & ~NDCR_ND_RUN);
	udelay(10);
	return -ETIMEDOUT;
}

static int pxa3xx_nand_config_flash(struct pxa3xx_nand_info *info,
809
				    const struct pxa3xx_nand_flash *f)
E
eric miao 已提交
810 811 812
{
	struct platform_device *pdev = info->pdev;
	struct pxa3xx_nand_platform_data *pdata = pdev->dev.platform_data;
L
Lei Wen 已提交
813
	uint32_t ndcr = 0x0; /* enable all interrupts */
E
eric miao 已提交
814 815 816 817 818 819 820 821

	if (f->page_size != 2048 && f->page_size != 512)
		return -EINVAL;

	if (f->flash_width != 16 && f->flash_width != 8)
		return -EINVAL;

	/* calculate flash information */
822 823 824
	info->cmdset = f->cmdset;
	info->page_size = f->page_size;
	info->oob_buff = info->data_buff + f->page_size;
825
	info->read_id_bytes = (f->page_size == 2048) ? 4 : 2;
E
eric miao 已提交
826 827

	/* calculate addressing information */
828
	info->col_addr_cycles = (f->page_size == 2048) ? 2 : 1;
E
eric miao 已提交
829 830

	if (f->num_blocks * f->page_per_block > 65536)
831
		info->row_addr_cycles = 3;
E
eric miao 已提交
832
	else
833
		info->row_addr_cycles = 2;
E
eric miao 已提交
834 835

	ndcr |= (pdata->enable_arbiter) ? NDCR_ND_ARB_EN : 0;
836
	ndcr |= (info->col_addr_cycles == 2) ? NDCR_RA_START : 0;
E
eric miao 已提交
837 838 839 840 841
	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;

842
	ndcr |= NDCR_RD_ID_CNT(info->read_id_bytes);
E
eric miao 已提交
843 844 845 846 847 848 849 850
	ndcr |= NDCR_SPARE_EN; /* enable spare by default */

	info->reg_ndcr = ndcr;

	pxa3xx_nand_set_timing(info, f->timing);
	return 0;
}

851 852 853 854
static int pxa3xx_nand_detect_config(struct pxa3xx_nand_info *info)
{
	uint32_t ndcr = nand_readl(info, NDCR);
	struct nand_flash_dev *type = NULL;
855
	uint32_t id = -1, page_per_block, num_blocks;
856 857
	int i;

858 859
	page_per_block = ndcr & NDCR_PG_PER_BLK ? 64 : 32;
	info->page_size = ndcr & NDCR_PAGE_SZ ? 2048 : 512;
860
	/* set info fields needed to __readid */
861
	info->read_id_bytes = (info->page_size == 2048) ? 4 : 2;
862
	info->reg_ndcr = ndcr;
863
	info->cmdset = &default_cmdset;
864

L
Lei Wen 已提交
865 866 867
	pxa3xx_nand_cmdfunc(info->mtd, NAND_CMD_READID, 0, 0);
	id = *((uint16_t *)(info->data_buff));
	if (id == 0)
868 869 870 871 872 873 874 875 876 877 878 879 880 881
		return -ENODEV;

	/* Lookup the flash id */
	for (i = 0; nand_flash_ids[i].name != NULL; i++) {
		if (id == nand_flash_ids[i].id) {
			type =  &nand_flash_ids[i];
			break;
		}
	}

	if (!type)
		return -ENODEV;

	/* fill the missing flash information */
882 883
	i = __ffs(page_per_block * info->page_size);
	num_blocks = type->chipsize << (20 - i);
884 885

	/* calculate addressing information */
886
	info->col_addr_cycles = (info->page_size == 2048) ? 2 : 1;
887

888
	if (num_blocks * page_per_block > 65536)
889 890 891 892
		info->row_addr_cycles = 3;
	else
		info->row_addr_cycles = 2;

893 894
	info->ndtr0cs0 = nand_readl(info, NDTR0CS0);
	info->ndtr1cs0 = nand_readl(info, NDTR1CS0);
895 896 897 898

	return 0;
}

899 900
static int pxa3xx_nand_detect_flash(struct pxa3xx_nand_info *info,
				    const struct pxa3xx_nand_platform_data *pdata)
E
eric miao 已提交
901
{
902
	const struct pxa3xx_nand_flash *f;
903
	uint32_t id = -1;
E
eric miao 已提交
904 905
	int i;

906 907 908 909
	if (pdata->keep_config)
		if (pxa3xx_nand_detect_config(info) == 0)
			return 0;

910 911 912
	/* we use default timing to detect id */
	f = DEFAULT_FLASH_TYPE;
	pxa3xx_nand_config_flash(info, f);
L
Lei Wen 已提交
913 914
	pxa3xx_nand_cmdfunc(info->mtd, NAND_CMD_READID, 0, 0);
	id = *((uint16_t *)(info->data_buff));
915 916 917 918 919 920 921 922 923 924

	for (i=0; i<ARRAY_SIZE(builtin_flash_types) + pdata->num_flash - 1; i++) {
		/* we first choose the flash definition from platfrom */
		if (i < pdata->num_flash)
			f = pdata->flash + i;
		else
			f = &builtin_flash_types[i - pdata->num_flash + 1];
		if (f->chip_id == id) {
			dev_info(&info->pdev->dev, "detect chip id: 0x%x\n", id);
			pxa3xx_nand_config_flash(info, f);
E
eric miao 已提交
925
			return 0;
926
		}
E
eric miao 已提交
927 928
	}

929 930 931
	dev_warn(&info->pdev->dev,
		 "failed to detect configured nand flash; found %04x instead of\n",
		 id);
E
eric miao 已提交
932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995
	return -ENODEV;
}

/* the maximum possible buffer size for large page with OOB data
 * is: 2048 + 64 = 2112 bytes, allocate a page here for both the
 * data buffer and the DMA descriptor
 */
#define MAX_BUFF_SIZE	PAGE_SIZE

static int pxa3xx_nand_init_buff(struct pxa3xx_nand_info *info)
{
	struct platform_device *pdev = info->pdev;
	int data_desc_offset = MAX_BUFF_SIZE - sizeof(struct pxa_dma_desc);

	if (use_dma == 0) {
		info->data_buff = kmalloc(MAX_BUFF_SIZE, GFP_KERNEL);
		if (info->data_buff == NULL)
			return -ENOMEM;
		return 0;
	}

	info->data_buff = dma_alloc_coherent(&pdev->dev, MAX_BUFF_SIZE,
				&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_buff_size = MAX_BUFF_SIZE;
	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");
		dma_free_coherent(&pdev->dev, info->data_buff_size,
				info->data_buff, info->data_buff_phys);
		return info->data_dma_ch;
	}

	return 0;
}

static struct nand_ecclayout hw_smallpage_ecclayout = {
	.eccbytes = 6,
	.eccpos = {8, 9, 10, 11, 12, 13 },
	.oobfree = { {2, 6} }
};

static struct nand_ecclayout hw_largepage_ecclayout = {
	.eccbytes = 24,
	.eccpos = {
		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, 38} }
};

static void pxa3xx_nand_init_mtd(struct mtd_info *mtd,
				 struct pxa3xx_nand_info *info)
{
	struct nand_chip *this = &info->nand_chip;

996
	this->options = (info->reg_ndcr & NDCR_DWIDTH_C) ? NAND_BUSWIDTH_16: 0;
E
eric miao 已提交
997 998 999 1000 1001

	this->waitfunc		= pxa3xx_nand_waitfunc;
	this->select_chip	= pxa3xx_nand_select_chip;
	this->dev_ready		= pxa3xx_nand_dev_ready;
	this->cmdfunc		= pxa3xx_nand_cmdfunc;
L
Lei Wen 已提交
1002 1003
	this->ecc.read_page	= pxa3xx_nand_read_page_hwecc;
	this->ecc.write_page	= pxa3xx_nand_write_page_hwecc;
E
eric miao 已提交
1004 1005 1006 1007 1008 1009 1010
	this->read_word		= pxa3xx_nand_read_word;
	this->read_byte		= pxa3xx_nand_read_byte;
	this->read_buf		= pxa3xx_nand_read_buf;
	this->write_buf		= pxa3xx_nand_write_buf;
	this->verify_buf	= pxa3xx_nand_verify_buf;

	this->ecc.mode		= NAND_ECC_HW;
1011
	this->ecc.size		= info->page_size;
E
eric miao 已提交
1012

1013
	if (info->page_size == 2048)
E
eric miao 已提交
1014 1015 1016 1017
		this->ecc.layout = &hw_largepage_ecclayout;
	else
		this->ecc.layout = &hw_smallpage_ecclayout;

1018
	this->chip_delay = 25;
E
eric miao 已提交
1019 1020
}

1021 1022
static
struct pxa3xx_nand_info *alloc_nand_resource(struct platform_device *pdev)
E
eric miao 已提交
1023
{
1024
	struct pxa3xx_nand_platform_data *pdata = pdev->dev.platform_data;
E
eric miao 已提交
1025 1026 1027
	struct pxa3xx_nand_info *info;
	struct mtd_info *mtd;
	struct resource *r;
1028
	int ret, irq;
E
eric miao 已提交
1029 1030 1031

	mtd = kzalloc(sizeof(struct mtd_info) + sizeof(struct pxa3xx_nand_info),
			GFP_KERNEL);
1032
	if (!mtd) {
E
eric miao 已提交
1033
		dev_err(&pdev->dev, "failed to allocate memory\n");
1034
		return NULL;
1035
	}
E
eric miao 已提交
1036 1037 1038 1039 1040

	info = (struct pxa3xx_nand_info *)(&mtd[1]);
	info->pdev = pdev;

	mtd->priv = info;
1041
	info->mtd = mtd;
1042
	mtd->owner = THIS_MODULE;
E
eric miao 已提交
1043

1044
	info->clk = clk_get(&pdev->dev, NULL);
E
eric miao 已提交
1045 1046 1047 1048 1049 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 1077 1078 1079 1080 1081
	if (IS_ERR(info->clk)) {
		dev_err(&pdev->dev, "failed to get nand clock\n");
		ret = PTR_ERR(info->clk);
		goto fail_free_mtd;
	}
	clk_enable(info->clk);

	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_put_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 command DMA\n");
		ret = -ENXIO;
		goto fail_put_clk;
	}
	info->drcmr_cmd = r->start;

	irq = platform_get_irq(pdev, 0);
	if (irq < 0) {
		dev_err(&pdev->dev, "no IRQ resource defined\n");
		ret = -ENXIO;
		goto fail_put_clk;
	}

	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (r == NULL) {
		dev_err(&pdev->dev, "no IO memory resource defined\n");
		ret = -ENODEV;
		goto fail_put_clk;
	}

1082
	r = request_mem_region(r->start, resource_size(r), pdev->name);
E
eric miao 已提交
1083 1084 1085 1086 1087 1088
	if (r == NULL) {
		dev_err(&pdev->dev, "failed to request memory resource\n");
		ret = -EBUSY;
		goto fail_put_clk;
	}

1089
	info->mmio_base = ioremap(r->start, resource_size(r));
E
eric miao 已提交
1090 1091 1092 1093 1094
	if (info->mmio_base == NULL) {
		dev_err(&pdev->dev, "ioremap() failed\n");
		ret = -ENODEV;
		goto fail_free_res;
	}
1095
	info->mmio_phys = r->start;
E
eric miao 已提交
1096 1097 1098 1099 1100

	ret = pxa3xx_nand_init_buff(info);
	if (ret)
		goto fail_free_io;

1101 1102 1103
	/* initialize all interrupts to be disabled */
	disable_int(info, NDSR_MASK);

1104 1105
	ret = request_irq(irq, pxa3xx_nand_irq, IRQF_DISABLED,
			  pdev->name, info);
E
eric miao 已提交
1106 1107 1108 1109 1110
	if (ret < 0) {
		dev_err(&pdev->dev, "failed to request IRQ\n");
		goto fail_free_buf;
	}

1111
	ret = pxa3xx_nand_detect_flash(info, pdata);
E
eric miao 已提交
1112 1113 1114 1115 1116 1117 1118
	if (ret) {
		dev_err(&pdev->dev, "failed to detect flash\n");
		ret = -ENODEV;
		goto fail_free_irq;
	}

	pxa3xx_nand_init_mtd(mtd, info);
1119
	platform_set_drvdata(pdev, info);
E
eric miao 已提交
1120

1121
	return info;
E
eric miao 已提交
1122 1123

fail_free_irq:
1124
	free_irq(irq, info);
E
eric miao 已提交
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
fail_free_buf:
	if (use_dma) {
		pxa_free_dma(info->data_dma_ch);
		dma_free_coherent(&pdev->dev, info->data_buff_size,
			info->data_buff, info->data_buff_phys);
	} else
		kfree(info->data_buff);
fail_free_io:
	iounmap(info->mmio_base);
fail_free_res:
1135
	release_mem_region(r->start, resource_size(r));
E
eric miao 已提交
1136 1137 1138 1139 1140
fail_put_clk:
	clk_disable(info->clk);
	clk_put(info->clk);
fail_free_mtd:
	kfree(mtd);
1141
	return NULL;
E
eric miao 已提交
1142 1143 1144 1145
}

static int pxa3xx_nand_remove(struct platform_device *pdev)
{
1146 1147
	struct pxa3xx_nand_info *info = platform_get_drvdata(pdev);
	struct mtd_info *mtd = info->mtd;
1148
	struct resource *r;
1149
	int irq;
E
eric miao 已提交
1150 1151 1152

	platform_set_drvdata(pdev, NULL);

1153 1154 1155
	irq = platform_get_irq(pdev, 0);
	if (irq >= 0)
		free_irq(irq, info);
E
eric miao 已提交
1156 1157 1158 1159 1160 1161
	if (use_dma) {
		pxa_free_dma(info->data_dma_ch);
		dma_free_writecombine(&pdev->dev, info->data_buff_size,
				info->data_buff, info->data_buff_phys);
	} else
		kfree(info->data_buff);
1162 1163 1164 1165 1166 1167 1168 1169

	iounmap(info->mmio_base);
	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	release_mem_region(r->start, resource_size(r));

	clk_disable(info->clk);
	clk_put(info->clk);

L
Lei Wen 已提交
1170 1171 1172 1173 1174 1175 1176
	if (mtd) {
		del_mtd_device(mtd);
#ifdef CONFIG_MTD_PARTITIONS
		del_mtd_partitions(mtd);
#endif
		kfree(mtd);
	}
E
eric miao 已提交
1177 1178 1179
	return 0;
}

1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
static int pxa3xx_nand_probe(struct platform_device *pdev)
{
	struct pxa3xx_nand_platform_data *pdata;
	struct pxa3xx_nand_info *info;

	pdata = pdev->dev.platform_data;
	if (!pdata) {
		dev_err(&pdev->dev, "no platform data defined\n");
		return -ENODEV;
	}

	info = alloc_nand_resource(pdev);
	if (info == NULL)
		return -ENOMEM;

	if (nand_scan(info->mtd, 1)) {
		dev_err(&pdev->dev, "failed to scan nand\n");
		pxa3xx_nand_remove(pdev);
		return -ENODEV;
	}

#ifdef CONFIG_MTD_PARTITIONS
	if (mtd_has_cmdlinepart()) {
		const char *probes[] = { "cmdlinepart", NULL };
		struct mtd_partition *parts;
		int nr_parts;

		nr_parts = parse_mtd_partitions(info->mtd, probes, &parts, 0);

		if (nr_parts)
L
Lei Wen 已提交
1210
			return add_mtd_partitions(info->mtd, parts, nr_parts);
1211 1212
	}

L
Lei Wen 已提交
1213
	return add_mtd_partitions(info->mtd, pdata->parts, pdata->nr_parts);
1214 1215 1216 1217 1218
#else
	return 0;
#endif
}

E
eric miao 已提交
1219 1220 1221
#ifdef CONFIG_PM
static int pxa3xx_nand_suspend(struct platform_device *pdev, pm_message_t state)
{
1222 1223
	struct pxa3xx_nand_info *info = platform_get_drvdata(pdev);
	struct mtd_info *mtd = info->mtd;
E
eric miao 已提交
1224

L
Lei Wen 已提交
1225
	if (info->state) {
E
eric miao 已提交
1226 1227 1228 1229 1230 1231 1232 1233 1234
		dev_err(&pdev->dev, "driver busy, state = %d\n", info->state);
		return -EAGAIN;
	}

	return 0;
}

static int pxa3xx_nand_resume(struct platform_device *pdev)
{
1235 1236
	struct pxa3xx_nand_info *info = platform_get_drvdata(pdev);
	struct mtd_info *mtd = info->mtd;
E
eric miao 已提交
1237

1238 1239
	nand_writel(info, NDTR0CS0, info->ndtr0cs0);
	nand_writel(info, NDTR1CS0, info->ndtr1cs0);
E
eric miao 已提交
1240 1241
	clk_enable(info->clk);

1242
	return 0;
E
eric miao 已提交
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
}
#else
#define pxa3xx_nand_suspend	NULL
#define pxa3xx_nand_resume	NULL
#endif

static struct platform_driver pxa3xx_nand_driver = {
	.driver = {
		.name	= "pxa3xx-nand",
	},
	.probe		= pxa3xx_nand_probe,
	.remove		= pxa3xx_nand_remove,
	.suspend	= pxa3xx_nand_suspend,
	.resume		= pxa3xx_nand_resume,
};

static int __init pxa3xx_nand_init(void)
{
	return platform_driver_register(&pxa3xx_nand_driver);
}
module_init(pxa3xx_nand_init);

static void __exit pxa3xx_nand_exit(void)
{
	platform_driver_unregister(&pxa3xx_nand_driver);
}
module_exit(pxa3xx_nand_exit);

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