193db446aSBoris Brezillon // SPDX-License-Identifier: GPL-2.0
293db446aSBoris Brezillon /*
393db446aSBoris Brezillon  * Marvell NAND flash controller driver
493db446aSBoris Brezillon  *
593db446aSBoris Brezillon  * Copyright (C) 2017 Marvell
693db446aSBoris Brezillon  * Author: Miquel RAYNAL <miquel.raynal@free-electrons.com>
793db446aSBoris Brezillon  *
833c1c5feSMiquel Raynal  *
933c1c5feSMiquel Raynal  * This NAND controller driver handles two versions of the hardware,
1033c1c5feSMiquel Raynal  * one is called NFCv1 and is available on PXA SoCs and the other is
1133c1c5feSMiquel Raynal  * called NFCv2 and is available on Armada SoCs.
1233c1c5feSMiquel Raynal  *
1333c1c5feSMiquel Raynal  * The main visible difference is that NFCv1 only has Hamming ECC
1433c1c5feSMiquel Raynal  * capabilities, while NFCv2 also embeds a BCH ECC engine. Also, DMA
1533c1c5feSMiquel Raynal  * is not used with NFCv2.
1633c1c5feSMiquel Raynal  *
1733c1c5feSMiquel Raynal  * The ECC layouts are depicted in details in Marvell AN-379, but here
1833c1c5feSMiquel Raynal  * is a brief description.
1933c1c5feSMiquel Raynal  *
2033c1c5feSMiquel Raynal  * When using Hamming, the data is split in 512B chunks (either 1, 2
2133c1c5feSMiquel Raynal  * or 4) and each chunk will have its own ECC "digest" of 6B at the
2233c1c5feSMiquel Raynal  * beginning of the OOB area and eventually the remaining free OOB
2333c1c5feSMiquel Raynal  * bytes (also called "spare" bytes in the driver). This engine
2433c1c5feSMiquel Raynal  * corrects up to 1 bit per chunk and detects reliably an error if
2533c1c5feSMiquel Raynal  * there are at most 2 bitflips. Here is the page layout used by the
2633c1c5feSMiquel Raynal  * controller when Hamming is chosen:
2733c1c5feSMiquel Raynal  *
2833c1c5feSMiquel Raynal  * +-------------------------------------------------------------+
2933c1c5feSMiquel Raynal  * | Data 1 | ... | Data N | ECC 1 | ... | ECCN | Free OOB bytes |
3033c1c5feSMiquel Raynal  * +-------------------------------------------------------------+
3133c1c5feSMiquel Raynal  *
3233c1c5feSMiquel Raynal  * When using the BCH engine, there are N identical (data + free OOB +
3333c1c5feSMiquel Raynal  * ECC) sections and potentially an extra one to deal with
3433c1c5feSMiquel Raynal  * configurations where the chosen (data + free OOB + ECC) sizes do
3533c1c5feSMiquel Raynal  * not align with the page (data + OOB) size. ECC bytes are always
3633c1c5feSMiquel Raynal  * 30B per ECC chunk. Here is the page layout used by the controller
3733c1c5feSMiquel Raynal  * when BCH is chosen:
3833c1c5feSMiquel Raynal  *
3933c1c5feSMiquel Raynal  * +-----------------------------------------
4033c1c5feSMiquel Raynal  * | Data 1 | Free OOB bytes 1 | ECC 1 | ...
4133c1c5feSMiquel Raynal  * +-----------------------------------------
4233c1c5feSMiquel Raynal  *
4333c1c5feSMiquel Raynal  *      -------------------------------------------
4433c1c5feSMiquel Raynal  *       ... | Data N | Free OOB bytes N | ECC N |
4533c1c5feSMiquel Raynal  *      -------------------------------------------
4633c1c5feSMiquel Raynal  *
4733c1c5feSMiquel Raynal  *           --------------------------------------------+
4833c1c5feSMiquel Raynal  *            Last Data | Last Free OOB bytes | Last ECC |
4933c1c5feSMiquel Raynal  *           --------------------------------------------+
5033c1c5feSMiquel Raynal  *
5133c1c5feSMiquel Raynal  * In both cases, the layout seen by the user is always: all data
5233c1c5feSMiquel Raynal  * first, then all free OOB bytes and finally all ECC bytes. With BCH,
5333c1c5feSMiquel Raynal  * ECC bytes are 30B long and are padded with 0xFF to align on 32
5433c1c5feSMiquel Raynal  * bytes.
5533c1c5feSMiquel Raynal  *
5633c1c5feSMiquel Raynal  * The controller has certain limitations that are handled by the
5733c1c5feSMiquel Raynal  * driver:
5833c1c5feSMiquel Raynal  *   - It can only read 2k at a time. To overcome this limitation, the
5933c1c5feSMiquel Raynal  *     driver issues data cycles on the bus, without issuing new
6033c1c5feSMiquel Raynal  *     CMD + ADDR cycles. The Marvell term is "naked" operations.
6133c1c5feSMiquel Raynal  *   - The ECC strength in BCH mode cannot be tuned. It is fixed 16
6233c1c5feSMiquel Raynal  *     bits. What can be tuned is the ECC block size as long as it
6333c1c5feSMiquel Raynal  *     stays between 512B and 2kiB. It's usually chosen based on the
6433c1c5feSMiquel Raynal  *     chip ECC requirements. For instance, using 2kiB ECC chunks
6533c1c5feSMiquel Raynal  *     provides 4b/512B correctability.
6633c1c5feSMiquel Raynal  *   - The controller will always treat data bytes, free OOB bytes
6733c1c5feSMiquel Raynal  *     and ECC bytes in that order, no matter what the real layout is
6833c1c5feSMiquel Raynal  *     (which is usually all data then all OOB bytes). The
6933c1c5feSMiquel Raynal  *     marvell_nfc_layouts array below contains the currently
7033c1c5feSMiquel Raynal  *     supported layouts.
7133c1c5feSMiquel Raynal  *   - Because of these weird layouts, the Bad Block Markers can be
7233c1c5feSMiquel Raynal  *     located in data section. In this case, the NAND_BBT_NO_OOB_BBM
7333c1c5feSMiquel Raynal  *     option must be set to prevent scanning/writing bad block
7433c1c5feSMiquel Raynal  *     markers.
7593db446aSBoris Brezillon  */
7693db446aSBoris Brezillon 
7793db446aSBoris Brezillon #include <linux/module.h>
7893db446aSBoris Brezillon #include <linux/clk.h>
7993db446aSBoris Brezillon #include <linux/mtd/rawnand.h>
8093db446aSBoris Brezillon #include <linux/of_platform.h>
8193db446aSBoris Brezillon #include <linux/iopoll.h>
8293db446aSBoris Brezillon #include <linux/interrupt.h>
8393db446aSBoris Brezillon #include <linux/slab.h>
8493db446aSBoris Brezillon #include <linux/mfd/syscon.h>
8593db446aSBoris Brezillon #include <linux/regmap.h>
8693db446aSBoris Brezillon #include <asm/unaligned.h>
8793db446aSBoris Brezillon 
8893db446aSBoris Brezillon #include <linux/dmaengine.h>
8993db446aSBoris Brezillon #include <linux/dma-mapping.h>
9093db446aSBoris Brezillon #include <linux/dma/pxa-dma.h>
9193db446aSBoris Brezillon #include <linux/platform_data/mtd-nand-pxa3xx.h>
9293db446aSBoris Brezillon 
9393db446aSBoris Brezillon /* Data FIFO granularity, FIFO reads/writes must be a multiple of this length */
9493db446aSBoris Brezillon #define FIFO_DEPTH		8
9593db446aSBoris Brezillon #define FIFO_REP(x)		(x / sizeof(u32))
9693db446aSBoris Brezillon #define BCH_SEQ_READS		(32 / FIFO_DEPTH)
9793db446aSBoris Brezillon /* NFC does not support transfers of larger chunks at a time */
9893db446aSBoris Brezillon #define MAX_CHUNK_SIZE		2112
9993db446aSBoris Brezillon /* NFCv1 cannot read more that 7 bytes of ID */
10093db446aSBoris Brezillon #define NFCV1_READID_LEN	7
10193db446aSBoris Brezillon /* Polling is done at a pace of POLL_PERIOD us until POLL_TIMEOUT is reached */
10293db446aSBoris Brezillon #define POLL_PERIOD		0
10393db446aSBoris Brezillon #define POLL_TIMEOUT		100000
10493db446aSBoris Brezillon /* Interrupt maximum wait period in ms */
10593db446aSBoris Brezillon #define IRQ_TIMEOUT		1000
10693db446aSBoris Brezillon /* Latency in clock cycles between SoC pins and NFC logic */
10793db446aSBoris Brezillon #define MIN_RD_DEL_CNT		3
10893db446aSBoris Brezillon /* Maximum number of contiguous address cycles */
10993db446aSBoris Brezillon #define MAX_ADDRESS_CYC_NFCV1	5
11093db446aSBoris Brezillon #define MAX_ADDRESS_CYC_NFCV2	7
11193db446aSBoris Brezillon /* System control registers/bits to enable the NAND controller on some SoCs */
11293db446aSBoris Brezillon #define GENCONF_SOC_DEVICE_MUX	0x208
11393db446aSBoris Brezillon #define GENCONF_SOC_DEVICE_MUX_NFC_EN BIT(0)
11493db446aSBoris Brezillon #define GENCONF_SOC_DEVICE_MUX_ECC_CLK_RST BIT(20)
11593db446aSBoris Brezillon #define GENCONF_SOC_DEVICE_MUX_ECC_CORE_RST BIT(21)
11693db446aSBoris Brezillon #define GENCONF_SOC_DEVICE_MUX_NFC_INT_EN BIT(25)
11793db446aSBoris Brezillon #define GENCONF_CLK_GATING_CTRL	0x220
11893db446aSBoris Brezillon #define GENCONF_CLK_GATING_CTRL_ND_GATE BIT(2)
11993db446aSBoris Brezillon #define GENCONF_ND_CLK_CTRL	0x700
12093db446aSBoris Brezillon #define GENCONF_ND_CLK_CTRL_EN	BIT(0)
12193db446aSBoris Brezillon 
12293db446aSBoris Brezillon /* NAND controller data flash control register */
12393db446aSBoris Brezillon #define NDCR			0x00
12493db446aSBoris Brezillon #define NDCR_ALL_INT		GENMASK(11, 0)
12593db446aSBoris Brezillon #define NDCR_CS1_CMDDM		BIT(7)
12693db446aSBoris Brezillon #define NDCR_CS0_CMDDM		BIT(8)
12793db446aSBoris Brezillon #define NDCR_RDYM		BIT(11)
12893db446aSBoris Brezillon #define NDCR_ND_ARB_EN		BIT(12)
12993db446aSBoris Brezillon #define NDCR_RA_START		BIT(15)
13093db446aSBoris Brezillon #define NDCR_RD_ID_CNT(x)	(min_t(unsigned int, x, 0x7) << 16)
13193db446aSBoris Brezillon #define NDCR_PAGE_SZ(x)		(x >= 2048 ? BIT(24) : 0)
13293db446aSBoris Brezillon #define NDCR_DWIDTH_M		BIT(26)
13393db446aSBoris Brezillon #define NDCR_DWIDTH_C		BIT(27)
13493db446aSBoris Brezillon #define NDCR_ND_RUN		BIT(28)
13593db446aSBoris Brezillon #define NDCR_DMA_EN		BIT(29)
13693db446aSBoris Brezillon #define NDCR_ECC_EN		BIT(30)
13793db446aSBoris Brezillon #define NDCR_SPARE_EN		BIT(31)
13893db446aSBoris Brezillon #define NDCR_GENERIC_FIELDS_MASK (~(NDCR_RA_START | NDCR_PAGE_SZ(2048) | \
13993db446aSBoris Brezillon 				    NDCR_DWIDTH_M | NDCR_DWIDTH_C))
14093db446aSBoris Brezillon 
14193db446aSBoris Brezillon /* NAND interface timing parameter 0 register */
14293db446aSBoris Brezillon #define NDTR0			0x04
14393db446aSBoris Brezillon #define NDTR0_TRP(x)		((min_t(unsigned int, x, 0xF) & 0x7) << 0)
14493db446aSBoris Brezillon #define NDTR0_TRH(x)		(min_t(unsigned int, x, 0x7) << 3)
14593db446aSBoris Brezillon #define NDTR0_ETRP(x)		((min_t(unsigned int, x, 0xF) & 0x8) << 3)
14693db446aSBoris Brezillon #define NDTR0_SEL_NRE_EDGE	BIT(7)
14793db446aSBoris Brezillon #define NDTR0_TWP(x)		(min_t(unsigned int, x, 0x7) << 8)
14893db446aSBoris Brezillon #define NDTR0_TWH(x)		(min_t(unsigned int, x, 0x7) << 11)
14993db446aSBoris Brezillon #define NDTR0_TCS(x)		(min_t(unsigned int, x, 0x7) << 16)
15093db446aSBoris Brezillon #define NDTR0_TCH(x)		(min_t(unsigned int, x, 0x7) << 19)
15193db446aSBoris Brezillon #define NDTR0_RD_CNT_DEL(x)	(min_t(unsigned int, x, 0xF) << 22)
15293db446aSBoris Brezillon #define NDTR0_SELCNTR		BIT(26)
15393db446aSBoris Brezillon #define NDTR0_TADL(x)		(min_t(unsigned int, x, 0x1F) << 27)
15493db446aSBoris Brezillon 
15593db446aSBoris Brezillon /* NAND interface timing parameter 1 register */
15693db446aSBoris Brezillon #define NDTR1			0x0C
15793db446aSBoris Brezillon #define NDTR1_TAR(x)		(min_t(unsigned int, x, 0xF) << 0)
15893db446aSBoris Brezillon #define NDTR1_TWHR(x)		(min_t(unsigned int, x, 0xF) << 4)
15993db446aSBoris Brezillon #define NDTR1_TRHW(x)		(min_t(unsigned int, x / 16, 0x3) << 8)
16093db446aSBoris Brezillon #define NDTR1_PRESCALE		BIT(14)
16193db446aSBoris Brezillon #define NDTR1_WAIT_MODE		BIT(15)
16293db446aSBoris Brezillon #define NDTR1_TR(x)		(min_t(unsigned int, x, 0xFFFF) << 16)
16393db446aSBoris Brezillon 
16493db446aSBoris Brezillon /* NAND controller status register */
16593db446aSBoris Brezillon #define NDSR			0x14
16693db446aSBoris Brezillon #define NDSR_WRCMDREQ		BIT(0)
16793db446aSBoris Brezillon #define NDSR_RDDREQ		BIT(1)
16893db446aSBoris Brezillon #define NDSR_WRDREQ		BIT(2)
16993db446aSBoris Brezillon #define NDSR_CORERR		BIT(3)
17093db446aSBoris Brezillon #define NDSR_UNCERR		BIT(4)
17193db446aSBoris Brezillon #define NDSR_CMDD(cs)		BIT(8 - cs)
17293db446aSBoris Brezillon #define NDSR_RDY(rb)		BIT(11 + rb)
17393db446aSBoris Brezillon #define NDSR_ERRCNT(x)		((x >> 16) & 0x1F)
17493db446aSBoris Brezillon 
17593db446aSBoris Brezillon /* NAND ECC control register */
17693db446aSBoris Brezillon #define NDECCCTRL		0x28
17793db446aSBoris Brezillon #define NDECCCTRL_BCH_EN	BIT(0)
17893db446aSBoris Brezillon 
17993db446aSBoris Brezillon /* NAND controller data buffer register */
18093db446aSBoris Brezillon #define NDDB			0x40
18193db446aSBoris Brezillon 
18293db446aSBoris Brezillon /* NAND controller command buffer 0 register */
18393db446aSBoris Brezillon #define NDCB0			0x48
18493db446aSBoris Brezillon #define NDCB0_CMD1(x)		((x & 0xFF) << 0)
18593db446aSBoris Brezillon #define NDCB0_CMD2(x)		((x & 0xFF) << 8)
18693db446aSBoris Brezillon #define NDCB0_ADDR_CYC(x)	((x & 0x7) << 16)
18793db446aSBoris Brezillon #define NDCB0_ADDR_GET_NUM_CYC(x) (((x) >> 16) & 0x7)
18893db446aSBoris Brezillon #define NDCB0_DBC		BIT(19)
18993db446aSBoris Brezillon #define NDCB0_CMD_TYPE(x)	((x & 0x7) << 21)
19093db446aSBoris Brezillon #define NDCB0_CSEL		BIT(24)
19193db446aSBoris Brezillon #define NDCB0_RDY_BYP		BIT(27)
19293db446aSBoris Brezillon #define NDCB0_LEN_OVRD		BIT(28)
19393db446aSBoris Brezillon #define NDCB0_CMD_XTYPE(x)	((x & 0x7) << 29)
19493db446aSBoris Brezillon 
19593db446aSBoris Brezillon /* NAND controller command buffer 1 register */
19693db446aSBoris Brezillon #define NDCB1			0x4C
19793db446aSBoris Brezillon #define NDCB1_COLS(x)		((x & 0xFFFF) << 0)
19893db446aSBoris Brezillon #define NDCB1_ADDRS_PAGE(x)	(x << 16)
19993db446aSBoris Brezillon 
20093db446aSBoris Brezillon /* NAND controller command buffer 2 register */
20193db446aSBoris Brezillon #define NDCB2			0x50
20293db446aSBoris Brezillon #define NDCB2_ADDR5_PAGE(x)	(((x >> 16) & 0xFF) << 0)
20393db446aSBoris Brezillon #define NDCB2_ADDR5_CYC(x)	((x & 0xFF) << 0)
20493db446aSBoris Brezillon 
20593db446aSBoris Brezillon /* NAND controller command buffer 3 register */
20693db446aSBoris Brezillon #define NDCB3			0x54
20793db446aSBoris Brezillon #define NDCB3_ADDR6_CYC(x)	((x & 0xFF) << 16)
20893db446aSBoris Brezillon #define NDCB3_ADDR7_CYC(x)	((x & 0xFF) << 24)
20993db446aSBoris Brezillon 
21093db446aSBoris Brezillon /* NAND controller command buffer 0 register 'type' and 'xtype' fields */
21193db446aSBoris Brezillon #define TYPE_READ		0
21293db446aSBoris Brezillon #define TYPE_WRITE		1
21393db446aSBoris Brezillon #define TYPE_ERASE		2
21493db446aSBoris Brezillon #define TYPE_READ_ID		3
21593db446aSBoris Brezillon #define TYPE_STATUS		4
21693db446aSBoris Brezillon #define TYPE_RESET		5
21793db446aSBoris Brezillon #define TYPE_NAKED_CMD		6
21893db446aSBoris Brezillon #define TYPE_NAKED_ADDR		7
21993db446aSBoris Brezillon #define TYPE_MASK		7
22093db446aSBoris Brezillon #define XTYPE_MONOLITHIC_RW	0
22193db446aSBoris Brezillon #define XTYPE_LAST_NAKED_RW	1
22293db446aSBoris Brezillon #define XTYPE_FINAL_COMMAND	3
22393db446aSBoris Brezillon #define XTYPE_READ		4
22493db446aSBoris Brezillon #define XTYPE_WRITE_DISPATCH	4
22593db446aSBoris Brezillon #define XTYPE_NAKED_RW		5
22693db446aSBoris Brezillon #define XTYPE_COMMAND_DISPATCH	6
22793db446aSBoris Brezillon #define XTYPE_MASK		7
22893db446aSBoris Brezillon 
22993db446aSBoris Brezillon /**
23093db446aSBoris Brezillon  * Marvell ECC engine works differently than the others, in order to limit the
23193db446aSBoris Brezillon  * size of the IP, hardware engineers chose to set a fixed strength at 16 bits
23293db446aSBoris Brezillon  * per subpage, and depending on a the desired strength needed by the NAND chip,
23393db446aSBoris Brezillon  * a particular layout mixing data/spare/ecc is defined, with a possible last
23493db446aSBoris Brezillon  * chunk smaller that the others.
23593db446aSBoris Brezillon  *
23693db446aSBoris Brezillon  * @writesize:		Full page size on which the layout applies
23793db446aSBoris Brezillon  * @chunk:		Desired ECC chunk size on which the layout applies
23893db446aSBoris Brezillon  * @strength:		Desired ECC strength (per chunk size bytes) on which the
23993db446aSBoris Brezillon  *			layout applies
24093db446aSBoris Brezillon  * @nchunks:		Total number of chunks
24193db446aSBoris Brezillon  * @full_chunk_cnt:	Number of full-sized chunks, which is the number of
24293db446aSBoris Brezillon  *			repetitions of the pattern:
24393db446aSBoris Brezillon  *			(data_bytes + spare_bytes + ecc_bytes).
24493db446aSBoris Brezillon  * @data_bytes:		Number of data bytes per chunk
24593db446aSBoris Brezillon  * @spare_bytes:	Number of spare bytes per chunk
24693db446aSBoris Brezillon  * @ecc_bytes:		Number of ecc bytes per chunk
24793db446aSBoris Brezillon  * @last_data_bytes:	Number of data bytes in the last chunk
24893db446aSBoris Brezillon  * @last_spare_bytes:	Number of spare bytes in the last chunk
24993db446aSBoris Brezillon  * @last_ecc_bytes:	Number of ecc bytes in the last chunk
25093db446aSBoris Brezillon  */
25193db446aSBoris Brezillon struct marvell_hw_ecc_layout {
25293db446aSBoris Brezillon 	/* Constraints */
25393db446aSBoris Brezillon 	int writesize;
25493db446aSBoris Brezillon 	int chunk;
25593db446aSBoris Brezillon 	int strength;
25693db446aSBoris Brezillon 	/* Corresponding layout */
25793db446aSBoris Brezillon 	int nchunks;
25893db446aSBoris Brezillon 	int full_chunk_cnt;
25993db446aSBoris Brezillon 	int data_bytes;
26093db446aSBoris Brezillon 	int spare_bytes;
26193db446aSBoris Brezillon 	int ecc_bytes;
26293db446aSBoris Brezillon 	int last_data_bytes;
26393db446aSBoris Brezillon 	int last_spare_bytes;
26493db446aSBoris Brezillon 	int last_ecc_bytes;
26593db446aSBoris Brezillon };
26693db446aSBoris Brezillon 
26793db446aSBoris Brezillon #define MARVELL_LAYOUT(ws, dc, ds, nc, fcc, db, sb, eb, ldb, lsb, leb)	\
26893db446aSBoris Brezillon 	{								\
26993db446aSBoris Brezillon 		.writesize = ws,					\
27093db446aSBoris Brezillon 		.chunk = dc,						\
27193db446aSBoris Brezillon 		.strength = ds,						\
27293db446aSBoris Brezillon 		.nchunks = nc,						\
27393db446aSBoris Brezillon 		.full_chunk_cnt = fcc,					\
27493db446aSBoris Brezillon 		.data_bytes = db,					\
27593db446aSBoris Brezillon 		.spare_bytes = sb,					\
27693db446aSBoris Brezillon 		.ecc_bytes = eb,					\
27793db446aSBoris Brezillon 		.last_data_bytes = ldb,					\
27893db446aSBoris Brezillon 		.last_spare_bytes = lsb,				\
27993db446aSBoris Brezillon 		.last_ecc_bytes = leb,					\
28093db446aSBoris Brezillon 	}
28193db446aSBoris Brezillon 
28293db446aSBoris Brezillon /* Layouts explained in AN-379_Marvell_SoC_NFC_ECC */
28393db446aSBoris Brezillon static const struct marvell_hw_ecc_layout marvell_nfc_layouts[] = {
28493db446aSBoris Brezillon 	MARVELL_LAYOUT(  512,   512,  1,  1,  1,  512,  8,  8,  0,  0,  0),
28593db446aSBoris Brezillon 	MARVELL_LAYOUT( 2048,   512,  1,  1,  1, 2048, 40, 24,  0,  0,  0),
28693db446aSBoris Brezillon 	MARVELL_LAYOUT( 2048,   512,  4,  1,  1, 2048, 32, 30,  0,  0,  0),
2877fd130f7SMiquel Raynal 	MARVELL_LAYOUT( 2048,   512,  8,  2,  1, 1024,  0, 30,1024,32, 30),
28893db446aSBoris Brezillon 	MARVELL_LAYOUT( 4096,   512,  4,  2,  2, 2048, 32, 30,  0,  0,  0),
28993db446aSBoris Brezillon 	MARVELL_LAYOUT( 4096,   512,  8,  5,  4, 1024,  0, 30,  0, 64, 30),
290e8237bfaSKonstantin Porotchkin 	MARVELL_LAYOUT( 8192,   512,  4,  4,  4, 2048,  0, 30,  0,  0,  0),
291e8237bfaSKonstantin Porotchkin 	MARVELL_LAYOUT( 8192,   512,  8,  9,  8, 1024,  0, 30,  0, 160, 30),
29293db446aSBoris Brezillon };
29393db446aSBoris Brezillon 
29493db446aSBoris Brezillon /**
29593db446aSBoris Brezillon  * The Nand Flash Controller has up to 4 CE and 2 RB pins. The CE selection
29693db446aSBoris Brezillon  * is made by a field in NDCB0 register, and in another field in NDCB2 register.
29793db446aSBoris Brezillon  * The datasheet describes the logic with an error: ADDR5 field is once
29893db446aSBoris Brezillon  * declared at the beginning of NDCB2, and another time at its end. Because the
29993db446aSBoris Brezillon  * ADDR5 field of NDCB2 may be used by other bytes, it would be more logical
30093db446aSBoris Brezillon  * to use the last bit of this field instead of the first ones.
30193db446aSBoris Brezillon  *
30293db446aSBoris Brezillon  * @cs:			Wanted CE lane.
30393db446aSBoris Brezillon  * @ndcb0_csel:		Value of the NDCB0 register with or without the flag
30493db446aSBoris Brezillon  *			selecting the wanted CE lane. This is set once when
30593db446aSBoris Brezillon  *			the Device Tree is probed.
30693db446aSBoris Brezillon  * @rb:			Ready/Busy pin for the flash chip
30793db446aSBoris Brezillon  */
30893db446aSBoris Brezillon struct marvell_nand_chip_sel {
30993db446aSBoris Brezillon 	unsigned int cs;
31093db446aSBoris Brezillon 	u32 ndcb0_csel;
31193db446aSBoris Brezillon 	unsigned int rb;
31293db446aSBoris Brezillon };
31393db446aSBoris Brezillon 
31493db446aSBoris Brezillon /**
31593db446aSBoris Brezillon  * NAND chip structure: stores NAND chip device related information
31693db446aSBoris Brezillon  *
31793db446aSBoris Brezillon  * @chip:		Base NAND chip structure
31893db446aSBoris Brezillon  * @node:		Used to store NAND chips into a list
31993db446aSBoris Brezillon  * @layout		NAND layout when using hardware ECC
32093db446aSBoris Brezillon  * @ndcr:		Controller register value for this NAND chip
32193db446aSBoris Brezillon  * @ndtr0:		Timing registers 0 value for this NAND chip
32293db446aSBoris Brezillon  * @ndtr1:		Timing registers 1 value for this NAND chip
32393db446aSBoris Brezillon  * @selected_die:	Current active CS
32493db446aSBoris Brezillon  * @nsels:		Number of CS lines required by the NAND chip
32593db446aSBoris Brezillon  * @sels:		Array of CS lines descriptions
32693db446aSBoris Brezillon  */
32793db446aSBoris Brezillon struct marvell_nand_chip {
32893db446aSBoris Brezillon 	struct nand_chip chip;
32993db446aSBoris Brezillon 	struct list_head node;
33093db446aSBoris Brezillon 	const struct marvell_hw_ecc_layout *layout;
33193db446aSBoris Brezillon 	u32 ndcr;
33293db446aSBoris Brezillon 	u32 ndtr0;
33393db446aSBoris Brezillon 	u32 ndtr1;
33493db446aSBoris Brezillon 	int addr_cyc;
33593db446aSBoris Brezillon 	int selected_die;
33693db446aSBoris Brezillon 	unsigned int nsels;
33749f1c330SGustavo A. R. Silva 	struct marvell_nand_chip_sel sels[];
33893db446aSBoris Brezillon };
33993db446aSBoris Brezillon 
34093db446aSBoris Brezillon static inline struct marvell_nand_chip *to_marvell_nand(struct nand_chip *chip)
34193db446aSBoris Brezillon {
34293db446aSBoris Brezillon 	return container_of(chip, struct marvell_nand_chip, chip);
34393db446aSBoris Brezillon }
34493db446aSBoris Brezillon 
34593db446aSBoris Brezillon static inline struct marvell_nand_chip_sel *to_nand_sel(struct marvell_nand_chip
34693db446aSBoris Brezillon 							*nand)
34793db446aSBoris Brezillon {
34893db446aSBoris Brezillon 	return &nand->sels[nand->selected_die];
34993db446aSBoris Brezillon }
35093db446aSBoris Brezillon 
35193db446aSBoris Brezillon /**
35293db446aSBoris Brezillon  * NAND controller capabilities for distinction between compatible strings
35393db446aSBoris Brezillon  *
35493db446aSBoris Brezillon  * @max_cs_nb:		Number of Chip Select lines available
35593db446aSBoris Brezillon  * @max_rb_nb:		Number of Ready/Busy lines available
35693db446aSBoris Brezillon  * @need_system_controller: Indicates if the SoC needs to have access to the
35793db446aSBoris Brezillon  *                      system controller (ie. to enable the NAND controller)
35893db446aSBoris Brezillon  * @legacy_of_bindings:	Indicates if DT parsing must be done using the old
35993db446aSBoris Brezillon  *			fashion way
36093db446aSBoris Brezillon  * @is_nfcv2:		NFCv2 has numerous enhancements compared to NFCv1, ie.
36193db446aSBoris Brezillon  *			BCH error detection and correction algorithm,
36293db446aSBoris Brezillon  *			NDCB3 register has been added
36393db446aSBoris Brezillon  * @use_dma:		Use dma for data transfers
36493db446aSBoris Brezillon  */
36593db446aSBoris Brezillon struct marvell_nfc_caps {
36693db446aSBoris Brezillon 	unsigned int max_cs_nb;
36793db446aSBoris Brezillon 	unsigned int max_rb_nb;
36893db446aSBoris Brezillon 	bool need_system_controller;
36993db446aSBoris Brezillon 	bool legacy_of_bindings;
37093db446aSBoris Brezillon 	bool is_nfcv2;
37193db446aSBoris Brezillon 	bool use_dma;
37293db446aSBoris Brezillon };
37393db446aSBoris Brezillon 
37493db446aSBoris Brezillon /**
37593db446aSBoris Brezillon  * NAND controller structure: stores Marvell NAND controller information
37693db446aSBoris Brezillon  *
37793db446aSBoris Brezillon  * @controller:		Base controller structure
37893db446aSBoris Brezillon  * @dev:		Parent device (used to print error messages)
37993db446aSBoris Brezillon  * @regs:		NAND controller registers
3806b6de654SBoris Brezillon  * @core_clk:		Core clock
3811b489effSMiquel Raynal  * @reg_clk:		Registers clock
38293db446aSBoris Brezillon  * @complete:		Completion object to wait for NAND controller events
38393db446aSBoris Brezillon  * @assigned_cs:	Bitmask describing already assigned CS lines
38493db446aSBoris Brezillon  * @chips:		List containing all the NAND chips attached to
38593db446aSBoris Brezillon  *			this NAND controller
38693db446aSBoris Brezillon  * @caps:		NAND controller capabilities for each compatible string
38793db446aSBoris Brezillon  * @dma_chan:		DMA channel (NFCv1 only)
38893db446aSBoris Brezillon  * @dma_buf:		32-bit aligned buffer for DMA transfers (NFCv1 only)
38993db446aSBoris Brezillon  */
39093db446aSBoris Brezillon struct marvell_nfc {
3917da45139SMiquel Raynal 	struct nand_controller controller;
39293db446aSBoris Brezillon 	struct device *dev;
39393db446aSBoris Brezillon 	void __iomem *regs;
3946b6de654SBoris Brezillon 	struct clk *core_clk;
395961ba15cSGregory CLEMENT 	struct clk *reg_clk;
39693db446aSBoris Brezillon 	struct completion complete;
39793db446aSBoris Brezillon 	unsigned long assigned_cs;
39893db446aSBoris Brezillon 	struct list_head chips;
39993db446aSBoris Brezillon 	struct nand_chip *selected_chip;
40093db446aSBoris Brezillon 	const struct marvell_nfc_caps *caps;
40193db446aSBoris Brezillon 
40293db446aSBoris Brezillon 	/* DMA (NFCv1 only) */
40393db446aSBoris Brezillon 	bool use_dma;
40493db446aSBoris Brezillon 	struct dma_chan *dma_chan;
40593db446aSBoris Brezillon 	u8 *dma_buf;
40693db446aSBoris Brezillon };
40793db446aSBoris Brezillon 
4087da45139SMiquel Raynal static inline struct marvell_nfc *to_marvell_nfc(struct nand_controller *ctrl)
40993db446aSBoris Brezillon {
41093db446aSBoris Brezillon 	return container_of(ctrl, struct marvell_nfc, controller);
41193db446aSBoris Brezillon }
41293db446aSBoris Brezillon 
41393db446aSBoris Brezillon /**
41493db446aSBoris Brezillon  * NAND controller timings expressed in NAND Controller clock cycles
41593db446aSBoris Brezillon  *
41693db446aSBoris Brezillon  * @tRP:		ND_nRE pulse width
41793db446aSBoris Brezillon  * @tRH:		ND_nRE high duration
41893db446aSBoris Brezillon  * @tWP:		ND_nWE pulse time
41993db446aSBoris Brezillon  * @tWH:		ND_nWE high duration
42093db446aSBoris Brezillon  * @tCS:		Enable signal setup time
42193db446aSBoris Brezillon  * @tCH:		Enable signal hold time
42293db446aSBoris Brezillon  * @tADL:		Address to write data delay
42393db446aSBoris Brezillon  * @tAR:		ND_ALE low to ND_nRE low delay
42493db446aSBoris Brezillon  * @tWHR:		ND_nWE high to ND_nRE low for status read
42593db446aSBoris Brezillon  * @tRHW:		ND_nRE high duration, read to write delay
42693db446aSBoris Brezillon  * @tR:			ND_nWE high to ND_nRE low for read
42793db446aSBoris Brezillon  */
42893db446aSBoris Brezillon struct marvell_nfc_timings {
42993db446aSBoris Brezillon 	/* NDTR0 fields */
43093db446aSBoris Brezillon 	unsigned int tRP;
43193db446aSBoris Brezillon 	unsigned int tRH;
43293db446aSBoris Brezillon 	unsigned int tWP;
43393db446aSBoris Brezillon 	unsigned int tWH;
43493db446aSBoris Brezillon 	unsigned int tCS;
43593db446aSBoris Brezillon 	unsigned int tCH;
43693db446aSBoris Brezillon 	unsigned int tADL;
43793db446aSBoris Brezillon 	/* NDTR1 fields */
43893db446aSBoris Brezillon 	unsigned int tAR;
43993db446aSBoris Brezillon 	unsigned int tWHR;
44093db446aSBoris Brezillon 	unsigned int tRHW;
44193db446aSBoris Brezillon 	unsigned int tR;
44293db446aSBoris Brezillon };
44393db446aSBoris Brezillon 
44493db446aSBoris Brezillon /**
44593db446aSBoris Brezillon  * Derives a duration in numbers of clock cycles.
44693db446aSBoris Brezillon  *
44793db446aSBoris Brezillon  * @ps: Duration in pico-seconds
44893db446aSBoris Brezillon  * @period_ns:  Clock period in nano-seconds
44993db446aSBoris Brezillon  *
45093db446aSBoris Brezillon  * Convert the duration in nano-seconds, then divide by the period and
45193db446aSBoris Brezillon  * return the number of clock periods.
45293db446aSBoris Brezillon  */
45393db446aSBoris Brezillon #define TO_CYCLES(ps, period_ns) (DIV_ROUND_UP(ps / 1000, period_ns))
45493db446aSBoris Brezillon #define TO_CYCLES64(ps, period_ns) (DIV_ROUND_UP_ULL(div_u64(ps, 1000), \
45593db446aSBoris Brezillon 						     period_ns))
45693db446aSBoris Brezillon 
45793db446aSBoris Brezillon /**
45893db446aSBoris Brezillon  * NAND driver structure filled during the parsing of the ->exec_op() subop
45993db446aSBoris Brezillon  * subset of instructions.
46093db446aSBoris Brezillon  *
46193db446aSBoris Brezillon  * @ndcb:		Array of values written to NDCBx registers
46293db446aSBoris Brezillon  * @cle_ale_delay_ns:	Optional delay after the last CMD or ADDR cycle
46393db446aSBoris Brezillon  * @rdy_timeout_ms:	Timeout for waits on Ready/Busy pin
46493db446aSBoris Brezillon  * @rdy_delay_ns:	Optional delay after waiting for the RB pin
46593db446aSBoris Brezillon  * @data_delay_ns:	Optional delay after the data xfer
46693db446aSBoris Brezillon  * @data_instr_idx:	Index of the data instruction in the subop
46793db446aSBoris Brezillon  * @data_instr:		Pointer to the data instruction in the subop
46893db446aSBoris Brezillon  */
46993db446aSBoris Brezillon struct marvell_nfc_op {
47093db446aSBoris Brezillon 	u32 ndcb[4];
47193db446aSBoris Brezillon 	unsigned int cle_ale_delay_ns;
47293db446aSBoris Brezillon 	unsigned int rdy_timeout_ms;
47393db446aSBoris Brezillon 	unsigned int rdy_delay_ns;
47493db446aSBoris Brezillon 	unsigned int data_delay_ns;
47593db446aSBoris Brezillon 	unsigned int data_instr_idx;
47693db446aSBoris Brezillon 	const struct nand_op_instr *data_instr;
47793db446aSBoris Brezillon };
47893db446aSBoris Brezillon 
47993db446aSBoris Brezillon /*
48093db446aSBoris Brezillon  * Internal helper to conditionnally apply a delay (from the above structure,
48193db446aSBoris Brezillon  * most of the time).
48293db446aSBoris Brezillon  */
48393db446aSBoris Brezillon static void cond_delay(unsigned int ns)
48493db446aSBoris Brezillon {
48593db446aSBoris Brezillon 	if (!ns)
48693db446aSBoris Brezillon 		return;
48793db446aSBoris Brezillon 
48893db446aSBoris Brezillon 	if (ns < 10000)
48993db446aSBoris Brezillon 		ndelay(ns);
49093db446aSBoris Brezillon 	else
49193db446aSBoris Brezillon 		udelay(DIV_ROUND_UP(ns, 1000));
49293db446aSBoris Brezillon }
49393db446aSBoris Brezillon 
49493db446aSBoris Brezillon /*
49593db446aSBoris Brezillon  * The controller has many flags that could generate interrupts, most of them
49693db446aSBoris Brezillon  * are disabled and polling is used. For the very slow signals, using interrupts
49793db446aSBoris Brezillon  * may relax the CPU charge.
49893db446aSBoris Brezillon  */
49993db446aSBoris Brezillon static void marvell_nfc_disable_int(struct marvell_nfc *nfc, u32 int_mask)
50093db446aSBoris Brezillon {
50193db446aSBoris Brezillon 	u32 reg;
50293db446aSBoris Brezillon 
50393db446aSBoris Brezillon 	/* Writing 1 disables the interrupt */
50493db446aSBoris Brezillon 	reg = readl_relaxed(nfc->regs + NDCR);
50593db446aSBoris Brezillon 	writel_relaxed(reg | int_mask, nfc->regs + NDCR);
50693db446aSBoris Brezillon }
50793db446aSBoris Brezillon 
50893db446aSBoris Brezillon static void marvell_nfc_enable_int(struct marvell_nfc *nfc, u32 int_mask)
50993db446aSBoris Brezillon {
51093db446aSBoris Brezillon 	u32 reg;
51193db446aSBoris Brezillon 
51293db446aSBoris Brezillon 	/* Writing 0 enables the interrupt */
51393db446aSBoris Brezillon 	reg = readl_relaxed(nfc->regs + NDCR);
51493db446aSBoris Brezillon 	writel_relaxed(reg & ~int_mask, nfc->regs + NDCR);
51593db446aSBoris Brezillon }
51693db446aSBoris Brezillon 
517cafb56ddSMiquel Raynal static u32 marvell_nfc_clear_int(struct marvell_nfc *nfc, u32 int_mask)
51893db446aSBoris Brezillon {
519cafb56ddSMiquel Raynal 	u32 reg;
520cafb56ddSMiquel Raynal 
521cafb56ddSMiquel Raynal 	reg = readl_relaxed(nfc->regs + NDSR);
52293db446aSBoris Brezillon 	writel_relaxed(int_mask, nfc->regs + NDSR);
523cafb56ddSMiquel Raynal 
524cafb56ddSMiquel Raynal 	return reg & int_mask;
52593db446aSBoris Brezillon }
52693db446aSBoris Brezillon 
52793db446aSBoris Brezillon static void marvell_nfc_force_byte_access(struct nand_chip *chip,
52893db446aSBoris Brezillon 					  bool force_8bit)
52993db446aSBoris Brezillon {
53093db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
53193db446aSBoris Brezillon 	u32 ndcr;
53293db446aSBoris Brezillon 
53393db446aSBoris Brezillon 	/*
53493db446aSBoris Brezillon 	 * Callers of this function do not verify if the NAND is using a 16-bit
53593db446aSBoris Brezillon 	 * an 8-bit bus for normal operations, so we need to take care of that
53693db446aSBoris Brezillon 	 * here by leaving the configuration unchanged if the NAND does not have
53793db446aSBoris Brezillon 	 * the NAND_BUSWIDTH_16 flag set.
53893db446aSBoris Brezillon 	 */
53993db446aSBoris Brezillon 	if (!(chip->options & NAND_BUSWIDTH_16))
54093db446aSBoris Brezillon 		return;
54193db446aSBoris Brezillon 
54293db446aSBoris Brezillon 	ndcr = readl_relaxed(nfc->regs + NDCR);
54393db446aSBoris Brezillon 
54493db446aSBoris Brezillon 	if (force_8bit)
54593db446aSBoris Brezillon 		ndcr &= ~(NDCR_DWIDTH_M | NDCR_DWIDTH_C);
54693db446aSBoris Brezillon 	else
54793db446aSBoris Brezillon 		ndcr |= NDCR_DWIDTH_M | NDCR_DWIDTH_C;
54893db446aSBoris Brezillon 
54993db446aSBoris Brezillon 	writel_relaxed(ndcr, nfc->regs + NDCR);
55093db446aSBoris Brezillon }
55193db446aSBoris Brezillon 
55293db446aSBoris Brezillon static int marvell_nfc_wait_ndrun(struct nand_chip *chip)
55393db446aSBoris Brezillon {
55493db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
55593db446aSBoris Brezillon 	u32 val;
55693db446aSBoris Brezillon 	int ret;
55793db446aSBoris Brezillon 
55893db446aSBoris Brezillon 	/*
55993db446aSBoris Brezillon 	 * The command is being processed, wait for the ND_RUN bit to be
56093db446aSBoris Brezillon 	 * cleared by the NFC. If not, we must clear it by hand.
56193db446aSBoris Brezillon 	 */
56293db446aSBoris Brezillon 	ret = readl_relaxed_poll_timeout(nfc->regs + NDCR, val,
56393db446aSBoris Brezillon 					 (val & NDCR_ND_RUN) == 0,
56493db446aSBoris Brezillon 					 POLL_PERIOD, POLL_TIMEOUT);
56593db446aSBoris Brezillon 	if (ret) {
56693db446aSBoris Brezillon 		dev_err(nfc->dev, "Timeout on NAND controller run mode\n");
56793db446aSBoris Brezillon 		writel_relaxed(readl(nfc->regs + NDCR) & ~NDCR_ND_RUN,
56893db446aSBoris Brezillon 			       nfc->regs + NDCR);
56993db446aSBoris Brezillon 		return ret;
57093db446aSBoris Brezillon 	}
57193db446aSBoris Brezillon 
57293db446aSBoris Brezillon 	return 0;
57393db446aSBoris Brezillon }
57493db446aSBoris Brezillon 
57593db446aSBoris Brezillon /*
57693db446aSBoris Brezillon  * Any time a command has to be sent to the controller, the following sequence
57793db446aSBoris Brezillon  * has to be followed:
57893db446aSBoris Brezillon  * - call marvell_nfc_prepare_cmd()
57993db446aSBoris Brezillon  *      -> activate the ND_RUN bit that will kind of 'start a job'
58093db446aSBoris Brezillon  *      -> wait the signal indicating the NFC is waiting for a command
58193db446aSBoris Brezillon  * - send the command (cmd and address cycles)
58293db446aSBoris Brezillon  * - enventually send or receive the data
58393db446aSBoris Brezillon  * - call marvell_nfc_end_cmd() with the corresponding flag
58493db446aSBoris Brezillon  *      -> wait the flag to be triggered or cancel the job with a timeout
58593db446aSBoris Brezillon  *
58693db446aSBoris Brezillon  * The following helpers are here to factorize the code a bit so that
58793db446aSBoris Brezillon  * specialized functions responsible for executing the actual NAND
58893db446aSBoris Brezillon  * operations do not have to replicate the same code blocks.
58993db446aSBoris Brezillon  */
59093db446aSBoris Brezillon static int marvell_nfc_prepare_cmd(struct nand_chip *chip)
59193db446aSBoris Brezillon {
59293db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
59393db446aSBoris Brezillon 	u32 ndcr, val;
59493db446aSBoris Brezillon 	int ret;
59593db446aSBoris Brezillon 
59693db446aSBoris Brezillon 	/* Poll ND_RUN and clear NDSR before issuing any command */
59793db446aSBoris Brezillon 	ret = marvell_nfc_wait_ndrun(chip);
59893db446aSBoris Brezillon 	if (ret) {
59993db446aSBoris Brezillon 		dev_err(nfc->dev, "Last operation did not succeed\n");
60093db446aSBoris Brezillon 		return ret;
60193db446aSBoris Brezillon 	}
60293db446aSBoris Brezillon 
60393db446aSBoris Brezillon 	ndcr = readl_relaxed(nfc->regs + NDCR);
60493db446aSBoris Brezillon 	writel_relaxed(readl(nfc->regs + NDSR), nfc->regs + NDSR);
60593db446aSBoris Brezillon 
60693db446aSBoris Brezillon 	/* Assert ND_RUN bit and wait the NFC to be ready */
60793db446aSBoris Brezillon 	writel_relaxed(ndcr | NDCR_ND_RUN, nfc->regs + NDCR);
60893db446aSBoris Brezillon 	ret = readl_relaxed_poll_timeout(nfc->regs + NDSR, val,
60993db446aSBoris Brezillon 					 val & NDSR_WRCMDREQ,
61093db446aSBoris Brezillon 					 POLL_PERIOD, POLL_TIMEOUT);
61193db446aSBoris Brezillon 	if (ret) {
61293db446aSBoris Brezillon 		dev_err(nfc->dev, "Timeout on WRCMDRE\n");
61393db446aSBoris Brezillon 		return -ETIMEDOUT;
61493db446aSBoris Brezillon 	}
61593db446aSBoris Brezillon 
61693db446aSBoris Brezillon 	/* Command may be written, clear WRCMDREQ status bit */
61793db446aSBoris Brezillon 	writel_relaxed(NDSR_WRCMDREQ, nfc->regs + NDSR);
61893db446aSBoris Brezillon 
61993db446aSBoris Brezillon 	return 0;
62093db446aSBoris Brezillon }
62193db446aSBoris Brezillon 
62293db446aSBoris Brezillon static void marvell_nfc_send_cmd(struct nand_chip *chip,
62393db446aSBoris Brezillon 				 struct marvell_nfc_op *nfc_op)
62493db446aSBoris Brezillon {
62593db446aSBoris Brezillon 	struct marvell_nand_chip *marvell_nand = to_marvell_nand(chip);
62693db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
62793db446aSBoris Brezillon 
62893db446aSBoris Brezillon 	dev_dbg(nfc->dev, "\nNDCR:  0x%08x\n"
62993db446aSBoris Brezillon 		"NDCB0: 0x%08x\nNDCB1: 0x%08x\nNDCB2: 0x%08x\nNDCB3: 0x%08x\n",
63093db446aSBoris Brezillon 		(u32)readl_relaxed(nfc->regs + NDCR), nfc_op->ndcb[0],
63193db446aSBoris Brezillon 		nfc_op->ndcb[1], nfc_op->ndcb[2], nfc_op->ndcb[3]);
63293db446aSBoris Brezillon 
63393db446aSBoris Brezillon 	writel_relaxed(to_nand_sel(marvell_nand)->ndcb0_csel | nfc_op->ndcb[0],
63493db446aSBoris Brezillon 		       nfc->regs + NDCB0);
63593db446aSBoris Brezillon 	writel_relaxed(nfc_op->ndcb[1], nfc->regs + NDCB0);
63693db446aSBoris Brezillon 	writel(nfc_op->ndcb[2], nfc->regs + NDCB0);
63793db446aSBoris Brezillon 
63893db446aSBoris Brezillon 	/*
63993db446aSBoris Brezillon 	 * Write NDCB0 four times only if LEN_OVRD is set or if ADDR6 or ADDR7
64093db446aSBoris Brezillon 	 * fields are used (only available on NFCv2).
64193db446aSBoris Brezillon 	 */
64293db446aSBoris Brezillon 	if (nfc_op->ndcb[0] & NDCB0_LEN_OVRD ||
64393db446aSBoris Brezillon 	    NDCB0_ADDR_GET_NUM_CYC(nfc_op->ndcb[0]) >= 6) {
64493db446aSBoris Brezillon 		if (!WARN_ON_ONCE(!nfc->caps->is_nfcv2))
64593db446aSBoris Brezillon 			writel(nfc_op->ndcb[3], nfc->regs + NDCB0);
64693db446aSBoris Brezillon 	}
64793db446aSBoris Brezillon }
64893db446aSBoris Brezillon 
64993db446aSBoris Brezillon static int marvell_nfc_end_cmd(struct nand_chip *chip, int flag,
65093db446aSBoris Brezillon 			       const char *label)
65193db446aSBoris Brezillon {
65293db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
65393db446aSBoris Brezillon 	u32 val;
65493db446aSBoris Brezillon 	int ret;
65593db446aSBoris Brezillon 
65693db446aSBoris Brezillon 	ret = readl_relaxed_poll_timeout(nfc->regs + NDSR, val,
65793db446aSBoris Brezillon 					 val & flag,
65893db446aSBoris Brezillon 					 POLL_PERIOD, POLL_TIMEOUT);
65993db446aSBoris Brezillon 
66093db446aSBoris Brezillon 	if (ret) {
66193db446aSBoris Brezillon 		dev_err(nfc->dev, "Timeout on %s (NDSR: 0x%08x)\n",
66293db446aSBoris Brezillon 			label, val);
66393db446aSBoris Brezillon 		if (nfc->dma_chan)
66493db446aSBoris Brezillon 			dmaengine_terminate_all(nfc->dma_chan);
66593db446aSBoris Brezillon 		return ret;
66693db446aSBoris Brezillon 	}
66793db446aSBoris Brezillon 
66893db446aSBoris Brezillon 	/*
66993db446aSBoris Brezillon 	 * DMA function uses this helper to poll on CMDD bits without wanting
67093db446aSBoris Brezillon 	 * them to be cleared.
67193db446aSBoris Brezillon 	 */
67293db446aSBoris Brezillon 	if (nfc->use_dma && (readl_relaxed(nfc->regs + NDCR) & NDCR_DMA_EN))
67393db446aSBoris Brezillon 		return 0;
67493db446aSBoris Brezillon 
67593db446aSBoris Brezillon 	writel_relaxed(flag, nfc->regs + NDSR);
67693db446aSBoris Brezillon 
67793db446aSBoris Brezillon 	return 0;
67893db446aSBoris Brezillon }
67993db446aSBoris Brezillon 
68093db446aSBoris Brezillon static int marvell_nfc_wait_cmdd(struct nand_chip *chip)
68193db446aSBoris Brezillon {
68293db446aSBoris Brezillon 	struct marvell_nand_chip *marvell_nand = to_marvell_nand(chip);
68393db446aSBoris Brezillon 	int cs_flag = NDSR_CMDD(to_nand_sel(marvell_nand)->ndcb0_csel);
68493db446aSBoris Brezillon 
68593db446aSBoris Brezillon 	return marvell_nfc_end_cmd(chip, cs_flag, "CMDD");
68693db446aSBoris Brezillon }
68793db446aSBoris Brezillon 
68893db446aSBoris Brezillon static int marvell_nfc_wait_op(struct nand_chip *chip, unsigned int timeout_ms)
68993db446aSBoris Brezillon {
69093db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
691cafb56ddSMiquel Raynal 	u32 pending;
69293db446aSBoris Brezillon 	int ret;
69393db446aSBoris Brezillon 
69493db446aSBoris Brezillon 	/* Timeout is expressed in ms */
69593db446aSBoris Brezillon 	if (!timeout_ms)
69693db446aSBoris Brezillon 		timeout_ms = IRQ_TIMEOUT;
69793db446aSBoris Brezillon 
69893db446aSBoris Brezillon 	init_completion(&nfc->complete);
69993db446aSBoris Brezillon 
70093db446aSBoris Brezillon 	marvell_nfc_enable_int(nfc, NDCR_RDYM);
70193db446aSBoris Brezillon 	ret = wait_for_completion_timeout(&nfc->complete,
70293db446aSBoris Brezillon 					  msecs_to_jiffies(timeout_ms));
70393db446aSBoris Brezillon 	marvell_nfc_disable_int(nfc, NDCR_RDYM);
704cafb56ddSMiquel Raynal 	pending = marvell_nfc_clear_int(nfc, NDSR_RDY(0) | NDSR_RDY(1));
705cafb56ddSMiquel Raynal 
706cafb56ddSMiquel Raynal 	/*
707cafb56ddSMiquel Raynal 	 * In case the interrupt was not served in the required time frame,
708cafb56ddSMiquel Raynal 	 * check if the ISR was not served or if something went actually wrong.
709cafb56ddSMiquel Raynal 	 */
710c2707577SMiquel Raynal 	if (!ret && !pending) {
71193db446aSBoris Brezillon 		dev_err(nfc->dev, "Timeout waiting for RB signal\n");
71293db446aSBoris Brezillon 		return -ETIMEDOUT;
71393db446aSBoris Brezillon 	}
71493db446aSBoris Brezillon 
71593db446aSBoris Brezillon 	return 0;
71693db446aSBoris Brezillon }
71793db446aSBoris Brezillon 
718b2525141SBoris Brezillon static void marvell_nfc_select_target(struct nand_chip *chip,
719b2525141SBoris Brezillon 				      unsigned int die_nr)
72093db446aSBoris Brezillon {
72193db446aSBoris Brezillon 	struct marvell_nand_chip *marvell_nand = to_marvell_nand(chip);
72293db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
72393db446aSBoris Brezillon 	u32 ndcr_generic;
72493db446aSBoris Brezillon 
72593db446aSBoris Brezillon 	/*
72693db446aSBoris Brezillon 	 * Reset the NDCR register to a clean state for this particular chip,
72793db446aSBoris Brezillon 	 * also clear ND_RUN bit.
72893db446aSBoris Brezillon 	 */
72993db446aSBoris Brezillon 	ndcr_generic = readl_relaxed(nfc->regs + NDCR) &
73093db446aSBoris Brezillon 		       NDCR_GENERIC_FIELDS_MASK & ~NDCR_ND_RUN;
73193db446aSBoris Brezillon 	writel_relaxed(ndcr_generic | marvell_nand->ndcr, nfc->regs + NDCR);
73293db446aSBoris Brezillon 
73393db446aSBoris Brezillon 	/* Also reset the interrupt status register */
73493db446aSBoris Brezillon 	marvell_nfc_clear_int(nfc, NDCR_ALL_INT);
73593db446aSBoris Brezillon 
7369a8f612cSMiquel Raynal 	if (chip == nfc->selected_chip && die_nr == marvell_nand->selected_die)
7379a8f612cSMiquel Raynal 		return;
7389a8f612cSMiquel Raynal 
7399a8f612cSMiquel Raynal 	writel_relaxed(marvell_nand->ndtr0, nfc->regs + NDTR0);
7409a8f612cSMiquel Raynal 	writel_relaxed(marvell_nand->ndtr1, nfc->regs + NDTR1);
7419a8f612cSMiquel Raynal 
74293db446aSBoris Brezillon 	nfc->selected_chip = chip;
74393db446aSBoris Brezillon 	marvell_nand->selected_die = die_nr;
74493db446aSBoris Brezillon }
74593db446aSBoris Brezillon 
74693db446aSBoris Brezillon static irqreturn_t marvell_nfc_isr(int irq, void *dev_id)
74793db446aSBoris Brezillon {
74893db446aSBoris Brezillon 	struct marvell_nfc *nfc = dev_id;
74993db446aSBoris Brezillon 	u32 st = readl_relaxed(nfc->regs + NDSR);
75093db446aSBoris Brezillon 	u32 ien = (~readl_relaxed(nfc->regs + NDCR)) & NDCR_ALL_INT;
75193db446aSBoris Brezillon 
75293db446aSBoris Brezillon 	/*
75393db446aSBoris Brezillon 	 * RDY interrupt mask is one bit in NDCR while there are two status
75493db446aSBoris Brezillon 	 * bit in NDSR (RDY[cs0/cs2] and RDY[cs1/cs3]).
75593db446aSBoris Brezillon 	 */
75693db446aSBoris Brezillon 	if (st & NDSR_RDY(1))
75793db446aSBoris Brezillon 		st |= NDSR_RDY(0);
75893db446aSBoris Brezillon 
75993db446aSBoris Brezillon 	if (!(st & ien))
76093db446aSBoris Brezillon 		return IRQ_NONE;
76193db446aSBoris Brezillon 
76293db446aSBoris Brezillon 	marvell_nfc_disable_int(nfc, st & NDCR_ALL_INT);
76393db446aSBoris Brezillon 
76453c83b59SMiquel Raynal 	if (st & (NDSR_RDY(0) | NDSR_RDY(1)))
76593db446aSBoris Brezillon 		complete(&nfc->complete);
76693db446aSBoris Brezillon 
76793db446aSBoris Brezillon 	return IRQ_HANDLED;
76893db446aSBoris Brezillon }
76993db446aSBoris Brezillon 
77093db446aSBoris Brezillon /* HW ECC related functions */
77193db446aSBoris Brezillon static void marvell_nfc_enable_hw_ecc(struct nand_chip *chip)
77293db446aSBoris Brezillon {
77393db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
77493db446aSBoris Brezillon 	u32 ndcr = readl_relaxed(nfc->regs + NDCR);
77593db446aSBoris Brezillon 
77693db446aSBoris Brezillon 	if (!(ndcr & NDCR_ECC_EN)) {
77793db446aSBoris Brezillon 		writel_relaxed(ndcr | NDCR_ECC_EN, nfc->regs + NDCR);
77893db446aSBoris Brezillon 
77993db446aSBoris Brezillon 		/*
78093db446aSBoris Brezillon 		 * When enabling BCH, set threshold to 0 to always know the
78193db446aSBoris Brezillon 		 * number of corrected bitflips.
78293db446aSBoris Brezillon 		 */
78393db446aSBoris Brezillon 		if (chip->ecc.algo == NAND_ECC_BCH)
78493db446aSBoris Brezillon 			writel_relaxed(NDECCCTRL_BCH_EN, nfc->regs + NDECCCTRL);
78593db446aSBoris Brezillon 	}
78693db446aSBoris Brezillon }
78793db446aSBoris Brezillon 
78893db446aSBoris Brezillon static void marvell_nfc_disable_hw_ecc(struct nand_chip *chip)
78993db446aSBoris Brezillon {
79093db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
79193db446aSBoris Brezillon 	u32 ndcr = readl_relaxed(nfc->regs + NDCR);
79293db446aSBoris Brezillon 
79393db446aSBoris Brezillon 	if (ndcr & NDCR_ECC_EN) {
79493db446aSBoris Brezillon 		writel_relaxed(ndcr & ~NDCR_ECC_EN, nfc->regs + NDCR);
79593db446aSBoris Brezillon 		if (chip->ecc.algo == NAND_ECC_BCH)
79693db446aSBoris Brezillon 			writel_relaxed(0, nfc->regs + NDECCCTRL);
79793db446aSBoris Brezillon 	}
79893db446aSBoris Brezillon }
79993db446aSBoris Brezillon 
80093db446aSBoris Brezillon /* DMA related helpers */
80193db446aSBoris Brezillon static void marvell_nfc_enable_dma(struct marvell_nfc *nfc)
80293db446aSBoris Brezillon {
80393db446aSBoris Brezillon 	u32 reg;
80493db446aSBoris Brezillon 
80593db446aSBoris Brezillon 	reg = readl_relaxed(nfc->regs + NDCR);
80693db446aSBoris Brezillon 	writel_relaxed(reg | NDCR_DMA_EN, nfc->regs + NDCR);
80793db446aSBoris Brezillon }
80893db446aSBoris Brezillon 
80993db446aSBoris Brezillon static void marvell_nfc_disable_dma(struct marvell_nfc *nfc)
81093db446aSBoris Brezillon {
81193db446aSBoris Brezillon 	u32 reg;
81293db446aSBoris Brezillon 
81393db446aSBoris Brezillon 	reg = readl_relaxed(nfc->regs + NDCR);
81493db446aSBoris Brezillon 	writel_relaxed(reg & ~NDCR_DMA_EN, nfc->regs + NDCR);
81593db446aSBoris Brezillon }
81693db446aSBoris Brezillon 
81793db446aSBoris Brezillon /* Read/write PIO/DMA accessors */
81893db446aSBoris Brezillon static int marvell_nfc_xfer_data_dma(struct marvell_nfc *nfc,
81993db446aSBoris Brezillon 				     enum dma_data_direction direction,
82093db446aSBoris Brezillon 				     unsigned int len)
82193db446aSBoris Brezillon {
82293db446aSBoris Brezillon 	unsigned int dma_len = min_t(int, ALIGN(len, 32), MAX_CHUNK_SIZE);
82393db446aSBoris Brezillon 	struct dma_async_tx_descriptor *tx;
82493db446aSBoris Brezillon 	struct scatterlist sg;
82593db446aSBoris Brezillon 	dma_cookie_t cookie;
82693db446aSBoris Brezillon 	int ret;
82793db446aSBoris Brezillon 
82893db446aSBoris Brezillon 	marvell_nfc_enable_dma(nfc);
82993db446aSBoris Brezillon 	/* Prepare the DMA transfer */
83093db446aSBoris Brezillon 	sg_init_one(&sg, nfc->dma_buf, dma_len);
83193db446aSBoris Brezillon 	dma_map_sg(nfc->dma_chan->device->dev, &sg, 1, direction);
83293db446aSBoris Brezillon 	tx = dmaengine_prep_slave_sg(nfc->dma_chan, &sg, 1,
83393db446aSBoris Brezillon 				     direction == DMA_FROM_DEVICE ?
83493db446aSBoris Brezillon 				     DMA_DEV_TO_MEM : DMA_MEM_TO_DEV,
83593db446aSBoris Brezillon 				     DMA_PREP_INTERRUPT);
83693db446aSBoris Brezillon 	if (!tx) {
83793db446aSBoris Brezillon 		dev_err(nfc->dev, "Could not prepare DMA S/G list\n");
83893db446aSBoris Brezillon 		return -ENXIO;
83993db446aSBoris Brezillon 	}
84093db446aSBoris Brezillon 
84193db446aSBoris Brezillon 	/* Do the task and wait for it to finish */
84293db446aSBoris Brezillon 	cookie = dmaengine_submit(tx);
84393db446aSBoris Brezillon 	ret = dma_submit_error(cookie);
84493db446aSBoris Brezillon 	if (ret)
84593db446aSBoris Brezillon 		return -EIO;
84693db446aSBoris Brezillon 
84793db446aSBoris Brezillon 	dma_async_issue_pending(nfc->dma_chan);
84893db446aSBoris Brezillon 	ret = marvell_nfc_wait_cmdd(nfc->selected_chip);
84993db446aSBoris Brezillon 	dma_unmap_sg(nfc->dma_chan->device->dev, &sg, 1, direction);
85093db446aSBoris Brezillon 	marvell_nfc_disable_dma(nfc);
85193db446aSBoris Brezillon 	if (ret) {
85293db446aSBoris Brezillon 		dev_err(nfc->dev, "Timeout waiting for DMA (status: %d)\n",
85393db446aSBoris Brezillon 			dmaengine_tx_status(nfc->dma_chan, cookie, NULL));
85493db446aSBoris Brezillon 		dmaengine_terminate_all(nfc->dma_chan);
85593db446aSBoris Brezillon 		return -ETIMEDOUT;
85693db446aSBoris Brezillon 	}
85793db446aSBoris Brezillon 
85893db446aSBoris Brezillon 	return 0;
85993db446aSBoris Brezillon }
86093db446aSBoris Brezillon 
86193db446aSBoris Brezillon static int marvell_nfc_xfer_data_in_pio(struct marvell_nfc *nfc, u8 *in,
86293db446aSBoris Brezillon 					unsigned int len)
86393db446aSBoris Brezillon {
86493db446aSBoris Brezillon 	unsigned int last_len = len % FIFO_DEPTH;
86593db446aSBoris Brezillon 	unsigned int last_full_offset = round_down(len, FIFO_DEPTH);
86693db446aSBoris Brezillon 	int i;
86793db446aSBoris Brezillon 
86893db446aSBoris Brezillon 	for (i = 0; i < last_full_offset; i += FIFO_DEPTH)
86993db446aSBoris Brezillon 		ioread32_rep(nfc->regs + NDDB, in + i, FIFO_REP(FIFO_DEPTH));
87093db446aSBoris Brezillon 
87193db446aSBoris Brezillon 	if (last_len) {
87293db446aSBoris Brezillon 		u8 tmp_buf[FIFO_DEPTH];
87393db446aSBoris Brezillon 
87493db446aSBoris Brezillon 		ioread32_rep(nfc->regs + NDDB, tmp_buf, FIFO_REP(FIFO_DEPTH));
87593db446aSBoris Brezillon 		memcpy(in + last_full_offset, tmp_buf, last_len);
87693db446aSBoris Brezillon 	}
87793db446aSBoris Brezillon 
87893db446aSBoris Brezillon 	return 0;
87993db446aSBoris Brezillon }
88093db446aSBoris Brezillon 
88193db446aSBoris Brezillon static int marvell_nfc_xfer_data_out_pio(struct marvell_nfc *nfc, const u8 *out,
88293db446aSBoris Brezillon 					 unsigned int len)
88393db446aSBoris Brezillon {
88493db446aSBoris Brezillon 	unsigned int last_len = len % FIFO_DEPTH;
88593db446aSBoris Brezillon 	unsigned int last_full_offset = round_down(len, FIFO_DEPTH);
88693db446aSBoris Brezillon 	int i;
88793db446aSBoris Brezillon 
88893db446aSBoris Brezillon 	for (i = 0; i < last_full_offset; i += FIFO_DEPTH)
88993db446aSBoris Brezillon 		iowrite32_rep(nfc->regs + NDDB, out + i, FIFO_REP(FIFO_DEPTH));
89093db446aSBoris Brezillon 
89193db446aSBoris Brezillon 	if (last_len) {
89293db446aSBoris Brezillon 		u8 tmp_buf[FIFO_DEPTH];
89393db446aSBoris Brezillon 
89493db446aSBoris Brezillon 		memcpy(tmp_buf, out + last_full_offset, last_len);
89593db446aSBoris Brezillon 		iowrite32_rep(nfc->regs + NDDB, tmp_buf, FIFO_REP(FIFO_DEPTH));
89693db446aSBoris Brezillon 	}
89793db446aSBoris Brezillon 
89893db446aSBoris Brezillon 	return 0;
89993db446aSBoris Brezillon }
90093db446aSBoris Brezillon 
90193db446aSBoris Brezillon static void marvell_nfc_check_empty_chunk(struct nand_chip *chip,
90293db446aSBoris Brezillon 					  u8 *data, int data_len,
90393db446aSBoris Brezillon 					  u8 *spare, int spare_len,
90493db446aSBoris Brezillon 					  u8 *ecc, int ecc_len,
90593db446aSBoris Brezillon 					  unsigned int *max_bitflips)
90693db446aSBoris Brezillon {
90793db446aSBoris Brezillon 	struct mtd_info *mtd = nand_to_mtd(chip);
90893db446aSBoris Brezillon 	int bf;
90993db446aSBoris Brezillon 
91093db446aSBoris Brezillon 	/*
91193db446aSBoris Brezillon 	 * Blank pages (all 0xFF) that have not been written may be recognized
91293db446aSBoris Brezillon 	 * as bad if bitflips occur, so whenever an uncorrectable error occurs,
91393db446aSBoris Brezillon 	 * check if the entire page (with ECC bytes) is actually blank or not.
91493db446aSBoris Brezillon 	 */
91593db446aSBoris Brezillon 	if (!data)
91693db446aSBoris Brezillon 		data_len = 0;
91793db446aSBoris Brezillon 	if (!spare)
91893db446aSBoris Brezillon 		spare_len = 0;
91993db446aSBoris Brezillon 	if (!ecc)
92093db446aSBoris Brezillon 		ecc_len = 0;
92193db446aSBoris Brezillon 
92293db446aSBoris Brezillon 	bf = nand_check_erased_ecc_chunk(data, data_len, ecc, ecc_len,
92393db446aSBoris Brezillon 					 spare, spare_len, chip->ecc.strength);
92493db446aSBoris Brezillon 	if (bf < 0) {
92593db446aSBoris Brezillon 		mtd->ecc_stats.failed++;
92693db446aSBoris Brezillon 		return;
92793db446aSBoris Brezillon 	}
92893db446aSBoris Brezillon 
92993db446aSBoris Brezillon 	/* Update the stats and max_bitflips */
93093db446aSBoris Brezillon 	mtd->ecc_stats.corrected += bf;
93193db446aSBoris Brezillon 	*max_bitflips = max_t(unsigned int, *max_bitflips, bf);
93293db446aSBoris Brezillon }
93393db446aSBoris Brezillon 
93493db446aSBoris Brezillon /*
9351617942aSMiquel Raynal  * Check if a chunk is correct or not according to the hardware ECC engine.
93693db446aSBoris Brezillon  * mtd->ecc_stats.corrected is updated, as well as max_bitflips, however
93793db446aSBoris Brezillon  * mtd->ecc_stats.failure is not, the function will instead return a non-zero
93893db446aSBoris Brezillon  * value indicating that a check on the emptyness of the subpage must be
9391617942aSMiquel Raynal  * performed before actually declaring the subpage as "corrupted".
94093db446aSBoris Brezillon  */
9411617942aSMiquel Raynal static int marvell_nfc_hw_ecc_check_bitflips(struct nand_chip *chip,
94293db446aSBoris Brezillon 					     unsigned int *max_bitflips)
94393db446aSBoris Brezillon {
94493db446aSBoris Brezillon 	struct mtd_info *mtd = nand_to_mtd(chip);
94593db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
94693db446aSBoris Brezillon 	int bf = 0;
94793db446aSBoris Brezillon 	u32 ndsr;
94893db446aSBoris Brezillon 
94993db446aSBoris Brezillon 	ndsr = readl_relaxed(nfc->regs + NDSR);
95093db446aSBoris Brezillon 
95193db446aSBoris Brezillon 	/* Check uncorrectable error flag */
95293db446aSBoris Brezillon 	if (ndsr & NDSR_UNCERR) {
95393db446aSBoris Brezillon 		writel_relaxed(ndsr, nfc->regs + NDSR);
95493db446aSBoris Brezillon 
95593db446aSBoris Brezillon 		/*
95693db446aSBoris Brezillon 		 * Do not increment ->ecc_stats.failed now, instead, return a
95793db446aSBoris Brezillon 		 * non-zero value to indicate that this chunk was apparently
95893db446aSBoris Brezillon 		 * bad, and it should be check to see if it empty or not. If
95993db446aSBoris Brezillon 		 * the chunk (with ECC bytes) is not declared empty, the calling
96093db446aSBoris Brezillon 		 * function must increment the failure count.
96193db446aSBoris Brezillon 		 */
96293db446aSBoris Brezillon 		return -EBADMSG;
96393db446aSBoris Brezillon 	}
96493db446aSBoris Brezillon 
96593db446aSBoris Brezillon 	/* Check correctable error flag */
96693db446aSBoris Brezillon 	if (ndsr & NDSR_CORERR) {
96793db446aSBoris Brezillon 		writel_relaxed(ndsr, nfc->regs + NDSR);
96893db446aSBoris Brezillon 
96993db446aSBoris Brezillon 		if (chip->ecc.algo == NAND_ECC_BCH)
97093db446aSBoris Brezillon 			bf = NDSR_ERRCNT(ndsr);
97193db446aSBoris Brezillon 		else
97293db446aSBoris Brezillon 			bf = 1;
97393db446aSBoris Brezillon 	}
97493db446aSBoris Brezillon 
97593db446aSBoris Brezillon 	/* Update the stats and max_bitflips */
97693db446aSBoris Brezillon 	mtd->ecc_stats.corrected += bf;
97793db446aSBoris Brezillon 	*max_bitflips = max_t(unsigned int, *max_bitflips, bf);
97893db446aSBoris Brezillon 
97993db446aSBoris Brezillon 	return 0;
98093db446aSBoris Brezillon }
98193db446aSBoris Brezillon 
98293db446aSBoris Brezillon /* Hamming read helpers */
98393db446aSBoris Brezillon static int marvell_nfc_hw_ecc_hmg_do_read_page(struct nand_chip *chip,
98493db446aSBoris Brezillon 					       u8 *data_buf, u8 *oob_buf,
98593db446aSBoris Brezillon 					       bool raw, int page)
98693db446aSBoris Brezillon {
98793db446aSBoris Brezillon 	struct marvell_nand_chip *marvell_nand = to_marvell_nand(chip);
98893db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
98993db446aSBoris Brezillon 	const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout;
99093db446aSBoris Brezillon 	struct marvell_nfc_op nfc_op = {
99193db446aSBoris Brezillon 		.ndcb[0] = NDCB0_CMD_TYPE(TYPE_READ) |
99293db446aSBoris Brezillon 			   NDCB0_ADDR_CYC(marvell_nand->addr_cyc) |
99393db446aSBoris Brezillon 			   NDCB0_DBC |
99493db446aSBoris Brezillon 			   NDCB0_CMD1(NAND_CMD_READ0) |
99593db446aSBoris Brezillon 			   NDCB0_CMD2(NAND_CMD_READSTART),
99693db446aSBoris Brezillon 		.ndcb[1] = NDCB1_ADDRS_PAGE(page),
99793db446aSBoris Brezillon 		.ndcb[2] = NDCB2_ADDR5_PAGE(page),
99893db446aSBoris Brezillon 	};
99993db446aSBoris Brezillon 	unsigned int oob_bytes = lt->spare_bytes + (raw ? lt->ecc_bytes : 0);
100093db446aSBoris Brezillon 	int ret;
100193db446aSBoris Brezillon 
100293db446aSBoris Brezillon 	/* NFCv2 needs more information about the operation being executed */
100393db446aSBoris Brezillon 	if (nfc->caps->is_nfcv2)
100493db446aSBoris Brezillon 		nfc_op.ndcb[0] |= NDCB0_CMD_XTYPE(XTYPE_MONOLITHIC_RW);
100593db446aSBoris Brezillon 
100693db446aSBoris Brezillon 	ret = marvell_nfc_prepare_cmd(chip);
100793db446aSBoris Brezillon 	if (ret)
100893db446aSBoris Brezillon 		return ret;
100993db446aSBoris Brezillon 
101093db446aSBoris Brezillon 	marvell_nfc_send_cmd(chip, &nfc_op);
101193db446aSBoris Brezillon 	ret = marvell_nfc_end_cmd(chip, NDSR_RDDREQ,
101293db446aSBoris Brezillon 				  "RDDREQ while draining FIFO (data/oob)");
101393db446aSBoris Brezillon 	if (ret)
101493db446aSBoris Brezillon 		return ret;
101593db446aSBoris Brezillon 
101693db446aSBoris Brezillon 	/*
101793db446aSBoris Brezillon 	 * Read the page then the OOB area. Unlike what is shown in current
101893db446aSBoris Brezillon 	 * documentation, spare bytes are protected by the ECC engine, and must
101993db446aSBoris Brezillon 	 * be at the beginning of the OOB area or running this driver on legacy
102093db446aSBoris Brezillon 	 * systems will prevent the discovery of the BBM/BBT.
102193db446aSBoris Brezillon 	 */
102293db446aSBoris Brezillon 	if (nfc->use_dma) {
102393db446aSBoris Brezillon 		marvell_nfc_xfer_data_dma(nfc, DMA_FROM_DEVICE,
102493db446aSBoris Brezillon 					  lt->data_bytes + oob_bytes);
102593db446aSBoris Brezillon 		memcpy(data_buf, nfc->dma_buf, lt->data_bytes);
102693db446aSBoris Brezillon 		memcpy(oob_buf, nfc->dma_buf + lt->data_bytes, oob_bytes);
102793db446aSBoris Brezillon 	} else {
102893db446aSBoris Brezillon 		marvell_nfc_xfer_data_in_pio(nfc, data_buf, lt->data_bytes);
102993db446aSBoris Brezillon 		marvell_nfc_xfer_data_in_pio(nfc, oob_buf, oob_bytes);
103093db446aSBoris Brezillon 	}
103193db446aSBoris Brezillon 
103293db446aSBoris Brezillon 	ret = marvell_nfc_wait_cmdd(chip);
103393db446aSBoris Brezillon 	return ret;
103493db446aSBoris Brezillon }
103593db446aSBoris Brezillon 
1036b9761687SBoris Brezillon static int marvell_nfc_hw_ecc_hmg_read_page_raw(struct nand_chip *chip, u8 *buf,
103793db446aSBoris Brezillon 						int oob_required, int page)
103893db446aSBoris Brezillon {
1039b2525141SBoris Brezillon 	marvell_nfc_select_target(chip, chip->cur_cs);
104093db446aSBoris Brezillon 	return marvell_nfc_hw_ecc_hmg_do_read_page(chip, buf, chip->oob_poi,
104193db446aSBoris Brezillon 						   true, page);
104293db446aSBoris Brezillon }
104393db446aSBoris Brezillon 
1044b9761687SBoris Brezillon static int marvell_nfc_hw_ecc_hmg_read_page(struct nand_chip *chip, u8 *buf,
1045b9761687SBoris Brezillon 					    int oob_required, int page)
104693db446aSBoris Brezillon {
104793db446aSBoris Brezillon 	const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout;
104893db446aSBoris Brezillon 	unsigned int full_sz = lt->data_bytes + lt->spare_bytes + lt->ecc_bytes;
104993db446aSBoris Brezillon 	int max_bitflips = 0, ret;
105093db446aSBoris Brezillon 	u8 *raw_buf;
105193db446aSBoris Brezillon 
1052b2525141SBoris Brezillon 	marvell_nfc_select_target(chip, chip->cur_cs);
105393db446aSBoris Brezillon 	marvell_nfc_enable_hw_ecc(chip);
105493db446aSBoris Brezillon 	marvell_nfc_hw_ecc_hmg_do_read_page(chip, buf, chip->oob_poi, false,
105593db446aSBoris Brezillon 					    page);
10561617942aSMiquel Raynal 	ret = marvell_nfc_hw_ecc_check_bitflips(chip, &max_bitflips);
105793db446aSBoris Brezillon 	marvell_nfc_disable_hw_ecc(chip);
105893db446aSBoris Brezillon 
105993db446aSBoris Brezillon 	if (!ret)
106093db446aSBoris Brezillon 		return max_bitflips;
106193db446aSBoris Brezillon 
106293db446aSBoris Brezillon 	/*
106393db446aSBoris Brezillon 	 * When ECC failures are detected, check if the full page has been
106493db446aSBoris Brezillon 	 * written or not. Ignore the failure if it is actually empty.
106593db446aSBoris Brezillon 	 */
106693db446aSBoris Brezillon 	raw_buf = kmalloc(full_sz, GFP_KERNEL);
106793db446aSBoris Brezillon 	if (!raw_buf)
106893db446aSBoris Brezillon 		return -ENOMEM;
106993db446aSBoris Brezillon 
107093db446aSBoris Brezillon 	marvell_nfc_hw_ecc_hmg_do_read_page(chip, raw_buf, raw_buf +
107193db446aSBoris Brezillon 					    lt->data_bytes, true, page);
107293db446aSBoris Brezillon 	marvell_nfc_check_empty_chunk(chip, raw_buf, full_sz, NULL, 0, NULL, 0,
107393db446aSBoris Brezillon 				      &max_bitflips);
107493db446aSBoris Brezillon 	kfree(raw_buf);
107593db446aSBoris Brezillon 
107693db446aSBoris Brezillon 	return max_bitflips;
107793db446aSBoris Brezillon }
107893db446aSBoris Brezillon 
107993db446aSBoris Brezillon /*
108093db446aSBoris Brezillon  * Spare area in Hamming layouts is not protected by the ECC engine (even if
108193db446aSBoris Brezillon  * it appears before the ECC bytes when reading), the ->read_oob_raw() function
108293db446aSBoris Brezillon  * also stands for ->read_oob().
108393db446aSBoris Brezillon  */
1084b9761687SBoris Brezillon static int marvell_nfc_hw_ecc_hmg_read_oob_raw(struct nand_chip *chip, int page)
108593db446aSBoris Brezillon {
1086eeab7174SBoris Brezillon 	u8 *buf = nand_get_data_buf(chip);
108793db446aSBoris Brezillon 
1088b2525141SBoris Brezillon 	marvell_nfc_select_target(chip, chip->cur_cs);
1089eeab7174SBoris Brezillon 	return marvell_nfc_hw_ecc_hmg_do_read_page(chip, buf, chip->oob_poi,
1090eeab7174SBoris Brezillon 						   true, page);
109193db446aSBoris Brezillon }
109293db446aSBoris Brezillon 
109393db446aSBoris Brezillon /* Hamming write helpers */
109493db446aSBoris Brezillon static int marvell_nfc_hw_ecc_hmg_do_write_page(struct nand_chip *chip,
109593db446aSBoris Brezillon 						const u8 *data_buf,
109693db446aSBoris Brezillon 						const u8 *oob_buf, bool raw,
109793db446aSBoris Brezillon 						int page)
109893db446aSBoris Brezillon {
1099e0160cd4SMiquel Raynal 	const struct nand_sdr_timings *sdr =
1100e0160cd4SMiquel Raynal 		nand_get_sdr_timings(nand_get_interface_config(chip));
110193db446aSBoris Brezillon 	struct marvell_nand_chip *marvell_nand = to_marvell_nand(chip);
110293db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
110393db446aSBoris Brezillon 	const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout;
110493db446aSBoris Brezillon 	struct marvell_nfc_op nfc_op = {
110593db446aSBoris Brezillon 		.ndcb[0] = NDCB0_CMD_TYPE(TYPE_WRITE) |
110693db446aSBoris Brezillon 			   NDCB0_ADDR_CYC(marvell_nand->addr_cyc) |
110793db446aSBoris Brezillon 			   NDCB0_CMD1(NAND_CMD_SEQIN) |
110893db446aSBoris Brezillon 			   NDCB0_CMD2(NAND_CMD_PAGEPROG) |
110993db446aSBoris Brezillon 			   NDCB0_DBC,
111093db446aSBoris Brezillon 		.ndcb[1] = NDCB1_ADDRS_PAGE(page),
111193db446aSBoris Brezillon 		.ndcb[2] = NDCB2_ADDR5_PAGE(page),
111293db446aSBoris Brezillon 	};
111393db446aSBoris Brezillon 	unsigned int oob_bytes = lt->spare_bytes + (raw ? lt->ecc_bytes : 0);
111493db446aSBoris Brezillon 	int ret;
111593db446aSBoris Brezillon 
111693db446aSBoris Brezillon 	/* NFCv2 needs more information about the operation being executed */
111793db446aSBoris Brezillon 	if (nfc->caps->is_nfcv2)
111893db446aSBoris Brezillon 		nfc_op.ndcb[0] |= NDCB0_CMD_XTYPE(XTYPE_MONOLITHIC_RW);
111993db446aSBoris Brezillon 
112093db446aSBoris Brezillon 	ret = marvell_nfc_prepare_cmd(chip);
112193db446aSBoris Brezillon 	if (ret)
112293db446aSBoris Brezillon 		return ret;
112393db446aSBoris Brezillon 
112493db446aSBoris Brezillon 	marvell_nfc_send_cmd(chip, &nfc_op);
112593db446aSBoris Brezillon 	ret = marvell_nfc_end_cmd(chip, NDSR_WRDREQ,
112693db446aSBoris Brezillon 				  "WRDREQ while loading FIFO (data)");
112793db446aSBoris Brezillon 	if (ret)
112893db446aSBoris Brezillon 		return ret;
112993db446aSBoris Brezillon 
113093db446aSBoris Brezillon 	/* Write the page then the OOB area */
113193db446aSBoris Brezillon 	if (nfc->use_dma) {
113293db446aSBoris Brezillon 		memcpy(nfc->dma_buf, data_buf, lt->data_bytes);
113393db446aSBoris Brezillon 		memcpy(nfc->dma_buf + lt->data_bytes, oob_buf, oob_bytes);
113493db446aSBoris Brezillon 		marvell_nfc_xfer_data_dma(nfc, DMA_TO_DEVICE, lt->data_bytes +
113593db446aSBoris Brezillon 					  lt->ecc_bytes + lt->spare_bytes);
113693db446aSBoris Brezillon 	} else {
113793db446aSBoris Brezillon 		marvell_nfc_xfer_data_out_pio(nfc, data_buf, lt->data_bytes);
113893db446aSBoris Brezillon 		marvell_nfc_xfer_data_out_pio(nfc, oob_buf, oob_bytes);
113993db446aSBoris Brezillon 	}
114093db446aSBoris Brezillon 
114193db446aSBoris Brezillon 	ret = marvell_nfc_wait_cmdd(chip);
114293db446aSBoris Brezillon 	if (ret)
114393db446aSBoris Brezillon 		return ret;
114493db446aSBoris Brezillon 
114593db446aSBoris Brezillon 	ret = marvell_nfc_wait_op(chip,
1146e0160cd4SMiquel Raynal 				  PSEC_TO_MSEC(sdr->tPROG_max));
114793db446aSBoris Brezillon 	return ret;
114893db446aSBoris Brezillon }
114993db446aSBoris Brezillon 
1150767eb6fbSBoris Brezillon static int marvell_nfc_hw_ecc_hmg_write_page_raw(struct nand_chip *chip,
115193db446aSBoris Brezillon 						 const u8 *buf,
115293db446aSBoris Brezillon 						 int oob_required, int page)
115393db446aSBoris Brezillon {
1154b2525141SBoris Brezillon 	marvell_nfc_select_target(chip, chip->cur_cs);
115593db446aSBoris Brezillon 	return marvell_nfc_hw_ecc_hmg_do_write_page(chip, buf, chip->oob_poi,
115693db446aSBoris Brezillon 						    true, page);
115793db446aSBoris Brezillon }
115893db446aSBoris Brezillon 
1159767eb6fbSBoris Brezillon static int marvell_nfc_hw_ecc_hmg_write_page(struct nand_chip *chip,
116093db446aSBoris Brezillon 					     const u8 *buf,
116193db446aSBoris Brezillon 					     int oob_required, int page)
116293db446aSBoris Brezillon {
116393db446aSBoris Brezillon 	int ret;
116493db446aSBoris Brezillon 
1165b2525141SBoris Brezillon 	marvell_nfc_select_target(chip, chip->cur_cs);
116693db446aSBoris Brezillon 	marvell_nfc_enable_hw_ecc(chip);
116793db446aSBoris Brezillon 	ret = marvell_nfc_hw_ecc_hmg_do_write_page(chip, buf, chip->oob_poi,
116893db446aSBoris Brezillon 						   false, page);
116993db446aSBoris Brezillon 	marvell_nfc_disable_hw_ecc(chip);
117093db446aSBoris Brezillon 
117193db446aSBoris Brezillon 	return ret;
117293db446aSBoris Brezillon }
117393db446aSBoris Brezillon 
117493db446aSBoris Brezillon /*
117593db446aSBoris Brezillon  * Spare area in Hamming layouts is not protected by the ECC engine (even if
117693db446aSBoris Brezillon  * it appears before the ECC bytes when reading), the ->write_oob_raw() function
117793db446aSBoris Brezillon  * also stands for ->write_oob().
117893db446aSBoris Brezillon  */
1179767eb6fbSBoris Brezillon static int marvell_nfc_hw_ecc_hmg_write_oob_raw(struct nand_chip *chip,
118093db446aSBoris Brezillon 						int page)
118193db446aSBoris Brezillon {
1182767eb6fbSBoris Brezillon 	struct mtd_info *mtd = nand_to_mtd(chip);
1183eeab7174SBoris Brezillon 	u8 *buf = nand_get_data_buf(chip);
1184767eb6fbSBoris Brezillon 
1185eeab7174SBoris Brezillon 	memset(buf, 0xFF, mtd->writesize);
118693db446aSBoris Brezillon 
1187b2525141SBoris Brezillon 	marvell_nfc_select_target(chip, chip->cur_cs);
1188eeab7174SBoris Brezillon 	return marvell_nfc_hw_ecc_hmg_do_write_page(chip, buf, chip->oob_poi,
1189eeab7174SBoris Brezillon 						    true, page);
119093db446aSBoris Brezillon }
119193db446aSBoris Brezillon 
119293db446aSBoris Brezillon /* BCH read helpers */
1193b9761687SBoris Brezillon static int marvell_nfc_hw_ecc_bch_read_page_raw(struct nand_chip *chip, u8 *buf,
119493db446aSBoris Brezillon 						int oob_required, int page)
119593db446aSBoris Brezillon {
1196b9761687SBoris Brezillon 	struct mtd_info *mtd = nand_to_mtd(chip);
119793db446aSBoris Brezillon 	const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout;
119893db446aSBoris Brezillon 	u8 *oob = chip->oob_poi;
119993db446aSBoris Brezillon 	int chunk_size = lt->data_bytes + lt->spare_bytes + lt->ecc_bytes;
120093db446aSBoris Brezillon 	int ecc_offset = (lt->full_chunk_cnt * lt->spare_bytes) +
120193db446aSBoris Brezillon 		lt->last_spare_bytes;
120293db446aSBoris Brezillon 	int data_len = lt->data_bytes;
120393db446aSBoris Brezillon 	int spare_len = lt->spare_bytes;
120493db446aSBoris Brezillon 	int ecc_len = lt->ecc_bytes;
120593db446aSBoris Brezillon 	int chunk;
120693db446aSBoris Brezillon 
1207b2525141SBoris Brezillon 	marvell_nfc_select_target(chip, chip->cur_cs);
1208b2525141SBoris Brezillon 
120993db446aSBoris Brezillon 	if (oob_required)
121093db446aSBoris Brezillon 		memset(chip->oob_poi, 0xFF, mtd->oobsize);
121193db446aSBoris Brezillon 
121293db446aSBoris Brezillon 	nand_read_page_op(chip, page, 0, NULL, 0);
121393db446aSBoris Brezillon 
121493db446aSBoris Brezillon 	for (chunk = 0; chunk < lt->nchunks; chunk++) {
121593db446aSBoris Brezillon 		/* Update last chunk length */
121693db446aSBoris Brezillon 		if (chunk >= lt->full_chunk_cnt) {
121793db446aSBoris Brezillon 			data_len = lt->last_data_bytes;
121893db446aSBoris Brezillon 			spare_len = lt->last_spare_bytes;
121993db446aSBoris Brezillon 			ecc_len = lt->last_ecc_bytes;
122093db446aSBoris Brezillon 		}
122193db446aSBoris Brezillon 
122293db446aSBoris Brezillon 		/* Read data bytes*/
122393db446aSBoris Brezillon 		nand_change_read_column_op(chip, chunk * chunk_size,
122493db446aSBoris Brezillon 					   buf + (lt->data_bytes * chunk),
122593db446aSBoris Brezillon 					   data_len, false);
122693db446aSBoris Brezillon 
122793db446aSBoris Brezillon 		/* Read spare bytes */
122893db446aSBoris Brezillon 		nand_read_data_op(chip, oob + (lt->spare_bytes * chunk),
1229b451f5beSMiquel Raynal 				  spare_len, false, false);
123093db446aSBoris Brezillon 
123193db446aSBoris Brezillon 		/* Read ECC bytes */
123293db446aSBoris Brezillon 		nand_read_data_op(chip, oob + ecc_offset +
123393db446aSBoris Brezillon 				  (ALIGN(lt->ecc_bytes, 32) * chunk),
1234b451f5beSMiquel Raynal 				  ecc_len, false, false);
123593db446aSBoris Brezillon 	}
123693db446aSBoris Brezillon 
123793db446aSBoris Brezillon 	return 0;
123893db446aSBoris Brezillon }
123993db446aSBoris Brezillon 
124093db446aSBoris Brezillon static void marvell_nfc_hw_ecc_bch_read_chunk(struct nand_chip *chip, int chunk,
124193db446aSBoris Brezillon 					      u8 *data, unsigned int data_len,
124293db446aSBoris Brezillon 					      u8 *spare, unsigned int spare_len,
124393db446aSBoris Brezillon 					      int page)
124493db446aSBoris Brezillon {
124593db446aSBoris Brezillon 	struct marvell_nand_chip *marvell_nand = to_marvell_nand(chip);
124693db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
124793db446aSBoris Brezillon 	const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout;
124893db446aSBoris Brezillon 	int i, ret;
124993db446aSBoris Brezillon 	struct marvell_nfc_op nfc_op = {
125093db446aSBoris Brezillon 		.ndcb[0] = NDCB0_CMD_TYPE(TYPE_READ) |
125193db446aSBoris Brezillon 			   NDCB0_ADDR_CYC(marvell_nand->addr_cyc) |
125293db446aSBoris Brezillon 			   NDCB0_LEN_OVRD,
125393db446aSBoris Brezillon 		.ndcb[1] = NDCB1_ADDRS_PAGE(page),
125493db446aSBoris Brezillon 		.ndcb[2] = NDCB2_ADDR5_PAGE(page),
125593db446aSBoris Brezillon 		.ndcb[3] = data_len + spare_len,
125693db446aSBoris Brezillon 	};
125793db446aSBoris Brezillon 
125893db446aSBoris Brezillon 	ret = marvell_nfc_prepare_cmd(chip);
125993db446aSBoris Brezillon 	if (ret)
126093db446aSBoris Brezillon 		return;
126193db446aSBoris Brezillon 
126293db446aSBoris Brezillon 	if (chunk == 0)
126393db446aSBoris Brezillon 		nfc_op.ndcb[0] |= NDCB0_DBC |
126493db446aSBoris Brezillon 				  NDCB0_CMD1(NAND_CMD_READ0) |
126593db446aSBoris Brezillon 				  NDCB0_CMD2(NAND_CMD_READSTART);
126693db446aSBoris Brezillon 
126793db446aSBoris Brezillon 	/*
126890d61763SBoris Brezillon 	 * Trigger the monolithic read on the first chunk, then naked read on
126990d61763SBoris Brezillon 	 * intermediate chunks and finally a last naked read on the last chunk.
127093db446aSBoris Brezillon 	 */
127190d61763SBoris Brezillon 	if (chunk == 0)
127293db446aSBoris Brezillon 		nfc_op.ndcb[0] |= NDCB0_CMD_XTYPE(XTYPE_MONOLITHIC_RW);
127390d61763SBoris Brezillon 	else if (chunk < lt->nchunks - 1)
127490d61763SBoris Brezillon 		nfc_op.ndcb[0] |= NDCB0_CMD_XTYPE(XTYPE_NAKED_RW);
127593db446aSBoris Brezillon 	else
127693db446aSBoris Brezillon 		nfc_op.ndcb[0] |= NDCB0_CMD_XTYPE(XTYPE_LAST_NAKED_RW);
127793db446aSBoris Brezillon 
127893db446aSBoris Brezillon 	marvell_nfc_send_cmd(chip, &nfc_op);
127993db446aSBoris Brezillon 
128093db446aSBoris Brezillon 	/*
128193db446aSBoris Brezillon 	 * According to the datasheet, when reading from NDDB
128293db446aSBoris Brezillon 	 * with BCH enabled, after each 32 bytes reads, we
128393db446aSBoris Brezillon 	 * have to make sure that the NDSR.RDDREQ bit is set.
128493db446aSBoris Brezillon 	 *
128593db446aSBoris Brezillon 	 * Drain the FIFO, 8 32-bit reads at a time, and skip
128693db446aSBoris Brezillon 	 * the polling on the last read.
128793db446aSBoris Brezillon 	 *
128893db446aSBoris Brezillon 	 * Length is a multiple of 32 bytes, hence it is a multiple of 8 too.
128993db446aSBoris Brezillon 	 */
129093db446aSBoris Brezillon 	for (i = 0; i < data_len; i += FIFO_DEPTH * BCH_SEQ_READS) {
129193db446aSBoris Brezillon 		marvell_nfc_end_cmd(chip, NDSR_RDDREQ,
129293db446aSBoris Brezillon 				    "RDDREQ while draining FIFO (data)");
129393db446aSBoris Brezillon 		marvell_nfc_xfer_data_in_pio(nfc, data,
129493db446aSBoris Brezillon 					     FIFO_DEPTH * BCH_SEQ_READS);
129593db446aSBoris Brezillon 		data += FIFO_DEPTH * BCH_SEQ_READS;
129693db446aSBoris Brezillon 	}
129793db446aSBoris Brezillon 
129893db446aSBoris Brezillon 	for (i = 0; i < spare_len; i += FIFO_DEPTH * BCH_SEQ_READS) {
129993db446aSBoris Brezillon 		marvell_nfc_end_cmd(chip, NDSR_RDDREQ,
130093db446aSBoris Brezillon 				    "RDDREQ while draining FIFO (OOB)");
130193db446aSBoris Brezillon 		marvell_nfc_xfer_data_in_pio(nfc, spare,
130293db446aSBoris Brezillon 					     FIFO_DEPTH * BCH_SEQ_READS);
130393db446aSBoris Brezillon 		spare += FIFO_DEPTH * BCH_SEQ_READS;
130493db446aSBoris Brezillon 	}
130593db446aSBoris Brezillon }
130693db446aSBoris Brezillon 
1307b9761687SBoris Brezillon static int marvell_nfc_hw_ecc_bch_read_page(struct nand_chip *chip,
130893db446aSBoris Brezillon 					    u8 *buf, int oob_required,
130993db446aSBoris Brezillon 					    int page)
131093db446aSBoris Brezillon {
1311b9761687SBoris Brezillon 	struct mtd_info *mtd = nand_to_mtd(chip);
131293db446aSBoris Brezillon 	const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout;
1313dbfc6718SMiquel Raynal 	int data_len = lt->data_bytes, spare_len = lt->spare_bytes;
1314dbfc6718SMiquel Raynal 	u8 *data = buf, *spare = chip->oob_poi;
131593db446aSBoris Brezillon 	int max_bitflips = 0;
131693db446aSBoris Brezillon 	u32 failure_mask = 0;
1317dbfc6718SMiquel Raynal 	int chunk, ret;
131893db446aSBoris Brezillon 
1319b2525141SBoris Brezillon 	marvell_nfc_select_target(chip, chip->cur_cs);
1320b2525141SBoris Brezillon 
132193db446aSBoris Brezillon 	/*
132293db446aSBoris Brezillon 	 * With BCH, OOB is not fully used (and thus not read entirely), not
132393db446aSBoris Brezillon 	 * expected bytes could show up at the end of the OOB buffer if not
132493db446aSBoris Brezillon 	 * explicitly erased.
132593db446aSBoris Brezillon 	 */
132693db446aSBoris Brezillon 	if (oob_required)
132793db446aSBoris Brezillon 		memset(chip->oob_poi, 0xFF, mtd->oobsize);
132893db446aSBoris Brezillon 
132993db446aSBoris Brezillon 	marvell_nfc_enable_hw_ecc(chip);
133093db446aSBoris Brezillon 
133193db446aSBoris Brezillon 	for (chunk = 0; chunk < lt->nchunks; chunk++) {
133293db446aSBoris Brezillon 		/* Update length for the last chunk */
133393db446aSBoris Brezillon 		if (chunk >= lt->full_chunk_cnt) {
133493db446aSBoris Brezillon 			data_len = lt->last_data_bytes;
133593db446aSBoris Brezillon 			spare_len = lt->last_spare_bytes;
133693db446aSBoris Brezillon 		}
133793db446aSBoris Brezillon 
133893db446aSBoris Brezillon 		/* Read the chunk and detect number of bitflips */
133993db446aSBoris Brezillon 		marvell_nfc_hw_ecc_bch_read_chunk(chip, chunk, data, data_len,
134093db446aSBoris Brezillon 						  spare, spare_len, page);
13411617942aSMiquel Raynal 		ret = marvell_nfc_hw_ecc_check_bitflips(chip, &max_bitflips);
134293db446aSBoris Brezillon 		if (ret)
134393db446aSBoris Brezillon 			failure_mask |= BIT(chunk);
134493db446aSBoris Brezillon 
134593db446aSBoris Brezillon 		data += data_len;
134693db446aSBoris Brezillon 		spare += spare_len;
134793db446aSBoris Brezillon 	}
134893db446aSBoris Brezillon 
134993db446aSBoris Brezillon 	marvell_nfc_disable_hw_ecc(chip);
135093db446aSBoris Brezillon 
135193db446aSBoris Brezillon 	if (!failure_mask)
135293db446aSBoris Brezillon 		return max_bitflips;
135393db446aSBoris Brezillon 
135493db446aSBoris Brezillon 	/*
135593db446aSBoris Brezillon 	 * Please note that dumping the ECC bytes during a normal read with OOB
135693db446aSBoris Brezillon 	 * area would add a significant overhead as ECC bytes are "consumed" by
135793db446aSBoris Brezillon 	 * the controller in normal mode and must be re-read in raw mode. To
135893db446aSBoris Brezillon 	 * avoid dropping the performances, we prefer not to include them. The
135993db446aSBoris Brezillon 	 * user should re-read the page in raw mode if ECC bytes are required.
1360dbfc6718SMiquel Raynal 	 */
1361dbfc6718SMiquel Raynal 
1362dbfc6718SMiquel Raynal 	/*
13631617942aSMiquel Raynal 	 * In case there is any subpage read error, we usually re-read only ECC
13641617942aSMiquel Raynal 	 * bytes in raw mode and check if the whole page is empty. In this case,
13651617942aSMiquel Raynal 	 * it is normal that the ECC check failed and we just ignore the error.
136693db446aSBoris Brezillon 	 *
13677fd130f7SMiquel Raynal 	 * However, it has been empirically observed that for some layouts (e.g
13687fd130f7SMiquel Raynal 	 * 2k page, 8b strength per 512B chunk), the controller tries to correct
13697fd130f7SMiquel Raynal 	 * bits and may create itself bitflips in the erased area. To overcome
13707fd130f7SMiquel Raynal 	 * this strange behavior, the whole page is re-read in raw mode, not
13717fd130f7SMiquel Raynal 	 * only the ECC bytes.
137293db446aSBoris Brezillon 	 */
137393db446aSBoris Brezillon 	for (chunk = 0; chunk < lt->nchunks; chunk++) {
1374dbfc6718SMiquel Raynal 		int data_off_in_page, spare_off_in_page, ecc_off_in_page;
1375dbfc6718SMiquel Raynal 		int data_off, spare_off, ecc_off;
1376dbfc6718SMiquel Raynal 		int data_len, spare_len, ecc_len;
1377dbfc6718SMiquel Raynal 
137893db446aSBoris Brezillon 		/* No failure reported for this chunk, move to the next one */
137993db446aSBoris Brezillon 		if (!(failure_mask & BIT(chunk)))
138093db446aSBoris Brezillon 			continue;
138193db446aSBoris Brezillon 
1382dbfc6718SMiquel Raynal 		data_off_in_page = chunk * (lt->data_bytes + lt->spare_bytes +
1383dbfc6718SMiquel Raynal 					    lt->ecc_bytes);
1384dbfc6718SMiquel Raynal 		spare_off_in_page = data_off_in_page +
1385dbfc6718SMiquel Raynal 			(chunk < lt->full_chunk_cnt ? lt->data_bytes :
1386dbfc6718SMiquel Raynal 						      lt->last_data_bytes);
1387dbfc6718SMiquel Raynal 		ecc_off_in_page = spare_off_in_page +
1388dbfc6718SMiquel Raynal 			(chunk < lt->full_chunk_cnt ? lt->spare_bytes :
1389dbfc6718SMiquel Raynal 						      lt->last_spare_bytes);
1390dbfc6718SMiquel Raynal 
1391dbfc6718SMiquel Raynal 		data_off = chunk * lt->data_bytes;
1392dbfc6718SMiquel Raynal 		spare_off = chunk * lt->spare_bytes;
1393dbfc6718SMiquel Raynal 		ecc_off = (lt->full_chunk_cnt * lt->spare_bytes) +
139493db446aSBoris Brezillon 			  lt->last_spare_bytes +
1395dbfc6718SMiquel Raynal 			  (chunk * (lt->ecc_bytes + 2));
139693db446aSBoris Brezillon 
1397dbfc6718SMiquel Raynal 		data_len = chunk < lt->full_chunk_cnt ? lt->data_bytes :
1398dbfc6718SMiquel Raynal 							lt->last_data_bytes;
1399dbfc6718SMiquel Raynal 		spare_len = chunk < lt->full_chunk_cnt ? lt->spare_bytes :
1400dbfc6718SMiquel Raynal 							 lt->last_spare_bytes;
1401dbfc6718SMiquel Raynal 		ecc_len = chunk < lt->full_chunk_cnt ? lt->ecc_bytes :
1402dbfc6718SMiquel Raynal 						       lt->last_ecc_bytes;
140393db446aSBoris Brezillon 
14047fd130f7SMiquel Raynal 		/*
14057fd130f7SMiquel Raynal 		 * Only re-read the ECC bytes, unless we are using the 2k/8b
14067fd130f7SMiquel Raynal 		 * layout which is buggy in the sense that the ECC engine will
14077fd130f7SMiquel Raynal 		 * try to correct data bytes anyway, creating bitflips. In this
14087fd130f7SMiquel Raynal 		 * case, re-read the entire page.
14097fd130f7SMiquel Raynal 		 */
14107fd130f7SMiquel Raynal 		if (lt->writesize == 2048 && lt->strength == 8) {
14117fd130f7SMiquel Raynal 			nand_change_read_column_op(chip, data_off_in_page,
14127fd130f7SMiquel Raynal 						   buf + data_off, data_len,
14137fd130f7SMiquel Raynal 						   false);
14147fd130f7SMiquel Raynal 			nand_change_read_column_op(chip, spare_off_in_page,
14157fd130f7SMiquel Raynal 						   chip->oob_poi + spare_off, spare_len,
14167fd130f7SMiquel Raynal 						   false);
14177fd130f7SMiquel Raynal 		}
14187fd130f7SMiquel Raynal 
1419dbfc6718SMiquel Raynal 		nand_change_read_column_op(chip, ecc_off_in_page,
1420dbfc6718SMiquel Raynal 					   chip->oob_poi + ecc_off, ecc_len,
1421dbfc6718SMiquel Raynal 					   false);
142293db446aSBoris Brezillon 
142393db446aSBoris Brezillon 		/* Check the entire chunk (data + spare + ecc) for emptyness */
1424dbfc6718SMiquel Raynal 		marvell_nfc_check_empty_chunk(chip, buf + data_off, data_len,
1425dbfc6718SMiquel Raynal 					      chip->oob_poi + spare_off, spare_len,
1426dbfc6718SMiquel Raynal 					      chip->oob_poi + ecc_off, ecc_len,
142793db446aSBoris Brezillon 					      &max_bitflips);
142893db446aSBoris Brezillon 	}
142993db446aSBoris Brezillon 
143093db446aSBoris Brezillon 	return max_bitflips;
143193db446aSBoris Brezillon }
143293db446aSBoris Brezillon 
1433b9761687SBoris Brezillon static int marvell_nfc_hw_ecc_bch_read_oob_raw(struct nand_chip *chip, int page)
143493db446aSBoris Brezillon {
1435eeab7174SBoris Brezillon 	u8 *buf = nand_get_data_buf(chip);
143693db446aSBoris Brezillon 
1437eeab7174SBoris Brezillon 	return chip->ecc.read_page_raw(chip, buf, true, page);
143893db446aSBoris Brezillon }
143993db446aSBoris Brezillon 
1440b9761687SBoris Brezillon static int marvell_nfc_hw_ecc_bch_read_oob(struct nand_chip *chip, int page)
144193db446aSBoris Brezillon {
1442eeab7174SBoris Brezillon 	u8 *buf = nand_get_data_buf(chip);
144393db446aSBoris Brezillon 
1444eeab7174SBoris Brezillon 	return chip->ecc.read_page(chip, buf, true, page);
144593db446aSBoris Brezillon }
144693db446aSBoris Brezillon 
144793db446aSBoris Brezillon /* BCH write helpers */
1448767eb6fbSBoris Brezillon static int marvell_nfc_hw_ecc_bch_write_page_raw(struct nand_chip *chip,
144993db446aSBoris Brezillon 						 const u8 *buf,
145093db446aSBoris Brezillon 						 int oob_required, int page)
145193db446aSBoris Brezillon {
145293db446aSBoris Brezillon 	const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout;
145393db446aSBoris Brezillon 	int full_chunk_size = lt->data_bytes + lt->spare_bytes + lt->ecc_bytes;
145493db446aSBoris Brezillon 	int data_len = lt->data_bytes;
145593db446aSBoris Brezillon 	int spare_len = lt->spare_bytes;
145693db446aSBoris Brezillon 	int ecc_len = lt->ecc_bytes;
145793db446aSBoris Brezillon 	int spare_offset = 0;
145893db446aSBoris Brezillon 	int ecc_offset = (lt->full_chunk_cnt * lt->spare_bytes) +
145993db446aSBoris Brezillon 		lt->last_spare_bytes;
146093db446aSBoris Brezillon 	int chunk;
146193db446aSBoris Brezillon 
1462b2525141SBoris Brezillon 	marvell_nfc_select_target(chip, chip->cur_cs);
1463b2525141SBoris Brezillon 
146493db446aSBoris Brezillon 	nand_prog_page_begin_op(chip, page, 0, NULL, 0);
146593db446aSBoris Brezillon 
146693db446aSBoris Brezillon 	for (chunk = 0; chunk < lt->nchunks; chunk++) {
146793db446aSBoris Brezillon 		if (chunk >= lt->full_chunk_cnt) {
146893db446aSBoris Brezillon 			data_len = lt->last_data_bytes;
146993db446aSBoris Brezillon 			spare_len = lt->last_spare_bytes;
147093db446aSBoris Brezillon 			ecc_len = lt->last_ecc_bytes;
147193db446aSBoris Brezillon 		}
147293db446aSBoris Brezillon 
147393db446aSBoris Brezillon 		/* Point to the column of the next chunk */
147493db446aSBoris Brezillon 		nand_change_write_column_op(chip, chunk * full_chunk_size,
147593db446aSBoris Brezillon 					    NULL, 0, false);
147693db446aSBoris Brezillon 
147793db446aSBoris Brezillon 		/* Write the data */
147893db446aSBoris Brezillon 		nand_write_data_op(chip, buf + (chunk * lt->data_bytes),
147993db446aSBoris Brezillon 				   data_len, false);
148093db446aSBoris Brezillon 
148193db446aSBoris Brezillon 		if (!oob_required)
148293db446aSBoris Brezillon 			continue;
148393db446aSBoris Brezillon 
148493db446aSBoris Brezillon 		/* Write the spare bytes */
148593db446aSBoris Brezillon 		if (spare_len)
148693db446aSBoris Brezillon 			nand_write_data_op(chip, chip->oob_poi + spare_offset,
148793db446aSBoris Brezillon 					   spare_len, false);
148893db446aSBoris Brezillon 
148993db446aSBoris Brezillon 		/* Write the ECC bytes */
149093db446aSBoris Brezillon 		if (ecc_len)
149193db446aSBoris Brezillon 			nand_write_data_op(chip, chip->oob_poi + ecc_offset,
149293db446aSBoris Brezillon 					   ecc_len, false);
149393db446aSBoris Brezillon 
149493db446aSBoris Brezillon 		spare_offset += spare_len;
149593db446aSBoris Brezillon 		ecc_offset += ALIGN(ecc_len, 32);
149693db446aSBoris Brezillon 	}
149793db446aSBoris Brezillon 
149893db446aSBoris Brezillon 	return nand_prog_page_end_op(chip);
149993db446aSBoris Brezillon }
150093db446aSBoris Brezillon 
150193db446aSBoris Brezillon static int
150293db446aSBoris Brezillon marvell_nfc_hw_ecc_bch_write_chunk(struct nand_chip *chip, int chunk,
150393db446aSBoris Brezillon 				   const u8 *data, unsigned int data_len,
150493db446aSBoris Brezillon 				   const u8 *spare, unsigned int spare_len,
150593db446aSBoris Brezillon 				   int page)
150693db446aSBoris Brezillon {
150793db446aSBoris Brezillon 	struct marvell_nand_chip *marvell_nand = to_marvell_nand(chip);
150893db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
150993db446aSBoris Brezillon 	const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout;
1510a2ee41fdSMiquel Raynal 	u32 xtype;
151193db446aSBoris Brezillon 	int ret;
151293db446aSBoris Brezillon 	struct marvell_nfc_op nfc_op = {
151393db446aSBoris Brezillon 		.ndcb[0] = NDCB0_CMD_TYPE(TYPE_WRITE) | NDCB0_LEN_OVRD,
151493db446aSBoris Brezillon 		.ndcb[3] = data_len + spare_len,
151593db446aSBoris Brezillon 	};
151693db446aSBoris Brezillon 
151793db446aSBoris Brezillon 	/*
151893db446aSBoris Brezillon 	 * First operation dispatches the CMD_SEQIN command, issue the address
151993db446aSBoris Brezillon 	 * cycles and asks for the first chunk of data.
152093db446aSBoris Brezillon 	 * All operations in the middle (if any) will issue a naked write and
152193db446aSBoris Brezillon 	 * also ask for data.
152293db446aSBoris Brezillon 	 * Last operation (if any) asks for the last chunk of data through a
152393db446aSBoris Brezillon 	 * last naked write.
152493db446aSBoris Brezillon 	 */
152593db446aSBoris Brezillon 	if (chunk == 0) {
1526a2ee41fdSMiquel Raynal 		if (lt->nchunks == 1)
1527a2ee41fdSMiquel Raynal 			xtype = XTYPE_MONOLITHIC_RW;
1528a2ee41fdSMiquel Raynal 		else
1529a2ee41fdSMiquel Raynal 			xtype = XTYPE_WRITE_DISPATCH;
1530a2ee41fdSMiquel Raynal 
1531a2ee41fdSMiquel Raynal 		nfc_op.ndcb[0] |= NDCB0_CMD_XTYPE(xtype) |
153293db446aSBoris Brezillon 				  NDCB0_ADDR_CYC(marvell_nand->addr_cyc) |
153393db446aSBoris Brezillon 				  NDCB0_CMD1(NAND_CMD_SEQIN);
153493db446aSBoris Brezillon 		nfc_op.ndcb[1] |= NDCB1_ADDRS_PAGE(page);
153593db446aSBoris Brezillon 		nfc_op.ndcb[2] |= NDCB2_ADDR5_PAGE(page);
153693db446aSBoris Brezillon 	} else if (chunk < lt->nchunks - 1) {
153793db446aSBoris Brezillon 		nfc_op.ndcb[0] |= NDCB0_CMD_XTYPE(XTYPE_NAKED_RW);
153893db446aSBoris Brezillon 	} else {
153993db446aSBoris Brezillon 		nfc_op.ndcb[0] |= NDCB0_CMD_XTYPE(XTYPE_LAST_NAKED_RW);
154093db446aSBoris Brezillon 	}
154193db446aSBoris Brezillon 
154293db446aSBoris Brezillon 	/* Always dispatch the PAGEPROG command on the last chunk */
154393db446aSBoris Brezillon 	if (chunk == lt->nchunks - 1)
154493db446aSBoris Brezillon 		nfc_op.ndcb[0] |= NDCB0_CMD2(NAND_CMD_PAGEPROG) | NDCB0_DBC;
154593db446aSBoris Brezillon 
154693db446aSBoris Brezillon 	ret = marvell_nfc_prepare_cmd(chip);
154793db446aSBoris Brezillon 	if (ret)
154893db446aSBoris Brezillon 		return ret;
154993db446aSBoris Brezillon 
155093db446aSBoris Brezillon 	marvell_nfc_send_cmd(chip, &nfc_op);
155193db446aSBoris Brezillon 	ret = marvell_nfc_end_cmd(chip, NDSR_WRDREQ,
155293db446aSBoris Brezillon 				  "WRDREQ while loading FIFO (data)");
155393db446aSBoris Brezillon 	if (ret)
155493db446aSBoris Brezillon 		return ret;
155593db446aSBoris Brezillon 
155693db446aSBoris Brezillon 	/* Transfer the contents */
155793db446aSBoris Brezillon 	iowrite32_rep(nfc->regs + NDDB, data, FIFO_REP(data_len));
155893db446aSBoris Brezillon 	iowrite32_rep(nfc->regs + NDDB, spare, FIFO_REP(spare_len));
155993db446aSBoris Brezillon 
156093db446aSBoris Brezillon 	return 0;
156193db446aSBoris Brezillon }
156293db446aSBoris Brezillon 
1563767eb6fbSBoris Brezillon static int marvell_nfc_hw_ecc_bch_write_page(struct nand_chip *chip,
156493db446aSBoris Brezillon 					     const u8 *buf,
156593db446aSBoris Brezillon 					     int oob_required, int page)
156693db446aSBoris Brezillon {
1567e0160cd4SMiquel Raynal 	const struct nand_sdr_timings *sdr =
1568e0160cd4SMiquel Raynal 		nand_get_sdr_timings(nand_get_interface_config(chip));
1569767eb6fbSBoris Brezillon 	struct mtd_info *mtd = nand_to_mtd(chip);
157093db446aSBoris Brezillon 	const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout;
157193db446aSBoris Brezillon 	const u8 *data = buf;
157293db446aSBoris Brezillon 	const u8 *spare = chip->oob_poi;
157393db446aSBoris Brezillon 	int data_len = lt->data_bytes;
157493db446aSBoris Brezillon 	int spare_len = lt->spare_bytes;
157593db446aSBoris Brezillon 	int chunk, ret;
157693db446aSBoris Brezillon 
1577b2525141SBoris Brezillon 	marvell_nfc_select_target(chip, chip->cur_cs);
1578b2525141SBoris Brezillon 
157993db446aSBoris Brezillon 	/* Spare data will be written anyway, so clear it to avoid garbage */
158093db446aSBoris Brezillon 	if (!oob_required)
158193db446aSBoris Brezillon 		memset(chip->oob_poi, 0xFF, mtd->oobsize);
158293db446aSBoris Brezillon 
158393db446aSBoris Brezillon 	marvell_nfc_enable_hw_ecc(chip);
158493db446aSBoris Brezillon 
158593db446aSBoris Brezillon 	for (chunk = 0; chunk < lt->nchunks; chunk++) {
158693db446aSBoris Brezillon 		if (chunk >= lt->full_chunk_cnt) {
158793db446aSBoris Brezillon 			data_len = lt->last_data_bytes;
158893db446aSBoris Brezillon 			spare_len = lt->last_spare_bytes;
158993db446aSBoris Brezillon 		}
159093db446aSBoris Brezillon 
159193db446aSBoris Brezillon 		marvell_nfc_hw_ecc_bch_write_chunk(chip, chunk, data, data_len,
159293db446aSBoris Brezillon 						   spare, spare_len, page);
159393db446aSBoris Brezillon 		data += data_len;
159493db446aSBoris Brezillon 		spare += spare_len;
159593db446aSBoris Brezillon 
159693db446aSBoris Brezillon 		/*
159793db446aSBoris Brezillon 		 * Waiting only for CMDD or PAGED is not enough, ECC are
159893db446aSBoris Brezillon 		 * partially written. No flag is set once the operation is
159993db446aSBoris Brezillon 		 * really finished but the ND_RUN bit is cleared, so wait for it
160093db446aSBoris Brezillon 		 * before stepping into the next command.
160193db446aSBoris Brezillon 		 */
160293db446aSBoris Brezillon 		marvell_nfc_wait_ndrun(chip);
160393db446aSBoris Brezillon 	}
160493db446aSBoris Brezillon 
1605e0160cd4SMiquel Raynal 	ret = marvell_nfc_wait_op(chip, PSEC_TO_MSEC(sdr->tPROG_max));
160693db446aSBoris Brezillon 
160793db446aSBoris Brezillon 	marvell_nfc_disable_hw_ecc(chip);
160893db446aSBoris Brezillon 
160993db446aSBoris Brezillon 	if (ret)
161093db446aSBoris Brezillon 		return ret;
161193db446aSBoris Brezillon 
161293db446aSBoris Brezillon 	return 0;
161393db446aSBoris Brezillon }
161493db446aSBoris Brezillon 
1615767eb6fbSBoris Brezillon static int marvell_nfc_hw_ecc_bch_write_oob_raw(struct nand_chip *chip,
161693db446aSBoris Brezillon 						int page)
161793db446aSBoris Brezillon {
1618767eb6fbSBoris Brezillon 	struct mtd_info *mtd = nand_to_mtd(chip);
1619eeab7174SBoris Brezillon 	u8 *buf = nand_get_data_buf(chip);
1620767eb6fbSBoris Brezillon 
1621eeab7174SBoris Brezillon 	memset(buf, 0xFF, mtd->writesize);
162293db446aSBoris Brezillon 
1623eeab7174SBoris Brezillon 	return chip->ecc.write_page_raw(chip, buf, true, page);
162493db446aSBoris Brezillon }
162593db446aSBoris Brezillon 
1626767eb6fbSBoris Brezillon static int marvell_nfc_hw_ecc_bch_write_oob(struct nand_chip *chip, int page)
162793db446aSBoris Brezillon {
1628767eb6fbSBoris Brezillon 	struct mtd_info *mtd = nand_to_mtd(chip);
1629eeab7174SBoris Brezillon 	u8 *buf = nand_get_data_buf(chip);
1630767eb6fbSBoris Brezillon 
1631eeab7174SBoris Brezillon 	memset(buf, 0xFF, mtd->writesize);
163293db446aSBoris Brezillon 
1633eeab7174SBoris Brezillon 	return chip->ecc.write_page(chip, buf, true, page);
163493db446aSBoris Brezillon }
163593db446aSBoris Brezillon 
163693db446aSBoris Brezillon /* NAND framework ->exec_op() hooks and related helpers */
163793db446aSBoris Brezillon static void marvell_nfc_parse_instructions(struct nand_chip *chip,
163893db446aSBoris Brezillon 					   const struct nand_subop *subop,
163993db446aSBoris Brezillon 					   struct marvell_nfc_op *nfc_op)
164093db446aSBoris Brezillon {
164193db446aSBoris Brezillon 	const struct nand_op_instr *instr = NULL;
164293db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
164393db446aSBoris Brezillon 	bool first_cmd = true;
164493db446aSBoris Brezillon 	unsigned int op_id;
164593db446aSBoris Brezillon 	int i;
164693db446aSBoris Brezillon 
164793db446aSBoris Brezillon 	/* Reset the input structure as most of its fields will be OR'ed */
164893db446aSBoris Brezillon 	memset(nfc_op, 0, sizeof(struct marvell_nfc_op));
164993db446aSBoris Brezillon 
165093db446aSBoris Brezillon 	for (op_id = 0; op_id < subop->ninstrs; op_id++) {
165193db446aSBoris Brezillon 		unsigned int offset, naddrs;
165293db446aSBoris Brezillon 		const u8 *addrs;
165321a26806SMiquel Raynal 		int len;
165493db446aSBoris Brezillon 
165593db446aSBoris Brezillon 		instr = &subop->instrs[op_id];
165693db446aSBoris Brezillon 
165793db446aSBoris Brezillon 		switch (instr->type) {
165893db446aSBoris Brezillon 		case NAND_OP_CMD_INSTR:
165993db446aSBoris Brezillon 			if (first_cmd)
166093db446aSBoris Brezillon 				nfc_op->ndcb[0] |=
166193db446aSBoris Brezillon 					NDCB0_CMD1(instr->ctx.cmd.opcode);
166293db446aSBoris Brezillon 			else
166393db446aSBoris Brezillon 				nfc_op->ndcb[0] |=
166493db446aSBoris Brezillon 					NDCB0_CMD2(instr->ctx.cmd.opcode) |
166593db446aSBoris Brezillon 					NDCB0_DBC;
166693db446aSBoris Brezillon 
166793db446aSBoris Brezillon 			nfc_op->cle_ale_delay_ns = instr->delay_ns;
166893db446aSBoris Brezillon 			first_cmd = false;
166993db446aSBoris Brezillon 			break;
167093db446aSBoris Brezillon 
167193db446aSBoris Brezillon 		case NAND_OP_ADDR_INSTR:
167293db446aSBoris Brezillon 			offset = nand_subop_get_addr_start_off(subop, op_id);
167393db446aSBoris Brezillon 			naddrs = nand_subop_get_num_addr_cyc(subop, op_id);
167493db446aSBoris Brezillon 			addrs = &instr->ctx.addr.addrs[offset];
167593db446aSBoris Brezillon 
167693db446aSBoris Brezillon 			nfc_op->ndcb[0] |= NDCB0_ADDR_CYC(naddrs);
167793db446aSBoris Brezillon 
167893db446aSBoris Brezillon 			for (i = 0; i < min_t(unsigned int, 4, naddrs); i++)
167993db446aSBoris Brezillon 				nfc_op->ndcb[1] |= addrs[i] << (8 * i);
168093db446aSBoris Brezillon 
168193db446aSBoris Brezillon 			if (naddrs >= 5)
168293db446aSBoris Brezillon 				nfc_op->ndcb[2] |= NDCB2_ADDR5_CYC(addrs[4]);
168393db446aSBoris Brezillon 			if (naddrs >= 6)
168493db446aSBoris Brezillon 				nfc_op->ndcb[3] |= NDCB3_ADDR6_CYC(addrs[5]);
168593db446aSBoris Brezillon 			if (naddrs == 7)
168693db446aSBoris Brezillon 				nfc_op->ndcb[3] |= NDCB3_ADDR7_CYC(addrs[6]);
168793db446aSBoris Brezillon 
168893db446aSBoris Brezillon 			nfc_op->cle_ale_delay_ns = instr->delay_ns;
168993db446aSBoris Brezillon 			break;
169093db446aSBoris Brezillon 
169193db446aSBoris Brezillon 		case NAND_OP_DATA_IN_INSTR:
169293db446aSBoris Brezillon 			nfc_op->data_instr = instr;
169393db446aSBoris Brezillon 			nfc_op->data_instr_idx = op_id;
169493db446aSBoris Brezillon 			nfc_op->ndcb[0] |= NDCB0_CMD_TYPE(TYPE_READ);
169593db446aSBoris Brezillon 			if (nfc->caps->is_nfcv2) {
169693db446aSBoris Brezillon 				nfc_op->ndcb[0] |=
169793db446aSBoris Brezillon 					NDCB0_CMD_XTYPE(XTYPE_MONOLITHIC_RW) |
169893db446aSBoris Brezillon 					NDCB0_LEN_OVRD;
169921a26806SMiquel Raynal 				len = nand_subop_get_data_len(subop, op_id);
170093db446aSBoris Brezillon 				nfc_op->ndcb[3] |= round_up(len, FIFO_DEPTH);
170193db446aSBoris Brezillon 			}
170293db446aSBoris Brezillon 			nfc_op->data_delay_ns = instr->delay_ns;
170393db446aSBoris Brezillon 			break;
170493db446aSBoris Brezillon 
170593db446aSBoris Brezillon 		case NAND_OP_DATA_OUT_INSTR:
170693db446aSBoris Brezillon 			nfc_op->data_instr = instr;
170793db446aSBoris Brezillon 			nfc_op->data_instr_idx = op_id;
170893db446aSBoris Brezillon 			nfc_op->ndcb[0] |= NDCB0_CMD_TYPE(TYPE_WRITE);
170993db446aSBoris Brezillon 			if (nfc->caps->is_nfcv2) {
171093db446aSBoris Brezillon 				nfc_op->ndcb[0] |=
171193db446aSBoris Brezillon 					NDCB0_CMD_XTYPE(XTYPE_MONOLITHIC_RW) |
171293db446aSBoris Brezillon 					NDCB0_LEN_OVRD;
171321a26806SMiquel Raynal 				len = nand_subop_get_data_len(subop, op_id);
171493db446aSBoris Brezillon 				nfc_op->ndcb[3] |= round_up(len, FIFO_DEPTH);
171593db446aSBoris Brezillon 			}
171693db446aSBoris Brezillon 			nfc_op->data_delay_ns = instr->delay_ns;
171793db446aSBoris Brezillon 			break;
171893db446aSBoris Brezillon 
171993db446aSBoris Brezillon 		case NAND_OP_WAITRDY_INSTR:
172093db446aSBoris Brezillon 			nfc_op->rdy_timeout_ms = instr->ctx.waitrdy.timeout_ms;
172193db446aSBoris Brezillon 			nfc_op->rdy_delay_ns = instr->delay_ns;
172293db446aSBoris Brezillon 			break;
172393db446aSBoris Brezillon 		}
172493db446aSBoris Brezillon 	}
172593db446aSBoris Brezillon }
172693db446aSBoris Brezillon 
172793db446aSBoris Brezillon static int marvell_nfc_xfer_data_pio(struct nand_chip *chip,
172893db446aSBoris Brezillon 				     const struct nand_subop *subop,
172993db446aSBoris Brezillon 				     struct marvell_nfc_op *nfc_op)
173093db446aSBoris Brezillon {
173193db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
173293db446aSBoris Brezillon 	const struct nand_op_instr *instr = nfc_op->data_instr;
173393db446aSBoris Brezillon 	unsigned int op_id = nfc_op->data_instr_idx;
173493db446aSBoris Brezillon 	unsigned int len = nand_subop_get_data_len(subop, op_id);
173593db446aSBoris Brezillon 	unsigned int offset = nand_subop_get_data_start_off(subop, op_id);
173693db446aSBoris Brezillon 	bool reading = (instr->type == NAND_OP_DATA_IN_INSTR);
173793db446aSBoris Brezillon 	int ret;
173893db446aSBoris Brezillon 
173993db446aSBoris Brezillon 	if (instr->ctx.data.force_8bit)
174093db446aSBoris Brezillon 		marvell_nfc_force_byte_access(chip, true);
174193db446aSBoris Brezillon 
174293db446aSBoris Brezillon 	if (reading) {
174393db446aSBoris Brezillon 		u8 *in = instr->ctx.data.buf.in + offset;
174493db446aSBoris Brezillon 
174593db446aSBoris Brezillon 		ret = marvell_nfc_xfer_data_in_pio(nfc, in, len);
174693db446aSBoris Brezillon 	} else {
174793db446aSBoris Brezillon 		const u8 *out = instr->ctx.data.buf.out + offset;
174893db446aSBoris Brezillon 
174993db446aSBoris Brezillon 		ret = marvell_nfc_xfer_data_out_pio(nfc, out, len);
175093db446aSBoris Brezillon 	}
175193db446aSBoris Brezillon 
175293db446aSBoris Brezillon 	if (instr->ctx.data.force_8bit)
175393db446aSBoris Brezillon 		marvell_nfc_force_byte_access(chip, false);
175493db446aSBoris Brezillon 
175593db446aSBoris Brezillon 	return ret;
175693db446aSBoris Brezillon }
175793db446aSBoris Brezillon 
175893db446aSBoris Brezillon static int marvell_nfc_monolithic_access_exec(struct nand_chip *chip,
175993db446aSBoris Brezillon 					      const struct nand_subop *subop)
176093db446aSBoris Brezillon {
176193db446aSBoris Brezillon 	struct marvell_nfc_op nfc_op;
176293db446aSBoris Brezillon 	bool reading;
176393db446aSBoris Brezillon 	int ret;
176493db446aSBoris Brezillon 
176593db446aSBoris Brezillon 	marvell_nfc_parse_instructions(chip, subop, &nfc_op);
176693db446aSBoris Brezillon 	reading = (nfc_op.data_instr->type == NAND_OP_DATA_IN_INSTR);
176793db446aSBoris Brezillon 
176893db446aSBoris Brezillon 	ret = marvell_nfc_prepare_cmd(chip);
176993db446aSBoris Brezillon 	if (ret)
177093db446aSBoris Brezillon 		return ret;
177193db446aSBoris Brezillon 
177293db446aSBoris Brezillon 	marvell_nfc_send_cmd(chip, &nfc_op);
177393db446aSBoris Brezillon 	ret = marvell_nfc_end_cmd(chip, NDSR_RDDREQ | NDSR_WRDREQ,
177493db446aSBoris Brezillon 				  "RDDREQ/WRDREQ while draining raw data");
177593db446aSBoris Brezillon 	if (ret)
177693db446aSBoris Brezillon 		return ret;
177793db446aSBoris Brezillon 
177893db446aSBoris Brezillon 	cond_delay(nfc_op.cle_ale_delay_ns);
177993db446aSBoris Brezillon 
178093db446aSBoris Brezillon 	if (reading) {
178193db446aSBoris Brezillon 		if (nfc_op.rdy_timeout_ms) {
178293db446aSBoris Brezillon 			ret = marvell_nfc_wait_op(chip, nfc_op.rdy_timeout_ms);
178393db446aSBoris Brezillon 			if (ret)
178493db446aSBoris Brezillon 				return ret;
178593db446aSBoris Brezillon 		}
178693db446aSBoris Brezillon 
178793db446aSBoris Brezillon 		cond_delay(nfc_op.rdy_delay_ns);
178893db446aSBoris Brezillon 	}
178993db446aSBoris Brezillon 
179093db446aSBoris Brezillon 	marvell_nfc_xfer_data_pio(chip, subop, &nfc_op);
179193db446aSBoris Brezillon 	ret = marvell_nfc_wait_cmdd(chip);
179293db446aSBoris Brezillon 	if (ret)
179393db446aSBoris Brezillon 		return ret;
179493db446aSBoris Brezillon 
179593db446aSBoris Brezillon 	cond_delay(nfc_op.data_delay_ns);
179693db446aSBoris Brezillon 
179793db446aSBoris Brezillon 	if (!reading) {
179893db446aSBoris Brezillon 		if (nfc_op.rdy_timeout_ms) {
179993db446aSBoris Brezillon 			ret = marvell_nfc_wait_op(chip, nfc_op.rdy_timeout_ms);
180093db446aSBoris Brezillon 			if (ret)
180193db446aSBoris Brezillon 				return ret;
180293db446aSBoris Brezillon 		}
180393db446aSBoris Brezillon 
180493db446aSBoris Brezillon 		cond_delay(nfc_op.rdy_delay_ns);
180593db446aSBoris Brezillon 	}
180693db446aSBoris Brezillon 
180793db446aSBoris Brezillon 	/*
180893db446aSBoris Brezillon 	 * NDCR ND_RUN bit should be cleared automatically at the end of each
180993db446aSBoris Brezillon 	 * operation but experience shows that the behavior is buggy when it
181093db446aSBoris Brezillon 	 * comes to writes (with LEN_OVRD). Clear it by hand in this case.
181193db446aSBoris Brezillon 	 */
181293db446aSBoris Brezillon 	if (!reading) {
181393db446aSBoris Brezillon 		struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
181493db446aSBoris Brezillon 
181593db446aSBoris Brezillon 		writel_relaxed(readl(nfc->regs + NDCR) & ~NDCR_ND_RUN,
181693db446aSBoris Brezillon 			       nfc->regs + NDCR);
181793db446aSBoris Brezillon 	}
181893db446aSBoris Brezillon 
181993db446aSBoris Brezillon 	return 0;
182093db446aSBoris Brezillon }
182193db446aSBoris Brezillon 
182293db446aSBoris Brezillon static int marvell_nfc_naked_access_exec(struct nand_chip *chip,
182393db446aSBoris Brezillon 					 const struct nand_subop *subop)
182493db446aSBoris Brezillon {
182593db446aSBoris Brezillon 	struct marvell_nfc_op nfc_op;
182693db446aSBoris Brezillon 	int ret;
182793db446aSBoris Brezillon 
182893db446aSBoris Brezillon 	marvell_nfc_parse_instructions(chip, subop, &nfc_op);
182993db446aSBoris Brezillon 
183093db446aSBoris Brezillon 	/*
183193db446aSBoris Brezillon 	 * Naked access are different in that they need to be flagged as naked
183293db446aSBoris Brezillon 	 * by the controller. Reset the controller registers fields that inform
183393db446aSBoris Brezillon 	 * on the type and refill them according to the ongoing operation.
183493db446aSBoris Brezillon 	 */
183593db446aSBoris Brezillon 	nfc_op.ndcb[0] &= ~(NDCB0_CMD_TYPE(TYPE_MASK) |
183693db446aSBoris Brezillon 			    NDCB0_CMD_XTYPE(XTYPE_MASK));
183793db446aSBoris Brezillon 	switch (subop->instrs[0].type) {
183893db446aSBoris Brezillon 	case NAND_OP_CMD_INSTR:
183993db446aSBoris Brezillon 		nfc_op.ndcb[0] |= NDCB0_CMD_TYPE(TYPE_NAKED_CMD);
184093db446aSBoris Brezillon 		break;
184193db446aSBoris Brezillon 	case NAND_OP_ADDR_INSTR:
184293db446aSBoris Brezillon 		nfc_op.ndcb[0] |= NDCB0_CMD_TYPE(TYPE_NAKED_ADDR);
184393db446aSBoris Brezillon 		break;
184493db446aSBoris Brezillon 	case NAND_OP_DATA_IN_INSTR:
184593db446aSBoris Brezillon 		nfc_op.ndcb[0] |= NDCB0_CMD_TYPE(TYPE_READ) |
184693db446aSBoris Brezillon 				  NDCB0_CMD_XTYPE(XTYPE_LAST_NAKED_RW);
184793db446aSBoris Brezillon 		break;
184893db446aSBoris Brezillon 	case NAND_OP_DATA_OUT_INSTR:
184993db446aSBoris Brezillon 		nfc_op.ndcb[0] |= NDCB0_CMD_TYPE(TYPE_WRITE) |
185093db446aSBoris Brezillon 				  NDCB0_CMD_XTYPE(XTYPE_LAST_NAKED_RW);
185193db446aSBoris Brezillon 		break;
185293db446aSBoris Brezillon 	default:
185393db446aSBoris Brezillon 		/* This should never happen */
185493db446aSBoris Brezillon 		break;
185593db446aSBoris Brezillon 	}
185693db446aSBoris Brezillon 
185793db446aSBoris Brezillon 	ret = marvell_nfc_prepare_cmd(chip);
185893db446aSBoris Brezillon 	if (ret)
185993db446aSBoris Brezillon 		return ret;
186093db446aSBoris Brezillon 
186193db446aSBoris Brezillon 	marvell_nfc_send_cmd(chip, &nfc_op);
186293db446aSBoris Brezillon 
186393db446aSBoris Brezillon 	if (!nfc_op.data_instr) {
186493db446aSBoris Brezillon 		ret = marvell_nfc_wait_cmdd(chip);
186593db446aSBoris Brezillon 		cond_delay(nfc_op.cle_ale_delay_ns);
186693db446aSBoris Brezillon 		return ret;
186793db446aSBoris Brezillon 	}
186893db446aSBoris Brezillon 
186993db446aSBoris Brezillon 	ret = marvell_nfc_end_cmd(chip, NDSR_RDDREQ | NDSR_WRDREQ,
187093db446aSBoris Brezillon 				  "RDDREQ/WRDREQ while draining raw data");
187193db446aSBoris Brezillon 	if (ret)
187293db446aSBoris Brezillon 		return ret;
187393db446aSBoris Brezillon 
187493db446aSBoris Brezillon 	marvell_nfc_xfer_data_pio(chip, subop, &nfc_op);
187593db446aSBoris Brezillon 	ret = marvell_nfc_wait_cmdd(chip);
187693db446aSBoris Brezillon 	if (ret)
187793db446aSBoris Brezillon 		return ret;
187893db446aSBoris Brezillon 
187993db446aSBoris Brezillon 	/*
188093db446aSBoris Brezillon 	 * NDCR ND_RUN bit should be cleared automatically at the end of each
188193db446aSBoris Brezillon 	 * operation but experience shows that the behavior is buggy when it
188293db446aSBoris Brezillon 	 * comes to writes (with LEN_OVRD). Clear it by hand in this case.
188393db446aSBoris Brezillon 	 */
188493db446aSBoris Brezillon 	if (subop->instrs[0].type == NAND_OP_DATA_OUT_INSTR) {
188593db446aSBoris Brezillon 		struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
188693db446aSBoris Brezillon 
188793db446aSBoris Brezillon 		writel_relaxed(readl(nfc->regs + NDCR) & ~NDCR_ND_RUN,
188893db446aSBoris Brezillon 			       nfc->regs + NDCR);
188993db446aSBoris Brezillon 	}
189093db446aSBoris Brezillon 
189193db446aSBoris Brezillon 	return 0;
189293db446aSBoris Brezillon }
189393db446aSBoris Brezillon 
189493db446aSBoris Brezillon static int marvell_nfc_naked_waitrdy_exec(struct nand_chip *chip,
189593db446aSBoris Brezillon 					  const struct nand_subop *subop)
189693db446aSBoris Brezillon {
189793db446aSBoris Brezillon 	struct marvell_nfc_op nfc_op;
189893db446aSBoris Brezillon 	int ret;
189993db446aSBoris Brezillon 
190093db446aSBoris Brezillon 	marvell_nfc_parse_instructions(chip, subop, &nfc_op);
190193db446aSBoris Brezillon 
190293db446aSBoris Brezillon 	ret = marvell_nfc_wait_op(chip, nfc_op.rdy_timeout_ms);
190393db446aSBoris Brezillon 	cond_delay(nfc_op.rdy_delay_ns);
190493db446aSBoris Brezillon 
190593db446aSBoris Brezillon 	return ret;
190693db446aSBoris Brezillon }
190793db446aSBoris Brezillon 
190893db446aSBoris Brezillon static int marvell_nfc_read_id_type_exec(struct nand_chip *chip,
190993db446aSBoris Brezillon 					 const struct nand_subop *subop)
191093db446aSBoris Brezillon {
191193db446aSBoris Brezillon 	struct marvell_nfc_op nfc_op;
191293db446aSBoris Brezillon 	int ret;
191393db446aSBoris Brezillon 
191493db446aSBoris Brezillon 	marvell_nfc_parse_instructions(chip, subop, &nfc_op);
191593db446aSBoris Brezillon 	nfc_op.ndcb[0] &= ~NDCB0_CMD_TYPE(TYPE_READ);
191693db446aSBoris Brezillon 	nfc_op.ndcb[0] |= NDCB0_CMD_TYPE(TYPE_READ_ID);
191793db446aSBoris Brezillon 
191893db446aSBoris Brezillon 	ret = marvell_nfc_prepare_cmd(chip);
191993db446aSBoris Brezillon 	if (ret)
192093db446aSBoris Brezillon 		return ret;
192193db446aSBoris Brezillon 
192293db446aSBoris Brezillon 	marvell_nfc_send_cmd(chip, &nfc_op);
192393db446aSBoris Brezillon 	ret = marvell_nfc_end_cmd(chip, NDSR_RDDREQ,
192493db446aSBoris Brezillon 				  "RDDREQ while reading ID");
192593db446aSBoris Brezillon 	if (ret)
192693db446aSBoris Brezillon 		return ret;
192793db446aSBoris Brezillon 
192893db446aSBoris Brezillon 	cond_delay(nfc_op.cle_ale_delay_ns);
192993db446aSBoris Brezillon 
193093db446aSBoris Brezillon 	if (nfc_op.rdy_timeout_ms) {
193193db446aSBoris Brezillon 		ret = marvell_nfc_wait_op(chip, nfc_op.rdy_timeout_ms);
193293db446aSBoris Brezillon 		if (ret)
193393db446aSBoris Brezillon 			return ret;
193493db446aSBoris Brezillon 	}
193593db446aSBoris Brezillon 
193693db446aSBoris Brezillon 	cond_delay(nfc_op.rdy_delay_ns);
193793db446aSBoris Brezillon 
193893db446aSBoris Brezillon 	marvell_nfc_xfer_data_pio(chip, subop, &nfc_op);
193993db446aSBoris Brezillon 	ret = marvell_nfc_wait_cmdd(chip);
194093db446aSBoris Brezillon 	if (ret)
194193db446aSBoris Brezillon 		return ret;
194293db446aSBoris Brezillon 
194393db446aSBoris Brezillon 	cond_delay(nfc_op.data_delay_ns);
194493db446aSBoris Brezillon 
194593db446aSBoris Brezillon 	return 0;
194693db446aSBoris Brezillon }
194793db446aSBoris Brezillon 
194893db446aSBoris Brezillon static int marvell_nfc_read_status_exec(struct nand_chip *chip,
194993db446aSBoris Brezillon 					const struct nand_subop *subop)
195093db446aSBoris Brezillon {
195193db446aSBoris Brezillon 	struct marvell_nfc_op nfc_op;
195293db446aSBoris Brezillon 	int ret;
195393db446aSBoris Brezillon 
195493db446aSBoris Brezillon 	marvell_nfc_parse_instructions(chip, subop, &nfc_op);
195593db446aSBoris Brezillon 	nfc_op.ndcb[0] &= ~NDCB0_CMD_TYPE(TYPE_READ);
195693db446aSBoris Brezillon 	nfc_op.ndcb[0] |= NDCB0_CMD_TYPE(TYPE_STATUS);
195793db446aSBoris Brezillon 
195893db446aSBoris Brezillon 	ret = marvell_nfc_prepare_cmd(chip);
195993db446aSBoris Brezillon 	if (ret)
196093db446aSBoris Brezillon 		return ret;
196193db446aSBoris Brezillon 
196293db446aSBoris Brezillon 	marvell_nfc_send_cmd(chip, &nfc_op);
196393db446aSBoris Brezillon 	ret = marvell_nfc_end_cmd(chip, NDSR_RDDREQ,
196493db446aSBoris Brezillon 				  "RDDREQ while reading status");
196593db446aSBoris Brezillon 	if (ret)
196693db446aSBoris Brezillon 		return ret;
196793db446aSBoris Brezillon 
196893db446aSBoris Brezillon 	cond_delay(nfc_op.cle_ale_delay_ns);
196993db446aSBoris Brezillon 
197093db446aSBoris Brezillon 	if (nfc_op.rdy_timeout_ms) {
197193db446aSBoris Brezillon 		ret = marvell_nfc_wait_op(chip, nfc_op.rdy_timeout_ms);
197293db446aSBoris Brezillon 		if (ret)
197393db446aSBoris Brezillon 			return ret;
197493db446aSBoris Brezillon 	}
197593db446aSBoris Brezillon 
197693db446aSBoris Brezillon 	cond_delay(nfc_op.rdy_delay_ns);
197793db446aSBoris Brezillon 
197893db446aSBoris Brezillon 	marvell_nfc_xfer_data_pio(chip, subop, &nfc_op);
197993db446aSBoris Brezillon 	ret = marvell_nfc_wait_cmdd(chip);
198093db446aSBoris Brezillon 	if (ret)
198193db446aSBoris Brezillon 		return ret;
198293db446aSBoris Brezillon 
198393db446aSBoris Brezillon 	cond_delay(nfc_op.data_delay_ns);
198493db446aSBoris Brezillon 
198593db446aSBoris Brezillon 	return 0;
198693db446aSBoris Brezillon }
198793db446aSBoris Brezillon 
198893db446aSBoris Brezillon static int marvell_nfc_reset_cmd_type_exec(struct nand_chip *chip,
198993db446aSBoris Brezillon 					   const struct nand_subop *subop)
199093db446aSBoris Brezillon {
199193db446aSBoris Brezillon 	struct marvell_nfc_op nfc_op;
199293db446aSBoris Brezillon 	int ret;
199393db446aSBoris Brezillon 
199493db446aSBoris Brezillon 	marvell_nfc_parse_instructions(chip, subop, &nfc_op);
199593db446aSBoris Brezillon 	nfc_op.ndcb[0] |= NDCB0_CMD_TYPE(TYPE_RESET);
199693db446aSBoris Brezillon 
199793db446aSBoris Brezillon 	ret = marvell_nfc_prepare_cmd(chip);
199893db446aSBoris Brezillon 	if (ret)
199993db446aSBoris Brezillon 		return ret;
200093db446aSBoris Brezillon 
200193db446aSBoris Brezillon 	marvell_nfc_send_cmd(chip, &nfc_op);
200293db446aSBoris Brezillon 	ret = marvell_nfc_wait_cmdd(chip);
200393db446aSBoris Brezillon 	if (ret)
200493db446aSBoris Brezillon 		return ret;
200593db446aSBoris Brezillon 
200693db446aSBoris Brezillon 	cond_delay(nfc_op.cle_ale_delay_ns);
200793db446aSBoris Brezillon 
200893db446aSBoris Brezillon 	ret = marvell_nfc_wait_op(chip, nfc_op.rdy_timeout_ms);
200993db446aSBoris Brezillon 	if (ret)
201093db446aSBoris Brezillon 		return ret;
201193db446aSBoris Brezillon 
201293db446aSBoris Brezillon 	cond_delay(nfc_op.rdy_delay_ns);
201393db446aSBoris Brezillon 
201493db446aSBoris Brezillon 	return 0;
201593db446aSBoris Brezillon }
201693db446aSBoris Brezillon 
201793db446aSBoris Brezillon static int marvell_nfc_erase_cmd_type_exec(struct nand_chip *chip,
201893db446aSBoris Brezillon 					   const struct nand_subop *subop)
201993db446aSBoris Brezillon {
202093db446aSBoris Brezillon 	struct marvell_nfc_op nfc_op;
202193db446aSBoris Brezillon 	int ret;
202293db446aSBoris Brezillon 
202393db446aSBoris Brezillon 	marvell_nfc_parse_instructions(chip, subop, &nfc_op);
202493db446aSBoris Brezillon 	nfc_op.ndcb[0] |= NDCB0_CMD_TYPE(TYPE_ERASE);
202593db446aSBoris Brezillon 
202693db446aSBoris Brezillon 	ret = marvell_nfc_prepare_cmd(chip);
202793db446aSBoris Brezillon 	if (ret)
202893db446aSBoris Brezillon 		return ret;
202993db446aSBoris Brezillon 
203093db446aSBoris Brezillon 	marvell_nfc_send_cmd(chip, &nfc_op);
203193db446aSBoris Brezillon 	ret = marvell_nfc_wait_cmdd(chip);
203293db446aSBoris Brezillon 	if (ret)
203393db446aSBoris Brezillon 		return ret;
203493db446aSBoris Brezillon 
203593db446aSBoris Brezillon 	cond_delay(nfc_op.cle_ale_delay_ns);
203693db446aSBoris Brezillon 
203793db446aSBoris Brezillon 	ret = marvell_nfc_wait_op(chip, nfc_op.rdy_timeout_ms);
203893db446aSBoris Brezillon 	if (ret)
203993db446aSBoris Brezillon 		return ret;
204093db446aSBoris Brezillon 
204193db446aSBoris Brezillon 	cond_delay(nfc_op.rdy_delay_ns);
204293db446aSBoris Brezillon 
204393db446aSBoris Brezillon 	return 0;
204493db446aSBoris Brezillon }
204593db446aSBoris Brezillon 
204693db446aSBoris Brezillon static const struct nand_op_parser marvell_nfcv2_op_parser = NAND_OP_PARSER(
204793db446aSBoris Brezillon 	/* Monolithic reads/writes */
204893db446aSBoris Brezillon 	NAND_OP_PARSER_PATTERN(
204993db446aSBoris Brezillon 		marvell_nfc_monolithic_access_exec,
205093db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_CMD_ELEM(false),
205193db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_ADDR_ELEM(true, MAX_ADDRESS_CYC_NFCV2),
205293db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_CMD_ELEM(true),
205393db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_WAITRDY_ELEM(true),
205493db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_DATA_IN_ELEM(false, MAX_CHUNK_SIZE)),
205593db446aSBoris Brezillon 	NAND_OP_PARSER_PATTERN(
205693db446aSBoris Brezillon 		marvell_nfc_monolithic_access_exec,
205793db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_CMD_ELEM(false),
205893db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_ADDR_ELEM(false, MAX_ADDRESS_CYC_NFCV2),
205993db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_DATA_OUT_ELEM(false, MAX_CHUNK_SIZE),
206093db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_CMD_ELEM(true),
206193db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_WAITRDY_ELEM(true)),
206293db446aSBoris Brezillon 	/* Naked commands */
206393db446aSBoris Brezillon 	NAND_OP_PARSER_PATTERN(
206493db446aSBoris Brezillon 		marvell_nfc_naked_access_exec,
206593db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_CMD_ELEM(false)),
206693db446aSBoris Brezillon 	NAND_OP_PARSER_PATTERN(
206793db446aSBoris Brezillon 		marvell_nfc_naked_access_exec,
206893db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_ADDR_ELEM(false, MAX_ADDRESS_CYC_NFCV2)),
206993db446aSBoris Brezillon 	NAND_OP_PARSER_PATTERN(
207093db446aSBoris Brezillon 		marvell_nfc_naked_access_exec,
207193db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_DATA_IN_ELEM(false, MAX_CHUNK_SIZE)),
207293db446aSBoris Brezillon 	NAND_OP_PARSER_PATTERN(
207393db446aSBoris Brezillon 		marvell_nfc_naked_access_exec,
207493db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_DATA_OUT_ELEM(false, MAX_CHUNK_SIZE)),
207593db446aSBoris Brezillon 	NAND_OP_PARSER_PATTERN(
207693db446aSBoris Brezillon 		marvell_nfc_naked_waitrdy_exec,
207793db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_WAITRDY_ELEM(false)),
207893db446aSBoris Brezillon 	);
207993db446aSBoris Brezillon 
208093db446aSBoris Brezillon static const struct nand_op_parser marvell_nfcv1_op_parser = NAND_OP_PARSER(
208193db446aSBoris Brezillon 	/* Naked commands not supported, use a function for each pattern */
208293db446aSBoris Brezillon 	NAND_OP_PARSER_PATTERN(
208393db446aSBoris Brezillon 		marvell_nfc_read_id_type_exec,
208493db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_CMD_ELEM(false),
208593db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_ADDR_ELEM(false, MAX_ADDRESS_CYC_NFCV1),
208693db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_DATA_IN_ELEM(false, 8)),
208793db446aSBoris Brezillon 	NAND_OP_PARSER_PATTERN(
208893db446aSBoris Brezillon 		marvell_nfc_erase_cmd_type_exec,
208993db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_CMD_ELEM(false),
209093db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_ADDR_ELEM(false, MAX_ADDRESS_CYC_NFCV1),
209193db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_CMD_ELEM(false),
209293db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_WAITRDY_ELEM(false)),
209393db446aSBoris Brezillon 	NAND_OP_PARSER_PATTERN(
209493db446aSBoris Brezillon 		marvell_nfc_read_status_exec,
209593db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_CMD_ELEM(false),
209693db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_DATA_IN_ELEM(false, 1)),
209793db446aSBoris Brezillon 	NAND_OP_PARSER_PATTERN(
209893db446aSBoris Brezillon 		marvell_nfc_reset_cmd_type_exec,
209993db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_CMD_ELEM(false),
210093db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_WAITRDY_ELEM(false)),
210193db446aSBoris Brezillon 	NAND_OP_PARSER_PATTERN(
210293db446aSBoris Brezillon 		marvell_nfc_naked_waitrdy_exec,
210393db446aSBoris Brezillon 		NAND_OP_PARSER_PAT_WAITRDY_ELEM(false)),
210493db446aSBoris Brezillon 	);
210593db446aSBoris Brezillon 
210693db446aSBoris Brezillon static int marvell_nfc_exec_op(struct nand_chip *chip,
210793db446aSBoris Brezillon 			       const struct nand_operation *op,
210893db446aSBoris Brezillon 			       bool check_only)
210993db446aSBoris Brezillon {
211093db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
211193db446aSBoris Brezillon 
2112ce446b4bSBoris Brezillon 	if (!check_only)
2113b2525141SBoris Brezillon 		marvell_nfc_select_target(chip, op->cs);
2114b2525141SBoris Brezillon 
211593db446aSBoris Brezillon 	if (nfc->caps->is_nfcv2)
211693db446aSBoris Brezillon 		return nand_op_parser_exec_op(chip, &marvell_nfcv2_op_parser,
211793db446aSBoris Brezillon 					      op, check_only);
211893db446aSBoris Brezillon 	else
211993db446aSBoris Brezillon 		return nand_op_parser_exec_op(chip, &marvell_nfcv1_op_parser,
212093db446aSBoris Brezillon 					      op, check_only);
212193db446aSBoris Brezillon }
212293db446aSBoris Brezillon 
212393db446aSBoris Brezillon /*
212493db446aSBoris Brezillon  * Layouts were broken in old pxa3xx_nand driver, these are supposed to be
212593db446aSBoris Brezillon  * usable.
212693db446aSBoris Brezillon  */
212793db446aSBoris Brezillon static int marvell_nand_ooblayout_ecc(struct mtd_info *mtd, int section,
212893db446aSBoris Brezillon 				      struct mtd_oob_region *oobregion)
212993db446aSBoris Brezillon {
213093db446aSBoris Brezillon 	struct nand_chip *chip = mtd_to_nand(mtd);
213193db446aSBoris Brezillon 	const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout;
213293db446aSBoris Brezillon 
213393db446aSBoris Brezillon 	if (section)
213493db446aSBoris Brezillon 		return -ERANGE;
213593db446aSBoris Brezillon 
213693db446aSBoris Brezillon 	oobregion->length = (lt->full_chunk_cnt * lt->ecc_bytes) +
213793db446aSBoris Brezillon 			    lt->last_ecc_bytes;
213893db446aSBoris Brezillon 	oobregion->offset = mtd->oobsize - oobregion->length;
213993db446aSBoris Brezillon 
214093db446aSBoris Brezillon 	return 0;
214193db446aSBoris Brezillon }
214293db446aSBoris Brezillon 
214393db446aSBoris Brezillon static int marvell_nand_ooblayout_free(struct mtd_info *mtd, int section,
214493db446aSBoris Brezillon 				       struct mtd_oob_region *oobregion)
214593db446aSBoris Brezillon {
214693db446aSBoris Brezillon 	struct nand_chip *chip = mtd_to_nand(mtd);
214793db446aSBoris Brezillon 	const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout;
214893db446aSBoris Brezillon 
214993db446aSBoris Brezillon 	if (section)
215093db446aSBoris Brezillon 		return -ERANGE;
215193db446aSBoris Brezillon 
215293db446aSBoris Brezillon 	/*
215393db446aSBoris Brezillon 	 * Bootrom looks in bytes 0 & 5 for bad blocks for the
215493db446aSBoris Brezillon 	 * 4KB page / 4bit BCH combination.
215593db446aSBoris Brezillon 	 */
215693db446aSBoris Brezillon 	if (mtd->writesize == SZ_4K && lt->data_bytes == SZ_2K)
215793db446aSBoris Brezillon 		oobregion->offset = 6;
215893db446aSBoris Brezillon 	else
215993db446aSBoris Brezillon 		oobregion->offset = 2;
216093db446aSBoris Brezillon 
216193db446aSBoris Brezillon 	oobregion->length = (lt->full_chunk_cnt * lt->spare_bytes) +
216293db446aSBoris Brezillon 			    lt->last_spare_bytes - oobregion->offset;
216393db446aSBoris Brezillon 
216493db446aSBoris Brezillon 	return 0;
216593db446aSBoris Brezillon }
216693db446aSBoris Brezillon 
216793db446aSBoris Brezillon static const struct mtd_ooblayout_ops marvell_nand_ooblayout_ops = {
216893db446aSBoris Brezillon 	.ecc = marvell_nand_ooblayout_ecc,
216993db446aSBoris Brezillon 	.free = marvell_nand_ooblayout_free,
217093db446aSBoris Brezillon };
217193db446aSBoris Brezillon 
217282c6c04eSMiquel Raynal static int marvell_nand_hw_ecc_controller_init(struct mtd_info *mtd,
217393db446aSBoris Brezillon 					       struct nand_ecc_ctrl *ecc)
217493db446aSBoris Brezillon {
217593db446aSBoris Brezillon 	struct nand_chip *chip = mtd_to_nand(mtd);
217693db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
217793db446aSBoris Brezillon 	const struct marvell_hw_ecc_layout *l;
217893db446aSBoris Brezillon 	int i;
217993db446aSBoris Brezillon 
218093db446aSBoris Brezillon 	if (!nfc->caps->is_nfcv2 &&
218193db446aSBoris Brezillon 	    (mtd->writesize + mtd->oobsize > MAX_CHUNK_SIZE)) {
218293db446aSBoris Brezillon 		dev_err(nfc->dev,
218393db446aSBoris Brezillon 			"NFCv1: writesize (%d) cannot be bigger than a chunk (%d)\n",
218493db446aSBoris Brezillon 			mtd->writesize, MAX_CHUNK_SIZE - mtd->oobsize);
218593db446aSBoris Brezillon 		return -ENOTSUPP;
218693db446aSBoris Brezillon 	}
218793db446aSBoris Brezillon 
218893db446aSBoris Brezillon 	to_marvell_nand(chip)->layout = NULL;
218993db446aSBoris Brezillon 	for (i = 0; i < ARRAY_SIZE(marvell_nfc_layouts); i++) {
219093db446aSBoris Brezillon 		l = &marvell_nfc_layouts[i];
219193db446aSBoris Brezillon 		if (mtd->writesize == l->writesize &&
219293db446aSBoris Brezillon 		    ecc->size == l->chunk && ecc->strength == l->strength) {
219393db446aSBoris Brezillon 			to_marvell_nand(chip)->layout = l;
219493db446aSBoris Brezillon 			break;
219593db446aSBoris Brezillon 		}
219693db446aSBoris Brezillon 	}
219793db446aSBoris Brezillon 
219893db446aSBoris Brezillon 	if (!to_marvell_nand(chip)->layout ||
219993db446aSBoris Brezillon 	    (!nfc->caps->is_nfcv2 && ecc->strength > 1)) {
220093db446aSBoris Brezillon 		dev_err(nfc->dev,
220193db446aSBoris Brezillon 			"ECC strength %d at page size %d is not supported\n",
220293db446aSBoris Brezillon 			ecc->strength, mtd->writesize);
220393db446aSBoris Brezillon 		return -ENOTSUPP;
220493db446aSBoris Brezillon 	}
220593db446aSBoris Brezillon 
22067fd130f7SMiquel Raynal 	/* Special care for the layout 2k/8-bit/512B  */
22077fd130f7SMiquel Raynal 	if (l->writesize == 2048 && l->strength == 8) {
22087fd130f7SMiquel Raynal 		if (mtd->oobsize < 128) {
22097fd130f7SMiquel Raynal 			dev_err(nfc->dev, "Requested layout needs at least 128 OOB bytes\n");
22107fd130f7SMiquel Raynal 			return -ENOTSUPP;
22117fd130f7SMiquel Raynal 		} else {
22127fd130f7SMiquel Raynal 			chip->bbt_options |= NAND_BBT_NO_OOB_BBM;
22137fd130f7SMiquel Raynal 		}
22147fd130f7SMiquel Raynal 	}
22157fd130f7SMiquel Raynal 
221693db446aSBoris Brezillon 	mtd_set_ooblayout(mtd, &marvell_nand_ooblayout_ops);
221793db446aSBoris Brezillon 	ecc->steps = l->nchunks;
221893db446aSBoris Brezillon 	ecc->size = l->data_bytes;
221993db446aSBoris Brezillon 
222093db446aSBoris Brezillon 	if (ecc->strength == 1) {
222193db446aSBoris Brezillon 		chip->ecc.algo = NAND_ECC_HAMMING;
222293db446aSBoris Brezillon 		ecc->read_page_raw = marvell_nfc_hw_ecc_hmg_read_page_raw;
222393db446aSBoris Brezillon 		ecc->read_page = marvell_nfc_hw_ecc_hmg_read_page;
222493db446aSBoris Brezillon 		ecc->read_oob_raw = marvell_nfc_hw_ecc_hmg_read_oob_raw;
222593db446aSBoris Brezillon 		ecc->read_oob = ecc->read_oob_raw;
222693db446aSBoris Brezillon 		ecc->write_page_raw = marvell_nfc_hw_ecc_hmg_write_page_raw;
222793db446aSBoris Brezillon 		ecc->write_page = marvell_nfc_hw_ecc_hmg_write_page;
222893db446aSBoris Brezillon 		ecc->write_oob_raw = marvell_nfc_hw_ecc_hmg_write_oob_raw;
222993db446aSBoris Brezillon 		ecc->write_oob = ecc->write_oob_raw;
223093db446aSBoris Brezillon 	} else {
223193db446aSBoris Brezillon 		chip->ecc.algo = NAND_ECC_BCH;
223293db446aSBoris Brezillon 		ecc->strength = 16;
223393db446aSBoris Brezillon 		ecc->read_page_raw = marvell_nfc_hw_ecc_bch_read_page_raw;
223493db446aSBoris Brezillon 		ecc->read_page = marvell_nfc_hw_ecc_bch_read_page;
223593db446aSBoris Brezillon 		ecc->read_oob_raw = marvell_nfc_hw_ecc_bch_read_oob_raw;
223693db446aSBoris Brezillon 		ecc->read_oob = marvell_nfc_hw_ecc_bch_read_oob;
223793db446aSBoris Brezillon 		ecc->write_page_raw = marvell_nfc_hw_ecc_bch_write_page_raw;
223893db446aSBoris Brezillon 		ecc->write_page = marvell_nfc_hw_ecc_bch_write_page;
223993db446aSBoris Brezillon 		ecc->write_oob_raw = marvell_nfc_hw_ecc_bch_write_oob_raw;
224093db446aSBoris Brezillon 		ecc->write_oob = marvell_nfc_hw_ecc_bch_write_oob;
224193db446aSBoris Brezillon 	}
224293db446aSBoris Brezillon 
224393db446aSBoris Brezillon 	return 0;
224493db446aSBoris Brezillon }
224593db446aSBoris Brezillon 
224693db446aSBoris Brezillon static int marvell_nand_ecc_init(struct mtd_info *mtd,
224793db446aSBoris Brezillon 				 struct nand_ecc_ctrl *ecc)
224893db446aSBoris Brezillon {
224993db446aSBoris Brezillon 	struct nand_chip *chip = mtd_to_nand(mtd);
225093db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
225193db446aSBoris Brezillon 	int ret;
225293db446aSBoris Brezillon 
225393db446aSBoris Brezillon 	if (ecc->mode != NAND_ECC_NONE && (!ecc->size || !ecc->strength)) {
22546a1b66d6SBoris Brezillon 		if (chip->base.eccreq.step_size && chip->base.eccreq.strength) {
22556a1b66d6SBoris Brezillon 			ecc->size = chip->base.eccreq.step_size;
22566a1b66d6SBoris Brezillon 			ecc->strength = chip->base.eccreq.strength;
225793db446aSBoris Brezillon 		} else {
225893db446aSBoris Brezillon 			dev_info(nfc->dev,
225993db446aSBoris Brezillon 				 "No minimum ECC strength, using 1b/512B\n");
226093db446aSBoris Brezillon 			ecc->size = 512;
226193db446aSBoris Brezillon 			ecc->strength = 1;
226293db446aSBoris Brezillon 		}
226393db446aSBoris Brezillon 	}
226493db446aSBoris Brezillon 
226593db446aSBoris Brezillon 	switch (ecc->mode) {
226693db446aSBoris Brezillon 	case NAND_ECC_HW:
226782c6c04eSMiquel Raynal 		ret = marvell_nand_hw_ecc_controller_init(mtd, ecc);
226893db446aSBoris Brezillon 		if (ret)
226993db446aSBoris Brezillon 			return ret;
227093db446aSBoris Brezillon 		break;
227193db446aSBoris Brezillon 	case NAND_ECC_NONE:
227293db446aSBoris Brezillon 	case NAND_ECC_SOFT:
2273ed6d0285SChris Packham 	case NAND_ECC_ON_DIE:
227493db446aSBoris Brezillon 		if (!nfc->caps->is_nfcv2 && mtd->writesize != SZ_512 &&
227593db446aSBoris Brezillon 		    mtd->writesize != SZ_2K) {
227693db446aSBoris Brezillon 			dev_err(nfc->dev, "NFCv1 cannot write %d bytes pages\n",
227793db446aSBoris Brezillon 				mtd->writesize);
227893db446aSBoris Brezillon 			return -EINVAL;
227993db446aSBoris Brezillon 		}
228093db446aSBoris Brezillon 		break;
228193db446aSBoris Brezillon 	default:
228293db446aSBoris Brezillon 		return -EINVAL;
228393db446aSBoris Brezillon 	}
228493db446aSBoris Brezillon 
228593db446aSBoris Brezillon 	return 0;
228693db446aSBoris Brezillon }
228793db446aSBoris Brezillon 
228893db446aSBoris Brezillon static u8 bbt_pattern[] = {'M', 'V', 'B', 'b', 't', '0' };
228993db446aSBoris Brezillon static u8 bbt_mirror_pattern[] = {'1', 't', 'b', 'B', 'V', 'M' };
229093db446aSBoris Brezillon 
229193db446aSBoris Brezillon static struct nand_bbt_descr bbt_main_descr = {
229293db446aSBoris Brezillon 	.options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
229393db446aSBoris Brezillon 		   NAND_BBT_2BIT | NAND_BBT_VERSION,
229493db446aSBoris Brezillon 	.offs =	8,
229593db446aSBoris Brezillon 	.len = 6,
229693db446aSBoris Brezillon 	.veroffs = 14,
229793db446aSBoris Brezillon 	.maxblocks = 8,	/* Last 8 blocks in each chip */
229893db446aSBoris Brezillon 	.pattern = bbt_pattern
229993db446aSBoris Brezillon };
230093db446aSBoris Brezillon 
230193db446aSBoris Brezillon static struct nand_bbt_descr bbt_mirror_descr = {
230293db446aSBoris Brezillon 	.options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
230393db446aSBoris Brezillon 		   NAND_BBT_2BIT | NAND_BBT_VERSION,
230493db446aSBoris Brezillon 	.offs =	8,
230593db446aSBoris Brezillon 	.len = 6,
230693db446aSBoris Brezillon 	.veroffs = 14,
230793db446aSBoris Brezillon 	.maxblocks = 8,	/* Last 8 blocks in each chip */
230893db446aSBoris Brezillon 	.pattern = bbt_mirror_pattern
230993db446aSBoris Brezillon };
231093db446aSBoris Brezillon 
23114c46667bSMiquel Raynal static int marvell_nfc_setup_interface(struct nand_chip *chip, int chipnr,
23124c46667bSMiquel Raynal 				       const struct nand_interface_config *conf)
231393db446aSBoris Brezillon {
231493db446aSBoris Brezillon 	struct marvell_nand_chip *marvell_nand = to_marvell_nand(chip);
231593db446aSBoris Brezillon 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
23166b6de654SBoris Brezillon 	unsigned int period_ns = 1000000000 / clk_get_rate(nfc->core_clk) * 2;
231793db446aSBoris Brezillon 	const struct nand_sdr_timings *sdr;
231893db446aSBoris Brezillon 	struct marvell_nfc_timings nfc_tmg;
231993db446aSBoris Brezillon 	int read_delay;
232093db446aSBoris Brezillon 
232193db446aSBoris Brezillon 	sdr = nand_get_sdr_timings(conf);
232293db446aSBoris Brezillon 	if (IS_ERR(sdr))
232393db446aSBoris Brezillon 		return PTR_ERR(sdr);
232493db446aSBoris Brezillon 
232593db446aSBoris Brezillon 	/*
232693db446aSBoris Brezillon 	 * SDR timings are given in pico-seconds while NFC timings must be
232793db446aSBoris Brezillon 	 * expressed in NAND controller clock cycles, which is half of the
232893db446aSBoris Brezillon 	 * frequency of the accessible ECC clock retrieved by clk_get_rate().
232993db446aSBoris Brezillon 	 * This is not written anywhere in the datasheet but was observed
233093db446aSBoris Brezillon 	 * with an oscilloscope.
233193db446aSBoris Brezillon 	 *
233293db446aSBoris Brezillon 	 * NFC datasheet gives equations from which thoses calculations
233393db446aSBoris Brezillon 	 * are derived, they tend to be slightly more restrictives than the
233493db446aSBoris Brezillon 	 * given core timings and may improve the overall speed.
233593db446aSBoris Brezillon 	 */
233693db446aSBoris Brezillon 	nfc_tmg.tRP = TO_CYCLES(DIV_ROUND_UP(sdr->tRC_min, 2), period_ns) - 1;
233793db446aSBoris Brezillon 	nfc_tmg.tRH = nfc_tmg.tRP;
233893db446aSBoris Brezillon 	nfc_tmg.tWP = TO_CYCLES(DIV_ROUND_UP(sdr->tWC_min, 2), period_ns) - 1;
233993db446aSBoris Brezillon 	nfc_tmg.tWH = nfc_tmg.tWP;
234093db446aSBoris Brezillon 	nfc_tmg.tCS = TO_CYCLES(sdr->tCS_min, period_ns);
234193db446aSBoris Brezillon 	nfc_tmg.tCH = TO_CYCLES(sdr->tCH_min, period_ns) - 1;
234293db446aSBoris Brezillon 	nfc_tmg.tADL = TO_CYCLES(sdr->tADL_min, period_ns);
234393db446aSBoris Brezillon 	/*
234493db446aSBoris Brezillon 	 * Read delay is the time of propagation from SoC pins to NFC internal
234593db446aSBoris Brezillon 	 * logic. With non-EDO timings, this is MIN_RD_DEL_CNT clock cycles. In
234693db446aSBoris Brezillon 	 * EDO mode, an additional delay of tRH must be taken into account so
234793db446aSBoris Brezillon 	 * the data is sampled on the falling edge instead of the rising edge.
234893db446aSBoris Brezillon 	 */
234993db446aSBoris Brezillon 	read_delay = sdr->tRC_min >= 30000 ?
235093db446aSBoris Brezillon 		MIN_RD_DEL_CNT : MIN_RD_DEL_CNT + nfc_tmg.tRH;
235193db446aSBoris Brezillon 
235293db446aSBoris Brezillon 	nfc_tmg.tAR = TO_CYCLES(sdr->tAR_min, period_ns);
235393db446aSBoris Brezillon 	/*
235493db446aSBoris Brezillon 	 * tWHR and tRHW are supposed to be read to write delays (and vice
235593db446aSBoris Brezillon 	 * versa) but in some cases, ie. when doing a change column, they must
235693db446aSBoris Brezillon 	 * be greater than that to be sure tCCS delay is respected.
235793db446aSBoris Brezillon 	 */
235893db446aSBoris Brezillon 	nfc_tmg.tWHR = TO_CYCLES(max_t(int, sdr->tWHR_min, sdr->tCCS_min),
235993db446aSBoris Brezillon 				 period_ns) - 2,
236093db446aSBoris Brezillon 	nfc_tmg.tRHW = TO_CYCLES(max_t(int, sdr->tRHW_min, sdr->tCCS_min),
236193db446aSBoris Brezillon 				 period_ns);
236293db446aSBoris Brezillon 
236393db446aSBoris Brezillon 	/*
236493db446aSBoris Brezillon 	 * NFCv2: Use WAIT_MODE (wait for RB line), do not rely only on delays.
236593db446aSBoris Brezillon 	 * NFCv1: No WAIT_MODE, tR must be maximal.
236693db446aSBoris Brezillon 	 */
236793db446aSBoris Brezillon 	if (nfc->caps->is_nfcv2) {
236893db446aSBoris Brezillon 		nfc_tmg.tR = TO_CYCLES(sdr->tWB_max, period_ns);
236993db446aSBoris Brezillon 	} else {
237093db446aSBoris Brezillon 		nfc_tmg.tR = TO_CYCLES64(sdr->tWB_max + sdr->tR_max,
237193db446aSBoris Brezillon 					 period_ns);
237293db446aSBoris Brezillon 		if (nfc_tmg.tR + 3 > nfc_tmg.tCH)
237393db446aSBoris Brezillon 			nfc_tmg.tR = nfc_tmg.tCH - 3;
237493db446aSBoris Brezillon 		else
237593db446aSBoris Brezillon 			nfc_tmg.tR = 0;
237693db446aSBoris Brezillon 	}
237793db446aSBoris Brezillon 
237893db446aSBoris Brezillon 	if (chipnr < 0)
237993db446aSBoris Brezillon 		return 0;
238093db446aSBoris Brezillon 
238193db446aSBoris Brezillon 	marvell_nand->ndtr0 =
238293db446aSBoris Brezillon 		NDTR0_TRP(nfc_tmg.tRP) |
238393db446aSBoris Brezillon 		NDTR0_TRH(nfc_tmg.tRH) |
238493db446aSBoris Brezillon 		NDTR0_ETRP(nfc_tmg.tRP) |
238593db446aSBoris Brezillon 		NDTR0_TWP(nfc_tmg.tWP) |
238693db446aSBoris Brezillon 		NDTR0_TWH(nfc_tmg.tWH) |
238793db446aSBoris Brezillon 		NDTR0_TCS(nfc_tmg.tCS) |
238893db446aSBoris Brezillon 		NDTR0_TCH(nfc_tmg.tCH);
238993db446aSBoris Brezillon 
239093db446aSBoris Brezillon 	marvell_nand->ndtr1 =
239193db446aSBoris Brezillon 		NDTR1_TAR(nfc_tmg.tAR) |
239293db446aSBoris Brezillon 		NDTR1_TWHR(nfc_tmg.tWHR) |
239393db446aSBoris Brezillon 		NDTR1_TR(nfc_tmg.tR);
239493db446aSBoris Brezillon 
239593db446aSBoris Brezillon 	if (nfc->caps->is_nfcv2) {
239693db446aSBoris Brezillon 		marvell_nand->ndtr0 |=
239793db446aSBoris Brezillon 			NDTR0_RD_CNT_DEL(read_delay) |
239893db446aSBoris Brezillon 			NDTR0_SELCNTR |
239993db446aSBoris Brezillon 			NDTR0_TADL(nfc_tmg.tADL);
240093db446aSBoris Brezillon 
240193db446aSBoris Brezillon 		marvell_nand->ndtr1 |=
240293db446aSBoris Brezillon 			NDTR1_TRHW(nfc_tmg.tRHW) |
240393db446aSBoris Brezillon 			NDTR1_WAIT_MODE;
240493db446aSBoris Brezillon 	}
240593db446aSBoris Brezillon 
240693db446aSBoris Brezillon 	return 0;
240793db446aSBoris Brezillon }
240893db446aSBoris Brezillon 
24098831e48bSMiquel Raynal static int marvell_nand_attach_chip(struct nand_chip *chip)
24108831e48bSMiquel Raynal {
24118831e48bSMiquel Raynal 	struct mtd_info *mtd = nand_to_mtd(chip);
24128831e48bSMiquel Raynal 	struct marvell_nand_chip *marvell_nand = to_marvell_nand(chip);
24138831e48bSMiquel Raynal 	struct marvell_nfc *nfc = to_marvell_nfc(chip->controller);
24148831e48bSMiquel Raynal 	struct pxa3xx_nand_platform_data *pdata = dev_get_platdata(nfc->dev);
24158831e48bSMiquel Raynal 	int ret;
24168831e48bSMiquel Raynal 
24178831e48bSMiquel Raynal 	if (pdata && pdata->flash_bbt)
24188831e48bSMiquel Raynal 		chip->bbt_options |= NAND_BBT_USE_FLASH;
24198831e48bSMiquel Raynal 
24208831e48bSMiquel Raynal 	if (chip->bbt_options & NAND_BBT_USE_FLASH) {
24218831e48bSMiquel Raynal 		/*
24228831e48bSMiquel Raynal 		 * We'll use a bad block table stored in-flash and don't
24238831e48bSMiquel Raynal 		 * allow writing the bad block marker to the flash.
24248831e48bSMiquel Raynal 		 */
24258831e48bSMiquel Raynal 		chip->bbt_options |= NAND_BBT_NO_OOB_BBM;
24268831e48bSMiquel Raynal 		chip->bbt_td = &bbt_main_descr;
24278831e48bSMiquel Raynal 		chip->bbt_md = &bbt_mirror_descr;
24288831e48bSMiquel Raynal 	}
24298831e48bSMiquel Raynal 
24308831e48bSMiquel Raynal 	/* Save the chip-specific fields of NDCR */
24318831e48bSMiquel Raynal 	marvell_nand->ndcr = NDCR_PAGE_SZ(mtd->writesize);
24328831e48bSMiquel Raynal 	if (chip->options & NAND_BUSWIDTH_16)
24338831e48bSMiquel Raynal 		marvell_nand->ndcr |= NDCR_DWIDTH_M | NDCR_DWIDTH_C;
24348831e48bSMiquel Raynal 
24358831e48bSMiquel Raynal 	/*
24368831e48bSMiquel Raynal 	 * On small page NANDs, only one cycle is needed to pass the
24378831e48bSMiquel Raynal 	 * column address.
24388831e48bSMiquel Raynal 	 */
24398831e48bSMiquel Raynal 	if (mtd->writesize <= 512) {
24408831e48bSMiquel Raynal 		marvell_nand->addr_cyc = 1;
24418831e48bSMiquel Raynal 	} else {
24428831e48bSMiquel Raynal 		marvell_nand->addr_cyc = 2;
24438831e48bSMiquel Raynal 		marvell_nand->ndcr |= NDCR_RA_START;
24448831e48bSMiquel Raynal 	}
24458831e48bSMiquel Raynal 
24468831e48bSMiquel Raynal 	/*
24478831e48bSMiquel Raynal 	 * Now add the number of cycles needed to pass the row
24488831e48bSMiquel Raynal 	 * address.
24498831e48bSMiquel Raynal 	 *
24508831e48bSMiquel Raynal 	 * Addressing a chip using CS 2 or 3 should also need the third row
24518831e48bSMiquel Raynal 	 * cycle but due to inconsistance in the documentation and lack of
24528831e48bSMiquel Raynal 	 * hardware to test this situation, this case is not supported.
24538831e48bSMiquel Raynal 	 */
24548831e48bSMiquel Raynal 	if (chip->options & NAND_ROW_ADDR_3)
24558831e48bSMiquel Raynal 		marvell_nand->addr_cyc += 3;
24568831e48bSMiquel Raynal 	else
24578831e48bSMiquel Raynal 		marvell_nand->addr_cyc += 2;
24588831e48bSMiquel Raynal 
24598831e48bSMiquel Raynal 	if (pdata) {
24608831e48bSMiquel Raynal 		chip->ecc.size = pdata->ecc_step_size;
24618831e48bSMiquel Raynal 		chip->ecc.strength = pdata->ecc_strength;
24628831e48bSMiquel Raynal 	}
24638831e48bSMiquel Raynal 
24648831e48bSMiquel Raynal 	ret = marvell_nand_ecc_init(mtd, &chip->ecc);
24658831e48bSMiquel Raynal 	if (ret) {
24668831e48bSMiquel Raynal 		dev_err(nfc->dev, "ECC init failed: %d\n", ret);
24678831e48bSMiquel Raynal 		return ret;
24688831e48bSMiquel Raynal 	}
24698831e48bSMiquel Raynal 
24708831e48bSMiquel Raynal 	if (chip->ecc.mode == NAND_ECC_HW) {
24718831e48bSMiquel Raynal 		/*
24728831e48bSMiquel Raynal 		 * Subpage write not available with hardware ECC, prohibit also
24738831e48bSMiquel Raynal 		 * subpage read as in userspace subpage access would still be
24748831e48bSMiquel Raynal 		 * allowed and subpage write, if used, would lead to numerous
24758831e48bSMiquel Raynal 		 * uncorrectable ECC errors.
24768831e48bSMiquel Raynal 		 */
24778831e48bSMiquel Raynal 		chip->options |= NAND_NO_SUBPAGE_WRITE;
24788831e48bSMiquel Raynal 	}
24798831e48bSMiquel Raynal 
24808831e48bSMiquel Raynal 	if (pdata || nfc->caps->legacy_of_bindings) {
24818831e48bSMiquel Raynal 		/*
24828831e48bSMiquel Raynal 		 * We keep the MTD name unchanged to avoid breaking platforms
24838831e48bSMiquel Raynal 		 * where the MTD cmdline parser is used and the bootloader
24848831e48bSMiquel Raynal 		 * has not been updated to use the new naming scheme.
24858831e48bSMiquel Raynal 		 */
24868831e48bSMiquel Raynal 		mtd->name = "pxa3xx_nand-0";
24878831e48bSMiquel Raynal 	} else if (!mtd->name) {
24888831e48bSMiquel Raynal 		/*
24898831e48bSMiquel Raynal 		 * If the new bindings are used and the bootloader has not been
24908831e48bSMiquel Raynal 		 * updated to pass a new mtdparts parameter on the cmdline, you
24918831e48bSMiquel Raynal 		 * should define the following property in your NAND node, ie:
24928831e48bSMiquel Raynal 		 *
24938831e48bSMiquel Raynal 		 *	label = "main-storage";
24948831e48bSMiquel Raynal 		 *
24958831e48bSMiquel Raynal 		 * This way, mtd->name will be set by the core when
24968831e48bSMiquel Raynal 		 * nand_set_flash_node() is called.
24978831e48bSMiquel Raynal 		 */
24988831e48bSMiquel Raynal 		mtd->name = devm_kasprintf(nfc->dev, GFP_KERNEL,
24998831e48bSMiquel Raynal 					   "%s:nand.%d", dev_name(nfc->dev),
25008831e48bSMiquel Raynal 					   marvell_nand->sels[0].cs);
25018831e48bSMiquel Raynal 		if (!mtd->name) {
25028831e48bSMiquel Raynal 			dev_err(nfc->dev, "Failed to allocate mtd->name\n");
25038831e48bSMiquel Raynal 			return -ENOMEM;
25048831e48bSMiquel Raynal 		}
25058831e48bSMiquel Raynal 	}
25068831e48bSMiquel Raynal 
25078831e48bSMiquel Raynal 	return 0;
25088831e48bSMiquel Raynal }
25098831e48bSMiquel Raynal 
25108831e48bSMiquel Raynal static const struct nand_controller_ops marvell_nand_controller_ops = {
25118831e48bSMiquel Raynal 	.attach_chip = marvell_nand_attach_chip,
2512f2abfeb2SBoris Brezillon 	.exec_op = marvell_nfc_exec_op,
25134c46667bSMiquel Raynal 	.setup_interface = marvell_nfc_setup_interface,
25148831e48bSMiquel Raynal };
25158831e48bSMiquel Raynal 
251693db446aSBoris Brezillon static int marvell_nand_chip_init(struct device *dev, struct marvell_nfc *nfc,
251793db446aSBoris Brezillon 				  struct device_node *np)
251893db446aSBoris Brezillon {
251993db446aSBoris Brezillon 	struct pxa3xx_nand_platform_data *pdata = dev_get_platdata(dev);
252093db446aSBoris Brezillon 	struct marvell_nand_chip *marvell_nand;
252193db446aSBoris Brezillon 	struct mtd_info *mtd;
252293db446aSBoris Brezillon 	struct nand_chip *chip;
252393db446aSBoris Brezillon 	int nsels, ret, i;
252493db446aSBoris Brezillon 	u32 cs, rb;
252593db446aSBoris Brezillon 
252693db446aSBoris Brezillon 	/*
252793db446aSBoris Brezillon 	 * The legacy "num-cs" property indicates the number of CS on the only
252893db446aSBoris Brezillon 	 * chip connected to the controller (legacy bindings does not support
2529f6997becSMiquel Raynal 	 * more than one chip). The CS and RB pins are always the #0.
253093db446aSBoris Brezillon 	 *
253193db446aSBoris Brezillon 	 * When not using legacy bindings, a couple of "reg" and "nand-rb"
253293db446aSBoris Brezillon 	 * properties must be filled. For each chip, expressed as a subnode,
253393db446aSBoris Brezillon 	 * "reg" points to the CS lines and "nand-rb" to the RB line.
253493db446aSBoris Brezillon 	 */
2535f6997becSMiquel Raynal 	if (pdata || nfc->caps->legacy_of_bindings) {
253693db446aSBoris Brezillon 		nsels = 1;
2537f6997becSMiquel Raynal 	} else {
2538f6997becSMiquel Raynal 		nsels = of_property_count_elems_of_size(np, "reg", sizeof(u32));
2539f6997becSMiquel Raynal 		if (nsels <= 0) {
2540f6997becSMiquel Raynal 			dev_err(dev, "missing/invalid reg property\n");
254193db446aSBoris Brezillon 			return -EINVAL;
254293db446aSBoris Brezillon 		}
254393db446aSBoris Brezillon 	}
254493db446aSBoris Brezillon 
254593db446aSBoris Brezillon 	/* Alloc the nand chip structure */
25467b301965SGustavo A. R. Silva 	marvell_nand = devm_kzalloc(dev,
25477b301965SGustavo A. R. Silva 				    struct_size(marvell_nand, sels, nsels),
254893db446aSBoris Brezillon 				    GFP_KERNEL);
254993db446aSBoris Brezillon 	if (!marvell_nand) {
255093db446aSBoris Brezillon 		dev_err(dev, "could not allocate chip structure\n");
255193db446aSBoris Brezillon 		return -ENOMEM;
255293db446aSBoris Brezillon 	}
255393db446aSBoris Brezillon 
255493db446aSBoris Brezillon 	marvell_nand->nsels = nsels;
255593db446aSBoris Brezillon 	marvell_nand->selected_die = -1;
255693db446aSBoris Brezillon 
255793db446aSBoris Brezillon 	for (i = 0; i < nsels; i++) {
255893db446aSBoris Brezillon 		if (pdata || nfc->caps->legacy_of_bindings) {
255993db446aSBoris Brezillon 			/*
256093db446aSBoris Brezillon 			 * Legacy bindings use the CS lines in natural
256193db446aSBoris Brezillon 			 * order (0, 1, ...)
256293db446aSBoris Brezillon 			 */
256393db446aSBoris Brezillon 			cs = i;
256493db446aSBoris Brezillon 		} else {
256593db446aSBoris Brezillon 			/* Retrieve CS id */
256693db446aSBoris Brezillon 			ret = of_property_read_u32_index(np, "reg", i, &cs);
256793db446aSBoris Brezillon 			if (ret) {
256893db446aSBoris Brezillon 				dev_err(dev, "could not retrieve reg property: %d\n",
256993db446aSBoris Brezillon 					ret);
257093db446aSBoris Brezillon 				return ret;
257193db446aSBoris Brezillon 			}
257293db446aSBoris Brezillon 		}
257393db446aSBoris Brezillon 
257493db446aSBoris Brezillon 		if (cs >= nfc->caps->max_cs_nb) {
257593db446aSBoris Brezillon 			dev_err(dev, "invalid reg value: %u (max CS = %d)\n",
257693db446aSBoris Brezillon 				cs, nfc->caps->max_cs_nb);
257793db446aSBoris Brezillon 			return -EINVAL;
257893db446aSBoris Brezillon 		}
257993db446aSBoris Brezillon 
258093db446aSBoris Brezillon 		if (test_and_set_bit(cs, &nfc->assigned_cs)) {
258193db446aSBoris Brezillon 			dev_err(dev, "CS %d already assigned\n", cs);
258293db446aSBoris Brezillon 			return -EINVAL;
258393db446aSBoris Brezillon 		}
258493db446aSBoris Brezillon 
258593db446aSBoris Brezillon 		/*
258693db446aSBoris Brezillon 		 * The cs variable represents the chip select id, which must be
258793db446aSBoris Brezillon 		 * converted in bit fields for NDCB0 and NDCB2 to select the
258893db446aSBoris Brezillon 		 * right chip. Unfortunately, due to a lack of information on
258993db446aSBoris Brezillon 		 * the subject and incoherent documentation, the user should not
259093db446aSBoris Brezillon 		 * use CS1 and CS3 at all as asserting them is not supported in
259193db446aSBoris Brezillon 		 * a reliable way (due to multiplexing inside ADDR5 field).
259293db446aSBoris Brezillon 		 */
259393db446aSBoris Brezillon 		marvell_nand->sels[i].cs = cs;
259493db446aSBoris Brezillon 		switch (cs) {
259593db446aSBoris Brezillon 		case 0:
259693db446aSBoris Brezillon 		case 2:
259793db446aSBoris Brezillon 			marvell_nand->sels[i].ndcb0_csel = 0;
259893db446aSBoris Brezillon 			break;
259993db446aSBoris Brezillon 		case 1:
260093db446aSBoris Brezillon 		case 3:
260193db446aSBoris Brezillon 			marvell_nand->sels[i].ndcb0_csel = NDCB0_CSEL;
260293db446aSBoris Brezillon 			break;
260393db446aSBoris Brezillon 		default:
260493db446aSBoris Brezillon 			return -EINVAL;
260593db446aSBoris Brezillon 		}
260693db446aSBoris Brezillon 
260793db446aSBoris Brezillon 		/* Retrieve RB id */
260893db446aSBoris Brezillon 		if (pdata || nfc->caps->legacy_of_bindings) {
260993db446aSBoris Brezillon 			/* Legacy bindings always use RB #0 */
261093db446aSBoris Brezillon 			rb = 0;
261193db446aSBoris Brezillon 		} else {
261293db446aSBoris Brezillon 			ret = of_property_read_u32_index(np, "nand-rb", i,
261393db446aSBoris Brezillon 							 &rb);
261493db446aSBoris Brezillon 			if (ret) {
261593db446aSBoris Brezillon 				dev_err(dev,
261693db446aSBoris Brezillon 					"could not retrieve RB property: %d\n",
261793db446aSBoris Brezillon 					ret);
261893db446aSBoris Brezillon 				return ret;
261993db446aSBoris Brezillon 			}
262093db446aSBoris Brezillon 		}
262193db446aSBoris Brezillon 
262293db446aSBoris Brezillon 		if (rb >= nfc->caps->max_rb_nb) {
262393db446aSBoris Brezillon 			dev_err(dev, "invalid reg value: %u (max RB = %d)\n",
262493db446aSBoris Brezillon 				rb, nfc->caps->max_rb_nb);
262593db446aSBoris Brezillon 			return -EINVAL;
262693db446aSBoris Brezillon 		}
262793db446aSBoris Brezillon 
262893db446aSBoris Brezillon 		marvell_nand->sels[i].rb = rb;
262993db446aSBoris Brezillon 	}
263093db446aSBoris Brezillon 
263193db446aSBoris Brezillon 	chip = &marvell_nand->chip;
263293db446aSBoris Brezillon 	chip->controller = &nfc->controller;
263393db446aSBoris Brezillon 	nand_set_flash_node(chip, np);
263493db446aSBoris Brezillon 
263593db446aSBoris Brezillon 	if (!of_property_read_bool(np, "marvell,nand-keep-config"))
26367a08dbaeSBoris Brezillon 		chip->options |= NAND_KEEP_TIMINGS;
263793db446aSBoris Brezillon 
263893db446aSBoris Brezillon 	mtd = nand_to_mtd(chip);
263993db446aSBoris Brezillon 	mtd->dev.parent = dev;
264093db446aSBoris Brezillon 
264193db446aSBoris Brezillon 	/*
264293db446aSBoris Brezillon 	 * Default to HW ECC engine mode. If the nand-ecc-mode property is given
264393db446aSBoris Brezillon 	 * in the DT node, this entry will be overwritten in nand_scan_ident().
264493db446aSBoris Brezillon 	 */
264593db446aSBoris Brezillon 	chip->ecc.mode = NAND_ECC_HW;
264693db446aSBoris Brezillon 
264793db446aSBoris Brezillon 	/*
264893db446aSBoris Brezillon 	 * Save a reference value for timing registers before
26494c46667bSMiquel Raynal 	 * ->setup_interface() is called.
265093db446aSBoris Brezillon 	 */
265193db446aSBoris Brezillon 	marvell_nand->ndtr0 = readl_relaxed(nfc->regs + NDTR0);
265293db446aSBoris Brezillon 	marvell_nand->ndtr1 = readl_relaxed(nfc->regs + NDTR1);
265393db446aSBoris Brezillon 
265493db446aSBoris Brezillon 	chip->options |= NAND_BUSWIDTH_AUTO;
26558831e48bSMiquel Raynal 
265600ad378fSBoris Brezillon 	ret = nand_scan(chip, marvell_nand->nsels);
265793db446aSBoris Brezillon 	if (ret) {
26588831e48bSMiquel Raynal 		dev_err(dev, "could not scan the nand chip\n");
265993db446aSBoris Brezillon 		return ret;
266093db446aSBoris Brezillon 	}
266193db446aSBoris Brezillon 
266293db446aSBoris Brezillon 	if (pdata)
266393db446aSBoris Brezillon 		/* Legacy bindings support only one chip */
26643383fb35SBoris Brezillon 		ret = mtd_device_register(mtd, pdata->parts, pdata->nr_parts);
266593db446aSBoris Brezillon 	else
266693db446aSBoris Brezillon 		ret = mtd_device_register(mtd, NULL, 0);
266793db446aSBoris Brezillon 	if (ret) {
266893db446aSBoris Brezillon 		dev_err(dev, "failed to register mtd device: %d\n", ret);
26697a0c18fbSMiquel Raynal 		nand_cleanup(chip);
267093db446aSBoris Brezillon 		return ret;
267193db446aSBoris Brezillon 	}
267293db446aSBoris Brezillon 
267393db446aSBoris Brezillon 	list_add_tail(&marvell_nand->node, &nfc->chips);
267493db446aSBoris Brezillon 
267593db446aSBoris Brezillon 	return 0;
267693db446aSBoris Brezillon }
267793db446aSBoris Brezillon 
2678c525b7afSMiquel Raynal static void marvell_nand_chips_cleanup(struct marvell_nfc *nfc)
2679c525b7afSMiquel Raynal {
2680c525b7afSMiquel Raynal 	struct marvell_nand_chip *entry, *temp;
26815ecbba61SMiquel Raynal 	struct nand_chip *chip;
26825ecbba61SMiquel Raynal 	int ret;
2683c525b7afSMiquel Raynal 
2684c525b7afSMiquel Raynal 	list_for_each_entry_safe(entry, temp, &nfc->chips, node) {
26855ecbba61SMiquel Raynal 		chip = &entry->chip;
26865ecbba61SMiquel Raynal 		ret = mtd_device_unregister(nand_to_mtd(chip));
26875ecbba61SMiquel Raynal 		WARN_ON(ret);
26885ecbba61SMiquel Raynal 		nand_cleanup(chip);
2689c525b7afSMiquel Raynal 		list_del(&entry->node);
2690c525b7afSMiquel Raynal 	}
2691c525b7afSMiquel Raynal }
2692c525b7afSMiquel Raynal 
269393db446aSBoris Brezillon static int marvell_nand_chips_init(struct device *dev, struct marvell_nfc *nfc)
269493db446aSBoris Brezillon {
269593db446aSBoris Brezillon 	struct device_node *np = dev->of_node;
269693db446aSBoris Brezillon 	struct device_node *nand_np;
269793db446aSBoris Brezillon 	int max_cs = nfc->caps->max_cs_nb;
269893db446aSBoris Brezillon 	int nchips;
269993db446aSBoris Brezillon 	int ret;
270093db446aSBoris Brezillon 
270193db446aSBoris Brezillon 	if (!np)
270293db446aSBoris Brezillon 		nchips = 1;
270393db446aSBoris Brezillon 	else
270493db446aSBoris Brezillon 		nchips = of_get_child_count(np);
270593db446aSBoris Brezillon 
270693db446aSBoris Brezillon 	if (nchips > max_cs) {
270793db446aSBoris Brezillon 		dev_err(dev, "too many NAND chips: %d (max = %d CS)\n", nchips,
270893db446aSBoris Brezillon 			max_cs);
270993db446aSBoris Brezillon 		return -EINVAL;
271093db446aSBoris Brezillon 	}
271193db446aSBoris Brezillon 
271293db446aSBoris Brezillon 	/*
271393db446aSBoris Brezillon 	 * Legacy bindings do not use child nodes to exhibit NAND chip
271493db446aSBoris Brezillon 	 * properties and layout. Instead, NAND properties are mixed with the
271593db446aSBoris Brezillon 	 * controller ones, and partitions are defined as direct subnodes of the
271693db446aSBoris Brezillon 	 * NAND controller node.
271793db446aSBoris Brezillon 	 */
271893db446aSBoris Brezillon 	if (nfc->caps->legacy_of_bindings) {
271993db446aSBoris Brezillon 		ret = marvell_nand_chip_init(dev, nfc, np);
272093db446aSBoris Brezillon 		return ret;
272193db446aSBoris Brezillon 	}
272293db446aSBoris Brezillon 
272393db446aSBoris Brezillon 	for_each_child_of_node(np, nand_np) {
272493db446aSBoris Brezillon 		ret = marvell_nand_chip_init(dev, nfc, nand_np);
272593db446aSBoris Brezillon 		if (ret) {
272693db446aSBoris Brezillon 			of_node_put(nand_np);
2727c525b7afSMiquel Raynal 			goto cleanup_chips;
272893db446aSBoris Brezillon 		}
272993db446aSBoris Brezillon 	}
273093db446aSBoris Brezillon 
273193db446aSBoris Brezillon 	return 0;
273293db446aSBoris Brezillon 
2733c525b7afSMiquel Raynal cleanup_chips:
2734c525b7afSMiquel Raynal 	marvell_nand_chips_cleanup(nfc);
273593db446aSBoris Brezillon 
2736c525b7afSMiquel Raynal 	return ret;
273793db446aSBoris Brezillon }
273893db446aSBoris Brezillon 
273993db446aSBoris Brezillon static int marvell_nfc_init_dma(struct marvell_nfc *nfc)
274093db446aSBoris Brezillon {
274193db446aSBoris Brezillon 	struct platform_device *pdev = container_of(nfc->dev,
274293db446aSBoris Brezillon 						    struct platform_device,
274393db446aSBoris Brezillon 						    dev);
274493db446aSBoris Brezillon 	struct dma_slave_config config = {};
274593db446aSBoris Brezillon 	struct resource *r;
274693db446aSBoris Brezillon 	int ret;
274793db446aSBoris Brezillon 
274893db446aSBoris Brezillon 	if (!IS_ENABLED(CONFIG_PXA_DMA)) {
274993db446aSBoris Brezillon 		dev_warn(nfc->dev,
275093db446aSBoris Brezillon 			 "DMA not enabled in configuration\n");
275193db446aSBoris Brezillon 		return -ENOTSUPP;
275293db446aSBoris Brezillon 	}
275393db446aSBoris Brezillon 
275493db446aSBoris Brezillon 	ret = dma_set_mask_and_coherent(nfc->dev, DMA_BIT_MASK(32));
275593db446aSBoris Brezillon 	if (ret)
275693db446aSBoris Brezillon 		return ret;
275793db446aSBoris Brezillon 
2758cf9e2389SPeter Ujfalusi 	nfc->dma_chan =	dma_request_chan(nfc->dev, "data");
2759cf9e2389SPeter Ujfalusi 	if (IS_ERR(nfc->dma_chan)) {
2760cf9e2389SPeter Ujfalusi 		ret = PTR_ERR(nfc->dma_chan);
2761cf9e2389SPeter Ujfalusi 		nfc->dma_chan = NULL;
2762cf9e2389SPeter Ujfalusi 		if (ret != -EPROBE_DEFER)
2763cf9e2389SPeter Ujfalusi 			dev_err(nfc->dev, "DMA channel request failed: %d\n",
2764cf9e2389SPeter Ujfalusi 				ret);
2765cf9e2389SPeter Ujfalusi 		return ret;
276693db446aSBoris Brezillon 	}
276793db446aSBoris Brezillon 
276893db446aSBoris Brezillon 	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2769aafe30baSPeter Ujfalusi 	if (!r) {
2770aafe30baSPeter Ujfalusi 		ret = -ENXIO;
2771aafe30baSPeter Ujfalusi 		goto release_channel;
2772aafe30baSPeter Ujfalusi 	}
277393db446aSBoris Brezillon 
277493db446aSBoris Brezillon 	config.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
277593db446aSBoris Brezillon 	config.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
277693db446aSBoris Brezillon 	config.src_addr = r->start + NDDB;
277793db446aSBoris Brezillon 	config.dst_addr = r->start + NDDB;
277893db446aSBoris Brezillon 	config.src_maxburst = 32;
277993db446aSBoris Brezillon 	config.dst_maxburst = 32;
278093db446aSBoris Brezillon 	ret = dmaengine_slave_config(nfc->dma_chan, &config);
278193db446aSBoris Brezillon 	if (ret < 0) {
278293db446aSBoris Brezillon 		dev_err(nfc->dev, "Failed to configure DMA channel\n");
2783aafe30baSPeter Ujfalusi 		goto release_channel;
278493db446aSBoris Brezillon 	}
278593db446aSBoris Brezillon 
278693db446aSBoris Brezillon 	/*
278793db446aSBoris Brezillon 	 * DMA must act on length multiple of 32 and this length may be
278893db446aSBoris Brezillon 	 * bigger than the destination buffer. Use this buffer instead
278993db446aSBoris Brezillon 	 * for DMA transfers and then copy the desired amount of data to
279093db446aSBoris Brezillon 	 * the provided buffer.
279193db446aSBoris Brezillon 	 */
279293db446aSBoris Brezillon 	nfc->dma_buf = kmalloc(MAX_CHUNK_SIZE, GFP_KERNEL | GFP_DMA);
2793aafe30baSPeter Ujfalusi 	if (!nfc->dma_buf) {
2794aafe30baSPeter Ujfalusi 		ret = -ENOMEM;
2795aafe30baSPeter Ujfalusi 		goto release_channel;
2796aafe30baSPeter Ujfalusi 	}
279793db446aSBoris Brezillon 
279893db446aSBoris Brezillon 	nfc->use_dma = true;
279993db446aSBoris Brezillon 
280093db446aSBoris Brezillon 	return 0;
2801aafe30baSPeter Ujfalusi 
2802aafe30baSPeter Ujfalusi release_channel:
2803aafe30baSPeter Ujfalusi 	dma_release_channel(nfc->dma_chan);
2804aafe30baSPeter Ujfalusi 	nfc->dma_chan = NULL;
2805aafe30baSPeter Ujfalusi 
2806aafe30baSPeter Ujfalusi 	return ret;
280793db446aSBoris Brezillon }
280893db446aSBoris Brezillon 
2809bd9c3f9bSDaniel Mack static void marvell_nfc_reset(struct marvell_nfc *nfc)
2810bd9c3f9bSDaniel Mack {
2811bd9c3f9bSDaniel Mack 	/*
2812bd9c3f9bSDaniel Mack 	 * ECC operations and interruptions are only enabled when specifically
2813bd9c3f9bSDaniel Mack 	 * needed. ECC shall not be activated in the early stages (fails probe).
2814bd9c3f9bSDaniel Mack 	 * Arbiter flag, even if marked as "reserved", must be set (empirical).
2815bd9c3f9bSDaniel Mack 	 * SPARE_EN bit must always be set or ECC bytes will not be at the same
2816bd9c3f9bSDaniel Mack 	 * offset in the read page and this will fail the protection.
2817bd9c3f9bSDaniel Mack 	 */
2818bd9c3f9bSDaniel Mack 	writel_relaxed(NDCR_ALL_INT | NDCR_ND_ARB_EN | NDCR_SPARE_EN |
2819bd9c3f9bSDaniel Mack 		       NDCR_RD_ID_CNT(NFCV1_READID_LEN), nfc->regs + NDCR);
2820bd9c3f9bSDaniel Mack 	writel_relaxed(0xFFFFFFFF, nfc->regs + NDSR);
2821bd9c3f9bSDaniel Mack 	writel_relaxed(0, nfc->regs + NDECCCTRL);
2822bd9c3f9bSDaniel Mack }
2823bd9c3f9bSDaniel Mack 
282493db446aSBoris Brezillon static int marvell_nfc_init(struct marvell_nfc *nfc)
282593db446aSBoris Brezillon {
282693db446aSBoris Brezillon 	struct device_node *np = nfc->dev->of_node;
282793db446aSBoris Brezillon 
282893db446aSBoris Brezillon 	/*
282993db446aSBoris Brezillon 	 * Some SoCs like A7k/A8k need to enable manually the NAND
283093db446aSBoris Brezillon 	 * controller, gated clocks and reset bits to avoid being bootloader
283193db446aSBoris Brezillon 	 * dependent. This is done through the use of the System Functions
283293db446aSBoris Brezillon 	 * registers.
283393db446aSBoris Brezillon 	 */
283493db446aSBoris Brezillon 	if (nfc->caps->need_system_controller) {
283593db446aSBoris Brezillon 		struct regmap *sysctrl_base =
283693db446aSBoris Brezillon 			syscon_regmap_lookup_by_phandle(np,
283793db446aSBoris Brezillon 							"marvell,system-controller");
283893db446aSBoris Brezillon 
283993db446aSBoris Brezillon 		if (IS_ERR(sysctrl_base))
284093db446aSBoris Brezillon 			return PTR_ERR(sysctrl_base);
284193db446aSBoris Brezillon 
284288aa3bbfSThomas Petazzoni 		regmap_write(sysctrl_base, GENCONF_SOC_DEVICE_MUX,
284388aa3bbfSThomas Petazzoni 			     GENCONF_SOC_DEVICE_MUX_NFC_EN |
284493db446aSBoris Brezillon 			     GENCONF_SOC_DEVICE_MUX_ECC_CLK_RST |
284593db446aSBoris Brezillon 			     GENCONF_SOC_DEVICE_MUX_ECC_CORE_RST |
284688aa3bbfSThomas Petazzoni 			     GENCONF_SOC_DEVICE_MUX_NFC_INT_EN);
284793db446aSBoris Brezillon 
284888aa3bbfSThomas Petazzoni 		regmap_update_bits(sysctrl_base, GENCONF_CLK_GATING_CTRL,
284988aa3bbfSThomas Petazzoni 				   GENCONF_CLK_GATING_CTRL_ND_GATE,
285088aa3bbfSThomas Petazzoni 				   GENCONF_CLK_GATING_CTRL_ND_GATE);
285193db446aSBoris Brezillon 
285288aa3bbfSThomas Petazzoni 		regmap_update_bits(sysctrl_base, GENCONF_ND_CLK_CTRL,
285388aa3bbfSThomas Petazzoni 				   GENCONF_ND_CLK_CTRL_EN,
285488aa3bbfSThomas Petazzoni 				   GENCONF_ND_CLK_CTRL_EN);
285593db446aSBoris Brezillon 	}
285693db446aSBoris Brezillon 
285793db446aSBoris Brezillon 	/* Configure the DMA if appropriate */
285893db446aSBoris Brezillon 	if (!nfc->caps->is_nfcv2)
285993db446aSBoris Brezillon 		marvell_nfc_init_dma(nfc);
286093db446aSBoris Brezillon 
2861bd9c3f9bSDaniel Mack 	marvell_nfc_reset(nfc);
286293db446aSBoris Brezillon 
286393db446aSBoris Brezillon 	return 0;
286493db446aSBoris Brezillon }
286593db446aSBoris Brezillon 
286693db446aSBoris Brezillon static int marvell_nfc_probe(struct platform_device *pdev)
286793db446aSBoris Brezillon {
286893db446aSBoris Brezillon 	struct device *dev = &pdev->dev;
286993db446aSBoris Brezillon 	struct marvell_nfc *nfc;
287093db446aSBoris Brezillon 	int ret;
287193db446aSBoris Brezillon 	int irq;
287293db446aSBoris Brezillon 
287393db446aSBoris Brezillon 	nfc = devm_kzalloc(&pdev->dev, sizeof(struct marvell_nfc),
287493db446aSBoris Brezillon 			   GFP_KERNEL);
287593db446aSBoris Brezillon 	if (!nfc)
287693db446aSBoris Brezillon 		return -ENOMEM;
287793db446aSBoris Brezillon 
287893db446aSBoris Brezillon 	nfc->dev = dev;
28797da45139SMiquel Raynal 	nand_controller_init(&nfc->controller);
28808831e48bSMiquel Raynal 	nfc->controller.ops = &marvell_nand_controller_ops;
288193db446aSBoris Brezillon 	INIT_LIST_HEAD(&nfc->chips);
288293db446aSBoris Brezillon 
28835dcc9976SMiquel Raynal 	nfc->regs = devm_platform_ioremap_resource(pdev, 0);
288493db446aSBoris Brezillon 	if (IS_ERR(nfc->regs))
288593db446aSBoris Brezillon 		return PTR_ERR(nfc->regs);
288693db446aSBoris Brezillon 
288793db446aSBoris Brezillon 	irq = platform_get_irq(pdev, 0);
2888aab478caSStephen Boyd 	if (irq < 0)
288993db446aSBoris Brezillon 		return irq;
289093db446aSBoris Brezillon 
28916b6de654SBoris Brezillon 	nfc->core_clk = devm_clk_get(&pdev->dev, "core");
2892961ba15cSGregory CLEMENT 
2893961ba15cSGregory CLEMENT 	/* Managed the legacy case (when the first clock was not named) */
28946b6de654SBoris Brezillon 	if (nfc->core_clk == ERR_PTR(-ENOENT))
28956b6de654SBoris Brezillon 		nfc->core_clk = devm_clk_get(&pdev->dev, NULL);
2896961ba15cSGregory CLEMENT 
28976b6de654SBoris Brezillon 	if (IS_ERR(nfc->core_clk))
28986b6de654SBoris Brezillon 		return PTR_ERR(nfc->core_clk);
289993db446aSBoris Brezillon 
29006b6de654SBoris Brezillon 	ret = clk_prepare_enable(nfc->core_clk);
290193db446aSBoris Brezillon 	if (ret)
290293db446aSBoris Brezillon 		return ret;
290393db446aSBoris Brezillon 
2904961ba15cSGregory CLEMENT 	nfc->reg_clk = devm_clk_get(&pdev->dev, "reg");
2905f9e64d61SDaniel Mack 	if (IS_ERR(nfc->reg_clk)) {
2906961ba15cSGregory CLEMENT 		if (PTR_ERR(nfc->reg_clk) != -ENOENT) {
2907961ba15cSGregory CLEMENT 			ret = PTR_ERR(nfc->reg_clk);
29086b6de654SBoris Brezillon 			goto unprepare_core_clk;
2909961ba15cSGregory CLEMENT 		}
2910f9e64d61SDaniel Mack 
2911f9e64d61SDaniel Mack 		nfc->reg_clk = NULL;
2912961ba15cSGregory CLEMENT 	}
2913961ba15cSGregory CLEMENT 
2914f9e64d61SDaniel Mack 	ret = clk_prepare_enable(nfc->reg_clk);
2915f9e64d61SDaniel Mack 	if (ret)
2916f9e64d61SDaniel Mack 		goto unprepare_core_clk;
2917f9e64d61SDaniel Mack 
291893db446aSBoris Brezillon 	marvell_nfc_disable_int(nfc, NDCR_ALL_INT);
291993db446aSBoris Brezillon 	marvell_nfc_clear_int(nfc, NDCR_ALL_INT);
292093db446aSBoris Brezillon 	ret = devm_request_irq(dev, irq, marvell_nfc_isr,
292193db446aSBoris Brezillon 			       0, "marvell-nfc", nfc);
292293db446aSBoris Brezillon 	if (ret)
2923961ba15cSGregory CLEMENT 		goto unprepare_reg_clk;
292493db446aSBoris Brezillon 
292593db446aSBoris Brezillon 	/* Get NAND controller capabilities */
292693db446aSBoris Brezillon 	if (pdev->id_entry)
292793db446aSBoris Brezillon 		nfc->caps = (void *)pdev->id_entry->driver_data;
292893db446aSBoris Brezillon 	else
292993db446aSBoris Brezillon 		nfc->caps = of_device_get_match_data(&pdev->dev);
293093db446aSBoris Brezillon 
293193db446aSBoris Brezillon 	if (!nfc->caps) {
293293db446aSBoris Brezillon 		dev_err(dev, "Could not retrieve NFC caps\n");
293393db446aSBoris Brezillon 		ret = -EINVAL;
2934961ba15cSGregory CLEMENT 		goto unprepare_reg_clk;
293593db446aSBoris Brezillon 	}
293693db446aSBoris Brezillon 
293793db446aSBoris Brezillon 	/* Init the controller and then probe the chips */
293893db446aSBoris Brezillon 	ret = marvell_nfc_init(nfc);
293993db446aSBoris Brezillon 	if (ret)
2940961ba15cSGregory CLEMENT 		goto unprepare_reg_clk;
294193db446aSBoris Brezillon 
294293db446aSBoris Brezillon 	platform_set_drvdata(pdev, nfc);
294393db446aSBoris Brezillon 
294493db446aSBoris Brezillon 	ret = marvell_nand_chips_init(dev, nfc);
294593db446aSBoris Brezillon 	if (ret)
2946aafe30baSPeter Ujfalusi 		goto release_dma;
294793db446aSBoris Brezillon 
294893db446aSBoris Brezillon 	return 0;
294993db446aSBoris Brezillon 
2950aafe30baSPeter Ujfalusi release_dma:
2951aafe30baSPeter Ujfalusi 	if (nfc->use_dma)
2952aafe30baSPeter Ujfalusi 		dma_release_channel(nfc->dma_chan);
2953961ba15cSGregory CLEMENT unprepare_reg_clk:
2954961ba15cSGregory CLEMENT 	clk_disable_unprepare(nfc->reg_clk);
29556b6de654SBoris Brezillon unprepare_core_clk:
29566b6de654SBoris Brezillon 	clk_disable_unprepare(nfc->core_clk);
295793db446aSBoris Brezillon 
295893db446aSBoris Brezillon 	return ret;
295993db446aSBoris Brezillon }
296093db446aSBoris Brezillon 
296193db446aSBoris Brezillon static int marvell_nfc_remove(struct platform_device *pdev)
296293db446aSBoris Brezillon {
296393db446aSBoris Brezillon 	struct marvell_nfc *nfc = platform_get_drvdata(pdev);
296493db446aSBoris Brezillon 
296593db446aSBoris Brezillon 	marvell_nand_chips_cleanup(nfc);
296693db446aSBoris Brezillon 
296793db446aSBoris Brezillon 	if (nfc->use_dma) {
296893db446aSBoris Brezillon 		dmaengine_terminate_all(nfc->dma_chan);
296993db446aSBoris Brezillon 		dma_release_channel(nfc->dma_chan);
297093db446aSBoris Brezillon 	}
297193db446aSBoris Brezillon 
2972961ba15cSGregory CLEMENT 	clk_disable_unprepare(nfc->reg_clk);
29736b6de654SBoris Brezillon 	clk_disable_unprepare(nfc->core_clk);
297493db446aSBoris Brezillon 
297593db446aSBoris Brezillon 	return 0;
297693db446aSBoris Brezillon }
297793db446aSBoris Brezillon 
2978bd9c3f9bSDaniel Mack static int __maybe_unused marvell_nfc_suspend(struct device *dev)
2979bd9c3f9bSDaniel Mack {
2980bd9c3f9bSDaniel Mack 	struct marvell_nfc *nfc = dev_get_drvdata(dev);
2981bd9c3f9bSDaniel Mack 	struct marvell_nand_chip *chip;
2982bd9c3f9bSDaniel Mack 
2983bd9c3f9bSDaniel Mack 	list_for_each_entry(chip, &nfc->chips, node)
2984bd9c3f9bSDaniel Mack 		marvell_nfc_wait_ndrun(&chip->chip);
2985bd9c3f9bSDaniel Mack 
2986bd9c3f9bSDaniel Mack 	clk_disable_unprepare(nfc->reg_clk);
2987bd9c3f9bSDaniel Mack 	clk_disable_unprepare(nfc->core_clk);
2988bd9c3f9bSDaniel Mack 
2989bd9c3f9bSDaniel Mack 	return 0;
2990bd9c3f9bSDaniel Mack }
2991bd9c3f9bSDaniel Mack 
2992bd9c3f9bSDaniel Mack static int __maybe_unused marvell_nfc_resume(struct device *dev)
2993bd9c3f9bSDaniel Mack {
2994bd9c3f9bSDaniel Mack 	struct marvell_nfc *nfc = dev_get_drvdata(dev);
2995bd9c3f9bSDaniel Mack 	int ret;
2996bd9c3f9bSDaniel Mack 
2997bd9c3f9bSDaniel Mack 	ret = clk_prepare_enable(nfc->core_clk);
2998bd9c3f9bSDaniel Mack 	if (ret < 0)
2999bd9c3f9bSDaniel Mack 		return ret;
3000bd9c3f9bSDaniel Mack 
3001bd9c3f9bSDaniel Mack 	ret = clk_prepare_enable(nfc->reg_clk);
3002bd9c3f9bSDaniel Mack 	if (ret < 0)
3003bd9c3f9bSDaniel Mack 		return ret;
3004bd9c3f9bSDaniel Mack 
3005bd9c3f9bSDaniel Mack 	/*
3006bd9c3f9bSDaniel Mack 	 * Reset nfc->selected_chip so the next command will cause the timing
30072e16dc73SMiquel Raynal 	 * registers to be restored in marvell_nfc_select_target().
3008bd9c3f9bSDaniel Mack 	 */
3009bd9c3f9bSDaniel Mack 	nfc->selected_chip = NULL;
3010bd9c3f9bSDaniel Mack 
3011bd9c3f9bSDaniel Mack 	/* Reset registers that have lost their contents */
3012bd9c3f9bSDaniel Mack 	marvell_nfc_reset(nfc);
3013bd9c3f9bSDaniel Mack 
3014bd9c3f9bSDaniel Mack 	return 0;
3015bd9c3f9bSDaniel Mack }
3016bd9c3f9bSDaniel Mack 
3017bd9c3f9bSDaniel Mack static const struct dev_pm_ops marvell_nfc_pm_ops = {
3018bd9c3f9bSDaniel Mack 	SET_SYSTEM_SLEEP_PM_OPS(marvell_nfc_suspend, marvell_nfc_resume)
3019bd9c3f9bSDaniel Mack };
3020bd9c3f9bSDaniel Mack 
302193db446aSBoris Brezillon static const struct marvell_nfc_caps marvell_armada_8k_nfc_caps = {
302293db446aSBoris Brezillon 	.max_cs_nb = 4,
302393db446aSBoris Brezillon 	.max_rb_nb = 2,
302493db446aSBoris Brezillon 	.need_system_controller = true,
302593db446aSBoris Brezillon 	.is_nfcv2 = true,
302693db446aSBoris Brezillon };
302793db446aSBoris Brezillon 
302893db446aSBoris Brezillon static const struct marvell_nfc_caps marvell_armada370_nfc_caps = {
302993db446aSBoris Brezillon 	.max_cs_nb = 4,
303093db446aSBoris Brezillon 	.max_rb_nb = 2,
303193db446aSBoris Brezillon 	.is_nfcv2 = true,
303293db446aSBoris Brezillon };
303393db446aSBoris Brezillon 
303493db446aSBoris Brezillon static const struct marvell_nfc_caps marvell_pxa3xx_nfc_caps = {
303593db446aSBoris Brezillon 	.max_cs_nb = 2,
303693db446aSBoris Brezillon 	.max_rb_nb = 1,
303793db446aSBoris Brezillon 	.use_dma = true,
303893db446aSBoris Brezillon };
303993db446aSBoris Brezillon 
304093db446aSBoris Brezillon static const struct marvell_nfc_caps marvell_armada_8k_nfc_legacy_caps = {
304193db446aSBoris Brezillon 	.max_cs_nb = 4,
304293db446aSBoris Brezillon 	.max_rb_nb = 2,
304393db446aSBoris Brezillon 	.need_system_controller = true,
304493db446aSBoris Brezillon 	.legacy_of_bindings = true,
304593db446aSBoris Brezillon 	.is_nfcv2 = true,
304693db446aSBoris Brezillon };
304793db446aSBoris Brezillon 
304893db446aSBoris Brezillon static const struct marvell_nfc_caps marvell_armada370_nfc_legacy_caps = {
304993db446aSBoris Brezillon 	.max_cs_nb = 4,
305093db446aSBoris Brezillon 	.max_rb_nb = 2,
305193db446aSBoris Brezillon 	.legacy_of_bindings = true,
305293db446aSBoris Brezillon 	.is_nfcv2 = true,
305393db446aSBoris Brezillon };
305493db446aSBoris Brezillon 
305593db446aSBoris Brezillon static const struct marvell_nfc_caps marvell_pxa3xx_nfc_legacy_caps = {
305693db446aSBoris Brezillon 	.max_cs_nb = 2,
305793db446aSBoris Brezillon 	.max_rb_nb = 1,
305893db446aSBoris Brezillon 	.legacy_of_bindings = true,
305993db446aSBoris Brezillon 	.use_dma = true,
306093db446aSBoris Brezillon };
306193db446aSBoris Brezillon 
306293db446aSBoris Brezillon static const struct platform_device_id marvell_nfc_platform_ids[] = {
306393db446aSBoris Brezillon 	{
306493db446aSBoris Brezillon 		.name = "pxa3xx-nand",
306593db446aSBoris Brezillon 		.driver_data = (kernel_ulong_t)&marvell_pxa3xx_nfc_legacy_caps,
306693db446aSBoris Brezillon 	},
306793db446aSBoris Brezillon 	{ /* sentinel */ },
306893db446aSBoris Brezillon };
306993db446aSBoris Brezillon MODULE_DEVICE_TABLE(platform, marvell_nfc_platform_ids);
307093db446aSBoris Brezillon 
307193db446aSBoris Brezillon static const struct of_device_id marvell_nfc_of_ids[] = {
307293db446aSBoris Brezillon 	{
307393db446aSBoris Brezillon 		.compatible = "marvell,armada-8k-nand-controller",
307493db446aSBoris Brezillon 		.data = &marvell_armada_8k_nfc_caps,
307593db446aSBoris Brezillon 	},
307693db446aSBoris Brezillon 	{
307793db446aSBoris Brezillon 		.compatible = "marvell,armada370-nand-controller",
307893db446aSBoris Brezillon 		.data = &marvell_armada370_nfc_caps,
307993db446aSBoris Brezillon 	},
308093db446aSBoris Brezillon 	{
308193db446aSBoris Brezillon 		.compatible = "marvell,pxa3xx-nand-controller",
308293db446aSBoris Brezillon 		.data = &marvell_pxa3xx_nfc_caps,
308393db446aSBoris Brezillon 	},
308493db446aSBoris Brezillon 	/* Support for old/deprecated bindings: */
308593db446aSBoris Brezillon 	{
308693db446aSBoris Brezillon 		.compatible = "marvell,armada-8k-nand",
308793db446aSBoris Brezillon 		.data = &marvell_armada_8k_nfc_legacy_caps,
308893db446aSBoris Brezillon 	},
308993db446aSBoris Brezillon 	{
309093db446aSBoris Brezillon 		.compatible = "marvell,armada370-nand",
309193db446aSBoris Brezillon 		.data = &marvell_armada370_nfc_legacy_caps,
309293db446aSBoris Brezillon 	},
309393db446aSBoris Brezillon 	{
309493db446aSBoris Brezillon 		.compatible = "marvell,pxa3xx-nand",
309593db446aSBoris Brezillon 		.data = &marvell_pxa3xx_nfc_legacy_caps,
309693db446aSBoris Brezillon 	},
309793db446aSBoris Brezillon 	{ /* sentinel */ },
309893db446aSBoris Brezillon };
309993db446aSBoris Brezillon MODULE_DEVICE_TABLE(of, marvell_nfc_of_ids);
310093db446aSBoris Brezillon 
310193db446aSBoris Brezillon static struct platform_driver marvell_nfc_driver = {
310293db446aSBoris Brezillon 	.driver	= {
310393db446aSBoris Brezillon 		.name		= "marvell-nfc",
310493db446aSBoris Brezillon 		.of_match_table = marvell_nfc_of_ids,
3105bd9c3f9bSDaniel Mack 		.pm		= &marvell_nfc_pm_ops,
310693db446aSBoris Brezillon 	},
310793db446aSBoris Brezillon 	.id_table = marvell_nfc_platform_ids,
310893db446aSBoris Brezillon 	.probe = marvell_nfc_probe,
310993db446aSBoris Brezillon 	.remove	= marvell_nfc_remove,
311093db446aSBoris Brezillon };
311193db446aSBoris Brezillon module_platform_driver(marvell_nfc_driver);
311293db446aSBoris Brezillon 
311393db446aSBoris Brezillon MODULE_LICENSE("GPL");
311493db446aSBoris Brezillon MODULE_DESCRIPTION("Marvell NAND controller driver");
3115