pxa3xx_nand.c 31.4 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)
31
#define PAGE_CHUNK_SIZE		(2048)
E
eric miao 已提交
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

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

#define NDSR_MASK		(0xfff)
L
Lei Wen 已提交
67 68
#define NDSR_RDY                (0x1 << 12)
#define NDSR_FLASH_RDY          (0x1 << 11)
E
eric miao 已提交
69 70 71 72 73 74 75 76 77 78 79 80
#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)

81
#define NDCB0_ST_ROW_EN         (0x1 << 26)
E
eric miao 已提交
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
#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,
108
	ERR_SBERR	= -5,
E
eric miao 已提交
109 110 111
};

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

124 125 126 127 128 129 130 131 132
struct pxa3xx_nand_host {
	struct nand_chip	chip;
	struct pxa3xx_nand_cmdset *cmdset;
	struct mtd_info         *mtd;
	void			*info_data;

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

134 135 136 137 138 139 140 141 142 143 144 145
	/* calculated from pxa3xx_nand_flash data */
	unsigned int		col_addr_cycles;
	unsigned int		row_addr_cycles;
	size_t			read_id_bytes;

	/* cached register value */
	uint32_t		reg_ndcr;
	uint32_t		ndtr0cs0;
	uint32_t		ndtr1cs0;
};

struct pxa3xx_nand_info {
146
	struct nand_hw_control	controller;
E
eric miao 已提交
147 148 149 150
	struct platform_device	 *pdev;

	struct clk		*clk;
	void __iomem		*mmio_base;
151
	unsigned long		mmio_phys;
152
	struct completion	cmd_complete;
E
eric miao 已提交
153 154 155 156 157 158 159 160 161

	unsigned int 		buf_start;
	unsigned int		buf_count;

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

	unsigned char		*data_buff;
162
	unsigned char		*oob_buff;
E
eric miao 已提交
163 164 165 166 167
	dma_addr_t 		data_buff_phys;
	int 			data_dma_ch;
	struct pxa_dma_desc	*data_desc;
	dma_addr_t 		data_desc_addr;

168
	struct pxa3xx_nand_host *host;
E
eric miao 已提交
169 170 171 172
	unsigned int		state;

	int			use_ecc;	/* use HW ECC ? */
	int			use_dma;	/* use DMA ? */
173
	int			is_ready;
E
eric miao 已提交
174

175 176
	unsigned int		page_size;	/* page size of attached chip */
	unsigned int		data_size;	/* data size in FIFO */
177
	unsigned int		oob_size;
E
eric miao 已提交
178 179 180 181 182 183 184 185 186 187
	int 			retcode;

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

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

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

207
static struct pxa3xx_nand_timing timing[] = {
208 209 210 211
	{ 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, },
212 213
};

214
static struct pxa3xx_nand_flash builtin_flash_types[] = {
215 216 217 218 219 220 221 222 223
{ "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] },
224 225
};

226 227 228
/* Define a default flash type setting serve as flash detecting only */
#define DEFAULT_FLASH_TYPE (&builtin_flash_types[0])

229 230
const char *mtd_names[] = {"pxa3xx_nand-0", NULL};

E
eric miao 已提交
231 232 233 234 235 236 237 238 239 240 241 242
#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 已提交
243
#define ns2cycle(ns, clk)	(int)((ns) * (clk / 1000000) / 1000)
E
eric miao 已提交
244

245
static void pxa3xx_nand_set_timing(struct pxa3xx_nand_host *host,
246
				   const struct pxa3xx_nand_timing *t)
E
eric miao 已提交
247
{
248
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
249 250 251 252 253 254 255 256 257 258 259 260 261 262
	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));

263 264
	host->ndtr0cs0 = ndtr0;
	host->ndtr1cs0 = ndtr1;
E
eric miao 已提交
265 266 267 268
	nand_writel(info, NDTR0CS0, ndtr0);
	nand_writel(info, NDTR1CS0, ndtr1);
}

