mtd: onenand: fix build warning for dma type
[deliverable/linux.git] / drivers / mtd / nand / fsl_elbc_nand.c
CommitLineData
76b10467
SW
1/* Freescale Enhanced Local Bus Controller NAND driver
2 *
3ab8f2a2 3 * Copyright © 2006-2007, 2010 Freescale Semiconductor
76b10467
SW
4 *
5 * Authors: Nick Spence <nick.spence@freescale.com>,
6 * Scott Wood <scottwood@freescale.com>
3ab8f2a2
RZ
7 * Jack Lan <jack.lan@freescale.com>
8 * Roy Zang <tie-fei.zang@freescale.com>
76b10467
SW
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 */
24
25#include <linux/module.h>
26#include <linux/types.h>
76b10467
SW
27#include <linux/kernel.h>
28#include <linux/string.h>
29#include <linux/ioport.h>
5af50730 30#include <linux/of_address.h>
76b10467 31#include <linux/of_platform.h>
3ab8f2a2 32#include <linux/platform_device.h>
76b10467
SW
33#include <linux/slab.h>
34#include <linux/interrupt.h>
35
36#include <linux/mtd/mtd.h>
37#include <linux/mtd/nand.h>
38#include <linux/mtd/nand_ecc.h>
39#include <linux/mtd/partitions.h>
40
41#include <asm/io.h>
d4a32fe4 42#include <asm/fsl_lbc.h>
76b10467
SW
43
44#define MAX_BANKS 8
45#define ERR_BYTE 0xFF /* Value returned for read bytes when read failed */
46#define FCM_TIMEOUT_MSECS 500 /* Maximum number of mSecs to wait for FCM */
47
76b10467
SW
48/* mtd information per set */
49
50struct fsl_elbc_mtd {
51 struct mtd_info mtd;
52 struct nand_chip chip;
3ab8f2a2 53 struct fsl_lbc_ctrl *ctrl;
76b10467
SW
54
55 struct device *dev;
56 int bank; /* Chip select bank number */
57 u8 __iomem *vbase; /* Chip select base virtual address */
58 int page_size; /* NAND page size (0=512, 1=2048) */
59 unsigned int fmr; /* FCM Flash Mode Register value */
60};
61
25985edc 62/* Freescale eLBC FCM controller information */
76b10467 63
3ab8f2a2 64struct fsl_elbc_fcm_ctrl {
76b10467
SW
65 struct nand_hw_control controller;
66 struct fsl_elbc_mtd *chips[MAX_BANKS];
67
76b10467
SW
68 u8 __iomem *addr; /* Address of assigned FCM buffer */
69 unsigned int page; /* Last page written to / read from */
70 unsigned int read_bytes; /* Number of bytes read during command */
71 unsigned int column; /* Saved column from SEQIN */
72 unsigned int index; /* Pointer to next byte to 'read' */
73 unsigned int status; /* status read from LTESR after last op */
74 unsigned int mdr; /* UPM/FCM Data Register value */
75 unsigned int use_mdr; /* Non zero if the MDR is to be set */
76 unsigned int oob; /* Non zero if operating on OOB data */
3ab8f2a2 77 unsigned int counter; /* counter for the initializations */
3f91e94f 78 unsigned int max_bitflips; /* Saved during READ0 cmd */
76b10467
SW
79};
80
81/* These map to the positions used by the FCM hardware ECC generator */
82
83/* Small Page FLASH with FMR[ECCM] = 0 */
84static struct nand_ecclayout fsl_elbc_oob_sp_eccm0 = {
85 .eccbytes = 3,
86 .eccpos = {6, 7, 8},
87 .oobfree = { {0, 5}, {9, 7} },
76b10467
SW
88};
89
90/* Small Page FLASH with FMR[ECCM] = 1 */
91static struct nand_ecclayout fsl_elbc_oob_sp_eccm1 = {
92 .eccbytes = 3,
93 .eccpos = {8, 9, 10},
94 .oobfree = { {0, 5}, {6, 2}, {11, 5} },
76b10467
SW
95};
96
97/* Large Page FLASH with FMR[ECCM] = 0 */
98static struct nand_ecclayout fsl_elbc_oob_lp_eccm0 = {
99 .eccbytes = 12,
100 .eccpos = {6, 7, 8, 22, 23, 24, 38, 39, 40, 54, 55, 56},
101 .oobfree = { {1, 5}, {9, 13}, {25, 13}, {41, 13}, {57, 7} },
76b10467
SW
102};
103
104/* Large Page FLASH with FMR[ECCM] = 1 */
105static struct nand_ecclayout fsl_elbc_oob_lp_eccm1 = {
106 .eccbytes = 12,
107 .eccpos = {8, 9, 10, 24, 25, 26, 40, 41, 42, 56, 57, 58},
108 .oobfree = { {1, 7}, {11, 13}, {27, 13}, {43, 13}, {59, 5} },
76b10467
SW
109};
110
ec6e0ea3
AV
111/*
112 * ELBC may use HW ECC, so that OOB offsets, that NAND core uses for bbt,
113 * interfere with ECC positions, that's why we implement our own descriptors.
114 * OOB {11, 5}, works for both SP and LP chips, with ECCM = 1 and ECCM = 0.
115 */
116static u8 bbt_pattern[] = {'B', 'b', 't', '0' };
117static u8 mirror_pattern[] = {'1', 't', 'b', 'B' };
118
119static struct nand_bbt_descr bbt_main_descr = {
120 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
121 NAND_BBT_2BIT | NAND_BBT_VERSION,
122 .offs = 11,
123 .len = 4,
124 .veroffs = 15,
125 .maxblocks = 4,
126 .pattern = bbt_pattern,
127};
128
129static struct nand_bbt_descr bbt_mirror_descr = {
130 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
131 NAND_BBT_2BIT | NAND_BBT_VERSION,
132 .offs = 11,
133 .len = 4,
134 .veroffs = 15,
135 .maxblocks = 4,
136 .pattern = mirror_pattern,
137};
138
76b10467
SW
139/*=================================*/
140
141/*
142 * Set up the FCM hardware block and page address fields, and the fcm
143 * structure addr field to point to the correct FCM buffer in memory
144 */
145static void set_addr(struct mtd_info *mtd, int column, int page_addr, int oob)
146{
147 struct nand_chip *chip = mtd->priv;
148 struct fsl_elbc_mtd *priv = chip->priv;
3ab8f2a2 149 struct fsl_lbc_ctrl *ctrl = priv->ctrl;
d4a32fe4 150 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
3ab8f2a2 151 struct fsl_elbc_fcm_ctrl *elbc_fcm_ctrl = ctrl->nand;
76b10467
SW
152 int buf_num;
153
3ab8f2a2 154 elbc_fcm_ctrl->page = page_addr;
76b10467 155
76b10467 156 if (priv->page_size) {
9ae84fe8
LS
157 /*
158 * large page size chip : FPAR[PI] save the lowest 6 bits,
159 * FBAR[BLK] save the other bits.
160 */
161 out_be32(&lbc->fbar, page_addr >> 6);
76b10467
SW
162 out_be32(&lbc->fpar,
163 ((page_addr << FPAR_LP_PI_SHIFT) & FPAR_LP_PI) |
164 (oob ? FPAR_LP_MS : 0) | column);
165 buf_num = (page_addr & 1) << 2;
166 } else {
9ae84fe8
LS
167 /*
168 * small page size chip : FPAR[PI] save the lowest 5 bits,
169 * FBAR[BLK] save the other bits.
170 */
171 out_be32(&lbc->fbar, page_addr >> 5);
76b10467
SW
172 out_be32(&lbc->fpar,
173 ((page_addr << FPAR_SP_PI_SHIFT) & FPAR_SP_PI) |
174 (oob ? FPAR_SP_MS : 0) | column);
175 buf_num = page_addr & 7;
176 }
177
3ab8f2a2
RZ
178 elbc_fcm_ctrl->addr = priv->vbase + buf_num * 1024;
179 elbc_fcm_ctrl->index = column;
76b10467
SW
180
181 /* for OOB data point to the second half of the buffer */
182 if (oob)
3ab8f2a2 183 elbc_fcm_ctrl->index += priv->page_size ? 2048 : 512;
76b10467 184
3ab8f2a2
RZ
185 dev_vdbg(priv->dev, "set_addr: bank=%d, "
186 "elbc_fcm_ctrl->addr=0x%p (0x%p), "
76b10467 187 "index %x, pes %d ps %d\n",
3ab8f2a2
RZ
188 buf_num, elbc_fcm_ctrl->addr, priv->vbase,
189 elbc_fcm_ctrl->index,
76b10467
SW
190 chip->phys_erase_shift, chip->page_shift);
191}
192
193/*
194 * execute FCM command and wait for it to complete
195 */
196static int fsl_elbc_run_command(struct mtd_info *mtd)
197{
198 struct nand_chip *chip = mtd->priv;
199 struct fsl_elbc_mtd *priv = chip->priv;
3ab8f2a2
RZ
200 struct fsl_lbc_ctrl *ctrl = priv->ctrl;
201 struct fsl_elbc_fcm_ctrl *elbc_fcm_ctrl = ctrl->nand;
d4a32fe4 202 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
76b10467
SW
203
204 /* Setup the FMR[OP] to execute without write protection */
205 out_be32(&lbc->fmr, priv->fmr | 3);
3ab8f2a2
RZ
206 if (elbc_fcm_ctrl->use_mdr)
207 out_be32(&lbc->mdr, elbc_fcm_ctrl->mdr);
76b10467 208
3ab8f2a2 209 dev_vdbg(priv->dev,
76b10467
SW
210 "fsl_elbc_run_command: fmr=%08x fir=%08x fcr=%08x\n",
211 in_be32(&lbc->fmr), in_be32(&lbc->fir), in_be32(&lbc->fcr));
3ab8f2a2 212 dev_vdbg(priv->dev,
76b10467
SW
213 "fsl_elbc_run_command: fbar=%08x fpar=%08x "
214 "fbcr=%08x bank=%d\n",
215 in_be32(&lbc->fbar), in_be32(&lbc->fpar),
216 in_be32(&lbc->fbcr), priv->bank);
217
1938de46 218 ctrl->irq_status = 0;
76b10467
SW
219 /* execute special operation */
220 out_be32(&lbc->lsor, priv->bank);
221
222 /* wait for FCM complete flag or timeout */
76b10467
SW
223 wait_event_timeout(ctrl->irq_wait, ctrl->irq_status,
224 FCM_TIMEOUT_MSECS * HZ/1000);
3ab8f2a2 225 elbc_fcm_ctrl->status = ctrl->irq_status;
76b10467 226 /* store mdr value in case it was needed */
3ab8f2a2
RZ
227 if (elbc_fcm_ctrl->use_mdr)
228 elbc_fcm_ctrl->mdr = in_be32(&lbc->mdr);
76b10467 229
3ab8f2a2 230 elbc_fcm_ctrl->use_mdr = 0;
76b10467 231
3ab8f2a2
RZ
232 if (elbc_fcm_ctrl->status != LTESR_CC) {
233 dev_info(priv->dev,
c1317f71
SW
234 "command failed: fir %x fcr %x status %x mdr %x\n",
235 in_be32(&lbc->fir), in_be32(&lbc->fcr),
3ab8f2a2 236 elbc_fcm_ctrl->status, elbc_fcm_ctrl->mdr);
c1317f71
SW
237 return -EIO;
238 }
76b10467 239
f975c6bc
MH
240 if (chip->ecc.mode != NAND_ECC_HW)
241 return 0;
242
3f91e94f
MD
243 elbc_fcm_ctrl->max_bitflips = 0;
244
f975c6bc
MH
245 if (elbc_fcm_ctrl->read_bytes == mtd->writesize + mtd->oobsize) {
246 uint32_t lteccr = in_be32(&lbc->lteccr);
247 /*
248 * if command was a full page read and the ELBC
249 * has the LTECCR register, then bits 12-15 (ppc order) of
250 * LTECCR indicates which 512 byte sub-pages had fixed errors.
251 * bits 28-31 are uncorrectable errors, marked elsewhere.
252 * for small page nand only 1 bit is used.
253 * if the ELBC doesn't have the lteccr register it reads 0
3f91e94f
MD
254 * FIXME: 4 bits can be corrected on NANDs with 2k pages, so
255 * count the number of sub-pages with bitflips and update
256 * ecc_stats.corrected accordingly.
f975c6bc
MH
257 */
258 if (lteccr & 0x000F000F)
259 out_be32(&lbc->lteccr, 0x000F000F); /* clear lteccr */
3f91e94f 260 if (lteccr & 0x000F0000) {
f975c6bc 261 mtd->ecc_stats.corrected++;
3f91e94f
MD
262 elbc_fcm_ctrl->max_bitflips = 1;
263 }
f975c6bc
MH
264 }
265
c1317f71 266 return 0;
76b10467
SW
267}
268
269static void fsl_elbc_do_read(struct nand_chip *chip, int oob)
270{
271 struct fsl_elbc_mtd *priv = chip->priv;
3ab8f2a2 272 struct fsl_lbc_ctrl *ctrl = priv->ctrl;
d4a32fe4 273 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
76b10467
SW
274
275 if (priv->page_size) {
276 out_be32(&lbc->fir,
476459a6 277 (FIR_OP_CM0 << FIR_OP0_SHIFT) |
76b10467
SW
278 (FIR_OP_CA << FIR_OP1_SHIFT) |
279 (FIR_OP_PA << FIR_OP2_SHIFT) |
476459a6 280 (FIR_OP_CM1 << FIR_OP3_SHIFT) |
76b10467
SW
281 (FIR_OP_RBW << FIR_OP4_SHIFT));
282
283 out_be32(&lbc->fcr, (NAND_CMD_READ0 << FCR_CMD0_SHIFT) |
284 (NAND_CMD_READSTART << FCR_CMD1_SHIFT));
285 } else {
286 out_be32(&lbc->fir,
476459a6 287 (FIR_OP_CM0 << FIR_OP0_SHIFT) |
76b10467
SW
288 (FIR_OP_CA << FIR_OP1_SHIFT) |
289 (FIR_OP_PA << FIR_OP2_SHIFT) |
290 (FIR_OP_RBW << FIR_OP3_SHIFT));
291
292 if (oob)
293 out_be32(&lbc->fcr, NAND_CMD_READOOB << FCR_CMD0_SHIFT);
294 else
295 out_be32(&lbc->fcr, NAND_CMD_READ0 << FCR_CMD0_SHIFT);
296 }
297}
298
299/* cmdfunc send commands to the FCM */
300static void fsl_elbc_cmdfunc(struct mtd_info *mtd, unsigned int command,
301 int column, int page_addr)
302{
303 struct nand_chip *chip = mtd->priv;
304 struct fsl_elbc_mtd *priv = chip->priv;
3ab8f2a2
RZ
305 struct fsl_lbc_ctrl *ctrl = priv->ctrl;
306 struct fsl_elbc_fcm_ctrl *elbc_fcm_ctrl = ctrl->nand;
d4a32fe4 307 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
76b10467 308
3ab8f2a2 309 elbc_fcm_ctrl->use_mdr = 0;
76b10467
SW
310
311 /* clear the read buffer */
3ab8f2a2 312 elbc_fcm_ctrl->read_bytes = 0;
76b10467 313 if (command != NAND_CMD_PAGEPROG)
3ab8f2a2 314 elbc_fcm_ctrl->index = 0;
76b10467
SW
315
316 switch (command) {
317 /* READ0 and READ1 read the entire buffer to use hardware ECC. */
318 case NAND_CMD_READ1:
319 column += 256;
320
321 /* fall-through */
322 case NAND_CMD_READ0:
3ab8f2a2 323 dev_dbg(priv->dev,
76b10467
SW
324 "fsl_elbc_cmdfunc: NAND_CMD_READ0, page_addr:"
325 " 0x%x, column: 0x%x.\n", page_addr, column);
326
327
328 out_be32(&lbc->fbcr, 0); /* read entire page to enable ECC */
329 set_addr(mtd, 0, page_addr, 0);
330
3ab8f2a2
RZ
331 elbc_fcm_ctrl->read_bytes = mtd->writesize + mtd->oobsize;
332 elbc_fcm_ctrl->index += column;
76b10467
SW
333
334 fsl_elbc_do_read(chip, 0);
335 fsl_elbc_run_command(mtd);
336 return;
337
338 /* READOOB reads only the OOB because no ECC is performed. */
339 case NAND_CMD_READOOB:
3ab8f2a2 340 dev_vdbg(priv->dev,
76b10467
SW
341 "fsl_elbc_cmdfunc: NAND_CMD_READOOB, page_addr:"
342 " 0x%x, column: 0x%x.\n", page_addr, column);
343
344 out_be32(&lbc->fbcr, mtd->oobsize - column);
345 set_addr(mtd, column, page_addr, 1);
346
3ab8f2a2 347 elbc_fcm_ctrl->read_bytes = mtd->writesize + mtd->oobsize;
76b10467
SW
348
349 fsl_elbc_do_read(chip, 1);
350 fsl_elbc_run_command(mtd);
351 return;
352
76b10467 353 case NAND_CMD_READID:
f57eb5cc
SL
354 case NAND_CMD_PARAM:
355 dev_vdbg(priv->dev, "fsl_elbc_cmdfunc: NAND_CMD %x\n", command);
76b10467 356
476459a6 357 out_be32(&lbc->fir, (FIR_OP_CM0 << FIR_OP0_SHIFT) |
76b10467
SW
358 (FIR_OP_UA << FIR_OP1_SHIFT) |
359 (FIR_OP_RBW << FIR_OP2_SHIFT));
f57eb5cc
SL
360 out_be32(&lbc->fcr, command << FCR_CMD0_SHIFT);
361 /*
362 * although currently it's 8 bytes for READID, we always read
363 * the maximum 256 bytes(for PARAM)
364 */
365 out_be32(&lbc->fbcr, 256);
366 elbc_fcm_ctrl->read_bytes = 256;
3ab8f2a2 367 elbc_fcm_ctrl->use_mdr = 1;
f57eb5cc 368 elbc_fcm_ctrl->mdr = column;
76b10467
SW
369 set_addr(mtd, 0, 0, 0);
370 fsl_elbc_run_command(mtd);
371 return;
372
373 /* ERASE1 stores the block and page address */
374 case NAND_CMD_ERASE1:
3ab8f2a2 375 dev_vdbg(priv->dev,
76b10467
SW
376 "fsl_elbc_cmdfunc: NAND_CMD_ERASE1, "
377 "page_addr: 0x%x.\n", page_addr);
378 set_addr(mtd, 0, page_addr, 0);
379 return;
380
381 /* ERASE2 uses the block and page address from ERASE1 */
382 case NAND_CMD_ERASE2:
3ab8f2a2 383 dev_vdbg(priv->dev, "fsl_elbc_cmdfunc: NAND_CMD_ERASE2.\n");
76b10467
SW
384
385 out_be32(&lbc->fir,
476459a6 386 (FIR_OP_CM0 << FIR_OP0_SHIFT) |
76b10467 387 (FIR_OP_PA << FIR_OP1_SHIFT) |
476459a6
SW
388 (FIR_OP_CM2 << FIR_OP2_SHIFT) |
389 (FIR_OP_CW1 << FIR_OP3_SHIFT) |
390 (FIR_OP_RS << FIR_OP4_SHIFT));
76b10467
SW
391
392 out_be32(&lbc->fcr,
393 (NAND_CMD_ERASE1 << FCR_CMD0_SHIFT) |
476459a6
SW
394 (NAND_CMD_STATUS << FCR_CMD1_SHIFT) |
395 (NAND_CMD_ERASE2 << FCR_CMD2_SHIFT));
76b10467
SW
396
397 out_be32(&lbc->fbcr, 0);
3ab8f2a2
RZ
398 elbc_fcm_ctrl->read_bytes = 0;
399 elbc_fcm_ctrl->use_mdr = 1;
76b10467
SW
400
401 fsl_elbc_run_command(mtd);
402 return;
403
404 /* SEQIN sets up the addr buffer and all registers except the length */
405 case NAND_CMD_SEQIN: {
406 __be32 fcr;
3ab8f2a2
RZ
407 dev_vdbg(priv->dev,
408 "fsl_elbc_cmdfunc: NAND_CMD_SEQIN/PAGE_PROG, "
76b10467
SW
409 "page_addr: 0x%x, column: 0x%x.\n",
410 page_addr, column);
411
eeda667a 412 elbc_fcm_ctrl->column = column;
3ab8f2a2 413 elbc_fcm_ctrl->use_mdr = 1;
76b10467 414
a9a552f0
LS
415 if (column >= mtd->writesize) {
416 /* OOB area */
417 column -= mtd->writesize;
418 elbc_fcm_ctrl->oob = 1;
419 } else {
420 WARN_ON(column != 0);
421 elbc_fcm_ctrl->oob = 0;
422 }
423
476459a6
SW
424 fcr = (NAND_CMD_STATUS << FCR_CMD1_SHIFT) |
425 (NAND_CMD_SEQIN << FCR_CMD2_SHIFT) |
426 (NAND_CMD_PAGEPROG << FCR_CMD3_SHIFT);
57650664 427
476459a6 428 if (priv->page_size) {
76b10467 429 out_be32(&lbc->fir,
476459a6 430 (FIR_OP_CM2 << FIR_OP0_SHIFT) |
76b10467
SW
431 (FIR_OP_CA << FIR_OP1_SHIFT) |
432 (FIR_OP_PA << FIR_OP2_SHIFT) |
433 (FIR_OP_WB << FIR_OP3_SHIFT) |
476459a6
SW
434 (FIR_OP_CM3 << FIR_OP4_SHIFT) |
435 (FIR_OP_CW1 << FIR_OP5_SHIFT) |
436 (FIR_OP_RS << FIR_OP6_SHIFT));
76b10467
SW
437 } else {
438 out_be32(&lbc->fir,
476459a6 439 (FIR_OP_CM0 << FIR_OP0_SHIFT) |
76b10467
SW
440 (FIR_OP_CM2 << FIR_OP1_SHIFT) |
441 (FIR_OP_CA << FIR_OP2_SHIFT) |
442 (FIR_OP_PA << FIR_OP3_SHIFT) |
443 (FIR_OP_WB << FIR_OP4_SHIFT) |
476459a6
SW
444 (FIR_OP_CM3 << FIR_OP5_SHIFT) |
445 (FIR_OP_CW1 << FIR_OP6_SHIFT) |
446 (FIR_OP_RS << FIR_OP7_SHIFT));
76b10467 447
a9a552f0 448 if (elbc_fcm_ctrl->oob)
76b10467 449 /* OOB area --> READOOB */
76b10467 450 fcr |= NAND_CMD_READOOB << FCR_CMD0_SHIFT;
a9a552f0 451 else
76b10467
SW
452 /* First 256 bytes --> READ0 */
453 fcr |= NAND_CMD_READ0 << FCR_CMD0_SHIFT;
76b10467
SW
454 }
455
456 out_be32(&lbc->fcr, fcr);
3ab8f2a2 457 set_addr(mtd, column, page_addr, elbc_fcm_ctrl->oob);
76b10467
SW
458 return;
459 }
460
461 /* PAGEPROG reuses all of the setup from SEQIN and adds the length */
462 case NAND_CMD_PAGEPROG: {
3ab8f2a2 463 dev_vdbg(priv->dev,
76b10467 464 "fsl_elbc_cmdfunc: NAND_CMD_PAGEPROG "
3ab8f2a2 465 "writing %d bytes.\n", elbc_fcm_ctrl->index);
76b10467
SW
466
467 /* if the write did not start at 0 or is not a full page
468 * then set the exact length, otherwise use a full page
469 * write so the HW generates the ECC.
470 */
3ab8f2a2 471 if (elbc_fcm_ctrl->oob || elbc_fcm_ctrl->column != 0 ||
52a474de 472 elbc_fcm_ctrl->index != mtd->writesize + mtd->oobsize)
e32de766
LS
473 out_be32(&lbc->fbcr,
474 elbc_fcm_ctrl->index - elbc_fcm_ctrl->column);
52a474de 475 else
76b10467 476 out_be32(&lbc->fbcr, 0);
76b10467
SW
477
478 fsl_elbc_run_command(mtd);
76b10467
SW
479 return;
480 }
481
482 /* CMD_STATUS must read the status byte while CEB is active */
483 /* Note - it does not wait for the ready line */
484 case NAND_CMD_STATUS:
485 out_be32(&lbc->fir,
486 (FIR_OP_CM0 << FIR_OP0_SHIFT) |
487 (FIR_OP_RBW << FIR_OP1_SHIFT));
488 out_be32(&lbc->fcr, NAND_CMD_STATUS << FCR_CMD0_SHIFT);
489 out_be32(&lbc->fbcr, 1);
490 set_addr(mtd, 0, 0, 0);
3ab8f2a2 491 elbc_fcm_ctrl->read_bytes = 1;
76b10467
SW
492
493 fsl_elbc_run_command(mtd);
494
495 /* The chip always seems to report that it is
496 * write-protected, even when it is not.
497 */
3ab8f2a2 498 setbits8(elbc_fcm_ctrl->addr, NAND_STATUS_WP);
76b10467
SW
499 return;
500
501 /* RESET without waiting for the ready line */
502 case NAND_CMD_RESET:
3ab8f2a2 503 dev_dbg(priv->dev, "fsl_elbc_cmdfunc: NAND_CMD_RESET.\n");
76b10467
SW
504 out_be32(&lbc->fir, FIR_OP_CM0 << FIR_OP0_SHIFT);
505 out_be32(&lbc->fcr, NAND_CMD_RESET << FCR_CMD0_SHIFT);
506 fsl_elbc_run_command(mtd);
507 return;
508
509 default:
3ab8f2a2 510 dev_err(priv->dev,
76b10467
SW
511 "fsl_elbc_cmdfunc: error, unsupported command 0x%x.\n",
512 command);
513 }
514}
515
516static void fsl_elbc_select_chip(struct mtd_info *mtd, int chip)
517{
518 /* The hardware does not seem to support multiple
519 * chips per bank.
520 */
521}
522
523/*
524 * Write buf to the FCM Controller Data Buffer
525 */
526static void fsl_elbc_write_buf(struct mtd_info *mtd, const u8 *buf, int len)
527{
528 struct nand_chip *chip = mtd->priv;
529 struct fsl_elbc_mtd *priv = chip->priv;
3ab8f2a2 530 struct fsl_elbc_fcm_ctrl *elbc_fcm_ctrl = priv->ctrl->nand;
76b10467
SW
531 unsigned int bufsize = mtd->writesize + mtd->oobsize;
532
0ff6631b 533 if (len <= 0) {
3ab8f2a2
RZ
534 dev_err(priv->dev, "write_buf of %d bytes", len);
535 elbc_fcm_ctrl->status = 0;
76b10467
SW
536 return;
537 }
538
3ab8f2a2
RZ
539 if ((unsigned int)len > bufsize - elbc_fcm_ctrl->index) {
540 dev_err(priv->dev,
76b10467
SW
541 "write_buf beyond end of buffer "
542 "(%d requested, %u available)\n",
3ab8f2a2
RZ
543 len, bufsize - elbc_fcm_ctrl->index);
544 len = bufsize - elbc_fcm_ctrl->index;
76b10467
SW
545 }
546
3ab8f2a2 547 memcpy_toio(&elbc_fcm_ctrl->addr[elbc_fcm_ctrl->index], buf, len);
0ff6631b
AV
548 /*
549 * This is workaround for the weird elbc hangs during nand write,
550 * Scott Wood says: "...perhaps difference in how long it takes a
551 * write to make it through the localbus compared to a write to IMMR
552 * is causing problems, and sync isn't helping for some reason."
553 * Reading back the last byte helps though.
554 */
3ab8f2a2 555 in_8(&elbc_fcm_ctrl->addr[elbc_fcm_ctrl->index] + len - 1);
0ff6631b 556
3ab8f2a2 557 elbc_fcm_ctrl->index += len;
76b10467
SW
558}
559
560/*
561 * read a byte from either the FCM hardware buffer if it has any data left
562 * otherwise issue a command to read a single byte.
563 */
564static u8 fsl_elbc_read_byte(struct mtd_info *mtd)
565{
566 struct nand_chip *chip = mtd->priv;
567 struct fsl_elbc_mtd *priv = chip->priv;
3ab8f2a2 568 struct fsl_elbc_fcm_ctrl *elbc_fcm_ctrl = priv->ctrl->nand;
76b10467
SW
569
570 /* If there are still bytes in the FCM, then use the next byte. */
3ab8f2a2
RZ
571 if (elbc_fcm_ctrl->index < elbc_fcm_ctrl->read_bytes)
572 return in_8(&elbc_fcm_ctrl->addr[elbc_fcm_ctrl->index++]);
76b10467 573
3ab8f2a2 574 dev_err(priv->dev, "read_byte beyond end of buffer\n");
76b10467
SW
575 return ERR_BYTE;
576}
577
578/*
579 * Read from the FCM Controller Data Buffer
580 */
581static void fsl_elbc_read_buf(struct mtd_info *mtd, u8 *buf, int len)
582{
583 struct nand_chip *chip = mtd->priv;
584 struct fsl_elbc_mtd *priv = chip->priv;
3ab8f2a2 585 struct fsl_elbc_fcm_ctrl *elbc_fcm_ctrl = priv->ctrl->nand;
76b10467
SW
586 int avail;
587
588 if (len < 0)
589 return;
590
3ab8f2a2
RZ
591 avail = min((unsigned int)len,
592 elbc_fcm_ctrl->read_bytes - elbc_fcm_ctrl->index);
593 memcpy_fromio(buf, &elbc_fcm_ctrl->addr[elbc_fcm_ctrl->index], avail);
594 elbc_fcm_ctrl->index += avail;
76b10467
SW
595
596 if (len > avail)
3ab8f2a2 597 dev_err(priv->dev,
76b10467
SW
598 "read_buf beyond end of buffer "
599 "(%d requested, %d available)\n",
600 len, avail);
601}
602
76b10467
SW
603/* This function is called after Program and Erase Operations to
604 * check for success or failure.
605 */
606static int fsl_elbc_wait(struct mtd_info *mtd, struct nand_chip *chip)
607{
608 struct fsl_elbc_mtd *priv = chip->priv;
3ab8f2a2 609 struct fsl_elbc_fcm_ctrl *elbc_fcm_ctrl = priv->ctrl->nand;
76b10467 610
3ab8f2a2 611 if (elbc_fcm_ctrl->status != LTESR_CC)
76b10467
SW
612 return NAND_STATUS_FAIL;
613
614 /* The chip always seems to report that it is
615 * write-protected, even when it is not.
616 */
3ab8f2a2 617 return (elbc_fcm_ctrl->mdr & 0xff) | NAND_STATUS_WP;
76b10467
SW
618}
619
620static int fsl_elbc_chip_init_tail(struct mtd_info *mtd)
621{
622 struct nand_chip *chip = mtd->priv;
623 struct fsl_elbc_mtd *priv = chip->priv;
3ab8f2a2 624 struct fsl_lbc_ctrl *ctrl = priv->ctrl;
d4a32fe4 625 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
76b10467
SW
626 unsigned int al;
627
628 /* calculate FMR Address Length field */
629 al = 0;
630 if (chip->pagemask & 0xffff0000)
631 al++;
632 if (chip->pagemask & 0xff000000)
633 al++;
634
d8251108 635 priv->fmr |= al << FMR_AL_SHIFT;
76b10467 636
3ab8f2a2 637 dev_dbg(priv->dev, "fsl_elbc_init: nand->numchips = %d\n",
76b10467 638 chip->numchips);
3ab8f2a2 639 dev_dbg(priv->dev, "fsl_elbc_init: nand->chipsize = %lld\n",
76b10467 640 chip->chipsize);
3ab8f2a2 641 dev_dbg(priv->dev, "fsl_elbc_init: nand->pagemask = %8x\n",
76b10467 642 chip->pagemask);
3ab8f2a2 643 dev_dbg(priv->dev, "fsl_elbc_init: nand->chip_delay = %d\n",
76b10467 644 chip->chip_delay);
3ab8f2a2 645 dev_dbg(priv->dev, "fsl_elbc_init: nand->badblockpos = %d\n",
76b10467 646 chip->badblockpos);
3ab8f2a2 647 dev_dbg(priv->dev, "fsl_elbc_init: nand->chip_shift = %d\n",
76b10467 648 chip->chip_shift);
3ab8f2a2 649 dev_dbg(priv->dev, "fsl_elbc_init: nand->page_shift = %d\n",
76b10467 650 chip->page_shift);
3ab8f2a2 651 dev_dbg(priv->dev, "fsl_elbc_init: nand->phys_erase_shift = %d\n",
76b10467 652 chip->phys_erase_shift);
3ab8f2a2 653 dev_dbg(priv->dev, "fsl_elbc_init: nand->ecc.mode = %d\n",
76b10467 654 chip->ecc.mode);
3ab8f2a2 655 dev_dbg(priv->dev, "fsl_elbc_init: nand->ecc.steps = %d\n",
76b10467 656 chip->ecc.steps);
3ab8f2a2 657 dev_dbg(priv->dev, "fsl_elbc_init: nand->ecc.bytes = %d\n",
76b10467 658 chip->ecc.bytes);
3ab8f2a2 659 dev_dbg(priv->dev, "fsl_elbc_init: nand->ecc.total = %d\n",
76b10467 660 chip->ecc.total);
3ab8f2a2 661 dev_dbg(priv->dev, "fsl_elbc_init: nand->ecc.layout = %p\n",
76b10467 662 chip->ecc.layout);
3ab8f2a2
RZ
663 dev_dbg(priv->dev, "fsl_elbc_init: mtd->flags = %08x\n", mtd->flags);
664 dev_dbg(priv->dev, "fsl_elbc_init: mtd->size = %lld\n", mtd->size);
665 dev_dbg(priv->dev, "fsl_elbc_init: mtd->erasesize = %d\n",
76b10467 666 mtd->erasesize);
3ab8f2a2 667 dev_dbg(priv->dev, "fsl_elbc_init: mtd->writesize = %d\n",
76b10467 668 mtd->writesize);
3ab8f2a2 669 dev_dbg(priv->dev, "fsl_elbc_init: mtd->oobsize = %d\n",
76b10467
SW
670 mtd->oobsize);
671
672 /* adjust Option Register and ECC to match Flash page size */
673 if (mtd->writesize == 512) {
674 priv->page_size = 0;
1938de46 675 clrbits32(&lbc->bank[priv->bank].or, OR_FCM_PGS);
76b10467
SW
676 } else if (mtd->writesize == 2048) {
677 priv->page_size = 1;
678 setbits32(&lbc->bank[priv->bank].or, OR_FCM_PGS);
679 /* adjust ecc setup if needed */
680 if ((in_be32(&lbc->bank[priv->bank].br) & BR_DECC) ==
681 BR_DECC_CHK_GEN) {
682 chip->ecc.size = 512;
683 chip->ecc.layout = (priv->fmr & FMR_ECCM) ?
684 &fsl_elbc_oob_lp_eccm1 :
685 &fsl_elbc_oob_lp_eccm0;
76b10467
SW
686 }
687 } else {
3ab8f2a2 688 dev_err(priv->dev,
76b10467
SW
689 "fsl_elbc_init: page size %d is not supported\n",
690 mtd->writesize);
691 return -1;
692 }
693
76b10467
SW
694 return 0;
695}
696
1fbb938d
BN
697static int fsl_elbc_read_page(struct mtd_info *mtd, struct nand_chip *chip,
698 uint8_t *buf, int oob_required, int page)
76b10467 699{
3f91e94f
MD
700 struct fsl_elbc_mtd *priv = chip->priv;
701 struct fsl_lbc_ctrl *ctrl = priv->ctrl;
702 struct fsl_elbc_fcm_ctrl *elbc_fcm_ctrl = ctrl->nand;
703
76b10467 704 fsl_elbc_read_buf(mtd, buf, mtd->writesize);
d112dc7f
BN
705 if (oob_required)
706 fsl_elbc_read_buf(mtd, chip->oob_poi, mtd->oobsize);
76b10467
SW
707
708 if (fsl_elbc_wait(mtd, chip) & NAND_STATUS_FAIL)
709 mtd->ecc_stats.failed++;
710
3f91e94f 711 return elbc_fcm_ctrl->max_bitflips;
76b10467
SW
712}
713
714/* ECC will be calculated automatically, and errors will be detected in
715 * waitfunc.
716 */
fdbad98d 717static int fsl_elbc_write_page(struct mtd_info *mtd, struct nand_chip *chip,
1fbb938d 718 const uint8_t *buf, int oob_required)
76b10467 719{
76b10467
SW
720 fsl_elbc_write_buf(mtd, buf, mtd->writesize);
721 fsl_elbc_write_buf(mtd, chip->oob_poi, mtd->oobsize);
fdbad98d
JW
722
723 return 0;
76b10467
SW
724}
725
726static int fsl_elbc_chip_init(struct fsl_elbc_mtd *priv)
727{
3ab8f2a2 728 struct fsl_lbc_ctrl *ctrl = priv->ctrl;
d4a32fe4 729 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
3ab8f2a2 730 struct fsl_elbc_fcm_ctrl *elbc_fcm_ctrl = ctrl->nand;
76b10467
SW
731 struct nand_chip *chip = &priv->chip;
732
733 dev_dbg(priv->dev, "eLBC Set Information for bank %d\n", priv->bank);
734
735 /* Fill in fsl_elbc_mtd structure */
736 priv->mtd.priv = chip;
737 priv->mtd.owner = THIS_MODULE;
03ed1078 738
d8251108
SL
739 /* set timeout to maximum */
740 priv->fmr = 15 << FMR_CWTO_SHIFT;
741 if (in_be32(&lbc->bank[priv->bank].or) & OR_FCM_PGS)
742 priv->fmr |= FMR_ECCM;
76b10467
SW
743
744 /* fill in nand_chip structure */
745 /* set up function call table */
746 chip->read_byte = fsl_elbc_read_byte;
747 chip->write_buf = fsl_elbc_write_buf;
748 chip->read_buf = fsl_elbc_read_buf;
76b10467
SW
749 chip->select_chip = fsl_elbc_select_chip;
750 chip->cmdfunc = fsl_elbc_cmdfunc;
751 chip->waitfunc = fsl_elbc_wait;
752
ec6e0ea3
AV
753 chip->bbt_td = &bbt_main_descr;
754 chip->bbt_md = &bbt_mirror_descr;
755
76b10467 756 /* set up nand options */
bb9ebd4e 757 chip->bbt_options = NAND_BBT_USE_FLASH;
76b10467 758
3ab8f2a2 759 chip->controller = &elbc_fcm_ctrl->controller;
76b10467
SW
760 chip->priv = priv;
761
762 chip->ecc.read_page = fsl_elbc_read_page;
763 chip->ecc.write_page = fsl_elbc_write_page;
764
765 /* If CS Base Register selects full hardware ECC then use it */
766 if ((in_be32(&lbc->bank[priv->bank].br) & BR_DECC) ==
767 BR_DECC_CHK_GEN) {
768 chip->ecc.mode = NAND_ECC_HW;
769 /* put in small page settings and adjust later if needed */
770 chip->ecc.layout = (priv->fmr & FMR_ECCM) ?
771 &fsl_elbc_oob_sp_eccm1 : &fsl_elbc_oob_sp_eccm0;
772 chip->ecc.size = 512;
773 chip->ecc.bytes = 3;
6a918bad 774 chip->ecc.strength = 1;
76b10467
SW
775 } else {
776 /* otherwise fall back to default software ECC */
777 chip->ecc.mode = NAND_ECC_SOFT;
778 }
779
780 return 0;
781}
782
783static int fsl_elbc_chip_remove(struct fsl_elbc_mtd *priv)
784{
3ab8f2a2 785 struct fsl_elbc_fcm_ctrl *elbc_fcm_ctrl = priv->ctrl->nand;
76b10467
SW
786 nand_release(&priv->mtd);
787
9ebed3e6
AV
788 kfree(priv->mtd.name);
789
76b10467
SW
790 if (priv->vbase)
791 iounmap(priv->vbase);
792
3ab8f2a2 793 elbc_fcm_ctrl->chips[priv->bank] = NULL;
76b10467 794 kfree(priv);
76b10467
SW
795 return 0;
796}
797
3ab8f2a2
RZ
798static DEFINE_MUTEX(fsl_elbc_nand_mutex);
799
06f25510 800static int fsl_elbc_nand_probe(struct platform_device *pdev)
76b10467 801{
3ab8f2a2 802 struct fsl_lbc_regs __iomem *lbc;
76b10467
SW
803 struct fsl_elbc_mtd *priv;
804 struct resource res;
3ab8f2a2 805 struct fsl_elbc_fcm_ctrl *elbc_fcm_ctrl;
76b10467 806 static const char *part_probe_types[]
b6b0fae7 807 = { "cmdlinepart", "RedBoot", "ofpart", NULL };
76b10467
SW
808 int ret;
809 int bank;
3ab8f2a2
RZ
810 struct device *dev;
811 struct device_node *node = pdev->dev.of_node;
b6b0fae7 812 struct mtd_part_parser_data ppdata;
3ab8f2a2 813
b6b0fae7 814 ppdata.of_node = pdev->dev.of_node;
3ab8f2a2
RZ
815 if (!fsl_lbc_ctrl_dev || !fsl_lbc_ctrl_dev->regs)
816 return -ENODEV;
817 lbc = fsl_lbc_ctrl_dev->regs;
818 dev = fsl_lbc_ctrl_dev->dev;
76b10467
SW
819
820 /* get, allocate and map the memory resource */
821 ret = of_address_to_resource(node, 0, &res);
822 if (ret) {
3ab8f2a2 823 dev_err(dev, "failed to get resource\n");
76b10467
SW
824 return ret;
825 }
826
827 /* find which chip select it is connected to */
828 for (bank = 0; bank < MAX_BANKS; bank++)
829 if ((in_be32(&lbc->bank[bank].br) & BR_V) &&
830 (in_be32(&lbc->bank[bank].br) & BR_MSEL) == BR_MS_FCM &&
831 (in_be32(&lbc->bank[bank].br) &
832 in_be32(&lbc->bank[bank].or) & BR_BA)
0b824d2b 833 == fsl_lbc_addr(res.start))
76b10467
SW
834 break;
835
836 if (bank >= MAX_BANKS) {
3ab8f2a2 837 dev_err(dev, "address did not match any chip selects\n");
76b10467
SW
838 return -ENODEV;
839 }
840
841 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
842 if (!priv)
843 return -ENOMEM;
844
3ab8f2a2
RZ
845 mutex_lock(&fsl_elbc_nand_mutex);
846 if (!fsl_lbc_ctrl_dev->nand) {
847 elbc_fcm_ctrl = kzalloc(sizeof(*elbc_fcm_ctrl), GFP_KERNEL);
848 if (!elbc_fcm_ctrl) {
3ab8f2a2
RZ
849 mutex_unlock(&fsl_elbc_nand_mutex);
850 ret = -ENOMEM;
851 goto err;
852 }
853 elbc_fcm_ctrl->counter++;
854
855 spin_lock_init(&elbc_fcm_ctrl->controller.lock);
856 init_waitqueue_head(&elbc_fcm_ctrl->controller.wq);
857 fsl_lbc_ctrl_dev->nand = elbc_fcm_ctrl;
858 } else {
859 elbc_fcm_ctrl = fsl_lbc_ctrl_dev->nand;
860 }
861 mutex_unlock(&fsl_elbc_nand_mutex);
862
863 elbc_fcm_ctrl->chips[bank] = priv;
76b10467 864 priv->bank = bank;
3ab8f2a2 865 priv->ctrl = fsl_lbc_ctrl_dev;
874d72c4
SW
866 priv->dev = &pdev->dev;
867 dev_set_drvdata(priv->dev, priv);
76b10467 868
8a19b558 869 priv->vbase = ioremap(res.start, resource_size(&res));
76b10467 870 if (!priv->vbase) {
3ab8f2a2 871 dev_err(dev, "failed to map chip region\n");
76b10467
SW
872 ret = -ENOMEM;
873 goto err;
874 }
875
2fec386a 876 priv->mtd.name = kasprintf(GFP_KERNEL, "%llx.flash", (u64)res.start);
9ebed3e6
AV
877 if (!priv->mtd.name) {
878 ret = -ENOMEM;
879 goto err;
880 }
881
76b10467
SW
882 ret = fsl_elbc_chip_init(priv);
883 if (ret)
884 goto err;
885
5e81e88a 886 ret = nand_scan_ident(&priv->mtd, 1, NULL);
76b10467
SW
887 if (ret)
888 goto err;
889
890 ret = fsl_elbc_chip_init_tail(&priv->mtd);
891 if (ret)
892 goto err;
893
894 ret = nand_scan_tail(&priv->mtd);
895 if (ret)
896 goto err;
897
76b10467
SW
898 /* First look for RedBoot table or partitions on the command
899 * line, these take precedence over device tree information */
99add422
DES
900 mtd_device_parse_register(&priv->mtd, part_probe_types, &ppdata,
901 NULL, 0);
76b10467 902
4712fff9
SR
903 printk(KERN_INFO "eLBC NAND device at 0x%llx, bank %d\n",
904 (unsigned long long)res.start, priv->bank);
76b10467
SW
905 return 0;
906
907err:
908 fsl_elbc_chip_remove(priv);
909 return ret;
910}
911
3ab8f2a2 912static int fsl_elbc_nand_remove(struct platform_device *pdev)
76b10467 913{
3ab8f2a2 914 struct fsl_elbc_fcm_ctrl *elbc_fcm_ctrl = fsl_lbc_ctrl_dev->nand;
874d72c4
SW
915 struct fsl_elbc_mtd *priv = dev_get_drvdata(&pdev->dev);
916
917 fsl_elbc_chip_remove(priv);
3ab8f2a2
RZ
918
919 mutex_lock(&fsl_elbc_nand_mutex);
920 elbc_fcm_ctrl->counter--;
921 if (!elbc_fcm_ctrl->counter) {
922 fsl_lbc_ctrl_dev->nand = NULL;
923 kfree(elbc_fcm_ctrl);
76b10467 924 }
3ab8f2a2 925 mutex_unlock(&fsl_elbc_nand_mutex);
76b10467
SW
926
927 return 0;
928
76b10467
SW
929}
930
3ab8f2a2
RZ
931static const struct of_device_id fsl_elbc_nand_match[] = {
932 { .compatible = "fsl,elbc-fcm-nand", },
76b10467
SW
933 {}
934};
935
3ab8f2a2 936static struct platform_driver fsl_elbc_nand_driver = {
76b10467 937 .driver = {
3ab8f2a2 938 .name = "fsl,elbc-fcm-nand",
4018294b 939 .owner = THIS_MODULE,
3ab8f2a2 940 .of_match_table = fsl_elbc_nand_match,
76b10467 941 },
3ab8f2a2
RZ
942 .probe = fsl_elbc_nand_probe,
943 .remove = fsl_elbc_nand_remove,
76b10467
SW
944};
945
f99640de 946module_platform_driver(fsl_elbc_nand_driver);
76b10467
SW
947
948MODULE_LICENSE("GPL");
949MODULE_AUTHOR("Freescale");
950MODULE_DESCRIPTION("Freescale Enhanced Local Bus Controller MTD NAND driver");
This page took 0.403 seconds and 5 git commands to generate.