blob: 8aa5f734213136605544306566248e262d39441e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04002/*
Scott Wood454a4262009-09-02 16:45:31 -05003 * Copyright 2004-2007 Freescale Semiconductor, Inc.
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04004 * Copyright 2008 Sascha Hauer, kernel@pengutronix.de
5 * Copyright 2009 Ilya Yanok, <yanok@emcraft.com>
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04006 */
7
8#include <common.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Ilya Yanokf9e2bee2009-08-11 02:32:54 +040010#include <nand.h>
Simon Glassdbd79542020-05-10 11:40:11 -060011#include <linux/delay.h>
Ilya Yanokf9e2bee2009-08-11 02:32:54 +040012#include <linux/err.h>
Tom Rini3bde7e22021-09-22 14:50:35 -040013#include <linux/mtd/rawnand.h>
Ilya Yanokf9e2bee2009-08-11 02:32:54 +040014#include <asm/io.h>
Tom Rini31df83b2022-11-19 18:45:27 -050015#if defined(CONFIG_MX51) || defined(CONFIG_MX53)
Ilya Yanokf9e2bee2009-08-11 02:32:54 +040016#include <asm/arch/imx-regs.h>
17#endif
Benoît Thébaudeauefb7c002013-04-11 09:35:51 +000018#include "mxc_nand.h"
Ilya Yanokf9e2bee2009-08-11 02:32:54 +040019
20#define DRIVER_NAME "mxc_nand"
21
Ilya Yanokf9e2bee2009-08-11 02:32:54 +040022struct mxc_nand_host {
Benoît Thébaudeau3f775192012-08-13 22:48:12 +020023 struct nand_chip *nand;
Ilya Yanokf9e2bee2009-08-11 02:32:54 +040024
Benoît Thébaudeauefb7c002013-04-11 09:35:51 +000025 struct mxc_nand_regs __iomem *regs;
Benoît Thébaudeau8f265962013-04-11 09:35:37 +000026#ifdef MXC_NFC_V3_2
Benoît Thébaudeauefb7c002013-04-11 09:35:51 +000027 struct mxc_nand_ip_regs __iomem *ip_regs;
Benoît Thébaudeau8f265962013-04-11 09:35:37 +000028#endif
Benoît Thébaudeau3f775192012-08-13 22:48:12 +020029 int spare_only;
30 int status_request;
31 int pagesize_2k;
32 int clk_act;
33 uint16_t col_addr;
34 unsigned int page_addr;
Ilya Yanokf9e2bee2009-08-11 02:32:54 +040035};
36
37static struct mxc_nand_host mxc_host;
38static struct mxc_nand_host *host = &mxc_host;
39
40/* Define delays in microsec for NAND device operations */
41#define TROP_US_DELAY 2000
42/* Macros to get byte and bit positions of ECC */
43#define COLPOS(x) ((x) >> 3)
44#define BITPOS(x) ((x) & 0xf)
45
46/* Define single bit Error positions in Main & Spare area */
47#define MAIN_SINGLEBIT_ERROR 0x4
48#define SPARE_SINGLEBIT_ERROR 0x1
49
50/* OOB placement block for use with hardware ecc generation */
John Rigby3c285c72010-01-26 19:24:18 -070051#if defined(MXC_NFC_V1)
Tom Rinib4213492022-11-12 17:36:51 -050052#ifndef CFG_SYS_NAND_LARGEPAGE
Ilya Yanokf9e2bee2009-08-11 02:32:54 +040053static struct nand_ecclayout nand_hw_eccoob = {
54 .eccbytes = 5,
55 .eccpos = {6, 7, 8, 9, 10},
John Rigby3c285c72010-01-26 19:24:18 -070056 .oobfree = { {0, 5}, {11, 5}, }
Ilya Yanokf9e2bee2009-08-11 02:32:54 +040057};
58#else
John Rigby3c285c72010-01-26 19:24:18 -070059static struct nand_ecclayout nand_hw_eccoob2k = {
60 .eccbytes = 20,
61 .eccpos = {
62 6, 7, 8, 9, 10,
63 22, 23, 24, 25, 26,
64 38, 39, 40, 41, 42,
65 54, 55, 56, 57, 58,
66 },
67 .oobfree = { {2, 4}, {11, 11}, {27, 11}, {43, 11}, {59, 5} },
Ilya Yanokf9e2bee2009-08-11 02:32:54 +040068};
69#endif
Benoît Thébaudeau8f265962013-04-11 09:35:37 +000070#elif defined(MXC_NFC_V2_1) || defined(MXC_NFC_V3_2)
Tom Rinib4213492022-11-12 17:36:51 -050071#ifndef CFG_SYS_NAND_LARGEPAGE
John Rigby3c285c72010-01-26 19:24:18 -070072static struct nand_ecclayout nand_hw_eccoob = {
73 .eccbytes = 9,
74 .eccpos = {7, 8, 9, 10, 11, 12, 13, 14, 15},
75 .oobfree = { {2, 5} }
76};
77#else
78static struct nand_ecclayout nand_hw_eccoob2k = {
79 .eccbytes = 36,
80 .eccpos = {
81 7, 8, 9, 10, 11, 12, 13, 14, 15,
82 23, 24, 25, 26, 27, 28, 29, 30, 31,
83 39, 40, 41, 42, 43, 44, 45, 46, 47,
84 55, 56, 57, 58, 59, 60, 61, 62, 63,
85 },
86 .oobfree = { {2, 5}, {16, 7}, {32, 7}, {48, 7} },
Magnus Liljaab5b3b62010-01-17 17:46:10 +010087};
John Rigby3c285c72010-01-26 19:24:18 -070088#endif
89#endif
Magnus Liljaab5b3b62010-01-17 17:46:10 +010090
Magnus Lilja6e0dbd82009-11-11 20:18:43 +010091static int is_16bit_nand(void)
92{
Fabio Estevam417052b2013-04-11 09:35:35 +000093#if defined(CONFIG_SYS_NAND_BUSWIDTH_16BIT)
94 return 1;
Magnus Lilja6e0dbd82009-11-11 20:18:43 +010095#else
Magnus Lilja6e0dbd82009-11-11 20:18:43 +010096 return 0;
Magnus Lilja6e0dbd82009-11-11 20:18:43 +010097#endif
Fabio Estevam417052b2013-04-11 09:35:35 +000098}
Magnus Lilja6e0dbd82009-11-11 20:18:43 +010099
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400100static uint32_t *mxc_nand_memcpy32(uint32_t *dest, uint32_t *source, size_t size)
101{
102 uint32_t *d = dest;
103
104 size >>= 2;
105 while (size--)
106 __raw_writel(__raw_readl(source++), d++);
107 return dest;
108}
109
110/*
111 * This function polls the NANDFC to wait for the basic operation to
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000112 * complete by checking the INT bit.
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400113 */
114static void wait_op_done(struct mxc_nand_host *host, int max_retries,
115 uint16_t param)
116{
117 uint32_t tmp;
118
119 while (max_retries-- > 0) {
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000120#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000121 tmp = readnfc(&host->regs->config2);
122 if (tmp & NFC_V1_V2_CONFIG2_INT) {
123 tmp &= ~NFC_V1_V2_CONFIG2_INT;
124 writenfc(tmp, &host->regs->config2);
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000125#elif defined(MXC_NFC_V3_2)
126 tmp = readnfc(&host->ip_regs->ipc);
127 if (tmp & NFC_V3_IPC_INT) {
128 tmp &= ~NFC_V3_IPC_INT;
129 writenfc(tmp, &host->ip_regs->ipc);
130#endif
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400131 break;
132 }
133 udelay(1);
134 }
135 if (max_retries < 0) {
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900136 pr_debug("%s(%d): INT not set\n",
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400137 __func__, param);
138 }
139}
140
141/*
142 * This function issues the specified command to the NAND device and
143 * waits for completion.
144 */
145static void send_cmd(struct mxc_nand_host *host, uint16_t cmd)
146{
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900147 pr_debug("send_cmd(host, 0x%x)\n", cmd);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400148
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000149 writenfc(cmd, &host->regs->flash_cmd);
150 writenfc(NFC_CMD, &host->regs->operation);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400151
152 /* Wait for operation to complete */
153 wait_op_done(host, TROP_US_DELAY, cmd);
154}
155
156/*
157 * This function sends an address (or partial address) to the
158 * NAND device. The address is used to select the source/destination for
159 * a NAND command.
160 */
161static void send_addr(struct mxc_nand_host *host, uint16_t addr)
162{
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900163 pr_debug("send_addr(host, 0x%x)\n", addr);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400164
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000165 writenfc(addr, &host->regs->flash_addr);
166 writenfc(NFC_ADDR, &host->regs->operation);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400167
168 /* Wait for operation to complete */
169 wait_op_done(host, TROP_US_DELAY, addr);
170}
171
172/*
Helmut Raigerc8f4a4c2011-07-06 09:40:28 +0200173 * This function requests the NANDFC to initiate the transfer
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400174 * of data currently in the NANDFC RAM buffer to the NAND device.
175 */
176static void send_prog_page(struct mxc_nand_host *host, uint8_t buf_id,
177 int spare_only)
178{
John Rigby3c285c72010-01-26 19:24:18 -0700179 if (spare_only)
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900180 pr_debug("send_prog_page (%d)\n", spare_only);
John Rigby3c285c72010-01-26 19:24:18 -0700181
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000182 if (is_mxc_nfc_21() || is_mxc_nfc_32()) {
John Rigby3c285c72010-01-26 19:24:18 -0700183 int i;
184 /*
185 * The controller copies the 64 bytes of spare data from
186 * the first 16 bytes of each of the 4 64 byte spare buffers.
187 * Copy the contiguous data starting in spare_area[0] to
188 * the four spare area buffers.
189 */
190 for (i = 1; i < 4; i++) {
191 void __iomem *src = &host->regs->spare_area[0][i * 16];
192 void __iomem *dst = &host->regs->spare_area[i][0];
193
194 mxc_nand_memcpy32(dst, src, 16);
195 }
196 }
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400197
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000198#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000199 writenfc(buf_id, &host->regs->buf_addr);
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000200#elif defined(MXC_NFC_V3_2)
201 uint32_t tmp = readnfc(&host->regs->config1);
202 tmp &= ~NFC_V3_CONFIG1_RBA_MASK;
203 tmp |= NFC_V3_CONFIG1_RBA(buf_id);
204 writenfc(tmp, &host->regs->config1);
205#endif
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400206
207 /* Configure spare or page+spare access */
208 if (!host->pagesize_2k) {
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000209 uint32_t config1 = readnfc(&host->regs->config1);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400210 if (spare_only)
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000211 config1 |= NFC_CONFIG1_SP_EN;
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400212 else
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000213 config1 &= ~NFC_CONFIG1_SP_EN;
214 writenfc(config1, &host->regs->config1);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400215 }
216
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000217 writenfc(NFC_INPUT, &host->regs->operation);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400218
219 /* Wait for operation to complete */
220 wait_op_done(host, TROP_US_DELAY, spare_only);
221}
222
223/*
Helmut Raigerc8f4a4c2011-07-06 09:40:28 +0200224 * Requests NANDFC to initiate the transfer of data from the
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400225 * NAND device into in the NANDFC ram buffer.
226 */
227static void send_read_page(struct mxc_nand_host *host, uint8_t buf_id,
228 int spare_only)
229{
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900230 pr_debug("send_read_page (%d)\n", spare_only);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400231
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000232#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000233 writenfc(buf_id, &host->regs->buf_addr);
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000234#elif defined(MXC_NFC_V3_2)
235 uint32_t tmp = readnfc(&host->regs->config1);
236 tmp &= ~NFC_V3_CONFIG1_RBA_MASK;
237 tmp |= NFC_V3_CONFIG1_RBA(buf_id);
238 writenfc(tmp, &host->regs->config1);
239#endif
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400240
241 /* Configure spare or page+spare access */
242 if (!host->pagesize_2k) {
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000243 uint32_t config1 = readnfc(&host->regs->config1);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400244 if (spare_only)
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000245 config1 |= NFC_CONFIG1_SP_EN;
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400246 else
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000247 config1 &= ~NFC_CONFIG1_SP_EN;
248 writenfc(config1, &host->regs->config1);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400249 }
250
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000251 writenfc(NFC_OUTPUT, &host->regs->operation);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400252
253 /* Wait for operation to complete */
254 wait_op_done(host, TROP_US_DELAY, spare_only);
John Rigby3c285c72010-01-26 19:24:18 -0700255
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000256 if (is_mxc_nfc_21() || is_mxc_nfc_32()) {
John Rigby3c285c72010-01-26 19:24:18 -0700257 int i;
258
259 /*
260 * The controller copies the 64 bytes of spare data to
261 * the first 16 bytes of each of the 4 spare buffers.
262 * Make the data contiguous starting in spare_area[0].
263 */
264 for (i = 1; i < 4; i++) {
265 void __iomem *src = &host->regs->spare_area[i][0];
266 void __iomem *dst = &host->regs->spare_area[0][i * 16];
267
268 mxc_nand_memcpy32(dst, src, 16);
269 }
270 }
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400271}
272
273/* Request the NANDFC to perform a read of the NAND device ID. */
274static void send_read_id(struct mxc_nand_host *host)
275{
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000276 uint32_t tmp;
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400277
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000278#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400279 /* NANDFC buffer 0 is used for device ID output */
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000280 writenfc(0x0, &host->regs->buf_addr);
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000281#elif defined(MXC_NFC_V3_2)
282 tmp = readnfc(&host->regs->config1);
283 tmp &= ~NFC_V3_CONFIG1_RBA_MASK;
284 writenfc(tmp, &host->regs->config1);
285#endif
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400286
287 /* Read ID into main buffer */
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000288 tmp = readnfc(&host->regs->config1);
289 tmp &= ~NFC_CONFIG1_SP_EN;
290 writenfc(tmp, &host->regs->config1);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400291
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000292 writenfc(NFC_ID, &host->regs->operation);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400293
294 /* Wait for operation to complete */
295 wait_op_done(host, TROP_US_DELAY, 0);
296}
297
298/*
299 * This function requests the NANDFC to perform a read of the
300 * NAND device status and returns the current status.
301 */
302static uint16_t get_dev_status(struct mxc_nand_host *host)
303{
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000304#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
John Rigby3c285c72010-01-26 19:24:18 -0700305 void __iomem *main_buf = host->regs->main_area[1];
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400306 uint32_t store;
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000307#endif
308 uint32_t ret, tmp;
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400309 /* Issue status request to NAND device */
310
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000311#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400312 /* store the main area1 first word, later do recovery */
313 store = readl(main_buf);
314 /* NANDFC buffer 1 is used for device status */
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000315 writenfc(1, &host->regs->buf_addr);
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000316#endif
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400317
318 /* Read status into main buffer */
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000319 tmp = readnfc(&host->regs->config1);
320 tmp &= ~NFC_CONFIG1_SP_EN;
321 writenfc(tmp, &host->regs->config1);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400322
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000323 writenfc(NFC_STATUS, &host->regs->operation);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400324
325 /* Wait for operation to complete */
326 wait_op_done(host, TROP_US_DELAY, 0);
327
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000328#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400329 /*
330 * Status is placed in first word of main buffer
331 * get status, then recovery area 1 data
332 */
333 ret = readw(main_buf);
334 writel(store, main_buf);
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000335#elif defined(MXC_NFC_V3_2)
336 ret = readnfc(&host->regs->config1) >> 16;
337#endif
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400338
339 return ret;
340}
341
342/* This function is used by upper layer to checks if device is ready */
343static int mxc_nand_dev_ready(struct mtd_info *mtd)
344{
345 /*
346 * NFC handles R/B internally. Therefore, this function
347 * always returns status as ready.
348 */
349 return 1;
350}
351
John Rigby3c285c72010-01-26 19:24:18 -0700352static void _mxc_nand_enable_hwecc(struct mtd_info *mtd, int on)
353{
Scott Wood17fed142016-05-30 13:57:56 -0500354 struct nand_chip *nand_chip = mtd_to_nand(mtd);
355 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000356#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000357 uint16_t tmp = readnfc(&host->regs->config1);
John Rigby3c285c72010-01-26 19:24:18 -0700358
359 if (on)
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000360 tmp |= NFC_V1_V2_CONFIG1_ECC_EN;
John Rigby3c285c72010-01-26 19:24:18 -0700361 else
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000362 tmp &= ~NFC_V1_V2_CONFIG1_ECC_EN;
363 writenfc(tmp, &host->regs->config1);
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000364#elif defined(MXC_NFC_V3_2)
365 uint32_t tmp = readnfc(&host->ip_regs->config2);
366
367 if (on)
368 tmp |= NFC_V3_CONFIG2_ECC_EN;
369 else
370 tmp &= ~NFC_V3_CONFIG2_ECC_EN;
371 writenfc(tmp, &host->ip_regs->config2);
372#endif
John Rigby3c285c72010-01-26 19:24:18 -0700373}
374
Benoît Thébaudeau9166d5f2012-08-13 22:50:07 +0200375#ifdef CONFIG_MXC_NAND_HWECC
376static void mxc_nand_enable_hwecc(struct mtd_info *mtd, int mode)
377{
378 /*
379 * If HW ECC is enabled, we turn it on during init. There is
380 * no need to enable again here.
381 */
382}
383
Benoît Thébaudeau8f265962013-04-11 09:35:37 +0000384#if defined(MXC_NFC_V2_1) || defined(MXC_NFC_V3_2)
John Rigby3c285c72010-01-26 19:24:18 -0700385static int mxc_nand_read_oob_syndrome(struct mtd_info *mtd,
386 struct nand_chip *chip,
Sergey Lapin3a38a552013-01-14 03:46:50 +0000387 int page)
John Rigby3c285c72010-01-26 19:24:18 -0700388{
Scott Wood17fed142016-05-30 13:57:56 -0500389 struct mxc_nand_host *host = nand_get_controller_data(chip);
John Rigby3c285c72010-01-26 19:24:18 -0700390 uint8_t *buf = chip->oob_poi;
391 int length = mtd->oobsize;
392 int eccpitch = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
393 uint8_t *bufpoi = buf;
394 int i, toread;
395
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900396 pr_debug("%s: Reading OOB area of page %u to oob %p\n",
Benoît Thébaudeau9889e3f2013-04-11 09:35:40 +0000397 __func__, page, buf);
John Rigby3c285c72010-01-26 19:24:18 -0700398
399 chip->cmdfunc(mtd, NAND_CMD_READOOB, mtd->writesize, page);
400 for (i = 0; i < chip->ecc.steps; i++) {
401 toread = min_t(int, length, chip->ecc.prepad);
402 if (toread) {
403 chip->read_buf(mtd, bufpoi, toread);
404 bufpoi += toread;
405 length -= toread;
406 }
407 bufpoi += chip->ecc.bytes;
408 host->col_addr += chip->ecc.bytes;
409 length -= chip->ecc.bytes;
410
411 toread = min_t(int, length, chip->ecc.postpad);
412 if (toread) {
413 chip->read_buf(mtd, bufpoi, toread);
414 bufpoi += toread;
415 length -= toread;
416 }
417 }
418 if (length > 0)
419 chip->read_buf(mtd, bufpoi, length);
420
421 _mxc_nand_enable_hwecc(mtd, 0);
422 chip->cmdfunc(mtd, NAND_CMD_READOOB,
423 mtd->writesize + chip->ecc.prepad, page);
424 bufpoi = buf + chip->ecc.prepad;
425 length = mtd->oobsize - chip->ecc.prepad;
426 for (i = 0; i < chip->ecc.steps; i++) {
427 toread = min_t(int, length, chip->ecc.bytes);
428 chip->read_buf(mtd, bufpoi, toread);
429 bufpoi += eccpitch;
430 length -= eccpitch;
431 host->col_addr += chip->ecc.postpad + chip->ecc.prepad;
432 }
433 _mxc_nand_enable_hwecc(mtd, 1);
434 return 1;
435}
436
437static int mxc_nand_read_page_raw_syndrome(struct mtd_info *mtd,
438 struct nand_chip *chip,
439 uint8_t *buf,
Sergey Lapin3a38a552013-01-14 03:46:50 +0000440 int oob_required,
John Rigby3c285c72010-01-26 19:24:18 -0700441 int page)
442{
Scott Wood17fed142016-05-30 13:57:56 -0500443 struct mxc_nand_host *host = nand_get_controller_data(chip);
John Rigby3c285c72010-01-26 19:24:18 -0700444 int eccsize = chip->ecc.size;
445 int eccbytes = chip->ecc.bytes;
446 int eccpitch = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
447 uint8_t *oob = chip->oob_poi;
448 int steps, size;
449 int n;
450
451 _mxc_nand_enable_hwecc(mtd, 0);
Benoît Thébaudeau4b0dbba2013-04-11 09:35:41 +0000452 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
John Rigby3c285c72010-01-26 19:24:18 -0700453
454 for (n = 0, steps = chip->ecc.steps; steps > 0; n++, steps--) {
455 host->col_addr = n * eccsize;
456 chip->read_buf(mtd, buf, eccsize);
457 buf += eccsize;
458
459 host->col_addr = mtd->writesize + n * eccpitch;
460 if (chip->ecc.prepad) {
461 chip->read_buf(mtd, oob, chip->ecc.prepad);
462 oob += chip->ecc.prepad;
463 }
464
465 chip->read_buf(mtd, oob, eccbytes);
466 oob += eccbytes;
467
468 if (chip->ecc.postpad) {
469 chip->read_buf(mtd, oob, chip->ecc.postpad);
470 oob += chip->ecc.postpad;
471 }
472 }
473
474 size = mtd->oobsize - (oob - chip->oob_poi);
475 if (size)
476 chip->read_buf(mtd, oob, size);
Benoît Thébaudeauc1578272012-08-13 22:50:19 +0200477 _mxc_nand_enable_hwecc(mtd, 1);
John Rigby3c285c72010-01-26 19:24:18 -0700478
479 return 0;
480}
481
482static int mxc_nand_read_page_syndrome(struct mtd_info *mtd,
483 struct nand_chip *chip,
484 uint8_t *buf,
Sergey Lapin3a38a552013-01-14 03:46:50 +0000485 int oob_required,
John Rigby3c285c72010-01-26 19:24:18 -0700486 int page)
487{
Scott Wood17fed142016-05-30 13:57:56 -0500488 struct mxc_nand_host *host = nand_get_controller_data(chip);
John Rigby3c285c72010-01-26 19:24:18 -0700489 int n, eccsize = chip->ecc.size;
490 int eccbytes = chip->ecc.bytes;
491 int eccpitch = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
492 int eccsteps = chip->ecc.steps;
493 uint8_t *p = buf;
494 uint8_t *oob = chip->oob_poi;
495
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900496 pr_debug("Reading page %u to buf %p oob %p\n",
497 page, buf, oob);
John Rigby3c285c72010-01-26 19:24:18 -0700498
Helmut Raigerc8f4a4c2011-07-06 09:40:28 +0200499 /* first read the data area and the available portion of OOB */
John Rigby3c285c72010-01-26 19:24:18 -0700500 for (n = 0; eccsteps; n++, eccsteps--, p += eccsize) {
501 int stat;
502
503 host->col_addr = n * eccsize;
504
505 chip->read_buf(mtd, p, eccsize);
506
507 host->col_addr = mtd->writesize + n * eccpitch;
508
509 if (chip->ecc.prepad) {
510 chip->read_buf(mtd, oob, chip->ecc.prepad);
511 oob += chip->ecc.prepad;
512 }
513
514 stat = chip->ecc.correct(mtd, p, oob, NULL);
515
516 if (stat < 0)
517 mtd->ecc_stats.failed++;
518 else
519 mtd->ecc_stats.corrected += stat;
520 oob += eccbytes;
521
522 if (chip->ecc.postpad) {
523 chip->read_buf(mtd, oob, chip->ecc.postpad);
524 oob += chip->ecc.postpad;
525 }
526 }
527
528 /* Calculate remaining oob bytes */
529 n = mtd->oobsize - (oob - chip->oob_poi);
530 if (n)
531 chip->read_buf(mtd, oob, n);
532
533 /* Then switch ECC off and read the OOB area to get the ECC code */
534 _mxc_nand_enable_hwecc(mtd, 0);
Benoît Thébaudeau4b0dbba2013-04-11 09:35:41 +0000535 chip->cmdfunc(mtd, NAND_CMD_READOOB, mtd->writesize, page);
John Rigby3c285c72010-01-26 19:24:18 -0700536 eccsteps = chip->ecc.steps;
537 oob = chip->oob_poi + chip->ecc.prepad;
538 for (n = 0; eccsteps; n++, eccsteps--, p += eccsize) {
539 host->col_addr = mtd->writesize +
540 n * eccpitch +
541 chip->ecc.prepad;
542 chip->read_buf(mtd, oob, eccbytes);
543 oob += eccbytes + chip->ecc.postpad;
544 }
545 _mxc_nand_enable_hwecc(mtd, 1);
546 return 0;
547}
548
549static int mxc_nand_write_oob_syndrome(struct mtd_info *mtd,
550 struct nand_chip *chip, int page)
551{
Scott Wood17fed142016-05-30 13:57:56 -0500552 struct mxc_nand_host *host = nand_get_controller_data(chip);
John Rigby3c285c72010-01-26 19:24:18 -0700553 int eccpitch = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
554 int length = mtd->oobsize;
555 int i, len, status, steps = chip->ecc.steps;
556 const uint8_t *bufpoi = chip->oob_poi;
557
558 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
559 for (i = 0; i < steps; i++) {
560 len = min_t(int, length, eccpitch);
561
562 chip->write_buf(mtd, bufpoi, len);
563 bufpoi += len;
564 length -= len;
565 host->col_addr += chip->ecc.prepad + chip->ecc.postpad;
566 }
567 if (length > 0)
568 chip->write_buf(mtd, bufpoi, length);
569
570 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
571 status = chip->waitfunc(mtd, chip);
572 return status & NAND_STATUS_FAIL ? -EIO : 0;
573}
574
Sergey Lapin3a38a552013-01-14 03:46:50 +0000575static int mxc_nand_write_page_raw_syndrome(struct mtd_info *mtd,
John Rigby3c285c72010-01-26 19:24:18 -0700576 struct nand_chip *chip,
Sergey Lapin3a38a552013-01-14 03:46:50 +0000577 const uint8_t *buf,
Scott Wood46e13102016-05-30 13:57:57 -0500578 int oob_required, int page)
John Rigby3c285c72010-01-26 19:24:18 -0700579{
Scott Wood17fed142016-05-30 13:57:56 -0500580 struct mxc_nand_host *host = nand_get_controller_data(chip);
John Rigby3c285c72010-01-26 19:24:18 -0700581 int eccsize = chip->ecc.size;
582 int eccbytes = chip->ecc.bytes;
583 int eccpitch = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
584 uint8_t *oob = chip->oob_poi;
585 int steps, size;
586 int n;
587
588 for (n = 0, steps = chip->ecc.steps; steps > 0; n++, steps--) {
589 host->col_addr = n * eccsize;
590 chip->write_buf(mtd, buf, eccsize);
591 buf += eccsize;
592
593 host->col_addr = mtd->writesize + n * eccpitch;
594
595 if (chip->ecc.prepad) {
596 chip->write_buf(mtd, oob, chip->ecc.prepad);
597 oob += chip->ecc.prepad;
598 }
599
600 host->col_addr += eccbytes;
601 oob += eccbytes;
602
603 if (chip->ecc.postpad) {
604 chip->write_buf(mtd, oob, chip->ecc.postpad);
605 oob += chip->ecc.postpad;
606 }
607 }
608
609 size = mtd->oobsize - (oob - chip->oob_poi);
610 if (size)
611 chip->write_buf(mtd, oob, size);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000612 return 0;
John Rigby3c285c72010-01-26 19:24:18 -0700613}
614
Sergey Lapin3a38a552013-01-14 03:46:50 +0000615static int mxc_nand_write_page_syndrome(struct mtd_info *mtd,
John Rigby3c285c72010-01-26 19:24:18 -0700616 struct nand_chip *chip,
Sergey Lapin3a38a552013-01-14 03:46:50 +0000617 const uint8_t *buf,
Scott Wood46e13102016-05-30 13:57:57 -0500618 int oob_required, int page)
John Rigby3c285c72010-01-26 19:24:18 -0700619{
Scott Wood17fed142016-05-30 13:57:56 -0500620 struct mxc_nand_host *host = nand_get_controller_data(chip);
John Rigby3c285c72010-01-26 19:24:18 -0700621 int i, n, eccsize = chip->ecc.size;
622 int eccbytes = chip->ecc.bytes;
623 int eccpitch = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
624 int eccsteps = chip->ecc.steps;
625 const uint8_t *p = buf;
626 uint8_t *oob = chip->oob_poi;
627
628 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
629
630 for (i = n = 0;
631 eccsteps;
632 n++, eccsteps--, i += eccbytes, p += eccsize) {
633 host->col_addr = n * eccsize;
634
635 chip->write_buf(mtd, p, eccsize);
636
637 host->col_addr = mtd->writesize + n * eccpitch;
638
639 if (chip->ecc.prepad) {
640 chip->write_buf(mtd, oob, chip->ecc.prepad);
641 oob += chip->ecc.prepad;
642 }
643
644 chip->write_buf(mtd, oob, eccbytes);
645 oob += eccbytes;
646
647 if (chip->ecc.postpad) {
648 chip->write_buf(mtd, oob, chip->ecc.postpad);
649 oob += chip->ecc.postpad;
650 }
651 }
652
653 /* Calculate remaining oob bytes */
654 i = mtd->oobsize - (oob - chip->oob_poi);
655 if (i)
656 chip->write_buf(mtd, oob, i);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000657 return 0;
John Rigby3c285c72010-01-26 19:24:18 -0700658}
659
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400660static int mxc_nand_correct_data(struct mtd_info *mtd, u_char *dat,
661 u_char *read_ecc, u_char *calc_ecc)
662{
Scott Wood17fed142016-05-30 13:57:56 -0500663 struct nand_chip *nand_chip = mtd_to_nand(mtd);
664 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Benoît Thébaudeaud29aeba2012-08-13 22:49:42 +0200665 uint32_t ecc_status = readl(&host->regs->ecc_status_result);
John Rigby3c285c72010-01-26 19:24:18 -0700666 int subpages = mtd->writesize / nand_chip->subpagesize;
667 int pg2blk_shift = nand_chip->phys_erase_shift -
668 nand_chip->page_shift;
669
670 do {
671 if ((ecc_status & 0xf) > 4) {
672 static int last_bad = -1;
673
674 if (last_bad != host->page_addr >> pg2blk_shift) {
675 last_bad = host->page_addr >> pg2blk_shift;
676 printk(KERN_DEBUG
677 "MXC_NAND: HWECC uncorrectable ECC error"
678 " in block %u page %u subpage %d\n",
679 last_bad, host->page_addr,
680 mtd->writesize / nand_chip->subpagesize
681 - subpages);
682 }
Scott Wood52ab7ce2016-05-30 13:57:58 -0500683 return -EBADMSG;
John Rigby3c285c72010-01-26 19:24:18 -0700684 }
685 ecc_status >>= 4;
686 subpages--;
687 } while (subpages > 0);
688
689 return 0;
690}
691#else
692#define mxc_nand_read_page_syndrome NULL
693#define mxc_nand_read_page_raw_syndrome NULL
694#define mxc_nand_read_oob_syndrome NULL
695#define mxc_nand_write_page_syndrome NULL
696#define mxc_nand_write_page_raw_syndrome NULL
697#define mxc_nand_write_oob_syndrome NULL
John Rigby3c285c72010-01-26 19:24:18 -0700698
699static int mxc_nand_correct_data(struct mtd_info *mtd, u_char *dat,
700 u_char *read_ecc, u_char *calc_ecc)
701{
Scott Wood17fed142016-05-30 13:57:56 -0500702 struct nand_chip *nand_chip = mtd_to_nand(mtd);
703 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400704
705 /*
706 * 1-Bit errors are automatically corrected in HW. No need for
707 * additional correction. 2-Bit errors cannot be corrected by
708 * HW ECC, so we need to return failure
709 */
Benoît Thébaudeau555bba12013-04-11 09:35:36 +0000710 uint16_t ecc_status = readnfc(&host->regs->ecc_status_result);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400711
712 if (((ecc_status & 0x3) == 2) || ((ecc_status >> 2) == 2)) {
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900713 pr_debug("MXC_NAND: HWECC uncorrectable 2-bit ECC error\n");
Scott Wood52ab7ce2016-05-30 13:57:58 -0500714 return -EBADMSG;
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400715 }
716
717 return 0;
718}
John Rigby3c285c72010-01-26 19:24:18 -0700719#endif
720
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400721static int mxc_nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
722 u_char *ecc_code)
723{
724 return 0;
725}
726#endif
727
728static u_char mxc_nand_read_byte(struct mtd_info *mtd)
729{
Scott Wood17fed142016-05-30 13:57:56 -0500730 struct nand_chip *nand_chip = mtd_to_nand(mtd);
731 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400732 uint8_t ret = 0;
733 uint16_t col;
734 uint16_t __iomem *main_buf =
John Rigby3c285c72010-01-26 19:24:18 -0700735 (uint16_t __iomem *)host->regs->main_area[0];
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400736 uint16_t __iomem *spare_buf =
John Rigby3c285c72010-01-26 19:24:18 -0700737 (uint16_t __iomem *)host->regs->spare_area[0];
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400738 union {
739 uint16_t word;
740 uint8_t bytes[2];
741 } nfc_word;
742
743 /* Check for status request */
744 if (host->status_request)
745 return get_dev_status(host) & 0xFF;
746
747 /* Get column for 16-bit access */
748 col = host->col_addr >> 1;
749
750 /* If we are accessing the spare region */
751 if (host->spare_only)
752 nfc_word.word = readw(&spare_buf[col]);
753 else
754 nfc_word.word = readw(&main_buf[col]);
755
756 /* Pick upper/lower byte of word from RAM buffer */
757 ret = nfc_word.bytes[host->col_addr & 0x1];
758
759 /* Update saved column address */
760 if (nand_chip->options & NAND_BUSWIDTH_16)
761 host->col_addr += 2;
762 else
763 host->col_addr++;
764
765 return ret;
766}
767
768static uint16_t mxc_nand_read_word(struct mtd_info *mtd)
769{
Scott Wood17fed142016-05-30 13:57:56 -0500770 struct nand_chip *nand_chip = mtd_to_nand(mtd);
771 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400772 uint16_t col, ret;
773 uint16_t __iomem *p;
774
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900775 pr_debug("mxc_nand_read_word(col = %d)\n", host->col_addr);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400776
777 col = host->col_addr;
778 /* Adjust saved column address */
779 if (col < mtd->writesize && host->spare_only)
780 col += mtd->writesize;
781
782 if (col < mtd->writesize) {
John Rigby3c285c72010-01-26 19:24:18 -0700783 p = (uint16_t __iomem *)(host->regs->main_area[0] +
784 (col >> 1));
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400785 } else {
John Rigby3c285c72010-01-26 19:24:18 -0700786 p = (uint16_t __iomem *)(host->regs->spare_area[0] +
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400787 ((col - mtd->writesize) >> 1));
788 }
789
790 if (col & 1) {
791 union {
792 uint16_t word;
793 uint8_t bytes[2];
794 } nfc_word[3];
795
796 nfc_word[0].word = readw(p);
797 nfc_word[1].word = readw(p + 1);
798
799 nfc_word[2].bytes[0] = nfc_word[0].bytes[1];
800 nfc_word[2].bytes[1] = nfc_word[1].bytes[0];
801
802 ret = nfc_word[2].word;
803 } else {
804 ret = readw(p);
805 }
806
807 /* Update saved column address */
808 host->col_addr = col + 2;
809
810 return ret;
811}
812
813/*
814 * Write data of length len to buffer buf. The data to be
815 * written on NAND Flash is first copied to RAMbuffer. After the Data Input
816 * Operation by the NFC, the data is written to NAND Flash
817 */
818static void mxc_nand_write_buf(struct mtd_info *mtd,
819 const u_char *buf, int len)
820{
Scott Wood17fed142016-05-30 13:57:56 -0500821 struct nand_chip *nand_chip = mtd_to_nand(mtd);
822 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400823 int n, col, i = 0;
824
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900825 pr_debug("mxc_nand_write_buf(col = %d, len = %d)\n", host->col_addr,
826 len);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400827
828 col = host->col_addr;
829
830 /* Adjust saved column address */
831 if (col < mtd->writesize && host->spare_only)
832 col += mtd->writesize;
833
834 n = mtd->writesize + mtd->oobsize - col;
835 n = min(len, n);
836
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900837 pr_debug("%s:%d: col = %d, n = %d\n", __func__, __LINE__, col, n);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400838
839 while (n > 0) {
840 void __iomem *p;
841
842 if (col < mtd->writesize) {
John Rigby3c285c72010-01-26 19:24:18 -0700843 p = host->regs->main_area[0] + (col & ~3);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400844 } else {
John Rigby3c285c72010-01-26 19:24:18 -0700845 p = host->regs->spare_area[0] -
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400846 mtd->writesize + (col & ~3);
847 }
848
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900849 pr_debug("%s:%d: p = %p\n", __func__,
850 __LINE__, p);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400851
852 if (((col | (unsigned long)&buf[i]) & 3) || n < 4) {
853 union {
854 uint32_t word;
855 uint8_t bytes[4];
856 } nfc_word;
857
858 nfc_word.word = readl(p);
859 nfc_word.bytes[col & 3] = buf[i++];
860 n--;
861 col++;
862
863 writel(nfc_word.word, p);
864 } else {
865 int m = mtd->writesize - col;
866
867 if (col >= mtd->writesize)
868 m += mtd->oobsize;
869
870 m = min(n, m) & ~3;
871
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900872 pr_debug("%s:%d: n = %d, m = %d, i = %d, col = %d\n",
873 __func__, __LINE__, n, m, i, col);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400874
875 mxc_nand_memcpy32(p, (uint32_t *)&buf[i], m);
876 col += m;
877 i += m;
878 n -= m;
879 }
880 }
881 /* Update saved column address */
882 host->col_addr = col;
883}
884
885/*
886 * Read the data buffer from the NAND Flash. To read the data from NAND
887 * Flash first the data output cycle is initiated by the NFC, which copies
888 * the data to RAMbuffer. This data of length len is then copied to buffer buf.
889 */
890static void mxc_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
891{
Scott Wood17fed142016-05-30 13:57:56 -0500892 struct nand_chip *nand_chip = mtd_to_nand(mtd);
893 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400894 int n, col, i = 0;
895
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900896 pr_debug("mxc_nand_read_buf(col = %d, len = %d)\n", host->col_addr,
897 len);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400898
899 col = host->col_addr;
900
901 /* Adjust saved column address */
902 if (col < mtd->writesize && host->spare_only)
903 col += mtd->writesize;
904
905 n = mtd->writesize + mtd->oobsize - col;
906 n = min(len, n);
907
908 while (n > 0) {
909 void __iomem *p;
910
911 if (col < mtd->writesize) {
John Rigby3c285c72010-01-26 19:24:18 -0700912 p = host->regs->main_area[0] + (col & ~3);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400913 } else {
John Rigby3c285c72010-01-26 19:24:18 -0700914 p = host->regs->spare_area[0] -
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400915 mtd->writesize + (col & ~3);
916 }
917
918 if (((col | (int)&buf[i]) & 3) || n < 4) {
919 union {
920 uint32_t word;
921 uint8_t bytes[4];
922 } nfc_word;
923
924 nfc_word.word = readl(p);
925 buf[i++] = nfc_word.bytes[col & 3];
926 n--;
927 col++;
928 } else {
929 int m = mtd->writesize - col;
930
931 if (col >= mtd->writesize)
932 m += mtd->oobsize;
933
934 m = min(n, m) & ~3;
935 mxc_nand_memcpy32((uint32_t *)&buf[i], p, m);
936
937 col += m;
938 i += m;
939 n -= m;
940 }
941 }
942 /* Update saved column address */
943 host->col_addr = col;
944}
945
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400946/*
947 * This function is used by upper layer for select and
948 * deselect of the NAND chip
949 */
950static void mxc_nand_select_chip(struct mtd_info *mtd, int chip)
951{
Scott Wood17fed142016-05-30 13:57:56 -0500952 struct nand_chip *nand_chip = mtd_to_nand(mtd);
953 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400954
955 switch (chip) {
956 case -1:
957 /* TODO: Disable the NFC clock */
958 if (host->clk_act)
959 host->clk_act = 0;
960 break;
961 case 0:
962 /* TODO: Enable the NFC clock */
963 if (!host->clk_act)
964 host->clk_act = 1;
965 break;
966
967 default:
968 break;
969 }
970}
971
972/*
973 * Used by the upper layer to write command to NAND Flash for
974 * different operations to be carried out on NAND Flash
975 */
John Rigby3c285c72010-01-26 19:24:18 -0700976void mxc_nand_command(struct mtd_info *mtd, unsigned command,
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400977 int column, int page_addr)
978{
Scott Wood17fed142016-05-30 13:57:56 -0500979 struct nand_chip *nand_chip = mtd_to_nand(mtd);
980 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400981
Masahiro Yamadaf8a5d512017-10-18 00:10:48 +0900982 pr_debug("mxc_nand_command (cmd = 0x%x, col = 0x%x, page = 0x%x)\n",
983 command, column, page_addr);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400984
985 /* Reset command state information */
986 host->status_request = false;
987
988 /* Command pre-processing step */
989 switch (command) {
990
991 case NAND_CMD_STATUS:
992 host->col_addr = 0;
993 host->status_request = true;
994 break;
995
996 case NAND_CMD_READ0:
John Rigby3c285c72010-01-26 19:24:18 -0700997 host->page_addr = page_addr;
Ilya Yanokf9e2bee2009-08-11 02:32:54 +0400998 host->col_addr = column;
999 host->spare_only = false;
1000 break;
1001
1002 case NAND_CMD_READOOB:
1003 host->col_addr = column;
1004 host->spare_only = true;
1005 if (host->pagesize_2k)
1006 command = NAND_CMD_READ0; /* only READ0 is valid */
1007 break;
1008
1009 case NAND_CMD_SEQIN:
1010 if (column >= mtd->writesize) {
1011 /*
1012 * before sending SEQIN command for partial write,
1013 * we need read one page out. FSL NFC does not support
Helmut Raigerc8f4a4c2011-07-06 09:40:28 +02001014 * partial write. It always sends out 512+ecc+512+ecc
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001015 * for large page nand flash. But for small page nand
1016 * flash, it does support SPARE ONLY operation.
1017 */
1018 if (host->pagesize_2k) {
1019 /* call ourself to read a page */
1020 mxc_nand_command(mtd, NAND_CMD_READ0, 0,
1021 page_addr);
1022 }
1023
1024 host->col_addr = column - mtd->writesize;
1025 host->spare_only = true;
1026
1027 /* Set program pointer to spare region */
1028 if (!host->pagesize_2k)
1029 send_cmd(host, NAND_CMD_READOOB);
1030 } else {
1031 host->spare_only = false;
1032 host->col_addr = column;
1033
1034 /* Set program pointer to page start */
1035 if (!host->pagesize_2k)
1036 send_cmd(host, NAND_CMD_READ0);
1037 }
1038 break;
1039
1040 case NAND_CMD_PAGEPROG:
1041 send_prog_page(host, 0, host->spare_only);
1042
Benoît Thébaudeauc5b4eb12012-08-13 22:50:53 +02001043 if (host->pagesize_2k && is_mxc_nfc_1()) {
Helmut Raigerc8f4a4c2011-07-06 09:40:28 +02001044 /* data in 4 areas */
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001045 send_prog_page(host, 1, host->spare_only);
1046 send_prog_page(host, 2, host->spare_only);
1047 send_prog_page(host, 3, host->spare_only);
1048 }
1049
1050 break;
1051 }
1052
1053 /* Write out the command to the device. */
1054 send_cmd(host, command);
1055
1056 /* Write out column address, if necessary */
1057 if (column != -1) {
1058 /*
1059 * MXC NANDFC can only perform full page+spare or
Helmut Raigerc8f4a4c2011-07-06 09:40:28 +02001060 * spare-only read/write. When the upper layers perform
1061 * a read/write buffer operation, we will use the saved
1062 * column address to index into the full page.
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001063 */
1064 send_addr(host, 0);
1065 if (host->pagesize_2k)
1066 /* another col addr cycle for 2k page */
1067 send_addr(host, 0);
1068 }
1069
1070 /* Write out page address, if necessary */
1071 if (page_addr != -1) {
John Rigby3c285c72010-01-26 19:24:18 -07001072 u32 page_mask = nand_chip->pagemask;
1073 do {
1074 send_addr(host, page_addr & 0xFF);
1075 page_addr >>= 8;
1076 page_mask >>= 8;
1077 } while (page_mask);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001078 }
1079
1080 /* Command post-processing step */
1081 switch (command) {
1082
1083 case NAND_CMD_RESET:
1084 break;
1085
1086 case NAND_CMD_READOOB:
1087 case NAND_CMD_READ0:
1088 if (host->pagesize_2k) {
1089 /* send read confirm command */
1090 send_cmd(host, NAND_CMD_READSTART);
1091 /* read for each AREA */
1092 send_read_page(host, 0, host->spare_only);
Benoît Thébaudeauc5b4eb12012-08-13 22:50:53 +02001093 if (is_mxc_nfc_1()) {
John Rigby3c285c72010-01-26 19:24:18 -07001094 send_read_page(host, 1, host->spare_only);
1095 send_read_page(host, 2, host->spare_only);
1096 send_read_page(host, 3, host->spare_only);
1097 }
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001098 } else {
1099 send_read_page(host, 0, host->spare_only);
1100 }
1101 break;
1102
1103 case NAND_CMD_READID:
1104 host->col_addr = 0;
1105 send_read_id(host);
1106 break;
1107
1108 case NAND_CMD_PAGEPROG:
1109 break;
1110
1111 case NAND_CMD_STATUS:
1112 break;
1113
1114 case NAND_CMD_ERASE2:
1115 break;
1116 }
1117}
1118
Timo Ketolaad85f952012-04-18 22:55:31 +00001119#ifdef CONFIG_SYS_NAND_USE_FLASH_BBT
1120
1121static u8 bbt_pattern[] = {'B', 'b', 't', '0' };
1122static u8 mirror_pattern[] = {'1', 't', 'b', 'B' };
1123
1124static struct nand_bbt_descr bbt_main_descr = {
1125 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
1126 NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1127 .offs = 0,
1128 .len = 4,
1129 .veroffs = 4,
1130 .maxblocks = 4,
1131 .pattern = bbt_pattern,
1132};
1133
1134static struct nand_bbt_descr bbt_mirror_descr = {
1135 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
1136 NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1137 .offs = 0,
1138 .len = 4,
1139 .veroffs = 4,
1140 .maxblocks = 4,
1141 .pattern = mirror_pattern,
1142};
1143
1144#endif
1145
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001146int board_nand_init(struct nand_chip *this)
1147{
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001148 struct mtd_info *mtd;
Benoît Thébaudeau8f265962013-04-11 09:35:37 +00001149#if defined(MXC_NFC_V2_1) || defined(MXC_NFC_V3_2)
1150 uint32_t tmp;
Tom Rini05ae4c92012-09-18 09:24:22 -07001151#endif
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001152
Timo Ketolaad85f952012-04-18 22:55:31 +00001153#ifdef CONFIG_SYS_NAND_USE_FLASH_BBT
Sergey Lapin3a38a552013-01-14 03:46:50 +00001154 this->bbt_options |= NAND_BBT_USE_FLASH;
Timo Ketolaad85f952012-04-18 22:55:31 +00001155 this->bbt_td = &bbt_main_descr;
1156 this->bbt_md = &bbt_mirror_descr;
1157#endif
1158
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001159 /* structures must be linked */
Scott Wood2c1b7e12016-05-30 13:57:55 -05001160 mtd = &this->mtd;
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001161 host->nand = this;
1162
1163 /* 5 us command delay time */
1164 this->chip_delay = 5;
1165
Scott Wood17fed142016-05-30 13:57:56 -05001166 nand_set_controller_data(this, host);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001167 this->dev_ready = mxc_nand_dev_ready;
1168 this->cmdfunc = mxc_nand_command;
1169 this->select_chip = mxc_nand_select_chip;
1170 this->read_byte = mxc_nand_read_byte;
1171 this->read_word = mxc_nand_read_word;
1172 this->write_buf = mxc_nand_write_buf;
1173 this->read_buf = mxc_nand_read_buf;
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001174
Benoît Thébaudeauefb7c002013-04-11 09:35:51 +00001175 host->regs = (struct mxc_nand_regs __iomem *)CONFIG_MXC_NAND_REGS_BASE;
Benoît Thébaudeau8f265962013-04-11 09:35:37 +00001176#ifdef MXC_NFC_V3_2
1177 host->ip_regs =
Benoît Thébaudeauefb7c002013-04-11 09:35:51 +00001178 (struct mxc_nand_ip_regs __iomem *)CONFIG_MXC_NAND_IP_REGS_BASE;
Benoît Thébaudeau8f265962013-04-11 09:35:37 +00001179#endif
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001180 host->clk_act = 1;
1181
1182#ifdef CONFIG_MXC_NAND_HWECC
1183 this->ecc.calculate = mxc_nand_calculate_ecc;
1184 this->ecc.hwctl = mxc_nand_enable_hwecc;
1185 this->ecc.correct = mxc_nand_correct_data;
Benoît Thébaudeau8f265962013-04-11 09:35:37 +00001186 if (is_mxc_nfc_21() || is_mxc_nfc_32()) {
John Rigby3c285c72010-01-26 19:24:18 -07001187 this->ecc.mode = NAND_ECC_HW_SYNDROME;
1188 this->ecc.read_page = mxc_nand_read_page_syndrome;
1189 this->ecc.read_page_raw = mxc_nand_read_page_raw_syndrome;
1190 this->ecc.read_oob = mxc_nand_read_oob_syndrome;
1191 this->ecc.write_page = mxc_nand_write_page_syndrome;
1192 this->ecc.write_page_raw = mxc_nand_write_page_raw_syndrome;
1193 this->ecc.write_oob = mxc_nand_write_oob_syndrome;
1194 this->ecc.bytes = 9;
1195 this->ecc.prepad = 7;
1196 } else {
1197 this->ecc.mode = NAND_ECC_HW;
1198 }
1199
Marek Vasut499aab92013-07-03 02:34:34 +02001200 if (is_mxc_nfc_1())
1201 this->ecc.strength = 1;
1202 else
1203 this->ecc.strength = 4;
Sergey Lapin3a38a552013-01-14 03:46:50 +00001204
John Rigby3c285c72010-01-26 19:24:18 -07001205 host->pagesize_2k = 0;
1206
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001207 this->ecc.size = 512;
Benoît Thébaudeau9166d5f2012-08-13 22:50:07 +02001208 _mxc_nand_enable_hwecc(mtd, 1);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001209#else
1210 this->ecc.layout = &nand_soft_eccoob;
1211 this->ecc.mode = NAND_ECC_SOFT;
Benoît Thébaudeau9166d5f2012-08-13 22:50:07 +02001212 _mxc_nand_enable_hwecc(mtd, 0);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001213#endif
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001214 /* Reset NAND */
1215 this->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
1216
Benoît Thébaudeau0452dcd2012-08-13 22:50:30 +02001217 /* NAND bus width determines access functions used by upper layer */
1218 if (is_16bit_nand())
1219 this->options |= NAND_BUSWIDTH_16;
1220
Tom Rinib4213492022-11-12 17:36:51 -05001221#ifdef CFG_SYS_NAND_LARGEPAGE
Benoît Thébaudeau0452dcd2012-08-13 22:50:30 +02001222 host->pagesize_2k = 1;
1223 this->ecc.layout = &nand_hw_eccoob2k;
1224#else
1225 host->pagesize_2k = 0;
1226 this->ecc.layout = &nand_hw_eccoob;
1227#endif
1228
Benoît Thébaudeau8f265962013-04-11 09:35:37 +00001229#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Benoît Thébaudeauc5b4eb12012-08-13 22:50:53 +02001230#ifdef MXC_NFC_V2_1
Benoît Thébaudeau555bba12013-04-11 09:35:36 +00001231 tmp = readnfc(&host->regs->config1);
1232 tmp |= NFC_V2_CONFIG1_ONE_CYCLE;
1233 tmp |= NFC_V2_CONFIG1_ECC_MODE_4;
1234 writenfc(tmp, &host->regs->config1);
Benoît Thébaudeau0452dcd2012-08-13 22:50:30 +02001235 if (host->pagesize_2k)
Benoît Thébaudeau555bba12013-04-11 09:35:36 +00001236 writenfc(64/2, &host->regs->spare_area_size);
Benoît Thébaudeau0452dcd2012-08-13 22:50:30 +02001237 else
Benoît Thébaudeau555bba12013-04-11 09:35:36 +00001238 writenfc(16/2, &host->regs->spare_area_size);
Benoît Thébaudeau0452dcd2012-08-13 22:50:30 +02001239#endif
1240
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001241 /*
1242 * preset operation
1243 * Unlock the internal RAM Buffer
1244 */
Benoît Thébaudeau555bba12013-04-11 09:35:36 +00001245 writenfc(0x2, &host->regs->config);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001246
1247 /* Blocks to be unlocked */
Benoît Thébaudeau555bba12013-04-11 09:35:36 +00001248 writenfc(0x0, &host->regs->unlockstart_blkaddr);
Helmut Raiger38ba3242011-07-06 19:04:41 +02001249 /* Originally (Freescale LTIB 2.6.21) 0x4000 was written to the
1250 * unlockend_blkaddr, but the magic 0x4000 does not always work
1251 * when writing more than some 32 megabytes (on 2k page nands)
1252 * However 0xFFFF doesn't seem to have this kind
1253 * of limitation (tried it back and forth several times).
1254 * The linux kernel driver sets this to 0xFFFF for the v2 controller
1255 * only, but probably this was not tested there for v1.
1256 * The very same limitation seems to apply to this kernel driver.
1257 * This might be NAND chip specific and the i.MX31 datasheet is
1258 * extremely vague about the semantics of this register.
1259 */
Benoît Thébaudeau555bba12013-04-11 09:35:36 +00001260 writenfc(0xFFFF, &host->regs->unlockend_blkaddr);
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001261
1262 /* Unlock Block Command for given address range */
Benoît Thébaudeau555bba12013-04-11 09:35:36 +00001263 writenfc(0x4, &host->regs->wrprot);
Benoît Thébaudeau8f265962013-04-11 09:35:37 +00001264#elif defined(MXC_NFC_V3_2)
1265 writenfc(NFC_V3_CONFIG1_RBA(0), &host->regs->config1);
1266 writenfc(NFC_V3_IPC_CREQ, &host->ip_regs->ipc);
1267
1268 /* Unlock the internal RAM Buffer */
1269 writenfc(NFC_V3_WRPROT_BLS_UNLOCK | NFC_V3_WRPROT_UNLOCK,
1270 &host->ip_regs->wrprot);
1271
1272 /* Blocks to be unlocked */
1273 for (tmp = 0; tmp < CONFIG_SYS_NAND_MAX_CHIPS; tmp++)
1274 writenfc(0x0 | 0xFFFF << 16,
1275 &host->ip_regs->wrprot_unlock_blkaddr[tmp]);
1276
1277 writenfc(0, &host->ip_regs->ipc);
1278
1279 tmp = readnfc(&host->ip_regs->config2);
1280 tmp &= ~(NFC_V3_CONFIG2_SPAS_MASK | NFC_V3_CONFIG2_EDC_MASK |
1281 NFC_V3_CONFIG2_ECC_MODE_8 | NFC_V3_CONFIG2_PS_MASK);
1282 tmp |= NFC_V3_CONFIG2_ONE_CYCLE;
1283
1284 if (host->pagesize_2k) {
1285 tmp |= NFC_V3_CONFIG2_SPAS(64/2);
1286 tmp |= NFC_V3_CONFIG2_PS_2048;
1287 } else {
1288 tmp |= NFC_V3_CONFIG2_SPAS(16/2);
1289 tmp |= NFC_V3_CONFIG2_PS_512;
1290 }
1291
1292 writenfc(tmp, &host->ip_regs->config2);
1293
1294 tmp = NFC_V3_CONFIG3_NUM_OF_DEVS(0) |
1295 NFC_V3_CONFIG3_NO_SDMA |
1296 NFC_V3_CONFIG3_RBB_MODE |
1297 NFC_V3_CONFIG3_SBB(6) | /* Reset default */
1298 NFC_V3_CONFIG3_ADD_OP(0);
1299
1300 if (!(this->options & NAND_BUSWIDTH_16))
1301 tmp |= NFC_V3_CONFIG3_FW8;
1302
1303 writenfc(tmp, &host->ip_regs->config3);
1304
1305 writenfc(0, &host->ip_regs->delay_line);
1306#endif
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001307
Benoît Thébaudeau32ae5b42012-08-13 22:48:26 +02001308 return 0;
Ilya Yanokf9e2bee2009-08-11 02:32:54 +04001309}