269
static void pxa3xx_set_datasize(struct pxa3xx_nand_info *info)
E
eric miao 已提交
270
{
271 272
	struct pxa3xx_nand_host *host = info->host;
	int oob_enable = host->reg_ndcr & NDCR_SPARE_EN;
273

274
	info->data_size = host->page_size;
275 276 277 278 279
	if (!oob_enable) {
		info->oob_size = 0;
		return;
	}

280
	switch (host->page_size) {
E
eric miao 已提交
281
	case 2048:
282
		info->oob_size = (info->use_ecc) ? 40 : 64;
E
eric miao 已提交
283 284
		break;
	case 512:
285
		info->oob_size = (info->use_ecc) ? 8 : 16;
E
eric miao 已提交
286 287
		break;
	}
288 289
}

L
Lei Wen 已提交
290 291 292 293 294 295 296 297
/**
 * 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)
{
298
	struct pxa3xx_nand_host *host = info->host;
L
Lei Wen 已提交
299 300
	uint32_t ndcr;

301
	ndcr = host->reg_ndcr;
L
Lei Wen 已提交
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
	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);
}

E
eric miao 已提交
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
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);
}

L
Lei Wen 已提交
348
static void handle_data_pio(struct pxa3xx_nand_info *info)
E
eric miao 已提交
349 350 351 352
{
	switch (info->state) {
	case STATE_PIO_WRITING:
		__raw_writesl(info->mmio_base + NDDB, info->data_buff,
353
				DIV_ROUND_UP(info->data_size, 4));
354 355 356
		if (info->oob_size > 0)
			__raw_writesl(info->mmio_base + NDDB, info->oob_buff,
					DIV_ROUND_UP(info->oob_size, 4));
E
eric miao 已提交
357 358 359
		break;
	case STATE_PIO_READING:
		__raw_readsl(info->mmio_base + NDDB, info->data_buff,
360
				DIV_ROUND_UP(info->data_size, 4));
361 362 363
		if (info->oob_size > 0)
			__raw_readsl(info->mmio_base + NDDB, info->oob_buff,
					DIV_ROUND_UP(info->oob_size, 4));
E
eric miao 已提交
364 365
		break;
	default:
366
		dev_err(&info->pdev->dev, "%s: invalid state %d\n", __func__,
E
eric miao 已提交
367
				info->state);
L
Lei Wen 已提交
368
		BUG();
E
eric miao 已提交
369 370 371
	}
}

L
Lei Wen 已提交
372
static void start_data_dma(struct pxa3xx_nand_info *info)
E
eric miao 已提交
373 374
{
	struct pxa_dma_desc *desc = info->data_desc;
375
	int dma_len = ALIGN(info->data_size + info->oob_size, 32);
E
eric miao 已提交
376 377 378 379

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

L
Lei Wen 已提交
380 381
	switch (info->state) {
	case STATE_DMA_WRITING:
E
eric miao 已提交
382
		desc->dsadr = info->data_buff_phys;
383
		desc->dtadr = info->mmio_phys + NDDB;
E
eric miao 已提交
384
		desc->dcmd |= DCMD_INCSRCADDR | DCMD_FLOWTRG;
L
Lei Wen 已提交
385 386
		break;
	case STATE_DMA_READING:
E
eric miao 已提交
387
		desc->dtadr = info->data_buff_phys;
388
		desc->dsadr = info->mmio_phys + NDDB;
E
eric miao 已提交
389
		desc->dcmd |= DCMD_INCTRGADDR | DCMD_FLOWSRC;
L
Lei Wen 已提交
390 391
		break;
	default:
392
		dev_err(&info->pdev->dev, "%s: invalid state %d\n", __func__,
L
Lei Wen 已提交
393 394
				info->state);
		BUG();
E
eric miao 已提交
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
	}

	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 已提交
414 415 416
	info->state = STATE_DMA_DONE;
	enable_int(info, NDCR_INT_MASK);
	nand_writel(info, NDSR, NDSR_WRDREQ | NDSR_RDDREQ);
E
eric miao 已提交
417 418 419 420 421
}

static irqreturn_t pxa3xx_nand_irq(int irq, void *devid)
{
	struct pxa3xx_nand_info *info = devid;
L
Lei Wen 已提交
422
	unsigned int status, is_completed = 0;
E
eric miao 已提交
423 424 425

	status = nand_readl(info, NDSR);

L
Lei Wen 已提交
426 427 428 429 430 431
	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 已提交
432
		if (info->use_dma) {
L
Lei Wen 已提交
433 434 435 436 437
			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 已提交
438
		} else {
L
Lei Wen 已提交
439 440 441
			info->state = (status & NDSR_RDDREQ) ?
				      STATE_PIO_READING : STATE_PIO_WRITING;
			handle_data_pio(info);
E
eric miao 已提交
442 443
		}
	}
L
Lei Wen 已提交
444 445 446
	if (status & NDSR_CS0_CMDD) {
		info->state = STATE_CMD_DONE;
		is_completed = 1;
E
eric miao 已提交
447
	}
448 449
	if (status & NDSR_FLASH_RDY) {
		info->is_ready = 1;
L
Lei Wen 已提交
450
		info->state = STATE_READY;
451
	}
E
eric miao 已提交
452

L
Lei Wen 已提交
453 454 455 456 457 458 459
	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 已提交
460 461
	}

L
Lei Wen 已提交
462 463 464 465 466 467
	/* 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 已提交
468 469 470 471 472 473 474 475 476 477
}

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

478 479
static int prepare_command_pool(struct pxa3xx_nand_info *info, int command,
		uint16_t column, int page_addr)
E
eric miao 已提交
480
{
481
	uint16_t cmd;
482 483 484
	int addr_cycle, exec_cmd;
	struct pxa3xx_nand_host *host = info->host;
	struct mtd_info *mtd = host->mtd;
E
eric miao 已提交
485

486 487 488 489
	addr_cycle = 0;
	exec_cmd = 1;

	/* reset data and oob column point to handle data */
