blob: 5b51ed3cf71dbf22fdf0e4178dbc6eedaffde6cb [file] [log] [blame]
Scott Wood76b10462008-02-06 15:36:21 -06001/* Freescale Enhanced Local Bus Controller NAND driver
2 *
3 * Copyright (c) 2006-2007 Freescale Semiconductor
4 *
5 * Authors: Nick Spence <nick.spence@freescale.com>,
6 * Scott Wood <scottwood@freescale.com>
7 *
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.
12 *
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.
17 *
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
21 */
22
23#include <linux/module.h>
24#include <linux/types.h>
25#include <linux/init.h>
26#include <linux/kernel.h>
27#include <linux/string.h>
28#include <linux/ioport.h>
29#include <linux/of_platform.h>
30#include <linux/slab.h>
31#include <linux/interrupt.h>
32
33#include <linux/mtd/mtd.h>
34#include <linux/mtd/nand.h>
35#include <linux/mtd/nand_ecc.h>
36#include <linux/mtd/partitions.h>
37
38#include <asm/io.h>
Anton Vorontsovd4a32fe2008-03-11 20:23:28 +030039#include <asm/fsl_lbc.h>
Scott Wood76b10462008-02-06 15:36:21 -060040
41#define MAX_BANKS 8
42#define ERR_BYTE 0xFF /* Value returned for read bytes when read failed */
43#define FCM_TIMEOUT_MSECS 500 /* Maximum number of mSecs to wait for FCM */
44
Scott Wood76b10462008-02-06 15:36:21 -060045struct fsl_elbc_ctrl;
46
47/* mtd information per set */
48
49struct fsl_elbc_mtd {
50 struct mtd_info mtd;
51 struct nand_chip chip;
52 struct fsl_elbc_ctrl *ctrl;
53
54 struct device *dev;
55 int bank; /* Chip select bank number */
56 u8 __iomem *vbase; /* Chip select base virtual address */
57 int page_size; /* NAND page size (0=512, 1=2048) */
58 unsigned int fmr; /* FCM Flash Mode Register value */
59};
60
61/* overview of the fsl elbc controller */
62
63struct fsl_elbc_ctrl {
64 struct nand_hw_control controller;
65 struct fsl_elbc_mtd *chips[MAX_BANKS];
66
67 /* device info */
68 struct device *dev;
Anton Vorontsovd4a32fe2008-03-11 20:23:28 +030069 struct fsl_lbc_regs __iomem *regs;
Scott Wood76b10462008-02-06 15:36:21 -060070 int irq;
71 wait_queue_head_t irq_wait;
72 unsigned int irq_status; /* status read from LTESR by irq handler */
73 u8 __iomem *addr; /* Address of assigned FCM buffer */
74 unsigned int page; /* Last page written to / read from */
75 unsigned int read_bytes; /* Number of bytes read during command */
76 unsigned int column; /* Saved column from SEQIN */
77 unsigned int index; /* Pointer to next byte to 'read' */
78 unsigned int status; /* status read from LTESR after last op */
79 unsigned int mdr; /* UPM/FCM Data Register value */
80 unsigned int use_mdr; /* Non zero if the MDR is to be set */
81 unsigned int oob; /* Non zero if operating on OOB data */
82 char *oob_poi; /* Place to write ECC after read back */
83};
84
85/* These map to the positions used by the FCM hardware ECC generator */
86
87/* Small Page FLASH with FMR[ECCM] = 0 */
88static struct nand_ecclayout fsl_elbc_oob_sp_eccm0 = {
89 .eccbytes = 3,
90 .eccpos = {6, 7, 8},
91 .oobfree = { {0, 5}, {9, 7} },
Scott Wood76b10462008-02-06 15:36:21 -060092};
93
94/* Small Page FLASH with FMR[ECCM] = 1 */
95static struct nand_ecclayout fsl_elbc_oob_sp_eccm1 = {
96 .eccbytes = 3,
97 .eccpos = {8, 9, 10},
98 .oobfree = { {0, 5}, {6, 2}, {11, 5} },
Scott Wood76b10462008-02-06 15:36:21 -060099};
100
101/* Large Page FLASH with FMR[ECCM] = 0 */
102static struct nand_ecclayout fsl_elbc_oob_lp_eccm0 = {
103 .eccbytes = 12,
104 .eccpos = {6, 7, 8, 22, 23, 24, 38, 39, 40, 54, 55, 56},
105 .oobfree = { {1, 5}, {9, 13}, {25, 13}, {41, 13}, {57, 7} },
Scott Wood76b10462008-02-06 15:36:21 -0600106};
107
108/* Large Page FLASH with FMR[ECCM] = 1 */
109static struct nand_ecclayout fsl_elbc_oob_lp_eccm1 = {
110 .eccbytes = 12,
111 .eccpos = {8, 9, 10, 24, 25, 26, 40, 41, 42, 56, 57, 58},
112 .oobfree = { {1, 7}, {11, 13}, {27, 13}, {43, 13}, {59, 5} },
Scott Wood76b10462008-02-06 15:36:21 -0600113};
114
Anton Vorontsov452db272008-06-27 23:04:04 +0400115/*
116 * fsl_elbc_oob_lp_eccm* specify that LP NAND's OOB free area starts at offset
117 * 1, so we have to adjust bad block pattern. This pattern should be used for
118 * x8 chips only. So far hardware does not support x16 chips anyway.
119 */
120static u8 scan_ff_pattern[] = { 0xff, };
121
122static struct nand_bbt_descr largepage_memorybased = {
123 .options = 0,
124 .offs = 0,
125 .len = 1,
126 .pattern = scan_ff_pattern,
127};
128
Anton Vorontsovec6e0ea2008-06-27 23:04:13 +0400129/*
130 * ELBC may use HW ECC, so that OOB offsets, that NAND core uses for bbt,
131 * interfere with ECC positions, that's why we implement our own descriptors.
132 * OOB {11, 5}, works for both SP and LP chips, with ECCM = 1 and ECCM = 0.
133 */
134static u8 bbt_pattern[] = {'B', 'b', 't', '0' };
135static u8 mirror_pattern[] = {'1', 't', 'b', 'B' };
136
137static struct nand_bbt_descr bbt_main_descr = {
138 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
139 NAND_BBT_2BIT | NAND_BBT_VERSION,
140 .offs = 11,
141 .len = 4,
142 .veroffs = 15,
143 .maxblocks = 4,
144 .pattern = bbt_pattern,
145};
146
147static struct nand_bbt_descr bbt_mirror_descr = {
148 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
149 NAND_BBT_2BIT | NAND_BBT_VERSION,
150 .offs = 11,
151 .len = 4,
152 .veroffs = 15,
153 .maxblocks = 4,
154 .pattern = mirror_pattern,
155};
156
Scott Wood76b10462008-02-06 15:36:21 -0600157/*=================================*/
158
159/*
160 * Set up the FCM hardware block and page address fields, and the fcm
161 * structure addr field to point to the correct FCM buffer in memory
162 */
163static void set_addr(struct mtd_info *mtd, int column, int page_addr, int oob)
164{
165 struct nand_chip *chip = mtd->priv;
166 struct fsl_elbc_mtd *priv = chip->priv;
167 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
Anton Vorontsovd4a32fe2008-03-11 20:23:28 +0300168 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
Scott Wood76b10462008-02-06 15:36:21 -0600169 int buf_num;
170
171 ctrl->page = page_addr;
172
173 out_be32(&lbc->fbar,
174 page_addr >> (chip->phys_erase_shift - chip->page_shift));
175
176 if (priv->page_size) {
177 out_be32(&lbc->fpar,
178 ((page_addr << FPAR_LP_PI_SHIFT) & FPAR_LP_PI) |
179 (oob ? FPAR_LP_MS : 0) | column);
180 buf_num = (page_addr & 1) << 2;
181 } else {
182 out_be32(&lbc->fpar,
183 ((page_addr << FPAR_SP_PI_SHIFT) & FPAR_SP_PI) |
184 (oob ? FPAR_SP_MS : 0) | column);
185 buf_num = page_addr & 7;
186 }
187
188 ctrl->addr = priv->vbase + buf_num * 1024;
189 ctrl->index = column;
190
191 /* for OOB data point to the second half of the buffer */
192 if (oob)
193 ctrl->index += priv->page_size ? 2048 : 512;
194
195 dev_vdbg(ctrl->dev, "set_addr: bank=%d, ctrl->addr=0x%p (0x%p), "
196 "index %x, pes %d ps %d\n",
197 buf_num, ctrl->addr, priv->vbase, ctrl->index,
198 chip->phys_erase_shift, chip->page_shift);
199}
200
201/*
202 * execute FCM command and wait for it to complete
203 */
204static int fsl_elbc_run_command(struct mtd_info *mtd)
205{
206 struct nand_chip *chip = mtd->priv;
207 struct fsl_elbc_mtd *priv = chip->priv;
208 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
Anton Vorontsovd4a32fe2008-03-11 20:23:28 +0300209 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
Scott Wood76b10462008-02-06 15:36:21 -0600210
211 /* Setup the FMR[OP] to execute without write protection */
212 out_be32(&lbc->fmr, priv->fmr | 3);
213 if (ctrl->use_mdr)
214 out_be32(&lbc->mdr, ctrl->mdr);
215
216 dev_vdbg(ctrl->dev,
217 "fsl_elbc_run_command: fmr=%08x fir=%08x fcr=%08x\n",
218 in_be32(&lbc->fmr), in_be32(&lbc->fir), in_be32(&lbc->fcr));
219 dev_vdbg(ctrl->dev,
220 "fsl_elbc_run_command: fbar=%08x fpar=%08x "
221 "fbcr=%08x bank=%d\n",
222 in_be32(&lbc->fbar), in_be32(&lbc->fpar),
223 in_be32(&lbc->fbcr), priv->bank);
224
Mike Hench1938de42008-03-19 12:40:15 -0500225 ctrl->irq_status = 0;
Scott Wood76b10462008-02-06 15:36:21 -0600226 /* execute special operation */
227 out_be32(&lbc->lsor, priv->bank);
228
229 /* wait for FCM complete flag or timeout */
Scott Wood76b10462008-02-06 15:36:21 -0600230 wait_event_timeout(ctrl->irq_wait, ctrl->irq_status,
231 FCM_TIMEOUT_MSECS * HZ/1000);
232 ctrl->status = ctrl->irq_status;
233
234 /* store mdr value in case it was needed */
235 if (ctrl->use_mdr)
236 ctrl->mdr = in_be32(&lbc->mdr);
237
238 ctrl->use_mdr = 0;
239
240 dev_vdbg(ctrl->dev,
241 "fsl_elbc_run_command: stat=%08x mdr=%08x fmr=%08x\n",
242 ctrl->status, ctrl->mdr, in_be32(&lbc->fmr));
243
244 /* returns 0 on success otherwise non-zero) */
245 return ctrl->status == LTESR_CC ? 0 : -EIO;
246}
247
248static void fsl_elbc_do_read(struct nand_chip *chip, int oob)
249{
250 struct fsl_elbc_mtd *priv = chip->priv;
251 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
Anton Vorontsovd4a32fe2008-03-11 20:23:28 +0300252 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
Scott Wood76b10462008-02-06 15:36:21 -0600253
254 if (priv->page_size) {
255 out_be32(&lbc->fir,
Scott Wood476459a2009-11-13 14:13:01 -0600256 (FIR_OP_CM0 << FIR_OP0_SHIFT) |
Scott Wood76b10462008-02-06 15:36:21 -0600257 (FIR_OP_CA << FIR_OP1_SHIFT) |
258 (FIR_OP_PA << FIR_OP2_SHIFT) |
Scott Wood476459a2009-11-13 14:13:01 -0600259 (FIR_OP_CM1 << FIR_OP3_SHIFT) |
Scott Wood76b10462008-02-06 15:36:21 -0600260 (FIR_OP_RBW << FIR_OP4_SHIFT));
261
262 out_be32(&lbc->fcr, (NAND_CMD_READ0 << FCR_CMD0_SHIFT) |
263 (NAND_CMD_READSTART << FCR_CMD1_SHIFT));
264 } else {
265 out_be32(&lbc->fir,
Scott Wood476459a2009-11-13 14:13:01 -0600266 (FIR_OP_CM0 << FIR_OP0_SHIFT) |
Scott Wood76b10462008-02-06 15:36:21 -0600267 (FIR_OP_CA << FIR_OP1_SHIFT) |
268 (FIR_OP_PA << FIR_OP2_SHIFT) |
269 (FIR_OP_RBW << FIR_OP3_SHIFT));
270
271 if (oob)
272 out_be32(&lbc->fcr, NAND_CMD_READOOB << FCR_CMD0_SHIFT);
273 else
274 out_be32(&lbc->fcr, NAND_CMD_READ0 << FCR_CMD0_SHIFT);
275 }
276}
277
278/* cmdfunc send commands to the FCM */
279static void fsl_elbc_cmdfunc(struct mtd_info *mtd, unsigned int command,
280 int column, int page_addr)
281{
282 struct nand_chip *chip = mtd->priv;
283 struct fsl_elbc_mtd *priv = chip->priv;
284 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
Anton Vorontsovd4a32fe2008-03-11 20:23:28 +0300285 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
Scott Wood76b10462008-02-06 15:36:21 -0600286
287 ctrl->use_mdr = 0;
288
289 /* clear the read buffer */
290 ctrl->read_bytes = 0;
291 if (command != NAND_CMD_PAGEPROG)
292 ctrl->index = 0;
293
294 switch (command) {
295 /* READ0 and READ1 read the entire buffer to use hardware ECC. */
296 case NAND_CMD_READ1:
297 column += 256;
298
299 /* fall-through */
300 case NAND_CMD_READ0:
301 dev_dbg(ctrl->dev,
302 "fsl_elbc_cmdfunc: NAND_CMD_READ0, page_addr:"
303 " 0x%x, column: 0x%x.\n", page_addr, column);
304
305
306 out_be32(&lbc->fbcr, 0); /* read entire page to enable ECC */
307 set_addr(mtd, 0, page_addr, 0);
308
309 ctrl->read_bytes = mtd->writesize + mtd->oobsize;
310 ctrl->index += column;
311
312 fsl_elbc_do_read(chip, 0);
313 fsl_elbc_run_command(mtd);
314 return;
315
316 /* READOOB reads only the OOB because no ECC is performed. */
317 case NAND_CMD_READOOB:
318 dev_vdbg(ctrl->dev,
319 "fsl_elbc_cmdfunc: NAND_CMD_READOOB, page_addr:"
320 " 0x%x, column: 0x%x.\n", page_addr, column);
321
322 out_be32(&lbc->fbcr, mtd->oobsize - column);
323 set_addr(mtd, column, page_addr, 1);
324
325 ctrl->read_bytes = mtd->writesize + mtd->oobsize;
326
327 fsl_elbc_do_read(chip, 1);
328 fsl_elbc_run_command(mtd);
329 return;
330
331 /* READID must read all 5 possible bytes while CEB is active */
332 case NAND_CMD_READID:
333 dev_vdbg(ctrl->dev, "fsl_elbc_cmdfunc: NAND_CMD_READID.\n");
334
Scott Wood476459a2009-11-13 14:13:01 -0600335 out_be32(&lbc->fir, (FIR_OP_CM0 << FIR_OP0_SHIFT) |
Scott Wood76b10462008-02-06 15:36:21 -0600336 (FIR_OP_UA << FIR_OP1_SHIFT) |
337 (FIR_OP_RBW << FIR_OP2_SHIFT));
338 out_be32(&lbc->fcr, NAND_CMD_READID << FCR_CMD0_SHIFT);
339 /* 5 bytes for manuf, device and exts */
340 out_be32(&lbc->fbcr, 5);
341 ctrl->read_bytes = 5;
342 ctrl->use_mdr = 1;
343 ctrl->mdr = 0;
344
345 set_addr(mtd, 0, 0, 0);
346 fsl_elbc_run_command(mtd);
347 return;
348
349 /* ERASE1 stores the block and page address */
350 case NAND_CMD_ERASE1:
351 dev_vdbg(ctrl->dev,
352 "fsl_elbc_cmdfunc: NAND_CMD_ERASE1, "
353 "page_addr: 0x%x.\n", page_addr);
354 set_addr(mtd, 0, page_addr, 0);
355 return;
356
357 /* ERASE2 uses the block and page address from ERASE1 */
358 case NAND_CMD_ERASE2:
359 dev_vdbg(ctrl->dev, "fsl_elbc_cmdfunc: NAND_CMD_ERASE2.\n");
360
361 out_be32(&lbc->fir,
Scott Wood476459a2009-11-13 14:13:01 -0600362 (FIR_OP_CM0 << FIR_OP0_SHIFT) |
Scott Wood76b10462008-02-06 15:36:21 -0600363 (FIR_OP_PA << FIR_OP1_SHIFT) |
Scott Wood476459a2009-11-13 14:13:01 -0600364 (FIR_OP_CM2 << FIR_OP2_SHIFT) |
365 (FIR_OP_CW1 << FIR_OP3_SHIFT) |
366 (FIR_OP_RS << FIR_OP4_SHIFT));
Scott Wood76b10462008-02-06 15:36:21 -0600367
368 out_be32(&lbc->fcr,
369 (NAND_CMD_ERASE1 << FCR_CMD0_SHIFT) |
Scott Wood476459a2009-11-13 14:13:01 -0600370 (NAND_CMD_STATUS << FCR_CMD1_SHIFT) |
371 (NAND_CMD_ERASE2 << FCR_CMD2_SHIFT));
Scott Wood76b10462008-02-06 15:36:21 -0600372
373 out_be32(&lbc->fbcr, 0);
374 ctrl->read_bytes = 0;
Scott Wood476459a2009-11-13 14:13:01 -0600375 ctrl->use_mdr = 1;
Scott Wood76b10462008-02-06 15:36:21 -0600376
377 fsl_elbc_run_command(mtd);
378 return;
379
380 /* SEQIN sets up the addr buffer and all registers except the length */
381 case NAND_CMD_SEQIN: {
382 __be32 fcr;
383 dev_vdbg(ctrl->dev,
384 "fsl_elbc_cmdfunc: NAND_CMD_SEQIN/PAGE_PROG, "
385 "page_addr: 0x%x, column: 0x%x.\n",
386 page_addr, column);
387
388 ctrl->column = column;
389 ctrl->oob = 0;
Scott Wood476459a2009-11-13 14:13:01 -0600390 ctrl->use_mdr = 1;
391
392 fcr = (NAND_CMD_STATUS << FCR_CMD1_SHIFT) |
393 (NAND_CMD_SEQIN << FCR_CMD2_SHIFT) |
394 (NAND_CMD_PAGEPROG << FCR_CMD3_SHIFT);
Scott Wood76b10462008-02-06 15:36:21 -0600395
Scott Wood76b10462008-02-06 15:36:21 -0600396 if (priv->page_size) {
397 out_be32(&lbc->fir,
Scott Wood476459a2009-11-13 14:13:01 -0600398 (FIR_OP_CM2 << FIR_OP0_SHIFT) |
Scott Wood76b10462008-02-06 15:36:21 -0600399 (FIR_OP_CA << FIR_OP1_SHIFT) |
400 (FIR_OP_PA << FIR_OP2_SHIFT) |
401 (FIR_OP_WB << FIR_OP3_SHIFT) |
Scott Wood476459a2009-11-13 14:13:01 -0600402 (FIR_OP_CM3 << FIR_OP4_SHIFT) |
403 (FIR_OP_CW1 << FIR_OP5_SHIFT) |
404 (FIR_OP_RS << FIR_OP6_SHIFT));
Scott Wood76b10462008-02-06 15:36:21 -0600405 } else {
406 out_be32(&lbc->fir,
Scott Wood476459a2009-11-13 14:13:01 -0600407 (FIR_OP_CM0 << FIR_OP0_SHIFT) |
Scott Wood76b10462008-02-06 15:36:21 -0600408 (FIR_OP_CM2 << FIR_OP1_SHIFT) |
409 (FIR_OP_CA << FIR_OP2_SHIFT) |
410 (FIR_OP_PA << FIR_OP3_SHIFT) |
411 (FIR_OP_WB << FIR_OP4_SHIFT) |
Scott Wood476459a2009-11-13 14:13:01 -0600412 (FIR_OP_CM3 << FIR_OP5_SHIFT) |
413 (FIR_OP_CW1 << FIR_OP6_SHIFT) |
414 (FIR_OP_RS << FIR_OP7_SHIFT));
Scott Wood76b10462008-02-06 15:36:21 -0600415
416 if (column >= mtd->writesize) {
417 /* OOB area --> READOOB */
418 column -= mtd->writesize;
419 fcr |= NAND_CMD_READOOB << FCR_CMD0_SHIFT;
420 ctrl->oob = 1;
Scott Wood476459a2009-11-13 14:13:01 -0600421 } else {
422 WARN_ON(column != 0);
Scott Wood76b10462008-02-06 15:36:21 -0600423 /* First 256 bytes --> READ0 */
424 fcr |= NAND_CMD_READ0 << FCR_CMD0_SHIFT;
Scott Wood76b10462008-02-06 15:36:21 -0600425 }
426 }
427
428 out_be32(&lbc->fcr, fcr);
429 set_addr(mtd, column, page_addr, ctrl->oob);
430 return;
431 }
432
433 /* PAGEPROG reuses all of the setup from SEQIN and adds the length */
434 case NAND_CMD_PAGEPROG: {
435 int full_page;
436 dev_vdbg(ctrl->dev,
437 "fsl_elbc_cmdfunc: NAND_CMD_PAGEPROG "
438 "writing %d bytes.\n", ctrl->index);
439
440 /* if the write did not start at 0 or is not a full page
441 * then set the exact length, otherwise use a full page
442 * write so the HW generates the ECC.
443 */
444 if (ctrl->oob || ctrl->column != 0 ||
445 ctrl->index != mtd->writesize + mtd->oobsize) {
446 out_be32(&lbc->fbcr, ctrl->index);
447 full_page = 0;
448 } else {
449 out_be32(&lbc->fbcr, 0);
450 full_page = 1;
451 }
452
453 fsl_elbc_run_command(mtd);
454
455 /* Read back the page in order to fill in the ECC for the
456 * caller. Is this really needed?
457 */
458 if (full_page && ctrl->oob_poi) {
459 out_be32(&lbc->fbcr, 3);
460 set_addr(mtd, 6, page_addr, 1);
461
462 ctrl->read_bytes = mtd->writesize + 9;
463
464 fsl_elbc_do_read(chip, 1);
465 fsl_elbc_run_command(mtd);
466
467 memcpy_fromio(ctrl->oob_poi + 6,
468 &ctrl->addr[ctrl->index], 3);
469 ctrl->index += 3;
470 }
471
472 ctrl->oob_poi = NULL;
473 return;
474 }
475
476 /* CMD_STATUS must read the status byte while CEB is active */
477 /* Note - it does not wait for the ready line */
478 case NAND_CMD_STATUS:
479 out_be32(&lbc->fir,
480 (FIR_OP_CM0 << FIR_OP0_SHIFT) |
481 (FIR_OP_RBW << FIR_OP1_SHIFT));
482 out_be32(&lbc->fcr, NAND_CMD_STATUS << FCR_CMD0_SHIFT);
483 out_be32(&lbc->fbcr, 1);
484 set_addr(mtd, 0, 0, 0);
485 ctrl->read_bytes = 1;
486
487 fsl_elbc_run_command(mtd);
488
489 /* The chip always seems to report that it is
490 * write-protected, even when it is not.
491 */
492 setbits8(ctrl->addr, NAND_STATUS_WP);
493 return;
494
495 /* RESET without waiting for the ready line */
496 case NAND_CMD_RESET:
497 dev_dbg(ctrl->dev, "fsl_elbc_cmdfunc: NAND_CMD_RESET.\n");
498 out_be32(&lbc->fir, FIR_OP_CM0 << FIR_OP0_SHIFT);
499 out_be32(&lbc->fcr, NAND_CMD_RESET << FCR_CMD0_SHIFT);
500 fsl_elbc_run_command(mtd);
501 return;
502
503 default:
504 dev_err(ctrl->dev,
505 "fsl_elbc_cmdfunc: error, unsupported command 0x%x.\n",
506 command);
507 }
508}
509
510static void fsl_elbc_select_chip(struct mtd_info *mtd, int chip)
511{
512 /* The hardware does not seem to support multiple
513 * chips per bank.
514 */
515}
516
517/*
518 * Write buf to the FCM Controller Data Buffer
519 */
520static void fsl_elbc_write_buf(struct mtd_info *mtd, const u8 *buf, int len)
521{
522 struct nand_chip *chip = mtd->priv;
523 struct fsl_elbc_mtd *priv = chip->priv;
524 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
525 unsigned int bufsize = mtd->writesize + mtd->oobsize;
526
Anton Vorontsov0ff66312008-03-28 22:10:54 +0300527 if (len <= 0) {
Scott Wood76b10462008-02-06 15:36:21 -0600528 dev_err(ctrl->dev, "write_buf of %d bytes", len);
529 ctrl->status = 0;
530 return;
531 }
532
533 if ((unsigned int)len > bufsize - ctrl->index) {
534 dev_err(ctrl->dev,
535 "write_buf beyond end of buffer "
536 "(%d requested, %u available)\n",
537 len, bufsize - ctrl->index);
538 len = bufsize - ctrl->index;
539 }
540
541 memcpy_toio(&ctrl->addr[ctrl->index], buf, len);
Anton Vorontsov0ff66312008-03-28 22:10:54 +0300542 /*
543 * This is workaround for the weird elbc hangs during nand write,
544 * Scott Wood says: "...perhaps difference in how long it takes a
545 * write to make it through the localbus compared to a write to IMMR
546 * is causing problems, and sync isn't helping for some reason."
547 * Reading back the last byte helps though.
548 */
549 in_8(&ctrl->addr[ctrl->index] + len - 1);
550
Scott Wood76b10462008-02-06 15:36:21 -0600551 ctrl->index += len;
552}
553
554/*
555 * read a byte from either the FCM hardware buffer if it has any data left
556 * otherwise issue a command to read a single byte.
557 */
558static u8 fsl_elbc_read_byte(struct mtd_info *mtd)
559{
560 struct nand_chip *chip = mtd->priv;
561 struct fsl_elbc_mtd *priv = chip->priv;
562 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
563
564 /* If there are still bytes in the FCM, then use the next byte. */
565 if (ctrl->index < ctrl->read_bytes)
566 return in_8(&ctrl->addr[ctrl->index++]);
567
568 dev_err(ctrl->dev, "read_byte beyond end of buffer\n");
569 return ERR_BYTE;
570}
571
572/*
573 * Read from the FCM Controller Data Buffer
574 */
575static void fsl_elbc_read_buf(struct mtd_info *mtd, u8 *buf, int len)
576{
577 struct nand_chip *chip = mtd->priv;
578 struct fsl_elbc_mtd *priv = chip->priv;
579 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
580 int avail;
581
582 if (len < 0)
583 return;
584
585 avail = min((unsigned int)len, ctrl->read_bytes - ctrl->index);
586 memcpy_fromio(buf, &ctrl->addr[ctrl->index], avail);
587 ctrl->index += avail;
588
589 if (len > avail)
590 dev_err(ctrl->dev,
591 "read_buf beyond end of buffer "
592 "(%d requested, %d available)\n",
593 len, avail);
594}
595
596/*
597 * Verify buffer against the FCM Controller Data Buffer
598 */
599static int fsl_elbc_verify_buf(struct mtd_info *mtd, const u_char *buf, int len)
600{
601 struct nand_chip *chip = mtd->priv;
602 struct fsl_elbc_mtd *priv = chip->priv;
603 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
604 int i;
605
606 if (len < 0) {
607 dev_err(ctrl->dev, "write_buf of %d bytes", len);
608 return -EINVAL;
609 }
610
611 if ((unsigned int)len > ctrl->read_bytes - ctrl->index) {
612 dev_err(ctrl->dev,
613 "verify_buf beyond end of buffer "
614 "(%d requested, %u available)\n",
615 len, ctrl->read_bytes - ctrl->index);
616
617 ctrl->index = ctrl->read_bytes;
618 return -EINVAL;
619 }
620
621 for (i = 0; i < len; i++)
622 if (in_8(&ctrl->addr[ctrl->index + i]) != buf[i])
623 break;
624
625 ctrl->index += len;
626 return i == len && ctrl->status == LTESR_CC ? 0 : -EIO;
627}
628
629/* This function is called after Program and Erase Operations to
630 * check for success or failure.
631 */
632static int fsl_elbc_wait(struct mtd_info *mtd, struct nand_chip *chip)
633{
634 struct fsl_elbc_mtd *priv = chip->priv;
635 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
Scott Wood76b10462008-02-06 15:36:21 -0600636
637 if (ctrl->status != LTESR_CC)
638 return NAND_STATUS_FAIL;
639
640 /* The chip always seems to report that it is
641 * write-protected, even when it is not.
642 */
Scott Wood476459a2009-11-13 14:13:01 -0600643 return (ctrl->mdr & 0xff) | NAND_STATUS_WP;
Scott Wood76b10462008-02-06 15:36:21 -0600644}
645
646static int fsl_elbc_chip_init_tail(struct mtd_info *mtd)
647{
648 struct nand_chip *chip = mtd->priv;
649 struct fsl_elbc_mtd *priv = chip->priv;
650 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
Anton Vorontsovd4a32fe2008-03-11 20:23:28 +0300651 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
Scott Wood76b10462008-02-06 15:36:21 -0600652 unsigned int al;
653
654 /* calculate FMR Address Length field */
655 al = 0;
656 if (chip->pagemask & 0xffff0000)
657 al++;
658 if (chip->pagemask & 0xff000000)
659 al++;
660
661 /* add to ECCM mode set in fsl_elbc_init */
662 priv->fmr |= (12 << FMR_CWTO_SHIFT) | /* Timeout > 12 ms */
663 (al << FMR_AL_SHIFT);
664
665 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->numchips = %d\n",
666 chip->numchips);
Stephen Rothwell4712fff2009-01-21 13:16:28 +0000667 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->chipsize = %lld\n",
Scott Wood76b10462008-02-06 15:36:21 -0600668 chip->chipsize);
669 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->pagemask = %8x\n",
670 chip->pagemask);
671 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->chip_delay = %d\n",
672 chip->chip_delay);
673 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->badblockpos = %d\n",
674 chip->badblockpos);
675 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->chip_shift = %d\n",
676 chip->chip_shift);
677 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->page_shift = %d\n",
678 chip->page_shift);
679 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->phys_erase_shift = %d\n",
680 chip->phys_erase_shift);
681 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->ecclayout = %p\n",
682 chip->ecclayout);
683 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->ecc.mode = %d\n",
684 chip->ecc.mode);
685 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->ecc.steps = %d\n",
686 chip->ecc.steps);
687 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->ecc.bytes = %d\n",
688 chip->ecc.bytes);
689 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->ecc.total = %d\n",
690 chip->ecc.total);
691 dev_dbg(ctrl->dev, "fsl_elbc_init: nand->ecc.layout = %p\n",
692 chip->ecc.layout);
693 dev_dbg(ctrl->dev, "fsl_elbc_init: mtd->flags = %08x\n", mtd->flags);
Stephen Rothwell4712fff2009-01-21 13:16:28 +0000694 dev_dbg(ctrl->dev, "fsl_elbc_init: mtd->size = %lld\n", mtd->size);
Scott Wood76b10462008-02-06 15:36:21 -0600695 dev_dbg(ctrl->dev, "fsl_elbc_init: mtd->erasesize = %d\n",
696 mtd->erasesize);
697 dev_dbg(ctrl->dev, "fsl_elbc_init: mtd->writesize = %d\n",
698 mtd->writesize);
699 dev_dbg(ctrl->dev, "fsl_elbc_init: mtd->oobsize = %d\n",
700 mtd->oobsize);
701
702 /* adjust Option Register and ECC to match Flash page size */
703 if (mtd->writesize == 512) {
704 priv->page_size = 0;
Mike Hench1938de42008-03-19 12:40:15 -0500705 clrbits32(&lbc->bank[priv->bank].or, OR_FCM_PGS);
Scott Wood76b10462008-02-06 15:36:21 -0600706 } else if (mtd->writesize == 2048) {
707 priv->page_size = 1;
708 setbits32(&lbc->bank[priv->bank].or, OR_FCM_PGS);
709 /* adjust ecc setup if needed */
710 if ((in_be32(&lbc->bank[priv->bank].br) & BR_DECC) ==
711 BR_DECC_CHK_GEN) {
712 chip->ecc.size = 512;
713 chip->ecc.layout = (priv->fmr & FMR_ECCM) ?
714 &fsl_elbc_oob_lp_eccm1 :
715 &fsl_elbc_oob_lp_eccm0;
Anton Vorontsov452db272008-06-27 23:04:04 +0400716 chip->badblock_pattern = &largepage_memorybased;
Scott Wood76b10462008-02-06 15:36:21 -0600717 }
718 } else {
719 dev_err(ctrl->dev,
720 "fsl_elbc_init: page size %d is not supported\n",
721 mtd->writesize);
722 return -1;
723 }
724
Scott Wood76b10462008-02-06 15:36:21 -0600725 return 0;
726}
727
728static int fsl_elbc_read_page(struct mtd_info *mtd,
729 struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -0700730 uint8_t *buf,
731 int page)
Scott Wood76b10462008-02-06 15:36:21 -0600732{
733 fsl_elbc_read_buf(mtd, buf, mtd->writesize);
734 fsl_elbc_read_buf(mtd, chip->oob_poi, mtd->oobsize);
735
736 if (fsl_elbc_wait(mtd, chip) & NAND_STATUS_FAIL)
737 mtd->ecc_stats.failed++;
738
739 return 0;
740}
741
742/* ECC will be calculated automatically, and errors will be detected in
743 * waitfunc.
744 */
745static void fsl_elbc_write_page(struct mtd_info *mtd,
746 struct nand_chip *chip,
747 const uint8_t *buf)
748{
749 struct fsl_elbc_mtd *priv = chip->priv;
750 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
751
752 fsl_elbc_write_buf(mtd, buf, mtd->writesize);
753 fsl_elbc_write_buf(mtd, chip->oob_poi, mtd->oobsize);
754
755 ctrl->oob_poi = chip->oob_poi;
756}
757
758static int fsl_elbc_chip_init(struct fsl_elbc_mtd *priv)
759{
760 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
Anton Vorontsovd4a32fe2008-03-11 20:23:28 +0300761 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
Scott Wood76b10462008-02-06 15:36:21 -0600762 struct nand_chip *chip = &priv->chip;
763
764 dev_dbg(priv->dev, "eLBC Set Information for bank %d\n", priv->bank);
765
766 /* Fill in fsl_elbc_mtd structure */
767 priv->mtd.priv = chip;
768 priv->mtd.owner = THIS_MODULE;
Jason Jin03ed1072008-12-09 14:32:31 +0800769
770 /* Set the ECCM according to the settings in bootloader.*/
771 priv->fmr = in_be32(&lbc->fmr) & FMR_ECCM;
Scott Wood76b10462008-02-06 15:36:21 -0600772
773 /* fill in nand_chip structure */
774 /* set up function call table */
775 chip->read_byte = fsl_elbc_read_byte;
776 chip->write_buf = fsl_elbc_write_buf;
777 chip->read_buf = fsl_elbc_read_buf;
778 chip->verify_buf = fsl_elbc_verify_buf;
779 chip->select_chip = fsl_elbc_select_chip;
780 chip->cmdfunc = fsl_elbc_cmdfunc;
781 chip->waitfunc = fsl_elbc_wait;
782
Anton Vorontsovec6e0ea2008-06-27 23:04:13 +0400783 chip->bbt_td = &bbt_main_descr;
784 chip->bbt_md = &bbt_mirror_descr;
785
Scott Wood76b10462008-02-06 15:36:21 -0600786 /* set up nand options */
Anton Vorontsovec6e0ea2008-06-27 23:04:13 +0400787 chip->options = NAND_NO_READRDY | NAND_NO_AUTOINCR |
788 NAND_USE_FLASH_BBT;
Scott Wood76b10462008-02-06 15:36:21 -0600789
790 chip->controller = &ctrl->controller;
791 chip->priv = priv;
792
793 chip->ecc.read_page = fsl_elbc_read_page;
794 chip->ecc.write_page = fsl_elbc_write_page;
795
796 /* If CS Base Register selects full hardware ECC then use it */
797 if ((in_be32(&lbc->bank[priv->bank].br) & BR_DECC) ==
798 BR_DECC_CHK_GEN) {
799 chip->ecc.mode = NAND_ECC_HW;
800 /* put in small page settings and adjust later if needed */
801 chip->ecc.layout = (priv->fmr & FMR_ECCM) ?
802 &fsl_elbc_oob_sp_eccm1 : &fsl_elbc_oob_sp_eccm0;
803 chip->ecc.size = 512;
804 chip->ecc.bytes = 3;
805 } else {
806 /* otherwise fall back to default software ECC */
807 chip->ecc.mode = NAND_ECC_SOFT;
808 }
809
810 return 0;
811}
812
813static int fsl_elbc_chip_remove(struct fsl_elbc_mtd *priv)
814{
815 struct fsl_elbc_ctrl *ctrl = priv->ctrl;
816
817 nand_release(&priv->mtd);
818
Anton Vorontsov9ebed3e2008-03-18 19:34:03 +0300819 kfree(priv->mtd.name);
820
Scott Wood76b10462008-02-06 15:36:21 -0600821 if (priv->vbase)
822 iounmap(priv->vbase);
823
824 ctrl->chips[priv->bank] = NULL;
825 kfree(priv);
826
827 return 0;
828}
829
Anton Vorontsov55679df2008-07-14 19:20:37 +0400830static int __devinit fsl_elbc_chip_probe(struct fsl_elbc_ctrl *ctrl,
831 struct device_node *node)
Scott Wood76b10462008-02-06 15:36:21 -0600832{
Anton Vorontsovd4a32fe2008-03-11 20:23:28 +0300833 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
Scott Wood76b10462008-02-06 15:36:21 -0600834 struct fsl_elbc_mtd *priv;
835 struct resource res;
836#ifdef CONFIG_MTD_PARTITIONS
837 static const char *part_probe_types[]
838 = { "cmdlinepart", "RedBoot", NULL };
839 struct mtd_partition *parts;
840#endif
841 int ret;
842 int bank;
843
844 /* get, allocate and map the memory resource */
845 ret = of_address_to_resource(node, 0, &res);
846 if (ret) {
847 dev_err(ctrl->dev, "failed to get resource\n");
848 return ret;
849 }
850
851 /* find which chip select it is connected to */
852 for (bank = 0; bank < MAX_BANKS; bank++)
853 if ((in_be32(&lbc->bank[bank].br) & BR_V) &&
854 (in_be32(&lbc->bank[bank].br) & BR_MSEL) == BR_MS_FCM &&
855 (in_be32(&lbc->bank[bank].br) &
856 in_be32(&lbc->bank[bank].or) & BR_BA)
857 == res.start)
858 break;
859
860 if (bank >= MAX_BANKS) {
861 dev_err(ctrl->dev, "address did not match any chip selects\n");
862 return -ENODEV;
863 }
864
865 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
866 if (!priv)
867 return -ENOMEM;
868
869 ctrl->chips[bank] = priv;
870 priv->bank = bank;
871 priv->ctrl = ctrl;
872 priv->dev = ctrl->dev;
873
874 priv->vbase = ioremap(res.start, res.end - res.start + 1);
875 if (!priv->vbase) {
876 dev_err(ctrl->dev, "failed to map chip region\n");
877 ret = -ENOMEM;
878 goto err;
879 }
880
akpm@linux-foundation.org650da9d2008-07-29 21:27:14 -0700881 priv->mtd.name = kasprintf(GFP_KERNEL, "%x.flash", (unsigned)res.start);
Anton Vorontsov9ebed3e2008-03-18 19:34:03 +0300882 if (!priv->mtd.name) {
883 ret = -ENOMEM;
884 goto err;
885 }
886
Scott Wood76b10462008-02-06 15:36:21 -0600887 ret = fsl_elbc_chip_init(priv);
888 if (ret)
889 goto err;
890
891 ret = nand_scan_ident(&priv->mtd, 1);
892 if (ret)
893 goto err;
894
895 ret = fsl_elbc_chip_init_tail(&priv->mtd);
896 if (ret)
897 goto err;
898
899 ret = nand_scan_tail(&priv->mtd);
900 if (ret)
901 goto err;
902
903#ifdef CONFIG_MTD_PARTITIONS
904 /* First look for RedBoot table or partitions on the command
905 * line, these take precedence over device tree information */
906 ret = parse_mtd_partitions(&priv->mtd, part_probe_types, &parts, 0);
907 if (ret < 0)
908 goto err;
909
910#ifdef CONFIG_MTD_OF_PARTS
911 if (ret == 0) {
Sebastian Andrzej Siewior69fd3a82008-10-12 16:18:36 +0200912 ret = of_mtd_parse_partitions(priv->dev, node, &parts);
Scott Wood76b10462008-02-06 15:36:21 -0600913 if (ret < 0)
914 goto err;
915 }
916#endif
917
918 if (ret > 0)
919 add_mtd_partitions(&priv->mtd, parts, ret);
920 else
921#endif
922 add_mtd_device(&priv->mtd);
923
Stephen Rothwell4712fff2009-01-21 13:16:28 +0000924 printk(KERN_INFO "eLBC NAND device at 0x%llx, bank %d\n",
925 (unsigned long long)res.start, priv->bank);
Scott Wood76b10462008-02-06 15:36:21 -0600926 return 0;
927
928err:
929 fsl_elbc_chip_remove(priv);
930 return ret;
931}
932
933static int __devinit fsl_elbc_ctrl_init(struct fsl_elbc_ctrl *ctrl)
934{
Anton Vorontsovd4a32fe2008-03-11 20:23:28 +0300935 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
Scott Wood76b10462008-02-06 15:36:21 -0600936
Scott Woodb3a70f02009-11-13 14:12:16 -0600937 /*
938 * NAND transactions can tie up the bus for a long time, so set the
939 * bus timeout to max by clearing LBCR[BMT] (highest base counter
940 * value) and setting LBCR[BMTPS] to the highest prescaler value.
941 */
942 clrsetbits_be32(&lbc->lbcr, LBCR_BMT, 15);
943
Scott Wood76b10462008-02-06 15:36:21 -0600944 /* clear event registers */
945 setbits32(&lbc->ltesr, LTESR_NAND_MASK);
946 out_be32(&lbc->lteatr, 0);
947
948 /* Enable interrupts for any detected events */
949 out_be32(&lbc->lteir, LTESR_NAND_MASK);
950
951 ctrl->read_bytes = 0;
952 ctrl->index = 0;
953 ctrl->addr = NULL;
954
955 return 0;
956}
957
Anton Vorontsovaa835702008-06-06 18:59:40 +0400958static int fsl_elbc_ctrl_remove(struct of_device *ofdev)
Scott Wood76b10462008-02-06 15:36:21 -0600959{
960 struct fsl_elbc_ctrl *ctrl = dev_get_drvdata(&ofdev->dev);
961 int i;
962
963 for (i = 0; i < MAX_BANKS; i++)
964 if (ctrl->chips[i])
965 fsl_elbc_chip_remove(ctrl->chips[i]);
966
967 if (ctrl->irq)
968 free_irq(ctrl->irq, ctrl);
969
970 if (ctrl->regs)
971 iounmap(ctrl->regs);
972
973 dev_set_drvdata(&ofdev->dev, NULL);
974 kfree(ctrl);
975 return 0;
976}
977
978/* NOTE: This interrupt is also used to report other localbus events,
979 * such as transaction errors on other chipselects. If we want to
980 * capture those, we'll need to move the IRQ code into a shared
981 * LBC driver.
982 */
983
984static irqreturn_t fsl_elbc_ctrl_irq(int irqno, void *data)
985{
986 struct fsl_elbc_ctrl *ctrl = data;
Anton Vorontsovd4a32fe2008-03-11 20:23:28 +0300987 struct fsl_lbc_regs __iomem *lbc = ctrl->regs;
Scott Wood76b10462008-02-06 15:36:21 -0600988 __be32 status = in_be32(&lbc->ltesr) & LTESR_NAND_MASK;
989
990 if (status) {
991 out_be32(&lbc->ltesr, status);
992 out_be32(&lbc->lteatr, 0);
993
994 ctrl->irq_status = status;
995 smp_wmb();
996 wake_up(&ctrl->irq_wait);
997
998 return IRQ_HANDLED;
999 }
1000
1001 return IRQ_NONE;
1002}
1003
1004/* fsl_elbc_ctrl_probe
1005 *
1006 * called by device layer when it finds a device matching
1007 * one our driver can handled. This code allocates all of
1008 * the resources needed for the controller only. The
1009 * resources for the NAND banks themselves are allocated
1010 * in the chip probe function.
1011*/
1012
1013static int __devinit fsl_elbc_ctrl_probe(struct of_device *ofdev,
1014 const struct of_device_id *match)
1015{
1016 struct device_node *child;
1017 struct fsl_elbc_ctrl *ctrl;
1018 int ret;
1019
1020 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
1021 if (!ctrl)
1022 return -ENOMEM;
1023
1024 dev_set_drvdata(&ofdev->dev, ctrl);
1025
1026 spin_lock_init(&ctrl->controller.lock);
1027 init_waitqueue_head(&ctrl->controller.wq);
1028 init_waitqueue_head(&ctrl->irq_wait);
1029
1030 ctrl->regs = of_iomap(ofdev->node, 0);
1031 if (!ctrl->regs) {
1032 dev_err(&ofdev->dev, "failed to get memory region\n");
1033 ret = -ENODEV;
1034 goto err;
1035 }
1036
1037 ctrl->irq = of_irq_to_resource(ofdev->node, 0, NULL);
1038 if (ctrl->irq == NO_IRQ) {
1039 dev_err(&ofdev->dev, "failed to get irq resource\n");
1040 ret = -ENODEV;
1041 goto err;
1042 }
1043
1044 ctrl->dev = &ofdev->dev;
1045
1046 ret = fsl_elbc_ctrl_init(ctrl);
1047 if (ret < 0)
1048 goto err;
1049
1050 ret = request_irq(ctrl->irq, fsl_elbc_ctrl_irq, 0, "fsl-elbc", ctrl);
1051 if (ret != 0) {
1052 dev_err(&ofdev->dev, "failed to install irq (%d)\n",
1053 ctrl->irq);
1054 ret = ctrl->irq;
1055 goto err;
1056 }
1057
1058 for_each_child_of_node(ofdev->node, child)
1059 if (of_device_is_compatible(child, "fsl,elbc-fcm-nand"))
1060 fsl_elbc_chip_probe(ctrl, child);
1061
1062 return 0;
1063
1064err:
1065 fsl_elbc_ctrl_remove(ofdev);
1066 return ret;
1067}
1068
1069static const struct of_device_id fsl_elbc_match[] = {
1070 {
1071 .compatible = "fsl,elbc",
1072 },
1073 {}
1074};
1075
1076static struct of_platform_driver fsl_elbc_ctrl_driver = {
1077 .driver = {
1078 .name = "fsl-elbc",
1079 },
1080 .match_table = fsl_elbc_match,
1081 .probe = fsl_elbc_ctrl_probe,
Anton Vorontsovaa835702008-06-06 18:59:40 +04001082 .remove = fsl_elbc_ctrl_remove,
Scott Wood76b10462008-02-06 15:36:21 -06001083};
1084
1085static int __init fsl_elbc_init(void)
1086{
1087 return of_register_platform_driver(&fsl_elbc_ctrl_driver);
1088}
1089
1090static void __exit fsl_elbc_exit(void)
1091{
1092 of_unregister_platform_driver(&fsl_elbc_ctrl_driver);
1093}
1094
1095module_init(fsl_elbc_init);
1096module_exit(fsl_elbc_exit);
1097
1098MODULE_LICENSE("GPL");
1099MODULE_AUTHOR("Freescale");
1100MODULE_DESCRIPTION("Freescale Enhanced Local Bus Controller MTD NAND driver");