2 * Freescale Integrated Flash Controller NAND driver
4 * Copyright 2011-2012 Freescale Semiconductor, Inc
6 * Author: Dipen Dudhat <Dipen.Dudhat@freescale.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/module.h>
24 #include <linux/types.h>
25 #include <linux/init.h>
26 #include <linux/kernel.h>
27 #include <linux/slab.h>
28 #include <linux/mtd/mtd.h>
29 #include <linux/mtd/nand.h>
30 #include <linux/mtd/partitions.h>
31 #include <linux/mtd/nand_ecc.h>
32 #include <asm/fsl_ifc.h>
34 #define FSL_IFC_V1_1_0 0x01010000
35 #define ERR_BYTE 0xFF /* Value returned for read
36 bytes when read failed */
37 #define IFC_TIMEOUT_MSECS 500 /* Maximum number of mSecs to wait
38 for IFC NAND Machine */
42 /* mtd information per set */
45 struct nand_chip chip
;
46 struct fsl_ifc_ctrl
*ctrl
;
49 int bank
; /* Chip select bank number */
50 unsigned int bufnum_mask
; /* bufnum = page & bufnum_mask */
51 u8 __iomem
*vbase
; /* Chip select base virtual address */
54 /* overview of the fsl ifc controller */
55 struct fsl_ifc_nand_ctrl
{
56 struct nand_hw_control controller
;
57 struct fsl_ifc_mtd
*chips
[FSL_IFC_BANK_COUNT
];
59 u8 __iomem
*addr
; /* Address of assigned IFC buffer */
60 unsigned int page
; /* Last page written to / read from */
61 unsigned int read_bytes
;/* Number of bytes read during command */
62 unsigned int column
; /* Saved column from SEQIN */
63 unsigned int index
; /* Pointer to next byte to 'read' */
64 unsigned int oob
; /* Non zero if operating on OOB data */
65 unsigned int eccread
; /* Non zero for a full-page ECC read */
66 unsigned int counter
; /* counter for the initializations */
67 unsigned int max_bitflips
; /* Saved during READ0 cmd */
70 static struct fsl_ifc_nand_ctrl
*ifc_nand_ctrl
;
72 /* 512-byte page with 4-bit ECC, 8-bit */
73 static struct nand_ecclayout oob_512_8bit_ecc4
= {
75 .eccpos
= {8, 9, 10, 11, 12, 13, 14, 15},
76 .oobfree
= { {0, 5}, {6, 2} },
79 /* 512-byte page with 4-bit ECC, 16-bit */
80 static struct nand_ecclayout oob_512_16bit_ecc4
= {
82 .eccpos
= {8, 9, 10, 11, 12, 13, 14, 15},
83 .oobfree
= { {2, 6}, },
86 /* 2048-byte page size with 4-bit ECC */
87 static struct nand_ecclayout oob_2048_ecc4
= {
90 8, 9, 10, 11, 12, 13, 14, 15,
91 16, 17, 18, 19, 20, 21, 22, 23,
92 24, 25, 26, 27, 28, 29, 30, 31,
93 32, 33, 34, 35, 36, 37, 38, 39,
95 .oobfree
= { {2, 6}, {40, 24} },
98 /* 4096-byte page size with 4-bit ECC */
99 static struct nand_ecclayout oob_4096_ecc4
= {
102 8, 9, 10, 11, 12, 13, 14, 15,
103 16, 17, 18, 19, 20, 21, 22, 23,
104 24, 25, 26, 27, 28, 29, 30, 31,
105 32, 33, 34, 35, 36, 37, 38, 39,
106 40, 41, 42, 43, 44, 45, 46, 47,
107 48, 49, 50, 51, 52, 53, 54, 55,
108 56, 57, 58, 59, 60, 61, 62, 63,
109 64, 65, 66, 67, 68, 69, 70, 71,
111 .oobfree
= { {2, 6}, {72, 56} },
114 /* 4096-byte page size with 8-bit ECC -- requires 218-byte OOB */
115 static struct nand_ecclayout oob_4096_ecc8
= {
118 8, 9, 10, 11, 12, 13, 14, 15,
119 16, 17, 18, 19, 20, 21, 22, 23,
120 24, 25, 26, 27, 28, 29, 30, 31,
121 32, 33, 34, 35, 36, 37, 38, 39,
122 40, 41, 42, 43, 44, 45, 46, 47,
123 48, 49, 50, 51, 52, 53, 54, 55,
124 56, 57, 58, 59, 60, 61, 62, 63,
125 64, 65, 66, 67, 68, 69, 70, 71,
126 72, 73, 74, 75, 76, 77, 78, 79,
127 80, 81, 82, 83, 84, 85, 86, 87,
128 88, 89, 90, 91, 92, 93, 94, 95,
129 96, 97, 98, 99, 100, 101, 102, 103,
130 104, 105, 106, 107, 108, 109, 110, 111,
131 112, 113, 114, 115, 116, 117, 118, 119,
132 120, 121, 122, 123, 124, 125, 126, 127,
133 128, 129, 130, 131, 132, 133, 134, 135,
135 .oobfree
= { {2, 6}, {136, 82} },
140 * Generic flash bbt descriptors
142 static u8 bbt_pattern
[] = {'B', 'b', 't', '0' };
143 static u8 mirror_pattern
[] = {'1', 't', 'b', 'B' };
145 static struct nand_bbt_descr bbt_main_descr
= {
146 .options
= NAND_BBT_LASTBLOCK
| NAND_BBT_CREATE
| NAND_BBT_WRITE
|
147 NAND_BBT_2BIT
| NAND_BBT_VERSION
,
148 .offs
= 2, /* 0 on 8-bit small page */
152 .pattern
= bbt_pattern
,
155 static struct nand_bbt_descr bbt_mirror_descr
= {
156 .options
= NAND_BBT_LASTBLOCK
| NAND_BBT_CREATE
| NAND_BBT_WRITE
|
157 NAND_BBT_2BIT
| NAND_BBT_VERSION
,
158 .offs
= 2, /* 0 on 8-bit small page */
162 .pattern
= mirror_pattern
,
166 * Set up the IFC hardware block and page address fields, and the ifc nand
167 * structure addr field to point to the correct IFC buffer in memory
169 static void set_addr(struct mtd_info
*mtd
, int column
, int page_addr
, int oob
)
171 struct nand_chip
*chip
= mtd
->priv
;
172 struct fsl_ifc_mtd
*priv
= chip
->priv
;
173 struct fsl_ifc_ctrl
*ctrl
= priv
->ctrl
;
174 struct fsl_ifc_regs __iomem
*ifc
= ctrl
->regs
;
177 ifc_nand_ctrl
->page
= page_addr
;
178 /* Program ROW0/COL0 */
179 iowrite32be(page_addr
, &ifc
->ifc_nand
.row0
);
180 iowrite32be((oob
? IFC_NAND_COL_MS
: 0) | column
, &ifc
->ifc_nand
.col0
);
182 buf_num
= page_addr
& priv
->bufnum_mask
;
184 ifc_nand_ctrl
->addr
= priv
->vbase
+ buf_num
* (mtd
->writesize
* 2);
185 ifc_nand_ctrl
->index
= column
;
187 /* for OOB data point to the second half of the buffer */
189 ifc_nand_ctrl
->index
+= mtd
->writesize
;
192 static int is_blank(struct mtd_info
*mtd
, unsigned int bufnum
)
194 struct nand_chip
*chip
= mtd
->priv
;
195 struct fsl_ifc_mtd
*priv
= chip
->priv
;
196 u8 __iomem
*addr
= priv
->vbase
+ bufnum
* (mtd
->writesize
* 2);
197 u32 __iomem
*mainarea
= (u32 __iomem
*)addr
;
198 u8 __iomem
*oob
= addr
+ mtd
->writesize
;
201 for (i
= 0; i
< mtd
->writesize
/ 4; i
++) {
202 if (__raw_readl(&mainarea
[i
]) != 0xffffffff)
206 for (i
= 0; i
< chip
->ecc
.layout
->eccbytes
; i
++) {
207 int pos
= chip
->ecc
.layout
->eccpos
[i
];
209 if (__raw_readb(&oob
[pos
]) != 0xff)
216 /* returns nonzero if entire page is blank */
217 static int check_read_ecc(struct mtd_info
*mtd
, struct fsl_ifc_ctrl
*ctrl
,
218 u32
*eccstat
, unsigned int bufnum
)
220 u32 reg
= eccstat
[bufnum
/ 4];
223 errors
= (reg
>> ((3 - bufnum
% 4) * 8)) & 15;
229 * execute IFC NAND command and wait for it to complete
231 static void fsl_ifc_run_command(struct mtd_info
*mtd
)
233 struct nand_chip
*chip
= mtd
->priv
;
234 struct fsl_ifc_mtd
*priv
= chip
->priv
;
235 struct fsl_ifc_ctrl
*ctrl
= priv
->ctrl
;
236 struct fsl_ifc_nand_ctrl
*nctrl
= ifc_nand_ctrl
;
237 struct fsl_ifc_regs __iomem
*ifc
= ctrl
->regs
;
241 /* set the chip select for NAND Transaction */
242 iowrite32be(priv
->bank
<< IFC_NAND_CSEL_SHIFT
,
243 &ifc
->ifc_nand
.nand_csel
);
246 "%s: fir0=%08x fcr0=%08x\n",
248 ioread32be(&ifc
->ifc_nand
.nand_fir0
),
249 ioread32be(&ifc
->ifc_nand
.nand_fcr0
));
253 /* start read/write seq */
254 iowrite32be(IFC_NAND_SEQ_STRT_FIR_STRT
, &ifc
->ifc_nand
.nandseq_strt
);
256 /* wait for command complete flag or timeout */
257 wait_event_timeout(ctrl
->nand_wait
, ctrl
->nand_stat
,
258 IFC_TIMEOUT_MSECS
* HZ
/1000);
260 /* ctrl->nand_stat will be updated from IRQ context */
261 if (!ctrl
->nand_stat
)
262 dev_err(priv
->dev
, "Controller is not responding\n");
263 if (ctrl
->nand_stat
& IFC_NAND_EVTER_STAT_FTOER
)
264 dev_err(priv
->dev
, "NAND Flash Timeout Error\n");
265 if (ctrl
->nand_stat
& IFC_NAND_EVTER_STAT_WPER
)
266 dev_err(priv
->dev
, "NAND Flash Write Protect Error\n");
268 nctrl
->max_bitflips
= 0;
270 if (nctrl
->eccread
) {
272 int bufnum
= nctrl
->page
& priv
->bufnum_mask
;
273 int sector
= bufnum
* chip
->ecc
.steps
;
274 int sector_end
= sector
+ chip
->ecc
.steps
- 1;
276 for (i
= sector
/ 4; i
<= sector_end
/ 4; i
++)
277 eccstat
[i
] = ioread32be(&ifc
->ifc_nand
.nand_eccstat
[i
]);
279 for (i
= sector
; i
<= sector_end
; i
++) {
280 errors
= check_read_ecc(mtd
, ctrl
, eccstat
, i
);
284 * Uncorrectable error.
285 * OK only if the whole page is blank.
287 * We disable ECCER reporting due to...
288 * erratum IFC-A002770 -- so report it now if we
289 * see an uncorrectable error in ECCSTAT.
291 if (!is_blank(mtd
, bufnum
))
293 IFC_NAND_EVTER_STAT_ECCER
;
297 mtd
->ecc_stats
.corrected
+= errors
;
298 nctrl
->max_bitflips
= max_t(unsigned int,
307 static void fsl_ifc_do_read(struct nand_chip
*chip
,
309 struct mtd_info
*mtd
)
311 struct fsl_ifc_mtd
*priv
= chip
->priv
;
312 struct fsl_ifc_ctrl
*ctrl
= priv
->ctrl
;
313 struct fsl_ifc_regs __iomem
*ifc
= ctrl
->regs
;
315 /* Program FIR/IFC_NAND_FCR0 for Small/Large page */
316 if (mtd
->writesize
> 512) {
317 iowrite32be((IFC_FIR_OP_CW0
<< IFC_NAND_FIR0_OP0_SHIFT
) |
318 (IFC_FIR_OP_CA0
<< IFC_NAND_FIR0_OP1_SHIFT
) |
319 (IFC_FIR_OP_RA0
<< IFC_NAND_FIR0_OP2_SHIFT
) |
320 (IFC_FIR_OP_CMD1
<< IFC_NAND_FIR0_OP3_SHIFT
) |
321 (IFC_FIR_OP_RBCD
<< IFC_NAND_FIR0_OP4_SHIFT
),
322 &ifc
->ifc_nand
.nand_fir0
);
323 iowrite32be(0x0, &ifc
->ifc_nand
.nand_fir1
);
325 iowrite32be((NAND_CMD_READ0
<< IFC_NAND_FCR0_CMD0_SHIFT
) |
326 (NAND_CMD_READSTART
<< IFC_NAND_FCR0_CMD1_SHIFT
),
327 &ifc
->ifc_nand
.nand_fcr0
);
329 iowrite32be((IFC_FIR_OP_CW0
<< IFC_NAND_FIR0_OP0_SHIFT
) |
330 (IFC_FIR_OP_CA0
<< IFC_NAND_FIR0_OP1_SHIFT
) |
331 (IFC_FIR_OP_RA0
<< IFC_NAND_FIR0_OP2_SHIFT
) |
332 (IFC_FIR_OP_RBCD
<< IFC_NAND_FIR0_OP3_SHIFT
),
333 &ifc
->ifc_nand
.nand_fir0
);
334 iowrite32be(0x0, &ifc
->ifc_nand
.nand_fir1
);
337 iowrite32be(NAND_CMD_READOOB
<<
338 IFC_NAND_FCR0_CMD0_SHIFT
,
339 &ifc
->ifc_nand
.nand_fcr0
);
341 iowrite32be(NAND_CMD_READ0
<<
342 IFC_NAND_FCR0_CMD0_SHIFT
,
343 &ifc
->ifc_nand
.nand_fcr0
);
347 /* cmdfunc send commands to the IFC NAND Machine */
348 static void fsl_ifc_cmdfunc(struct mtd_info
*mtd
, unsigned int command
,
349 int column
, int page_addr
) {
350 struct nand_chip
*chip
= mtd
->priv
;
351 struct fsl_ifc_mtd
*priv
= chip
->priv
;
352 struct fsl_ifc_ctrl
*ctrl
= priv
->ctrl
;
353 struct fsl_ifc_regs __iomem
*ifc
= ctrl
->regs
;
355 /* clear the read buffer */
356 ifc_nand_ctrl
->read_bytes
= 0;
357 if (command
!= NAND_CMD_PAGEPROG
)
358 ifc_nand_ctrl
->index
= 0;
361 /* READ0 read the entire buffer to use hardware ECC. */
363 iowrite32be(0, &ifc
->ifc_nand
.nand_fbcr
);
364 set_addr(mtd
, 0, page_addr
, 0);
366 ifc_nand_ctrl
->read_bytes
= mtd
->writesize
+ mtd
->oobsize
;
367 ifc_nand_ctrl
->index
+= column
;
369 if (chip
->ecc
.mode
== NAND_ECC_HW
)
370 ifc_nand_ctrl
->eccread
= 1;
372 fsl_ifc_do_read(chip
, 0, mtd
);
373 fsl_ifc_run_command(mtd
);
376 /* READOOB reads only the OOB because no ECC is performed. */
377 case NAND_CMD_READOOB
:
378 iowrite32be(mtd
->oobsize
- column
, &ifc
->ifc_nand
.nand_fbcr
);
379 set_addr(mtd
, column
, page_addr
, 1);
381 ifc_nand_ctrl
->read_bytes
= mtd
->writesize
+ mtd
->oobsize
;
383 fsl_ifc_do_read(chip
, 1, mtd
);
384 fsl_ifc_run_command(mtd
);
388 case NAND_CMD_READID
:
389 case NAND_CMD_PARAM
: {
390 int timing
= IFC_FIR_OP_RB
;
391 if (command
== NAND_CMD_PARAM
)
392 timing
= IFC_FIR_OP_RBCD
;
394 iowrite32be((IFC_FIR_OP_CW0
<< IFC_NAND_FIR0_OP0_SHIFT
) |
395 (IFC_FIR_OP_UA
<< IFC_NAND_FIR0_OP1_SHIFT
) |
396 (timing
<< IFC_NAND_FIR0_OP2_SHIFT
),
397 &ifc
->ifc_nand
.nand_fir0
);
398 iowrite32be(command
<< IFC_NAND_FCR0_CMD0_SHIFT
,
399 &ifc
->ifc_nand
.nand_fcr0
);
400 iowrite32be(column
, &ifc
->ifc_nand
.row3
);
403 * although currently it's 8 bytes for READID, we always read
404 * the maximum 256 bytes(for PARAM)
406 iowrite32be(256, &ifc
->ifc_nand
.nand_fbcr
);
407 ifc_nand_ctrl
->read_bytes
= 256;
409 set_addr(mtd
, 0, 0, 0);
410 fsl_ifc_run_command(mtd
);
414 /* ERASE1 stores the block and page address */
415 case NAND_CMD_ERASE1
:
416 set_addr(mtd
, 0, page_addr
, 0);
419 /* ERASE2 uses the block and page address from ERASE1 */
420 case NAND_CMD_ERASE2
:
421 iowrite32be((IFC_FIR_OP_CW0
<< IFC_NAND_FIR0_OP0_SHIFT
) |
422 (IFC_FIR_OP_RA0
<< IFC_NAND_FIR0_OP1_SHIFT
) |
423 (IFC_FIR_OP_CMD1
<< IFC_NAND_FIR0_OP2_SHIFT
),
424 &ifc
->ifc_nand
.nand_fir0
);
426 iowrite32be((NAND_CMD_ERASE1
<< IFC_NAND_FCR0_CMD0_SHIFT
) |
427 (NAND_CMD_ERASE2
<< IFC_NAND_FCR0_CMD1_SHIFT
),
428 &ifc
->ifc_nand
.nand_fcr0
);
430 iowrite32be(0, &ifc
->ifc_nand
.nand_fbcr
);
431 ifc_nand_ctrl
->read_bytes
= 0;
432 fsl_ifc_run_command(mtd
);
435 /* SEQIN sets up the addr buffer and all registers except the length */
436 case NAND_CMD_SEQIN
: {
438 ifc_nand_ctrl
->column
= column
;
439 ifc_nand_ctrl
->oob
= 0;
441 if (mtd
->writesize
> 512) {
443 (NAND_CMD_SEQIN
<< IFC_NAND_FCR0_CMD0_SHIFT
) |
444 (NAND_CMD_PAGEPROG
<< IFC_NAND_FCR0_CMD1_SHIFT
);
447 (IFC_FIR_OP_CW0
<< IFC_NAND_FIR0_OP0_SHIFT
) |
448 (IFC_FIR_OP_CA0
<< IFC_NAND_FIR0_OP1_SHIFT
) |
449 (IFC_FIR_OP_RA0
<< IFC_NAND_FIR0_OP2_SHIFT
) |
450 (IFC_FIR_OP_WBCD
<< IFC_NAND_FIR0_OP3_SHIFT
) |
451 (IFC_FIR_OP_CW1
<< IFC_NAND_FIR0_OP4_SHIFT
),
452 &ifc
->ifc_nand
.nand_fir0
);
454 nand_fcr0
= ((NAND_CMD_PAGEPROG
<<
455 IFC_NAND_FCR0_CMD1_SHIFT
) |
457 IFC_NAND_FCR0_CMD2_SHIFT
));
460 (IFC_FIR_OP_CW0
<< IFC_NAND_FIR0_OP0_SHIFT
) |
461 (IFC_FIR_OP_CMD2
<< IFC_NAND_FIR0_OP1_SHIFT
) |
462 (IFC_FIR_OP_CA0
<< IFC_NAND_FIR0_OP2_SHIFT
) |
463 (IFC_FIR_OP_RA0
<< IFC_NAND_FIR0_OP3_SHIFT
) |
464 (IFC_FIR_OP_WBCD
<< IFC_NAND_FIR0_OP4_SHIFT
),
465 &ifc
->ifc_nand
.nand_fir0
);
466 iowrite32be(IFC_FIR_OP_CW1
<< IFC_NAND_FIR1_OP5_SHIFT
,
467 &ifc
->ifc_nand
.nand_fir1
);
469 if (column
>= mtd
->writesize
)
471 NAND_CMD_READOOB
<< IFC_NAND_FCR0_CMD0_SHIFT
;
474 NAND_CMD_READ0
<< IFC_NAND_FCR0_CMD0_SHIFT
;
477 if (column
>= mtd
->writesize
) {
478 /* OOB area --> READOOB */
479 column
-= mtd
->writesize
;
480 ifc_nand_ctrl
->oob
= 1;
482 iowrite32be(nand_fcr0
, &ifc
->ifc_nand
.nand_fcr0
);
483 set_addr(mtd
, column
, page_addr
, ifc_nand_ctrl
->oob
);
487 /* PAGEPROG reuses all of the setup from SEQIN and adds the length */
488 case NAND_CMD_PAGEPROG
: {
489 if (ifc_nand_ctrl
->oob
) {
490 iowrite32be(ifc_nand_ctrl
->index
-
491 ifc_nand_ctrl
->column
,
492 &ifc
->ifc_nand
.nand_fbcr
);
494 iowrite32be(0, &ifc
->ifc_nand
.nand_fbcr
);
497 fsl_ifc_run_command(mtd
);
501 case NAND_CMD_STATUS
:
502 iowrite32be((IFC_FIR_OP_CW0
<< IFC_NAND_FIR0_OP0_SHIFT
) |
503 (IFC_FIR_OP_RB
<< IFC_NAND_FIR0_OP1_SHIFT
),
504 &ifc
->ifc_nand
.nand_fir0
);
505 iowrite32be(NAND_CMD_STATUS
<< IFC_NAND_FCR0_CMD0_SHIFT
,
506 &ifc
->ifc_nand
.nand_fcr0
);
507 iowrite32be(1, &ifc
->ifc_nand
.nand_fbcr
);
508 set_addr(mtd
, 0, 0, 0);
509 ifc_nand_ctrl
->read_bytes
= 1;
511 fsl_ifc_run_command(mtd
);
514 * The chip always seems to report that it is
515 * write-protected, even when it is not.
517 setbits8(ifc_nand_ctrl
->addr
, NAND_STATUS_WP
);
521 iowrite32be(IFC_FIR_OP_CW0
<< IFC_NAND_FIR0_OP0_SHIFT
,
522 &ifc
->ifc_nand
.nand_fir0
);
523 iowrite32be(NAND_CMD_RESET
<< IFC_NAND_FCR0_CMD0_SHIFT
,
524 &ifc
->ifc_nand
.nand_fcr0
);
525 fsl_ifc_run_command(mtd
);
529 dev_err(priv
->dev
, "%s: error, unsupported command 0x%x.\n",
534 static void fsl_ifc_select_chip(struct mtd_info
*mtd
, int chip
)
536 /* The hardware does not seem to support multiple
542 * Write buf to the IFC NAND Controller Data Buffer
544 static void fsl_ifc_write_buf(struct mtd_info
*mtd
, const u8
*buf
, int len
)
546 struct nand_chip
*chip
= mtd
->priv
;
547 struct fsl_ifc_mtd
*priv
= chip
->priv
;
548 unsigned int bufsize
= mtd
->writesize
+ mtd
->oobsize
;
551 dev_err(priv
->dev
, "%s: len %d bytes", __func__
, len
);
555 if ((unsigned int)len
> bufsize
- ifc_nand_ctrl
->index
) {
557 "%s: beyond end of buffer (%d requested, %u available)\n",
558 __func__
, len
, bufsize
- ifc_nand_ctrl
->index
);
559 len
= bufsize
- ifc_nand_ctrl
->index
;
562 memcpy_toio(&ifc_nand_ctrl
->addr
[ifc_nand_ctrl
->index
], buf
, len
);
563 ifc_nand_ctrl
->index
+= len
;
567 * Read a byte from either the IFC hardware buffer
568 * read function for 8-bit buswidth
570 static uint8_t fsl_ifc_read_byte(struct mtd_info
*mtd
)
572 struct nand_chip
*chip
= mtd
->priv
;
573 struct fsl_ifc_mtd
*priv
= chip
->priv
;
576 * If there are still bytes in the IFC buffer, then use the
579 if (ifc_nand_ctrl
->index
< ifc_nand_ctrl
->read_bytes
)
580 return in_8(&ifc_nand_ctrl
->addr
[ifc_nand_ctrl
->index
++]);
582 dev_err(priv
->dev
, "%s: beyond end of buffer\n", __func__
);
587 * Read two bytes from the IFC hardware buffer
588 * read function for 16-bit buswith
590 static uint8_t fsl_ifc_read_byte16(struct mtd_info
*mtd
)
592 struct nand_chip
*chip
= mtd
->priv
;
593 struct fsl_ifc_mtd
*priv
= chip
->priv
;
597 * If there are still bytes in the IFC buffer, then use the
600 if (ifc_nand_ctrl
->index
< ifc_nand_ctrl
->read_bytes
) {
601 data
= in_be16((uint16_t __iomem
*)&ifc_nand_ctrl
->
602 addr
[ifc_nand_ctrl
->index
]);
603 ifc_nand_ctrl
->index
+= 2;
604 return (uint8_t) data
;
607 dev_err(priv
->dev
, "%s: beyond end of buffer\n", __func__
);
612 * Read from the IFC Controller Data Buffer
614 static void fsl_ifc_read_buf(struct mtd_info
*mtd
, u8
*buf
, int len
)
616 struct nand_chip
*chip
= mtd
->priv
;
617 struct fsl_ifc_mtd
*priv
= chip
->priv
;
621 dev_err(priv
->dev
, "%s: len %d bytes", __func__
, len
);
625 avail
= min((unsigned int)len
,
626 ifc_nand_ctrl
->read_bytes
- ifc_nand_ctrl
->index
);
627 memcpy_fromio(buf
, &ifc_nand_ctrl
->addr
[ifc_nand_ctrl
->index
], avail
);
628 ifc_nand_ctrl
->index
+= avail
;
632 "%s: beyond end of buffer (%d requested, %d available)\n",
633 __func__
, len
, avail
);
637 * This function is called after Program and Erase Operations to
638 * check for success or failure.
640 static int fsl_ifc_wait(struct mtd_info
*mtd
, struct nand_chip
*chip
)
642 struct fsl_ifc_mtd
*priv
= chip
->priv
;
643 struct fsl_ifc_ctrl
*ctrl
= priv
->ctrl
;
644 struct fsl_ifc_regs __iomem
*ifc
= ctrl
->regs
;
647 /* Use READ_STATUS command, but wait for the device to be ready */
648 iowrite32be((IFC_FIR_OP_CW0
<< IFC_NAND_FIR0_OP0_SHIFT
) |
649 (IFC_FIR_OP_RDSTAT
<< IFC_NAND_FIR0_OP1_SHIFT
),
650 &ifc
->ifc_nand
.nand_fir0
);
651 iowrite32be(NAND_CMD_STATUS
<< IFC_NAND_FCR0_CMD0_SHIFT
,
652 &ifc
->ifc_nand
.nand_fcr0
);
653 iowrite32be(1, &ifc
->ifc_nand
.nand_fbcr
);
654 set_addr(mtd
, 0, 0, 0);
655 ifc_nand_ctrl
->read_bytes
= 1;
657 fsl_ifc_run_command(mtd
);
659 nand_fsr
= ioread32be(&ifc
->ifc_nand
.nand_fsr
);
662 * The chip always seems to report that it is
663 * write-protected, even when it is not.
665 return nand_fsr
| NAND_STATUS_WP
;
668 static int fsl_ifc_read_page(struct mtd_info
*mtd
, struct nand_chip
*chip
,
669 uint8_t *buf
, int oob_required
, int page
)
671 struct fsl_ifc_mtd
*priv
= chip
->priv
;
672 struct fsl_ifc_ctrl
*ctrl
= priv
->ctrl
;
673 struct fsl_ifc_nand_ctrl
*nctrl
= ifc_nand_ctrl
;
675 fsl_ifc_read_buf(mtd
, buf
, mtd
->writesize
);
677 fsl_ifc_read_buf(mtd
, chip
->oob_poi
, mtd
->oobsize
);
679 if (ctrl
->nand_stat
& IFC_NAND_EVTER_STAT_ECCER
)
680 dev_err(priv
->dev
, "NAND Flash ECC Uncorrectable Error\n");
682 if (ctrl
->nand_stat
!= IFC_NAND_EVTER_STAT_OPC
)
683 mtd
->ecc_stats
.failed
++;
685 return nctrl
->max_bitflips
;
688 /* ECC will be calculated automatically, and errors will be detected in
691 static int fsl_ifc_write_page(struct mtd_info
*mtd
, struct nand_chip
*chip
,
692 const uint8_t *buf
, int oob_required
)
694 fsl_ifc_write_buf(mtd
, buf
, mtd
->writesize
);
695 fsl_ifc_write_buf(mtd
, chip
->oob_poi
, mtd
->oobsize
);
700 static int fsl_ifc_chip_init_tail(struct mtd_info
*mtd
)
702 struct nand_chip
*chip
= mtd
->priv
;
703 struct fsl_ifc_mtd
*priv
= chip
->priv
;
705 dev_dbg(priv
->dev
, "%s: nand->numchips = %d\n", __func__
,
707 dev_dbg(priv
->dev
, "%s: nand->chipsize = %lld\n", __func__
,
709 dev_dbg(priv
->dev
, "%s: nand->pagemask = %8x\n", __func__
,
711 dev_dbg(priv
->dev
, "%s: nand->chip_delay = %d\n", __func__
,
713 dev_dbg(priv
->dev
, "%s: nand->badblockpos = %d\n", __func__
,
715 dev_dbg(priv
->dev
, "%s: nand->chip_shift = %d\n", __func__
,
717 dev_dbg(priv
->dev
, "%s: nand->page_shift = %d\n", __func__
,
719 dev_dbg(priv
->dev
, "%s: nand->phys_erase_shift = %d\n", __func__
,
720 chip
->phys_erase_shift
);
721 dev_dbg(priv
->dev
, "%s: nand->ecclayout = %p\n", __func__
,
723 dev_dbg(priv
->dev
, "%s: nand->ecc.mode = %d\n", __func__
,
725 dev_dbg(priv
->dev
, "%s: nand->ecc.steps = %d\n", __func__
,
727 dev_dbg(priv
->dev
, "%s: nand->ecc.bytes = %d\n", __func__
,
729 dev_dbg(priv
->dev
, "%s: nand->ecc.total = %d\n", __func__
,
731 dev_dbg(priv
->dev
, "%s: nand->ecc.layout = %p\n", __func__
,
733 dev_dbg(priv
->dev
, "%s: mtd->flags = %08x\n", __func__
, mtd
->flags
);
734 dev_dbg(priv
->dev
, "%s: mtd->size = %lld\n", __func__
, mtd
->size
);
735 dev_dbg(priv
->dev
, "%s: mtd->erasesize = %d\n", __func__
,
737 dev_dbg(priv
->dev
, "%s: mtd->writesize = %d\n", __func__
,
739 dev_dbg(priv
->dev
, "%s: mtd->oobsize = %d\n", __func__
,
745 static void fsl_ifc_sram_init(struct fsl_ifc_mtd
*priv
)
747 struct fsl_ifc_ctrl
*ctrl
= priv
->ctrl
;
748 struct fsl_ifc_regs __iomem
*ifc
= ctrl
->regs
;
749 uint32_t csor
= 0, csor_8k
= 0, csor_ext
= 0;
750 uint32_t cs
= priv
->bank
;
752 /* Save CSOR and CSOR_ext */
753 csor
= ioread32be(&ifc
->csor_cs
[cs
].csor
);
754 csor_ext
= ioread32be(&ifc
->csor_cs
[cs
].csor_ext
);
756 /* chage PageSize 8K and SpareSize 1K*/
757 csor_8k
= (csor
& ~(CSOR_NAND_PGS_MASK
)) | 0x0018C000;
758 iowrite32be(csor_8k
, &ifc
->csor_cs
[cs
].csor
);
759 iowrite32be(0x0000400, &ifc
->csor_cs
[cs
].csor_ext
);
762 iowrite32be((IFC_FIR_OP_CW0
<< IFC_NAND_FIR0_OP0_SHIFT
) |
763 (IFC_FIR_OP_UA
<< IFC_NAND_FIR0_OP1_SHIFT
) |
764 (IFC_FIR_OP_RB
<< IFC_NAND_FIR0_OP2_SHIFT
),
765 &ifc
->ifc_nand
.nand_fir0
);
766 iowrite32be(NAND_CMD_READID
<< IFC_NAND_FCR0_CMD0_SHIFT
,
767 &ifc
->ifc_nand
.nand_fcr0
);
768 iowrite32be(0x0, &ifc
->ifc_nand
.row3
);
770 iowrite32be(0x0, &ifc
->ifc_nand
.nand_fbcr
);
772 /* Program ROW0/COL0 */
773 iowrite32be(0x0, &ifc
->ifc_nand
.row0
);
774 iowrite32be(0x0, &ifc
->ifc_nand
.col0
);
776 /* set the chip select for NAND Transaction */
777 iowrite32be(cs
<< IFC_NAND_CSEL_SHIFT
, &ifc
->ifc_nand
.nand_csel
);
780 iowrite32be(IFC_NAND_SEQ_STRT_FIR_STRT
, &ifc
->ifc_nand
.nandseq_strt
);
782 /* wait for command complete flag or timeout */
783 wait_event_timeout(ctrl
->nand_wait
, ctrl
->nand_stat
,
784 IFC_TIMEOUT_MSECS
* HZ
/1000);
786 if (ctrl
->nand_stat
!= IFC_NAND_EVTER_STAT_OPC
)
787 printk(KERN_ERR
"fsl-ifc: Failed to Initialise SRAM\n");
789 /* Restore CSOR and CSOR_ext */
790 iowrite32be(csor
, &ifc
->csor_cs
[cs
].csor
);
791 iowrite32be(csor_ext
, &ifc
->csor_cs
[cs
].csor_ext
);
794 static int fsl_ifc_chip_init(struct fsl_ifc_mtd
*priv
)
796 struct fsl_ifc_ctrl
*ctrl
= priv
->ctrl
;
797 struct fsl_ifc_regs __iomem
*ifc
= ctrl
->regs
;
798 struct nand_chip
*chip
= &priv
->chip
;
799 struct nand_ecclayout
*layout
;
802 /* Fill in fsl_ifc_mtd structure */
803 priv
->mtd
.priv
= chip
;
804 priv
->mtd
.owner
= THIS_MODULE
;
806 /* fill in nand_chip structure */
807 /* set up function call table */
808 if ((ioread32be(&ifc
->cspr_cs
[priv
->bank
].cspr
)) & CSPR_PORT_SIZE_16
)
809 chip
->read_byte
= fsl_ifc_read_byte16
;
811 chip
->read_byte
= fsl_ifc_read_byte
;
813 chip
->write_buf
= fsl_ifc_write_buf
;
814 chip
->read_buf
= fsl_ifc_read_buf
;
815 chip
->select_chip
= fsl_ifc_select_chip
;
816 chip
->cmdfunc
= fsl_ifc_cmdfunc
;
817 chip
->waitfunc
= fsl_ifc_wait
;
819 chip
->bbt_td
= &bbt_main_descr
;
820 chip
->bbt_md
= &bbt_mirror_descr
;
822 iowrite32be(0x0, &ifc
->ifc_nand
.ncfgr
);
824 /* set up nand options */
825 chip
->bbt_options
= NAND_BBT_USE_FLASH
;
828 if (ioread32be(&ifc
->cspr_cs
[priv
->bank
].cspr
) & CSPR_PORT_SIZE_16
) {
829 chip
->read_byte
= fsl_ifc_read_byte16
;
830 chip
->options
|= NAND_BUSWIDTH_16
;
832 chip
->read_byte
= fsl_ifc_read_byte
;
835 chip
->controller
= &ifc_nand_ctrl
->controller
;
838 chip
->ecc
.read_page
= fsl_ifc_read_page
;
839 chip
->ecc
.write_page
= fsl_ifc_write_page
;
841 csor
= ioread32be(&ifc
->csor_cs
[priv
->bank
].csor
);
843 /* Hardware generates ECC per 512 Bytes */
844 chip
->ecc
.size
= 512;
846 chip
->ecc
.strength
= 4;
848 switch (csor
& CSOR_NAND_PGS_MASK
) {
849 case CSOR_NAND_PGS_512
:
850 if (chip
->options
& NAND_BUSWIDTH_16
) {
851 layout
= &oob_512_16bit_ecc4
;
853 layout
= &oob_512_8bit_ecc4
;
855 /* Avoid conflict with bad block marker */
856 bbt_main_descr
.offs
= 0;
857 bbt_mirror_descr
.offs
= 0;
860 priv
->bufnum_mask
= 15;
863 case CSOR_NAND_PGS_2K
:
864 layout
= &oob_2048_ecc4
;
865 priv
->bufnum_mask
= 3;
868 case CSOR_NAND_PGS_4K
:
869 if ((csor
& CSOR_NAND_ECC_MODE_MASK
) ==
870 CSOR_NAND_ECC_MODE_4
) {
871 layout
= &oob_4096_ecc4
;
873 layout
= &oob_4096_ecc8
;
874 chip
->ecc
.bytes
= 16;
877 priv
->bufnum_mask
= 1;
881 dev_err(priv
->dev
, "bad csor %#x: bad page size\n", csor
);
885 /* Must also set CSOR_NAND_ECC_ENC_EN if DEC_EN set */
886 if (csor
& CSOR_NAND_ECC_DEC_EN
) {
887 chip
->ecc
.mode
= NAND_ECC_HW
;
888 chip
->ecc
.layout
= layout
;
890 chip
->ecc
.mode
= NAND_ECC_SOFT
;
893 ver
= ioread32be(&ifc
->ifc_rev
);
894 if (ver
== FSL_IFC_V1_1_0
)
895 fsl_ifc_sram_init(priv
);
900 static int fsl_ifc_chip_remove(struct fsl_ifc_mtd
*priv
)
902 nand_release(&priv
->mtd
);
904 kfree(priv
->mtd
.name
);
907 iounmap(priv
->vbase
);
909 ifc_nand_ctrl
->chips
[priv
->bank
] = NULL
;
910 dev_set_drvdata(priv
->dev
, NULL
);
916 static int match_bank(struct fsl_ifc_regs __iomem
*ifc
, int bank
,
919 u32 cspr
= ioread32be(&ifc
->cspr_cs
[bank
].cspr
);
921 if (!(cspr
& CSPR_V
))
923 if ((cspr
& CSPR_MSEL
) != CSPR_MSEL_NAND
)
926 return (cspr
& CSPR_BA
) == convert_ifc_address(addr
);
929 static DEFINE_MUTEX(fsl_ifc_nand_mutex
);
931 static int fsl_ifc_nand_probe(struct platform_device
*dev
)
933 struct fsl_ifc_regs __iomem
*ifc
;
934 struct fsl_ifc_mtd
*priv
;
936 static const char *part_probe_types
[]
937 = { "cmdlinepart", "RedBoot", "ofpart", NULL
};
940 struct device_node
*node
= dev
->dev
.of_node
;
941 struct mtd_part_parser_data ppdata
;
943 ppdata
.of_node
= dev
->dev
.of_node
;
944 if (!fsl_ifc_ctrl_dev
|| !fsl_ifc_ctrl_dev
->regs
)
946 ifc
= fsl_ifc_ctrl_dev
->regs
;
948 /* get, allocate and map the memory resource */
949 ret
= of_address_to_resource(node
, 0, &res
);
951 dev_err(&dev
->dev
, "%s: failed to get resource\n", __func__
);
955 /* find which chip select it is connected to */
956 for (bank
= 0; bank
< FSL_IFC_BANK_COUNT
; bank
++) {
957 if (match_bank(ifc
, bank
, res
.start
))
961 if (bank
>= FSL_IFC_BANK_COUNT
) {
962 dev_err(&dev
->dev
, "%s: address did not match any chip selects\n",
967 priv
= devm_kzalloc(&dev
->dev
, sizeof(*priv
), GFP_KERNEL
);
971 mutex_lock(&fsl_ifc_nand_mutex
);
972 if (!fsl_ifc_ctrl_dev
->nand
) {
973 ifc_nand_ctrl
= kzalloc(sizeof(*ifc_nand_ctrl
), GFP_KERNEL
);
974 if (!ifc_nand_ctrl
) {
975 dev_err(&dev
->dev
, "failed to allocate memory\n");
976 mutex_unlock(&fsl_ifc_nand_mutex
);
980 ifc_nand_ctrl
->read_bytes
= 0;
981 ifc_nand_ctrl
->index
= 0;
982 ifc_nand_ctrl
->addr
= NULL
;
983 fsl_ifc_ctrl_dev
->nand
= ifc_nand_ctrl
;
985 spin_lock_init(&ifc_nand_ctrl
->controller
.lock
);
986 init_waitqueue_head(&ifc_nand_ctrl
->controller
.wq
);
988 ifc_nand_ctrl
= fsl_ifc_ctrl_dev
->nand
;
990 mutex_unlock(&fsl_ifc_nand_mutex
);
992 ifc_nand_ctrl
->chips
[bank
] = priv
;
994 priv
->ctrl
= fsl_ifc_ctrl_dev
;
995 priv
->dev
= &dev
->dev
;
997 priv
->vbase
= ioremap(res
.start
, resource_size(&res
));
999 dev_err(priv
->dev
, "%s: failed to map chip region\n", __func__
);
1004 dev_set_drvdata(priv
->dev
, priv
);
1006 iowrite32be(IFC_NAND_EVTER_EN_OPC_EN
|
1007 IFC_NAND_EVTER_EN_FTOER_EN
|
1008 IFC_NAND_EVTER_EN_WPER_EN
,
1009 &ifc
->ifc_nand
.nand_evter_en
);
1011 /* enable NAND Machine Interrupts */
1012 iowrite32be(IFC_NAND_EVTER_INTR_OPCIR_EN
|
1013 IFC_NAND_EVTER_INTR_FTOERIR_EN
|
1014 IFC_NAND_EVTER_INTR_WPERIR_EN
,
1015 &ifc
->ifc_nand
.nand_evter_intr_en
);
1016 priv
->mtd
.name
= kasprintf(GFP_KERNEL
, "%x.flash", (unsigned)res
.start
);
1017 if (!priv
->mtd
.name
) {
1022 ret
= fsl_ifc_chip_init(priv
);
1026 ret
= nand_scan_ident(&priv
->mtd
, 1, NULL
);
1030 ret
= fsl_ifc_chip_init_tail(&priv
->mtd
);
1034 ret
= nand_scan_tail(&priv
->mtd
);
1038 /* First look for RedBoot table or partitions on the command
1039 * line, these take precedence over device tree information */
1040 mtd_device_parse_register(&priv
->mtd
, part_probe_types
, &ppdata
,
1043 dev_info(priv
->dev
, "IFC NAND device at 0x%llx, bank %d\n",
1044 (unsigned long long)res
.start
, priv
->bank
);
1048 fsl_ifc_chip_remove(priv
);
1052 static int fsl_ifc_nand_remove(struct platform_device
*dev
)
1054 struct fsl_ifc_mtd
*priv
= dev_get_drvdata(&dev
->dev
);
1056 fsl_ifc_chip_remove(priv
);
1058 mutex_lock(&fsl_ifc_nand_mutex
);
1059 ifc_nand_ctrl
->counter
--;
1060 if (!ifc_nand_ctrl
->counter
) {
1061 fsl_ifc_ctrl_dev
->nand
= NULL
;
1062 kfree(ifc_nand_ctrl
);
1064 mutex_unlock(&fsl_ifc_nand_mutex
);
1069 static const struct of_device_id fsl_ifc_nand_match
[] = {
1071 .compatible
= "fsl,ifc-nand",
1076 static struct platform_driver fsl_ifc_nand_driver
= {
1078 .name
= "fsl,ifc-nand",
1079 .owner
= THIS_MODULE
,
1080 .of_match_table
= fsl_ifc_nand_match
,
1082 .probe
= fsl_ifc_nand_probe
,
1083 .remove
= fsl_ifc_nand_remove
,
1086 static int __init
fsl_ifc_nand_init(void)
1090 ret
= platform_driver_register(&fsl_ifc_nand_driver
);
1092 printk(KERN_ERR
"fsl-ifc: Failed to register platform"
1098 static void __exit
fsl_ifc_nand_exit(void)
1100 platform_driver_unregister(&fsl_ifc_nand_driver
);
1103 module_init(fsl_ifc_nand_init
);
1104 module_exit(fsl_ifc_nand_exit
);
1106 MODULE_LICENSE("GPL");
1107 MODULE_AUTHOR("Freescale");
1108 MODULE_DESCRIPTION("Freescale Integrated Flash Controller MTD NAND driver");