490 491
	info->buf_start		= 0;
	info->buf_count		= 0;
492 493
	info->oob_size		= 0;
	info->use_ecc		= 0;
494
	info->is_ready		= 0;
495
	info->ndcb0		= 0;
496
	info->retcode		= ERR_NONE;
E
eric miao 已提交
497 498

	switch (command) {
499 500 501
	case NAND_CMD_READ0:
	case NAND_CMD_PAGEPROG:
		info->use_ecc = 1;
E
eric miao 已提交
502
	case NAND_CMD_READOOB:
503
		pxa3xx_set_datasize(info);
E
eric miao 已提交
504
		break;
505 506 507 508 509 510 511 512 513
	case NAND_CMD_SEQIN:
		exec_cmd = 0;
		break;
	default:
		info->ndcb1 = 0;
		info->ndcb2 = 0;
		break;
	}

514 515
	addr_cycle = NDCB0_ADDR_CYC(host->row_addr_cycles
				    + host->col_addr_cycles);
E
eric miao 已提交
516

517 518
	switch (command) {
	case NAND_CMD_READOOB:
E
eric miao 已提交
519
	case NAND_CMD_READ0:
520
		cmd = host->cmdset->read1;
521 522 523 524 525
		if (command == NAND_CMD_READOOB)
			info->buf_start = mtd->writesize + column;
		else
			info->buf_start = column;

526
		if (unlikely(host->page_size < PAGE_CHUNK_SIZE))
527 528 529 530 531 532 533 534
			info->ndcb0 |= NDCB0_CMD_TYPE(0)
					| addr_cycle
					| (cmd & NDCB0_CMD1_MASK);
		else
			info->ndcb0 |= NDCB0_CMD_TYPE(0)
					| NDCB0_DBC
					| addr_cycle
					| cmd;
E
eric miao 已提交
535 536

	case NAND_CMD_SEQIN:
537
		/* small page addr setting */
538
		if (unlikely(host->page_size < PAGE_CHUNK_SIZE)) {
539 540 541 542 543 544 545 546 547 548 549 550 551 552
			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 已提交
553
		info->buf_count = mtd->writesize + mtd->oobsize;
554
		memset(info->data_buff, 0xFF, info->buf_count);
E
eric miao 已提交
555 556

		break;
557

E
eric miao 已提交
558
	case NAND_CMD_PAGEPROG:
559 560 561 562 563
		if (is_buf_blank(info->data_buff,
					(mtd->writesize + mtd->oobsize))) {
			exec_cmd = 0;
			break;
		}
E
eric miao 已提交
564

565
		cmd = host->cmdset->program;
566 567 568 569 570 571
		info->ndcb0 |= NDCB0_CMD_TYPE(0x1)
				| NDCB0_AUTO_RS
				| NDCB0_ST_ROW_EN
				| NDCB0_DBC
				| cmd
				| addr_cycle;
E
eric miao 已提交
572
		break;
573

E
eric miao 已提交
574
	case NAND_CMD_READID:
575 576
		cmd = host->cmdset->read_id;
		info->buf_count = host->read_id_bytes;
577 578 579 580 581 582
		info->ndcb0 |= NDCB0_CMD_TYPE(3)
				| NDCB0_ADDR_CYC(1)
				| cmd;

		info->data_size = 8;
		break;
E
eric miao 已提交
583
	case NAND_CMD_STATUS:
584
		cmd = host->cmdset->read_status;
585 586 587 588 589 590 591 592 593
		info->buf_count = 1;
		info->ndcb0 |= NDCB0_CMD_TYPE(4)
				| NDCB0_ADDR_CYC(1)
				| cmd;

		info->data_size = 8;
		break;

	case NAND_CMD_ERASE1:
594
		cmd = host->cmdset->erase;
595 596 597 598 599 600 601 602
		info->ndcb0 |= NDCB0_CMD_TYPE(2)
				| NDCB0_AUTO_RS
				| NDCB0_ADDR_CYC(3)
				| NDCB0_DBC
				| cmd;
		info->ndcb1 = page_addr;
		info->ndcb2 = 0;

E
eric miao 已提交
603 604
		break;
	case NAND_CMD_RESET:
605
		cmd = host->cmdset->reset;
606 607 608 609 610 611 612
		info->ndcb0 |= NDCB0_CMD_TYPE(5)
				| cmd;

		break;

	case NAND_CMD_ERASE2:
		exec_cmd = 0;
E
eric miao 已提交
613
		break;
614

E
eric miao 已提交
615
	default:
616
		exec_cmd = 0;
617 618
		dev_err(&info->pdev->dev, "non-supported command %x\n",
				command);
E
eric miao 已提交
619 620 621
		break;
	}

622 623 624 625 626 627
	return exec_cmd;
}

