blob: d4d824ef64e9fb395af3bc549daae72b96731e16 [file] [log] [blame]
Huang Shijie10a2bca2011-09-08 10:47:09 +08001/*
2 * Freescale GPMI NAND Flash Driver
3 *
Huang Shijie026918e2015-12-02 16:47:40 -06004 * Copyright (C) 2010-2015 Freescale Semiconductor, Inc.
Huang Shijie10a2bca2011-09-08 10:47:09 +08005 * Copyright (C) 2008 Embedded Alley Solutions, Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21#include <linux/clk.h>
22#include <linux/slab.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010023#include <linux/sched/task_stack.h>
Huang Shijie10a2bca2011-09-08 10:47:09 +080024#include <linux/interrupt.h>
Wolfram Sangdf16c862011-11-23 15:57:06 +010025#include <linux/module.h>
Huang Shijie10a2bca2011-09-08 10:47:09 +080026#include <linux/mtd/partitions.h>
Huang Shijiee10db1f2012-05-04 21:42:05 -040027#include <linux/of.h>
28#include <linux/of_device.h>
Huang Shijie10a2bca2011-09-08 10:47:09 +080029#include "gpmi-nand.h"
Huang Shijieb8e29312014-01-03 11:01:42 +080030#include "bch-regs.h"
Huang Shijie10a2bca2011-09-08 10:47:09 +080031
Huang Shijie5de0b522012-10-13 13:03:29 -040032/* Resource names for the GPMI NAND driver. */
33#define GPMI_NAND_GPMI_REGS_ADDR_RES_NAME "gpmi-nand"
34#define GPMI_NAND_BCH_REGS_ADDR_RES_NAME "bch"
35#define GPMI_NAND_BCH_INTERRUPT_RES_NAME "bch"
Huang Shijie5de0b522012-10-13 13:03:29 -040036
Huang Shijie10a2bca2011-09-08 10:47:09 +080037/* add our owner bbt descriptor */
38static uint8_t scan_ff_pattern[] = { 0xff };
39static struct nand_bbt_descr gpmi_bbt_descr = {
40 .options = 0,
41 .offs = 0,
42 .len = 1,
43 .pattern = scan_ff_pattern
44};
45
Huang Shijie7a2b89a2013-09-25 14:58:15 +080046/*
47 * We may change the layout if we can get the ECC info from the datasheet,
48 * else we will use all the (page + OOB).
49 */
Boris Brezillon3f158e42016-02-03 20:01:54 +010050static int gpmi_ooblayout_ecc(struct mtd_info *mtd, int section,
51 struct mtd_oob_region *oobregion)
52{
53 struct nand_chip *chip = mtd_to_nand(mtd);
54 struct gpmi_nand_data *this = nand_get_controller_data(chip);
55 struct bch_geometry *geo = &this->bch_geometry;
56
57 if (section)
58 return -ERANGE;
59
60 oobregion->offset = 0;
61 oobregion->length = geo->page_size - mtd->writesize;
62
63 return 0;
64}
65
66static int gpmi_ooblayout_free(struct mtd_info *mtd, int section,
67 struct mtd_oob_region *oobregion)
68{
69 struct nand_chip *chip = mtd_to_nand(mtd);
70 struct gpmi_nand_data *this = nand_get_controller_data(chip);
71 struct bch_geometry *geo = &this->bch_geometry;
72
73 if (section)
74 return -ERANGE;
75
76 /* The available oob size we have. */
77 if (geo->page_size < mtd->writesize + mtd->oobsize) {
78 oobregion->offset = geo->page_size - mtd->writesize;
79 oobregion->length = mtd->oobsize - oobregion->offset;
80 }
81
82 return 0;
83}
84
Stefan Agner6b7ee722017-04-21 18:23:34 -070085static const char * const gpmi_clks_for_mx2x[] = {
86 "gpmi_io",
87};
88
Boris Brezillon3f158e42016-02-03 20:01:54 +010089static const struct mtd_ooblayout_ops gpmi_ooblayout_ops = {
90 .ecc = gpmi_ooblayout_ecc,
91 .free = gpmi_ooblayout_free,
Huang Shijie10a2bca2011-09-08 10:47:09 +080092};
93
Huang Shijie6189ccc2014-03-21 18:19:39 +080094static const struct gpmi_devdata gpmi_devdata_imx23 = {
95 .type = IS_MX23,
96 .bch_max_ecc_strength = 20,
97 .max_chain_delay = 16,
Stefan Agner6b7ee722017-04-21 18:23:34 -070098 .clks = gpmi_clks_for_mx2x,
99 .clks_count = ARRAY_SIZE(gpmi_clks_for_mx2x),
Huang Shijie6189ccc2014-03-21 18:19:39 +0800100};
101
102static const struct gpmi_devdata gpmi_devdata_imx28 = {
103 .type = IS_MX28,
104 .bch_max_ecc_strength = 20,
105 .max_chain_delay = 16,
Stefan Agner6b7ee722017-04-21 18:23:34 -0700106 .clks = gpmi_clks_for_mx2x,
107 .clks_count = ARRAY_SIZE(gpmi_clks_for_mx2x),
108};
109
110static const char * const gpmi_clks_for_mx6[] = {
111 "gpmi_io", "gpmi_apb", "gpmi_bch", "gpmi_bch_apb", "per1_bch",
Huang Shijie6189ccc2014-03-21 18:19:39 +0800112};
113
114static const struct gpmi_devdata gpmi_devdata_imx6q = {
115 .type = IS_MX6Q,
116 .bch_max_ecc_strength = 40,
117 .max_chain_delay = 12,
Stefan Agner6b7ee722017-04-21 18:23:34 -0700118 .clks = gpmi_clks_for_mx6,
119 .clks_count = ARRAY_SIZE(gpmi_clks_for_mx6),
Huang Shijie6189ccc2014-03-21 18:19:39 +0800120};
121
Huang Shijie91f54982014-03-27 10:43:22 +0800122static const struct gpmi_devdata gpmi_devdata_imx6sx = {
123 .type = IS_MX6SX,
124 .bch_max_ecc_strength = 62,
125 .max_chain_delay = 12,
Stefan Agner6b7ee722017-04-21 18:23:34 -0700126 .clks = gpmi_clks_for_mx6,
127 .clks_count = ARRAY_SIZE(gpmi_clks_for_mx6),
Huang Shijie91f54982014-03-27 10:43:22 +0800128};
129
Stefan Agnerb4af6942017-04-21 18:23:35 -0700130static const char * const gpmi_clks_for_mx7d[] = {
131 "gpmi_io", "gpmi_bch_apb",
132};
133
134static const struct gpmi_devdata gpmi_devdata_imx7d = {
135 .type = IS_MX7D,
136 .bch_max_ecc_strength = 62,
137 .max_chain_delay = 12,
138 .clks = gpmi_clks_for_mx7d,
139 .clks_count = ARRAY_SIZE(gpmi_clks_for_mx7d),
140};
141
Huang Shijie10a2bca2011-09-08 10:47:09 +0800142static irqreturn_t bch_irq(int irq, void *cookie)
143{
144 struct gpmi_nand_data *this = cookie;
145
146 gpmi_clear_bch(this);
147 complete(&this->bch_done);
148 return IRQ_HANDLED;
149}
150
151/*
152 * Calculate the ECC strength by hand:
153 * E : The ECC strength.
154 * G : the length of Galois Field.
155 * N : The chunk count of per page.
156 * O : the oobsize of the NAND chip.
157 * M : the metasize of per page.
158 *
159 * The formula is :
160 * E * G * N
161 * ------------ <= (O - M)
162 * 8
163 *
164 * So, we get E by:
165 * (O - M) * 8
166 * E <= -------------
167 * G * N
168 */
169static inline int get_ecc_strength(struct gpmi_nand_data *this)
170{
171 struct bch_geometry *geo = &this->bch_geometry;
Boris BREZILLON2a690b22015-12-10 09:00:07 +0100172 struct mtd_info *mtd = nand_to_mtd(&this->nand);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800173 int ecc_strength;
174
175 ecc_strength = ((mtd->oobsize - geo->metadata_size) * 8)
176 / (geo->gf_len * geo->ecc_chunk_count);
177
178 /* We need the minor even number. */
179 return round_down(ecc_strength, 2);
180}
181
Huang Shijie92d0e092013-01-29 09:23:38 +0800182static inline bool gpmi_check_ecc(struct gpmi_nand_data *this)
183{
184 struct bch_geometry *geo = &this->bch_geometry;
185
186 /* Do the sanity check. */
187 if (GPMI_IS_MX23(this) || GPMI_IS_MX28(this)) {
188 /* The mx23/mx28 only support the GF13. */
189 if (geo->gf_len == 14)
190 return false;
Huang Shijie92d0e092013-01-29 09:23:38 +0800191 }
Huang Shijie6189ccc2014-03-21 18:19:39 +0800192 return geo->ecc_strength <= this->devdata->bch_max_ecc_strength;
Huang Shijie92d0e092013-01-29 09:23:38 +0800193}
194
Huang Shijie2febcdf2013-05-17 11:17:34 +0800195/*
196 * If we can get the ECC information from the nand chip, we do not
197 * need to calculate them ourselves.
198 *
199 * We may have available oob space in this case.
200 */
Han Xub8b0e462015-12-02 16:47:43 -0600201static int set_geometry_by_ecc_info(struct gpmi_nand_data *this)
Huang Shijie2febcdf2013-05-17 11:17:34 +0800202{
203 struct bch_geometry *geo = &this->bch_geometry;
Boris BREZILLON2a690b22015-12-10 09:00:07 +0100204 struct nand_chip *chip = &this->nand;
205 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie2febcdf2013-05-17 11:17:34 +0800206 unsigned int block_mark_bit_offset;
207
208 if (!(chip->ecc_strength_ds > 0 && chip->ecc_step_ds > 0))
Han Xub8b0e462015-12-02 16:47:43 -0600209 return -EINVAL;
Huang Shijie2febcdf2013-05-17 11:17:34 +0800210
211 switch (chip->ecc_step_ds) {
212 case SZ_512:
213 geo->gf_len = 13;
214 break;
215 case SZ_1K:
216 geo->gf_len = 14;
217 break;
218 default:
219 dev_err(this->dev,
220 "unsupported nand chip. ecc bits : %d, ecc size : %d\n",
221 chip->ecc_strength_ds, chip->ecc_step_ds);
Han Xub8b0e462015-12-02 16:47:43 -0600222 return -EINVAL;
Huang Shijie2febcdf2013-05-17 11:17:34 +0800223 }
224 geo->ecc_chunk_size = chip->ecc_step_ds;
225 geo->ecc_strength = round_up(chip->ecc_strength_ds, 2);
226 if (!gpmi_check_ecc(this))
Han Xub8b0e462015-12-02 16:47:43 -0600227 return -EINVAL;
Huang Shijie2febcdf2013-05-17 11:17:34 +0800228
229 /* Keep the C >= O */
230 if (geo->ecc_chunk_size < mtd->oobsize) {
231 dev_err(this->dev,
232 "unsupported nand chip. ecc size: %d, oob size : %d\n",
233 chip->ecc_step_ds, mtd->oobsize);
Han Xub8b0e462015-12-02 16:47:43 -0600234 return -EINVAL;
Huang Shijie2febcdf2013-05-17 11:17:34 +0800235 }
236
237 /* The default value, see comment in the legacy_set_geometry(). */
238 geo->metadata_size = 10;
239
240 geo->ecc_chunk_count = mtd->writesize / geo->ecc_chunk_size;
241
242 /*
243 * Now, the NAND chip with 2K page(data chunk is 512byte) shows below:
244 *
245 * | P |
246 * |<----------------------------------------------------->|
247 * | |
248 * | (Block Mark) |
249 * | P' | | | |
250 * |<-------------------------------------------->| D | | O' |
251 * | |<---->| |<--->|
252 * V V V V V
253 * +---+----------+-+----------+-+----------+-+----------+-+-----+
254 * | M | data |E| data |E| data |E| data |E| |
255 * +---+----------+-+----------+-+----------+-+----------+-+-----+
256 * ^ ^
257 * | O |
258 * |<------------>|
259 * | |
260 *
261 * P : the page size for BCH module.
262 * E : The ECC strength.
263 * G : the length of Galois Field.
264 * N : The chunk count of per page.
265 * M : the metasize of per page.
266 * C : the ecc chunk size, aka the "data" above.
267 * P': the nand chip's page size.
268 * O : the nand chip's oob size.
269 * O': the free oob.
270 *
271 * The formula for P is :
272 *
273 * E * G * N
274 * P = ------------ + P' + M
275 * 8
276 *
277 * The position of block mark moves forward in the ECC-based view
278 * of page, and the delta is:
279 *
280 * E * G * (N - 1)
281 * D = (---------------- + M)
282 * 8
283 *
284 * Please see the comment in legacy_set_geometry().
285 * With the condition C >= O , we still can get same result.
286 * So the bit position of the physical block mark within the ECC-based
287 * view of the page is :
288 * (P' - D) * 8
289 */
290 geo->page_size = mtd->writesize + geo->metadata_size +
291 (geo->gf_len * geo->ecc_strength * geo->ecc_chunk_count) / 8;
292
Huang Shijie2febcdf2013-05-17 11:17:34 +0800293 geo->payload_size = mtd->writesize;
294
295 geo->auxiliary_status_offset = ALIGN(geo->metadata_size, 4);
296 geo->auxiliary_size = ALIGN(geo->metadata_size, 4)
297 + ALIGN(geo->ecc_chunk_count, 4);
298
299 if (!this->swap_block_mark)
Han Xub8b0e462015-12-02 16:47:43 -0600300 return 0;
Huang Shijie2febcdf2013-05-17 11:17:34 +0800301
302 /* For bit swap. */
303 block_mark_bit_offset = mtd->writesize * 8 -
304 (geo->ecc_strength * geo->gf_len * (geo->ecc_chunk_count - 1)
305 + geo->metadata_size * 8);
306
307 geo->block_mark_byte_offset = block_mark_bit_offset / 8;
308 geo->block_mark_bit_offset = block_mark_bit_offset % 8;
Han Xub8b0e462015-12-02 16:47:43 -0600309 return 0;
Huang Shijie2febcdf2013-05-17 11:17:34 +0800310}
311
312static int legacy_set_geometry(struct gpmi_nand_data *this)
Huang Shijie10a2bca2011-09-08 10:47:09 +0800313{
314 struct bch_geometry *geo = &this->bch_geometry;
Boris BREZILLON2a690b22015-12-10 09:00:07 +0100315 struct mtd_info *mtd = nand_to_mtd(&this->nand);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800316 unsigned int metadata_size;
317 unsigned int status_size;
318 unsigned int block_mark_bit_offset;
319
320 /*
321 * The size of the metadata can be changed, though we set it to 10
322 * bytes now. But it can't be too large, because we have to save
323 * enough space for BCH.
324 */
325 geo->metadata_size = 10;
326
327 /* The default for the length of Galois Field. */
328 geo->gf_len = 13;
329
Huang Shijie9ff16f02013-01-25 14:04:07 +0800330 /* The default for chunk size. */
Huang Shijie10a2bca2011-09-08 10:47:09 +0800331 geo->ecc_chunk_size = 512;
Huang Shijie9ff16f02013-01-25 14:04:07 +0800332 while (geo->ecc_chunk_size < mtd->oobsize) {
Huang Shijie10a2bca2011-09-08 10:47:09 +0800333 geo->ecc_chunk_size *= 2; /* keep C >= O */
Huang Shijie9ff16f02013-01-25 14:04:07 +0800334 geo->gf_len = 14;
335 }
Huang Shijie10a2bca2011-09-08 10:47:09 +0800336
337 geo->ecc_chunk_count = mtd->writesize / geo->ecc_chunk_size;
338
339 /* We use the same ECC strength for all chunks. */
340 geo->ecc_strength = get_ecc_strength(this);
Huang Shijie92d0e092013-01-29 09:23:38 +0800341 if (!gpmi_check_ecc(this)) {
342 dev_err(this->dev,
Han Xub8b0e462015-12-02 16:47:43 -0600343 "ecc strength: %d cannot be supported by the controller (%d)\n"
344 "try to use minimum ecc strength that NAND chip required\n",
Lothar Waßmannd8c03722014-06-12 15:20:42 +0200345 geo->ecc_strength,
Huang Shijie6189ccc2014-03-21 18:19:39 +0800346 this->devdata->bch_max_ecc_strength);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800347 return -EINVAL;
348 }
349
Han Xu1848a052016-04-12 17:06:33 -0500350 geo->page_size = mtd->writesize + geo->metadata_size +
351 (geo->gf_len * geo->ecc_strength * geo->ecc_chunk_count) / 8;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800352 geo->payload_size = mtd->writesize;
353
354 /*
355 * The auxiliary buffer contains the metadata and the ECC status. The
356 * metadata is padded to the nearest 32-bit boundary. The ECC status
357 * contains one byte for every ECC chunk, and is also padded to the
358 * nearest 32-bit boundary.
359 */
360 metadata_size = ALIGN(geo->metadata_size, 4);
361 status_size = ALIGN(geo->ecc_chunk_count, 4);
362
363 geo->auxiliary_size = metadata_size + status_size;
364 geo->auxiliary_status_offset = metadata_size;
365
366 if (!this->swap_block_mark)
367 return 0;
368
369 /*
370 * We need to compute the byte and bit offsets of
371 * the physical block mark within the ECC-based view of the page.
372 *
373 * NAND chip with 2K page shows below:
374 * (Block Mark)
375 * | |
376 * | D |
377 * |<---->|
378 * V V
379 * +---+----------+-+----------+-+----------+-+----------+-+
380 * | M | data |E| data |E| data |E| data |E|
381 * +---+----------+-+----------+-+----------+-+----------+-+
382 *
383 * The position of block mark moves forward in the ECC-based view
384 * of page, and the delta is:
385 *
386 * E * G * (N - 1)
387 * D = (---------------- + M)
388 * 8
389 *
390 * With the formula to compute the ECC strength, and the condition
391 * : C >= O (C is the ecc chunk size)
392 *
393 * It's easy to deduce to the following result:
394 *
395 * E * G (O - M) C - M C - M
396 * ----------- <= ------- <= -------- < ---------
397 * 8 N N (N - 1)
398 *
399 * So, we get:
400 *
401 * E * G * (N - 1)
402 * D = (---------------- + M) < C
403 * 8
404 *
405 * The above inequality means the position of block mark
406 * within the ECC-based view of the page is still in the data chunk,
407 * and it's NOT in the ECC bits of the chunk.
408 *
409 * Use the following to compute the bit position of the
410 * physical block mark within the ECC-based view of the page:
411 * (page_size - D) * 8
412 *
413 * --Huang Shijie
414 */
415 block_mark_bit_offset = mtd->writesize * 8 -
416 (geo->ecc_strength * geo->gf_len * (geo->ecc_chunk_count - 1)
417 + geo->metadata_size * 8);
418
419 geo->block_mark_byte_offset = block_mark_bit_offset / 8;
420 geo->block_mark_bit_offset = block_mark_bit_offset % 8;
421 return 0;
422}
423
Huang Shijie2febcdf2013-05-17 11:17:34 +0800424int common_nfc_set_geometry(struct gpmi_nand_data *this)
425{
Han Xub8b0e462015-12-02 16:47:43 -0600426 if ((of_property_read_bool(this->dev->of_node, "fsl,use-minimum-ecc"))
427 || legacy_set_geometry(this))
428 return set_geometry_by_ecc_info(this);
429
430 return 0;
Huang Shijie2febcdf2013-05-17 11:17:34 +0800431}
432
Huang Shijie10a2bca2011-09-08 10:47:09 +0800433struct dma_chan *get_dma_chan(struct gpmi_nand_data *this)
434{
Huang Shijiea7c12d02013-08-27 17:29:05 +0800435 /* We use the DMA channel 0 to access all the nand chips. */
436 return this->dma_chans[0];
Huang Shijie10a2bca2011-09-08 10:47:09 +0800437}
438
439/* Can we use the upper's buffer directly for DMA? */
440void prepare_data_dma(struct gpmi_nand_data *this, enum dma_data_direction dr)
441{
442 struct scatterlist *sgl = &this->data_sgl;
443 int ret;
444
Huang Shijie10a2bca2011-09-08 10:47:09 +0800445 /* first try to map the upper buffer directly */
Huang Shijie0ff76a92013-12-18 23:41:00 +0800446 if (virt_addr_valid(this->upper_buf) &&
447 !object_is_on_stack(this->upper_buf)) {
448 sg_init_one(sgl, this->upper_buf, this->upper_len);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800449 ret = dma_map_sg(this->dev, sgl, 1, dr);
450 if (ret == 0)
Huang Shijie0ff76a92013-12-18 23:41:00 +0800451 goto map_fail;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800452
Huang Shijie0ff76a92013-12-18 23:41:00 +0800453 this->direct_dma_map_ok = true;
454 return;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800455 }
Huang Shijie0ff76a92013-12-18 23:41:00 +0800456
457map_fail:
458 /* We have to use our own DMA buffer. */
459 sg_init_one(sgl, this->data_buffer_dma, this->upper_len);
460
461 if (dr == DMA_TO_DEVICE)
462 memcpy(this->data_buffer_dma, this->upper_buf, this->upper_len);
463
464 dma_map_sg(this->dev, sgl, 1, dr);
465
466 this->direct_dma_map_ok = false;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800467}
468
469/* This will be called after the DMA operation is finished. */
470static void dma_irq_callback(void *param)
471{
472 struct gpmi_nand_data *this = param;
473 struct completion *dma_c = &this->dma_done;
474
Huang Shijie10a2bca2011-09-08 10:47:09 +0800475 switch (this->dma_type) {
476 case DMA_FOR_COMMAND:
477 dma_unmap_sg(this->dev, &this->cmd_sgl, 1, DMA_TO_DEVICE);
478 break;
479
480 case DMA_FOR_READ_DATA:
481 dma_unmap_sg(this->dev, &this->data_sgl, 1, DMA_FROM_DEVICE);
482 if (this->direct_dma_map_ok == false)
483 memcpy(this->upper_buf, this->data_buffer_dma,
484 this->upper_len);
485 break;
486
487 case DMA_FOR_WRITE_DATA:
488 dma_unmap_sg(this->dev, &this->data_sgl, 1, DMA_TO_DEVICE);
489 break;
490
491 case DMA_FOR_READ_ECC_PAGE:
492 case DMA_FOR_WRITE_ECC_PAGE:
493 /* We have to wait the BCH interrupt to finish. */
494 break;
495
496 default:
Huang Shijieda40c162013-11-20 10:09:43 +0800497 dev_err(this->dev, "in wrong DMA operation.\n");
Huang Shijie10a2bca2011-09-08 10:47:09 +0800498 }
Huang Shijie7b3d2fb2013-11-11 12:13:45 +0800499
500 complete(dma_c);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800501}
502
503int start_dma_without_bch_irq(struct gpmi_nand_data *this,
504 struct dma_async_tx_descriptor *desc)
505{
506 struct completion *dma_c = &this->dma_done;
Nicholas Mc Guire706d5b22015-02-08 11:37:33 -0500507 unsigned long timeout;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800508
509 init_completion(dma_c);
510
511 desc->callback = dma_irq_callback;
512 desc->callback_param = this;
513 dmaengine_submit(desc);
Shawn Guod04525e2012-04-11 13:29:31 +0800514 dma_async_issue_pending(get_dma_chan(this));
Huang Shijie10a2bca2011-09-08 10:47:09 +0800515
516 /* Wait for the interrupt from the DMA block. */
Nicholas Mc Guire706d5b22015-02-08 11:37:33 -0500517 timeout = wait_for_completion_timeout(dma_c, msecs_to_jiffies(1000));
518 if (!timeout) {
Huang Shijieda40c162013-11-20 10:09:43 +0800519 dev_err(this->dev, "DMA timeout, last DMA :%d\n",
520 this->last_dma_type);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800521 gpmi_dump_info(this);
522 return -ETIMEDOUT;
523 }
524 return 0;
525}
526
527/*
528 * This function is used in BCH reading or BCH writing pages.
529 * It will wait for the BCH interrupt as long as ONE second.
530 * Actually, we must wait for two interrupts :
531 * [1] firstly the DMA interrupt and
532 * [2] secondly the BCH interrupt.
533 */
534int start_dma_with_bch_irq(struct gpmi_nand_data *this,
535 struct dma_async_tx_descriptor *desc)
536{
537 struct completion *bch_c = &this->bch_done;
Nicholas Mc Guire706d5b22015-02-08 11:37:33 -0500538 unsigned long timeout;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800539
540 /* Prepare to receive an interrupt from the BCH block. */
541 init_completion(bch_c);
542
543 /* start the DMA */
544 start_dma_without_bch_irq(this, desc);
545
546 /* Wait for the interrupt from the BCH block. */
Nicholas Mc Guire706d5b22015-02-08 11:37:33 -0500547 timeout = wait_for_completion_timeout(bch_c, msecs_to_jiffies(1000));
548 if (!timeout) {
Huang Shijieda40c162013-11-20 10:09:43 +0800549 dev_err(this->dev, "BCH timeout, last DMA :%d\n",
550 this->last_dma_type);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800551 gpmi_dump_info(this);
552 return -ETIMEDOUT;
553 }
554 return 0;
555}
556
Greg Kroah-Hartmand8929942012-12-21 13:19:05 -0800557static int acquire_register_block(struct gpmi_nand_data *this,
558 const char *res_name)
Huang Shijie10a2bca2011-09-08 10:47:09 +0800559{
560 struct platform_device *pdev = this->pdev;
561 struct resources *res = &this->resources;
562 struct resource *r;
Huang Shijie513d57e2012-07-17 14:14:02 +0800563 void __iomem *p;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800564
565 r = platform_get_resource_byname(pdev, IORESOURCE_MEM, res_name);
Huang Shijie87a9d692013-11-14 14:25:48 +0800566 p = devm_ioremap_resource(&pdev->dev, r);
567 if (IS_ERR(p))
568 return PTR_ERR(p);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800569
570 if (!strcmp(res_name, GPMI_NAND_GPMI_REGS_ADDR_RES_NAME))
571 res->gpmi_regs = p;
572 else if (!strcmp(res_name, GPMI_NAND_BCH_REGS_ADDR_RES_NAME))
573 res->bch_regs = p;
574 else
Huang Shijieda40c162013-11-20 10:09:43 +0800575 dev_err(this->dev, "unknown resource name : %s\n", res_name);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800576
577 return 0;
578}
579
Greg Kroah-Hartmand8929942012-12-21 13:19:05 -0800580static int acquire_bch_irq(struct gpmi_nand_data *this, irq_handler_t irq_h)
Huang Shijie10a2bca2011-09-08 10:47:09 +0800581{
582 struct platform_device *pdev = this->pdev;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800583 const char *res_name = GPMI_NAND_BCH_INTERRUPT_RES_NAME;
584 struct resource *r;
585 int err;
586
587 r = platform_get_resource_byname(pdev, IORESOURCE_IRQ, res_name);
588 if (!r) {
Huang Shijieda40c162013-11-20 10:09:43 +0800589 dev_err(this->dev, "Can't get resource for %s\n", res_name);
Lothar Waßmann52a073b2013-08-07 08:15:38 +0200590 return -ENODEV;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800591 }
592
Huang Shijie3cb2c1e2013-11-14 14:25:49 +0800593 err = devm_request_irq(this->dev, r->start, irq_h, 0, res_name, this);
594 if (err)
595 dev_err(this->dev, "error requesting BCH IRQ\n");
Huang Shijie10a2bca2011-09-08 10:47:09 +0800596
Huang Shijie3cb2c1e2013-11-14 14:25:49 +0800597 return err;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800598}
599
Huang Shijie10a2bca2011-09-08 10:47:09 +0800600static void release_dma_channels(struct gpmi_nand_data *this)
601{
602 unsigned int i;
603 for (i = 0; i < DMA_CHANS; i++)
604 if (this->dma_chans[i]) {
605 dma_release_channel(this->dma_chans[i]);
606 this->dma_chans[i] = NULL;
607 }
608}
609
Bill Pemberton06f25512012-11-19 13:23:07 -0500610static int acquire_dma_channels(struct gpmi_nand_data *this)
Huang Shijie10a2bca2011-09-08 10:47:09 +0800611{
612 struct platform_device *pdev = this->pdev;
Huang Shijiee10db1f2012-05-04 21:42:05 -0400613 struct dma_chan *dma_chan;
Huang Shijiee10db1f2012-05-04 21:42:05 -0400614
615 /* request dma channel */
Shawn Guo5fac0e12013-02-26 11:44:28 +0800616 dma_chan = dma_request_slave_channel(&pdev->dev, "rx-tx");
Huang Shijiee10db1f2012-05-04 21:42:05 -0400617 if (!dma_chan) {
Huang Shijieda40c162013-11-20 10:09:43 +0800618 dev_err(this->dev, "Failed to request DMA channel.\n");
Huang Shijiee10db1f2012-05-04 21:42:05 -0400619 goto acquire_err;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800620 }
621
Huang Shijiee10db1f2012-05-04 21:42:05 -0400622 this->dma_chans[0] = dma_chan;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800623 return 0;
624
625acquire_err:
Huang Shijie10a2bca2011-09-08 10:47:09 +0800626 release_dma_channels(this);
627 return -EINVAL;
628}
629
Bill Pemberton06f25512012-11-19 13:23:07 -0500630static int gpmi_get_clks(struct gpmi_nand_data *this)
Huang Shijieff506172012-07-02 21:39:32 -0400631{
632 struct resources *r = &this->resources;
Huang Shijieff506172012-07-02 21:39:32 -0400633 struct clk *clk;
Michał Mirosławd1cb5562013-05-04 15:19:35 +0200634 int err, i;
Huang Shijieff506172012-07-02 21:39:32 -0400635
Stefan Agner6b7ee722017-04-21 18:23:34 -0700636 for (i = 0; i < this->devdata->clks_count; i++) {
637 clk = devm_clk_get(this->dev, this->devdata->clks[i]);
Michał Mirosławd1cb5562013-05-04 15:19:35 +0200638 if (IS_ERR(clk)) {
639 err = PTR_ERR(clk);
Huang Shijieff506172012-07-02 21:39:32 -0400640 goto err_clock;
Michał Mirosławd1cb5562013-05-04 15:19:35 +0200641 }
Huang Shijieff506172012-07-02 21:39:32 -0400642
643 r->clock[i] = clk;
644 }
645
Huang Shijie91f54982014-03-27 10:43:22 +0800646 if (GPMI_IS_MX6(this))
Huang Shijieff506172012-07-02 21:39:32 -0400647 /*
Huang Shijie91f54982014-03-27 10:43:22 +0800648 * Set the default value for the gpmi clock.
Huang Shijieff506172012-07-02 21:39:32 -0400649 *
Huang Shijiee1ca95e2012-09-13 14:57:58 +0800650 * If you want to use the ONFI nand which is in the
651 * Synchronous Mode, you should change the clock as you need.
Huang Shijieff506172012-07-02 21:39:32 -0400652 */
653 clk_set_rate(r->clock[0], 22000000);
Huang Shijiee1ca95e2012-09-13 14:57:58 +0800654
Huang Shijieff506172012-07-02 21:39:32 -0400655 return 0;
656
657err_clock:
658 dev_dbg(this->dev, "failed in finding the clocks.\n");
Michał Mirosławd1cb5562013-05-04 15:19:35 +0200659 return err;
Huang Shijieff506172012-07-02 21:39:32 -0400660}
661
Bill Pemberton06f25512012-11-19 13:23:07 -0500662static int acquire_resources(struct gpmi_nand_data *this)
Huang Shijie10a2bca2011-09-08 10:47:09 +0800663{
Huang Shijie10a2bca2011-09-08 10:47:09 +0800664 int ret;
665
666 ret = acquire_register_block(this, GPMI_NAND_GPMI_REGS_ADDR_RES_NAME);
667 if (ret)
668 goto exit_regs;
669
670 ret = acquire_register_block(this, GPMI_NAND_BCH_REGS_ADDR_RES_NAME);
671 if (ret)
672 goto exit_regs;
673
674 ret = acquire_bch_irq(this, bch_irq);
675 if (ret)
676 goto exit_regs;
677
678 ret = acquire_dma_channels(this);
679 if (ret)
Huang Shijie3cb2c1e2013-11-14 14:25:49 +0800680 goto exit_regs;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800681
Huang Shijieff506172012-07-02 21:39:32 -0400682 ret = gpmi_get_clks(this);
683 if (ret)
Huang Shijie10a2bca2011-09-08 10:47:09 +0800684 goto exit_clock;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800685 return 0;
686
687exit_clock:
688 release_dma_channels(this);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800689exit_regs:
Huang Shijie10a2bca2011-09-08 10:47:09 +0800690 return ret;
691}
692
693static void release_resources(struct gpmi_nand_data *this)
694{
Huang Shijie10a2bca2011-09-08 10:47:09 +0800695 release_dma_channels(this);
696}
697
Bill Pemberton06f25512012-11-19 13:23:07 -0500698static int init_hardware(struct gpmi_nand_data *this)
Huang Shijie10a2bca2011-09-08 10:47:09 +0800699{
700 int ret;
701
702 /*
703 * This structure contains the "safe" GPMI timing that should succeed
704 * with any NAND Flash device
705 * (although, with less-than-optimal performance).
706 */
707 struct nand_timing safe_timing = {
708 .data_setup_in_ns = 80,
709 .data_hold_in_ns = 60,
710 .address_setup_in_ns = 25,
711 .gpmi_sample_delay_in_ns = 6,
712 .tREA_in_ns = -1,
713 .tRLOH_in_ns = -1,
714 .tRHOH_in_ns = -1,
715 };
716
717 /* Initialize the hardwares. */
718 ret = gpmi_init(this);
719 if (ret)
720 return ret;
721
722 this->timing = safe_timing;
723 return 0;
724}
725
726static int read_page_prepare(struct gpmi_nand_data *this,
727 void *destination, unsigned length,
728 void *alt_virt, dma_addr_t alt_phys, unsigned alt_size,
729 void **use_virt, dma_addr_t *use_phys)
730{
731 struct device *dev = this->dev;
732
733 if (virt_addr_valid(destination)) {
734 dma_addr_t dest_phys;
735
736 dest_phys = dma_map_single(dev, destination,
737 length, DMA_FROM_DEVICE);
738 if (dma_mapping_error(dev, dest_phys)) {
739 if (alt_size < length) {
Huang Shijieda40c162013-11-20 10:09:43 +0800740 dev_err(dev, "Alternate buffer is too small\n");
Huang Shijie10a2bca2011-09-08 10:47:09 +0800741 return -ENOMEM;
742 }
743 goto map_failed;
744 }
745 *use_virt = destination;
746 *use_phys = dest_phys;
747 this->direct_dma_map_ok = true;
748 return 0;
749 }
750
751map_failed:
752 *use_virt = alt_virt;
753 *use_phys = alt_phys;
754 this->direct_dma_map_ok = false;
755 return 0;
756}
757
758static inline void read_page_end(struct gpmi_nand_data *this,
759 void *destination, unsigned length,
760 void *alt_virt, dma_addr_t alt_phys, unsigned alt_size,
761 void *used_virt, dma_addr_t used_phys)
762{
763 if (this->direct_dma_map_ok)
764 dma_unmap_single(this->dev, used_phys, length, DMA_FROM_DEVICE);
765}
766
767static inline void read_page_swap_end(struct gpmi_nand_data *this,
768 void *destination, unsigned length,
769 void *alt_virt, dma_addr_t alt_phys, unsigned alt_size,
770 void *used_virt, dma_addr_t used_phys)
771{
772 if (!this->direct_dma_map_ok)
773 memcpy(destination, alt_virt, length);
774}
775
776static int send_page_prepare(struct gpmi_nand_data *this,
777 const void *source, unsigned length,
778 void *alt_virt, dma_addr_t alt_phys, unsigned alt_size,
779 const void **use_virt, dma_addr_t *use_phys)
780{
781 struct device *dev = this->dev;
782
783 if (virt_addr_valid(source)) {
784 dma_addr_t source_phys;
785
786 source_phys = dma_map_single(dev, (void *)source, length,
787 DMA_TO_DEVICE);
788 if (dma_mapping_error(dev, source_phys)) {
789 if (alt_size < length) {
Huang Shijieda40c162013-11-20 10:09:43 +0800790 dev_err(dev, "Alternate buffer is too small\n");
Huang Shijie10a2bca2011-09-08 10:47:09 +0800791 return -ENOMEM;
792 }
793 goto map_failed;
794 }
795 *use_virt = source;
796 *use_phys = source_phys;
797 return 0;
798 }
799map_failed:
800 /*
801 * Copy the content of the source buffer into the alternate
802 * buffer and set up the return values accordingly.
803 */
804 memcpy(alt_virt, source, length);
805
806 *use_virt = alt_virt;
807 *use_phys = alt_phys;
808 return 0;
809}
810
811static void send_page_end(struct gpmi_nand_data *this,
812 const void *source, unsigned length,
813 void *alt_virt, dma_addr_t alt_phys, unsigned alt_size,
814 const void *used_virt, dma_addr_t used_phys)
815{
816 struct device *dev = this->dev;
817 if (used_virt == source)
818 dma_unmap_single(dev, used_phys, length, DMA_TO_DEVICE);
819}
820
821static void gpmi_free_dma_buffer(struct gpmi_nand_data *this)
822{
823 struct device *dev = this->dev;
824
825 if (this->page_buffer_virt && virt_addr_valid(this->page_buffer_virt))
826 dma_free_coherent(dev, this->page_buffer_size,
827 this->page_buffer_virt,
828 this->page_buffer_phys);
829 kfree(this->cmd_buffer);
830 kfree(this->data_buffer_dma);
Boris BREZILLONda3bc42c2014-11-30 19:10:29 +0100831 kfree(this->raw_buffer);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800832
833 this->cmd_buffer = NULL;
834 this->data_buffer_dma = NULL;
Han Xu2cd395d2016-04-04 15:41:29 -0500835 this->raw_buffer = NULL;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800836 this->page_buffer_virt = NULL;
837 this->page_buffer_size = 0;
838}
839
840/* Allocate the DMA buffers */
841static int gpmi_alloc_dma_buffer(struct gpmi_nand_data *this)
842{
843 struct bch_geometry *geo = &this->bch_geometry;
844 struct device *dev = this->dev;
Boris BREZILLON2a690b22015-12-10 09:00:07 +0100845 struct mtd_info *mtd = nand_to_mtd(&this->nand);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800846
847 /* [1] Allocate a command buffer. PAGE_SIZE is enough. */
Huang Shijie513d57e2012-07-17 14:14:02 +0800848 this->cmd_buffer = kzalloc(PAGE_SIZE, GFP_DMA | GFP_KERNEL);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800849 if (this->cmd_buffer == NULL)
850 goto error_alloc;
851
Huang Shijie06f216c2013-12-18 23:40:59 +0800852 /*
853 * [2] Allocate a read/write data buffer.
854 * The gpmi_alloc_dma_buffer can be called twice.
855 * We allocate a PAGE_SIZE length buffer if gpmi_alloc_dma_buffer
856 * is called before the nand_scan_ident; and we allocate a buffer
857 * of the real NAND page size when the gpmi_alloc_dma_buffer is
858 * called after the nand_scan_ident.
859 */
860 this->data_buffer_dma = kzalloc(mtd->writesize ?: PAGE_SIZE,
861 GFP_DMA | GFP_KERNEL);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800862 if (this->data_buffer_dma == NULL)
863 goto error_alloc;
864
865 /*
866 * [3] Allocate the page buffer.
867 *
868 * Both the payload buffer and the auxiliary buffer must appear on
869 * 32-bit boundaries. We presume the size of the payload buffer is a
870 * power of two and is much larger than four, which guarantees the
871 * auxiliary buffer will appear on a 32-bit boundary.
872 */
873 this->page_buffer_size = geo->payload_size + geo->auxiliary_size;
874 this->page_buffer_virt = dma_alloc_coherent(dev, this->page_buffer_size,
875 &this->page_buffer_phys, GFP_DMA);
876 if (!this->page_buffer_virt)
877 goto error_alloc;
878
Boris BREZILLONda3bc42c2014-11-30 19:10:29 +0100879 this->raw_buffer = kzalloc(mtd->writesize + mtd->oobsize, GFP_KERNEL);
880 if (!this->raw_buffer)
881 goto error_alloc;
Huang Shijie10a2bca2011-09-08 10:47:09 +0800882
883 /* Slice up the page buffer. */
884 this->payload_virt = this->page_buffer_virt;
885 this->payload_phys = this->page_buffer_phys;
886 this->auxiliary_virt = this->payload_virt + geo->payload_size;
887 this->auxiliary_phys = this->payload_phys + geo->payload_size;
888 return 0;
889
890error_alloc:
891 gpmi_free_dma_buffer(this);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800892 return -ENOMEM;
893}
894
895static void gpmi_cmd_ctrl(struct mtd_info *mtd, int data, unsigned int ctrl)
896{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100897 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100898 struct gpmi_nand_data *this = nand_get_controller_data(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800899 int ret;
900
901 /*
902 * Every operation begins with a command byte and a series of zero or
903 * more address bytes. These are distinguished by either the Address
904 * Latch Enable (ALE) or Command Latch Enable (CLE) signals being
905 * asserted. When MTD is ready to execute the command, it will deassert
906 * both latch enables.
907 *
908 * Rather than run a separate DMA operation for every single byte, we
909 * queue them up and run a single DMA operation for the entire series
910 * of command and data bytes. NAND_CMD_NONE means the END of the queue.
911 */
912 if ((ctrl & (NAND_ALE | NAND_CLE))) {
913 if (data != NAND_CMD_NONE)
914 this->cmd_buffer[this->command_length++] = data;
915 return;
916 }
917
918 if (!this->command_length)
919 return;
920
921 ret = gpmi_send_command(this);
922 if (ret)
Huang Shijieda40c162013-11-20 10:09:43 +0800923 dev_err(this->dev, "Chip: %u, Error %d\n",
924 this->current_chip, ret);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800925
926 this->command_length = 0;
927}
928
929static int gpmi_dev_ready(struct mtd_info *mtd)
930{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100931 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100932 struct gpmi_nand_data *this = nand_get_controller_data(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800933
934 return gpmi_is_ready(this, this->current_chip);
935}
936
937static void gpmi_select_chip(struct mtd_info *mtd, int chipnr)
938{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100939 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100940 struct gpmi_nand_data *this = nand_get_controller_data(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800941
942 if ((this->current_chip < 0) && (chipnr >= 0))
943 gpmi_begin(this);
944 else if ((this->current_chip >= 0) && (chipnr < 0))
945 gpmi_end(this);
946
947 this->current_chip = chipnr;
948}
949
950static void gpmi_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
951{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100952 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100953 struct gpmi_nand_data *this = nand_get_controller_data(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800954
Huang Shijiec2325962013-11-20 10:09:44 +0800955 dev_dbg(this->dev, "len is %d\n", len);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800956 this->upper_buf = buf;
957 this->upper_len = len;
958
959 gpmi_read_data(this);
960}
961
962static void gpmi_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
963{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100964 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100965 struct gpmi_nand_data *this = nand_get_controller_data(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800966
Huang Shijiec2325962013-11-20 10:09:44 +0800967 dev_dbg(this->dev, "len is %d\n", len);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800968 this->upper_buf = (uint8_t *)buf;
969 this->upper_len = len;
970
971 gpmi_send_data(this);
972}
973
974static uint8_t gpmi_read_byte(struct mtd_info *mtd)
975{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100976 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100977 struct gpmi_nand_data *this = nand_get_controller_data(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +0800978 uint8_t *buf = this->data_buffer_dma;
979
980 gpmi_read_buf(mtd, buf, 1);
981 return buf[0];
982}
983
984/*
985 * Handles block mark swapping.
986 * It can be called in swapping the block mark, or swapping it back,
987 * because the the operations are the same.
988 */
989static void block_mark_swapping(struct gpmi_nand_data *this,
990 void *payload, void *auxiliary)
991{
992 struct bch_geometry *nfc_geo = &this->bch_geometry;
993 unsigned char *p;
994 unsigned char *a;
995 unsigned int bit;
996 unsigned char mask;
997 unsigned char from_data;
998 unsigned char from_oob;
999
1000 if (!this->swap_block_mark)
1001 return;
1002
1003 /*
1004 * If control arrives here, we're swapping. Make some convenience
1005 * variables.
1006 */
1007 bit = nfc_geo->block_mark_bit_offset;
1008 p = payload + nfc_geo->block_mark_byte_offset;
1009 a = auxiliary;
1010
1011 /*
1012 * Get the byte from the data area that overlays the block mark. Since
1013 * the ECC engine applies its own view to the bits in the page, the
1014 * physical block mark won't (in general) appear on a byte boundary in
1015 * the data.
1016 */
1017 from_data = (p[0] >> bit) | (p[1] << (8 - bit));
1018
1019 /* Get the byte from the OOB. */
1020 from_oob = a[0];
1021
1022 /* Swap them. */
1023 a[0] = from_data;
1024
1025 mask = (0x1 << bit) - 1;
1026 p[0] = (p[0] & mask) | (from_oob << bit);
1027
1028 mask = ~0 << bit;
1029 p[1] = (p[1] & mask) | (from_oob >> (8 - bit));
1030}
1031
1032static int gpmi_ecc_read_page(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001033 uint8_t *buf, int oob_required, int page)
Huang Shijie10a2bca2011-09-08 10:47:09 +08001034{
Boris BREZILLONd699ed22015-12-10 09:00:41 +01001035 struct gpmi_nand_data *this = nand_get_controller_data(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001036 struct bch_geometry *nfc_geo = &this->bch_geometry;
1037 void *payload_virt;
1038 dma_addr_t payload_phys;
1039 void *auxiliary_virt;
1040 dma_addr_t auxiliary_phys;
1041 unsigned int i;
1042 unsigned char *status;
Zach Sadeckib23b7462012-12-13 20:36:29 -06001043 unsigned int max_bitflips = 0;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001044 int ret;
1045
Huang Shijiec2325962013-11-20 10:09:44 +08001046 dev_dbg(this->dev, "page number is : %d\n", page);
Huang Shijie4a57d672014-01-03 11:01:41 +08001047 ret = read_page_prepare(this, buf, nfc_geo->payload_size,
Huang Shijie10a2bca2011-09-08 10:47:09 +08001048 this->payload_virt, this->payload_phys,
1049 nfc_geo->payload_size,
1050 &payload_virt, &payload_phys);
1051 if (ret) {
Huang Shijieda40c162013-11-20 10:09:43 +08001052 dev_err(this->dev, "Inadequate DMA buffer\n");
Huang Shijie10a2bca2011-09-08 10:47:09 +08001053 ret = -ENOMEM;
1054 return ret;
1055 }
1056 auxiliary_virt = this->auxiliary_virt;
1057 auxiliary_phys = this->auxiliary_phys;
1058
1059 /* go! */
1060 ret = gpmi_read_page(this, payload_phys, auxiliary_phys);
Huang Shijie4a57d672014-01-03 11:01:41 +08001061 read_page_end(this, buf, nfc_geo->payload_size,
Huang Shijie10a2bca2011-09-08 10:47:09 +08001062 this->payload_virt, this->payload_phys,
1063 nfc_geo->payload_size,
1064 payload_virt, payload_phys);
1065 if (ret) {
Huang Shijieda40c162013-11-20 10:09:43 +08001066 dev_err(this->dev, "Error in ECC-based read: %d\n", ret);
Zach Sadeckib23b7462012-12-13 20:36:29 -06001067 return ret;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001068 }
1069
Huang Shijie10a2bca2011-09-08 10:47:09 +08001070 /* Loop over status bytes, accumulating ECC status. */
Zach Sadeckib23b7462012-12-13 20:36:29 -06001071 status = auxiliary_virt + nfc_geo->auxiliary_status_offset;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001072
Markus Pargmannbd2e7782016-04-25 14:35:12 +02001073 read_page_swap_end(this, buf, nfc_geo->payload_size,
1074 this->payload_virt, this->payload_phys,
1075 nfc_geo->payload_size,
1076 payload_virt, payload_phys);
1077
Huang Shijie10a2bca2011-09-08 10:47:09 +08001078 for (i = 0; i < nfc_geo->ecc_chunk_count; i++, status++) {
1079 if ((*status == STATUS_GOOD) || (*status == STATUS_ERASED))
1080 continue;
1081
1082 if (*status == STATUS_UNCORRECTABLE) {
Markus Pargmannbd2e7782016-04-25 14:35:12 +02001083 int eccbits = nfc_geo->ecc_strength * nfc_geo->gf_len;
1084 u8 *eccbuf = this->raw_buffer;
1085 int offset, bitoffset;
1086 int eccbytes;
1087 int flips;
1088
1089 /* Read ECC bytes into our internal raw_buffer */
1090 offset = nfc_geo->metadata_size * 8;
1091 offset += ((8 * nfc_geo->ecc_chunk_size) + eccbits) * (i + 1);
1092 offset -= eccbits;
1093 bitoffset = offset % 8;
1094 eccbytes = DIV_ROUND_UP(offset + eccbits, 8);
1095 offset /= 8;
1096 eccbytes -= offset;
1097 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, offset, -1);
1098 chip->read_buf(mtd, eccbuf, eccbytes);
1099
1100 /*
1101 * ECC data are not byte aligned and we may have
1102 * in-band data in the first and last byte of
1103 * eccbuf. Set non-eccbits to one so that
1104 * nand_check_erased_ecc_chunk() does not count them
1105 * as bitflips.
1106 */
1107 if (bitoffset)
1108 eccbuf[0] |= GENMASK(bitoffset - 1, 0);
1109
1110 bitoffset = (bitoffset + eccbits) % 8;
1111 if (bitoffset)
1112 eccbuf[eccbytes - 1] |= GENMASK(7, bitoffset);
1113
1114 /*
1115 * The ECC hardware has an uncorrectable ECC status
1116 * code in case we have bitflips in an erased page. As
1117 * nothing was written into this subpage the ECC is
1118 * obviously wrong and we can not trust it. We assume
1119 * at this point that we are reading an erased page and
1120 * try to correct the bitflips in buffer up to
1121 * ecc_strength bitflips. If this is a page with random
1122 * data, we exceed this number of bitflips and have a
1123 * ECC failure. Otherwise we use the corrected buffer.
1124 */
1125 if (i == 0) {
1126 /* The first block includes metadata */
1127 flips = nand_check_erased_ecc_chunk(
1128 buf + i * nfc_geo->ecc_chunk_size,
1129 nfc_geo->ecc_chunk_size,
1130 eccbuf, eccbytes,
1131 auxiliary_virt,
1132 nfc_geo->metadata_size,
1133 nfc_geo->ecc_strength);
1134 } else {
1135 flips = nand_check_erased_ecc_chunk(
1136 buf + i * nfc_geo->ecc_chunk_size,
1137 nfc_geo->ecc_chunk_size,
1138 eccbuf, eccbytes,
1139 NULL, 0,
1140 nfc_geo->ecc_strength);
1141 }
1142
1143 if (flips > 0) {
1144 max_bitflips = max_t(unsigned int, max_bitflips,
1145 flips);
1146 mtd->ecc_stats.corrected += flips;
1147 continue;
1148 }
1149
Zach Sadeckib23b7462012-12-13 20:36:29 -06001150 mtd->ecc_stats.failed++;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001151 continue;
1152 }
Markus Pargmannbd2e7782016-04-25 14:35:12 +02001153
Zach Sadeckib23b7462012-12-13 20:36:29 -06001154 mtd->ecc_stats.corrected += *status;
1155 max_bitflips = max_t(unsigned int, max_bitflips, *status);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001156 }
1157
Sascha Hauerfdf2e822017-12-05 11:51:40 +01001158 /* handle the block mark swapping */
1159 block_mark_swapping(this, buf, auxiliary_virt);
1160
Brian Norris7725cc82012-05-02 10:15:02 -07001161 if (oob_required) {
1162 /*
1163 * It's time to deliver the OOB bytes. See gpmi_ecc_read_oob()
1164 * for details about our policy for delivering the OOB.
1165 *
1166 * We fill the caller's buffer with set bits, and then copy the
1167 * block mark to th caller's buffer. Note that, if block mark
1168 * swapping was necessary, it has already been done, so we can
1169 * rely on the first byte of the auxiliary buffer to contain
1170 * the block mark.
1171 */
1172 memset(chip->oob_poi, ~0, mtd->oobsize);
1173 chip->oob_poi[0] = ((uint8_t *) auxiliary_virt)[0];
Brian Norris7725cc82012-05-02 10:15:02 -07001174 }
Sascha Hauer60238132012-06-26 17:26:16 +02001175
Zach Sadeckib23b7462012-12-13 20:36:29 -06001176 return max_bitflips;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001177}
1178
Huang Shijieb8e29312014-01-03 11:01:42 +08001179/* Fake a virtual small page for the subpage read */
1180static int gpmi_ecc_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
1181 uint32_t offs, uint32_t len, uint8_t *buf, int page)
1182{
Boris BREZILLONd699ed22015-12-10 09:00:41 +01001183 struct gpmi_nand_data *this = nand_get_controller_data(chip);
Huang Shijieb8e29312014-01-03 11:01:42 +08001184 void __iomem *bch_regs = this->resources.bch_regs;
1185 struct bch_geometry old_geo = this->bch_geometry;
1186 struct bch_geometry *geo = &this->bch_geometry;
1187 int size = chip->ecc.size; /* ECC chunk size */
1188 int meta, n, page_size;
1189 u32 r1_old, r2_old, r1_new, r2_new;
1190 unsigned int max_bitflips;
1191 int first, last, marker_pos;
1192 int ecc_parity_size;
1193 int col = 0;
Lothar Waßmann2a500af2014-03-28 11:35:06 +01001194 int old_swap_block_mark = this->swap_block_mark;
Huang Shijieb8e29312014-01-03 11:01:42 +08001195
1196 /* The size of ECC parity */
1197 ecc_parity_size = geo->gf_len * geo->ecc_strength / 8;
1198
1199 /* Align it with the chunk size */
1200 first = offs / size;
1201 last = (offs + len - 1) / size;
1202
Lothar Waßmann2a500af2014-03-28 11:35:06 +01001203 if (this->swap_block_mark) {
1204 /*
1205 * Find the chunk which contains the Block Marker.
1206 * If this chunk is in the range of [first, last],
1207 * we have to read out the whole page.
1208 * Why? since we had swapped the data at the position of Block
1209 * Marker to the metadata which is bound with the chunk 0.
1210 */
1211 marker_pos = geo->block_mark_byte_offset / size;
1212 if (last >= marker_pos && first <= marker_pos) {
1213 dev_dbg(this->dev,
1214 "page:%d, first:%d, last:%d, marker at:%d\n",
Huang Shijieb8e29312014-01-03 11:01:42 +08001215 page, first, last, marker_pos);
Lothar Waßmann2a500af2014-03-28 11:35:06 +01001216 return gpmi_ecc_read_page(mtd, chip, buf, 0, page);
1217 }
Huang Shijieb8e29312014-01-03 11:01:42 +08001218 }
1219
1220 meta = geo->metadata_size;
1221 if (first) {
1222 col = meta + (size + ecc_parity_size) * first;
1223 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, col, -1);
1224
1225 meta = 0;
1226 buf = buf + first * size;
1227 }
1228
1229 /* Save the old environment */
1230 r1_old = r1_new = readl(bch_regs + HW_BCH_FLASH0LAYOUT0);
1231 r2_old = r2_new = readl(bch_regs + HW_BCH_FLASH0LAYOUT1);
1232
1233 /* change the BCH registers and bch_geometry{} */
1234 n = last - first + 1;
1235 page_size = meta + (size + ecc_parity_size) * n;
1236
1237 r1_new &= ~(BM_BCH_FLASH0LAYOUT0_NBLOCKS |
1238 BM_BCH_FLASH0LAYOUT0_META_SIZE);
1239 r1_new |= BF_BCH_FLASH0LAYOUT0_NBLOCKS(n - 1)
1240 | BF_BCH_FLASH0LAYOUT0_META_SIZE(meta);
1241 writel(r1_new, bch_regs + HW_BCH_FLASH0LAYOUT0);
1242
1243 r2_new &= ~BM_BCH_FLASH0LAYOUT1_PAGE_SIZE;
1244 r2_new |= BF_BCH_FLASH0LAYOUT1_PAGE_SIZE(page_size);
1245 writel(r2_new, bch_regs + HW_BCH_FLASH0LAYOUT1);
1246
1247 geo->ecc_chunk_count = n;
1248 geo->payload_size = n * size;
1249 geo->page_size = page_size;
1250 geo->auxiliary_status_offset = ALIGN(meta, 4);
1251
1252 dev_dbg(this->dev, "page:%d(%d:%d)%d, chunk:(%d:%d), BCH PG size:%d\n",
1253 page, offs, len, col, first, n, page_size);
1254
1255 /* Read the subpage now */
1256 this->swap_block_mark = false;
1257 max_bitflips = gpmi_ecc_read_page(mtd, chip, buf, 0, page);
1258
1259 /* Restore */
1260 writel(r1_old, bch_regs + HW_BCH_FLASH0LAYOUT0);
1261 writel(r2_old, bch_regs + HW_BCH_FLASH0LAYOUT1);
1262 this->bch_geometry = old_geo;
Lothar Waßmann2a500af2014-03-28 11:35:06 +01001263 this->swap_block_mark = old_swap_block_mark;
Huang Shijieb8e29312014-01-03 11:01:42 +08001264
1265 return max_bitflips;
1266}
1267
Josh Wufdbad98d2012-06-25 18:07:45 +08001268static int gpmi_ecc_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02001269 const uint8_t *buf, int oob_required, int page)
Huang Shijie10a2bca2011-09-08 10:47:09 +08001270{
Boris BREZILLONd699ed22015-12-10 09:00:41 +01001271 struct gpmi_nand_data *this = nand_get_controller_data(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001272 struct bch_geometry *nfc_geo = &this->bch_geometry;
1273 const void *payload_virt;
1274 dma_addr_t payload_phys;
1275 const void *auxiliary_virt;
1276 dma_addr_t auxiliary_phys;
1277 int ret;
1278
Huang Shijiec2325962013-11-20 10:09:44 +08001279 dev_dbg(this->dev, "ecc write page.\n");
Huang Shijie10a2bca2011-09-08 10:47:09 +08001280 if (this->swap_block_mark) {
1281 /*
1282 * If control arrives here, we're doing block mark swapping.
1283 * Since we can't modify the caller's buffers, we must copy them
1284 * into our own.
1285 */
1286 memcpy(this->payload_virt, buf, mtd->writesize);
1287 payload_virt = this->payload_virt;
1288 payload_phys = this->payload_phys;
1289
1290 memcpy(this->auxiliary_virt, chip->oob_poi,
1291 nfc_geo->auxiliary_size);
1292 auxiliary_virt = this->auxiliary_virt;
1293 auxiliary_phys = this->auxiliary_phys;
1294
1295 /* Handle block mark swapping. */
1296 block_mark_swapping(this,
Lothar Waßmann6a760962014-06-12 15:20:41 +02001297 (void *)payload_virt, (void *)auxiliary_virt);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001298 } else {
1299 /*
1300 * If control arrives here, we're not doing block mark swapping,
1301 * so we can to try and use the caller's buffers.
1302 */
1303 ret = send_page_prepare(this,
1304 buf, mtd->writesize,
1305 this->payload_virt, this->payload_phys,
1306 nfc_geo->payload_size,
1307 &payload_virt, &payload_phys);
1308 if (ret) {
Huang Shijieda40c162013-11-20 10:09:43 +08001309 dev_err(this->dev, "Inadequate payload DMA buffer\n");
Josh Wufdbad98d2012-06-25 18:07:45 +08001310 return 0;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001311 }
1312
1313 ret = send_page_prepare(this,
1314 chip->oob_poi, mtd->oobsize,
1315 this->auxiliary_virt, this->auxiliary_phys,
1316 nfc_geo->auxiliary_size,
1317 &auxiliary_virt, &auxiliary_phys);
1318 if (ret) {
Huang Shijieda40c162013-11-20 10:09:43 +08001319 dev_err(this->dev, "Inadequate auxiliary DMA buffer\n");
Huang Shijie10a2bca2011-09-08 10:47:09 +08001320 goto exit_auxiliary;
1321 }
1322 }
1323
1324 /* Ask the NFC. */
1325 ret = gpmi_send_page(this, payload_phys, auxiliary_phys);
1326 if (ret)
Huang Shijieda40c162013-11-20 10:09:43 +08001327 dev_err(this->dev, "Error in ECC-based write: %d\n", ret);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001328
1329 if (!this->swap_block_mark) {
1330 send_page_end(this, chip->oob_poi, mtd->oobsize,
1331 this->auxiliary_virt, this->auxiliary_phys,
1332 nfc_geo->auxiliary_size,
1333 auxiliary_virt, auxiliary_phys);
1334exit_auxiliary:
1335 send_page_end(this, buf, mtd->writesize,
1336 this->payload_virt, this->payload_phys,
1337 nfc_geo->payload_size,
1338 payload_virt, payload_phys);
1339 }
Josh Wufdbad98d2012-06-25 18:07:45 +08001340
1341 return 0;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001342}
1343
1344/*
1345 * There are several places in this driver where we have to handle the OOB and
1346 * block marks. This is the function where things are the most complicated, so
1347 * this is where we try to explain it all. All the other places refer back to
1348 * here.
1349 *
1350 * These are the rules, in order of decreasing importance:
1351 *
1352 * 1) Nothing the caller does can be allowed to imperil the block mark.
1353 *
1354 * 2) In read operations, the first byte of the OOB we return must reflect the
1355 * true state of the block mark, no matter where that block mark appears in
1356 * the physical page.
1357 *
1358 * 3) ECC-based read operations return an OOB full of set bits (since we never
1359 * allow ECC-based writes to the OOB, it doesn't matter what ECC-based reads
1360 * return).
1361 *
1362 * 4) "Raw" read operations return a direct view of the physical bytes in the
1363 * page, using the conventional definition of which bytes are data and which
1364 * are OOB. This gives the caller a way to see the actual, physical bytes
1365 * in the page, without the distortions applied by our ECC engine.
1366 *
1367 *
1368 * What we do for this specific read operation depends on two questions:
1369 *
1370 * 1) Are we doing a "raw" read, or an ECC-based read?
1371 *
1372 * 2) Are we using block mark swapping or transcription?
1373 *
1374 * There are four cases, illustrated by the following Karnaugh map:
1375 *
1376 * | Raw | ECC-based |
1377 * -------------+-------------------------+-------------------------+
1378 * | Read the conventional | |
1379 * | OOB at the end of the | |
1380 * Swapping | page and return it. It | |
1381 * | contains exactly what | |
1382 * | we want. | Read the block mark and |
1383 * -------------+-------------------------+ return it in a buffer |
1384 * | Read the conventional | full of set bits. |
1385 * | OOB at the end of the | |
1386 * | page and also the block | |
1387 * Transcribing | mark in the metadata. | |
1388 * | Copy the block mark | |
1389 * | into the first byte of | |
1390 * | the OOB. | |
1391 * -------------+-------------------------+-------------------------+
1392 *
1393 * Note that we break rule #4 in the Transcribing/Raw case because we're not
1394 * giving an accurate view of the actual, physical bytes in the page (we're
1395 * overwriting the block mark). That's OK because it's more important to follow
1396 * rule #2.
1397 *
1398 * It turns out that knowing whether we want an "ECC-based" or "raw" read is not
1399 * easy. When reading a page, for example, the NAND Flash MTD code calls our
1400 * ecc.read_page or ecc.read_page_raw function. Thus, the fact that MTD wants an
1401 * ECC-based or raw view of the page is implicit in which function it calls
1402 * (there is a similar pair of ECC-based/raw functions for writing).
Huang Shijie10a2bca2011-09-08 10:47:09 +08001403 */
1404static int gpmi_ecc_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001405 int page)
Huang Shijie10a2bca2011-09-08 10:47:09 +08001406{
Boris BREZILLONd699ed22015-12-10 09:00:41 +01001407 struct gpmi_nand_data *this = nand_get_controller_data(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001408
Huang Shijiec2325962013-11-20 10:09:44 +08001409 dev_dbg(this->dev, "page number is %d\n", page);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001410 /* clear the OOB buffer */
1411 memset(chip->oob_poi, ~0, mtd->oobsize);
1412
1413 /* Read out the conventional OOB. */
1414 chip->cmdfunc(mtd, NAND_CMD_READ0, mtd->writesize, page);
1415 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1416
1417 /*
1418 * Now, we want to make sure the block mark is correct. In the
Lothar Waßmann2a500af2014-03-28 11:35:06 +01001419 * non-transcribing case (!GPMI_IS_MX23()), we already have it.
1420 * Otherwise, we need to explicitly read it.
Huang Shijie10a2bca2011-09-08 10:47:09 +08001421 */
Lothar Waßmann2a500af2014-03-28 11:35:06 +01001422 if (GPMI_IS_MX23(this)) {
Huang Shijie10a2bca2011-09-08 10:47:09 +08001423 /* Read the block mark into the first byte of the OOB buffer. */
1424 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1425 chip->oob_poi[0] = chip->read_byte(mtd);
1426 }
1427
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001428 return 0;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001429}
1430
1431static int
1432gpmi_ecc_write_oob(struct mtd_info *mtd, struct nand_chip *chip, int page)
1433{
Boris Brezillon191a8292016-02-03 20:11:44 +01001434 struct mtd_oob_region of = { };
Huang Shijie7a2b89a2013-09-25 14:58:15 +08001435 int status = 0;
1436
1437 /* Do we have available oob area? */
Boris Brezillon191a8292016-02-03 20:11:44 +01001438 mtd_ooblayout_free(mtd, 0, &of);
1439 if (!of.length)
Huang Shijie7a2b89a2013-09-25 14:58:15 +08001440 return -EPERM;
1441
1442 if (!nand_is_slc(chip))
1443 return -EPERM;
1444
Boris Brezillon191a8292016-02-03 20:11:44 +01001445 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize + of.offset, page);
1446 chip->write_buf(mtd, chip->oob_poi + of.offset, of.length);
Huang Shijie7a2b89a2013-09-25 14:58:15 +08001447 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1448
1449 status = chip->waitfunc(mtd, chip);
1450 return status & NAND_STATUS_FAIL ? -EIO : 0;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001451}
1452
Boris BREZILLONda3bc42c2014-11-30 19:10:29 +01001453/*
1454 * This function reads a NAND page without involving the ECC engine (no HW
1455 * ECC correction).
1456 * The tricky part in the GPMI/BCH controller is that it stores ECC bits
1457 * inline (interleaved with payload DATA), and do not align data chunk on
1458 * byte boundaries.
1459 * We thus need to take care moving the payload data and ECC bits stored in the
1460 * page into the provided buffers, which is why we're using gpmi_copy_bits.
1461 *
1462 * See set_geometry_by_ecc_info inline comments to have a full description
1463 * of the layout used by the GPMI controller.
1464 */
1465static int gpmi_ecc_read_page_raw(struct mtd_info *mtd,
1466 struct nand_chip *chip, uint8_t *buf,
1467 int oob_required, int page)
1468{
Boris BREZILLONd699ed22015-12-10 09:00:41 +01001469 struct gpmi_nand_data *this = nand_get_controller_data(chip);
Boris BREZILLONda3bc42c2014-11-30 19:10:29 +01001470 struct bch_geometry *nfc_geo = &this->bch_geometry;
1471 int eccsize = nfc_geo->ecc_chunk_size;
1472 int eccbits = nfc_geo->ecc_strength * nfc_geo->gf_len;
1473 u8 *tmp_buf = this->raw_buffer;
1474 size_t src_bit_off;
1475 size_t oob_bit_off;
1476 size_t oob_byte_off;
1477 uint8_t *oob = chip->oob_poi;
1478 int step;
1479
1480 chip->read_buf(mtd, tmp_buf,
1481 mtd->writesize + mtd->oobsize);
1482
1483 /*
1484 * If required, swap the bad block marker and the data stored in the
1485 * metadata section, so that we don't wrongly consider a block as bad.
1486 *
1487 * See the layout description for a detailed explanation on why this
1488 * is needed.
1489 */
1490 if (this->swap_block_mark) {
1491 u8 swap = tmp_buf[0];
1492
1493 tmp_buf[0] = tmp_buf[mtd->writesize];
1494 tmp_buf[mtd->writesize] = swap;
1495 }
1496
1497 /*
1498 * Copy the metadata section into the oob buffer (this section is
1499 * guaranteed to be aligned on a byte boundary).
1500 */
1501 if (oob_required)
1502 memcpy(oob, tmp_buf, nfc_geo->metadata_size);
1503
1504 oob_bit_off = nfc_geo->metadata_size * 8;
1505 src_bit_off = oob_bit_off;
1506
1507 /* Extract interleaved payload data and ECC bits */
1508 for (step = 0; step < nfc_geo->ecc_chunk_count; step++) {
1509 if (buf)
1510 gpmi_copy_bits(buf, step * eccsize * 8,
1511 tmp_buf, src_bit_off,
1512 eccsize * 8);
1513 src_bit_off += eccsize * 8;
1514
1515 /* Align last ECC block to align a byte boundary */
1516 if (step == nfc_geo->ecc_chunk_count - 1 &&
1517 (oob_bit_off + eccbits) % 8)
1518 eccbits += 8 - ((oob_bit_off + eccbits) % 8);
1519
1520 if (oob_required)
1521 gpmi_copy_bits(oob, oob_bit_off,
1522 tmp_buf, src_bit_off,
1523 eccbits);
1524
1525 src_bit_off += eccbits;
1526 oob_bit_off += eccbits;
1527 }
1528
1529 if (oob_required) {
1530 oob_byte_off = oob_bit_off / 8;
1531
1532 if (oob_byte_off < mtd->oobsize)
1533 memcpy(oob + oob_byte_off,
1534 tmp_buf + mtd->writesize + oob_byte_off,
1535 mtd->oobsize - oob_byte_off);
1536 }
1537
1538 return 0;
1539}
1540
1541/*
1542 * This function writes a NAND page without involving the ECC engine (no HW
1543 * ECC generation).
1544 * The tricky part in the GPMI/BCH controller is that it stores ECC bits
1545 * inline (interleaved with payload DATA), and do not align data chunk on
1546 * byte boundaries.
1547 * We thus need to take care moving the OOB area at the right place in the
1548 * final page, which is why we're using gpmi_copy_bits.
1549 *
1550 * See set_geometry_by_ecc_info inline comments to have a full description
1551 * of the layout used by the GPMI controller.
1552 */
1553static int gpmi_ecc_write_page_raw(struct mtd_info *mtd,
1554 struct nand_chip *chip,
1555 const uint8_t *buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02001556 int oob_required, int page)
Boris BREZILLONda3bc42c2014-11-30 19:10:29 +01001557{
Boris BREZILLONd699ed22015-12-10 09:00:41 +01001558 struct gpmi_nand_data *this = nand_get_controller_data(chip);
Boris BREZILLONda3bc42c2014-11-30 19:10:29 +01001559 struct bch_geometry *nfc_geo = &this->bch_geometry;
1560 int eccsize = nfc_geo->ecc_chunk_size;
1561 int eccbits = nfc_geo->ecc_strength * nfc_geo->gf_len;
1562 u8 *tmp_buf = this->raw_buffer;
1563 uint8_t *oob = chip->oob_poi;
1564 size_t dst_bit_off;
1565 size_t oob_bit_off;
1566 size_t oob_byte_off;
1567 int step;
1568
1569 /*
1570 * Initialize all bits to 1 in case we don't have a buffer for the
1571 * payload or oob data in order to leave unspecified bits of data
1572 * to their initial state.
1573 */
1574 if (!buf || !oob_required)
1575 memset(tmp_buf, 0xff, mtd->writesize + mtd->oobsize);
1576
1577 /*
1578 * First copy the metadata section (stored in oob buffer) at the
1579 * beginning of the page, as imposed by the GPMI layout.
1580 */
1581 memcpy(tmp_buf, oob, nfc_geo->metadata_size);
1582 oob_bit_off = nfc_geo->metadata_size * 8;
1583 dst_bit_off = oob_bit_off;
1584
1585 /* Interleave payload data and ECC bits */
1586 for (step = 0; step < nfc_geo->ecc_chunk_count; step++) {
1587 if (buf)
1588 gpmi_copy_bits(tmp_buf, dst_bit_off,
1589 buf, step * eccsize * 8, eccsize * 8);
1590 dst_bit_off += eccsize * 8;
1591
1592 /* Align last ECC block to align a byte boundary */
1593 if (step == nfc_geo->ecc_chunk_count - 1 &&
1594 (oob_bit_off + eccbits) % 8)
1595 eccbits += 8 - ((oob_bit_off + eccbits) % 8);
1596
1597 if (oob_required)
1598 gpmi_copy_bits(tmp_buf, dst_bit_off,
1599 oob, oob_bit_off, eccbits);
1600
1601 dst_bit_off += eccbits;
1602 oob_bit_off += eccbits;
1603 }
1604
1605 oob_byte_off = oob_bit_off / 8;
1606
1607 if (oob_required && oob_byte_off < mtd->oobsize)
1608 memcpy(tmp_buf + mtd->writesize + oob_byte_off,
1609 oob + oob_byte_off, mtd->oobsize - oob_byte_off);
1610
1611 /*
1612 * If required, swap the bad block marker and the first byte of the
1613 * metadata section, so that we don't modify the bad block marker.
1614 *
1615 * See the layout description for a detailed explanation on why this
1616 * is needed.
1617 */
1618 if (this->swap_block_mark) {
1619 u8 swap = tmp_buf[0];
1620
1621 tmp_buf[0] = tmp_buf[mtd->writesize];
1622 tmp_buf[mtd->writesize] = swap;
1623 }
1624
1625 chip->write_buf(mtd, tmp_buf, mtd->writesize + mtd->oobsize);
1626
1627 return 0;
1628}
1629
Boris BREZILLON7ca94e02014-11-30 19:10:30 +01001630static int gpmi_ecc_read_oob_raw(struct mtd_info *mtd, struct nand_chip *chip,
1631 int page)
1632{
1633 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1634
1635 return gpmi_ecc_read_page_raw(mtd, chip, NULL, 1, page);
1636}
1637
1638static int gpmi_ecc_write_oob_raw(struct mtd_info *mtd, struct nand_chip *chip,
1639 int page)
1640{
1641 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0, page);
1642
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02001643 return gpmi_ecc_write_page_raw(mtd, chip, NULL, 1, page);
Boris BREZILLON7ca94e02014-11-30 19:10:30 +01001644}
1645
Huang Shijie10a2bca2011-09-08 10:47:09 +08001646static int gpmi_block_markbad(struct mtd_info *mtd, loff_t ofs)
1647{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +01001648 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +01001649 struct gpmi_nand_data *this = nand_get_controller_data(chip);
Brian Norris5a0edb22013-07-30 17:52:58 -07001650 int ret = 0;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001651 uint8_t *block_mark;
1652 int column, page, status, chipnr;
1653
Brian Norris5a0edb22013-07-30 17:52:58 -07001654 chipnr = (int)(ofs >> chip->chip_shift);
1655 chip->select_chip(mtd, chipnr);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001656
Lothar Waßmann2a500af2014-03-28 11:35:06 +01001657 column = !GPMI_IS_MX23(this) ? mtd->writesize : 0;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001658
Brian Norris5a0edb22013-07-30 17:52:58 -07001659 /* Write the block mark. */
1660 block_mark = this->data_buffer_dma;
1661 block_mark[0] = 0; /* bad block marker */
Huang Shijie10a2bca2011-09-08 10:47:09 +08001662
Brian Norris5a0edb22013-07-30 17:52:58 -07001663 /* Shift to get page */
1664 page = (int)(ofs >> chip->page_shift);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001665
Brian Norris5a0edb22013-07-30 17:52:58 -07001666 chip->cmdfunc(mtd, NAND_CMD_SEQIN, column, page);
1667 chip->write_buf(mtd, block_mark, 1);
1668 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001669
Brian Norris5a0edb22013-07-30 17:52:58 -07001670 status = chip->waitfunc(mtd, chip);
1671 if (status & NAND_STATUS_FAIL)
1672 ret = -EIO;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001673
Brian Norris5a0edb22013-07-30 17:52:58 -07001674 chip->select_chip(mtd, -1);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001675
1676 return ret;
1677}
1678
Wolfram Sanga78da282012-03-21 19:29:17 +01001679static int nand_boot_set_geometry(struct gpmi_nand_data *this)
Huang Shijie10a2bca2011-09-08 10:47:09 +08001680{
1681 struct boot_rom_geometry *geometry = &this->rom_geometry;
1682
1683 /*
1684 * Set the boot block stride size.
1685 *
1686 * In principle, we should be reading this from the OTP bits, since
1687 * that's where the ROM is going to get it. In fact, we don't have any
1688 * way to read the OTP bits, so we go with the default and hope for the
1689 * best.
1690 */
1691 geometry->stride_size_in_pages = 64;
1692
1693 /*
1694 * Set the search area stride exponent.
1695 *
1696 * In principle, we should be reading this from the OTP bits, since
1697 * that's where the ROM is going to get it. In fact, we don't have any
1698 * way to read the OTP bits, so we go with the default and hope for the
1699 * best.
1700 */
1701 geometry->search_area_stride_exponent = 2;
1702 return 0;
1703}
1704
1705static const char *fingerprint = "STMP";
Wolfram Sanga78da282012-03-21 19:29:17 +01001706static int mx23_check_transcription_stamp(struct gpmi_nand_data *this)
Huang Shijie10a2bca2011-09-08 10:47:09 +08001707{
1708 struct boot_rom_geometry *rom_geo = &this->rom_geometry;
1709 struct device *dev = this->dev;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001710 struct nand_chip *chip = &this->nand;
Boris BREZILLON2a690b22015-12-10 09:00:07 +01001711 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001712 unsigned int search_area_size_in_strides;
1713 unsigned int stride;
1714 unsigned int page;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001715 uint8_t *buffer = chip->buffers->databuf;
1716 int saved_chip_number;
1717 int found_an_ncb_fingerprint = false;
1718
1719 /* Compute the number of strides in a search area. */
1720 search_area_size_in_strides = 1 << rom_geo->search_area_stride_exponent;
1721
1722 saved_chip_number = this->current_chip;
1723 chip->select_chip(mtd, 0);
1724
1725 /*
1726 * Loop through the first search area, looking for the NCB fingerprint.
1727 */
1728 dev_dbg(dev, "Scanning for an NCB fingerprint...\n");
1729
1730 for (stride = 0; stride < search_area_size_in_strides; stride++) {
Huang Shijie513d57e2012-07-17 14:14:02 +08001731 /* Compute the page addresses. */
Huang Shijie10a2bca2011-09-08 10:47:09 +08001732 page = stride * rom_geo->stride_size_in_pages;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001733
1734 dev_dbg(dev, "Looking for a fingerprint in page 0x%x\n", page);
1735
1736 /*
1737 * Read the NCB fingerprint. The fingerprint is four bytes long
1738 * and starts in the 12th byte of the page.
1739 */
1740 chip->cmdfunc(mtd, NAND_CMD_READ0, 12, page);
1741 chip->read_buf(mtd, buffer, strlen(fingerprint));
1742
1743 /* Look for the fingerprint. */
1744 if (!memcmp(buffer, fingerprint, strlen(fingerprint))) {
1745 found_an_ncb_fingerprint = true;
1746 break;
1747 }
1748
1749 }
1750
1751 chip->select_chip(mtd, saved_chip_number);
1752
1753 if (found_an_ncb_fingerprint)
1754 dev_dbg(dev, "\tFound a fingerprint\n");
1755 else
1756 dev_dbg(dev, "\tNo fingerprint found\n");
1757 return found_an_ncb_fingerprint;
1758}
1759
1760/* Writes a transcription stamp. */
Wolfram Sanga78da282012-03-21 19:29:17 +01001761static int mx23_write_transcription_stamp(struct gpmi_nand_data *this)
Huang Shijie10a2bca2011-09-08 10:47:09 +08001762{
1763 struct device *dev = this->dev;
1764 struct boot_rom_geometry *rom_geo = &this->rom_geometry;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001765 struct nand_chip *chip = &this->nand;
Boris BREZILLON2a690b22015-12-10 09:00:07 +01001766 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001767 unsigned int block_size_in_pages;
1768 unsigned int search_area_size_in_strides;
1769 unsigned int search_area_size_in_pages;
1770 unsigned int search_area_size_in_blocks;
1771 unsigned int block;
1772 unsigned int stride;
1773 unsigned int page;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001774 uint8_t *buffer = chip->buffers->databuf;
1775 int saved_chip_number;
1776 int status;
1777
1778 /* Compute the search area geometry. */
1779 block_size_in_pages = mtd->erasesize / mtd->writesize;
1780 search_area_size_in_strides = 1 << rom_geo->search_area_stride_exponent;
1781 search_area_size_in_pages = search_area_size_in_strides *
1782 rom_geo->stride_size_in_pages;
1783 search_area_size_in_blocks =
1784 (search_area_size_in_pages + (block_size_in_pages - 1)) /
1785 block_size_in_pages;
1786
1787 dev_dbg(dev, "Search Area Geometry :\n");
1788 dev_dbg(dev, "\tin Blocks : %u\n", search_area_size_in_blocks);
1789 dev_dbg(dev, "\tin Strides: %u\n", search_area_size_in_strides);
1790 dev_dbg(dev, "\tin Pages : %u\n", search_area_size_in_pages);
1791
1792 /* Select chip 0. */
1793 saved_chip_number = this->current_chip;
1794 chip->select_chip(mtd, 0);
1795
1796 /* Loop over blocks in the first search area, erasing them. */
1797 dev_dbg(dev, "Erasing the search area...\n");
1798
1799 for (block = 0; block < search_area_size_in_blocks; block++) {
1800 /* Compute the page address. */
1801 page = block * block_size_in_pages;
1802
1803 /* Erase this block. */
1804 dev_dbg(dev, "\tErasing block 0x%x\n", block);
1805 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
1806 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
1807
1808 /* Wait for the erase to finish. */
1809 status = chip->waitfunc(mtd, chip);
1810 if (status & NAND_STATUS_FAIL)
1811 dev_err(dev, "[%s] Erase failed.\n", __func__);
1812 }
1813
1814 /* Write the NCB fingerprint into the page buffer. */
1815 memset(buffer, ~0, mtd->writesize);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001816 memcpy(buffer + 12, fingerprint, strlen(fingerprint));
1817
1818 /* Loop through the first search area, writing NCB fingerprints. */
1819 dev_dbg(dev, "Writing NCB fingerprints...\n");
1820 for (stride = 0; stride < search_area_size_in_strides; stride++) {
Huang Shijie513d57e2012-07-17 14:14:02 +08001821 /* Compute the page addresses. */
Huang Shijie10a2bca2011-09-08 10:47:09 +08001822 page = stride * rom_geo->stride_size_in_pages;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001823
1824 /* Write the first page of the current stride. */
1825 dev_dbg(dev, "Writing an NCB fingerprint in page 0x%x\n", page);
1826 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02001827 chip->ecc.write_page_raw(mtd, chip, buffer, 0, page);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001828 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1829
1830 /* Wait for the write to finish. */
1831 status = chip->waitfunc(mtd, chip);
1832 if (status & NAND_STATUS_FAIL)
1833 dev_err(dev, "[%s] Write failed.\n", __func__);
1834 }
1835
1836 /* Deselect chip 0. */
1837 chip->select_chip(mtd, saved_chip_number);
1838 return 0;
1839}
1840
Wolfram Sanga78da282012-03-21 19:29:17 +01001841static int mx23_boot_init(struct gpmi_nand_data *this)
Huang Shijie10a2bca2011-09-08 10:47:09 +08001842{
1843 struct device *dev = this->dev;
1844 struct nand_chip *chip = &this->nand;
Boris BREZILLON2a690b22015-12-10 09:00:07 +01001845 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001846 unsigned int block_count;
1847 unsigned int block;
1848 int chipnr;
1849 int page;
1850 loff_t byte;
1851 uint8_t block_mark;
1852 int ret = 0;
1853
1854 /*
1855 * If control arrives here, we can't use block mark swapping, which
1856 * means we're forced to use transcription. First, scan for the
1857 * transcription stamp. If we find it, then we don't have to do
1858 * anything -- the block marks are already transcribed.
1859 */
1860 if (mx23_check_transcription_stamp(this))
1861 return 0;
1862
1863 /*
1864 * If control arrives here, we couldn't find a transcription stamp, so
1865 * so we presume the block marks are in the conventional location.
1866 */
1867 dev_dbg(dev, "Transcribing bad block marks...\n");
1868
1869 /* Compute the number of blocks in the entire medium. */
1870 block_count = chip->chipsize >> chip->phys_erase_shift;
1871
1872 /*
1873 * Loop over all the blocks in the medium, transcribing block marks as
1874 * we go.
1875 */
1876 for (block = 0; block < block_count; block++) {
1877 /*
1878 * Compute the chip, page and byte addresses for this block's
1879 * conventional mark.
1880 */
1881 chipnr = block >> (chip->chip_shift - chip->phys_erase_shift);
1882 page = block << (chip->phys_erase_shift - chip->page_shift);
1883 byte = block << chip->phys_erase_shift;
1884
1885 /* Send the command to read the conventional block mark. */
1886 chip->select_chip(mtd, chipnr);
1887 chip->cmdfunc(mtd, NAND_CMD_READ0, mtd->writesize, page);
1888 block_mark = chip->read_byte(mtd);
1889 chip->select_chip(mtd, -1);
1890
1891 /*
1892 * Check if the block is marked bad. If so, we need to mark it
1893 * again, but this time the result will be a mark in the
1894 * location where we transcribe block marks.
1895 */
1896 if (block_mark != 0xff) {
1897 dev_dbg(dev, "Transcribing mark in block %u\n", block);
1898 ret = chip->block_markbad(mtd, byte);
1899 if (ret)
Lothar Waßmannd8c03722014-06-12 15:20:42 +02001900 dev_err(dev,
1901 "Failed to mark block bad with ret %d\n",
1902 ret);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001903 }
1904 }
1905
1906 /* Write the stamp that indicates we've transcribed the block marks. */
1907 mx23_write_transcription_stamp(this);
1908 return 0;
1909}
1910
Wolfram Sanga78da282012-03-21 19:29:17 +01001911static int nand_boot_init(struct gpmi_nand_data *this)
Huang Shijie10a2bca2011-09-08 10:47:09 +08001912{
1913 nand_boot_set_geometry(this);
1914
1915 /* This is ROM arch-specific initilization before the BBT scanning. */
1916 if (GPMI_IS_MX23(this))
1917 return mx23_boot_init(this);
1918 return 0;
1919}
1920
Wolfram Sanga78da282012-03-21 19:29:17 +01001921static int gpmi_set_geometry(struct gpmi_nand_data *this)
Huang Shijie10a2bca2011-09-08 10:47:09 +08001922{
1923 int ret;
1924
1925 /* Free the temporary DMA memory for reading ID. */
1926 gpmi_free_dma_buffer(this);
1927
1928 /* Set up the NFC geometry which is used by BCH. */
1929 ret = bch_set_geometry(this);
1930 if (ret) {
Huang Shijieda40c162013-11-20 10:09:43 +08001931 dev_err(this->dev, "Error setting BCH geometry : %d\n", ret);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001932 return ret;
1933 }
1934
1935 /* Alloc the new DMA buffers according to the pagesize and oobsize */
1936 return gpmi_alloc_dma_buffer(this);
1937}
1938
Huang Shijief720e7c2013-08-16 10:10:08 +08001939static int gpmi_init_last(struct gpmi_nand_data *this)
1940{
Boris BREZILLON2a690b22015-12-10 09:00:07 +01001941 struct nand_chip *chip = &this->nand;
Boris Brezillon3f158e42016-02-03 20:01:54 +01001942 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijief720e7c2013-08-16 10:10:08 +08001943 struct nand_ecc_ctrl *ecc = &chip->ecc;
1944 struct bch_geometry *bch_geo = &this->bch_geometry;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001945 int ret;
1946
Huang Shijied7364a272013-11-14 14:25:45 +08001947 /* Set up the medium geometry */
1948 ret = gpmi_set_geometry(this);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001949 if (ret)
1950 return ret;
1951
Huang Shijief720e7c2013-08-16 10:10:08 +08001952 /* Init the nand_ecc_ctrl{} */
1953 ecc->read_page = gpmi_ecc_read_page;
1954 ecc->write_page = gpmi_ecc_write_page;
1955 ecc->read_oob = gpmi_ecc_read_oob;
1956 ecc->write_oob = gpmi_ecc_write_oob;
Boris BREZILLONda3bc42c2014-11-30 19:10:29 +01001957 ecc->read_page_raw = gpmi_ecc_read_page_raw;
1958 ecc->write_page_raw = gpmi_ecc_write_page_raw;
Boris BREZILLON7ca94e02014-11-30 19:10:30 +01001959 ecc->read_oob_raw = gpmi_ecc_read_oob_raw;
1960 ecc->write_oob_raw = gpmi_ecc_write_oob_raw;
Huang Shijief720e7c2013-08-16 10:10:08 +08001961 ecc->mode = NAND_ECC_HW;
1962 ecc->size = bch_geo->ecc_chunk_size;
1963 ecc->strength = bch_geo->ecc_strength;
Boris Brezillon3f158e42016-02-03 20:01:54 +01001964 mtd_set_ooblayout(mtd, &gpmi_ooblayout_ops);
Huang Shijief720e7c2013-08-16 10:10:08 +08001965
Huang Shijie995fbbf2012-09-13 14:57:59 +08001966 /*
Huang Shijieb8e29312014-01-03 11:01:42 +08001967 * We only enable the subpage read when:
1968 * (1) the chip is imx6, and
1969 * (2) the size of the ECC parity is byte aligned.
1970 */
Huang Shijie91f54982014-03-27 10:43:22 +08001971 if (GPMI_IS_MX6(this) &&
Huang Shijieb8e29312014-01-03 11:01:42 +08001972 ((bch_geo->gf_len * bch_geo->ecc_strength) % 8) == 0) {
1973 ecc->read_subpage = gpmi_ecc_read_subpage;
1974 chip->options |= NAND_SUBPAGE_READ;
1975 }
1976
1977 /*
Huang Shijie995fbbf2012-09-13 14:57:59 +08001978 * Can we enable the extra features? such as EDO or Sync mode.
1979 *
1980 * We do not check the return value now. That's means if we fail in
1981 * enable the extra features, we still can run in the normal way.
1982 */
1983 gpmi_extra_init(this);
1984
Huang Shijief720e7c2013-08-16 10:10:08 +08001985 return 0;
Huang Shijie10a2bca2011-09-08 10:47:09 +08001986}
1987
Huang Shijieccce4172013-11-14 14:25:47 +08001988static int gpmi_nand_init(struct gpmi_nand_data *this)
Huang Shijie10a2bca2011-09-08 10:47:09 +08001989{
Huang Shijie10a2bca2011-09-08 10:47:09 +08001990 struct nand_chip *chip = &this->nand;
Boris BREZILLON2a690b22015-12-10 09:00:07 +01001991 struct mtd_info *mtd = nand_to_mtd(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +08001992 int ret;
1993
1994 /* init current chip */
1995 this->current_chip = -1;
1996
1997 /* init the MTD data structures */
Huang Shijie10a2bca2011-09-08 10:47:09 +08001998 mtd->name = "gpmi-nand";
Frans Klaver4dc67b12015-06-10 22:38:49 +02001999 mtd->dev.parent = this->dev;
Huang Shijie10a2bca2011-09-08 10:47:09 +08002000
2001 /* init the nand_chip{}, we don't support a 16-bit NAND Flash bus. */
Boris BREZILLONd699ed22015-12-10 09:00:41 +01002002 nand_set_controller_data(chip, this);
Brian Norrisa61ae812015-10-30 20:33:25 -07002003 nand_set_flash_node(chip, this->pdev->dev.of_node);
Huang Shijie10a2bca2011-09-08 10:47:09 +08002004 chip->select_chip = gpmi_select_chip;
2005 chip->cmd_ctrl = gpmi_cmd_ctrl;
2006 chip->dev_ready = gpmi_dev_ready;
2007 chip->read_byte = gpmi_read_byte;
2008 chip->read_buf = gpmi_read_buf;
2009 chip->write_buf = gpmi_write_buf;
Huang Shijie10a2bca2011-09-08 10:47:09 +08002010 chip->badblock_pattern = &gpmi_bbt_descr;
2011 chip->block_markbad = gpmi_block_markbad;
2012 chip->options |= NAND_NO_SUBPAGE_WRITE;
Lothar Waßmann2a500af2014-03-28 11:35:06 +01002013
2014 /* Set up swap_block_mark, must be set before the gpmi_set_geometry() */
2015 this->swap_block_mark = !GPMI_IS_MX23(this);
2016
Huang Shijief720e7c2013-08-16 10:10:08 +08002017 /*
2018 * Allocate a temporary DMA buffer for reading ID in the
2019 * nand_scan_ident().
2020 */
Huang Shijie10a2bca2011-09-08 10:47:09 +08002021 this->bch_geometry.payload_size = 1024;
2022 this->bch_geometry.auxiliary_size = 128;
2023 ret = gpmi_alloc_dma_buffer(this);
2024 if (ret)
2025 goto err_out;
2026
Huang Shijie91f54982014-03-27 10:43:22 +08002027 ret = nand_scan_ident(mtd, GPMI_IS_MX6(this) ? 2 : 1, NULL);
Huang Shijief720e7c2013-08-16 10:10:08 +08002028 if (ret)
Huang Shijie10a2bca2011-09-08 10:47:09 +08002029 goto err_out;
Huang Shijief720e7c2013-08-16 10:10:08 +08002030
Boris Brezillonf05f6a12016-04-01 14:54:26 +02002031 if (chip->bbt_options & NAND_BBT_USE_FLASH) {
2032 chip->bbt_options |= NAND_BBT_NO_OOB;
2033
2034 if (of_property_read_bool(this->dev->of_node,
2035 "fsl,no-blockmark-swap"))
2036 this->swap_block_mark = false;
2037 }
2038 dev_dbg(this->dev, "Blockmark swapping %sabled\n",
2039 this->swap_block_mark ? "en" : "dis");
2040
Huang Shijief720e7c2013-08-16 10:10:08 +08002041 ret = gpmi_init_last(this);
2042 if (ret)
2043 goto err_out;
2044
Huang Shijie885d71e2013-11-12 12:23:08 +08002045 chip->options |= NAND_SKIP_BBTSCAN;
Huang Shijief720e7c2013-08-16 10:10:08 +08002046 ret = nand_scan_tail(mtd);
2047 if (ret)
2048 goto err_out;
Huang Shijie10a2bca2011-09-08 10:47:09 +08002049
Huang Shijie885d71e2013-11-12 12:23:08 +08002050 ret = nand_boot_init(this);
2051 if (ret)
Boris Brezillon4d024232017-04-10 10:35:17 +02002052 goto err_nand_cleanup;
Fabio Estevam899b8342015-02-09 19:22:33 -02002053 ret = chip->scan_bbt(mtd);
2054 if (ret)
Boris Brezillon4d024232017-04-10 10:35:17 +02002055 goto err_nand_cleanup;
Huang Shijie885d71e2013-11-12 12:23:08 +08002056
Brian Norrisa61ae812015-10-30 20:33:25 -07002057 ret = mtd_device_register(mtd, NULL, 0);
Huang Shijie10a2bca2011-09-08 10:47:09 +08002058 if (ret)
Boris Brezillon4d024232017-04-10 10:35:17 +02002059 goto err_nand_cleanup;
Huang Shijie10a2bca2011-09-08 10:47:09 +08002060 return 0;
2061
Boris Brezillon4d024232017-04-10 10:35:17 +02002062err_nand_cleanup:
2063 nand_cleanup(chip);
Huang Shijie10a2bca2011-09-08 10:47:09 +08002064err_out:
Boris Brezillon4d024232017-04-10 10:35:17 +02002065 gpmi_free_dma_buffer(this);
Huang Shijie10a2bca2011-09-08 10:47:09 +08002066 return ret;
2067}
2068
Huang Shijiee10db1f2012-05-04 21:42:05 -04002069static const struct of_device_id gpmi_nand_id_table[] = {
2070 {
2071 .compatible = "fsl,imx23-gpmi-nand",
Lothar Waßmann6a760962014-06-12 15:20:41 +02002072 .data = &gpmi_devdata_imx23,
Huang Shijiee10db1f2012-05-04 21:42:05 -04002073 }, {
2074 .compatible = "fsl,imx28-gpmi-nand",
Lothar Waßmann6a760962014-06-12 15:20:41 +02002075 .data = &gpmi_devdata_imx28,
Huang Shijie9013bb42012-05-04 21:42:06 -04002076 }, {
2077 .compatible = "fsl,imx6q-gpmi-nand",
Lothar Waßmann6a760962014-06-12 15:20:41 +02002078 .data = &gpmi_devdata_imx6q,
Huang Shijie91f54982014-03-27 10:43:22 +08002079 }, {
2080 .compatible = "fsl,imx6sx-gpmi-nand",
Lothar Waßmann6a760962014-06-12 15:20:41 +02002081 .data = &gpmi_devdata_imx6sx,
Stefan Agnerb4af6942017-04-21 18:23:35 -07002082 }, {
2083 .compatible = "fsl,imx7d-gpmi-nand",
2084 .data = &gpmi_devdata_imx7d,
Huang Shijiee10db1f2012-05-04 21:42:05 -04002085 }, {}
2086};
2087MODULE_DEVICE_TABLE(of, gpmi_nand_id_table);
2088
Bill Pemberton06f25512012-11-19 13:23:07 -05002089static int gpmi_nand_probe(struct platform_device *pdev)
Huang Shijie10a2bca2011-09-08 10:47:09 +08002090{
Huang Shijie10a2bca2011-09-08 10:47:09 +08002091 struct gpmi_nand_data *this;
Huang Shijiee10db1f2012-05-04 21:42:05 -04002092 const struct of_device_id *of_id;
Huang Shijie10a2bca2011-09-08 10:47:09 +08002093 int ret;
2094
Huang Shijie6189ccc2014-03-21 18:19:39 +08002095 this = devm_kzalloc(&pdev->dev, sizeof(*this), GFP_KERNEL);
2096 if (!this)
2097 return -ENOMEM;
2098
Huang Shijiee10db1f2012-05-04 21:42:05 -04002099 of_id = of_match_device(gpmi_nand_id_table, &pdev->dev);
2100 if (of_id) {
Huang Shijie6189ccc2014-03-21 18:19:39 +08002101 this->devdata = of_id->data;
Huang Shijiee10db1f2012-05-04 21:42:05 -04002102 } else {
Huang Shijieda40c162013-11-20 10:09:43 +08002103 dev_err(&pdev->dev, "Failed to find the right device id.\n");
Lothar Waßmann52a073b2013-08-07 08:15:38 +02002104 return -ENODEV;
Huang Shijiee10db1f2012-05-04 21:42:05 -04002105 }
2106
Huang Shijie10a2bca2011-09-08 10:47:09 +08002107 platform_set_drvdata(pdev, this);
2108 this->pdev = pdev;
2109 this->dev = &pdev->dev;
Huang Shijie10a2bca2011-09-08 10:47:09 +08002110
2111 ret = acquire_resources(this);
2112 if (ret)
2113 goto exit_acquire_resources;
2114
2115 ret = init_hardware(this);
2116 if (ret)
2117 goto exit_nfc_init;
2118
Huang Shijieccce4172013-11-14 14:25:47 +08002119 ret = gpmi_nand_init(this);
Huang Shijie10a2bca2011-09-08 10:47:09 +08002120 if (ret)
2121 goto exit_nfc_init;
2122
Fabio Estevam490e2802012-09-05 11:35:24 -03002123 dev_info(this->dev, "driver registered.\n");
2124
Huang Shijie10a2bca2011-09-08 10:47:09 +08002125 return 0;
2126
2127exit_nfc_init:
2128 release_resources(this);
Huang Shijie10a2bca2011-09-08 10:47:09 +08002129exit_acquire_resources:
Fabio Estevam490e2802012-09-05 11:35:24 -03002130
Huang Shijie10a2bca2011-09-08 10:47:09 +08002131 return ret;
2132}
2133
Bill Pemberton810b7e02012-11-19 13:26:04 -05002134static int gpmi_nand_remove(struct platform_device *pdev)
Huang Shijie10a2bca2011-09-08 10:47:09 +08002135{
2136 struct gpmi_nand_data *this = platform_get_drvdata(pdev);
2137
Boris Brezillonebb528d92017-04-10 10:35:18 +02002138 nand_release(nand_to_mtd(&this->nand));
2139 gpmi_free_dma_buffer(this);
Huang Shijie10a2bca2011-09-08 10:47:09 +08002140 release_resources(this);
Huang Shijie10a2bca2011-09-08 10:47:09 +08002141 return 0;
2142}
2143
Huang Shijie026918e2015-12-02 16:47:40 -06002144#ifdef CONFIG_PM_SLEEP
2145static int gpmi_pm_suspend(struct device *dev)
2146{
2147 struct gpmi_nand_data *this = dev_get_drvdata(dev);
2148
2149 release_dma_channels(this);
2150 return 0;
2151}
2152
2153static int gpmi_pm_resume(struct device *dev)
2154{
2155 struct gpmi_nand_data *this = dev_get_drvdata(dev);
2156 int ret;
2157
2158 ret = acquire_dma_channels(this);
2159 if (ret < 0)
2160 return ret;
2161
2162 /* re-init the GPMI registers */
2163 this->flags &= ~GPMI_TIMING_INIT_OK;
2164 ret = gpmi_init(this);
2165 if (ret) {
2166 dev_err(this->dev, "Error setting GPMI : %d\n", ret);
2167 return ret;
2168 }
2169
2170 /* re-init the BCH registers */
2171 ret = bch_set_geometry(this);
2172 if (ret) {
2173 dev_err(this->dev, "Error setting BCH : %d\n", ret);
2174 return ret;
2175 }
2176
2177 /* re-init others */
2178 gpmi_extra_init(this);
2179
2180 return 0;
2181}
2182#endif /* CONFIG_PM_SLEEP */
2183
2184static const struct dev_pm_ops gpmi_pm_ops = {
2185 SET_SYSTEM_SLEEP_PM_OPS(gpmi_pm_suspend, gpmi_pm_resume)
2186};
2187
Huang Shijie10a2bca2011-09-08 10:47:09 +08002188static struct platform_driver gpmi_nand_driver = {
2189 .driver = {
2190 .name = "gpmi-nand",
Huang Shijie026918e2015-12-02 16:47:40 -06002191 .pm = &gpmi_pm_ops,
Huang Shijiee10db1f2012-05-04 21:42:05 -04002192 .of_match_table = gpmi_nand_id_table,
Huang Shijie10a2bca2011-09-08 10:47:09 +08002193 },
2194 .probe = gpmi_nand_probe,
Bill Pemberton5153b882012-11-19 13:21:24 -05002195 .remove = gpmi_nand_remove,
Huang Shijie10a2bca2011-09-08 10:47:09 +08002196};
Fabio Estevam490e2802012-09-05 11:35:24 -03002197module_platform_driver(gpmi_nand_driver);
Huang Shijie10a2bca2011-09-08 10:47:09 +08002198
2199MODULE_AUTHOR("Freescale Semiconductor, Inc.");
2200MODULE_DESCRIPTION("i.MX GPMI NAND Flash Controller Driver");
2201MODULE_LICENSE("GPL");