summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/tegra_nand.c
blob: b919a6edb1b8a99b59e534a6d093acf844894060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
56
57
58
59
60
61
62
63
64
65
66
67
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
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
702
703
704
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
783
784
785
786
787
788
789
790
791
792
793
794
/*
 * Copyright (C) 2014-2015 Lucas Stach <dev@lynxeye.de>
 * Copyright (C) 2012 Avionic Design GmbH
 *
 * 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.
 */

#include <linux/clk.h>
#include <linux/completion.h>
#include <linux/delay.h>
#include <linux/dma-mapping.h>
#include <linux/err.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/mtd/nand.h>
#include <linux/mtd/partitions.h>
#include <linux/of_gpio.h>
#include <linux/of_mtd.h>
#include <linux/of.h>
#include <linux/platform_device.h>
#include <linux/reset.h>

#define CMD				0x00
#define   CMD_GO			(1 << 31)
#define   CMD_CLE			(1 << 30)
#define   CMD_ALE			(1 << 29)
#define   CMD_PIO			(1 << 28)
#define   CMD_TX			(1 << 27)
#define   CMD_RX			(1 << 26)
#define   CMD_SEC_CMD			(1 << 25)
#define   CMD_AFT_DAT			(1 << 24)
#define   CMD_TRANS_SIZE(x)		(((x) & 0xf) << 20)
#define   CMD_A_VALID			(1 << 19)
#define   CMD_B_VALID			(1 << 18)
#define   CMD_RD_STATUS_CHK		(1 << 17)
#define   CMD_RBSY_CHK			(1 << 16)
#define   CMD_CE(x)			(1 << (8 + ((x) & 0x7)))
#define   CMD_CLE_SIZE(x)		(((x) & 0x3) << 4)
#define   CMD_ALE_SIZE(x)		(((x) & 0xf) << 0)

#define STATUS				0x04

#define ISR				0x08
#define   ISR_UND			(1 << 7)
#define   ISR_OVR			(1 << 6)
#define   ISR_CMD_DONE			(1 << 5)
#define   ISR_ECC_ERR			(1 << 4)

#define IER				0x0c
#define   IER_ERR_TRIG_VAL(x)		(((x) & 0xf) << 16)
#define   IER_UND			(1 << 7)
#define   IER_OVR			(1 << 6)
#define   IER_CMD_DONE			(1 << 5)
#define   IER_ECC_ERR			(1 << 4)
#define   IER_GIE			(1 << 0)

#define CFG				0x10
#define   CFG_HW_ECC			(1 << 31)
#define   CFG_ECC_SEL			(1 << 30)
#define   CFG_ERR_COR			(1 << 29)
#define   CFG_PIPE_EN			(1 << 28)
#define   CFG_TVAL_4			(0 << 24)
#define   CFG_TVAL_6			(1 << 24)
#define   CFG_TVAL_8			(2 << 24)
#define   CFG_SKIP_SPARE		(1 << 23)
#define   CFG_BUS_WIDTH_8		(0 << 21)
#define   CFG_BUS_WIDTH_16		(1 << 21)
#define   CFG_COM_BSY			(1 << 20)
#define   CFG_PS_256			(0 << 16)
#define   CFG_PS_512			(1 << 16)
#define   CFG_PS_1024			(2 << 16)
#define   CFG_PS_2048			(3 << 16)
#define   CFG_PS_4096			(4 << 16)
#define   CFG_SKIP_SPARE_SIZE_4		(0 << 14)
#define   CFG_SKIP_SPARE_SIZE_8		(1 << 14)
#define   CFG_SKIP_SPARE_SIZE_12	(2 << 14)
#define   CFG_SKIP_SPARE_SIZE_16	(3 << 14)
#define   CFG_TAG_BYTE_SIZE(x)		((x) & 0xff)