static void pxa3xx_nand_cmdfunc(struct mtd_info *mtd, unsigned command,
				int column, int page_addr)
{
628 629
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
630 631 632 633 634 635 636
	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
	 */
637
	if (host->reg_ndcr & NDCR_DWIDTH_M)
638 639
		column /= 2;

640
	info->state = STATE_PREPARED;
641
	exec_cmd = prepare_command_pool(info, command, column, page_addr);
L
Lei Wen 已提交
642 643 644 645 646 647 648
	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) {
649
			dev_err(&info->pdev->dev, "Wait time out!!!\n");
L
Lei Wen 已提交
650 651 652 653
			/* Stop State Machine for next command cycle */
			pxa3xx_nand_stop(info);
		}
	}
654
	info->state = STATE_IDLE;
L
Lei Wen 已提交
655 656 657 658 659 660 661 662 663 664 665 666
}

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)
{
667 668
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
L
Lei Wen 已提交
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688

	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))
689 690
			info->retcode = ERR_NONE;
		else
L
Lei Wen 已提交
691
			mtd->ecc_stats.failed++;
E
eric miao 已提交
692
	}
L
Lei Wen 已提交
693 694

	return 0;
E
eric miao 已提交
695 696 697 698
}

static uint8_t pxa3xx_nand_read_byte(struct mtd_info *mtd)
{
699 700
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
701 702 703 704 705 706 707 708 709 710 711
	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)
{
712 713
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
714 715 716 717 718 719 720 721 722 723 724
	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)
{
725 726
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
727 728 729 730 731 732 733 734 735
	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)
{
736 737
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
	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)
{
757 758
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
E
eric miao 已提交
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776

	/* 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,
777
				    const struct pxa3xx_nand_flash *f)
E
eric miao 已提交
778 779 780
{
	struct platform_device *pdev = info->pdev;
	struct pxa3xx_nand_platform_data *pdata = pdev->dev.platform_data;
781
	struct pxa3xx_nand_host *host = info->host;
L
Lei Wen 已提交
782
	uint32_t ndcr = 0x0; /* enable all interrupts */
E
eric miao 已提交
783

784 785
	if (f->page_size != 2048 && f->page_size != 512) {
		dev_err(&pdev->dev, "Current only support 2048 and 512 size\n");
E
eric miao 已提交
786
		return -EINVAL;
787
	}
E
eric miao 已提交
788

789 790
	if (f->flash_width != 16 && f->flash_width != 8) {
		dev_err(&pdev->dev, "Only support 8bit and 16 bit!\n");
E
eric miao 已提交
791
		return -EINVAL;
792
	}
E
eric miao 已提交
793 794

	/* calculate flash information */
795 796 797
	host->cmdset = &default_cmdset;
	host->page_size = f->page_size;
	host->read_id_bytes = (f->page_size == 2048) ? 4 : 2;
E
eric miao 已提交
798 799

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

	if (f->num_blocks * f->page_per_block > 65536)
803
		host->row_addr_cycles = 3;
E
eric miao 已提交
804
	else
805
		host->row_addr_cycles = 2;
E
eric miao 已提交
806 807

	ndcr |= (pdata->enable_arbiter) ? NDCR_ND_ARB_EN : 0;
808
	ndcr |= (host->col_addr_cycles == 2) ? NDCR_RA_START : 0;
E
eric miao 已提交
809 810 811 812 813
	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;

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

817
	host->reg_ndcr = ndcr;
E
eric miao 已提交
818

819
	pxa3xx_nand_set_timing(host, f->timing);
E
eric miao 已提交
820 821 822
	return 0;
}

