blob: 1acf06b237c354df2c98e37869751a57cd6ce752 [file] [log] [blame]
Dirk Behme12201a12008-12-14 09:47:16 +01001/*
2 * (C) Copyright 2004-2008 Texas Instruments, <www.ti.com>
3 * Rohit Choraria <rohitkc@ti.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Dirk Behme12201a12008-12-14 09:47:16 +01006 */
7
8#include <common.h>
9#include <asm/io.h>
10#include <asm/errno.h>
11#include <asm/arch/mem.h>
pekon gupta6aff0502013-11-22 16:53:29 +053012#include <linux/mtd/omap_gpmc.h>
Dirk Behme12201a12008-12-14 09:47:16 +010013#include <linux/mtd/nand_ecc.h>
Andreas Bießmann4a093002013-04-05 04:55:21 +000014#include <linux/bch.h>
Stefano Babicf7dad8f2012-03-21 23:56:17 +000015#include <linux/compiler.h>
Dirk Behme12201a12008-12-14 09:47:16 +010016#include <nand.h>
pekon gupta2eda8922013-11-22 16:53:30 +053017#include <linux/mtd/omap_elm.h>
pekon guptad016dc42013-11-18 19:03:00 +053018
19#define BADBLOCK_MARKER_LENGTH 2
20#define SECTOR_BYTES 512
pekon guptaf5f1f612013-11-19 11:02:15 +053021#define ECCCLEAR (0x1 << 8)
22#define ECCRESULTREG1 (0x1 << 0)
pekon gupta6e562b12013-11-19 11:02:17 +053023/* 4 bit padding to make byte aligned, 56 = 52 + 4 */
24#define BCH4_BIT_PAD 4
25
pekon gupta71a7f952013-11-19 11:02:16 +053026#ifdef CONFIG_BCH
27static u8 bch8_polynomial[] = {0xef, 0x51, 0x2e, 0x09, 0xed, 0x93, 0x9a, 0xc2,
28 0x97, 0x79, 0xe5, 0x24, 0xb5};
29#endif
Dirk Behme12201a12008-12-14 09:47:16 +010030static uint8_t cs;
pekon guptad016dc42013-11-18 19:03:00 +053031static __maybe_unused struct nand_ecclayout omap_ecclayout;
Dirk Behme12201a12008-12-14 09:47:16 +010032
33/*
34 * omap_nand_hwcontrol - Set the address pointers corretly for the
35 * following address/data/command operation
36 */
37static void omap_nand_hwcontrol(struct mtd_info *mtd, int32_t cmd,
38 uint32_t ctrl)
39{
40 register struct nand_chip *this = mtd->priv;
41
42 /*
43 * Point the IO_ADDR to DATA and ADDRESS registers instead
44 * of chip address
45 */
46 switch (ctrl) {
47 case NAND_CTRL_CHANGE | NAND_CTRL_CLE:
Dirk Behme89411352009-08-08 09:30:22 +020048 this->IO_ADDR_W = (void __iomem *)&gpmc_cfg->cs[cs].nand_cmd;
Dirk Behme12201a12008-12-14 09:47:16 +010049 break;
50 case NAND_CTRL_CHANGE | NAND_CTRL_ALE:
Dirk Behme89411352009-08-08 09:30:22 +020051 this->IO_ADDR_W = (void __iomem *)&gpmc_cfg->cs[cs].nand_adr;
Dirk Behme12201a12008-12-14 09:47:16 +010052 break;
53 case NAND_CTRL_CHANGE | NAND_NCE:
Dirk Behme89411352009-08-08 09:30:22 +020054 this->IO_ADDR_W = (void __iomem *)&gpmc_cfg->cs[cs].nand_dat;
Dirk Behme12201a12008-12-14 09:47:16 +010055 break;
56 }
57
58 if (cmd != NAND_CMD_NONE)
59 writeb(cmd, this->IO_ADDR_W);
60}
61
Simon Schwarz12c2f1e2011-09-14 15:30:16 -040062#ifdef CONFIG_SPL_BUILD
63/* Check wait pin as dev ready indicator */
64int omap_spl_dev_ready(struct mtd_info *mtd)
65{
66 return gpmc_cfg->status & (1 << 8);
67}
68#endif
69
Dirk Behme12201a12008-12-14 09:47:16 +010070
71/*
72 * gen_true_ecc - This function will generate true ECC value, which
73 * can be used when correcting data read from NAND flash memory core
74 *
75 * @ecc_buf: buffer to store ecc code
76 *
77 * @return: re-formatted ECC value
78 */
79static uint32_t gen_true_ecc(uint8_t *ecc_buf)
80{
81 return ecc_buf[0] | (ecc_buf[1] << 16) | ((ecc_buf[2] & 0xF0) << 20) |
82 ((ecc_buf[2] & 0x0F) << 8);
83}
84
85/*
86 * omap_correct_data - Compares the ecc read from nand spare area with ECC
87 * registers values and corrects one bit error if it has occured
88 * Further details can be had from OMAP TRM and the following selected links:
89 * http://en.wikipedia.org/wiki/Hamming_code
90 * http://www.cs.utexas.edu/users/plaxton/c/337/05f/slides/ErrorCorrection-4.pdf
91 *
92 * @mtd: MTD device structure
93 * @dat: page data
94 * @read_ecc: ecc read from nand flash
95 * @calc_ecc: ecc read from ECC registers
96 *
97 * @return 0 if data is OK or corrected, else returns -1
98 */
Stefano Babicf7dad8f2012-03-21 23:56:17 +000099static int __maybe_unused omap_correct_data(struct mtd_info *mtd, uint8_t *dat,
Dirk Behme12201a12008-12-14 09:47:16 +0100100 uint8_t *read_ecc, uint8_t *calc_ecc)
101{
102 uint32_t orig_ecc, new_ecc, res, hm;
103 uint16_t parity_bits, byte;
104 uint8_t bit;
105
106 /* Regenerate the orginal ECC */
107 orig_ecc = gen_true_ecc(read_ecc);
108 new_ecc = gen_true_ecc(calc_ecc);
109 /* Get the XOR of real ecc */
110 res = orig_ecc ^ new_ecc;
111 if (res) {
112 /* Get the hamming width */
113 hm = hweight32(res);
114 /* Single bit errors can be corrected! */
115 if (hm == 12) {
116 /* Correctable data! */
117 parity_bits = res >> 16;
118 bit = (parity_bits & 0x7);
119 byte = (parity_bits >> 3) & 0x1FF;
120 /* Flip the bit to correct */
121 dat[byte] ^= (0x1 << bit);
122 } else if (hm == 1) {
123 printf("Error: Ecc is wrong\n");
124 /* ECC itself is corrupted */
125 return 2;
126 } else {
127 /*
128 * hm distance != parity pairs OR one, could mean 2 bit
129 * error OR potentially be on a blank page..
130 * orig_ecc: contains spare area data from nand flash.
131 * new_ecc: generated ecc while reading data area.
132 * Note: if the ecc = 0, all data bits from which it was
133 * generated are 0xFF.
134 * The 3 byte(24 bits) ecc is generated per 512byte
135 * chunk of a page. If orig_ecc(from spare area)
136 * is 0xFF && new_ecc(computed now from data area)=0x0,
137 * this means that data area is 0xFF and spare area is
138 * 0xFF. A sure sign of a erased page!
139 */
140 if ((orig_ecc == 0x0FFF0FFF) && (new_ecc == 0x00000000))
141 return 0;
142 printf("Error: Bad compare! failed\n");
143 /* detected 2 bit error */
144 return -1;
145 }
146 }
147 return 0;
148}
149
150/*
pekon gupta92332792014-04-11 12:55:33 +0530151 * Driver configurations
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000152 */
pekon gupta92332792014-04-11 12:55:33 +0530153struct omap_nand_info {
Andreas Bießmann4a093002013-04-05 04:55:21 +0000154 struct bch_control *control;
pekon guptad016dc42013-11-18 19:03:00 +0530155 enum omap_ecc ecc_scheme;
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000156};
157
Andreas Bießmann4a093002013-04-05 04:55:21 +0000158/*
159 * This can be a single instance cause all current users have only one NAND
160 * with nearly the same setup (BCH8, some with ELM and others with sw BCH
161 * library).
162 * When some users with other BCH strength will exists this have to change!
163 */
pekon gupta92332792014-04-11 12:55:33 +0530164static __maybe_unused struct omap_nand_info omap_nand_info = {
Andreas Bießmann4a093002013-04-05 04:55:21 +0000165 .control = NULL
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000166};
167
168/*
pekon gupta6e562b12013-11-19 11:02:17 +0530169 * omap_reverse_list - re-orders list elements in reverse order [internal]
170 * @list: pointer to start of list
171 * @length: length of list
172*/
173void omap_reverse_list(u8 *list, unsigned int length)
174{
175 unsigned int i, j;
176 unsigned int half_length = length / 2;
177 u8 tmp;
178 for (i = 0, j = length - 1; i < half_length; i++, j--) {
179 tmp = list[i];
180 list[i] = list[j];
181 list[j] = tmp;
182 }
183}
184
185/*
pekon guptaf5f1f612013-11-19 11:02:15 +0530186 * omap_enable_hwecc - configures GPMC as per ECC scheme before read/write
Andreas Bießmann4a093002013-04-05 04:55:21 +0000187 * @mtd: MTD device structure
188 * @mode: Read/Write mode
189 */
190__maybe_unused
pekon guptaf5f1f612013-11-19 11:02:15 +0530191static void omap_enable_hwecc(struct mtd_info *mtd, int32_t mode)
Andreas Bießmann4a093002013-04-05 04:55:21 +0000192{
pekon guptaf5f1f612013-11-19 11:02:15 +0530193 struct nand_chip *nand = mtd->priv;
pekon gupta92332792014-04-11 12:55:33 +0530194 struct omap_nand_info *info = nand->priv;
pekon guptaf5f1f612013-11-19 11:02:15 +0530195 unsigned int dev_width = (nand->options & NAND_BUSWIDTH_16) ? 1 : 0;
196 unsigned int ecc_algo = 0;
197 unsigned int bch_type = 0;
198 unsigned int eccsize1 = 0x00, eccsize0 = 0x00, bch_wrapmode = 0x00;
199 u32 ecc_size_config_val = 0;
200 u32 ecc_config_val = 0;
Andreas Bießmann4a093002013-04-05 04:55:21 +0000201
pekon guptaf5f1f612013-11-19 11:02:15 +0530202 /* configure GPMC for specific ecc-scheme */
pekon gupta92332792014-04-11 12:55:33 +0530203 switch (info->ecc_scheme) {
pekon guptaf5f1f612013-11-19 11:02:15 +0530204 case OMAP_ECC_HAM1_CODE_SW:
205 return;
206 case OMAP_ECC_HAM1_CODE_HW:
207 ecc_algo = 0x0;
208 bch_type = 0x0;
209 bch_wrapmode = 0x00;
210 eccsize0 = 0xFF;
211 eccsize1 = 0xFF;
212 break;
213 case OMAP_ECC_BCH8_CODE_HW_DETECTION_SW:
214 case OMAP_ECC_BCH8_CODE_HW:
215 ecc_algo = 0x1;
216 bch_type = 0x1;
217 if (mode == NAND_ECC_WRITE) {
218 bch_wrapmode = 0x01;
219 eccsize0 = 0; /* extra bits in nibbles per sector */
220 eccsize1 = 28; /* OOB bits in nibbles per sector */
221 } else {
222 bch_wrapmode = 0x01;
223 eccsize0 = 26; /* ECC bits in nibbles per sector */
224 eccsize1 = 2; /* non-ECC bits in nibbles per sector */
Stefan Roese5d7a49b2013-12-05 07:58:06 +0100225 }
pekon guptaf5f1f612013-11-19 11:02:15 +0530226 break;
pekon gupta46840f62014-06-02 17:14:42 +0530227 case OMAP_ECC_BCH16_CODE_HW:
228 ecc_algo = 0x1;
229 bch_type = 0x2;
230 if (mode == NAND_ECC_WRITE) {
231 bch_wrapmode = 0x01;
232 eccsize0 = 0; /* extra bits in nibbles per sector */
233 eccsize1 = 52; /* OOB bits in nibbles per sector */
234 } else {
235 bch_wrapmode = 0x01;
236 eccsize0 = 52; /* ECC bits in nibbles per sector */
237 eccsize1 = 0; /* non-ECC bits in nibbles per sector */
238 }
239 break;
pekon guptaf5f1f612013-11-19 11:02:15 +0530240 default:
241 return;
pekon guptad016dc42013-11-18 19:03:00 +0530242 }
pekon guptaf5f1f612013-11-19 11:02:15 +0530243 /* Clear ecc and enable bits */
244 writel(ECCCLEAR | ECCRESULTREG1, &gpmc_cfg->ecc_control);
245 /* Configure ecc size for BCH */
246 ecc_size_config_val = (eccsize1 << 22) | (eccsize0 << 12);
247 writel(ecc_size_config_val, &gpmc_cfg->ecc_size_config);
Andreas Bießmann4a093002013-04-05 04:55:21 +0000248
pekon guptaf5f1f612013-11-19 11:02:15 +0530249 /* Configure device details for BCH engine */
250 ecc_config_val = ((ecc_algo << 16) | /* HAM1 | BCHx */
251 (bch_type << 12) | /* BCH4/BCH8/BCH16 */
252 (bch_wrapmode << 8) | /* wrap mode */
253 (dev_width << 7) | /* bus width */
254 (0x0 << 4) | /* number of sectors */
255 (cs << 1) | /* ECC CS */
256 (0x1)); /* enable ECC */
257 writel(ecc_config_val, &gpmc_cfg->ecc_config);
Andreas Bießmann4a093002013-04-05 04:55:21 +0000258}
259
260/*
pekon gupta71a7f952013-11-19 11:02:16 +0530261 * omap_calculate_ecc - Read ECC result
262 * @mtd: MTD structure
263 * @dat: unused
264 * @ecc_code: ecc_code buffer
265 * Using noninverted ECC can be considered ugly since writing a blank
266 * page ie. padding will clear the ECC bytes. This is no problem as
267 * long nobody is trying to write data on the seemingly unused page.
268 * Reading an erased page will produce an ECC mismatch between
269 * generated and read ECC bytes that has to be dealt with separately.
270 * E.g. if page is 0xFF (fresh erased), and if HW ECC engine within GPMC
271 * is used, the result of read will be 0x0 while the ECC offsets of the
272 * spare area will be 0xFF which will result in an ECC mismatch.
Andreas Bießmann4a093002013-04-05 04:55:21 +0000273 */
pekon gupta71a7f952013-11-19 11:02:16 +0530274static int omap_calculate_ecc(struct mtd_info *mtd, const uint8_t *dat,
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000275 uint8_t *ecc_code)
276{
pekon gupta71a7f952013-11-19 11:02:16 +0530277 struct nand_chip *chip = mtd->priv;
pekon gupta92332792014-04-11 12:55:33 +0530278 struct omap_nand_info *info = chip->priv;
pekon gupta71a7f952013-11-19 11:02:16 +0530279 uint32_t *ptr, val = 0;
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000280 int8_t i = 0, j;
281
pekon gupta92332792014-04-11 12:55:33 +0530282 switch (info->ecc_scheme) {
pekon gupta71a7f952013-11-19 11:02:16 +0530283 case OMAP_ECC_HAM1_CODE_HW:
284 val = readl(&gpmc_cfg->ecc1_result);
285 ecc_code[0] = val & 0xFF;
286 ecc_code[1] = (val >> 16) & 0xFF;
287 ecc_code[2] = ((val >> 8) & 0x0F) | ((val >> 20) & 0xF0);
288 break;
289#ifdef CONFIG_BCH
290 case OMAP_ECC_BCH8_CODE_HW_DETECTION_SW:
291#endif
292 case OMAP_ECC_BCH8_CODE_HW:
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000293 ptr = &gpmc_cfg->bch_result_0_3[0].bch_result_x[3];
pekon gupta71a7f952013-11-19 11:02:16 +0530294 val = readl(ptr);
295 ecc_code[i++] = (val >> 0) & 0xFF;
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000296 ptr--;
297 for (j = 0; j < 3; j++) {
pekon gupta71a7f952013-11-19 11:02:16 +0530298 val = readl(ptr);
299 ecc_code[i++] = (val >> 24) & 0xFF;
300 ecc_code[i++] = (val >> 16) & 0xFF;
301 ecc_code[i++] = (val >> 8) & 0xFF;
302 ecc_code[i++] = (val >> 0) & 0xFF;
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000303 ptr--;
304 }
pekon gupta71a7f952013-11-19 11:02:16 +0530305 break;
pekon gupta46840f62014-06-02 17:14:42 +0530306 case OMAP_ECC_BCH16_CODE_HW:
307 val = readl(&gpmc_cfg->bch_result_4_6[0].bch_result_x[2]);
308 ecc_code[i++] = (val >> 8) & 0xFF;
309 ecc_code[i++] = (val >> 0) & 0xFF;
310 val = readl(&gpmc_cfg->bch_result_4_6[0].bch_result_x[1]);
311 ecc_code[i++] = (val >> 24) & 0xFF;
312 ecc_code[i++] = (val >> 16) & 0xFF;
313 ecc_code[i++] = (val >> 8) & 0xFF;
314 ecc_code[i++] = (val >> 0) & 0xFF;
315 val = readl(&gpmc_cfg->bch_result_4_6[0].bch_result_x[0]);
316 ecc_code[i++] = (val >> 24) & 0xFF;
317 ecc_code[i++] = (val >> 16) & 0xFF;
318 ecc_code[i++] = (val >> 8) & 0xFF;
319 ecc_code[i++] = (val >> 0) & 0xFF;
320 for (j = 3; j >= 0; j--) {
321 val = readl(&gpmc_cfg->bch_result_0_3[0].bch_result_x[j]
322 );
323 ecc_code[i++] = (val >> 24) & 0xFF;
324 ecc_code[i++] = (val >> 16) & 0xFF;
325 ecc_code[i++] = (val >> 8) & 0xFF;
326 ecc_code[i++] = (val >> 0) & 0xFF;
327 }
328 break;
pekon gupta71a7f952013-11-19 11:02:16 +0530329 default:
330 return -EINVAL;
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000331 }
pekon gupta71a7f952013-11-19 11:02:16 +0530332 /* ECC scheme specific syndrome customizations */
pekon gupta92332792014-04-11 12:55:33 +0530333 switch (info->ecc_scheme) {
pekon gupta71a7f952013-11-19 11:02:16 +0530334 case OMAP_ECC_HAM1_CODE_HW:
335 break;
336#ifdef CONFIG_BCH
337 case OMAP_ECC_BCH8_CODE_HW_DETECTION_SW:
338
339 for (i = 0; i < chip->ecc.bytes; i++)
340 *(ecc_code + i) = *(ecc_code + i) ^
341 bch8_polynomial[i];
342 break;
343#endif
344 case OMAP_ECC_BCH8_CODE_HW:
345 ecc_code[chip->ecc.bytes - 1] = 0x00;
346 break;
pekon gupta46840f62014-06-02 17:14:42 +0530347 case OMAP_ECC_BCH16_CODE_HW:
348 break;
pekon gupta71a7f952013-11-19 11:02:16 +0530349 default:
350 return -EINVAL;
351 }
352 return 0;
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000353}
354
pekon gupta71a7f952013-11-19 11:02:16 +0530355#ifdef CONFIG_NAND_OMAP_ELM
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000356/*
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000357 * omap_correct_data_bch - Compares the ecc read from nand spare area
358 * with ECC registers values and corrects one bit error if it has occured
359 *
360 * @mtd: MTD device structure
361 * @dat: page data
362 * @read_ecc: ecc read from nand flash (ignored)
363 * @calc_ecc: ecc read from ECC registers
364 *
365 * @return 0 if data is OK or corrected, else returns -1
366 */
367static int omap_correct_data_bch(struct mtd_info *mtd, uint8_t *dat,
368 uint8_t *read_ecc, uint8_t *calc_ecc)
369{
370 struct nand_chip *chip = mtd->priv;
pekon gupta92332792014-04-11 12:55:33 +0530371 struct omap_nand_info *info = chip->priv;
pekon guptaa09431d2014-04-11 12:55:34 +0530372 struct nand_ecc_ctrl *ecc = &chip->ecc;
pekon gupta6e562b12013-11-19 11:02:17 +0530373 uint32_t error_count = 0, error_max;
pekon gupta46840f62014-06-02 17:14:42 +0530374 uint32_t error_loc[ELM_MAX_ERROR_COUNT];
pekon guptad21e77f2014-04-11 12:55:32 +0530375 enum bch_level bch_type;
pekon gupta6e562b12013-11-19 11:02:17 +0530376 uint32_t i, ecc_flag = 0;
377 uint8_t count, err = 0;
378 uint32_t byte_pos, bit_pos;
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000379
pekon gupta6e562b12013-11-19 11:02:17 +0530380 /* check calculated ecc */
pekon guptaa09431d2014-04-11 12:55:34 +0530381 for (i = 0; i < ecc->bytes && !ecc_flag; i++) {
pekon gupta6e562b12013-11-19 11:02:17 +0530382 if (calc_ecc[i] != 0x00)
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000383 ecc_flag = 1;
pekon gupta6e562b12013-11-19 11:02:17 +0530384 }
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000385 if (!ecc_flag)
386 return 0;
387
pekon gupta6e562b12013-11-19 11:02:17 +0530388 /* check for whether its a erased-page */
389 ecc_flag = 0;
pekon guptaa09431d2014-04-11 12:55:34 +0530390 for (i = 0; i < ecc->bytes && !ecc_flag; i++) {
pekon gupta6e562b12013-11-19 11:02:17 +0530391 if (read_ecc[i] != 0xff)
392 ecc_flag = 1;
393 }
394 if (!ecc_flag)
395 return 0;
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000396
397 /*
398 * while reading ECC result we read it in big endian.
399 * Hence while loading to ELM we have rotate to get the right endian.
400 */
pekon gupta92332792014-04-11 12:55:33 +0530401 switch (info->ecc_scheme) {
pekon gupta6e562b12013-11-19 11:02:17 +0530402 case OMAP_ECC_BCH8_CODE_HW:
pekon guptad21e77f2014-04-11 12:55:32 +0530403 bch_type = BCH_8_BIT;
pekon guptaa09431d2014-04-11 12:55:34 +0530404 omap_reverse_list(calc_ecc, ecc->bytes - 1);
pekon gupta6e562b12013-11-19 11:02:17 +0530405 break;
pekon gupta46840f62014-06-02 17:14:42 +0530406 case OMAP_ECC_BCH16_CODE_HW:
407 bch_type = BCH_16_BIT;
408 omap_reverse_list(calc_ecc, ecc->bytes);
409 break;
pekon gupta6e562b12013-11-19 11:02:17 +0530410 default:
411 return -EINVAL;
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000412 }
pekon gupta6e562b12013-11-19 11:02:17 +0530413 /* use elm module to check for errors */
pekon guptad21e77f2014-04-11 12:55:32 +0530414 elm_config(bch_type);
pekon gupta3f990dc2014-04-11 12:55:35 +0530415 err = elm_check_error(calc_ecc, bch_type, &error_count, error_loc);
416 if (err)
417 return err;
418
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000419 /* correct bch error */
pekon gupta6e562b12013-11-19 11:02:17 +0530420 for (count = 0; count < error_count; count++) {
pekon gupta92332792014-04-11 12:55:33 +0530421 switch (info->ecc_scheme) {
pekon guptad21e77f2014-04-11 12:55:32 +0530422 case OMAP_ECC_BCH8_CODE_HW:
pekon gupta6e562b12013-11-19 11:02:17 +0530423 /* 14th byte in ECC is reserved to match ROM layout */
pekon guptaa09431d2014-04-11 12:55:34 +0530424 error_max = SECTOR_BYTES + (ecc->bytes - 1);
pekon gupta6e562b12013-11-19 11:02:17 +0530425 break;
pekon gupta46840f62014-06-02 17:14:42 +0530426 case OMAP_ECC_BCH16_CODE_HW:
427 error_max = SECTOR_BYTES + ecc->bytes;
428 break;
pekon gupta6e562b12013-11-19 11:02:17 +0530429 default:
430 return -EINVAL;
431 }
432 byte_pos = error_max - (error_loc[count] / 8) - 1;
433 bit_pos = error_loc[count] % 8;
434 if (byte_pos < SECTOR_BYTES) {
435 dat[byte_pos] ^= 1 << bit_pos;
436 printf("nand: bit-flip corrected @data=%d\n", byte_pos);
437 } else if (byte_pos < error_max) {
Belisko Marek97eeae12014-04-25 12:00:07 +0200438 read_ecc[byte_pos - SECTOR_BYTES] ^= 1 << bit_pos;
pekon gupta6e562b12013-11-19 11:02:17 +0530439 printf("nand: bit-flip corrected @oob=%d\n", byte_pos -
440 SECTOR_BYTES);
441 } else {
442 err = -EBADMSG;
443 printf("nand: error: invalid bit-flip location\n");
444 }
445 }
446 return (err) ? err : error_count;
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000447}
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000448
449/**
450 * omap_read_page_bch - hardware ecc based page read function
451 * @mtd: mtd info structure
452 * @chip: nand chip info structure
453 * @buf: buffer to store read data
Sergey Lapindfe64e22013-01-14 03:46:50 +0000454 * @oob_required: caller expects OOB data read to chip->oob_poi
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000455 * @page: page number to read
456 *
457 */
458static int omap_read_page_bch(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +0000459 uint8_t *buf, int oob_required, int page)
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000460{
461 int i, eccsize = chip->ecc.size;
462 int eccbytes = chip->ecc.bytes;
463 int eccsteps = chip->ecc.steps;
464 uint8_t *p = buf;
465 uint8_t *ecc_calc = chip->buffers->ecccalc;
466 uint8_t *ecc_code = chip->buffers->ecccode;
467 uint32_t *eccpos = chip->ecc.layout->eccpos;
468 uint8_t *oob = chip->oob_poi;
469 uint32_t data_pos;
470 uint32_t oob_pos;
471
472 data_pos = 0;
473 /* oob area start */
474 oob_pos = (eccsize * eccsteps) + chip->ecc.layout->eccpos[0];
475 oob += chip->ecc.layout->eccpos[0];
476
477 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize,
478 oob += eccbytes) {
479 chip->ecc.hwctl(mtd, NAND_ECC_READ);
480 /* read data */
481 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_pos, page);
482 chip->read_buf(mtd, p, eccsize);
483
484 /* read respective ecc from oob area */
485 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, oob_pos, page);
486 chip->read_buf(mtd, oob, eccbytes);
487 /* read syndrome */
488 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
489
490 data_pos += eccsize;
491 oob_pos += eccbytes;
492 }
493
494 for (i = 0; i < chip->ecc.total; i++)
495 ecc_code[i] = chip->oob_poi[eccpos[i]];
496
497 eccsteps = chip->ecc.steps;
498 p = buf;
499
500 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
501 int stat;
502
503 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
504 if (stat < 0)
505 mtd->ecc_stats.failed++;
506 else
507 mtd->ecc_stats.corrected += stat;
508 }
509 return 0;
510}
pekon guptad016dc42013-11-18 19:03:00 +0530511#endif /* CONFIG_NAND_OMAP_ELM */
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000512
Andreas Bießmann4a093002013-04-05 04:55:21 +0000513/*
514 * OMAP3 BCH8 support (with BCH library)
515 */
pekon guptad016dc42013-11-18 19:03:00 +0530516#ifdef CONFIG_BCH
Andreas Bießmann4a093002013-04-05 04:55:21 +0000517/**
pekon guptad016dc42013-11-18 19:03:00 +0530518 * omap_correct_data_bch_sw - Decode received data and correct errors
Andreas Bießmann4a093002013-04-05 04:55:21 +0000519 * @mtd: MTD device structure
520 * @data: page data
521 * @read_ecc: ecc read from nand flash
522 * @calc_ecc: ecc read from HW ECC registers
523 */
pekon guptad016dc42013-11-18 19:03:00 +0530524static int omap_correct_data_bch_sw(struct mtd_info *mtd, u_char *data,
Andreas Bießmann4a093002013-04-05 04:55:21 +0000525 u_char *read_ecc, u_char *calc_ecc)
526{
527 int i, count;
528 /* cannot correct more than 8 errors */
529 unsigned int errloc[8];
530 struct nand_chip *chip = mtd->priv;
pekon gupta92332792014-04-11 12:55:33 +0530531 struct omap_nand_info *info = chip->priv;
Andreas Bießmann4a093002013-04-05 04:55:21 +0000532
pekon gupta92332792014-04-11 12:55:33 +0530533 count = decode_bch(info->control, NULL, 512, read_ecc, calc_ecc,
534 NULL, errloc);
Andreas Bießmann4a093002013-04-05 04:55:21 +0000535 if (count > 0) {
536 /* correct errors */
537 for (i = 0; i < count; i++) {
538 /* correct data only, not ecc bytes */
539 if (errloc[i] < 8*512)
540 data[errloc[i]/8] ^= 1 << (errloc[i] & 7);
541 printf("corrected bitflip %u\n", errloc[i]);
542#ifdef DEBUG
543 puts("read_ecc: ");
544 /*
545 * BCH8 have 13 bytes of ECC; BCH4 needs adoption
546 * here!
547 */
548 for (i = 0; i < 13; i++)
549 printf("%02x ", read_ecc[i]);
550 puts("\n");
551 puts("calc_ecc: ");
552 for (i = 0; i < 13; i++)
553 printf("%02x ", calc_ecc[i]);
554 puts("\n");
555#endif
556 }
557 } else if (count < 0) {
558 puts("ecc unrecoverable error\n");
559 }
560 return count;
561}
562
563/**
564 * omap_free_bch - Release BCH ecc resources
565 * @mtd: MTD device structure
566 */
567static void __maybe_unused omap_free_bch(struct mtd_info *mtd)
568{
569 struct nand_chip *chip = mtd->priv;
pekon gupta92332792014-04-11 12:55:33 +0530570 struct omap_nand_info *info = chip->priv;
Andreas Bießmann4a093002013-04-05 04:55:21 +0000571
pekon gupta92332792014-04-11 12:55:33 +0530572 if (info->control) {
573 free_bch(info->control);
574 info->control = NULL;
Andreas Bießmann4a093002013-04-05 04:55:21 +0000575 }
576}
pekon guptad016dc42013-11-18 19:03:00 +0530577#endif /* CONFIG_BCH */
578
579/**
580 * omap_select_ecc_scheme - configures driver for particular ecc-scheme
581 * @nand: NAND chip device structure
582 * @ecc_scheme: ecc scheme to configure
583 * @pagesize: number of main-area bytes per page of NAND device
584 * @oobsize: number of OOB/spare bytes per page of NAND device
585 */
586static int omap_select_ecc_scheme(struct nand_chip *nand,
587 enum omap_ecc ecc_scheme, unsigned int pagesize, unsigned int oobsize) {
pekon gupta92332792014-04-11 12:55:33 +0530588 struct omap_nand_info *info = nand->priv;
Nikita Kiryanoveb237a12013-12-16 19:19:01 +0200589 struct nand_ecclayout *ecclayout = &omap_ecclayout;
pekon guptad016dc42013-11-18 19:03:00 +0530590 int eccsteps = pagesize / SECTOR_BYTES;
591 int i;
592
593 switch (ecc_scheme) {
594 case OMAP_ECC_HAM1_CODE_SW:
595 debug("nand: selected OMAP_ECC_HAM1_CODE_SW\n");
596 /* For this ecc-scheme, ecc.bytes, ecc.layout, ... are
597 * initialized in nand_scan_tail(), so just set ecc.mode */
pekon gupta92332792014-04-11 12:55:33 +0530598 info->control = NULL;
pekon guptad016dc42013-11-18 19:03:00 +0530599 nand->ecc.mode = NAND_ECC_SOFT;
600 nand->ecc.layout = NULL;
Nikita Kiryanov25284602013-12-12 15:19:31 +0200601 nand->ecc.size = 0;
pekon guptad016dc42013-11-18 19:03:00 +0530602 break;
603
604 case OMAP_ECC_HAM1_CODE_HW:
605 debug("nand: selected OMAP_ECC_HAM1_CODE_HW\n");
606 /* check ecc-scheme requirements before updating ecc info */
607 if ((3 * eccsteps) + BADBLOCK_MARKER_LENGTH > oobsize) {
608 printf("nand: error: insufficient OOB: require=%d\n", (
609 (3 * eccsteps) + BADBLOCK_MARKER_LENGTH));
610 return -EINVAL;
611 }
pekon gupta92332792014-04-11 12:55:33 +0530612 info->control = NULL;
pekon guptad016dc42013-11-18 19:03:00 +0530613 /* populate ecc specific fields */
Nikita Kiryanovfcd05242013-12-17 15:18:01 +0200614 memset(&nand->ecc, 0, sizeof(struct nand_ecc_ctrl));
pekon guptad016dc42013-11-18 19:03:00 +0530615 nand->ecc.mode = NAND_ECC_HW;
616 nand->ecc.strength = 1;
617 nand->ecc.size = SECTOR_BYTES;
618 nand->ecc.bytes = 3;
619 nand->ecc.hwctl = omap_enable_hwecc;
620 nand->ecc.correct = omap_correct_data;
621 nand->ecc.calculate = omap_calculate_ecc;
622 /* define ecc-layout */
623 ecclayout->eccbytes = nand->ecc.bytes * eccsteps;
pekon gupta69cc97f2013-12-05 17:54:21 +0530624 for (i = 0; i < ecclayout->eccbytes; i++) {
625 if (nand->options & NAND_BUSWIDTH_16)
626 ecclayout->eccpos[i] = i + 2;
627 else
628 ecclayout->eccpos[i] = i + 1;
629 }
pekon guptad016dc42013-11-18 19:03:00 +0530630 ecclayout->oobfree[0].offset = i + BADBLOCK_MARKER_LENGTH;
631 ecclayout->oobfree[0].length = oobsize - ecclayout->eccbytes -
632 BADBLOCK_MARKER_LENGTH;
pekon guptad016dc42013-11-18 19:03:00 +0530633 break;
634
635 case OMAP_ECC_BCH8_CODE_HW_DETECTION_SW:
636#ifdef CONFIG_BCH
637 debug("nand: selected OMAP_ECC_BCH8_CODE_HW_DETECTION_SW\n");
638 /* check ecc-scheme requirements before updating ecc info */
639 if ((13 * eccsteps) + BADBLOCK_MARKER_LENGTH > oobsize) {
640 printf("nand: error: insufficient OOB: require=%d\n", (
641 (13 * eccsteps) + BADBLOCK_MARKER_LENGTH));
642 return -EINVAL;
643 }
644 /* check if BCH S/W library can be used for error detection */
pekon gupta92332792014-04-11 12:55:33 +0530645 info->control = init_bch(13, 8, 0x201b);
646 if (!info->control) {
pekon guptad016dc42013-11-18 19:03:00 +0530647 printf("nand: error: could not init_bch()\n");
648 return -ENODEV;
649 }
pekon guptad016dc42013-11-18 19:03:00 +0530650 /* populate ecc specific fields */
Nikita Kiryanovfcd05242013-12-17 15:18:01 +0200651 memset(&nand->ecc, 0, sizeof(struct nand_ecc_ctrl));
pekon guptad016dc42013-11-18 19:03:00 +0530652 nand->ecc.mode = NAND_ECC_HW;
653 nand->ecc.strength = 8;
654 nand->ecc.size = SECTOR_BYTES;
655 nand->ecc.bytes = 13;
pekon guptaf5f1f612013-11-19 11:02:15 +0530656 nand->ecc.hwctl = omap_enable_hwecc;
pekon guptad016dc42013-11-18 19:03:00 +0530657 nand->ecc.correct = omap_correct_data_bch_sw;
pekon gupta71a7f952013-11-19 11:02:16 +0530658 nand->ecc.calculate = omap_calculate_ecc;
pekon guptad016dc42013-11-18 19:03:00 +0530659 /* define ecc-layout */
660 ecclayout->eccbytes = nand->ecc.bytes * eccsteps;
661 ecclayout->eccpos[0] = BADBLOCK_MARKER_LENGTH;
662 for (i = 1; i < ecclayout->eccbytes; i++) {
663 if (i % nand->ecc.bytes)
664 ecclayout->eccpos[i] =
665 ecclayout->eccpos[i - 1] + 1;
666 else
667 ecclayout->eccpos[i] =
668 ecclayout->eccpos[i - 1] + 2;
669 }
670 ecclayout->oobfree[0].offset = i + BADBLOCK_MARKER_LENGTH;
671 ecclayout->oobfree[0].length = oobsize - ecclayout->eccbytes -
672 BADBLOCK_MARKER_LENGTH;
pekon guptad016dc42013-11-18 19:03:00 +0530673 break;
674#else
675 printf("nand: error: CONFIG_BCH required for ECC\n");
676 return -EINVAL;
677#endif
678
679 case OMAP_ECC_BCH8_CODE_HW:
680#ifdef CONFIG_NAND_OMAP_ELM
681 debug("nand: selected OMAP_ECC_BCH8_CODE_HW\n");
682 /* check ecc-scheme requirements before updating ecc info */
683 if ((14 * eccsteps) + BADBLOCK_MARKER_LENGTH > oobsize) {
684 printf("nand: error: insufficient OOB: require=%d\n", (
685 (14 * eccsteps) + BADBLOCK_MARKER_LENGTH));
686 return -EINVAL;
687 }
688 /* intialize ELM for ECC error detection */
689 elm_init();
pekon gupta92332792014-04-11 12:55:33 +0530690 info->control = NULL;
pekon guptad016dc42013-11-18 19:03:00 +0530691 /* populate ecc specific fields */
Nikita Kiryanovfcd05242013-12-17 15:18:01 +0200692 memset(&nand->ecc, 0, sizeof(struct nand_ecc_ctrl));
pekon guptad016dc42013-11-18 19:03:00 +0530693 nand->ecc.mode = NAND_ECC_HW;
694 nand->ecc.strength = 8;
695 nand->ecc.size = SECTOR_BYTES;
696 nand->ecc.bytes = 14;
pekon guptaf5f1f612013-11-19 11:02:15 +0530697 nand->ecc.hwctl = omap_enable_hwecc;
pekon guptad016dc42013-11-18 19:03:00 +0530698 nand->ecc.correct = omap_correct_data_bch;
pekon gupta71a7f952013-11-19 11:02:16 +0530699 nand->ecc.calculate = omap_calculate_ecc;
pekon guptad016dc42013-11-18 19:03:00 +0530700 nand->ecc.read_page = omap_read_page_bch;
701 /* define ecc-layout */
702 ecclayout->eccbytes = nand->ecc.bytes * eccsteps;
703 for (i = 0; i < ecclayout->eccbytes; i++)
704 ecclayout->eccpos[i] = i + BADBLOCK_MARKER_LENGTH;
705 ecclayout->oobfree[0].offset = i + BADBLOCK_MARKER_LENGTH;
706 ecclayout->oobfree[0].length = oobsize - ecclayout->eccbytes -
707 BADBLOCK_MARKER_LENGTH;
pekon guptad016dc42013-11-18 19:03:00 +0530708 break;
709#else
710 printf("nand: error: CONFIG_NAND_OMAP_ELM required for ECC\n");
711 return -EINVAL;
712#endif
713
pekon gupta46840f62014-06-02 17:14:42 +0530714 case OMAP_ECC_BCH16_CODE_HW:
715#ifdef CONFIG_NAND_OMAP_ELM
716 debug("nand: using OMAP_ECC_BCH16_CODE_HW\n");
717 /* check ecc-scheme requirements before updating ecc info */
718 if ((26 * eccsteps) + BADBLOCK_MARKER_LENGTH > oobsize) {
719 printf("nand: error: insufficient OOB: require=%d\n", (
720 (26 * eccsteps) + BADBLOCK_MARKER_LENGTH));
721 return -EINVAL;
722 }
723 /* intialize ELM for ECC error detection */
724 elm_init();
725 /* populate ecc specific fields */
726 nand->ecc.mode = NAND_ECC_HW;
727 nand->ecc.size = SECTOR_BYTES;
728 nand->ecc.bytes = 26;
729 nand->ecc.strength = 16;
730 nand->ecc.hwctl = omap_enable_hwecc;
731 nand->ecc.correct = omap_correct_data_bch;
732 nand->ecc.calculate = omap_calculate_ecc;
733 nand->ecc.read_page = omap_read_page_bch;
734 /* define ecc-layout */
735 ecclayout->eccbytes = nand->ecc.bytes * eccsteps;
736 for (i = 0; i < ecclayout->eccbytes; i++)
737 ecclayout->eccpos[i] = i + BADBLOCK_MARKER_LENGTH;
738 ecclayout->oobfree[0].offset = i + BADBLOCK_MARKER_LENGTH;
739 ecclayout->oobfree[0].length = oobsize - nand->ecc.bytes -
740 BADBLOCK_MARKER_LENGTH;
741 break;
742#else
743 printf("nand: error: CONFIG_NAND_OMAP_ELM required for ECC\n");
744 return -EINVAL;
745#endif
pekon guptad016dc42013-11-18 19:03:00 +0530746 default:
747 debug("nand: error: ecc scheme not enabled or supported\n");
748 return -EINVAL;
749 }
Nikita Kiryanoveb237a12013-12-16 19:19:01 +0200750
751 /* nand_scan_tail() sets ham1 sw ecc; hw ecc layout is set by driver */
752 if (ecc_scheme != OMAP_ECC_HAM1_CODE_SW)
753 nand->ecc.layout = ecclayout;
754
pekon gupta92332792014-04-11 12:55:33 +0530755 info->ecc_scheme = ecc_scheme;
pekon guptad016dc42013-11-18 19:03:00 +0530756 return 0;
757}
Andreas Bießmann4a093002013-04-05 04:55:21 +0000758
Simon Schwarz12c2f1e2011-09-14 15:30:16 -0400759#ifndef CONFIG_SPL_BUILD
Dirk Behme12201a12008-12-14 09:47:16 +0100760/*
Andreas Bießmannda634ae2013-04-04 23:52:50 +0000761 * omap_nand_switch_ecc - switch the ECC operation between different engines
762 * (h/w and s/w) and different algorithms (hamming and BCHx)
Dirk Behme12201a12008-12-14 09:47:16 +0100763 *
Andreas Bießmannda634ae2013-04-04 23:52:50 +0000764 * @hardware - true if one of the HW engines should be used
765 * @eccstrength - the number of bits that could be corrected
766 * (1 - hamming, 4 - BCH4, 8 - BCH8, 16 - BCH16)
Dirk Behme12201a12008-12-14 09:47:16 +0100767 */
pekon guptad016dc42013-11-18 19:03:00 +0530768int __maybe_unused omap_nand_switch_ecc(uint32_t hardware, uint32_t eccstrength)
Dirk Behme12201a12008-12-14 09:47:16 +0100769{
770 struct nand_chip *nand;
771 struct mtd_info *mtd;
pekon guptad016dc42013-11-18 19:03:00 +0530772 int err = 0;
Dirk Behme12201a12008-12-14 09:47:16 +0100773
774 if (nand_curr_device < 0 ||
775 nand_curr_device >= CONFIG_SYS_MAX_NAND_DEVICE ||
776 !nand_info[nand_curr_device].name) {
pekon guptad016dc42013-11-18 19:03:00 +0530777 printf("nand: error: no NAND devices found\n");
778 return -ENODEV;
Dirk Behme12201a12008-12-14 09:47:16 +0100779 }
780
781 mtd = &nand_info[nand_curr_device];
782 nand = mtd->priv;
Dirk Behme12201a12008-12-14 09:47:16 +0100783 nand->options |= NAND_OWN_BUFFERS;
Jeroen Hofstee13fbde62014-01-15 17:58:54 +0100784 nand->options &= ~NAND_SUBPAGE_READ;
Dirk Behme12201a12008-12-14 09:47:16 +0100785 /* Setup the ecc configurations again */
Andreas Bießmannda634ae2013-04-04 23:52:50 +0000786 if (hardware) {
787 if (eccstrength == 1) {
pekon guptad016dc42013-11-18 19:03:00 +0530788 err = omap_select_ecc_scheme(nand,
789 OMAP_ECC_HAM1_CODE_HW,
790 mtd->writesize, mtd->oobsize);
791 } else if (eccstrength == 8) {
792 err = omap_select_ecc_scheme(nand,
793 OMAP_ECC_BCH8_CODE_HW,
794 mtd->writesize, mtd->oobsize);
795 } else {
796 printf("nand: error: unsupported ECC scheme\n");
797 return -EINVAL;
Andreas Bießmannda634ae2013-04-04 23:52:50 +0000798 }
Dirk Behme12201a12008-12-14 09:47:16 +0100799 } else {
pekon guptad016dc42013-11-18 19:03:00 +0530800 err = omap_select_ecc_scheme(nand, OMAP_ECC_HAM1_CODE_SW,
801 mtd->writesize, mtd->oobsize);
Dirk Behme12201a12008-12-14 09:47:16 +0100802 }
803
804 /* Update NAND handling after ECC mode switch */
pekon guptad016dc42013-11-18 19:03:00 +0530805 if (!err)
806 err = nand_scan_tail(mtd);
807 return err;
Dirk Behme12201a12008-12-14 09:47:16 +0100808}
Simon Schwarz12c2f1e2011-09-14 15:30:16 -0400809#endif /* CONFIG_SPL_BUILD */
Dirk Behme12201a12008-12-14 09:47:16 +0100810
811/*
812 * Board-specific NAND initialization. The following members of the
813 * argument are board-specific:
814 * - IO_ADDR_R: address to read the 8 I/O lines of the flash device
815 * - IO_ADDR_W: address to write the 8 I/O lines of the flash device
816 * - cmd_ctrl: hardwarespecific function for accesing control-lines
817 * - waitfunc: hardwarespecific function for accesing device ready/busy line
818 * - ecc.hwctl: function to enable (reset) hardware ecc generator
819 * - ecc.mode: mode of ecc, see defines
820 * - chip_delay: chip dependent delay for transfering data from array to
821 * read regs (tR)
822 * - options: various chip options. They can partly be set to inform
823 * nand_scan about special functionality. See the defines for further
824 * explanation
825 */
826int board_nand_init(struct nand_chip *nand)
827{
828 int32_t gpmc_config = 0;
829 cs = 0;
pekon guptad016dc42013-11-18 19:03:00 +0530830 int err = 0;
Dirk Behme12201a12008-12-14 09:47:16 +0100831 /*
832 * xloader/Uboot's gpmc configuration would have configured GPMC for
833 * nand type of memory. The following logic scans and latches on to the
834 * first CS with NAND type memory.
835 * TBD: need to make this logic generic to handle multiple CS NAND
836 * devices.
837 */
838 while (cs < GPMC_MAX_CS) {
Dirk Behme12201a12008-12-14 09:47:16 +0100839 /* Check if NAND type is set */
Dirk Behme89411352009-08-08 09:30:22 +0200840 if ((readl(&gpmc_cfg->cs[cs].config1) & 0xC00) == 0x800) {
Dirk Behme12201a12008-12-14 09:47:16 +0100841 /* Found it!! */
842 break;
843 }
844 cs++;
845 }
846 if (cs >= GPMC_MAX_CS) {
pekon guptad016dc42013-11-18 19:03:00 +0530847 printf("nand: error: Unable to find NAND settings in "
Dirk Behme12201a12008-12-14 09:47:16 +0100848 "GPMC Configuration - quitting\n");
849 return -ENODEV;
850 }
851
Dirk Behme89411352009-08-08 09:30:22 +0200852 gpmc_config = readl(&gpmc_cfg->config);
Dirk Behme12201a12008-12-14 09:47:16 +0100853 /* Disable Write protect */
854 gpmc_config |= 0x10;
Dirk Behme89411352009-08-08 09:30:22 +0200855 writel(gpmc_config, &gpmc_cfg->config);
Dirk Behme12201a12008-12-14 09:47:16 +0100856
Dirk Behme89411352009-08-08 09:30:22 +0200857 nand->IO_ADDR_R = (void __iomem *)&gpmc_cfg->cs[cs].nand_dat;
858 nand->IO_ADDR_W = (void __iomem *)&gpmc_cfg->cs[cs].nand_cmd;
pekon gupta92332792014-04-11 12:55:33 +0530859 nand->priv = &omap_nand_info;
pekon guptad016dc42013-11-18 19:03:00 +0530860 nand->cmd_ctrl = omap_nand_hwcontrol;
861 nand->options |= NAND_NO_PADDING | NAND_CACHEPRG;
Dirk Behme12201a12008-12-14 09:47:16 +0100862 nand->chip_delay = 100;
pekon guptad016dc42013-11-18 19:03:00 +0530863 nand->ecc.layout = &omap_ecclayout;
Mansoor Ahamedc3754e92012-11-06 13:06:33 +0000864
pekon guptab80a6602014-05-06 00:46:19 +0530865 /* configure driver and controller based on NAND device bus-width */
866 gpmc_config = readl(&gpmc_cfg->cs[cs].config1);
867#if defined(CONFIG_SYS_NAND_BUSWIDTH_16BIT)
868 nand->options |= NAND_BUSWIDTH_16;
869 writel(gpmc_config | (0x1 << 12), &gpmc_cfg->cs[cs].config1);
870#else
871 nand->options &= ~NAND_BUSWIDTH_16;
872 writel(gpmc_config & ~(0x1 << 12), &gpmc_cfg->cs[cs].config1);
873#endif
pekon guptad016dc42013-11-18 19:03:00 +0530874 /* select ECC scheme */
pekon gupta3f719062013-11-18 19:03:01 +0530875#if defined(CONFIG_NAND_OMAP_ECCSCHEME)
876 err = omap_select_ecc_scheme(nand, CONFIG_NAND_OMAP_ECCSCHEME,
pekon guptad016dc42013-11-18 19:03:00 +0530877 CONFIG_SYS_NAND_PAGE_SIZE, CONFIG_SYS_NAND_OOBSIZE);
pekon gupta3f719062013-11-18 19:03:01 +0530878#else
879 /* pagesize and oobsize are not required to configure sw ecc-scheme */
pekon guptad016dc42013-11-18 19:03:00 +0530880 err = omap_select_ecc_scheme(nand, OMAP_ECC_HAM1_CODE_SW,
881 0, 0);
Andreas Bießmann4a093002013-04-05 04:55:21 +0000882#endif
pekon guptad016dc42013-11-18 19:03:00 +0530883 if (err)
884 return err;
Simon Schwarz12c2f1e2011-09-14 15:30:16 -0400885
Ilya Yanokff62fb42011-11-28 06:37:38 +0000886#ifdef CONFIG_SPL_BUILD
Simon Schwarz12c2f1e2011-09-14 15:30:16 -0400887 if (nand->options & NAND_BUSWIDTH_16)
888 nand->read_buf = nand_read_buf16;
889 else
890 nand->read_buf = nand_read_buf;
891 nand->dev_ready = omap_spl_dev_ready;
892#endif
Dirk Behme12201a12008-12-14 09:47:16 +0100893
894 return 0;
895}