#define TIMING_1			0x14
#define   TIMING_TRP_RESP(x)		(((x) & 0xf) << 28)
#define   TIMING_TWB(x)			(((x) & 0xf) << 24)
#define   TIMING_TCR_TAR_TRR(x)		(((x) & 0xf) << 20)
#define   TIMING_TWHR(x)		(((x) & 0xf) << 16)
#define   TIMING_TCS(x)			(((x) & 0xc) << 14)
#define   TIMING_TWH(x)			(((x) & 0x3) << 12)
#define   TIMING_TWP(x)			(((x) & 0xf) <<  8)
#define   TIMING_TRH(x)			(((x) & 0xf) <<  4)
#define   TIMING_TRP(x)			(((x) & 0xf) <<  0)

#define RESP				0x18

#define TIMING_2			0x1c
#define   TIMING_TADL(x)		((x) & 0xf)

#define CMD_1				0x20
#define CMD_2				0x24
#define ADDR_1				0x28
#define ADDR_2				0x2c

#define DMA_CTRL			0x30
#define   DMA_CTRL_GO			(1 << 31)
#define   DMA_CTRL_IN			(0 << 30)
#define   DMA_CTRL_OUT			(1 << 30)
#define   DMA_CTRL_PERF_EN		(1 << 29)
#define   DMA_CTRL_IE_DONE		(1 << 28)
#define   DMA_CTRL_REUSE		(1 << 27)
#define   DMA_CTRL_BURST_1		(2 << 24)
#define   DMA_CTRL_BURST_4		(3 << 24)
#define   DMA_CTRL_BURST_8		(4 << 24)
#define   DMA_CTRL_BURST_16		(5 << 24)
#define   DMA_CTRL_IS_DONE		(1 << 20)
#define   DMA_CTRL_EN_A			(1 <<  2)
#define   DMA_CTRL_EN_B			(1 <<  1)

#define DMA_CFG_A			0x34
#define DMA_CFG_B			0x38

#define FIFO_CTRL			0x3c
#define   FIFO_CTRL_CLR_ALL		(1 << 3)

#define DATA_PTR			0x40
#define TAG_PTR				0x44
#define ECC_PTR				0x48

#define HWSTATUS_CMD			0x50
#define HWSTATUS_MASK			0x54
#define   HWSTATUS_RDSTATUS_MASK(x)	(((x) & 0xff) << 24)
#define   HWSTATUS_RDSTATUS_VALUE(x)	(((x) & 0xff) << 16)
#define   HWSTATUS_RBSY_MASK(x)		(((x) & 0xff) << 8)
#define   HWSTATUS_RBSY_VALUE(x)	(((x) & 0xff) << 0)

#define DEC_RESULT			0xd0
#define   DEC_RESULT_CORRFAIL		(1 << 8)

#define DEC_STATUS_BUF			0xd4
#define   DEC_STATUS_BUF_FAIL_SEC_FLAG(x)	((x) & (0xff << 24))
#define   DEC_STATUS_BUF_CORR_SEC_FLAG(x)	((x) & (0xff << 16))
#define   DEC_STATUS_BUF_MAX_CORR_CNT(x)	(((x) & 0xf00) >> 8)

struct tegra_nand {
	void __iomem *regs;
	int irq;
	struct clk *clk;
	struct reset_control *rst;
	int wp_gpio;
	int buswidth;

	struct nand_chip chip;
	struct mtd_info mtd;
	struct device *dev;

	struct completion command_complete;
	struct completion dma_complete;

	dma_addr_t data_dma;
	void *data_buf;
	dma_addr_t oob_dma;
	void *oob_buf;

	int cur_chip;
};

static inline struct tegra_nand *to_tegra_nand(struct mtd_info *mtd)
{
	return container_of(mtd, struct tegra_nand, mtd);
}

static struct nand_ecclayout tegra_nand_oob_16 = {
	.eccbytes = 4,
	.eccpos = { 3, 4, 5, 6 },
	.oobfree = {
		{ .offset = 8, . length = 8 }
	}
};

static struct nand_ecclayout tegra_nand_oob_64 = {
	.eccbytes = 36,
	.eccpos = {
		 3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
		19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
		35, 36, 37, 38, 39
	},
	.oobfree = {
		{ .offset = 40, .length = 20 }
	}
};