823 824
static int pxa3xx_nand_detect_config(struct pxa3xx_nand_info *info)
{
825
	struct pxa3xx_nand_host *host = info->host;
826 827
	uint32_t ndcr = nand_readl(info, NDCR);

828 829 830 831 832 833 834 835 836 837 838 839 840
	if (ndcr & NDCR_PAGE_SZ) {
		host->page_size = 2048;
		host->read_id_bytes = 4;
	} else {
		host->page_size = 512;
		host->read_id_bytes = 2;
	}

	host->reg_ndcr = ndcr & ~NDCR_INT_MASK;
	host->cmdset = &default_cmdset;

	host->ndtr0cs0 = nand_readl(info, NDTR0CS0);
	host->ndtr1cs0 = nand_readl(info, NDTR1CS0);
841 842 843 844

	return 0;
}

E
eric miao 已提交
845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
/* 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_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");
877
		dma_free_coherent(&pdev->dev, MAX_BUFF_SIZE,
E
eric miao 已提交
878 879 880 881 882 883 884
				info->data_buff, info->data_buff_phys);
		return info->data_dma_ch;
	}

	return 0;
}

885 886
static int pxa3xx_nand_sensing(struct pxa3xx_nand_info *info)
{
887 888
	struct mtd_info *mtd = info->host->mtd;
	int ret;
E
eric miao 已提交
889

890
	/* use the common timing to make a try */
