blob: 7221d0ba0d7da4fef7307ab3a8784578d2e2748d [file] [log] [blame]
Ilya Yanok36fab992009-08-11 02:32:54 +04001/*
Scott Woodcfcbf8c2009-09-02 16:45:31 -05002 * Copyright 2004-2007 Freescale Semiconductor, Inc.
Ilya Yanok36fab992009-08-11 02:32:54 +04003 * Copyright 2008 Sascha Hauer, kernel@pengutronix.de
4 * Copyright 2009 Ilya Yanok, <yanok@emcraft.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Ilya Yanok36fab992009-08-11 02:32:54 +04007 */
8
9#include <common.h>
10#include <nand.h>
11#include <linux/err.h>
12#include <asm/io.h>
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +000013#if defined(CONFIG_MX25) || defined(CONFIG_MX27) || defined(CONFIG_MX35) || \
14 defined(CONFIG_MX51) || defined(CONFIG_MX53)
Ilya Yanok36fab992009-08-11 02:32:54 +040015#include <asm/arch/imx-regs.h>
16#endif
Benoît Thébaudeauda962b72013-04-11 09:35:51 +000017#include "mxc_nand.h"
Ilya Yanok36fab992009-08-11 02:32:54 +040018
19#define DRIVER_NAME "mxc_nand"
20
Ilya Yanok36fab992009-08-11 02:32:54 +040021struct mxc_nand_host {
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +020022 struct nand_chip *nand;
Ilya Yanok36fab992009-08-11 02:32:54 +040023
Benoît Thébaudeauda962b72013-04-11 09:35:51 +000024 struct mxc_nand_regs __iomem *regs;
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +000025#ifdef MXC_NFC_V3_2
Benoît Thébaudeauda962b72013-04-11 09:35:51 +000026 struct mxc_nand_ip_regs __iomem *ip_regs;
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +000027#endif
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +020028 int spare_only;
29 int status_request;
30 int pagesize_2k;
31 int clk_act;
32 uint16_t col_addr;
33 unsigned int page_addr;
Ilya Yanok36fab992009-08-11 02:32:54 +040034};
35
36static struct mxc_nand_host mxc_host;
37static struct mxc_nand_host *host = &mxc_host;
38
39/* Define delays in microsec for NAND device operations */
40#define TROP_US_DELAY 2000
41/* Macros to get byte and bit positions of ECC */
42#define COLPOS(x) ((x) >> 3)
43#define BITPOS(x) ((x) & 0xf)
44
45/* Define single bit Error positions in Main & Spare area */
46#define MAIN_SINGLEBIT_ERROR 0x4
47#define SPARE_SINGLEBIT_ERROR 0x1
48
49/* OOB placement block for use with hardware ecc generation */
John Rigbyb081c2e2010-01-26 19:24:18 -070050#if defined(MXC_NFC_V1)
51#ifndef CONFIG_SYS_NAND_LARGEPAGE
Ilya Yanok36fab992009-08-11 02:32:54 +040052static struct nand_ecclayout nand_hw_eccoob = {
53 .eccbytes = 5,
54 .eccpos = {6, 7, 8, 9, 10},
John Rigbyb081c2e2010-01-26 19:24:18 -070055 .oobfree = { {0, 5}, {11, 5}, }
Ilya Yanok36fab992009-08-11 02:32:54 +040056};
57#else
John Rigbyb081c2e2010-01-26 19:24:18 -070058static struct nand_ecclayout nand_hw_eccoob2k = {
59 .eccbytes = 20,
60 .eccpos = {
61 6, 7, 8, 9, 10,
62 22, 23, 24, 25, 26,
63 38, 39, 40, 41, 42,
64 54, 55, 56, 57, 58,
65 },
66 .oobfree = { {2, 4}, {11, 11}, {27, 11}, {43, 11}, {59, 5} },
Ilya Yanok36fab992009-08-11 02:32:54 +040067};
68#endif
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +000069#elif defined(MXC_NFC_V2_1) || defined(MXC_NFC_V3_2)
John Rigbyb081c2e2010-01-26 19:24:18 -070070#ifndef CONFIG_SYS_NAND_LARGEPAGE
71static struct nand_ecclayout nand_hw_eccoob = {
72 .eccbytes = 9,
73 .eccpos = {7, 8, 9, 10, 11, 12, 13, 14, 15},
74 .oobfree = { {2, 5} }
Magnus Liljac4832df2010-01-17 17:46:10 +010075};
John Rigbyb081c2e2010-01-26 19:24:18 -070076#else
77static struct nand_ecclayout nand_hw_eccoob2k = {
78 .eccbytes = 36,
79 .eccpos = {
80 7, 8, 9, 10, 11, 12, 13, 14, 15,
81 23, 24, 25, 26, 27, 28, 29, 30, 31,
82 39, 40, 41, 42, 43, 44, 45, 46, 47,
83 55, 56, 57, 58, 59, 60, 61, 62, 63,
84 },
85 .oobfree = { {2, 5}, {16, 7}, {32, 7}, {48, 7} },
86};
87#endif
88#endif
Magnus Liljac4832df2010-01-17 17:46:10 +010089
Magnus Liljaf6a97482009-11-11 20:18:43 +010090static int is_16bit_nand(void)
91{
Fabio Estevama430e912013-04-11 09:35:35 +000092#if defined(CONFIG_SYS_NAND_BUSWIDTH_16BIT)
93 return 1;
Magnus Liljaf6a97482009-11-11 20:18:43 +010094#else
Magnus Liljaf6a97482009-11-11 20:18:43 +010095 return 0;
Magnus Liljaf6a97482009-11-11 20:18:43 +010096#endif
Fabio Estevama430e912013-04-11 09:35:35 +000097}
Magnus Liljaf6a97482009-11-11 20:18:43 +010098
Ilya Yanok36fab992009-08-11 02:32:54 +040099static uint32_t *mxc_nand_memcpy32(uint32_t *dest, uint32_t *source, size_t size)
100{
101 uint32_t *d = dest;
102
103 size >>= 2;
104 while (size--)
105 __raw_writel(__raw_readl(source++), d++);
106 return dest;
107}
108
109/*
110 * This function polls the NANDFC to wait for the basic operation to
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000111 * complete by checking the INT bit.
Ilya Yanok36fab992009-08-11 02:32:54 +0400112 */
113static void wait_op_done(struct mxc_nand_host *host, int max_retries,
114 uint16_t param)
115{
116 uint32_t tmp;
117
118 while (max_retries-- > 0) {
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000119#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000120 tmp = readnfc(&host->regs->config2);
121 if (tmp & NFC_V1_V2_CONFIG2_INT) {
122 tmp &= ~NFC_V1_V2_CONFIG2_INT;
123 writenfc(tmp, &host->regs->config2);
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000124#elif defined(MXC_NFC_V3_2)
125 tmp = readnfc(&host->ip_regs->ipc);
126 if (tmp & NFC_V3_IPC_INT) {
127 tmp &= ~NFC_V3_IPC_INT;
128 writenfc(tmp, &host->ip_regs->ipc);
129#endif
Ilya Yanok36fab992009-08-11 02:32:54 +0400130 break;
131 }
132 udelay(1);
133 }
134 if (max_retries < 0) {
135 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s(%d): INT not set\n",
136 __func__, param);
137 }
138}
139
140/*
141 * This function issues the specified command to the NAND device and
142 * waits for completion.
143 */
144static void send_cmd(struct mxc_nand_host *host, uint16_t cmd)
145{
146 MTDDEBUG(MTD_DEBUG_LEVEL3, "send_cmd(host, 0x%x)\n", cmd);
147
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000148 writenfc(cmd, &host->regs->flash_cmd);
149 writenfc(NFC_CMD, &host->regs->operation);
Ilya Yanok36fab992009-08-11 02:32:54 +0400150
151 /* Wait for operation to complete */
152 wait_op_done(host, TROP_US_DELAY, cmd);
153}
154
155/*
156 * This function sends an address (or partial address) to the
157 * NAND device. The address is used to select the source/destination for
158 * a NAND command.
159 */
160static void send_addr(struct mxc_nand_host *host, uint16_t addr)
161{
162 MTDDEBUG(MTD_DEBUG_LEVEL3, "send_addr(host, 0x%x)\n", addr);
163
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000164 writenfc(addr, &host->regs->flash_addr);
165 writenfc(NFC_ADDR, &host->regs->operation);
Ilya Yanok36fab992009-08-11 02:32:54 +0400166
167 /* Wait for operation to complete */
168 wait_op_done(host, TROP_US_DELAY, addr);
169}
170
171/*
Helmut Raiger780f30b2011-07-06 09:40:28 +0200172 * This function requests the NANDFC to initiate the transfer
Ilya Yanok36fab992009-08-11 02:32:54 +0400173 * of data currently in the NANDFC RAM buffer to the NAND device.
174 */
175static void send_prog_page(struct mxc_nand_host *host, uint8_t buf_id,
176 int spare_only)
177{
John Rigbyb081c2e2010-01-26 19:24:18 -0700178 if (spare_only)
179 MTDDEBUG(MTD_DEBUG_LEVEL1, "send_prog_page (%d)\n", spare_only);
180
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000181 if (is_mxc_nfc_21() || is_mxc_nfc_32()) {
John Rigbyb081c2e2010-01-26 19:24:18 -0700182 int i;
183 /*
184 * The controller copies the 64 bytes of spare data from
185 * the first 16 bytes of each of the 4 64 byte spare buffers.
186 * Copy the contiguous data starting in spare_area[0] to
187 * the four spare area buffers.
188 */
189 for (i = 1; i < 4; i++) {
190 void __iomem *src = &host->regs->spare_area[0][i * 16];
191 void __iomem *dst = &host->regs->spare_area[i][0];
192
193 mxc_nand_memcpy32(dst, src, 16);
194 }
195 }
Ilya Yanok36fab992009-08-11 02:32:54 +0400196
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000197#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000198 writenfc(buf_id, &host->regs->buf_addr);
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000199#elif defined(MXC_NFC_V3_2)
200 uint32_t tmp = readnfc(&host->regs->config1);
201 tmp &= ~NFC_V3_CONFIG1_RBA_MASK;
202 tmp |= NFC_V3_CONFIG1_RBA(buf_id);
203 writenfc(tmp, &host->regs->config1);
204#endif
Ilya Yanok36fab992009-08-11 02:32:54 +0400205
206 /* Configure spare or page+spare access */
207 if (!host->pagesize_2k) {
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000208 uint32_t config1 = readnfc(&host->regs->config1);
Ilya Yanok36fab992009-08-11 02:32:54 +0400209 if (spare_only)
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000210 config1 |= NFC_CONFIG1_SP_EN;
Ilya Yanok36fab992009-08-11 02:32:54 +0400211 else
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000212 config1 &= ~NFC_CONFIG1_SP_EN;
213 writenfc(config1, &host->regs->config1);
Ilya Yanok36fab992009-08-11 02:32:54 +0400214 }
215
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000216 writenfc(NFC_INPUT, &host->regs->operation);
Ilya Yanok36fab992009-08-11 02:32:54 +0400217
218 /* Wait for operation to complete */
219 wait_op_done(host, TROP_US_DELAY, spare_only);
220}
221
222/*
Helmut Raiger780f30b2011-07-06 09:40:28 +0200223 * Requests NANDFC to initiate the transfer of data from the
Ilya Yanok36fab992009-08-11 02:32:54 +0400224 * NAND device into in the NANDFC ram buffer.
225 */
226static void send_read_page(struct mxc_nand_host *host, uint8_t buf_id,
227 int spare_only)
228{
229 MTDDEBUG(MTD_DEBUG_LEVEL3, "send_read_page (%d)\n", spare_only);
230
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000231#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000232 writenfc(buf_id, &host->regs->buf_addr);
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000233#elif defined(MXC_NFC_V3_2)
234 uint32_t tmp = readnfc(&host->regs->config1);
235 tmp &= ~NFC_V3_CONFIG1_RBA_MASK;
236 tmp |= NFC_V3_CONFIG1_RBA(buf_id);
237 writenfc(tmp, &host->regs->config1);
238#endif
Ilya Yanok36fab992009-08-11 02:32:54 +0400239
240 /* Configure spare or page+spare access */
241 if (!host->pagesize_2k) {
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000242 uint32_t config1 = readnfc(&host->regs->config1);
Ilya Yanok36fab992009-08-11 02:32:54 +0400243 if (spare_only)
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000244 config1 |= NFC_CONFIG1_SP_EN;
Ilya Yanok36fab992009-08-11 02:32:54 +0400245 else
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000246 config1 &= ~NFC_CONFIG1_SP_EN;
247 writenfc(config1, &host->regs->config1);
Ilya Yanok36fab992009-08-11 02:32:54 +0400248 }
249
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000250 writenfc(NFC_OUTPUT, &host->regs->operation);
Ilya Yanok36fab992009-08-11 02:32:54 +0400251
252 /* Wait for operation to complete */
253 wait_op_done(host, TROP_US_DELAY, spare_only);
John Rigbyb081c2e2010-01-26 19:24:18 -0700254
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000255 if (is_mxc_nfc_21() || is_mxc_nfc_32()) {
John Rigbyb081c2e2010-01-26 19:24:18 -0700256 int i;
257
258 /*
259 * The controller copies the 64 bytes of spare data to
260 * the first 16 bytes of each of the 4 spare buffers.
261 * Make the data contiguous starting in spare_area[0].
262 */
263 for (i = 1; i < 4; i++) {
264 void __iomem *src = &host->regs->spare_area[i][0];
265 void __iomem *dst = &host->regs->spare_area[0][i * 16];
266
267 mxc_nand_memcpy32(dst, src, 16);
268 }
269 }
Ilya Yanok36fab992009-08-11 02:32:54 +0400270}
271
272/* Request the NANDFC to perform a read of the NAND device ID. */
273static void send_read_id(struct mxc_nand_host *host)
274{
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000275 uint32_t tmp;
Ilya Yanok36fab992009-08-11 02:32:54 +0400276
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000277#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Ilya Yanok36fab992009-08-11 02:32:54 +0400278 /* NANDFC buffer 0 is used for device ID output */
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000279 writenfc(0x0, &host->regs->buf_addr);
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000280#elif defined(MXC_NFC_V3_2)
281 tmp = readnfc(&host->regs->config1);
282 tmp &= ~NFC_V3_CONFIG1_RBA_MASK;
283 writenfc(tmp, &host->regs->config1);
284#endif
Ilya Yanok36fab992009-08-11 02:32:54 +0400285
286 /* Read ID into main buffer */
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000287 tmp = readnfc(&host->regs->config1);
288 tmp &= ~NFC_CONFIG1_SP_EN;
289 writenfc(tmp, &host->regs->config1);
Ilya Yanok36fab992009-08-11 02:32:54 +0400290
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000291 writenfc(NFC_ID, &host->regs->operation);
Ilya Yanok36fab992009-08-11 02:32:54 +0400292
293 /* Wait for operation to complete */
294 wait_op_done(host, TROP_US_DELAY, 0);
295}
296
297/*
298 * This function requests the NANDFC to perform a read of the
299 * NAND device status and returns the current status.
300 */
301static uint16_t get_dev_status(struct mxc_nand_host *host)
302{
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000303#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
John Rigbyb081c2e2010-01-26 19:24:18 -0700304 void __iomem *main_buf = host->regs->main_area[1];
Ilya Yanok36fab992009-08-11 02:32:54 +0400305 uint32_t store;
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000306#endif
307 uint32_t ret, tmp;
Ilya Yanok36fab992009-08-11 02:32:54 +0400308 /* Issue status request to NAND device */
309
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000310#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Ilya Yanok36fab992009-08-11 02:32:54 +0400311 /* store the main area1 first word, later do recovery */
312 store = readl(main_buf);
313 /* NANDFC buffer 1 is used for device status */
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000314 writenfc(1, &host->regs->buf_addr);
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000315#endif
Ilya Yanok36fab992009-08-11 02:32:54 +0400316
317 /* Read status into main buffer */
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000318 tmp = readnfc(&host->regs->config1);
319 tmp &= ~NFC_CONFIG1_SP_EN;
320 writenfc(tmp, &host->regs->config1);
Ilya Yanok36fab992009-08-11 02:32:54 +0400321
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000322 writenfc(NFC_STATUS, &host->regs->operation);
Ilya Yanok36fab992009-08-11 02:32:54 +0400323
324 /* Wait for operation to complete */
325 wait_op_done(host, TROP_US_DELAY, 0);
326
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000327#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Ilya Yanok36fab992009-08-11 02:32:54 +0400328 /*
329 * Status is placed in first word of main buffer
330 * get status, then recovery area 1 data
331 */
332 ret = readw(main_buf);
333 writel(store, main_buf);
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000334#elif defined(MXC_NFC_V3_2)
335 ret = readnfc(&host->regs->config1) >> 16;
336#endif
Ilya Yanok36fab992009-08-11 02:32:54 +0400337
338 return ret;
339}
340
341/* This function is used by upper layer to checks if device is ready */
342static int mxc_nand_dev_ready(struct mtd_info *mtd)
343{
344 /*
345 * NFC handles R/B internally. Therefore, this function
346 * always returns status as ready.
347 */
348 return 1;
349}
350
John Rigbyb081c2e2010-01-26 19:24:18 -0700351static void _mxc_nand_enable_hwecc(struct mtd_info *mtd, int on)
352{
Scott Wood17cb4b82016-05-30 13:57:56 -0500353 struct nand_chip *nand_chip = mtd_to_nand(mtd);
354 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000355#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000356 uint16_t tmp = readnfc(&host->regs->config1);
John Rigbyb081c2e2010-01-26 19:24:18 -0700357
358 if (on)
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000359 tmp |= NFC_V1_V2_CONFIG1_ECC_EN;
John Rigbyb081c2e2010-01-26 19:24:18 -0700360 else
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +0000361 tmp &= ~NFC_V1_V2_CONFIG1_ECC_EN;
362 writenfc(tmp, &host->regs->config1);
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000363#elif defined(MXC_NFC_V3_2)
364 uint32_t tmp = readnfc(&host->ip_regs->config2);
365
366 if (on)
367 tmp |= NFC_V3_CONFIG2_ECC_EN;
368 else
369 tmp &= ~NFC_V3_CONFIG2_ECC_EN;
370 writenfc(tmp, &host->ip_regs->config2);
371#endif
John Rigbyb081c2e2010-01-26 19:24:18 -0700372}
373
Benoît Thébaudeau0e499b02012-08-13 22:50:07 +0200374#ifdef CONFIG_MXC_NAND_HWECC
375static void mxc_nand_enable_hwecc(struct mtd_info *mtd, int mode)
376{
377 /*
378 * If HW ECC is enabled, we turn it on during init. There is
379 * no need to enable again here.
380 */
381}
382
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +0000383#if defined(MXC_NFC_V2_1) || defined(MXC_NFC_V3_2)
John Rigbyb081c2e2010-01-26 19:24:18 -0700384static int mxc_nand_read_oob_syndrome(struct mtd_info *mtd,
385 struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +0000386 int page)
John Rigbyb081c2e2010-01-26 19:24:18 -0700387{
Scott Wood17cb4b82016-05-30 13:57:56 -0500388 struct mxc_nand_host *host = nand_get_controller_data(chip);
John Rigbyb081c2e2010-01-26 19:24:18 -0700389 uint8_t *buf = chip->oob_poi;
390 int length = mtd->oobsize;
391 int eccpitch = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
392 uint8_t *bufpoi = buf;
393 int i, toread;
394
395 MTDDEBUG(MTD_DEBUG_LEVEL0,
396 "%s: Reading OOB area of page %u to oob %p\n",
Benoît Thébaudeau78ee7b12013-04-11 09:35:40 +0000397 __func__, page, buf);
John Rigbyb081c2e2010-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 Lapindfe64e22013-01-14 03:46:50 +0000440 int oob_required,
John Rigbyb081c2e2010-01-26 19:24:18 -0700441 int page)
442{
Scott Wood17cb4b82016-05-30 13:57:56 -0500443 struct mxc_nand_host *host = nand_get_controller_data(chip);
John Rigbyb081c2e2010-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ébaudeau3ec9d6e2013-04-11 09:35:41 +0000452 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
John Rigbyb081c2e2010-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ébaudeau7c28a1c2012-08-13 22:50:19 +0200477 _mxc_nand_enable_hwecc(mtd, 1);
John Rigbyb081c2e2010-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 Lapindfe64e22013-01-14 03:46:50 +0000485 int oob_required,
John Rigbyb081c2e2010-01-26 19:24:18 -0700486 int page)
487{
Scott Wood17cb4b82016-05-30 13:57:56 -0500488 struct mxc_nand_host *host = nand_get_controller_data(chip);
John Rigbyb081c2e2010-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
496 MTDDEBUG(MTD_DEBUG_LEVEL1, "Reading page %u to buf %p oob %p\n",
Benoît Thébaudeau3ec9d6e2013-04-11 09:35:41 +0000497 page, buf, oob);
John Rigbyb081c2e2010-01-26 19:24:18 -0700498
Helmut Raiger780f30b2011-07-06 09:40:28 +0200499 /* first read the data area and the available portion of OOB */
John Rigbyb081c2e2010-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ébaudeau3ec9d6e2013-04-11 09:35:41 +0000535 chip->cmdfunc(mtd, NAND_CMD_READOOB, mtd->writesize, page);
John Rigbyb081c2e2010-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 Wood17cb4b82016-05-30 13:57:56 -0500552 struct mxc_nand_host *host = nand_get_controller_data(chip);
John Rigbyb081c2e2010-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 Lapindfe64e22013-01-14 03:46:50 +0000575static int mxc_nand_write_page_raw_syndrome(struct mtd_info *mtd,
John Rigbyb081c2e2010-01-26 19:24:18 -0700576 struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +0000577 const uint8_t *buf,
Scott Wood81c77252016-05-30 13:57:57 -0500578 int oob_required, int page)
John Rigbyb081c2e2010-01-26 19:24:18 -0700579{
Scott Wood17cb4b82016-05-30 13:57:56 -0500580 struct mxc_nand_host *host = nand_get_controller_data(chip);
John Rigbyb081c2e2010-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 Lapindfe64e22013-01-14 03:46:50 +0000612 return 0;
John Rigbyb081c2e2010-01-26 19:24:18 -0700613}
614
Sergey Lapindfe64e22013-01-14 03:46:50 +0000615static int mxc_nand_write_page_syndrome(struct mtd_info *mtd,
John Rigbyb081c2e2010-01-26 19:24:18 -0700616 struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +0000617 const uint8_t *buf,
Scott Wood81c77252016-05-30 13:57:57 -0500618 int oob_required, int page)
John Rigbyb081c2e2010-01-26 19:24:18 -0700619{
Scott Wood17cb4b82016-05-30 13:57:56 -0500620 struct mxc_nand_host *host = nand_get_controller_data(chip);
John Rigbyb081c2e2010-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 Lapindfe64e22013-01-14 03:46:50 +0000657 return 0;
John Rigbyb081c2e2010-01-26 19:24:18 -0700658}
659
660static int mxc_nand_correct_data(struct mtd_info *mtd, u_char *dat,
661 u_char *read_ecc, u_char *calc_ecc)
662{
Scott Wood17cb4b82016-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ébaudeauc1db8dd2012-08-13 22:49:42 +0200665 uint32_t ecc_status = readl(&host->regs->ecc_status_result);
John Rigbyb081c2e2010-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 Woodceee07b2016-05-30 13:57:58 -0500683 return -EBADMSG;
John Rigbyb081c2e2010-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 Rigbyb081c2e2010-01-26 19:24:18 -0700698
Ilya Yanok36fab992009-08-11 02:32:54 +0400699static int mxc_nand_correct_data(struct mtd_info *mtd, u_char *dat,
700 u_char *read_ecc, u_char *calc_ecc)
701{
Scott Wood17cb4b82016-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 Yanok36fab992009-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ébaudeau2dc0aa02013-04-11 09:35:36 +0000710 uint16_t ecc_status = readnfc(&host->regs->ecc_status_result);
Ilya Yanok36fab992009-08-11 02:32:54 +0400711
712 if (((ecc_status & 0x3) == 2) || ((ecc_status >> 2) == 2)) {
713 MTDDEBUG(MTD_DEBUG_LEVEL0,
714 "MXC_NAND: HWECC uncorrectable 2-bit ECC error\n");
Scott Woodceee07b2016-05-30 13:57:58 -0500715 return -EBADMSG;
Ilya Yanok36fab992009-08-11 02:32:54 +0400716 }
717
718 return 0;
719}
John Rigbyb081c2e2010-01-26 19:24:18 -0700720#endif
721
Ilya Yanok36fab992009-08-11 02:32:54 +0400722static int mxc_nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
723 u_char *ecc_code)
724{
725 return 0;
726}
727#endif
728
729static u_char mxc_nand_read_byte(struct mtd_info *mtd)
730{
Scott Wood17cb4b82016-05-30 13:57:56 -0500731 struct nand_chip *nand_chip = mtd_to_nand(mtd);
732 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Ilya Yanok36fab992009-08-11 02:32:54 +0400733 uint8_t ret = 0;
734 uint16_t col;
735 uint16_t __iomem *main_buf =
John Rigbyb081c2e2010-01-26 19:24:18 -0700736 (uint16_t __iomem *)host->regs->main_area[0];
Ilya Yanok36fab992009-08-11 02:32:54 +0400737 uint16_t __iomem *spare_buf =
John Rigbyb081c2e2010-01-26 19:24:18 -0700738 (uint16_t __iomem *)host->regs->spare_area[0];
Ilya Yanok36fab992009-08-11 02:32:54 +0400739 union {
740 uint16_t word;
741 uint8_t bytes[2];
742 } nfc_word;
743
744 /* Check for status request */
745 if (host->status_request)
746 return get_dev_status(host) & 0xFF;
747
748 /* Get column for 16-bit access */
749 col = host->col_addr >> 1;
750
751 /* If we are accessing the spare region */
752 if (host->spare_only)
753 nfc_word.word = readw(&spare_buf[col]);
754 else
755 nfc_word.word = readw(&main_buf[col]);
756
757 /* Pick upper/lower byte of word from RAM buffer */
758 ret = nfc_word.bytes[host->col_addr & 0x1];
759
760 /* Update saved column address */
761 if (nand_chip->options & NAND_BUSWIDTH_16)
762 host->col_addr += 2;
763 else
764 host->col_addr++;
765
766 return ret;
767}
768
769static uint16_t mxc_nand_read_word(struct mtd_info *mtd)
770{
Scott Wood17cb4b82016-05-30 13:57:56 -0500771 struct nand_chip *nand_chip = mtd_to_nand(mtd);
772 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Ilya Yanok36fab992009-08-11 02:32:54 +0400773 uint16_t col, ret;
774 uint16_t __iomem *p;
775
776 MTDDEBUG(MTD_DEBUG_LEVEL3,
777 "mxc_nand_read_word(col = %d)\n", host->col_addr);
778
779 col = host->col_addr;
780 /* Adjust saved column address */
781 if (col < mtd->writesize && host->spare_only)
782 col += mtd->writesize;
783
784 if (col < mtd->writesize) {
John Rigbyb081c2e2010-01-26 19:24:18 -0700785 p = (uint16_t __iomem *)(host->regs->main_area[0] +
786 (col >> 1));
Ilya Yanok36fab992009-08-11 02:32:54 +0400787 } else {
John Rigbyb081c2e2010-01-26 19:24:18 -0700788 p = (uint16_t __iomem *)(host->regs->spare_area[0] +
Ilya Yanok36fab992009-08-11 02:32:54 +0400789 ((col - mtd->writesize) >> 1));
790 }
791
792 if (col & 1) {
793 union {
794 uint16_t word;
795 uint8_t bytes[2];
796 } nfc_word[3];
797
798 nfc_word[0].word = readw(p);
799 nfc_word[1].word = readw(p + 1);
800
801 nfc_word[2].bytes[0] = nfc_word[0].bytes[1];
802 nfc_word[2].bytes[1] = nfc_word[1].bytes[0];
803
804 ret = nfc_word[2].word;
805 } else {
806 ret = readw(p);
807 }
808
809 /* Update saved column address */
810 host->col_addr = col + 2;
811
812 return ret;
813}
814
815/*
816 * Write data of length len to buffer buf. The data to be
817 * written on NAND Flash is first copied to RAMbuffer. After the Data Input
818 * Operation by the NFC, the data is written to NAND Flash
819 */
820static void mxc_nand_write_buf(struct mtd_info *mtd,
821 const u_char *buf, int len)
822{
Scott Wood17cb4b82016-05-30 13:57:56 -0500823 struct nand_chip *nand_chip = mtd_to_nand(mtd);
824 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Ilya Yanok36fab992009-08-11 02:32:54 +0400825 int n, col, i = 0;
826
827 MTDDEBUG(MTD_DEBUG_LEVEL3,
828 "mxc_nand_write_buf(col = %d, len = %d)\n", host->col_addr,
829 len);
830
831 col = host->col_addr;
832
833 /* Adjust saved column address */
834 if (col < mtd->writesize && host->spare_only)
835 col += mtd->writesize;
836
837 n = mtd->writesize + mtd->oobsize - col;
838 n = min(len, n);
839
840 MTDDEBUG(MTD_DEBUG_LEVEL3,
841 "%s:%d: col = %d, n = %d\n", __func__, __LINE__, col, n);
842
843 while (n > 0) {
844 void __iomem *p;
845
846 if (col < mtd->writesize) {
John Rigbyb081c2e2010-01-26 19:24:18 -0700847 p = host->regs->main_area[0] + (col & ~3);
Ilya Yanok36fab992009-08-11 02:32:54 +0400848 } else {
John Rigbyb081c2e2010-01-26 19:24:18 -0700849 p = host->regs->spare_area[0] -
Ilya Yanok36fab992009-08-11 02:32:54 +0400850 mtd->writesize + (col & ~3);
851 }
852
853 MTDDEBUG(MTD_DEBUG_LEVEL3, "%s:%d: p = %p\n", __func__,
854 __LINE__, p);
855
856 if (((col | (unsigned long)&buf[i]) & 3) || n < 4) {
857 union {
858 uint32_t word;
859 uint8_t bytes[4];
860 } nfc_word;
861
862 nfc_word.word = readl(p);
863 nfc_word.bytes[col & 3] = buf[i++];
864 n--;
865 col++;
866
867 writel(nfc_word.word, p);
868 } else {
869 int m = mtd->writesize - col;
870
871 if (col >= mtd->writesize)
872 m += mtd->oobsize;
873
874 m = min(n, m) & ~3;
875
876 MTDDEBUG(MTD_DEBUG_LEVEL3,
877 "%s:%d: n = %d, m = %d, i = %d, col = %d\n",
878 __func__, __LINE__, n, m, i, col);
879
880 mxc_nand_memcpy32(p, (uint32_t *)&buf[i], m);
881 col += m;
882 i += m;
883 n -= m;
884 }
885 }
886 /* Update saved column address */
887 host->col_addr = col;
888}
889
890/*
891 * Read the data buffer from the NAND Flash. To read the data from NAND
892 * Flash first the data output cycle is initiated by the NFC, which copies
893 * the data to RAMbuffer. This data of length len is then copied to buffer buf.
894 */
895static void mxc_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
896{
Scott Wood17cb4b82016-05-30 13:57:56 -0500897 struct nand_chip *nand_chip = mtd_to_nand(mtd);
898 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Ilya Yanok36fab992009-08-11 02:32:54 +0400899 int n, col, i = 0;
900
901 MTDDEBUG(MTD_DEBUG_LEVEL3,
902 "mxc_nand_read_buf(col = %d, len = %d)\n", host->col_addr, len);
903
904 col = host->col_addr;
905
906 /* Adjust saved column address */
907 if (col < mtd->writesize && host->spare_only)
908 col += mtd->writesize;
909
910 n = mtd->writesize + mtd->oobsize - col;
911 n = min(len, n);
912
913 while (n > 0) {
914 void __iomem *p;
915
916 if (col < mtd->writesize) {
John Rigbyb081c2e2010-01-26 19:24:18 -0700917 p = host->regs->main_area[0] + (col & ~3);
Ilya Yanok36fab992009-08-11 02:32:54 +0400918 } else {
John Rigbyb081c2e2010-01-26 19:24:18 -0700919 p = host->regs->spare_area[0] -
Ilya Yanok36fab992009-08-11 02:32:54 +0400920 mtd->writesize + (col & ~3);
921 }
922
923 if (((col | (int)&buf[i]) & 3) || n < 4) {
924 union {
925 uint32_t word;
926 uint8_t bytes[4];
927 } nfc_word;
928
929 nfc_word.word = readl(p);
930 buf[i++] = nfc_word.bytes[col & 3];
931 n--;
932 col++;
933 } else {
934 int m = mtd->writesize - col;
935
936 if (col >= mtd->writesize)
937 m += mtd->oobsize;
938
939 m = min(n, m) & ~3;
940 mxc_nand_memcpy32((uint32_t *)&buf[i], p, m);
941
942 col += m;
943 i += m;
944 n -= m;
945 }
946 }
947 /* Update saved column address */
948 host->col_addr = col;
949}
950
Ilya Yanok36fab992009-08-11 02:32:54 +0400951/*
952 * This function is used by upper layer for select and
953 * deselect of the NAND chip
954 */
955static void mxc_nand_select_chip(struct mtd_info *mtd, int chip)
956{
Scott Wood17cb4b82016-05-30 13:57:56 -0500957 struct nand_chip *nand_chip = mtd_to_nand(mtd);
958 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Ilya Yanok36fab992009-08-11 02:32:54 +0400959
960 switch (chip) {
961 case -1:
962 /* TODO: Disable the NFC clock */
963 if (host->clk_act)
964 host->clk_act = 0;
965 break;
966 case 0:
967 /* TODO: Enable the NFC clock */
968 if (!host->clk_act)
969 host->clk_act = 1;
970 break;
971
972 default:
973 break;
974 }
975}
976
977/*
978 * Used by the upper layer to write command to NAND Flash for
979 * different operations to be carried out on NAND Flash
980 */
John Rigbyb081c2e2010-01-26 19:24:18 -0700981void mxc_nand_command(struct mtd_info *mtd, unsigned command,
Ilya Yanok36fab992009-08-11 02:32:54 +0400982 int column, int page_addr)
983{
Scott Wood17cb4b82016-05-30 13:57:56 -0500984 struct nand_chip *nand_chip = mtd_to_nand(mtd);
985 struct mxc_nand_host *host = nand_get_controller_data(nand_chip);
Ilya Yanok36fab992009-08-11 02:32:54 +0400986
987 MTDDEBUG(MTD_DEBUG_LEVEL3,
988 "mxc_nand_command (cmd = 0x%x, col = 0x%x, page = 0x%x)\n",
989 command, column, page_addr);
990
991 /* Reset command state information */
992 host->status_request = false;
993
994 /* Command pre-processing step */
995 switch (command) {
996
997 case NAND_CMD_STATUS:
998 host->col_addr = 0;
999 host->status_request = true;
1000 break;
1001
1002 case NAND_CMD_READ0:
John Rigbyb081c2e2010-01-26 19:24:18 -07001003 host->page_addr = page_addr;
Ilya Yanok36fab992009-08-11 02:32:54 +04001004 host->col_addr = column;
1005 host->spare_only = false;
1006 break;
1007
1008 case NAND_CMD_READOOB:
1009 host->col_addr = column;
1010 host->spare_only = true;
1011 if (host->pagesize_2k)
1012 command = NAND_CMD_READ0; /* only READ0 is valid */
1013 break;
1014
1015 case NAND_CMD_SEQIN:
1016 if (column >= mtd->writesize) {
1017 /*
1018 * before sending SEQIN command for partial write,
1019 * we need read one page out. FSL NFC does not support
Helmut Raiger780f30b2011-07-06 09:40:28 +02001020 * partial write. It always sends out 512+ecc+512+ecc
Ilya Yanok36fab992009-08-11 02:32:54 +04001021 * for large page nand flash. But for small page nand
1022 * flash, it does support SPARE ONLY operation.
1023 */
1024 if (host->pagesize_2k) {
1025 /* call ourself to read a page */
1026 mxc_nand_command(mtd, NAND_CMD_READ0, 0,
1027 page_addr);
1028 }
1029
1030 host->col_addr = column - mtd->writesize;
1031 host->spare_only = true;
1032
1033 /* Set program pointer to spare region */
1034 if (!host->pagesize_2k)
1035 send_cmd(host, NAND_CMD_READOOB);
1036 } else {
1037 host->spare_only = false;
1038 host->col_addr = column;
1039
1040 /* Set program pointer to page start */
1041 if (!host->pagesize_2k)
1042 send_cmd(host, NAND_CMD_READ0);
1043 }
1044 break;
1045
1046 case NAND_CMD_PAGEPROG:
1047 send_prog_page(host, 0, host->spare_only);
1048
Benoît Thébaudeau9c60e752012-08-13 22:50:53 +02001049 if (host->pagesize_2k && is_mxc_nfc_1()) {
Helmut Raiger780f30b2011-07-06 09:40:28 +02001050 /* data in 4 areas */
Ilya Yanok36fab992009-08-11 02:32:54 +04001051 send_prog_page(host, 1, host->spare_only);
1052 send_prog_page(host, 2, host->spare_only);
1053 send_prog_page(host, 3, host->spare_only);
1054 }
1055
1056 break;
1057 }
1058
1059 /* Write out the command to the device. */
1060 send_cmd(host, command);
1061
1062 /* Write out column address, if necessary */
1063 if (column != -1) {
1064 /*
1065 * MXC NANDFC can only perform full page+spare or
Helmut Raiger780f30b2011-07-06 09:40:28 +02001066 * spare-only read/write. When the upper layers perform
1067 * a read/write buffer operation, we will use the saved
1068 * column address to index into the full page.
Ilya Yanok36fab992009-08-11 02:32:54 +04001069 */
1070 send_addr(host, 0);
1071 if (host->pagesize_2k)
1072 /* another col addr cycle for 2k page */
1073 send_addr(host, 0);
1074 }
1075
1076 /* Write out page address, if necessary */
1077 if (page_addr != -1) {
John Rigbyb081c2e2010-01-26 19:24:18 -07001078 u32 page_mask = nand_chip->pagemask;
1079 do {
1080 send_addr(host, page_addr & 0xFF);
1081 page_addr >>= 8;
1082 page_mask >>= 8;
1083 } while (page_mask);
Ilya Yanok36fab992009-08-11 02:32:54 +04001084 }
1085
1086 /* Command post-processing step */
1087 switch (command) {
1088
1089 case NAND_CMD_RESET:
1090 break;
1091
1092 case NAND_CMD_READOOB:
1093 case NAND_CMD_READ0:
1094 if (host->pagesize_2k) {
1095 /* send read confirm command */
1096 send_cmd(host, NAND_CMD_READSTART);
1097 /* read for each AREA */
1098 send_read_page(host, 0, host->spare_only);
Benoît Thébaudeau9c60e752012-08-13 22:50:53 +02001099 if (is_mxc_nfc_1()) {
John Rigbyb081c2e2010-01-26 19:24:18 -07001100 send_read_page(host, 1, host->spare_only);
1101 send_read_page(host, 2, host->spare_only);
1102 send_read_page(host, 3, host->spare_only);
1103 }
Ilya Yanok36fab992009-08-11 02:32:54 +04001104 } else {
1105 send_read_page(host, 0, host->spare_only);
1106 }
1107 break;
1108
1109 case NAND_CMD_READID:
1110 host->col_addr = 0;
1111 send_read_id(host);
1112 break;
1113
1114 case NAND_CMD_PAGEPROG:
1115 break;
1116
1117 case NAND_CMD_STATUS:
1118 break;
1119
1120 case NAND_CMD_ERASE2:
1121 break;
1122 }
1123}
1124
Timo Ketolaa1028732012-04-18 22:55:31 +00001125#ifdef CONFIG_SYS_NAND_USE_FLASH_BBT
1126
1127static u8 bbt_pattern[] = {'B', 'b', 't', '0' };
1128static u8 mirror_pattern[] = {'1', 't', 'b', 'B' };
1129
1130static struct nand_bbt_descr bbt_main_descr = {
1131 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
1132 NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1133 .offs = 0,
1134 .len = 4,
1135 .veroffs = 4,
1136 .maxblocks = 4,
1137 .pattern = bbt_pattern,
1138};
1139
1140static struct nand_bbt_descr bbt_mirror_descr = {
1141 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
1142 NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1143 .offs = 0,
1144 .len = 4,
1145 .veroffs = 4,
1146 .maxblocks = 4,
1147 .pattern = mirror_pattern,
1148};
1149
1150#endif
1151
Ilya Yanok36fab992009-08-11 02:32:54 +04001152int board_nand_init(struct nand_chip *this)
1153{
Ilya Yanok36fab992009-08-11 02:32:54 +04001154 struct mtd_info *mtd;
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +00001155#if defined(MXC_NFC_V2_1) || defined(MXC_NFC_V3_2)
1156 uint32_t tmp;
Tom Riniefa1f432012-09-18 09:24:22 -07001157#endif
Ilya Yanok36fab992009-08-11 02:32:54 +04001158
Timo Ketolaa1028732012-04-18 22:55:31 +00001159#ifdef CONFIG_SYS_NAND_USE_FLASH_BBT
Sergey Lapindfe64e22013-01-14 03:46:50 +00001160 this->bbt_options |= NAND_BBT_USE_FLASH;
Timo Ketolaa1028732012-04-18 22:55:31 +00001161 this->bbt_td = &bbt_main_descr;
1162 this->bbt_md = &bbt_mirror_descr;
1163#endif
1164
Ilya Yanok36fab992009-08-11 02:32:54 +04001165 /* structures must be linked */
Scott Woodb616d9b2016-05-30 13:57:55 -05001166 mtd = &this->mtd;
Ilya Yanok36fab992009-08-11 02:32:54 +04001167 host->nand = this;
1168
1169 /* 5 us command delay time */
1170 this->chip_delay = 5;
1171
Scott Wood17cb4b82016-05-30 13:57:56 -05001172 nand_set_controller_data(this, host);
Ilya Yanok36fab992009-08-11 02:32:54 +04001173 this->dev_ready = mxc_nand_dev_ready;
1174 this->cmdfunc = mxc_nand_command;
1175 this->select_chip = mxc_nand_select_chip;
1176 this->read_byte = mxc_nand_read_byte;
1177 this->read_word = mxc_nand_read_word;
1178 this->write_buf = mxc_nand_write_buf;
1179 this->read_buf = mxc_nand_read_buf;
Ilya Yanok36fab992009-08-11 02:32:54 +04001180
Benoît Thébaudeauda962b72013-04-11 09:35:51 +00001181 host->regs = (struct mxc_nand_regs __iomem *)CONFIG_MXC_NAND_REGS_BASE;
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +00001182#ifdef MXC_NFC_V3_2
1183 host->ip_regs =
Benoît Thébaudeauda962b72013-04-11 09:35:51 +00001184 (struct mxc_nand_ip_regs __iomem *)CONFIG_MXC_NAND_IP_REGS_BASE;
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +00001185#endif
Ilya Yanok36fab992009-08-11 02:32:54 +04001186 host->clk_act = 1;
1187
1188#ifdef CONFIG_MXC_NAND_HWECC
1189 this->ecc.calculate = mxc_nand_calculate_ecc;
1190 this->ecc.hwctl = mxc_nand_enable_hwecc;
1191 this->ecc.correct = mxc_nand_correct_data;
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +00001192 if (is_mxc_nfc_21() || is_mxc_nfc_32()) {
John Rigbyb081c2e2010-01-26 19:24:18 -07001193 this->ecc.mode = NAND_ECC_HW_SYNDROME;
1194 this->ecc.read_page = mxc_nand_read_page_syndrome;
1195 this->ecc.read_page_raw = mxc_nand_read_page_raw_syndrome;
1196 this->ecc.read_oob = mxc_nand_read_oob_syndrome;
1197 this->ecc.write_page = mxc_nand_write_page_syndrome;
1198 this->ecc.write_page_raw = mxc_nand_write_page_raw_syndrome;
1199 this->ecc.write_oob = mxc_nand_write_oob_syndrome;
1200 this->ecc.bytes = 9;
1201 this->ecc.prepad = 7;
1202 } else {
1203 this->ecc.mode = NAND_ECC_HW;
1204 }
1205
Marek Vasut1c903692013-07-03 02:34:34 +02001206 if (is_mxc_nfc_1())
1207 this->ecc.strength = 1;
1208 else
1209 this->ecc.strength = 4;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001210
John Rigbyb081c2e2010-01-26 19:24:18 -07001211 host->pagesize_2k = 0;
1212
Ilya Yanok36fab992009-08-11 02:32:54 +04001213 this->ecc.size = 512;
Benoît Thébaudeau0e499b02012-08-13 22:50:07 +02001214 _mxc_nand_enable_hwecc(mtd, 1);
Ilya Yanok36fab992009-08-11 02:32:54 +04001215#else
1216 this->ecc.layout = &nand_soft_eccoob;
1217 this->ecc.mode = NAND_ECC_SOFT;
Benoît Thébaudeau0e499b02012-08-13 22:50:07 +02001218 _mxc_nand_enable_hwecc(mtd, 0);
Ilya Yanok36fab992009-08-11 02:32:54 +04001219#endif
Ilya Yanok36fab992009-08-11 02:32:54 +04001220 /* Reset NAND */
1221 this->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
1222
Benoît Thébaudeau13927f02012-08-13 22:50:30 +02001223 /* NAND bus width determines access functions used by upper layer */
1224 if (is_16bit_nand())
1225 this->options |= NAND_BUSWIDTH_16;
1226
1227#ifdef CONFIG_SYS_NAND_LARGEPAGE
1228 host->pagesize_2k = 1;
1229 this->ecc.layout = &nand_hw_eccoob2k;
1230#else
1231 host->pagesize_2k = 0;
1232 this->ecc.layout = &nand_hw_eccoob;
1233#endif
1234
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +00001235#if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
Benoît Thébaudeau9c60e752012-08-13 22:50:53 +02001236#ifdef MXC_NFC_V2_1
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +00001237 tmp = readnfc(&host->regs->config1);
1238 tmp |= NFC_V2_CONFIG1_ONE_CYCLE;
1239 tmp |= NFC_V2_CONFIG1_ECC_MODE_4;
1240 writenfc(tmp, &host->regs->config1);
Benoît Thébaudeau13927f02012-08-13 22:50:30 +02001241 if (host->pagesize_2k)
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +00001242 writenfc(64/2, &host->regs->spare_area_size);
Benoît Thébaudeau13927f02012-08-13 22:50:30 +02001243 else
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +00001244 writenfc(16/2, &host->regs->spare_area_size);
Benoît Thébaudeau13927f02012-08-13 22:50:30 +02001245#endif
1246
Ilya Yanok36fab992009-08-11 02:32:54 +04001247 /*
1248 * preset operation
1249 * Unlock the internal RAM Buffer
1250 */
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +00001251 writenfc(0x2, &host->regs->config);
Ilya Yanok36fab992009-08-11 02:32:54 +04001252
1253 /* Blocks to be unlocked */
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +00001254 writenfc(0x0, &host->regs->unlockstart_blkaddr);
Helmut Raigerb4b1e762011-07-06 19:04:41 +02001255 /* Originally (Freescale LTIB 2.6.21) 0x4000 was written to the
1256 * unlockend_blkaddr, but the magic 0x4000 does not always work
1257 * when writing more than some 32 megabytes (on 2k page nands)
1258 * However 0xFFFF doesn't seem to have this kind
1259 * of limitation (tried it back and forth several times).
1260 * The linux kernel driver sets this to 0xFFFF for the v2 controller
1261 * only, but probably this was not tested there for v1.
1262 * The very same limitation seems to apply to this kernel driver.
1263 * This might be NAND chip specific and the i.MX31 datasheet is
1264 * extremely vague about the semantics of this register.
1265 */
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +00001266 writenfc(0xFFFF, &host->regs->unlockend_blkaddr);
Ilya Yanok36fab992009-08-11 02:32:54 +04001267
1268 /* Unlock Block Command for given address range */
Benoît Thébaudeau2dc0aa02013-04-11 09:35:36 +00001269 writenfc(0x4, &host->regs->wrprot);
Benoît Thébaudeau35537bc2013-04-11 09:35:37 +00001270#elif defined(MXC_NFC_V3_2)
1271 writenfc(NFC_V3_CONFIG1_RBA(0), &host->regs->config1);
1272 writenfc(NFC_V3_IPC_CREQ, &host->ip_regs->ipc);
1273
1274 /* Unlock the internal RAM Buffer */
1275 writenfc(NFC_V3_WRPROT_BLS_UNLOCK | NFC_V3_WRPROT_UNLOCK,
1276 &host->ip_regs->wrprot);
1277
1278 /* Blocks to be unlocked */
1279 for (tmp = 0; tmp < CONFIG_SYS_NAND_MAX_CHIPS; tmp++)
1280 writenfc(0x0 | 0xFFFF << 16,
1281 &host->ip_regs->wrprot_unlock_blkaddr[tmp]);
1282
1283 writenfc(0, &host->ip_regs->ipc);
1284
1285 tmp = readnfc(&host->ip_regs->config2);
1286 tmp &= ~(NFC_V3_CONFIG2_SPAS_MASK | NFC_V3_CONFIG2_EDC_MASK |
1287 NFC_V3_CONFIG2_ECC_MODE_8 | NFC_V3_CONFIG2_PS_MASK);
1288 tmp |= NFC_V3_CONFIG2_ONE_CYCLE;
1289
1290 if (host->pagesize_2k) {
1291 tmp |= NFC_V3_CONFIG2_SPAS(64/2);
1292 tmp |= NFC_V3_CONFIG2_PS_2048;
1293 } else {
1294 tmp |= NFC_V3_CONFIG2_SPAS(16/2);
1295 tmp |= NFC_V3_CONFIG2_PS_512;
1296 }
1297
1298 writenfc(tmp, &host->ip_regs->config2);
1299
1300 tmp = NFC_V3_CONFIG3_NUM_OF_DEVS(0) |
1301 NFC_V3_CONFIG3_NO_SDMA |
1302 NFC_V3_CONFIG3_RBB_MODE |
1303 NFC_V3_CONFIG3_SBB(6) | /* Reset default */
1304 NFC_V3_CONFIG3_ADD_OP(0);
1305
1306 if (!(this->options & NAND_BUSWIDTH_16))
1307 tmp |= NFC_V3_CONFIG3_FW8;
1308
1309 writenfc(tmp, &host->ip_regs->config3);
1310
1311 writenfc(0, &host->ip_regs->delay_line);
1312#endif
Ilya Yanok36fab992009-08-11 02:32:54 +04001313
Benoît Thébaudeau365b2c02012-08-13 22:48:26 +02001314 return 0;
Ilya Yanok36fab992009-08-11 02:32:54 +04001315}