static struct nand_ecclayout tegra_nand_oob_128 = {
	.eccbytes = 72,
	.eccpos = {
		 3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
		19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 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, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66,
		67, 68, 69, 70, 71, 72, 73, 74, 75
	},
	.oobfree = {
		{ .offset = 76, .length = 52 }
	}
};

static struct nand_ecclayout tegra_nand_oob_224 = {
	.eccbytes = 144,
	.eccpos = {
		  3,   4,   5,   6,   7,   8,   9,  10,  11,  12,  13,  14,
		 15,  16,  17,  18,  19,  20,  21,  22,  23,  24,  25,  26,
		 27,  28,  29,  30,  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,  56,  57,  58,  59,  60,  61,  62,
		 63,  64,  65,  66,  67,  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, 106, 107, 108, 109, 110,
		111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122,
		123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
		135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146,
		147
	},
	.oobfree = {
		{ .offset = 148, .length = 76 }
	}
};

static irqreturn_t tegra_nand_irq(int irq, void *data)
{
	struct tegra_nand *nand = data;
	irqreturn_t ret = IRQ_HANDLED;
	u32 isr, dma;

	isr = readl(nand->regs + ISR);
	dma = readl(nand->regs + DMA_CTRL);

	if (!isr && !(dma & DMA_CTRL_IS_DONE)) {
		ret = IRQ_NONE;
		goto out;
	}

	if (isr & ISR_CMD_DONE)
		complete(&nand->command_complete);

	if (isr & ISR_UND)
		dev_dbg(nand->dev, "  FIFO underrun\n");

	if (isr & ISR_OVR)
		dev_dbg(nand->dev, "  FIFO overrun\n");

	/* handle DMA interrupts */
	if (dma & DMA_CTRL_IS_DONE) {
		writel(dma, nand->regs + DMA_CTRL);
		complete(&nand->dma_complete);
	}

	/* clear interrupts */
	writel(isr, nand->regs + ISR);

out:
	return ret;
}

static void tegra_nand_command(struct mtd_info *mtd, unsigned int command,
			       int column, int page_addr)
{
	struct tegra_nand *nand = to_tegra_nand(mtd);
	u32 value;

	switch (command) {
	case NAND_CMD_READOOB:
		column += mtd->writesize;
		/* fall-through */

	case NAND_CMD_READ0:
		writel(NAND_CMD_READ0, nand->regs + CMD_1);
		writel(NAND_CMD_READSTART, nand->regs + CMD_2);

		value = (page_addr << 16) | (column & 0xffff);
		writel(value, nand->regs + ADDR_1);

		value = page_addr >> 16;
		writel(value, nand->regs + ADDR_2);

		value = CMD_CLE | CMD_ALE | CMD_ALE_SIZE(4) | CMD_SEC_CMD |
			CMD_RBSY_CHK | CMD_CE(nand->cur_chip) | CMD_GO;
		writel(value, nand->regs + CMD);
		break;

	case NAND_CMD_SEQIN:
		writel(NAND_CMD_SEQIN, nand->regs + CMD_1);

		value = (page_addr << 16) | (column & 0xffff);
		writel(value, nand->regs + ADDR_1);

		value = page_addr >> 16;
		writel(value, nand->regs + ADDR_2);

		value = CMD_CLE | CMD_ALE | CMD_ALE_SIZE(4) |
			CMD_CE(nand->cur_chip) | CMD_GO;
		writel(value, nand->regs + CMD);
		break;

	case NAND_CMD_PAGEPROG:
		writel(NAND_CMD_PAGEPROG, nand->regs + CMD_1);

		value = CMD_CLE | CMD_CE(nand->cur_chip) | CMD_GO;
		writel(value, nand->regs + CMD);
		break;

	case NAND_CMD_READID:
		writel(NAND_CMD_READID, nand->regs + CMD_1);
		writel(column & 0xff, nand->regs + ADDR_1);

		value = CMD_GO | CMD_CLE | CMD_ALE | CMD_CE(nand->cur_chip);
		writel(value, nand->regs + CMD);
		break;

	case NAND_CMD_ERASE1:
		writel(NAND_CMD_ERASE1, nand->regs + CMD_1);
		writel(NAND_CMD_ERASE2, nand->regs + CMD_2);
		writel(page_addr, nand->regs + ADDR_1);

		value = CMD_GO | CMD_CLE | CMD_ALE | CMD_ALE_SIZE(2) |
			CMD_SEC_CMD | CMD_RBSY_CHK | CMD_CE(nand->cur_chip);
		writel(value, nand->regs + CMD);
		break;

	case NAND_CMD_ERASE2:
		return;

	case NAND_CMD_STATUS:
		writel(NAND_CMD_STATUS, nand->regs + CMD_1);

		value = CMD_GO | CMD_CLE | CMD_CE(nand->cur_chip);
		writel(value, nand->regs + CMD);
		break;

	case NAND_CMD_PARAM:
		writel(NAND_CMD_PARAM, nand->regs + CMD_1);
		writel(column & 0xff, nand->regs + ADDR_1);
		value = CMD_GO | CMD_CLE | CMD_ALE | CMD_CE(nand->cur_chip);
		writel(value, nand->regs + CMD);
		break;

	case NAND_CMD_RESET:
		writel(NAND_CMD_RESET, nand->regs + CMD_1);

		value = CMD_GO | CMD_CLE | CMD_CE(nand->cur_chip);
		writel(value, nand->regs + CMD);
		break;

	default:
		dev_warn(nand->dev, "unsupported command: %x\n", command);
		return;
	}

	wait_for_completion(&nand->command_complete);
}