891 892 893 894 895
	ret = pxa3xx_nand_config_flash(info, &builtin_flash_types[0]);
	if (ret)
		return ret;

	pxa3xx_nand_cmdfunc(mtd, NAND_CMD_RESET, 0, 0);
896 897
	if (info->is_ready)
		return 0;
898 899

	return -ENODEV;
900
}
E
eric miao 已提交
901

902
static int pxa3xx_nand_scan(struct mtd_info *mtd)
E
eric miao 已提交
903
{
904 905
	struct pxa3xx_nand_host *host = mtd->priv;
	struct pxa3xx_nand_info *info = host->info_data;
906 907
	struct platform_device *pdev = info->pdev;
	struct pxa3xx_nand_platform_data *pdata = pdev->dev.platform_data;
908
	struct nand_flash_dev pxa3xx_flash_ids[2], *def = NULL;
909 910 911
	const struct pxa3xx_nand_flash *f = NULL;
	struct nand_chip *chip = mtd->priv;
	uint32_t id = -1;
912
	uint64_t chipsize;
913 914 915
	int i, ret, num;

	if (pdata->keep_config && !pxa3xx_nand_detect_config(info))
916
		goto KEEP_CONFIG;
917 918

	ret = pxa3xx_nand_sensing(info);
919
	if (ret) {
920
		dev_info(&info->pdev->dev, "There is no nand chip on cs 0!\n");
921

922
		return ret;
923 924 925 926 927
	}

	chip->cmdfunc(mtd, NAND_CMD_READID, 0, 0);
	id = *((uint16_t *)(info->data_buff));
	if (id != 0)
928
		dev_info(&info->pdev->dev, "Detect a flash id %x\n", id);
929
	else {
930 931
		dev_warn(&info->pdev->dev,
			 "Read out ID 0, potential timing set wrong!!\n");
932 933 934 935 936 937 938 939 940 941 942 943

		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 */
944
		if (f->chip_id == id)
945 946 947
			break;
	}

948
	if (i >= (ARRAY_SIZE(builtin_flash_types) + pdata->num_flash - 1)) {
949
		dev_err(&info->pdev->dev, "ERROR!! flash not defined!!!\n");
950 951 952 953

		return -EINVAL;
	}

954 955 956 957 958 959
	ret = pxa3xx_nand_config_flash(info, f);
	if (ret) {
		dev_err(&info->pdev->dev, "ERROR! Configure failed\n");
		return ret;
	}

960 961 962 963 964 965 966 967
	pxa3xx_flash_ids[0].name = f->name;
	pxa3xx_flash_ids[0].id = (f->chip_id >> 8) & 0xffff;
	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;
968 969
	pxa3xx_flash_ids[1].name = NULL;
	def = pxa3xx_flash_ids;
970
KEEP_CONFIG:
971 972 973 974 975 976 977 978
	chip->ecc.mode = NAND_ECC_HW;
	chip->ecc.size = host->page_size;

	chip->options = NAND_NO_AUTOINCR;
	chip->options |= NAND_NO_READRDY;
	if (host->reg_ndcr & NDCR_DWIDTH_M)
		chip->options |= NAND_BUSWIDTH_16;

979
	if (nand_scan_ident(mtd, 1, def))
980 981
		return -ENODEV;
	/* calculate addressing information */
982 983 984 985 986
	if (mtd->writesize >= 2048)
		host->col_addr_cycles = 2;
	else
		host->col_addr_cycles = 1;

987 988
	info->oob_buff = info->data_buff + mtd->writesize;
	if ((mtd->size >> chip->page_shift) > 65536)
989
		host->row_addr_cycles = 3;
990
	else
991
		host->row_addr_cycles = 2;
E
eric miao 已提交
992

993
	mtd->name = mtd_names[0];
994
	return nand_scan_tail(mtd);
E
eric miao 已提交
995 996
}

