blob: b6a08b23853bccfdac2ebcbff383a63baa3a0330 [file] [log] [blame]
Vimal Singh67ce04b2009-05-12 13:47:03 -07001/*
2 * Copyright © 2004 Texas Instruments, Jian Zhang <jzhang@ti.com>
3 * Copyright © 2004 Micron Technology Inc.
4 * Copyright © 2004 David Brownell
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/platform_device.h>
Russell King763e7352012-04-25 00:16:00 +010012#include <linux/dmaengine.h>
Vimal Singh67ce04b2009-05-12 13:47:03 -070013#include <linux/dma-mapping.h>
14#include <linux/delay.h>
Paul Gortmakera0e5cc52011-07-03 15:17:31 -040015#include <linux/module.h>
Sukumar Ghorai4e070372011-01-28 15:42:06 +053016#include <linux/interrupt.h>
vimal singhc276aca2009-06-27 11:07:06 +053017#include <linux/jiffies.h>
18#include <linux/sched.h>
Vimal Singh67ce04b2009-05-12 13:47:03 -070019#include <linux/mtd/mtd.h>
20#include <linux/mtd/nand.h>
21#include <linux/mtd/partitions.h>
Russell King763e7352012-04-25 00:16:00 +010022#include <linux/omap-dma.h>
Vimal Singh67ce04b2009-05-12 13:47:03 -070023#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Philip Avinash62116e52013-01-04 13:26:51 +053025#include <linux/of.h>
26#include <linux/of_device.h>
Vimal Singh67ce04b2009-05-12 13:47:03 -070027
Ivan Djelic0e618ef2012-04-30 12:17:18 +020028#include <linux/bch.h>
Philip Avinash62116e52013-01-04 13:26:51 +053029#include <linux/platform_data/elm.h>
Ivan Djelic0e618ef2012-04-30 12:17:18 +020030
Arnd Bergmann22037472012-08-24 15:21:06 +020031#include <linux/platform_data/mtd-nand-omap2.h>
Vimal Singh67ce04b2009-05-12 13:47:03 -070032
Vimal Singh67ce04b2009-05-12 13:47:03 -070033#define DRIVER_NAME "omap2-nand"
Sukumar Ghorai4e070372011-01-28 15:42:06 +053034#define OMAP_NAND_TIMEOUT_MS 5000
Vimal Singh67ce04b2009-05-12 13:47:03 -070035
Vimal Singh67ce04b2009-05-12 13:47:03 -070036#define NAND_Ecc_P1e (1 << 0)
37#define NAND_Ecc_P2e (1 << 1)
38#define NAND_Ecc_P4e (1 << 2)
39#define NAND_Ecc_P8e (1 << 3)
40#define NAND_Ecc_P16e (1 << 4)
41#define NAND_Ecc_P32e (1 << 5)
42#define NAND_Ecc_P64e (1 << 6)
43#define NAND_Ecc_P128e (1 << 7)
44#define NAND_Ecc_P256e (1 << 8)
45#define NAND_Ecc_P512e (1 << 9)
46#define NAND_Ecc_P1024e (1 << 10)
47#define NAND_Ecc_P2048e (1 << 11)
48
49#define NAND_Ecc_P1o (1 << 16)
50#define NAND_Ecc_P2o (1 << 17)
51#define NAND_Ecc_P4o (1 << 18)
52#define NAND_Ecc_P8o (1 << 19)
53#define NAND_Ecc_P16o (1 << 20)
54#define NAND_Ecc_P32o (1 << 21)
55#define NAND_Ecc_P64o (1 << 22)
56#define NAND_Ecc_P128o (1 << 23)
57#define NAND_Ecc_P256o (1 << 24)
58#define NAND_Ecc_P512o (1 << 25)
59#define NAND_Ecc_P1024o (1 << 26)
60#define NAND_Ecc_P2048o (1 << 27)
61
62#define TF(value) (value ? 1 : 0)
63
64#define P2048e(a) (TF(a & NAND_Ecc_P2048e) << 0)
65#define P2048o(a) (TF(a & NAND_Ecc_P2048o) << 1)
66#define P1e(a) (TF(a & NAND_Ecc_P1e) << 2)
67#define P1o(a) (TF(a & NAND_Ecc_P1o) << 3)
68#define P2e(a) (TF(a & NAND_Ecc_P2e) << 4)
69#define P2o(a) (TF(a & NAND_Ecc_P2o) << 5)
70#define P4e(a) (TF(a & NAND_Ecc_P4e) << 6)
71#define P4o(a) (TF(a & NAND_Ecc_P4o) << 7)
72
73#define P8e(a) (TF(a & NAND_Ecc_P8e) << 0)
74#define P8o(a) (TF(a & NAND_Ecc_P8o) << 1)
75#define P16e(a) (TF(a & NAND_Ecc_P16e) << 2)
76#define P16o(a) (TF(a & NAND_Ecc_P16o) << 3)
77#define P32e(a) (TF(a & NAND_Ecc_P32e) << 4)
78#define P32o(a) (TF(a & NAND_Ecc_P32o) << 5)
79#define P64e(a) (TF(a & NAND_Ecc_P64e) << 6)
80#define P64o(a) (TF(a & NAND_Ecc_P64o) << 7)
81
82#define P128e(a) (TF(a & NAND_Ecc_P128e) << 0)
83#define P128o(a) (TF(a & NAND_Ecc_P128o) << 1)
84#define P256e(a) (TF(a & NAND_Ecc_P256e) << 2)
85#define P256o(a) (TF(a & NAND_Ecc_P256o) << 3)
86#define P512e(a) (TF(a & NAND_Ecc_P512e) << 4)
87#define P512o(a) (TF(a & NAND_Ecc_P512o) << 5)
88#define P1024e(a) (TF(a & NAND_Ecc_P1024e) << 6)
89#define P1024o(a) (TF(a & NAND_Ecc_P1024o) << 7)
90
91#define P8e_s(a) (TF(a & NAND_Ecc_P8e) << 0)
92#define P8o_s(a) (TF(a & NAND_Ecc_P8o) << 1)
93#define P16e_s(a) (TF(a & NAND_Ecc_P16e) << 2)
94#define P16o_s(a) (TF(a & NAND_Ecc_P16o) << 3)
95#define P1e_s(a) (TF(a & NAND_Ecc_P1e) << 4)
96#define P1o_s(a) (TF(a & NAND_Ecc_P1o) << 5)
97#define P2e_s(a) (TF(a & NAND_Ecc_P2e) << 6)
98#define P2o_s(a) (TF(a & NAND_Ecc_P2o) << 7)
99
100#define P4e_s(a) (TF(a & NAND_Ecc_P4e) << 0)
101#define P4o_s(a) (TF(a & NAND_Ecc_P4o) << 1)
102
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700103#define PREFETCH_CONFIG1_CS_SHIFT 24
104#define ECC_CONFIG_CS_SHIFT 1
105#define CS_MASK 0x7
106#define ENABLE_PREFETCH (0x1 << 7)
107#define DMA_MPU_MODE_SHIFT 2
Afzal Mohammed2ef9f3d2012-10-04 19:03:06 +0530108#define ECCSIZE0_SHIFT 12
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700109#define ECCSIZE1_SHIFT 22
110#define ECC1RESULTSIZE 0x1
111#define ECCCLEAR 0x100
112#define ECC1 0x1
Afzal Mohammed47f88af42012-09-29 18:20:11 +0530113#define PREFETCH_FIFOTHRESHOLD_MAX 0x40
114#define PREFETCH_FIFOTHRESHOLD(val) ((val) << 8)
115#define PREFETCH_STATUS_COUNT(val) (val & 0x00003fff)
116#define PREFETCH_STATUS_FIFO_CNT(val) ((val >> 24) & 0x7F)
117#define STATUS_BUFF_EMPTY 0x00000001
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700118
Lokesh Vutlad5e7c862012-10-15 14:03:51 -0700119#define OMAP24XX_DMA_GPMC 4
120
Philip Avinashc3e4b992013-01-04 13:26:49 +0530121#define BCH8_MAX_ERROR 8 /* upto 8 bit correctable */
122#define BCH4_MAX_ERROR 4 /* upto 4 bit correctable */
123
Philip Avinash62116e52013-01-04 13:26:51 +0530124#define SECTOR_BYTES 512
125/* 4 bit padding to make byte aligned, 56 = 52 + 4 */
126#define BCH4_BIT_PAD 4
127#define BCH8_ECC_MAX ((SECTOR_BYTES + BCH8_ECC_OOB_BYTES) * 8)
128#define BCH4_ECC_MAX ((SECTOR_BYTES + BCH4_ECC_OOB_BYTES) * 8)
129
130/* GPMC ecc engine settings for read */
131#define BCH_WRAPMODE_1 1 /* BCH wrap mode 1 */
132#define BCH8R_ECC_SIZE0 0x1a /* ecc_size0 = 26 */
133#define BCH8R_ECC_SIZE1 0x2 /* ecc_size1 = 2 */
134#define BCH4R_ECC_SIZE0 0xd /* ecc_size0 = 13 */
135#define BCH4R_ECC_SIZE1 0x3 /* ecc_size1 = 3 */
136
137/* GPMC ecc engine settings for write */
138#define BCH_WRAPMODE_6 6 /* BCH wrap mode 6 */
139#define BCH_ECC_SIZE0 0x0 /* ecc_size0 = 0, no oob protection */
140#define BCH_ECC_SIZE1 0x20 /* ecc_size1 = 32 */
141
Pekon Guptab491da72013-10-24 18:20:22 +0530142#define BADBLOCK_MARKER_LENGTH 2
Pekon Guptaa919e512013-10-24 18:20:21 +0530143#define OMAP_ECC_BCH8_POLYNOMIAL 0x201b
144
Philip Avinash62116e52013-01-04 13:26:51 +0530145#ifdef CONFIG_MTD_NAND_OMAP_BCH
146static u_char bch8_vector[] = {0xf3, 0xdb, 0x14, 0x16, 0x8b, 0xd2, 0xbe, 0xcc,
147 0xac, 0x6b, 0xff, 0x99, 0x7b};
148static u_char bch4_vector[] = {0x00, 0x6b, 0x31, 0xdd, 0x41, 0xbc, 0x10};
149#endif
150
Sukumar Ghoraif040d332011-01-28 15:42:09 +0530151/* oob info generated runtime depending on ecc algorithm and layout selected */
152static struct nand_ecclayout omap_oobinfo;
vimal singh59e9c5a2009-07-13 16:26:24 +0530153
Vimal Singh67ce04b2009-05-12 13:47:03 -0700154struct omap_nand_info {
155 struct nand_hw_control controller;
156 struct omap_nand_platform_data *pdata;
157 struct mtd_info mtd;
Vimal Singh67ce04b2009-05-12 13:47:03 -0700158 struct nand_chip nand;
159 struct platform_device *pdev;
160
161 int gpmc_cs;
162 unsigned long phys_base;
Afzal Mohammed9c4c2f82012-08-30 12:53:23 -0700163 unsigned long mem_size;
vimal singhdfe32892009-07-13 16:29:16 +0530164 struct completion comp;
Russell King763e7352012-04-25 00:16:00 +0100165 struct dma_chan *dma;
Afzal Mohammed5c468452012-08-30 12:53:24 -0700166 int gpmc_irq_fifo;
167 int gpmc_irq_count;
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530168 enum {
169 OMAP_NAND_IO_READ = 0, /* read */
170 OMAP_NAND_IO_WRITE, /* write */
171 } iomode;
172 u_char *buf;
173 int buf_len;
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700174 struct gpmc_nand_regs reg;
Pekon Guptaa919e512013-10-24 18:20:21 +0530175 /* fields specific for BCHx_HW ECC scheme */
Ivan Djelic0e618ef2012-04-30 12:17:18 +0200176 struct bch_control *bch;
Philip Avinash62116e52013-01-04 13:26:51 +0530177 bool is_elm_used;
178 struct device *elm_dev;
179 struct device_node *of_node;
Vimal Singh67ce04b2009-05-12 13:47:03 -0700180};
181
182/**
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700183 * omap_prefetch_enable - configures and starts prefetch transfer
184 * @cs: cs (chip select) number
185 * @fifo_th: fifo threshold to be used for read/ write
186 * @dma_mode: dma mode enable (1) or disable (0)
187 * @u32_count: number of bytes to be transferred
188 * @is_write: prefetch read(0) or write post(1) mode
189 */
190static int omap_prefetch_enable(int cs, int fifo_th, int dma_mode,
191 unsigned int u32_count, int is_write, struct omap_nand_info *info)
192{
193 u32 val;
194
195 if (fifo_th > PREFETCH_FIFOTHRESHOLD_MAX)
196 return -1;
197
198 if (readl(info->reg.gpmc_prefetch_control))
199 return -EBUSY;
200
201 /* Set the amount of bytes to be prefetched */
202 writel(u32_count, info->reg.gpmc_prefetch_config2);
203
204 /* Set dma/mpu mode, the prefetch read / post write and
205 * enable the engine. Set which cs is has requested for.
206 */
207 val = ((cs << PREFETCH_CONFIG1_CS_SHIFT) |
208 PREFETCH_FIFOTHRESHOLD(fifo_th) | ENABLE_PREFETCH |
209 (dma_mode << DMA_MPU_MODE_SHIFT) | (0x1 & is_write));
210 writel(val, info->reg.gpmc_prefetch_config1);
211
212 /* Start the prefetch engine */
213 writel(0x1, info->reg.gpmc_prefetch_control);
214
215 return 0;
216}
217
218/**
219 * omap_prefetch_reset - disables and stops the prefetch engine
220 */
221static int omap_prefetch_reset(int cs, struct omap_nand_info *info)
222{
223 u32 config1;
224
225 /* check if the same module/cs is trying to reset */
226 config1 = readl(info->reg.gpmc_prefetch_config1);
227 if (((config1 >> PREFETCH_CONFIG1_CS_SHIFT) & CS_MASK) != cs)
228 return -EINVAL;
229
230 /* Stop the PFPW engine */
231 writel(0x0, info->reg.gpmc_prefetch_control);
232
233 /* Reset/disable the PFPW engine */
234 writel(0x0, info->reg.gpmc_prefetch_config1);
235
236 return 0;
237}
238
239/**
Vimal Singh67ce04b2009-05-12 13:47:03 -0700240 * omap_hwcontrol - hardware specific access to control-lines
241 * @mtd: MTD device structure
242 * @cmd: command to device
243 * @ctrl:
244 * NAND_NCE: bit 0 -> don't care
245 * NAND_CLE: bit 1 -> Command Latch
246 * NAND_ALE: bit 2 -> Address Latch
247 *
248 * NOTE: boards may use different bits for these!!
249 */
250static void omap_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int ctrl)
251{
252 struct omap_nand_info *info = container_of(mtd,
253 struct omap_nand_info, mtd);
Vimal Singh67ce04b2009-05-12 13:47:03 -0700254
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000255 if (cmd != NAND_CMD_NONE) {
256 if (ctrl & NAND_CLE)
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700257 writeb(cmd, info->reg.gpmc_nand_command);
Vimal Singh67ce04b2009-05-12 13:47:03 -0700258
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000259 else if (ctrl & NAND_ALE)
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700260 writeb(cmd, info->reg.gpmc_nand_address);
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000261
262 else /* NAND_NCE */
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700263 writeb(cmd, info->reg.gpmc_nand_data);
Vimal Singh67ce04b2009-05-12 13:47:03 -0700264 }
Vimal Singh67ce04b2009-05-12 13:47:03 -0700265}
266
267/**
vimal singh59e9c5a2009-07-13 16:26:24 +0530268 * omap_read_buf8 - read data from NAND controller into buffer
269 * @mtd: MTD device structure
270 * @buf: buffer to store date
271 * @len: number of bytes to read
272 */
273static void omap_read_buf8(struct mtd_info *mtd, u_char *buf, int len)
274{
275 struct nand_chip *nand = mtd->priv;
276
277 ioread8_rep(nand->IO_ADDR_R, buf, len);
278}
279
280/**
281 * omap_write_buf8 - write buffer to NAND controller
282 * @mtd: MTD device structure
283 * @buf: data buffer
284 * @len: number of bytes to write
285 */
286static void omap_write_buf8(struct mtd_info *mtd, const u_char *buf, int len)
287{
288 struct omap_nand_info *info = container_of(mtd,
289 struct omap_nand_info, mtd);
290 u_char *p = (u_char *)buf;
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000291 u32 status = 0;
vimal singh59e9c5a2009-07-13 16:26:24 +0530292
293 while (len--) {
294 iowrite8(*p++, info->nand.IO_ADDR_W);
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000295 /* wait until buffer is available for write */
296 do {
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700297 status = readl(info->reg.gpmc_status) &
Afzal Mohammed47f88af42012-09-29 18:20:11 +0530298 STATUS_BUFF_EMPTY;
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000299 } while (!status);
vimal singh59e9c5a2009-07-13 16:26:24 +0530300 }
301}
302
303/**
Vimal Singh67ce04b2009-05-12 13:47:03 -0700304 * omap_read_buf16 - read data from NAND controller into buffer
305 * @mtd: MTD device structure
306 * @buf: buffer to store date
307 * @len: number of bytes to read
308 */
309static void omap_read_buf16(struct mtd_info *mtd, u_char *buf, int len)
310{
311 struct nand_chip *nand = mtd->priv;
312
vimal singh59e9c5a2009-07-13 16:26:24 +0530313 ioread16_rep(nand->IO_ADDR_R, buf, len / 2);
Vimal Singh67ce04b2009-05-12 13:47:03 -0700314}
315
316/**
317 * omap_write_buf16 - write buffer to NAND controller
318 * @mtd: MTD device structure
319 * @buf: data buffer
320 * @len: number of bytes to write
321 */
322static void omap_write_buf16(struct mtd_info *mtd, const u_char * buf, int len)
323{
324 struct omap_nand_info *info = container_of(mtd,
325 struct omap_nand_info, mtd);
326 u16 *p = (u16 *) buf;
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000327 u32 status = 0;
Vimal Singh67ce04b2009-05-12 13:47:03 -0700328 /* FIXME try bursts of writesw() or DMA ... */
329 len >>= 1;
330
331 while (len--) {
vimal singh59e9c5a2009-07-13 16:26:24 +0530332 iowrite16(*p++, info->nand.IO_ADDR_W);
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000333 /* wait until buffer is available for write */
334 do {
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700335 status = readl(info->reg.gpmc_status) &
Afzal Mohammed47f88af42012-09-29 18:20:11 +0530336 STATUS_BUFF_EMPTY;
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000337 } while (!status);
Vimal Singh67ce04b2009-05-12 13:47:03 -0700338 }
339}
vimal singh59e9c5a2009-07-13 16:26:24 +0530340
341/**
342 * omap_read_buf_pref - read data from NAND controller into buffer
343 * @mtd: MTD device structure
344 * @buf: buffer to store date
345 * @len: number of bytes to read
346 */
347static void omap_read_buf_pref(struct mtd_info *mtd, u_char *buf, int len)
348{
349 struct omap_nand_info *info = container_of(mtd,
350 struct omap_nand_info, mtd);
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000351 uint32_t r_count = 0;
vimal singh59e9c5a2009-07-13 16:26:24 +0530352 int ret = 0;
353 u32 *p = (u32 *)buf;
354
355 /* take care of subpage reads */
Vimal Singhc3341d02010-01-07 12:16:26 +0530356 if (len % 4) {
357 if (info->nand.options & NAND_BUSWIDTH_16)
358 omap_read_buf16(mtd, buf, len % 4);
359 else
360 omap_read_buf8(mtd, buf, len % 4);
361 p = (u32 *) (buf + len % 4);
362 len -= len % 4;
vimal singh59e9c5a2009-07-13 16:26:24 +0530363 }
vimal singh59e9c5a2009-07-13 16:26:24 +0530364
365 /* configure and start prefetch transfer */
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700366 ret = omap_prefetch_enable(info->gpmc_cs,
367 PREFETCH_FIFOTHRESHOLD_MAX, 0x0, len, 0x0, info);
vimal singh59e9c5a2009-07-13 16:26:24 +0530368 if (ret) {
369 /* PFPW engine is busy, use cpu copy method */
370 if (info->nand.options & NAND_BUSWIDTH_16)
Kishore Kadiyalac5d8c0c2011-05-11 21:17:27 +0530371 omap_read_buf16(mtd, (u_char *)p, len);
vimal singh59e9c5a2009-07-13 16:26:24 +0530372 else
Kishore Kadiyalac5d8c0c2011-05-11 21:17:27 +0530373 omap_read_buf8(mtd, (u_char *)p, len);
vimal singh59e9c5a2009-07-13 16:26:24 +0530374 } else {
375 do {
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700376 r_count = readl(info->reg.gpmc_prefetch_status);
Afzal Mohammed47f88af42012-09-29 18:20:11 +0530377 r_count = PREFETCH_STATUS_FIFO_CNT(r_count);
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000378 r_count = r_count >> 2;
379 ioread32_rep(info->nand.IO_ADDR_R, p, r_count);
vimal singh59e9c5a2009-07-13 16:26:24 +0530380 p += r_count;
381 len -= r_count << 2;
382 } while (len);
vimal singh59e9c5a2009-07-13 16:26:24 +0530383 /* disable and stop the PFPW engine */
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700384 omap_prefetch_reset(info->gpmc_cs, info);
vimal singh59e9c5a2009-07-13 16:26:24 +0530385 }
386}
387
388/**
389 * omap_write_buf_pref - write buffer to NAND controller
390 * @mtd: MTD device structure
391 * @buf: data buffer
392 * @len: number of bytes to write
393 */
394static void omap_write_buf_pref(struct mtd_info *mtd,
395 const u_char *buf, int len)
396{
397 struct omap_nand_info *info = container_of(mtd,
398 struct omap_nand_info, mtd);
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530399 uint32_t w_count = 0;
vimal singh59e9c5a2009-07-13 16:26:24 +0530400 int i = 0, ret = 0;
Kishore Kadiyalac5d8c0c2011-05-11 21:17:27 +0530401 u16 *p = (u16 *)buf;
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530402 unsigned long tim, limit;
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700403 u32 val;
vimal singh59e9c5a2009-07-13 16:26:24 +0530404
405 /* take care of subpage writes */
406 if (len % 2 != 0) {
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000407 writeb(*buf, info->nand.IO_ADDR_W);
vimal singh59e9c5a2009-07-13 16:26:24 +0530408 p = (u16 *)(buf + 1);
409 len--;
410 }
411
412 /* configure and start prefetch transfer */
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700413 ret = omap_prefetch_enable(info->gpmc_cs,
414 PREFETCH_FIFOTHRESHOLD_MAX, 0x0, len, 0x1, info);
vimal singh59e9c5a2009-07-13 16:26:24 +0530415 if (ret) {
416 /* PFPW engine is busy, use cpu copy method */
417 if (info->nand.options & NAND_BUSWIDTH_16)
Kishore Kadiyalac5d8c0c2011-05-11 21:17:27 +0530418 omap_write_buf16(mtd, (u_char *)p, len);
vimal singh59e9c5a2009-07-13 16:26:24 +0530419 else
Kishore Kadiyalac5d8c0c2011-05-11 21:17:27 +0530420 omap_write_buf8(mtd, (u_char *)p, len);
vimal singh59e9c5a2009-07-13 16:26:24 +0530421 } else {
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000422 while (len) {
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700423 w_count = readl(info->reg.gpmc_prefetch_status);
Afzal Mohammed47f88af42012-09-29 18:20:11 +0530424 w_count = PREFETCH_STATUS_FIFO_CNT(w_count);
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000425 w_count = w_count >> 1;
vimal singh59e9c5a2009-07-13 16:26:24 +0530426 for (i = 0; (i < w_count) && len; i++, len -= 2)
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000427 iowrite16(*p++, info->nand.IO_ADDR_W);
vimal singh59e9c5a2009-07-13 16:26:24 +0530428 }
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000429 /* wait for data to flushed-out before reset the prefetch */
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530430 tim = 0;
431 limit = (loops_per_jiffy *
432 msecs_to_jiffies(OMAP_NAND_TIMEOUT_MS));
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700433 do {
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530434 cpu_relax();
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700435 val = readl(info->reg.gpmc_prefetch_status);
Afzal Mohammed47f88af42012-09-29 18:20:11 +0530436 val = PREFETCH_STATUS_COUNT(val);
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700437 } while (val && (tim++ < limit));
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530438
vimal singh59e9c5a2009-07-13 16:26:24 +0530439 /* disable and stop the PFPW engine */
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700440 omap_prefetch_reset(info->gpmc_cs, info);
vimal singh59e9c5a2009-07-13 16:26:24 +0530441 }
442}
443
vimal singhdfe32892009-07-13 16:29:16 +0530444/*
Russell King2df41d02012-04-25 00:19:39 +0100445 * omap_nand_dma_callback: callback on the completion of dma transfer
vimal singhdfe32892009-07-13 16:29:16 +0530446 * @data: pointer to completion data structure
447 */
Russell King763e7352012-04-25 00:16:00 +0100448static void omap_nand_dma_callback(void *data)
449{
450 complete((struct completion *) data);
451}
vimal singhdfe32892009-07-13 16:29:16 +0530452
453/*
Peter Meerwald4cacbe22012-07-19 13:21:04 +0200454 * omap_nand_dma_transfer: configure and start dma transfer
vimal singhdfe32892009-07-13 16:29:16 +0530455 * @mtd: MTD device structure
456 * @addr: virtual address in RAM of source/destination
457 * @len: number of data bytes to be transferred
458 * @is_write: flag for read/write operation
459 */
460static inline int omap_nand_dma_transfer(struct mtd_info *mtd, void *addr,
461 unsigned int len, int is_write)
462{
463 struct omap_nand_info *info = container_of(mtd,
464 struct omap_nand_info, mtd);
Russell King2df41d02012-04-25 00:19:39 +0100465 struct dma_async_tx_descriptor *tx;
vimal singhdfe32892009-07-13 16:29:16 +0530466 enum dma_data_direction dir = is_write ? DMA_TO_DEVICE :
467 DMA_FROM_DEVICE;
Russell King2df41d02012-04-25 00:19:39 +0100468 struct scatterlist sg;
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530469 unsigned long tim, limit;
Russell King2df41d02012-04-25 00:19:39 +0100470 unsigned n;
471 int ret;
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700472 u32 val;
vimal singhdfe32892009-07-13 16:29:16 +0530473
474 if (addr >= high_memory) {
475 struct page *p1;
476
477 if (((size_t)addr & PAGE_MASK) !=
478 ((size_t)(addr + len - 1) & PAGE_MASK))
479 goto out_copy;
480 p1 = vmalloc_to_page(addr);
481 if (!p1)
482 goto out_copy;
483 addr = page_address(p1) + ((size_t)addr & ~PAGE_MASK);
484 }
485
Russell King2df41d02012-04-25 00:19:39 +0100486 sg_init_one(&sg, addr, len);
487 n = dma_map_sg(info->dma->device->dev, &sg, 1, dir);
488 if (n == 0) {
vimal singhdfe32892009-07-13 16:29:16 +0530489 dev_err(&info->pdev->dev,
490 "Couldn't DMA map a %d byte buffer\n", len);
491 goto out_copy;
492 }
493
Russell King2df41d02012-04-25 00:19:39 +0100494 tx = dmaengine_prep_slave_sg(info->dma, &sg, n,
495 is_write ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
496 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
497 if (!tx)
498 goto out_copy_unmap;
499
500 tx->callback = omap_nand_dma_callback;
501 tx->callback_param = &info->comp;
502 dmaengine_submit(tx);
503
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700504 /* configure and start prefetch transfer */
505 ret = omap_prefetch_enable(info->gpmc_cs,
506 PREFETCH_FIFOTHRESHOLD_MAX, 0x1, len, is_write, info);
vimal singhdfe32892009-07-13 16:29:16 +0530507 if (ret)
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530508 /* PFPW engine is busy, use cpu copy method */
Grazvydas Ignotasd7efe222012-04-11 04:04:34 +0300509 goto out_copy_unmap;
vimal singhdfe32892009-07-13 16:29:16 +0530510
511 init_completion(&info->comp);
Russell King2df41d02012-04-25 00:19:39 +0100512 dma_async_issue_pending(info->dma);
vimal singhdfe32892009-07-13 16:29:16 +0530513
514 /* setup and start DMA using dma_addr */
515 wait_for_completion(&info->comp);
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530516 tim = 0;
517 limit = (loops_per_jiffy * msecs_to_jiffies(OMAP_NAND_TIMEOUT_MS));
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700518
519 do {
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530520 cpu_relax();
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700521 val = readl(info->reg.gpmc_prefetch_status);
Afzal Mohammed47f88af42012-09-29 18:20:11 +0530522 val = PREFETCH_STATUS_COUNT(val);
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700523 } while (val && (tim++ < limit));
vimal singhdfe32892009-07-13 16:29:16 +0530524
vimal singhdfe32892009-07-13 16:29:16 +0530525 /* disable and stop the PFPW engine */
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700526 omap_prefetch_reset(info->gpmc_cs, info);
vimal singhdfe32892009-07-13 16:29:16 +0530527
Russell King2df41d02012-04-25 00:19:39 +0100528 dma_unmap_sg(info->dma->device->dev, &sg, 1, dir);
vimal singhdfe32892009-07-13 16:29:16 +0530529 return 0;
530
Grazvydas Ignotasd7efe222012-04-11 04:04:34 +0300531out_copy_unmap:
Russell King2df41d02012-04-25 00:19:39 +0100532 dma_unmap_sg(info->dma->device->dev, &sg, 1, dir);
vimal singhdfe32892009-07-13 16:29:16 +0530533out_copy:
534 if (info->nand.options & NAND_BUSWIDTH_16)
535 is_write == 0 ? omap_read_buf16(mtd, (u_char *) addr, len)
536 : omap_write_buf16(mtd, (u_char *) addr, len);
537 else
538 is_write == 0 ? omap_read_buf8(mtd, (u_char *) addr, len)
539 : omap_write_buf8(mtd, (u_char *) addr, len);
540 return 0;
541}
vimal singhdfe32892009-07-13 16:29:16 +0530542
543/**
544 * omap_read_buf_dma_pref - read data from NAND controller into buffer
545 * @mtd: MTD device structure
546 * @buf: buffer to store date
547 * @len: number of bytes to read
548 */
549static void omap_read_buf_dma_pref(struct mtd_info *mtd, u_char *buf, int len)
550{
551 if (len <= mtd->oobsize)
552 omap_read_buf_pref(mtd, buf, len);
553 else
554 /* start transfer in DMA mode */
555 omap_nand_dma_transfer(mtd, buf, len, 0x0);
556}
557
558/**
559 * omap_write_buf_dma_pref - write buffer to NAND controller
560 * @mtd: MTD device structure
561 * @buf: data buffer
562 * @len: number of bytes to write
563 */
564static void omap_write_buf_dma_pref(struct mtd_info *mtd,
565 const u_char *buf, int len)
566{
567 if (len <= mtd->oobsize)
568 omap_write_buf_pref(mtd, buf, len);
569 else
570 /* start transfer in DMA mode */
Vimal Singhbdaefc42010-01-05 12:49:24 +0530571 omap_nand_dma_transfer(mtd, (u_char *) buf, len, 0x1);
vimal singhdfe32892009-07-13 16:29:16 +0530572}
573
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530574/*
Peter Meerwald4cacbe22012-07-19 13:21:04 +0200575 * omap_nand_irq - GPMC irq handler
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530576 * @this_irq: gpmc irq number
577 * @dev: omap_nand_info structure pointer is passed here
578 */
579static irqreturn_t omap_nand_irq(int this_irq, void *dev)
580{
581 struct omap_nand_info *info = (struct omap_nand_info *) dev;
582 u32 bytes;
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530583
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700584 bytes = readl(info->reg.gpmc_prefetch_status);
Afzal Mohammed47f88af42012-09-29 18:20:11 +0530585 bytes = PREFETCH_STATUS_FIFO_CNT(bytes);
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530586 bytes = bytes & 0xFFFC; /* io in multiple of 4 bytes */
587 if (info->iomode == OMAP_NAND_IO_WRITE) { /* checks for write io */
Afzal Mohammed5c468452012-08-30 12:53:24 -0700588 if (this_irq == info->gpmc_irq_count)
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530589 goto done;
590
591 if (info->buf_len && (info->buf_len < bytes))
592 bytes = info->buf_len;
593 else if (!info->buf_len)
594 bytes = 0;
595 iowrite32_rep(info->nand.IO_ADDR_W,
596 (u32 *)info->buf, bytes >> 2);
597 info->buf = info->buf + bytes;
598 info->buf_len -= bytes;
599
600 } else {
601 ioread32_rep(info->nand.IO_ADDR_R,
602 (u32 *)info->buf, bytes >> 2);
603 info->buf = info->buf + bytes;
604
Afzal Mohammed5c468452012-08-30 12:53:24 -0700605 if (this_irq == info->gpmc_irq_count)
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530606 goto done;
607 }
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530608
609 return IRQ_HANDLED;
610
611done:
612 complete(&info->comp);
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530613
Afzal Mohammed5c468452012-08-30 12:53:24 -0700614 disable_irq_nosync(info->gpmc_irq_fifo);
615 disable_irq_nosync(info->gpmc_irq_count);
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530616
617 return IRQ_HANDLED;
618}
619
620/*
621 * omap_read_buf_irq_pref - read data from NAND controller into buffer
622 * @mtd: MTD device structure
623 * @buf: buffer to store date
624 * @len: number of bytes to read
625 */
626static void omap_read_buf_irq_pref(struct mtd_info *mtd, u_char *buf, int len)
627{
628 struct omap_nand_info *info = container_of(mtd,
629 struct omap_nand_info, mtd);
630 int ret = 0;
631
632 if (len <= mtd->oobsize) {
633 omap_read_buf_pref(mtd, buf, len);
634 return;
635 }
636
637 info->iomode = OMAP_NAND_IO_READ;
638 info->buf = buf;
639 init_completion(&info->comp);
640
641 /* configure and start prefetch transfer */
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700642 ret = omap_prefetch_enable(info->gpmc_cs,
643 PREFETCH_FIFOTHRESHOLD_MAX/2, 0x0, len, 0x0, info);
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530644 if (ret)
645 /* PFPW engine is busy, use cpu copy method */
646 goto out_copy;
647
648 info->buf_len = len;
Afzal Mohammed5c468452012-08-30 12:53:24 -0700649
650 enable_irq(info->gpmc_irq_count);
651 enable_irq(info->gpmc_irq_fifo);
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530652
653 /* waiting for read to complete */
654 wait_for_completion(&info->comp);
655
656 /* disable and stop the PFPW engine */
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700657 omap_prefetch_reset(info->gpmc_cs, info);
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530658 return;
659
660out_copy:
661 if (info->nand.options & NAND_BUSWIDTH_16)
662 omap_read_buf16(mtd, buf, len);
663 else
664 omap_read_buf8(mtd, buf, len);
665}
666
667/*
668 * omap_write_buf_irq_pref - write buffer to NAND controller
669 * @mtd: MTD device structure
670 * @buf: data buffer
671 * @len: number of bytes to write
672 */
673static void omap_write_buf_irq_pref(struct mtd_info *mtd,
674 const u_char *buf, int len)
675{
676 struct omap_nand_info *info = container_of(mtd,
677 struct omap_nand_info, mtd);
678 int ret = 0;
679 unsigned long tim, limit;
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700680 u32 val;
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530681
682 if (len <= mtd->oobsize) {
683 omap_write_buf_pref(mtd, buf, len);
684 return;
685 }
686
687 info->iomode = OMAP_NAND_IO_WRITE;
688 info->buf = (u_char *) buf;
689 init_completion(&info->comp);
690
Sukumar Ghorai317379a2011-01-28 15:42:07 +0530691 /* configure and start prefetch transfer : size=24 */
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700692 ret = omap_prefetch_enable(info->gpmc_cs,
693 (PREFETCH_FIFOTHRESHOLD_MAX * 3) / 8, 0x0, len, 0x1, info);
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530694 if (ret)
695 /* PFPW engine is busy, use cpu copy method */
696 goto out_copy;
697
698 info->buf_len = len;
Afzal Mohammed5c468452012-08-30 12:53:24 -0700699
700 enable_irq(info->gpmc_irq_count);
701 enable_irq(info->gpmc_irq_fifo);
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530702
703 /* waiting for write to complete */
704 wait_for_completion(&info->comp);
Afzal Mohammed5c468452012-08-30 12:53:24 -0700705
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530706 /* wait for data to flushed-out before reset the prefetch */
707 tim = 0;
708 limit = (loops_per_jiffy * msecs_to_jiffies(OMAP_NAND_TIMEOUT_MS));
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700709 do {
710 val = readl(info->reg.gpmc_prefetch_status);
Afzal Mohammed47f88af42012-09-29 18:20:11 +0530711 val = PREFETCH_STATUS_COUNT(val);
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530712 cpu_relax();
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700713 } while (val && (tim++ < limit));
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530714
715 /* disable and stop the PFPW engine */
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700716 omap_prefetch_reset(info->gpmc_cs, info);
Sukumar Ghorai4e070372011-01-28 15:42:06 +0530717 return;
718
719out_copy:
720 if (info->nand.options & NAND_BUSWIDTH_16)
721 omap_write_buf16(mtd, buf, len);
722 else
723 omap_write_buf8(mtd, buf, len);
724}
725
Vimal Singh67ce04b2009-05-12 13:47:03 -0700726/**
Vimal Singh67ce04b2009-05-12 13:47:03 -0700727 * gen_true_ecc - This function will generate true ECC value
728 * @ecc_buf: buffer to store ecc code
729 *
730 * This generated true ECC value can be used when correcting
731 * data read from NAND flash memory core
732 */
733static void gen_true_ecc(u8 *ecc_buf)
734{
735 u32 tmp = ecc_buf[0] | (ecc_buf[1] << 16) |
736 ((ecc_buf[2] & 0xF0) << 20) | ((ecc_buf[2] & 0x0F) << 8);
737
738 ecc_buf[0] = ~(P64o(tmp) | P64e(tmp) | P32o(tmp) | P32e(tmp) |
739 P16o(tmp) | P16e(tmp) | P8o(tmp) | P8e(tmp));
740 ecc_buf[1] = ~(P1024o(tmp) | P1024e(tmp) | P512o(tmp) | P512e(tmp) |
741 P256o(tmp) | P256e(tmp) | P128o(tmp) | P128e(tmp));
742 ecc_buf[2] = ~(P4o(tmp) | P4e(tmp) | P2o(tmp) | P2e(tmp) | P1o(tmp) |
743 P1e(tmp) | P2048o(tmp) | P2048e(tmp));
744}
745
746/**
747 * omap_compare_ecc - Detect (2 bits) and correct (1 bit) error in data
748 * @ecc_data1: ecc code from nand spare area
749 * @ecc_data2: ecc code from hardware register obtained from hardware ecc
750 * @page_data: page data
751 *
752 * This function compares two ECC's and indicates if there is an error.
753 * If the error can be corrected it will be corrected to the buffer.
John Ogness74f1b722011-02-28 13:12:46 +0100754 * If there is no error, %0 is returned. If there is an error but it
755 * was corrected, %1 is returned. Otherwise, %-1 is returned.
Vimal Singh67ce04b2009-05-12 13:47:03 -0700756 */
757static int omap_compare_ecc(u8 *ecc_data1, /* read from NAND memory */
758 u8 *ecc_data2, /* read from register */
759 u8 *page_data)
760{
761 uint i;
762 u8 tmp0_bit[8], tmp1_bit[8], tmp2_bit[8];
763 u8 comp0_bit[8], comp1_bit[8], comp2_bit[8];
764 u8 ecc_bit[24];
765 u8 ecc_sum = 0;
766 u8 find_bit = 0;
767 uint find_byte = 0;
768 int isEccFF;
769
770 isEccFF = ((*(u32 *)ecc_data1 & 0xFFFFFF) == 0xFFFFFF);
771
772 gen_true_ecc(ecc_data1);
773 gen_true_ecc(ecc_data2);
774
775 for (i = 0; i <= 2; i++) {
776 *(ecc_data1 + i) = ~(*(ecc_data1 + i));
777 *(ecc_data2 + i) = ~(*(ecc_data2 + i));
778 }
779
780 for (i = 0; i < 8; i++) {
781 tmp0_bit[i] = *ecc_data1 % 2;
782 *ecc_data1 = *ecc_data1 / 2;
783 }
784
785 for (i = 0; i < 8; i++) {
786 tmp1_bit[i] = *(ecc_data1 + 1) % 2;
787 *(ecc_data1 + 1) = *(ecc_data1 + 1) / 2;
788 }
789
790 for (i = 0; i < 8; i++) {
791 tmp2_bit[i] = *(ecc_data1 + 2) % 2;
792 *(ecc_data1 + 2) = *(ecc_data1 + 2) / 2;
793 }
794
795 for (i = 0; i < 8; i++) {
796 comp0_bit[i] = *ecc_data2 % 2;
797 *ecc_data2 = *ecc_data2 / 2;
798 }
799
800 for (i = 0; i < 8; i++) {
801 comp1_bit[i] = *(ecc_data2 + 1) % 2;
802 *(ecc_data2 + 1) = *(ecc_data2 + 1) / 2;
803 }
804
805 for (i = 0; i < 8; i++) {
806 comp2_bit[i] = *(ecc_data2 + 2) % 2;
807 *(ecc_data2 + 2) = *(ecc_data2 + 2) / 2;
808 }
809
810 for (i = 0; i < 6; i++)
811 ecc_bit[i] = tmp2_bit[i + 2] ^ comp2_bit[i + 2];
812
813 for (i = 0; i < 8; i++)
814 ecc_bit[i + 6] = tmp0_bit[i] ^ comp0_bit[i];
815
816 for (i = 0; i < 8; i++)
817 ecc_bit[i + 14] = tmp1_bit[i] ^ comp1_bit[i];
818
819 ecc_bit[22] = tmp2_bit[0] ^ comp2_bit[0];
820 ecc_bit[23] = tmp2_bit[1] ^ comp2_bit[1];
821
822 for (i = 0; i < 24; i++)
823 ecc_sum += ecc_bit[i];
824
825 switch (ecc_sum) {
826 case 0:
827 /* Not reached because this function is not called if
828 * ECC values are equal
829 */
830 return 0;
831
832 case 1:
833 /* Uncorrectable error */
Brian Norris289c0522011-07-19 10:06:09 -0700834 pr_debug("ECC UNCORRECTED_ERROR 1\n");
Vimal Singh67ce04b2009-05-12 13:47:03 -0700835 return -1;
836
837 case 11:
838 /* UN-Correctable error */
Brian Norris289c0522011-07-19 10:06:09 -0700839 pr_debug("ECC UNCORRECTED_ERROR B\n");
Vimal Singh67ce04b2009-05-12 13:47:03 -0700840 return -1;
841
842 case 12:
843 /* Correctable error */
844 find_byte = (ecc_bit[23] << 8) +
845 (ecc_bit[21] << 7) +
846 (ecc_bit[19] << 6) +
847 (ecc_bit[17] << 5) +
848 (ecc_bit[15] << 4) +
849 (ecc_bit[13] << 3) +
850 (ecc_bit[11] << 2) +
851 (ecc_bit[9] << 1) +
852 ecc_bit[7];
853
854 find_bit = (ecc_bit[5] << 2) + (ecc_bit[3] << 1) + ecc_bit[1];
855
Brian Norris0a32a102011-07-19 10:06:10 -0700856 pr_debug("Correcting single bit ECC error at offset: "
857 "%d, bit: %d\n", find_byte, find_bit);
Vimal Singh67ce04b2009-05-12 13:47:03 -0700858
859 page_data[find_byte] ^= (1 << find_bit);
860
John Ogness74f1b722011-02-28 13:12:46 +0100861 return 1;
Vimal Singh67ce04b2009-05-12 13:47:03 -0700862 default:
863 if (isEccFF) {
864 if (ecc_data2[0] == 0 &&
865 ecc_data2[1] == 0 &&
866 ecc_data2[2] == 0)
867 return 0;
868 }
Brian Norris289c0522011-07-19 10:06:09 -0700869 pr_debug("UNCORRECTED_ERROR default\n");
Vimal Singh67ce04b2009-05-12 13:47:03 -0700870 return -1;
871 }
872}
873
874/**
875 * omap_correct_data - Compares the ECC read with HW generated ECC
876 * @mtd: MTD device structure
877 * @dat: page data
878 * @read_ecc: ecc read from nand flash
879 * @calc_ecc: ecc read from HW ECC registers
880 *
881 * Compares the ecc read from nand spare area with ECC registers values
John Ogness74f1b722011-02-28 13:12:46 +0100882 * and if ECC's mismatched, it will call 'omap_compare_ecc' for error
883 * detection and correction. If there are no errors, %0 is returned. If
884 * there were errors and all of the errors were corrected, the number of
885 * corrected errors is returned. If uncorrectable errors exist, %-1 is
886 * returned.
Vimal Singh67ce04b2009-05-12 13:47:03 -0700887 */
888static int omap_correct_data(struct mtd_info *mtd, u_char *dat,
889 u_char *read_ecc, u_char *calc_ecc)
890{
891 struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
892 mtd);
893 int blockCnt = 0, i = 0, ret = 0;
John Ogness74f1b722011-02-28 13:12:46 +0100894 int stat = 0;
Vimal Singh67ce04b2009-05-12 13:47:03 -0700895
896 /* Ex NAND_ECC_HW12_2048 */
897 if ((info->nand.ecc.mode == NAND_ECC_HW) &&
898 (info->nand.ecc.size == 2048))
899 blockCnt = 4;
900 else
901 blockCnt = 1;
902
903 for (i = 0; i < blockCnt; i++) {
904 if (memcmp(read_ecc, calc_ecc, 3) != 0) {
905 ret = omap_compare_ecc(read_ecc, calc_ecc, dat);
906 if (ret < 0)
907 return ret;
John Ogness74f1b722011-02-28 13:12:46 +0100908 /* keep track of the number of corrected errors */
909 stat += ret;
Vimal Singh67ce04b2009-05-12 13:47:03 -0700910 }
911 read_ecc += 3;
912 calc_ecc += 3;
913 dat += 512;
914 }
John Ogness74f1b722011-02-28 13:12:46 +0100915 return stat;
Vimal Singh67ce04b2009-05-12 13:47:03 -0700916}
917
918/**
919 * omap_calcuate_ecc - Generate non-inverted ECC bytes.
920 * @mtd: MTD device structure
921 * @dat: The pointer to data on which ecc is computed
922 * @ecc_code: The ecc_code buffer
923 *
924 * Using noninverted ECC can be considered ugly since writing a blank
925 * page ie. padding will clear the ECC bytes. This is no problem as long
926 * nobody is trying to write data on the seemingly unused page. Reading
927 * an erased page will produce an ECC mismatch between generated and read
928 * ECC bytes that has to be dealt with separately.
929 */
930static int omap_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
931 u_char *ecc_code)
932{
933 struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
934 mtd);
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700935 u32 val;
936
937 val = readl(info->reg.gpmc_ecc_config);
938 if (((val >> ECC_CONFIG_CS_SHIFT) & ~CS_MASK) != info->gpmc_cs)
939 return -EINVAL;
940
941 /* read ecc result */
942 val = readl(info->reg.gpmc_ecc1_result);
943 *ecc_code++ = val; /* P128e, ..., P1e */
944 *ecc_code++ = val >> 16; /* P128o, ..., P1o */
945 /* P2048o, P1024o, P512o, P256o, P2048e, P1024e, P512e, P256e */
946 *ecc_code++ = ((val >> 8) & 0x0f) | ((val >> 20) & 0xf0);
947
948 return 0;
Vimal Singh67ce04b2009-05-12 13:47:03 -0700949}
950
951/**
952 * omap_enable_hwecc - This function enables the hardware ecc functionality
953 * @mtd: MTD device structure
954 * @mode: Read/Write mode
955 */
956static void omap_enable_hwecc(struct mtd_info *mtd, int mode)
957{
958 struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
959 mtd);
960 struct nand_chip *chip = mtd->priv;
961 unsigned int dev_width = (chip->options & NAND_BUSWIDTH_16) ? 1 : 0;
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700962 u32 val;
Vimal Singh67ce04b2009-05-12 13:47:03 -0700963
Afzal Mohammed65b97cf2012-08-30 12:53:22 -0700964 /* clear ecc and enable bits */
965 val = ECCCLEAR | ECC1;
966 writel(val, info->reg.gpmc_ecc_control);
967
968 /* program ecc and result sizes */
969 val = ((((info->nand.ecc.size >> 1) - 1) << ECCSIZE1_SHIFT) |
970 ECC1RESULTSIZE);
971 writel(val, info->reg.gpmc_ecc_size_config);
972
973 switch (mode) {
974 case NAND_ECC_READ:
975 case NAND_ECC_WRITE:
976 writel(ECCCLEAR | ECC1, info->reg.gpmc_ecc_control);
977 break;
978 case NAND_ECC_READSYN:
979 writel(ECCCLEAR, info->reg.gpmc_ecc_control);
980 break;
981 default:
982 dev_info(&info->pdev->dev,
983 "error: unrecognized Mode[%d]!\n", mode);
984 break;
985 }
986
987 /* (ECC 16 or 8 bit col) | ( CS ) | ECC Enable */
988 val = (dev_width << 7) | (info->gpmc_cs << 1) | (0x1);
989 writel(val, info->reg.gpmc_ecc_config);
Vimal Singh67ce04b2009-05-12 13:47:03 -0700990}
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +0000991
Vimal Singh67ce04b2009-05-12 13:47:03 -0700992/**
993 * omap_wait - wait until the command is done
994 * @mtd: MTD device structure
995 * @chip: NAND Chip structure
996 *
997 * Wait function is called during Program and erase operations and
998 * the way it is called from MTD layer, we should wait till the NAND
999 * chip is ready after the programming/erase operation has completed.
1000 *
1001 * Erase can take up to 400ms and program up to 20ms according to
1002 * general NAND and SmartMedia specs
1003 */
1004static int omap_wait(struct mtd_info *mtd, struct nand_chip *chip)
1005{
1006 struct nand_chip *this = mtd->priv;
1007 struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
1008 mtd);
1009 unsigned long timeo = jiffies;
Ivan Djelica9c465f2012-04-17 13:11:53 +02001010 int status, state = this->state;
Vimal Singh67ce04b2009-05-12 13:47:03 -07001011
1012 if (state == FL_ERASING)
Toan Pham4ff67722013-03-15 10:44:59 -07001013 timeo += msecs_to_jiffies(400);
Vimal Singh67ce04b2009-05-12 13:47:03 -07001014 else
Toan Pham4ff67722013-03-15 10:44:59 -07001015 timeo += msecs_to_jiffies(20);
Vimal Singh67ce04b2009-05-12 13:47:03 -07001016
Afzal Mohammed65b97cf2012-08-30 12:53:22 -07001017 writeb(NAND_CMD_STATUS & 0xFF, info->reg.gpmc_nand_command);
Vimal Singh67ce04b2009-05-12 13:47:03 -07001018 while (time_before(jiffies, timeo)) {
Afzal Mohammed65b97cf2012-08-30 12:53:22 -07001019 status = readb(info->reg.gpmc_nand_data);
vimal singhc276aca2009-06-27 11:07:06 +05301020 if (status & NAND_STATUS_READY)
Vimal Singh67ce04b2009-05-12 13:47:03 -07001021 break;
vimal singhc276aca2009-06-27 11:07:06 +05301022 cond_resched();
Vimal Singh67ce04b2009-05-12 13:47:03 -07001023 }
Ivan Djelica9c465f2012-04-17 13:11:53 +02001024
Afzal Mohammed4ea1e4b2012-09-29 11:22:21 +05301025 status = readb(info->reg.gpmc_nand_data);
Vimal Singh67ce04b2009-05-12 13:47:03 -07001026 return status;
1027}
1028
1029/**
1030 * omap_dev_ready - calls the platform specific dev_ready function
1031 * @mtd: MTD device structure
1032 */
1033static int omap_dev_ready(struct mtd_info *mtd)
1034{
Sukumar Ghorai2c01946c2010-07-09 09:14:45 +00001035 unsigned int val = 0;
Vimal Singh67ce04b2009-05-12 13:47:03 -07001036 struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
1037 mtd);
Vimal Singh67ce04b2009-05-12 13:47:03 -07001038
Afzal Mohammed65b97cf2012-08-30 12:53:22 -07001039 val = readl(info->reg.gpmc_status);
Vimal Singh67ce04b2009-05-12 13:47:03 -07001040
Afzal Mohammed65b97cf2012-08-30 12:53:22 -07001041 if ((val & 0x100) == 0x100) {
1042 return 1;
1043 } else {
1044 return 0;
1045 }
Vimal Singh67ce04b2009-05-12 13:47:03 -07001046}
1047
Pekon Guptaa919e512013-10-24 18:20:21 +05301048#if defined(CONFIG_MTD_NAND_ECC_BCH) || defined(CONFIG_MTD_NAND_OMAP_BCH)
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001049/**
1050 * omap3_enable_hwecc_bch - Program OMAP3 GPMC to perform BCH ECC correction
1051 * @mtd: MTD device structure
1052 * @mode: Read/Write mode
Philip Avinash62116e52013-01-04 13:26:51 +05301053 *
1054 * When using BCH, sector size is hardcoded to 512 bytes.
1055 * Using wrapping mode 6 both for reading and writing if ELM module not uses
1056 * for error correction.
1057 * On writing,
1058 * eccsize0 = 0 (no additional protected byte in spare area)
1059 * eccsize1 = 32 (skip 32 nibbles = 16 bytes per sector in spare area)
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001060 */
1061static void omap3_enable_hwecc_bch(struct mtd_info *mtd, int mode)
1062{
1063 int nerrors;
Afzal Mohammed2ef9f3d2012-10-04 19:03:06 +05301064 unsigned int dev_width, nsectors;
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001065 struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
1066 mtd);
1067 struct nand_chip *chip = mtd->priv;
Philip Avinash62116e52013-01-04 13:26:51 +05301068 u32 val, wr_mode;
1069 unsigned int ecc_size1, ecc_size0;
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001070
Philip Avinash62116e52013-01-04 13:26:51 +05301071 /* Using wrapping mode 6 for writing */
1072 wr_mode = BCH_WRAPMODE_6;
1073
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001074 /*
Philip Avinash62116e52013-01-04 13:26:51 +05301075 * ECC engine enabled for valid ecc_size0 nibbles
1076 * and disabled for ecc_size1 nibbles.
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001077 */
Philip Avinash62116e52013-01-04 13:26:51 +05301078 ecc_size0 = BCH_ECC_SIZE0;
1079 ecc_size1 = BCH_ECC_SIZE1;
1080
1081 /* Perform ecc calculation on 512-byte sector */
1082 nsectors = 1;
1083
1084 /* Update number of error correction */
1085 nerrors = info->nand.ecc.strength;
1086
1087 /* Multi sector reading/writing for NAND flash with page size < 4096 */
1088 if (info->is_elm_used && (mtd->writesize <= 4096)) {
1089 if (mode == NAND_ECC_READ) {
1090 /* Using wrapping mode 1 for reading */
1091 wr_mode = BCH_WRAPMODE_1;
1092
1093 /*
1094 * ECC engine enabled for ecc_size0 nibbles
1095 * and disabled for ecc_size1 nibbles.
1096 */
1097 ecc_size0 = (nerrors == 8) ?
1098 BCH8R_ECC_SIZE0 : BCH4R_ECC_SIZE0;
1099 ecc_size1 = (nerrors == 8) ?
1100 BCH8R_ECC_SIZE1 : BCH4R_ECC_SIZE1;
1101 }
1102
1103 /* Perform ecc calculation for one page (< 4096) */
1104 nsectors = info->nand.ecc.steps;
1105 }
Afzal Mohammed2ef9f3d2012-10-04 19:03:06 +05301106
1107 writel(ECC1, info->reg.gpmc_ecc_control);
1108
Philip Avinash62116e52013-01-04 13:26:51 +05301109 /* Configure ecc size for BCH */
1110 val = (ecc_size1 << ECCSIZE1_SHIFT) | (ecc_size0 << ECCSIZE0_SHIFT);
Afzal Mohammed2ef9f3d2012-10-04 19:03:06 +05301111 writel(val, info->reg.gpmc_ecc_size_config);
1112
Philip Avinash62116e52013-01-04 13:26:51 +05301113 dev_width = (chip->options & NAND_BUSWIDTH_16) ? 1 : 0;
1114
Afzal Mohammed2ef9f3d2012-10-04 19:03:06 +05301115 /* BCH configuration */
1116 val = ((1 << 16) | /* enable BCH */
1117 (((nerrors == 8) ? 1 : 0) << 12) | /* 8 or 4 bits */
Philip Avinash62116e52013-01-04 13:26:51 +05301118 (wr_mode << 8) | /* wrap mode */
Afzal Mohammed2ef9f3d2012-10-04 19:03:06 +05301119 (dev_width << 7) | /* bus width */
1120 (((nsectors-1) & 0x7) << 4) | /* number of sectors */
1121 (info->gpmc_cs << 1) | /* ECC CS */
1122 (0x1)); /* enable ECC */
1123
1124 writel(val, info->reg.gpmc_ecc_config);
1125
Philip Avinash62116e52013-01-04 13:26:51 +05301126 /* Clear ecc and enable bits */
Afzal Mohammed2ef9f3d2012-10-04 19:03:06 +05301127 writel(ECCCLEAR | ECC1, info->reg.gpmc_ecc_control);
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001128}
Pekon Guptaa919e512013-10-24 18:20:21 +05301129#endif
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001130
Pekon Guptaa919e512013-10-24 18:20:21 +05301131#ifdef CONFIG_MTD_NAND_ECC_BCH
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001132/**
1133 * omap3_calculate_ecc_bch4 - Generate 7 bytes of ECC bytes
1134 * @mtd: MTD device structure
1135 * @dat: The pointer to data on which ecc is computed
1136 * @ecc_code: The ecc_code buffer
1137 */
1138static int omap3_calculate_ecc_bch4(struct mtd_info *mtd, const u_char *dat,
1139 u_char *ecc_code)
1140{
1141 struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
1142 mtd);
Afzal Mohammed2ef9f3d2012-10-04 19:03:06 +05301143 unsigned long nsectors, val1, val2;
1144 int i;
1145
1146 nsectors = ((readl(info->reg.gpmc_ecc_config) >> 4) & 0x7) + 1;
1147
1148 for (i = 0; i < nsectors; i++) {
1149
1150 /* Read hw-computed remainder */
1151 val1 = readl(info->reg.gpmc_bch_result0[i]);
1152 val2 = readl(info->reg.gpmc_bch_result1[i]);
1153
1154 /*
1155 * Add constant polynomial to remainder, in order to get an ecc
1156 * sequence of 0xFFs for a buffer filled with 0xFFs; and
1157 * left-justify the resulting polynomial.
1158 */
1159 *ecc_code++ = 0x28 ^ ((val2 >> 12) & 0xFF);
1160 *ecc_code++ = 0x13 ^ ((val2 >> 4) & 0xFF);
1161 *ecc_code++ = 0xcc ^ (((val2 & 0xF) << 4)|((val1 >> 28) & 0xF));
1162 *ecc_code++ = 0x39 ^ ((val1 >> 20) & 0xFF);
1163 *ecc_code++ = 0x96 ^ ((val1 >> 12) & 0xFF);
1164 *ecc_code++ = 0xac ^ ((val1 >> 4) & 0xFF);
1165 *ecc_code++ = 0x7f ^ ((val1 & 0xF) << 4);
1166 }
1167
1168 return 0;
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001169}
1170
1171/**
1172 * omap3_calculate_ecc_bch8 - Generate 13 bytes of ECC bytes
1173 * @mtd: MTD device structure
1174 * @dat: The pointer to data on which ecc is computed
1175 * @ecc_code: The ecc_code buffer
1176 */
1177static int omap3_calculate_ecc_bch8(struct mtd_info *mtd, const u_char *dat,
1178 u_char *ecc_code)
1179{
1180 struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
1181 mtd);
Afzal Mohammed2ef9f3d2012-10-04 19:03:06 +05301182 unsigned long nsectors, val1, val2, val3, val4;
1183 int i;
1184
1185 nsectors = ((readl(info->reg.gpmc_ecc_config) >> 4) & 0x7) + 1;
1186
1187 for (i = 0; i < nsectors; i++) {
1188
1189 /* Read hw-computed remainder */
1190 val1 = readl(info->reg.gpmc_bch_result0[i]);
1191 val2 = readl(info->reg.gpmc_bch_result1[i]);
1192 val3 = readl(info->reg.gpmc_bch_result2[i]);
1193 val4 = readl(info->reg.gpmc_bch_result3[i]);
1194
1195 /*
1196 * Add constant polynomial to remainder, in order to get an ecc
1197 * sequence of 0xFFs for a buffer filled with 0xFFs.
1198 */
1199 *ecc_code++ = 0xef ^ (val4 & 0xFF);
1200 *ecc_code++ = 0x51 ^ ((val3 >> 24) & 0xFF);
1201 *ecc_code++ = 0x2e ^ ((val3 >> 16) & 0xFF);
1202 *ecc_code++ = 0x09 ^ ((val3 >> 8) & 0xFF);
1203 *ecc_code++ = 0xed ^ (val3 & 0xFF);
1204 *ecc_code++ = 0x93 ^ ((val2 >> 24) & 0xFF);
1205 *ecc_code++ = 0x9a ^ ((val2 >> 16) & 0xFF);
1206 *ecc_code++ = 0xc2 ^ ((val2 >> 8) & 0xFF);
1207 *ecc_code++ = 0x97 ^ (val2 & 0xFF);
1208 *ecc_code++ = 0x79 ^ ((val1 >> 24) & 0xFF);
1209 *ecc_code++ = 0xe5 ^ ((val1 >> 16) & 0xFF);
1210 *ecc_code++ = 0x24 ^ ((val1 >> 8) & 0xFF);
1211 *ecc_code++ = 0xb5 ^ (val1 & 0xFF);
1212 }
1213
1214 return 0;
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001215}
Pekon Guptaa919e512013-10-24 18:20:21 +05301216#endif /* CONFIG_MTD_NAND_ECC_BCH */
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001217
Pekon Guptaa919e512013-10-24 18:20:21 +05301218#ifdef CONFIG_MTD_NAND_OMAP_BCH
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001219/**
Philip Avinash62116e52013-01-04 13:26:51 +05301220 * omap3_calculate_ecc_bch - Generate bytes of ECC bytes
1221 * @mtd: MTD device structure
1222 * @dat: The pointer to data on which ecc is computed
1223 * @ecc_code: The ecc_code buffer
1224 *
1225 * Support calculating of BCH4/8 ecc vectors for the page
1226 */
1227static int omap3_calculate_ecc_bch(struct mtd_info *mtd, const u_char *dat,
1228 u_char *ecc_code)
1229{
1230 struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
1231 mtd);
1232 unsigned long nsectors, bch_val1, bch_val2, bch_val3, bch_val4;
1233 int i, eccbchtsel;
1234
1235 nsectors = ((readl(info->reg.gpmc_ecc_config) >> 4) & 0x7) + 1;
1236 /*
1237 * find BCH scheme used
1238 * 0 -> BCH4
1239 * 1 -> BCH8
1240 */
1241 eccbchtsel = ((readl(info->reg.gpmc_ecc_config) >> 12) & 0x3);
1242
1243 for (i = 0; i < nsectors; i++) {
1244
1245 /* Read hw-computed remainder */
1246 bch_val1 = readl(info->reg.gpmc_bch_result0[i]);
1247 bch_val2 = readl(info->reg.gpmc_bch_result1[i]);
1248 if (eccbchtsel) {
1249 bch_val3 = readl(info->reg.gpmc_bch_result2[i]);
1250 bch_val4 = readl(info->reg.gpmc_bch_result3[i]);
1251 }
1252
1253 if (eccbchtsel) {
1254 /* BCH8 ecc scheme */
1255 *ecc_code++ = (bch_val4 & 0xFF);
1256 *ecc_code++ = ((bch_val3 >> 24) & 0xFF);
1257 *ecc_code++ = ((bch_val3 >> 16) & 0xFF);
1258 *ecc_code++ = ((bch_val3 >> 8) & 0xFF);
1259 *ecc_code++ = (bch_val3 & 0xFF);
1260 *ecc_code++ = ((bch_val2 >> 24) & 0xFF);
1261 *ecc_code++ = ((bch_val2 >> 16) & 0xFF);
1262 *ecc_code++ = ((bch_val2 >> 8) & 0xFF);
1263 *ecc_code++ = (bch_val2 & 0xFF);
1264 *ecc_code++ = ((bch_val1 >> 24) & 0xFF);
1265 *ecc_code++ = ((bch_val1 >> 16) & 0xFF);
1266 *ecc_code++ = ((bch_val1 >> 8) & 0xFF);
1267 *ecc_code++ = (bch_val1 & 0xFF);
1268 /*
1269 * Setting 14th byte to zero to handle
1270 * erased page & maintain compatibility
1271 * with RBL
1272 */
1273 *ecc_code++ = 0x0;
1274 } else {
1275 /* BCH4 ecc scheme */
1276 *ecc_code++ = ((bch_val2 >> 12) & 0xFF);
1277 *ecc_code++ = ((bch_val2 >> 4) & 0xFF);
1278 *ecc_code++ = ((bch_val2 & 0xF) << 4) |
1279 ((bch_val1 >> 28) & 0xF);
1280 *ecc_code++ = ((bch_val1 >> 20) & 0xFF);
1281 *ecc_code++ = ((bch_val1 >> 12) & 0xFF);
1282 *ecc_code++ = ((bch_val1 >> 4) & 0xFF);
1283 *ecc_code++ = ((bch_val1 & 0xF) << 4);
1284 /*
1285 * Setting 8th byte to zero to handle
1286 * erased page
1287 */
1288 *ecc_code++ = 0x0;
1289 }
1290 }
1291
1292 return 0;
1293}
1294
1295/**
1296 * erased_sector_bitflips - count bit flips
1297 * @data: data sector buffer
1298 * @oob: oob buffer
1299 * @info: omap_nand_info
1300 *
1301 * Check the bit flips in erased page falls below correctable level.
1302 * If falls below, report the page as erased with correctable bit
1303 * flip, else report as uncorrectable page.
1304 */
1305static int erased_sector_bitflips(u_char *data, u_char *oob,
1306 struct omap_nand_info *info)
1307{
1308 int flip_bits = 0, i;
1309
1310 for (i = 0; i < info->nand.ecc.size; i++) {
1311 flip_bits += hweight8(~data[i]);
1312 if (flip_bits > info->nand.ecc.strength)
1313 return 0;
1314 }
1315
1316 for (i = 0; i < info->nand.ecc.bytes - 1; i++) {
1317 flip_bits += hweight8(~oob[i]);
1318 if (flip_bits > info->nand.ecc.strength)
1319 return 0;
1320 }
1321
1322 /*
1323 * Bit flips falls in correctable level.
1324 * Fill data area with 0xFF
1325 */
1326 if (flip_bits) {
1327 memset(data, 0xFF, info->nand.ecc.size);
1328 memset(oob, 0xFF, info->nand.ecc.bytes);
1329 }
1330
1331 return flip_bits;
1332}
1333
1334/**
1335 * omap_elm_correct_data - corrects page data area in case error reported
1336 * @mtd: MTD device structure
1337 * @data: page data
1338 * @read_ecc: ecc read from nand flash
1339 * @calc_ecc: ecc read from HW ECC registers
1340 *
1341 * Calculated ecc vector reported as zero in case of non-error pages.
1342 * In case of error/erased pages non-zero error vector is reported.
1343 * In case of non-zero ecc vector, check read_ecc at fixed offset
1344 * (x = 13/7 in case of BCH8/4 == 0) to find page programmed or not.
1345 * To handle bit flips in this data, count the number of 0's in
1346 * read_ecc[x] and check if it greater than 4. If it is less, it is
1347 * programmed page, else erased page.
1348 *
1349 * 1. If page is erased, check with standard ecc vector (ecc vector
1350 * for erased page to find any bit flip). If check fails, bit flip
1351 * is present in erased page. Count the bit flips in erased page and
1352 * if it falls under correctable level, report page with 0xFF and
1353 * update the correctable bit information.
1354 * 2. If error is reported on programmed page, update elm error
1355 * vector and correct the page with ELM error correction routine.
1356 *
1357 */
1358static int omap_elm_correct_data(struct mtd_info *mtd, u_char *data,
1359 u_char *read_ecc, u_char *calc_ecc)
1360{
1361 struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
1362 mtd);
1363 int eccsteps = info->nand.ecc.steps;
1364 int i , j, stat = 0;
1365 int eccsize, eccflag, ecc_vector_size;
1366 struct elm_errorvec err_vec[ERROR_VECTOR_MAX];
1367 u_char *ecc_vec = calc_ecc;
1368 u_char *spare_ecc = read_ecc;
1369 u_char *erased_ecc_vec;
1370 enum bch_ecc type;
1371 bool is_error_reported = false;
1372
1373 /* Initialize elm error vector to zero */
1374 memset(err_vec, 0, sizeof(err_vec));
1375
1376 if (info->nand.ecc.strength == BCH8_MAX_ERROR) {
1377 type = BCH8_ECC;
1378 erased_ecc_vec = bch8_vector;
1379 } else {
1380 type = BCH4_ECC;
1381 erased_ecc_vec = bch4_vector;
1382 }
1383
1384 ecc_vector_size = info->nand.ecc.bytes;
1385
1386 /*
1387 * Remove extra byte padding for BCH8 RBL
1388 * compatibility and erased page handling
1389 */
1390 eccsize = ecc_vector_size - 1;
1391
1392 for (i = 0; i < eccsteps ; i++) {
1393 eccflag = 0; /* initialize eccflag */
1394
1395 /*
1396 * Check any error reported,
1397 * In case of error, non zero ecc reported.
1398 */
1399
1400 for (j = 0; (j < eccsize); j++) {
1401 if (calc_ecc[j] != 0) {
1402 eccflag = 1; /* non zero ecc, error present */
1403 break;
1404 }
1405 }
1406
1407 if (eccflag == 1) {
1408 /*
1409 * Set threshold to minimum of 4, half of ecc.strength/2
1410 * to allow max bit flip in byte to 4
1411 */
1412 unsigned int threshold = min_t(unsigned int, 4,
1413 info->nand.ecc.strength / 2);
1414
1415 /*
1416 * Check data area is programmed by counting
1417 * number of 0's at fixed offset in spare area.
1418 * Checking count of 0's against threshold.
1419 * In case programmed page expects at least threshold
1420 * zeros in byte.
1421 * If zeros are less than threshold for programmed page/
1422 * zeros are more than threshold erased page, either
1423 * case page reported as uncorrectable.
1424 */
1425 if (hweight8(~read_ecc[eccsize]) >= threshold) {
1426 /*
1427 * Update elm error vector as
1428 * data area is programmed
1429 */
1430 err_vec[i].error_reported = true;
1431 is_error_reported = true;
1432 } else {
1433 /* Error reported in erased page */
1434 int bitflip_count;
1435 u_char *buf = &data[info->nand.ecc.size * i];
1436
1437 if (memcmp(calc_ecc, erased_ecc_vec, eccsize)) {
1438 bitflip_count = erased_sector_bitflips(
1439 buf, read_ecc, info);
1440
1441 if (bitflip_count)
1442 stat += bitflip_count;
1443 else
1444 return -EINVAL;
1445 }
1446 }
1447 }
1448
1449 /* Update the ecc vector */
1450 calc_ecc += ecc_vector_size;
1451 read_ecc += ecc_vector_size;
1452 }
1453
1454 /* Check if any error reported */
1455 if (!is_error_reported)
1456 return 0;
1457
1458 /* Decode BCH error using ELM module */
1459 elm_decode_bch_error_page(info->elm_dev, ecc_vec, err_vec);
1460
1461 for (i = 0; i < eccsteps; i++) {
1462 if (err_vec[i].error_reported) {
1463 for (j = 0; j < err_vec[i].error_count; j++) {
1464 u32 bit_pos, byte_pos, error_max, pos;
1465
1466 if (type == BCH8_ECC)
1467 error_max = BCH8_ECC_MAX;
1468 else
1469 error_max = BCH4_ECC_MAX;
1470
1471 if (info->nand.ecc.strength == BCH8_MAX_ERROR)
1472 pos = err_vec[i].error_loc[j];
1473 else
1474 /* Add 4 to take care 4 bit padding */
1475 pos = err_vec[i].error_loc[j] +
1476 BCH4_BIT_PAD;
1477
1478 /* Calculate bit position of error */
1479 bit_pos = pos % 8;
1480
1481 /* Calculate byte position of error */
1482 byte_pos = (error_max - pos - 1) / 8;
1483
1484 if (pos < error_max) {
1485 if (byte_pos < 512)
1486 data[byte_pos] ^= 1 << bit_pos;
1487 else
1488 spare_ecc[byte_pos - 512] ^=
1489 1 << bit_pos;
1490 }
1491 /* else, not interested to correct ecc */
1492 }
1493 }
1494
1495 /* Update number of correctable errors */
1496 stat += err_vec[i].error_count;
1497
1498 /* Update page data with sector size */
1499 data += info->nand.ecc.size;
1500 spare_ecc += ecc_vector_size;
1501 }
1502
1503 for (i = 0; i < eccsteps; i++)
1504 /* Return error if uncorrectable error present */
1505 if (err_vec[i].error_uncorrectable)
1506 return -EINVAL;
1507
1508 return stat;
1509}
Pekon Guptaa919e512013-10-24 18:20:21 +05301510#endif /* CONFIG_MTD_NAND_OMAP_BCH */
Philip Avinash62116e52013-01-04 13:26:51 +05301511
Pekon Guptaa919e512013-10-24 18:20:21 +05301512#ifdef CONFIG_MTD_NAND_ECC_BCH
Philip Avinash62116e52013-01-04 13:26:51 +05301513/**
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001514 * omap3_correct_data_bch - Decode received data and correct errors
1515 * @mtd: MTD device structure
1516 * @data: page data
1517 * @read_ecc: ecc read from nand flash
1518 * @calc_ecc: ecc read from HW ECC registers
1519 */
1520static int omap3_correct_data_bch(struct mtd_info *mtd, u_char *data,
1521 u_char *read_ecc, u_char *calc_ecc)
1522{
1523 int i, count;
1524 /* cannot correct more than 8 errors */
1525 unsigned int errloc[8];
1526 struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
1527 mtd);
1528
1529 count = decode_bch(info->bch, NULL, 512, read_ecc, calc_ecc, NULL,
1530 errloc);
1531 if (count > 0) {
1532 /* correct errors */
1533 for (i = 0; i < count; i++) {
1534 /* correct data only, not ecc bytes */
1535 if (errloc[i] < 8*512)
1536 data[errloc[i]/8] ^= 1 << (errloc[i] & 7);
1537 pr_debug("corrected bitflip %u\n", errloc[i]);
1538 }
1539 } else if (count < 0) {
1540 pr_err("ecc unrecoverable error\n");
1541 }
1542 return count;
1543}
Pekon Guptaa919e512013-10-24 18:20:21 +05301544#endif /* CONFIG_MTD_NAND_ECC_BCH */
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001545
Pekon Guptaa919e512013-10-24 18:20:21 +05301546#ifdef CONFIG_MTD_NAND_OMAP_BCH
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001547/**
Philip Avinash62116e52013-01-04 13:26:51 +05301548 * omap_write_page_bch - BCH ecc based write page function for entire page
1549 * @mtd: mtd info structure
1550 * @chip: nand chip info structure
1551 * @buf: data buffer
1552 * @oob_required: must write chip->oob_poi to OOB
1553 *
1554 * Custom write page method evolved to support multi sector writing in one shot
1555 */
1556static int omap_write_page_bch(struct mtd_info *mtd, struct nand_chip *chip,
1557 const uint8_t *buf, int oob_required)
1558{
1559 int i;
1560 uint8_t *ecc_calc = chip->buffers->ecccalc;
1561 uint32_t *eccpos = chip->ecc.layout->eccpos;
1562
1563 /* Enable GPMC ecc engine */
1564 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
1565
1566 /* Write data */
1567 chip->write_buf(mtd, buf, mtd->writesize);
1568
1569 /* Update ecc vector from GPMC result registers */
1570 chip->ecc.calculate(mtd, buf, &ecc_calc[0]);
1571
1572 for (i = 0; i < chip->ecc.total; i++)
1573 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1574
1575 /* Write ecc vector to OOB area */
1576 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1577 return 0;
1578}
1579
1580/**
1581 * omap_read_page_bch - BCH ecc based page read function for entire page
1582 * @mtd: mtd info structure
1583 * @chip: nand chip info structure
1584 * @buf: buffer to store read data
1585 * @oob_required: caller requires OOB data read to chip->oob_poi
1586 * @page: page number to read
1587 *
1588 * For BCH ecc scheme, GPMC used for syndrome calculation and ELM module
1589 * used for error correction.
1590 * Custom method evolved to support ELM error correction & multi sector
1591 * reading. On reading page data area is read along with OOB data with
1592 * ecc engine enabled. ecc vector updated after read of OOB data.
1593 * For non error pages ecc vector reported as zero.
1594 */
1595static int omap_read_page_bch(struct mtd_info *mtd, struct nand_chip *chip,
1596 uint8_t *buf, int oob_required, int page)
1597{
1598 uint8_t *ecc_calc = chip->buffers->ecccalc;
1599 uint8_t *ecc_code = chip->buffers->ecccode;
1600 uint32_t *eccpos = chip->ecc.layout->eccpos;
1601 uint8_t *oob = &chip->oob_poi[eccpos[0]];
1602 uint32_t oob_pos = mtd->writesize + chip->ecc.layout->eccpos[0];
1603 int stat;
1604 unsigned int max_bitflips = 0;
1605
1606 /* Enable GPMC ecc engine */
1607 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1608
1609 /* Read data */
1610 chip->read_buf(mtd, buf, mtd->writesize);
1611
1612 /* Read oob bytes */
1613 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, oob_pos, -1);
1614 chip->read_buf(mtd, oob, chip->ecc.total);
1615
1616 /* Calculate ecc bytes */
1617 chip->ecc.calculate(mtd, buf, ecc_calc);
1618
1619 memcpy(ecc_code, &chip->oob_poi[eccpos[0]], chip->ecc.total);
1620
1621 stat = chip->ecc.correct(mtd, buf, ecc_code, ecc_calc);
1622
1623 if (stat < 0) {
1624 mtd->ecc_stats.failed++;
1625 } else {
1626 mtd->ecc_stats.corrected += stat;
1627 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1628 }
1629
1630 return max_bitflips;
1631}
1632
1633/**
Pekon Guptaa919e512013-10-24 18:20:21 +05301634 * is_elm_present - checks for presence of ELM module by scanning DT nodes
1635 * @omap_nand_info: NAND device structure containing platform data
1636 * @bch_type: 0x0=BCH4, 0x1=BCH8, 0x2=BCH16
1637 */
1638static int is_elm_present(struct omap_nand_info *info,
1639 struct device_node *elm_node, enum bch_ecc bch_type)
1640{
1641 struct platform_device *pdev;
1642 info->is_elm_used = false;
1643 /* check whether elm-id is passed via DT */
1644 if (!elm_node) {
1645 pr_err("nand: error: ELM DT node not found\n");
1646 return -ENODEV;
1647 }
1648 pdev = of_find_device_by_node(elm_node);
1649 /* check whether ELM device is registered */
1650 if (!pdev) {
1651 pr_err("nand: error: ELM device not found\n");
1652 return -ENODEV;
1653 }
1654 /* ELM module available, now configure it */
1655 info->elm_dev = &pdev->dev;
1656 if (elm_config(info->elm_dev, bch_type))
1657 return -ENODEV;
1658 info->is_elm_used = true;
1659 return 0;
1660}
1661#endif /* CONFIG_MTD_NAND_ECC_BCH */
1662
1663#ifdef CONFIG_MTD_NAND_ECC_BCH
1664/**
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001665 * omap3_free_bch - Release BCH ecc resources
1666 * @mtd: MTD device structure
1667 */
1668static void omap3_free_bch(struct mtd_info *mtd)
1669{
1670 struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
1671 mtd);
1672 if (info->bch) {
1673 free_bch(info->bch);
1674 info->bch = NULL;
1675 }
1676}
1677
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001678#else
Pekon Guptab491da72013-10-24 18:20:22 +05301679
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001680static void omap3_free_bch(struct mtd_info *mtd)
1681{
1682}
Pekon Guptaa919e512013-10-24 18:20:21 +05301683#endif /* CONFIG_MTD_NAND_ECC_BCH */
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001684
Bill Pemberton06f25512012-11-19 13:23:07 -05001685static int omap_nand_probe(struct platform_device *pdev)
Vimal Singh67ce04b2009-05-12 13:47:03 -07001686{
1687 struct omap_nand_info *info;
1688 struct omap_nand_platform_data *pdata;
Pekon Gupta633deb52013-10-24 18:20:19 +05301689 struct mtd_info *mtd;
1690 struct nand_chip *nand_chip;
Pekon Guptab491da72013-10-24 18:20:22 +05301691 struct nand_ecclayout *ecclayout;
Vimal Singh67ce04b2009-05-12 13:47:03 -07001692 int err;
Pekon Guptab491da72013-10-24 18:20:22 +05301693 int i;
Pekon Gupta633deb52013-10-24 18:20:19 +05301694 dma_cap_mask_t mask;
1695 unsigned sig;
Afzal Mohammed9c4c2f82012-08-30 12:53:23 -07001696 struct resource *res;
Daniel Mackccf04c52012-12-14 11:36:41 +01001697 struct mtd_part_parser_data ppdata = {};
Vimal Singh67ce04b2009-05-12 13:47:03 -07001698
Jingoo Han453810b2013-07-30 17:18:33 +09001699 pdata = dev_get_platdata(&pdev->dev);
Vimal Singh67ce04b2009-05-12 13:47:03 -07001700 if (pdata == NULL) {
1701 dev_err(&pdev->dev, "platform data missing\n");
1702 return -ENODEV;
1703 }
1704
1705 info = kzalloc(sizeof(struct omap_nand_info), GFP_KERNEL);
1706 if (!info)
1707 return -ENOMEM;
1708
1709 platform_set_drvdata(pdev, info);
1710
1711 spin_lock_init(&info->controller.lock);
1712 init_waitqueue_head(&info->controller.wq);
1713
Pekon Gupta633deb52013-10-24 18:20:19 +05301714 info->pdev = pdev;
Vimal Singh67ce04b2009-05-12 13:47:03 -07001715 info->gpmc_cs = pdata->cs;
Afzal Mohammed65b97cf2012-08-30 12:53:22 -07001716 info->reg = pdata->reg;
Pekon Guptaa919e512013-10-24 18:20:21 +05301717 info->bch = NULL;
1718 info->of_node = pdata->of_node;
Pekon Gupta633deb52013-10-24 18:20:19 +05301719 mtd = &info->mtd;
1720 mtd->priv = &info->nand;
1721 mtd->name = dev_name(&pdev->dev);
1722 mtd->owner = THIS_MODULE;
1723 nand_chip = &info->nand;
Pekon Gupta633deb52013-10-24 18:20:19 +05301724 nand_chip->options |= NAND_SKIP_BBTSCAN;
Vimal Singh67ce04b2009-05-12 13:47:03 -07001725
Afzal Mohammed9c4c2f82012-08-30 12:53:23 -07001726 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1727 if (res == NULL) {
1728 err = -EINVAL;
1729 dev_err(&pdev->dev, "error getting memory resource\n");
1730 goto out_free_info;
1731 }
Vimal Singh67ce04b2009-05-12 13:47:03 -07001732
Afzal Mohammed9c4c2f82012-08-30 12:53:23 -07001733 info->phys_base = res->start;
1734 info->mem_size = resource_size(res);
1735
1736 if (!request_mem_region(info->phys_base, info->mem_size,
Vimal Singh67ce04b2009-05-12 13:47:03 -07001737 pdev->dev.driver->name)) {
1738 err = -EBUSY;
Vimal Singh2f70a1e2010-02-15 10:03:33 -08001739 goto out_free_info;
Vimal Singh67ce04b2009-05-12 13:47:03 -07001740 }
1741
Pekon Gupta633deb52013-10-24 18:20:19 +05301742 nand_chip->IO_ADDR_R = ioremap(info->phys_base, info->mem_size);
1743 if (!nand_chip->IO_ADDR_R) {
Vimal Singh67ce04b2009-05-12 13:47:03 -07001744 err = -ENOMEM;
1745 goto out_release_mem_region;
1746 }
vimal singh59e9c5a2009-07-13 16:26:24 +05301747
Pekon Gupta633deb52013-10-24 18:20:19 +05301748 nand_chip->controller = &info->controller;
Vimal Singh67ce04b2009-05-12 13:47:03 -07001749
Pekon Gupta633deb52013-10-24 18:20:19 +05301750 nand_chip->IO_ADDR_W = nand_chip->IO_ADDR_R;
1751 nand_chip->cmd_ctrl = omap_hwcontrol;
Vimal Singh67ce04b2009-05-12 13:47:03 -07001752
Vimal Singh67ce04b2009-05-12 13:47:03 -07001753 /*
1754 * If RDY/BSY line is connected to OMAP then use the omap ready
Peter Meerwald4cacbe22012-07-19 13:21:04 +02001755 * function and the generic nand_wait function which reads the status
1756 * register after monitoring the RDY/BSY line. Otherwise use a standard
Vimal Singh67ce04b2009-05-12 13:47:03 -07001757 * chip delay which is slightly more than tR (AC Timing) of the NAND
1758 * device and read status register until you get a failure or success
1759 */
1760 if (pdata->dev_ready) {
Pekon Gupta633deb52013-10-24 18:20:19 +05301761 nand_chip->dev_ready = omap_dev_ready;
1762 nand_chip->chip_delay = 0;
Vimal Singh67ce04b2009-05-12 13:47:03 -07001763 } else {
Pekon Gupta633deb52013-10-24 18:20:19 +05301764 nand_chip->waitfunc = omap_wait;
1765 nand_chip->chip_delay = 50;
Vimal Singh67ce04b2009-05-12 13:47:03 -07001766 }
1767
Pekon Guptaf18befb2013-10-24 18:20:20 +05301768 /* scan NAND device connected to chip controller */
1769 nand_chip->options |= pdata->devsize & NAND_BUSWIDTH_16;
1770 if (nand_scan_ident(mtd, 1, NULL)) {
1771 pr_err("nand device scan failed, may be bus-width mismatch\n");
1772 err = -ENXIO;
1773 goto out_release_mem_region;
1774 }
1775
Pekon Guptab491da72013-10-24 18:20:22 +05301776 /* check for small page devices */
1777 if ((mtd->oobsize < 64) && (pdata->ecc_opt != OMAP_ECC_HAM1_CODE_HW)) {
1778 pr_err("small page devices are not supported\n");
1779 err = -EINVAL;
1780 goto out_release_mem_region;
1781 }
1782
Pekon Guptaf18befb2013-10-24 18:20:20 +05301783 /* re-populate low-level callbacks based on xfer modes */
Sukumar Ghorai1b0b323c2011-01-28 15:42:04 +05301784 switch (pdata->xfer_type) {
1785 case NAND_OMAP_PREFETCH_POLLED:
Pekon Gupta633deb52013-10-24 18:20:19 +05301786 nand_chip->read_buf = omap_read_buf_pref;
1787 nand_chip->write_buf = omap_write_buf_pref;
Sukumar Ghorai1b0b323c2011-01-28 15:42:04 +05301788 break;
vimal singhdfe32892009-07-13 16:29:16 +05301789
Sukumar Ghorai1b0b323c2011-01-28 15:42:04 +05301790 case NAND_OMAP_POLLED:
Pekon Gupta633deb52013-10-24 18:20:19 +05301791 if (nand_chip->options & NAND_BUSWIDTH_16) {
1792 nand_chip->read_buf = omap_read_buf16;
1793 nand_chip->write_buf = omap_write_buf16;
vimal singh59e9c5a2009-07-13 16:26:24 +05301794 } else {
Pekon Gupta633deb52013-10-24 18:20:19 +05301795 nand_chip->read_buf = omap_read_buf8;
1796 nand_chip->write_buf = omap_write_buf8;
vimal singh59e9c5a2009-07-13 16:26:24 +05301797 }
Sukumar Ghorai1b0b323c2011-01-28 15:42:04 +05301798 break;
1799
1800 case NAND_OMAP_PREFETCH_DMA:
Russell King763e7352012-04-25 00:16:00 +01001801 dma_cap_zero(mask);
1802 dma_cap_set(DMA_SLAVE, mask);
1803 sig = OMAP24XX_DMA_GPMC;
1804 info->dma = dma_request_channel(mask, omap_dma_filter_fn, &sig);
1805 if (!info->dma) {
Russell King2df41d02012-04-25 00:19:39 +01001806 dev_err(&pdev->dev, "DMA engine request failed\n");
1807 err = -ENXIO;
1808 goto out_release_mem_region;
Russell King763e7352012-04-25 00:16:00 +01001809 } else {
1810 struct dma_slave_config cfg;
Russell King763e7352012-04-25 00:16:00 +01001811
1812 memset(&cfg, 0, sizeof(cfg));
1813 cfg.src_addr = info->phys_base;
1814 cfg.dst_addr = info->phys_base;
1815 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1816 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1817 cfg.src_maxburst = 16;
1818 cfg.dst_maxburst = 16;
Arnd Bergmannd680e2c2012-08-04 11:05:25 +00001819 err = dmaengine_slave_config(info->dma, &cfg);
1820 if (err) {
Russell King763e7352012-04-25 00:16:00 +01001821 dev_err(&pdev->dev, "DMA engine slave config failed: %d\n",
Arnd Bergmannd680e2c2012-08-04 11:05:25 +00001822 err);
Russell King763e7352012-04-25 00:16:00 +01001823 goto out_release_mem_region;
1824 }
Pekon Gupta633deb52013-10-24 18:20:19 +05301825 nand_chip->read_buf = omap_read_buf_dma_pref;
1826 nand_chip->write_buf = omap_write_buf_dma_pref;
Sukumar Ghorai1b0b323c2011-01-28 15:42:04 +05301827 }
1828 break;
1829
Sukumar Ghorai4e070372011-01-28 15:42:06 +05301830 case NAND_OMAP_PREFETCH_IRQ:
Afzal Mohammed5c468452012-08-30 12:53:24 -07001831 info->gpmc_irq_fifo = platform_get_irq(pdev, 0);
1832 if (info->gpmc_irq_fifo <= 0) {
1833 dev_err(&pdev->dev, "error getting fifo irq\n");
1834 err = -ENODEV;
1835 goto out_release_mem_region;
1836 }
1837 err = request_irq(info->gpmc_irq_fifo, omap_nand_irq,
1838 IRQF_SHARED, "gpmc-nand-fifo", info);
Sukumar Ghorai4e070372011-01-28 15:42:06 +05301839 if (err) {
1840 dev_err(&pdev->dev, "requesting irq(%d) error:%d",
Afzal Mohammed5c468452012-08-30 12:53:24 -07001841 info->gpmc_irq_fifo, err);
1842 info->gpmc_irq_fifo = 0;
Sukumar Ghorai4e070372011-01-28 15:42:06 +05301843 goto out_release_mem_region;
Sukumar Ghorai4e070372011-01-28 15:42:06 +05301844 }
Afzal Mohammed5c468452012-08-30 12:53:24 -07001845
1846 info->gpmc_irq_count = platform_get_irq(pdev, 1);
1847 if (info->gpmc_irq_count <= 0) {
1848 dev_err(&pdev->dev, "error getting count irq\n");
1849 err = -ENODEV;
1850 goto out_release_mem_region;
1851 }
1852 err = request_irq(info->gpmc_irq_count, omap_nand_irq,
1853 IRQF_SHARED, "gpmc-nand-count", info);
1854 if (err) {
1855 dev_err(&pdev->dev, "requesting irq(%d) error:%d",
1856 info->gpmc_irq_count, err);
1857 info->gpmc_irq_count = 0;
1858 goto out_release_mem_region;
1859 }
1860
Pekon Gupta633deb52013-10-24 18:20:19 +05301861 nand_chip->read_buf = omap_read_buf_irq_pref;
1862 nand_chip->write_buf = omap_write_buf_irq_pref;
Afzal Mohammed5c468452012-08-30 12:53:24 -07001863
Sukumar Ghorai4e070372011-01-28 15:42:06 +05301864 break;
1865
Sukumar Ghorai1b0b323c2011-01-28 15:42:04 +05301866 default:
1867 dev_err(&pdev->dev,
1868 "xfer_type(%d) not supported!\n", pdata->xfer_type);
1869 err = -EINVAL;
1870 goto out_release_mem_region;
vimal singh59e9c5a2009-07-13 16:26:24 +05301871 }
Sukumar Ghorai1b0b323c2011-01-28 15:42:04 +05301872
Pekon Guptaa919e512013-10-24 18:20:21 +05301873 /* populate MTD interface based on ECC scheme */
Pekon Guptab491da72013-10-24 18:20:22 +05301874 nand_chip->ecc.layout = &omap_oobinfo;
1875 ecclayout = &omap_oobinfo;
Pekon Guptaa919e512013-10-24 18:20:21 +05301876 switch (pdata->ecc_opt) {
1877 case OMAP_ECC_HAM1_CODE_HW:
1878 pr_info("nand: using OMAP_ECC_HAM1_CODE_HW\n");
1879 nand_chip->ecc.mode = NAND_ECC_HW;
Pekon Gupta633deb52013-10-24 18:20:19 +05301880 nand_chip->ecc.bytes = 3;
1881 nand_chip->ecc.size = 512;
1882 nand_chip->ecc.strength = 1;
1883 nand_chip->ecc.calculate = omap_calculate_ecc;
1884 nand_chip->ecc.hwctl = omap_enable_hwecc;
1885 nand_chip->ecc.correct = omap_correct_data;
Pekon Guptab491da72013-10-24 18:20:22 +05301886 /* define ECC layout */
1887 ecclayout->eccbytes = nand_chip->ecc.bytes *
1888 (mtd->writesize /
1889 nand_chip->ecc.size);
1890 if (nand_chip->options & NAND_BUSWIDTH_16)
1891 ecclayout->eccpos[0] = BADBLOCK_MARKER_LENGTH;
1892 else
1893 ecclayout->eccpos[0] = 1;
1894 ecclayout->oobfree->offset = ecclayout->eccpos[0] +
1895 ecclayout->eccbytes;
Pekon Guptaa919e512013-10-24 18:20:21 +05301896 break;
1897
1898 case OMAP_ECC_BCH4_CODE_HW_DETECTION_SW:
1899#ifdef CONFIG_MTD_NAND_ECC_BCH
1900 pr_info("nand: using OMAP_ECC_BCH4_CODE_HW_DETECTION_SW\n");
1901 nand_chip->ecc.mode = NAND_ECC_HW;
1902 nand_chip->ecc.size = 512;
1903 nand_chip->ecc.bytes = 7;
1904 nand_chip->ecc.strength = 4;
1905 nand_chip->ecc.hwctl = omap3_enable_hwecc_bch;
1906 nand_chip->ecc.correct = omap3_correct_data_bch;
1907 nand_chip->ecc.calculate = omap3_calculate_ecc_bch4;
Pekon Guptab491da72013-10-24 18:20:22 +05301908 /* define ECC layout */
1909 ecclayout->eccbytes = nand_chip->ecc.bytes *
1910 (mtd->writesize /
1911 nand_chip->ecc.size);
1912 ecclayout->eccpos[0] = BADBLOCK_MARKER_LENGTH;
1913 ecclayout->oobfree->offset = ecclayout->eccpos[0] +
1914 ecclayout->eccbytes;
Pekon Guptaa919e512013-10-24 18:20:21 +05301915 /* software bch library is used for locating errors */
1916 info->bch = init_bch(nand_chip->ecc.bytes,
1917 nand_chip->ecc.strength,
1918 OMAP_ECC_BCH8_POLYNOMIAL);
1919 if (!info->bch) {
1920 pr_err("nand: error: unable to use s/w BCH library\n");
1921 err = -EINVAL;
1922 }
1923 break;
1924#else
1925 pr_err("nand: error: CONFIG_MTD_NAND_ECC_BCH not enabled\n");
1926 err = -EINVAL;
1927 goto out_release_mem_region;
1928#endif
1929
1930 case OMAP_ECC_BCH4_CODE_HW:
1931#ifdef CONFIG_MTD_NAND_OMAP_BCH
1932 pr_info("nand: using OMAP_ECC_BCH4_CODE_HW ECC scheme\n");
1933 nand_chip->ecc.mode = NAND_ECC_HW;
1934 nand_chip->ecc.size = 512;
1935 /* 14th bit is kept reserved for ROM-code compatibility */
1936 nand_chip->ecc.bytes = 7 + 1;
1937 nand_chip->ecc.strength = 4;
1938 nand_chip->ecc.hwctl = omap3_enable_hwecc_bch;
1939 nand_chip->ecc.correct = omap_elm_correct_data;
1940 nand_chip->ecc.calculate = omap3_calculate_ecc_bch;
1941 nand_chip->ecc.read_page = omap_read_page_bch;
1942 nand_chip->ecc.write_page = omap_write_page_bch;
Pekon Guptab491da72013-10-24 18:20:22 +05301943 /* define ECC layout */
1944 ecclayout->eccbytes = nand_chip->ecc.bytes *
1945 (mtd->writesize /
1946 nand_chip->ecc.size);
1947 ecclayout->eccpos[0] = BADBLOCK_MARKER_LENGTH;
1948 ecclayout->oobfree->offset = ecclayout->eccpos[0] +
1949 ecclayout->eccbytes;
Pekon Guptaa919e512013-10-24 18:20:21 +05301950 /* This ECC scheme requires ELM H/W block */
1951 if (is_elm_present(info, pdata->elm_of_node, BCH4_ECC) < 0) {
1952 pr_err("nand: error: could not initialize ELM\n");
1953 err = -ENODEV;
1954 goto out_release_mem_region;
1955 }
1956 break;
1957#else
1958 pr_err("nand: error: CONFIG_MTD_NAND_OMAP_BCH not enabled\n");
1959 err = -EINVAL;
1960 goto out_release_mem_region;
1961#endif
1962
1963 case OMAP_ECC_BCH8_CODE_HW_DETECTION_SW:
1964#ifdef CONFIG_MTD_NAND_ECC_BCH
1965 pr_info("nand: using OMAP_ECC_BCH8_CODE_HW_DETECTION_SW\n");
1966 nand_chip->ecc.mode = NAND_ECC_HW;
1967 nand_chip->ecc.size = 512;
1968 nand_chip->ecc.bytes = 13;
1969 nand_chip->ecc.strength = 8;
1970 nand_chip->ecc.hwctl = omap3_enable_hwecc_bch;
1971 nand_chip->ecc.correct = omap3_correct_data_bch;
1972 nand_chip->ecc.calculate = omap3_calculate_ecc_bch8;
Pekon Guptab491da72013-10-24 18:20:22 +05301973 /* define ECC layout */
1974 ecclayout->eccbytes = nand_chip->ecc.bytes *
1975 (mtd->writesize /
1976 nand_chip->ecc.size);
1977 ecclayout->eccpos[0] = BADBLOCK_MARKER_LENGTH;
1978 ecclayout->oobfree->offset = ecclayout->eccpos[0] +
1979 ecclayout->eccbytes;
Pekon Guptaa919e512013-10-24 18:20:21 +05301980 /* software bch library is used for locating errors */
1981 info->bch = init_bch(nand_chip->ecc.bytes,
1982 nand_chip->ecc.strength,
1983 OMAP_ECC_BCH8_POLYNOMIAL);
1984 if (!info->bch) {
1985 pr_err("nand: error: unable to use s/w BCH library\n");
Ivan Djelic0e618ef2012-04-30 12:17:18 +02001986 err = -EINVAL;
1987 goto out_release_mem_region;
1988 }
Pekon Guptaa919e512013-10-24 18:20:21 +05301989 break;
1990#else
1991 pr_err("nand: error: CONFIG_MTD_NAND_ECC_BCH not enabled\n");
1992 err = -EINVAL;
1993 goto out_release_mem_region;
1994#endif
1995
1996 case OMAP_ECC_BCH8_CODE_HW:
1997#ifdef CONFIG_MTD_NAND_OMAP_BCH
1998 pr_info("nand: using OMAP_ECC_BCH8_CODE_HW ECC scheme\n");
1999 nand_chip->ecc.mode = NAND_ECC_HW;
2000 nand_chip->ecc.size = 512;
2001 /* 14th bit is kept reserved for ROM-code compatibility */
2002 nand_chip->ecc.bytes = 13 + 1;
2003 nand_chip->ecc.strength = 8;
2004 nand_chip->ecc.hwctl = omap3_enable_hwecc_bch;
2005 nand_chip->ecc.correct = omap_elm_correct_data;
2006 nand_chip->ecc.calculate = omap3_calculate_ecc_bch;
2007 nand_chip->ecc.read_page = omap_read_page_bch;
2008 nand_chip->ecc.write_page = omap_write_page_bch;
2009 /* This ECC scheme requires ELM H/W block */
2010 if (is_elm_present(info, pdata->elm_of_node, BCH8_ECC) < 0) {
2011 pr_err("nand: error: could not initialize ELM\n");
2012 goto out_release_mem_region;
2013 }
Pekon Guptab491da72013-10-24 18:20:22 +05302014 /* define ECC layout */
2015 ecclayout->eccbytes = nand_chip->ecc.bytes *
2016 (mtd->writesize /
2017 nand_chip->ecc.size);
2018 ecclayout->eccpos[0] = BADBLOCK_MARKER_LENGTH;
2019 ecclayout->oobfree->offset = ecclayout->eccpos[0] +
2020 ecclayout->eccbytes;
Pekon Guptaa919e512013-10-24 18:20:21 +05302021 break;
2022#else
2023 pr_err("nand: error: CONFIG_MTD_NAND_OMAP_BCH not enabled\n");
2024 err = -EINVAL;
2025 goto out_release_mem_region;
2026#endif
2027
2028 default:
2029 pr_err("nand: error: invalid or unsupported ECC scheme\n");
2030 err = -EINVAL;
2031 goto out_release_mem_region;
Sukumar Ghoraif3d73f32011-01-28 15:42:08 +05302032 }
Vimal Singh67ce04b2009-05-12 13:47:03 -07002033
Pekon Guptab491da72013-10-24 18:20:22 +05302034 /* populate remaining ECC layout data */
2035 ecclayout->oobfree->length = mtd->oobsize - (BADBLOCK_MARKER_LENGTH +
2036 ecclayout->eccbytes);
2037 for (i = 1; i < ecclayout->eccbytes; i++)
2038 ecclayout->eccpos[i] = ecclayout->eccpos[0] + i;
2039 /* check if NAND device's OOB is enough to store ECC signatures */
2040 if (mtd->oobsize < (ecclayout->eccbytes + BADBLOCK_MARKER_LENGTH)) {
2041 pr_err("not enough OOB bytes required = %d, available=%d\n",
2042 ecclayout->eccbytes, mtd->oobsize);
2043 err = -EINVAL;
2044 goto out_release_mem_region;
Sukumar Ghoraif040d332011-01-28 15:42:09 +05302045 }
Sukumar Ghorai1b0b323c2011-01-28 15:42:04 +05302046
Jan Weitzela80f1c12011-04-19 16:15:34 +02002047 /* second phase scan */
Pekon Gupta633deb52013-10-24 18:20:19 +05302048 if (nand_scan_tail(mtd)) {
Jan Weitzela80f1c12011-04-19 16:15:34 +02002049 err = -ENXIO;
2050 goto out_release_mem_region;
2051 }
2052
Daniel Mackccf04c52012-12-14 11:36:41 +01002053 ppdata.of_node = pdata->of_node;
Pekon Gupta633deb52013-10-24 18:20:19 +05302054 mtd_device_parse_register(mtd, NULL, &ppdata, pdata->parts,
Artem Bityutskiy42d7fbe2012-03-09 19:24:26 +02002055 pdata->nr_parts);
Vimal Singh67ce04b2009-05-12 13:47:03 -07002056
Pekon Gupta633deb52013-10-24 18:20:19 +05302057 platform_set_drvdata(pdev, mtd);
Vimal Singh67ce04b2009-05-12 13:47:03 -07002058
2059 return 0;
2060
2061out_release_mem_region:
Russell King763e7352012-04-25 00:16:00 +01002062 if (info->dma)
2063 dma_release_channel(info->dma);
Afzal Mohammed5c468452012-08-30 12:53:24 -07002064 if (info->gpmc_irq_count > 0)
2065 free_irq(info->gpmc_irq_count, info);
2066 if (info->gpmc_irq_fifo > 0)
2067 free_irq(info->gpmc_irq_fifo, info);
Afzal Mohammed9c4c2f82012-08-30 12:53:23 -07002068 release_mem_region(info->phys_base, info->mem_size);
Vimal Singh67ce04b2009-05-12 13:47:03 -07002069out_free_info:
Pekon Guptaa919e512013-10-24 18:20:21 +05302070 omap3_free_bch(mtd);
Vimal Singh67ce04b2009-05-12 13:47:03 -07002071 kfree(info);
2072
2073 return err;
2074}
2075
2076static int omap_nand_remove(struct platform_device *pdev)
2077{
2078 struct mtd_info *mtd = platform_get_drvdata(pdev);
Pekon Gupta633deb52013-10-24 18:20:19 +05302079 struct nand_chip *nand_chip = mtd->priv;
Vimal Singhf35b6ed2010-01-05 16:01:08 +05302080 struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
2081 mtd);
Pekon Gupta633deb52013-10-24 18:20:19 +05302082 omap3_free_bch(mtd);
Vimal Singh67ce04b2009-05-12 13:47:03 -07002083
Russell King763e7352012-04-25 00:16:00 +01002084 if (info->dma)
2085 dma_release_channel(info->dma);
2086
Afzal Mohammed5c468452012-08-30 12:53:24 -07002087 if (info->gpmc_irq_count > 0)
2088 free_irq(info->gpmc_irq_count, info);
2089 if (info->gpmc_irq_fifo > 0)
2090 free_irq(info->gpmc_irq_fifo, info);
Sukumar Ghorai4e070372011-01-28 15:42:06 +05302091
Vimal Singh67ce04b2009-05-12 13:47:03 -07002092 /* Release NAND device, its internal structures and partitions */
Pekon Gupta633deb52013-10-24 18:20:19 +05302093 nand_release(mtd);
2094 iounmap(nand_chip->IO_ADDR_R);
Afzal Mohammed48b51d42012-09-29 11:14:47 +05302095 release_mem_region(info->phys_base, info->mem_size);
Andreas Bießmann7d9b1102012-08-31 13:35:41 +02002096 kfree(info);
Vimal Singh67ce04b2009-05-12 13:47:03 -07002097 return 0;
2098}
2099
2100static struct platform_driver omap_nand_driver = {
2101 .probe = omap_nand_probe,
2102 .remove = omap_nand_remove,
2103 .driver = {
2104 .name = DRIVER_NAME,
2105 .owner = THIS_MODULE,
2106 },
2107};
2108
Axel Linf99640d2011-11-27 20:45:03 +08002109module_platform_driver(omap_nand_driver);
Vimal Singh67ce04b2009-05-12 13:47:03 -07002110
Axel Linc804c732011-03-07 11:04:24 +08002111MODULE_ALIAS("platform:" DRIVER_NAME);
Vimal Singh67ce04b2009-05-12 13:47:03 -07002112MODULE_LICENSE("GPL");
2113MODULE_DESCRIPTION("Glue layer for NAND flash on TI OMAP boards");