static void tegra_nand_select_chip(struct mtd_info *mtd, int chip)
{
	struct tegra_nand *nand = to_tegra_nand(mtd);

	nand->cur_chip = chip;
}

static uint8_t tegra_nand_read_byte(struct mtd_info *mtd)
{
	struct tegra_nand *nand = to_tegra_nand(mtd);
	u32 value;

	value = CMD_TRANS_SIZE(0) | CMD_CE(nand->cur_chip) |
		CMD_PIO | CMD_RX | CMD_A_VALID | CMD_GO;

	writel(value, nand->regs + CMD);
	wait_for_completion(&nand->command_complete);

	return readl(nand->regs + RESP) & 0xff;
}

static void tegra_nand_read_buf(struct mtd_info *mtd, uint8_t *buffer,
				int length)
{
	struct tegra_nand *nand = to_tegra_nand(mtd);
	size_t i;

	for (i = 0; i < length; i += 4) {
		u32 value;
		size_t n = min_t(size_t, length - i, 4);

		value = CMD_GO | CMD_PIO | CMD_RX | CMD_A_VALID |
			CMD_CE(nand->cur_chip) | CMD_TRANS_SIZE(n - 1);

		writel(value, nand->regs + CMD);
		wait_for_completion(&nand->command_complete);

		value = readl(nand->regs + RESP);
		memcpy(buffer + i, &value, n);
	}
}

static void tegra_nand_write_buf(struct mtd_info *mtd, const uint8_t *buffer,
				 int length)
{
	struct tegra_nand *nand = to_tegra_nand(mtd);
	size_t i;

	for (i = 0; i < length; i += 4) {
		u32 value;
		size_t n = min_t(size_t, length - i, 4);

		memcpy(&value, buffer + i, n);
		writel(value, nand->regs + RESP);

		value = CMD_GO | CMD_PIO | CMD_TX | CMD_A_VALID |
			CMD_CE(nand->cur_chip) | CMD_TRANS_SIZE(n - 1);

		writel(value, nand->regs + CMD);
		wait_for_completion(&nand->command_complete);
	}
}