997
static int alloc_nand_resource(struct platform_device *pdev)
E
eric miao 已提交
998 999
{
	struct pxa3xx_nand_info *info;
1000
	struct pxa3xx_nand_host *host;
1001
	struct nand_chip *chip;
E
eric miao 已提交
1002 1003
	struct mtd_info *mtd;
	struct resource *r;
1004
	int ret, irq;
E
eric miao 已提交
1005

1006
	info = kzalloc(sizeof(*info) + sizeof(*mtd) + sizeof(*host),
E
eric miao 已提交
1007
			GFP_KERNEL);
1008
	if (!info) {
E
eric miao 已提交
1009
		dev_err(&pdev->dev, "failed to allocate memory\n");
1010
		return -ENOMEM;
1011
	}
E
eric miao 已提交
1012

1013
	mtd = (struct mtd_info *)(&info[1]);
1014
	chip = (struct nand_chip *)(&mtd[1]);
1015
	host = (struct pxa3xx_nand_host *)chip;
E
eric miao 已提交
1016
	info->pdev = pdev;
1017 1018 1019 1020
	info->host = host;
	host->mtd = mtd;
	host->info_data = info;
	mtd->priv = host;
1021
	mtd->owner = THIS_MODULE;
E
eric miao 已提交
1022

1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
	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;
	chip->verify_buf	= pxa3xx_nand_verify_buf;

	spin_lock_init(&chip->controller->lock);
	init_waitqueue_head(&chip->controller->wq);
1037
	info->clk = clk_get(&pdev->dev, NULL);
E
eric miao 已提交
1038 1039 1040 1041 1042 1043 1044 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
	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;
	}

1075
	r = request_mem_region(r->start, resource_size(r), pdev->name);
E
eric miao 已提交
1076 1077 1078 1079 1080 1081
	if (r == NULL) {
		dev_err(&pdev->dev, "failed to request memory resource\n");
		ret = -EBUSY;
		goto fail_put_clk;
	}

1082
	info->mmio_base = ioremap(r->start, resource_size(r));
E
eric miao 已提交
1083 1084 1085 1086 1087
	if (info->mmio_base == NULL) {
		dev_err(&pdev->dev, "ioremap() failed\n");
		ret = -ENODEV;
		goto fail_free_res;
	}
1088
	info->mmio_phys = r->start;
E
eric miao 已提交
1089 1090 1091 1092 1093

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

1094 1095 1096
	/* initialize all interrupts to be disabled */
	disable_int(info, NDSR_MASK);

1097 1098
	ret = request_irq(irq, pxa3xx_nand_irq, IRQF_DISABLED,
			  pdev->name, info);
E
eric miao 已提交
1099 1100 1101 1102 1103
	if (ret < 0) {
		dev_err(&pdev->dev, "failed to request IRQ\n");
		goto fail_free_buf;
	}

1104
	platform_set_drvdata(pdev, info);
E
eric miao 已提交
1105

1106
	return 0;
E
eric miao 已提交
1107 1108

fail_free_buf:
1109
	free_irq(irq, info);
E
eric miao 已提交
1110 1111
	if (use_dma) {
		pxa_free_dma(info->data_dma_ch);
1112
		dma_free_coherent(&pdev->dev, MAX_BUFF_SIZE,
E
eric miao 已提交
1113 1114 1115 1116 1117 1118
			info->data_buff, info->data_buff_phys);
	} else
		kfree(info->data_buff);
fail_free_io:
	iounmap(info->mmio_base);
fail_free_res:
1119
	release_mem_region(r->start, resource_size(r));
E
eric miao 已提交
1120 1121 1122 1123
fail_put_clk:
	clk_disable(info->clk);
	clk_put(info->clk);
fail_free_mtd:
1124 1125
	kfree(info);
	return ret;
E
eric miao 已提交
1126 1127 1128 1129
}

static int pxa3xx_nand_remove(struct platform_device *pdev)
{
1130
	struct pxa3xx_nand_info *info = platform_get_drvdata(pdev);
1131
	struct resource *r;
1132
	int irq;
E
eric miao 已提交
1133

1134 1135 1136
	if (!info)
		return 0;

E
eric miao 已提交
1137 1138
	platform_set_drvdata(pdev, NULL);

1139 1140 1141
	irq = platform_get_irq(pdev, 0);
	if (irq >= 0)
		free_irq(irq, info);
E
eric miao 已提交
1142 1143
	if (use_dma) {
		pxa_free_dma(info->data_dma_ch);
1144
		dma_free_writecombine(&pdev->dev, MAX_BUFF_SIZE,
E
eric miao 已提交
1145 1146 1147
				info->data_buff, info->data_buff_phys);
	} else
		kfree(info->data_buff);
1148 1149 1150 1151 1152 1153 1154 1155

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

1156 1157
	nand_release(info->host->mtd);
	kfree(info);
E
eric miao 已提交
1158 1159 1160
	return 0;
}

1161 1162 1163 1164
static int pxa3xx_nand_probe(struct platform_device *pdev)
{
	struct pxa3xx_nand_platform_data *pdata;
	struct pxa3xx_nand_info *info;
1165
	int ret;
1166 1167 1168 1169 1170 1171 1172

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

1173 1174 1175 1176 1177
	ret = alloc_nand_resource(pdev);
	if (ret) {
		dev_err(&pdev->dev, "alloc nand resource failed\n");
		return ret;
	}
1178

1179 1180
	info = platform_get_drvdata(pdev);
	if (pxa3xx_nand_scan(info->host->mtd)) {
1181 1182 1183 1184 1185
		dev_err(&pdev->dev, "failed to scan nand\n");
		pxa3xx_nand_remove(pdev);
		return -ENODEV;
	}

1186
	return mtd_device_parse_register(info->host->mtd, NULL, 0,
1187
			pdata->parts, pdata->nr_parts);
1188 1189
}

E
eric miao 已提交
1190 1191 1192
#ifdef CONFIG_PM
static int pxa3xx_nand_suspend(struct platform_device *pdev, pm_message_t state)
{
1193
	struct pxa3xx_nand_info *info = platform_get_drvdata(pdev);
1194
	struct mtd_info *mtd = info->mtd;
E
eric miao 已提交
1195

L
Lei Wen 已提交
1196
	if (info->state) {
E
eric miao 已提交
1197 1198 1199 1200
		dev_err(&pdev->dev, "driver busy, state = %d\n", info->state);
		return -EAGAIN;
	}

1201
	mtd->suspend(mtd);
E
eric miao 已提交
1202 1203 1204 1205 1206
	return 0;
}

static int pxa3xx_nand_resume(struct platform_device *pdev)
{
1207
	struct pxa3xx_nand_info *info = platform_get_drvdata(pdev);
1208 1209 1210 1211
	struct mtd_info *mtd = info->mtd;

	/* We don't want to handle interrupt without calling mtd routine */
	disable_int(info, NDCR_INT_MASK);
E
eric miao 已提交
1212

1213 1214
	nand_writel(info, NDTR0CS0, info->host->ndtr0cs0);
	nand_writel(info, NDTR1CS0, info->host->ndtr1cs0);
E
eric miao 已提交
1215

1216 1217 1218 1219 1220 1221 1222 1223
	/*
	 * 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);
	mtd->resume(mtd);
1224
	return 0;
E
eric miao 已提交
1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254
}
#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");