static int tegra_nand_read_page(struct mtd_info *mtd, struct nand_chip *chip,
				uint8_t *buf, int oob_required, int page)
{
	struct tegra_nand *nand = to_tegra_nand(mtd);
	u32 value;

	writel(mtd->writesize - 1, nand->regs + DMA_CFG_A);
	writel(nand->data_dma, nand->regs + DATA_PTR);

	if (oob_required) {
		writel(mtd->oobsize - 1, nand->regs + DMA_CFG_B);
		writel(nand->oob_dma, nand->regs + TAG_PTR);
	} else {
		writel(0, nand->regs + DMA_CFG_B);
		writel(0, nand->regs + TAG_PTR);
	}

	value = DMA_CTRL_GO | DMA_CTRL_IN | DMA_CTRL_PERF_EN |
		DMA_CTRL_REUSE | DMA_CTRL_IE_DONE | DMA_CTRL_IS_DONE |
		DMA_CTRL_BURST_8 | DMA_CTRL_EN_A;

	if (oob_required)
		value |= DMA_CTRL_EN_B;

	writel(value, nand->regs + DMA_CTRL);

	value = CMD_GO | CMD_RX | CMD_TRANS_SIZE(8) |
		CMD_A_VALID | CMD_CE(nand->cur_chip);
	if (oob_required)
		value |= CMD_B_VALID;
	writel(value, nand->regs + CMD);

	wait_for_completion(&nand->command_complete);
	wait_for_completion(&nand->dma_complete);

	if (oob_required)
		memcpy(chip->oob_poi, nand->oob_buf, mtd->oobsize);
	memcpy(buf, nand->data_buf, mtd->writesize);

	value = readl(nand->regs + DEC_RESULT);
	if (value & DEC_RESULT_CORRFAIL) {
		value = readl(nand->regs + DEC_STATUS_BUF);

		if (DEC_STATUS_BUF_FAIL_SEC_FLAG(value))
			return -1;

		if (DEC_STATUS_BUF_CORR_SEC_FLAG(value))
			return DEC_STATUS_BUF_MAX_CORR_CNT(value);
	}

	return 0;
}

static int tegra_nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
				 const uint8_t *buf, int oob_required)
{
	struct tegra_nand *nand = to_tegra_nand(mtd);
	unsigned long value;
	int ret = 0;

	memcpy(nand->data_buf, buf, mtd->writesize);

	writel(mtd->writesize - 1, nand->regs + DMA_CFG_A);
	writel(nand->data_dma, nand->regs + DATA_PTR);

	writel(0, nand->regs + DMA_CFG_B);
	writel(0, nand->regs + TAG_PTR);

	value = DMA_CTRL_GO | DMA_CTRL_OUT | DMA_CTRL_PERF_EN |
		DMA_CTRL_IE_DONE | DMA_CTRL_IS_DONE |
		DMA_CTRL_BURST_8 | DMA_CTRL_EN_A;
	writel(value, nand->regs + DMA_CTRL);

	value = CMD_GO | CMD_TX | CMD_A_VALID | CMD_TRANS_SIZE(8) |
		CMD_CE(nand->cur_chip);
	writel(value, nand->regs + CMD);

	wait_for_completion(&nand->command_complete);
	wait_for_completion(&nand->dma_complete);

	return ret;
}

static void tegra_nand_setup_timing(struct tegra_nand *nand, int mode)
{
	unsigned long rate = clk_get_rate(nand->clk) / 1000000;
	unsigned long period = 1000000 / rate;
	const struct nand_sdr_timings *timings;
	u32 val, reg = 0;

	timings = onfi_async_timing_mode_to_sdr_timings(mode);

	val = max3(timings->tAR_min, timings->tRR_min,
		   timings->tRC_min) / period;
	if (val > 2)
		val -= 2;
	reg |= TIMING_TCR_TAR_TRR(val);

	val = max(max(timings->tCS_min, timings->tCH_min),
		  max(timings->tALS_min, timings->tALH_min)) / period;
	if (val > 1)
		val -= 1;
	reg |= TIMING_TCS(val);

	val = max(timings->tRP_min, timings->tREA_max) + 6000;
	reg |= TIMING_TRP(val / 1000);
	reg |= TIMING_TRP_RESP(val / period);

	reg |= TIMING_TWB(timings->tWB_max / period);
	reg |= TIMING_TWHR(timings->tWHR_min / period);
	reg |= TIMING_TWH(timings->tWH_min / 1000);
	reg |= TIMING_TWP(timings->tWP_min / 1000);
	reg |= TIMING_TRH(timings->tRHW_min / 1000);

	writel(reg, nand->regs + TIMING_1);

	val = timings->tADL_min / period;
	if (val > 2)
		val -= 2;
	reg = TIMING_TADL(val);

	writel(reg, nand->regs + TIMING_2);
}

static void tegra_nand_setup_chiptiming(struct tegra_nand *nand)
{
	struct nand_chip *chip = &nand->chip;
	int mode;

	mode = onfi_get_async_timing_mode(chip);
	if (mode == ONFI_TIMING_MODE_UNKNOWN)
		mode = chip->onfi_timing_mode_default;
	else
		mode = fls(mode);

	tegra_nand_setup_timing(nand, mode);
}

static int tegra_nand_parse_dt(struct device_node *node,
			       struct tegra_nand *nand)
{
	enum of_gpio_flags flags;

	nand->wp_gpio = of_get_named_gpio_flags(node, "nvidia,wp-gpios", 0,
						 &flags);
	if (nand->wp_gpio < 0)
		nand->wp_gpio = 0;

	nand->buswidth = of_get_nand_bus_width(node);
	if (nand->buswidth < 0)
		return nand->buswidth;

	return 0;
}

static const char * const part_probes[] = {
	"cmdlinepart", "ofpart", NULL };

static int tegra_nand_probe(struct platform_device *pdev)
{
	struct tegra_nand *nand;
	struct nand_chip *chip;
	struct mtd_info *mtd;
	struct resource *res;
	unsigned long value;
	int err = 0;

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

	nand->dev = &pdev->dev;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	nand->regs = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(nand->regs))
		return PTR_ERR(nand->regs);

	nand->irq  = platform_get_irq(pdev, 0);
	err = devm_request_irq(&pdev->dev, nand->irq, tegra_nand_irq, 0,
			       dev_name(&pdev->dev), nand);
	if (err)
		return err;

	nand->rst = devm_reset_control_get(&pdev->dev, "nand");
	if (IS_ERR(nand->rst))
		return PTR_ERR(nand->rst);

	nand->clk = devm_clk_get(&pdev->dev, "nand");
	if (IS_ERR(nand->clk))
		return PTR_ERR(nand->clk);

	err = tegra_nand_parse_dt(pdev->dev.of_node, nand);
	if (err)
		return err;

	err = clk_prepare_enable(nand->clk);
	if (err)
		return err;

	reset_control_assert(nand->rst);
	udelay(2);
	reset_control_deassert(nand->rst);

	if (gpio_is_valid(nand->wp_gpio)) {
		err = devm_gpio_request_one(&pdev->dev, nand->wp_gpio,
				GPIOF_OUT_INIT_HIGH, "tegra-nand-wp");
		if (err)
			return err;
	}

	value = HWSTATUS_RDSTATUS_MASK(1) | HWSTATUS_RDSTATUS_VALUE(0) |
		HWSTATUS_RBSY_MASK(NAND_STATUS_READY) |
		HWSTATUS_RBSY_VALUE(NAND_STATUS_READY);
	writel(NAND_CMD_STATUS, nand->regs + HWSTATUS_CMD);
	writel(value, nand->regs + HWSTATUS_MASK);

	init_completion(&nand->command_complete);
	init_completion(&nand->dma_complete);

	mtd = &nand->mtd;
	mtd->name = dev_name(&pdev->dev);
	mtd->owner = THIS_MODULE;
	mtd->priv = &nand->chip;

	mtd->type = MTD_NANDFLASH;
	mtd->flags = MTD_CAP_NANDFLASH;

	/* clear interrupts */
	value = readl(nand->regs + ISR);
	writel(value, nand->regs + ISR);

	writel(DMA_CTRL_IS_DONE, nand->regs + DMA_CTRL);

	/* enable interrupts */
	value = IER_UND | IER_OVR | IER_CMD_DONE | IER_ECC_ERR | IER_GIE;
	writel(value, nand->regs + IER);

	chip = &nand->chip;
	chip->cmdfunc = tegra_nand_command;
	chip->select_chip = tegra_nand_select_chip;
	chip->read_byte = tegra_nand_read_byte;
	chip->read_buf = tegra_nand_read_buf;
	chip->write_buf = tegra_nand_write_buf;

	tegra_nand_setup_timing(nand, 0);

	err = nand_scan_ident(mtd, 1, NULL);
	if (err)
		return err;

	nand->data_buf = dmam_alloc_coherent(&pdev->dev, mtd->writesize,
					    &nand->data_dma, GFP_KERNEL);
	if (!nand->data_buf)
		return -ENOMEM;

	nand->oob_buf = dmam_alloc_coherent(&pdev->dev, mtd->oobsize,
					    &nand->oob_dma, GFP_KERNEL);
	if (!nand->oob_buf)
		return -ENOMEM;

	chip->ecc.mode = NAND_ECC_HW;
	chip->ecc.size = 512;
	chip->ecc.bytes = mtd->oobsize;
	chip->ecc.read_page = tegra_nand_read_page;
	chip->ecc.write_page = tegra_nand_write_page;

	value = CFG_HW_ECC | CFG_ECC_SEL | CFG_ERR_COR | CFG_PIPE_EN |
		CFG_TVAL_8 | CFG_SKIP_SPARE | CFG_SKIP_SPARE_SIZE_4;

	switch (mtd->oobsize) {
	case 16:
		chip->ecc.layout = &tegra_nand_oob_16;
		chip->ecc.strength = 1;
		value |= CFG_TAG_BYTE_SIZE(4);
		break;
	case 64:
		chip->ecc.layout = &tegra_nand_oob_64;
		chip->ecc.strength = 8;
		value |= CFG_TAG_BYTE_SIZE(36);
		break;
	case 128:
		chip->ecc.layout = &tegra_nand_oob_128;
		chip->ecc.strength = 8;
		value |= CFG_TAG_BYTE_SIZE(72);
		break;
	case 224:
		chip->ecc.layout = &tegra_nand_oob_224;
		chip->ecc.strength = 8;
		value |= CFG_TAG_BYTE_SIZE(144);
		break;
	default:
		dev_err(&pdev->dev, "unhandled OOB size %d\n", mtd->oobsize);
		return -ENODEV;
	}

	switch (mtd->writesize) {
	case 256:
		value |= CFG_PS_256;
		break;
	case 512:
		value |= CFG_PS_512;
		break;
	case 1024:
		value |= CFG_PS_1024;
		break;
	case 2048:
		value |= CFG_PS_2048;
		break;
	case 4096:
		value |= CFG_PS_4096;
		break;
	default:
		dev_err(&pdev->dev, "unhandled writesize %d\n", mtd->writesize);
		return -ENODEV;
	}

	if (nand->buswidth == 16)
		value |= CFG_BUS_WIDTH_16;

	writel(value, nand->regs + CFG);

	tegra_nand_setup_chiptiming(nand);

	err = nand_scan_tail(mtd);
	if (err)
		return err;

	mtd_device_parse_register(mtd, NULL,
				  &(struct mtd_part_parser_data) {
					.of_node = pdev->dev.of_node,
				  },
				  NULL, 0);

	platform_set_drvdata(pdev, nand);

	return 0;
}

static int tegra_nand_remove(struct platform_device *pdev)
{
	struct tegra_nand *nand = platform_get_drvdata(pdev);

	nand_release(&nand->mtd);

	clk_disable_unprepare(nand->clk);

	return 0;
}

static const struct of_device_id tegra_nand_of_match[] = {
	{ .compatible = "nvidia,tegra20-nand" },
	{ .compatible = "nvidia,tegra30-nand" },
	{ }
};

static struct platform_driver tegra_nand_driver = {
	.driver = {
		.name = "tegra-nand",
		.of_match_table = tegra_nand_of_match,
	},
	.probe = tegra_nand_probe,
	.remove = tegra_nand_remove,
};
module_platform_driver(tegra_nand_driver);

MODULE_DESCRIPTION("NVIDIA Tegra NAND driver");
MODULE_AUTHOR("Thierry Reding <thierry.reding@avionic-design.de");
MODULE_AUTHOR("Lucas Stach <dev@lynxeye.de");
MODULE_LICENSE("GPL v2");
MODULE_DEVICE_TABLE(of, tegra_nand_of_match);