blob: 87ebb4e5b0c3b97949050ec10ff2a62b081c9bac [file] [log] [blame]
David Woodhousec9ac5972006-11-30 08:17:38 +00001/*
David Woodhousefbad5692006-10-22 15:09:33 +01002 * Driver for One Laptop Per Child ‘CAFÉ’ controller, aka Marvell 88ALP01
David Woodhouse5467fb02006-10-06 15:36:29 +01003 *
David Woodhouse514fca42008-09-03 09:47:17 +01004 * The data sheet for this device can be found at:
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02005 * http://wiki.laptop.org/go/Datasheets
David Woodhouse514fca42008-09-03 09:47:17 +01006 *
David Woodhouse5467fb02006-10-06 15:36:29 +01007 * Copyright © 2006 Red Hat, Inc.
8 * Copyright © 2006 David Woodhouse <dwmw2@infradead.org>
9 */
10
David Woodhouse8dd851d2006-10-20 02:11:40 +010011#define DEBUG
David Woodhouse5467fb02006-10-06 15:36:29 +010012
13#include <linux/device.h>
14#undef DEBUG
15#include <linux/mtd/mtd.h>
16#include <linux/mtd/nand.h>
David Woodhouse9c37f332007-10-28 21:56:39 -040017#include <linux/mtd/partitions.h>
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +020018#include <linux/rslib.h>
David Woodhouse5467fb02006-10-06 15:36:29 +010019#include <linux/pci.h>
20#include <linux/delay.h>
21#include <linux/interrupt.h>
Al Viroa1274302007-01-30 13:23:30 +000022#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
David Woodhouse5467fb02006-10-06 15:36:29 +010024#include <asm/io.h>
25
26#define CAFE_NAND_CTRL1 0x00
27#define CAFE_NAND_CTRL2 0x04
28#define CAFE_NAND_CTRL3 0x08
29#define CAFE_NAND_STATUS 0x0c
30#define CAFE_NAND_IRQ 0x10
31#define CAFE_NAND_IRQ_MASK 0x14
32#define CAFE_NAND_DATA_LEN 0x18
33#define CAFE_NAND_ADDR1 0x1c
34#define CAFE_NAND_ADDR2 0x20
35#define CAFE_NAND_TIMING1 0x24
36#define CAFE_NAND_TIMING2 0x28
37#define CAFE_NAND_TIMING3 0x2c
38#define CAFE_NAND_NONMEM 0x30
David Woodhouse04459d72006-10-22 02:18:48 +010039#define CAFE_NAND_ECC_RESULT 0x3C
David Woodhousefbad5692006-10-22 15:09:33 +010040#define CAFE_NAND_DMA_CTRL 0x40
41#define CAFE_NAND_DMA_ADDR0 0x44
42#define CAFE_NAND_DMA_ADDR1 0x48
David Woodhouse04459d72006-10-22 02:18:48 +010043#define CAFE_NAND_ECC_SYN01 0x50
44#define CAFE_NAND_ECC_SYN23 0x54
45#define CAFE_NAND_ECC_SYN45 0x58
46#define CAFE_NAND_ECC_SYN67 0x5c
David Woodhouse5467fb02006-10-06 15:36:29 +010047#define CAFE_NAND_READ_DATA 0x1000
48#define CAFE_NAND_WRITE_DATA 0x2000
49
David Woodhouse195a2532006-10-31 12:30:11 +080050#define CAFE_GLOBAL_CTRL 0x3004
51#define CAFE_GLOBAL_IRQ 0x3008
52#define CAFE_GLOBAL_IRQ_MASK 0x300c
53#define CAFE_NAND_RESET 0x3034
54
David Woodhouse048c37b2007-05-02 12:26:37 +010055/* Missing from the datasheet: bit 19 of CTRL1 sets CE0 vs. CE1 */
56#define CTRL1_CHIPSELECT (1<<19)
57
David Woodhouse5467fb02006-10-06 15:36:29 +010058struct cafe_priv {
59 struct nand_chip nand;
David Woodhouse9c37f332007-10-28 21:56:39 -040060 struct mtd_partition *parts;
David Woodhouse5467fb02006-10-06 15:36:29 +010061 struct pci_dev *pdev;
62 void __iomem *mmio;
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +020063 struct rs_control *rs;
David Woodhouse5467fb02006-10-06 15:36:29 +010064 uint32_t ctl1;
65 uint32_t ctl2;
66 int datalen;
67 int nr_data;
68 int data_pos;
69 int page_addr;
70 dma_addr_t dmaaddr;
71 unsigned char *dmabuf;
David Woodhouse5467fb02006-10-06 15:36:29 +010072};
73
David Woodhouseb478c772006-10-27 14:50:04 +030074static int usedma = 1;
David Woodhouse5467fb02006-10-06 15:36:29 +010075module_param(usedma, int, 0644);
76
David Woodhouse8dd851d2006-10-20 02:11:40 +010077static int skipbbt = 0;
78module_param(skipbbt, int, 0644);
79
80static int debug = 0;
81module_param(debug, int, 0644);
82
David Woodhousebe8444b2006-10-31 12:36:04 +080083static int regdebug = 0;
84module_param(regdebug, int, 0644);
85
David Woodhouseb478c772006-10-27 14:50:04 +030086static int checkecc = 1;
David Woodhouse470b0a92006-10-23 14:29:04 +010087module_param(checkecc, int, 0644);
88
Al Viro64a6f952007-10-14 19:35:30 +010089static unsigned int numtimings;
David Woodhouse527a4f42007-01-23 15:35:27 +080090static int timing[3];
91module_param_array(timing, int, &numtimings, 0644);
David Woodhouseb478c772006-10-27 14:50:04 +030092
Philip Rakity68874412008-10-08 16:08:20 -070093static const char *part_probes[] = { "cmdlinepart", "RedBoot", NULL };
David Woodhouse9c37f332007-10-28 21:56:39 -040094
David Woodhouse04459d72006-10-22 02:18:48 +010095/* Hrm. Why isn't this already conditional on something in the struct device? */
David Woodhouse8dd851d2006-10-20 02:11:40 +010096#define cafe_dev_dbg(dev, args...) do { if (debug) dev_dbg(dev, ##args); } while(0)
97
David Woodhouse195a2532006-10-31 12:30:11 +080098/* Make it easier to switch to PIO if we need to */
99#define cafe_readl(cafe, addr) readl((cafe)->mmio + CAFE_##addr)
100#define cafe_writel(cafe, datum, addr) writel(datum, (cafe)->mmio + CAFE_##addr)
David Woodhouse8dd851d2006-10-20 02:11:40 +0100101
David Woodhouse5467fb02006-10-06 15:36:29 +0100102static int cafe_device_ready(struct mtd_info *mtd)
103{
104 struct cafe_priv *cafe = mtd->priv;
David Woodhouse195a2532006-10-31 12:30:11 +0800105 int result = !!(cafe_readl(cafe, NAND_STATUS) | 0x40000000);
106 uint32_t irqs = cafe_readl(cafe, NAND_IRQ);
David Woodhousefbad5692006-10-22 15:09:33 +0100107
David Woodhouse195a2532006-10-31 12:30:11 +0800108 cafe_writel(cafe, irqs, NAND_IRQ);
David Woodhousefbad5692006-10-22 15:09:33 +0100109
David Woodhouse8dd851d2006-10-20 02:11:40 +0100110 cafe_dev_dbg(&cafe->pdev->dev, "NAND device is%s ready, IRQ %x (%x) (%x,%x)\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800111 result?"":" not", irqs, cafe_readl(cafe, NAND_IRQ),
112 cafe_readl(cafe, GLOBAL_IRQ), cafe_readl(cafe, GLOBAL_IRQ_MASK));
David Woodhousefbad5692006-10-22 15:09:33 +0100113
David Woodhouse5467fb02006-10-06 15:36:29 +0100114 return result;
115}
116
117
118static void cafe_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
119{
120 struct cafe_priv *cafe = mtd->priv;
121
122 if (usedma)
123 memcpy(cafe->dmabuf + cafe->datalen, buf, len);
124 else
125 memcpy_toio(cafe->mmio + CAFE_NAND_WRITE_DATA + cafe->datalen, buf, len);
David Woodhousefbad5692006-10-22 15:09:33 +0100126
David Woodhouse5467fb02006-10-06 15:36:29 +0100127 cafe->datalen += len;
128
David Woodhouse8dd851d2006-10-20 02:11:40 +0100129 cafe_dev_dbg(&cafe->pdev->dev, "Copy 0x%x bytes to write buffer. datalen 0x%x\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100130 len, cafe->datalen);
131}
132
133static void cafe_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
134{
135 struct cafe_priv *cafe = mtd->priv;
136
137 if (usedma)
138 memcpy(buf, cafe->dmabuf + cafe->datalen, len);
139 else
140 memcpy_fromio(buf, cafe->mmio + CAFE_NAND_READ_DATA + cafe->datalen, len);
141
David Woodhouse8dd851d2006-10-20 02:11:40 +0100142 cafe_dev_dbg(&cafe->pdev->dev, "Copy 0x%x bytes from position 0x%x in read buffer.\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100143 len, cafe->datalen);
144 cafe->datalen += len;
145}
146
147static uint8_t cafe_read_byte(struct mtd_info *mtd)
148{
149 struct cafe_priv *cafe = mtd->priv;
150 uint8_t d;
151
152 cafe_read_buf(mtd, &d, 1);
David Woodhouse8dd851d2006-10-20 02:11:40 +0100153 cafe_dev_dbg(&cafe->pdev->dev, "Read %02x\n", d);
David Woodhouse5467fb02006-10-06 15:36:29 +0100154
155 return d;
156}
157
158static void cafe_nand_cmdfunc(struct mtd_info *mtd, unsigned command,
159 int column, int page_addr)
160{
161 struct cafe_priv *cafe = mtd->priv;
162 int adrbytes = 0;
163 uint32_t ctl1;
164 uint32_t doneint = 0x80000000;
David Woodhouse5467fb02006-10-06 15:36:29 +0100165
David Woodhouse8dd851d2006-10-20 02:11:40 +0100166 cafe_dev_dbg(&cafe->pdev->dev, "cmdfunc %02x, 0x%x, 0x%x\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100167 command, column, page_addr);
168
169 if (command == NAND_CMD_ERASE2 || command == NAND_CMD_PAGEPROG) {
170 /* Second half of a command we already calculated */
David Woodhouse195a2532006-10-31 12:30:11 +0800171 cafe_writel(cafe, cafe->ctl2 | 0x100 | command, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100172 ctl1 = cafe->ctl1;
David Woodhousecad40652006-11-01 08:19:20 +0800173 cafe->ctl2 &= ~(1<<30);
David Woodhouse8dd851d2006-10-20 02:11:40 +0100174 cafe_dev_dbg(&cafe->pdev->dev, "Continue command, ctl1 %08x, #data %d\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100175 cafe->ctl1, cafe->nr_data);
176 goto do_command;
177 }
178 /* Reset ECC engine */
David Woodhouse195a2532006-10-31 12:30:11 +0800179 cafe_writel(cafe, 0, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100180
181 /* Emulate NAND_CMD_READOOB on large-page chips */
182 if (mtd->writesize > 512 &&
183 command == NAND_CMD_READOOB) {
184 column += mtd->writesize;
185 command = NAND_CMD_READ0;
186 }
187
188 /* FIXME: Do we need to send read command before sending data
189 for small-page chips, to position the buffer correctly? */
190
191 if (column != -1) {
David Woodhouse195a2532006-10-31 12:30:11 +0800192 cafe_writel(cafe, column, NAND_ADDR1);
David Woodhouse5467fb02006-10-06 15:36:29 +0100193 adrbytes = 2;
194 if (page_addr != -1)
195 goto write_adr2;
196 } else if (page_addr != -1) {
David Woodhouse195a2532006-10-31 12:30:11 +0800197 cafe_writel(cafe, page_addr & 0xffff, NAND_ADDR1);
David Woodhouse5467fb02006-10-06 15:36:29 +0100198 page_addr >>= 16;
199 write_adr2:
David Woodhouse195a2532006-10-31 12:30:11 +0800200 cafe_writel(cafe, page_addr, NAND_ADDR2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100201 adrbytes += 2;
202 if (mtd->size > mtd->writesize << 16)
203 adrbytes++;
204 }
205
206 cafe->data_pos = cafe->datalen = 0;
207
David Woodhouse048c37b2007-05-02 12:26:37 +0100208 /* Set command valid bit, mask in the chip select bit */
209 ctl1 = 0x80000000 | command | (cafe->ctl1 & CTRL1_CHIPSELECT);
David Woodhouse5467fb02006-10-06 15:36:29 +0100210
211 /* Set RD or WR bits as appropriate */
212 if (command == NAND_CMD_READID || command == NAND_CMD_STATUS) {
213 ctl1 |= (1<<26); /* rd */
214 /* Always 5 bytes, for now */
David Woodhouse8dd851d2006-10-20 02:11:40 +0100215 cafe->datalen = 4;
David Woodhouse5467fb02006-10-06 15:36:29 +0100216 /* And one address cycle -- even for STATUS, since the controller doesn't work without */
217 adrbytes = 1;
218 } else if (command == NAND_CMD_READ0 || command == NAND_CMD_READ1 ||
219 command == NAND_CMD_READOOB || command == NAND_CMD_RNDOUT) {
220 ctl1 |= 1<<26; /* rd */
221 /* For now, assume just read to end of page */
222 cafe->datalen = mtd->writesize + mtd->oobsize - column;
223 } else if (command == NAND_CMD_SEQIN)
224 ctl1 |= 1<<25; /* wr */
225
226 /* Set number of address bytes */
227 if (adrbytes)
228 ctl1 |= ((adrbytes-1)|8) << 27;
229
230 if (command == NAND_CMD_SEQIN || command == NAND_CMD_ERASE1) {
David Woodhousec9ac5972006-11-30 08:17:38 +0000231 /* Ignore the first command of a pair; the hardware
David Woodhouse5467fb02006-10-06 15:36:29 +0100232 deals with them both at once, later */
233 cafe->ctl1 = ctl1;
David Woodhouse8dd851d2006-10-20 02:11:40 +0100234 cafe_dev_dbg(&cafe->pdev->dev, "Setup for delayed command, ctl1 %08x, dlen %x\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100235 cafe->ctl1, cafe->datalen);
236 return;
237 }
238 /* RNDOUT and READ0 commands need a following byte */
239 if (command == NAND_CMD_RNDOUT)
David Woodhouse195a2532006-10-31 12:30:11 +0800240 cafe_writel(cafe, cafe->ctl2 | 0x100 | NAND_CMD_RNDOUTSTART, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100241 else if (command == NAND_CMD_READ0 && mtd->writesize > 512)
David Woodhouse195a2532006-10-31 12:30:11 +0800242 cafe_writel(cafe, cafe->ctl2 | 0x100 | NAND_CMD_READSTART, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100243
244 do_command:
David Woodhousec9ac5972006-11-30 08:17:38 +0000245 cafe_dev_dbg(&cafe->pdev->dev, "dlen %x, ctl1 %x, ctl2 %x\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800246 cafe->datalen, ctl1, cafe_readl(cafe, NAND_CTRL2));
David Woodhousefbad5692006-10-22 15:09:33 +0100247
David Woodhouse5467fb02006-10-06 15:36:29 +0100248 /* NB: The datasheet lies -- we really should be subtracting 1 here */
David Woodhouse195a2532006-10-31 12:30:11 +0800249 cafe_writel(cafe, cafe->datalen, NAND_DATA_LEN);
250 cafe_writel(cafe, 0x90000000, NAND_IRQ);
David Woodhouse5467fb02006-10-06 15:36:29 +0100251 if (usedma && (ctl1 & (3<<25))) {
252 uint32_t dmactl = 0xc0000000 + cafe->datalen;
253 /* If WR or RD bits set, set up DMA */
254 if (ctl1 & (1<<26)) {
255 /* It's a read */
256 dmactl |= (1<<29);
257 /* ... so it's done when the DMA is done, not just
258 the command. */
259 doneint = 0x10000000;
260 }
David Woodhouse195a2532006-10-31 12:30:11 +0800261 cafe_writel(cafe, dmactl, NAND_DMA_CTRL);
David Woodhouse5467fb02006-10-06 15:36:29 +0100262 }
David Woodhouse5467fb02006-10-06 15:36:29 +0100263 cafe->datalen = 0;
264
David Woodhousebe8444b2006-10-31 12:36:04 +0800265 if (unlikely(regdebug)) {
266 int i;
267 printk("About to write command %08x to register 0\n", ctl1);
268 for (i=4; i< 0x5c; i+=4)
269 printk("Register %x: %08x\n", i, readl(cafe->mmio + i));
David Woodhousefbad5692006-10-22 15:09:33 +0100270 }
David Woodhousebe8444b2006-10-31 12:36:04 +0800271
David Woodhouse195a2532006-10-31 12:30:11 +0800272 cafe_writel(cafe, ctl1, NAND_CTRL1);
David Woodhouse5467fb02006-10-06 15:36:29 +0100273 /* Apply this short delay always to ensure that we do wait tWB in
274 * any case on any machine. */
275 ndelay(100);
276
277 if (1) {
Andrew Morton2a7295b22007-02-17 16:02:11 -0800278 int c;
David Woodhouse5467fb02006-10-06 15:36:29 +0100279 uint32_t irqs;
280
Andrew Morton2a7295b22007-02-17 16:02:11 -0800281 for (c = 500000; c != 0; c--) {
David Woodhouse195a2532006-10-31 12:30:11 +0800282 irqs = cafe_readl(cafe, NAND_IRQ);
David Woodhouse5467fb02006-10-06 15:36:29 +0100283 if (irqs & doneint)
284 break;
285 udelay(1);
David Woodhouse8dd851d2006-10-20 02:11:40 +0100286 if (!(c % 100000))
287 cafe_dev_dbg(&cafe->pdev->dev, "Wait for ready, IRQ %x\n", irqs);
David Woodhouse5467fb02006-10-06 15:36:29 +0100288 cpu_relax();
289 }
David Woodhouse195a2532006-10-31 12:30:11 +0800290 cafe_writel(cafe, doneint, NAND_IRQ);
David Woodhousea0207272006-10-28 17:08:38 +0300291 cafe_dev_dbg(&cafe->pdev->dev, "Command %x completed after %d usec, irqs %x (%x)\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800292 command, 500000-c, irqs, cafe_readl(cafe, NAND_IRQ));
David Woodhouse5467fb02006-10-06 15:36:29 +0100293 }
294
David Woodhousecad40652006-11-01 08:19:20 +0800295 WARN_ON(cafe->ctl2 & (1<<30));
David Woodhouse5467fb02006-10-06 15:36:29 +0100296
297 switch (command) {
298
299 case NAND_CMD_CACHEDPROG:
300 case NAND_CMD_PAGEPROG:
301 case NAND_CMD_ERASE1:
302 case NAND_CMD_ERASE2:
303 case NAND_CMD_SEQIN:
304 case NAND_CMD_RNDIN:
305 case NAND_CMD_STATUS:
306 case NAND_CMD_DEPLETE1:
307 case NAND_CMD_RNDOUT:
308 case NAND_CMD_STATUS_ERROR:
309 case NAND_CMD_STATUS_ERROR0:
310 case NAND_CMD_STATUS_ERROR1:
311 case NAND_CMD_STATUS_ERROR2:
312 case NAND_CMD_STATUS_ERROR3:
David Woodhouse195a2532006-10-31 12:30:11 +0800313 cafe_writel(cafe, cafe->ctl2, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100314 return;
315 }
316 nand_wait_ready(mtd);
David Woodhouse195a2532006-10-31 12:30:11 +0800317 cafe_writel(cafe, cafe->ctl2, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100318}
319
320static void cafe_select_chip(struct mtd_info *mtd, int chipnr)
321{
David Woodhouse048c37b2007-05-02 12:26:37 +0100322 struct cafe_priv *cafe = mtd->priv;
323
324 cafe_dev_dbg(&cafe->pdev->dev, "select_chip %d\n", chipnr);
325
326 /* Mask the appropriate bit into the stored value of ctl1
327 which will be used by cafe_nand_cmdfunc() */
328 if (chipnr)
329 cafe->ctl1 |= CTRL1_CHIPSELECT;
330 else
331 cafe->ctl1 &= ~CTRL1_CHIPSELECT;
David Woodhouse5467fb02006-10-06 15:36:29 +0100332}
David Woodhousefbad5692006-10-22 15:09:33 +0100333
Alan Cox67cd7242009-04-22 15:02:23 +0100334static irqreturn_t cafe_nand_interrupt(int irq, void *id)
David Woodhouse5467fb02006-10-06 15:36:29 +0100335{
336 struct mtd_info *mtd = id;
337 struct cafe_priv *cafe = mtd->priv;
David Woodhouse195a2532006-10-31 12:30:11 +0800338 uint32_t irqs = cafe_readl(cafe, NAND_IRQ);
339 cafe_writel(cafe, irqs & ~0x90000000, NAND_IRQ);
David Woodhouse5467fb02006-10-06 15:36:29 +0100340 if (!irqs)
341 return IRQ_NONE;
342
David Woodhouse195a2532006-10-31 12:30:11 +0800343 cafe_dev_dbg(&cafe->pdev->dev, "irq, bits %x (%x)\n", irqs, cafe_readl(cafe, NAND_IRQ));
David Woodhouse5467fb02006-10-06 15:36:29 +0100344 return IRQ_HANDLED;
345}
346
347static void cafe_nand_bug(struct mtd_info *mtd)
348{
349 BUG();
350}
351
352static int cafe_nand_write_oob(struct mtd_info *mtd,
353 struct nand_chip *chip, int page)
354{
355 int status = 0;
356
David Woodhouse5467fb02006-10-06 15:36:29 +0100357 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
358 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
359 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
360 status = chip->waitfunc(mtd, chip);
361
362 return status & NAND_STATUS_FAIL ? -EIO : 0;
363}
364
365/* Don't use -- use nand_read_oob_std for now */
366static int cafe_nand_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
367 int page, int sndcmd)
368{
369 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
370 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
371 return 1;
372}
373/**
374 * cafe_nand_read_page_syndrome - {REPLACABLE] hardware ecc syndrom based page read
375 * @mtd: mtd info structure
376 * @chip: nand chip info structure
377 * @buf: buffer to store read data
378 *
379 * The hw generator calculates the error syndrome automatically. Therefor
380 * we need a special oob layout and handling.
381 */
382static int cafe_nand_read_page(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -0700383 uint8_t *buf, int page)
David Woodhouse5467fb02006-10-06 15:36:29 +0100384{
385 struct cafe_priv *cafe = mtd->priv;
386
David Woodhousefbad5692006-10-22 15:09:33 +0100387 cafe_dev_dbg(&cafe->pdev->dev, "ECC result %08x SYN1,2 %08x\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800388 cafe_readl(cafe, NAND_ECC_RESULT),
389 cafe_readl(cafe, NAND_ECC_SYN01));
David Woodhouse5467fb02006-10-06 15:36:29 +0100390
391 chip->read_buf(mtd, buf, mtd->writesize);
392 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
393
David Woodhouse195a2532006-10-31 12:30:11 +0800394 if (checkecc && cafe_readl(cafe, NAND_ECC_RESULT) & (1<<18)) {
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200395 unsigned short syn[8], pat[4];
396 int pos[4];
397 u8 *oob = chip->oob_poi;
398 int i, n;
David Woodhouse04459d72006-10-22 02:18:48 +0100399
400 for (i=0; i<8; i+=2) {
David Woodhouse195a2532006-10-31 12:30:11 +0800401 uint32_t tmp = cafe_readl(cafe, NAND_ECC_SYN01 + (i*2));
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200402 syn[i] = cafe->rs->index_of[tmp & 0xfff];
403 syn[i+1] = cafe->rs->index_of[(tmp >> 16) & 0xfff];
David Woodhousec9ac5972006-11-30 08:17:38 +0000404 }
David Woodhouse04459d72006-10-22 02:18:48 +0100405
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200406 n = decode_rs16(cafe->rs, NULL, NULL, 1367, syn, 0, pos, 0,
407 pat);
408
409 for (i = 0; i < n; i++) {
410 int p = pos[i];
411
412 /* The 12-bit symbols are mapped to bytes here */
413
414 if (p > 1374) {
415 /* out of range */
416 n = -1374;
417 } else if (p == 0) {
418 /* high four bits do not correspond to data */
419 if (pat[i] > 0xff)
420 n = -2048;
421 else
422 buf[0] ^= pat[i];
423 } else if (p == 1365) {
424 buf[2047] ^= pat[i] >> 4;
425 oob[0] ^= pat[i] << 4;
426 } else if (p > 1365) {
427 if ((p & 1) == 1) {
428 oob[3*p/2 - 2048] ^= pat[i] >> 4;
429 oob[3*p/2 - 2047] ^= pat[i] << 4;
430 } else {
431 oob[3*p/2 - 2049] ^= pat[i] >> 8;
432 oob[3*p/2 - 2048] ^= pat[i];
433 }
434 } else if ((p & 1) == 1) {
435 buf[3*p/2] ^= pat[i] >> 4;
436 buf[3*p/2 + 1] ^= pat[i] << 4;
437 } else {
438 buf[3*p/2 - 1] ^= pat[i] >> 8;
439 buf[3*p/2] ^= pat[i];
440 }
441 }
442
443 if (n < 0) {
David Woodhousebe8444b2006-10-31 12:36:04 +0800444 dev_dbg(&cafe->pdev->dev, "Failed to correct ECC at %08x\n",
445 cafe_readl(cafe, NAND_ADDR2) * 2048);
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200446 for (i = 0; i < 0x5c; i += 4)
David Woodhousebe8444b2006-10-31 12:36:04 +0800447 printk("Register %x: %08x\n", i, readl(cafe->mmio + i));
David Woodhouse04459d72006-10-22 02:18:48 +0100448 mtd->ecc_stats.failed++;
449 } else {
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200450 dev_dbg(&cafe->pdev->dev, "Corrected %d symbol errors\n", n);
451 mtd->ecc_stats.corrected += n;
David Woodhouse04459d72006-10-22 02:18:48 +0100452 }
453 }
454
David Woodhouse5467fb02006-10-06 15:36:29 +0100455 return 0;
456}
457
David Woodhouse8dd851d2006-10-20 02:11:40 +0100458static struct nand_ecclayout cafe_oobinfo_2048 = {
459 .eccbytes = 14,
460 .eccpos = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13},
461 .oobfree = {{14, 50}}
462};
463
David Woodhousec9ac5972006-11-30 08:17:38 +0000464/* Ick. The BBT code really ought to be able to work this bit out
David Woodhousefbad5692006-10-22 15:09:33 +0100465 for itself from the above, at least for the 2KiB case */
466static uint8_t cafe_bbt_pattern_2048[] = { 'B', 'b', 't', '0' };
467static uint8_t cafe_mirror_pattern_2048[] = { '1', 't', 'b', 'B' };
468
469static uint8_t cafe_bbt_pattern_512[] = { 0xBB };
470static uint8_t cafe_mirror_pattern_512[] = { 0xBC };
471
David Woodhouse8dd851d2006-10-20 02:11:40 +0100472
473static struct nand_bbt_descr cafe_bbt_main_descr_2048 = {
474 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
David Woodhouse048c37b2007-05-02 12:26:37 +0100475 | NAND_BBT_2BIT | NAND_BBT_VERSION,
David Woodhouse8dd851d2006-10-20 02:11:40 +0100476 .offs = 14,
477 .len = 4,
478 .veroffs = 18,
479 .maxblocks = 4,
David Woodhousefbad5692006-10-22 15:09:33 +0100480 .pattern = cafe_bbt_pattern_2048
David Woodhouse8dd851d2006-10-20 02:11:40 +0100481};
482
483static struct nand_bbt_descr cafe_bbt_mirror_descr_2048 = {
484 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
David Woodhouse048c37b2007-05-02 12:26:37 +0100485 | NAND_BBT_2BIT | NAND_BBT_VERSION,
David Woodhouse8dd851d2006-10-20 02:11:40 +0100486 .offs = 14,
487 .len = 4,
488 .veroffs = 18,
489 .maxblocks = 4,
David Woodhousefbad5692006-10-22 15:09:33 +0100490 .pattern = cafe_mirror_pattern_2048
David Woodhouse8dd851d2006-10-20 02:11:40 +0100491};
492
493static struct nand_ecclayout cafe_oobinfo_512 = {
494 .eccbytes = 14,
495 .eccpos = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13},
496 .oobfree = {{14, 2}}
497};
498
David Woodhousefbad5692006-10-22 15:09:33 +0100499static struct nand_bbt_descr cafe_bbt_main_descr_512 = {
500 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
David Woodhouse048c37b2007-05-02 12:26:37 +0100501 | NAND_BBT_2BIT | NAND_BBT_VERSION,
David Woodhousefbad5692006-10-22 15:09:33 +0100502 .offs = 14,
503 .len = 1,
504 .veroffs = 15,
505 .maxblocks = 4,
506 .pattern = cafe_bbt_pattern_512
507};
508
509static struct nand_bbt_descr cafe_bbt_mirror_descr_512 = {
510 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
David Woodhouse048c37b2007-05-02 12:26:37 +0100511 | NAND_BBT_2BIT | NAND_BBT_VERSION,
David Woodhousefbad5692006-10-22 15:09:33 +0100512 .offs = 14,
513 .len = 1,
514 .veroffs = 15,
515 .maxblocks = 4,
516 .pattern = cafe_mirror_pattern_512
517};
518
519
David Woodhouse5467fb02006-10-06 15:36:29 +0100520static void cafe_nand_write_page_lowlevel(struct mtd_info *mtd,
521 struct nand_chip *chip, const uint8_t *buf)
522{
523 struct cafe_priv *cafe = mtd->priv;
524
David Woodhouse5467fb02006-10-06 15:36:29 +0100525 chip->write_buf(mtd, buf, mtd->writesize);
David Woodhouse8dd851d2006-10-20 02:11:40 +0100526 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
David Woodhouse5467fb02006-10-06 15:36:29 +0100527
528 /* Set up ECC autogeneration */
David Woodhousecad40652006-11-01 08:19:20 +0800529 cafe->ctl2 |= (1<<30);
David Woodhouse5467fb02006-10-06 15:36:29 +0100530}
531
532static int cafe_nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
533 const uint8_t *buf, int page, int cached, int raw)
534{
535 int status;
536
David Woodhouse5467fb02006-10-06 15:36:29 +0100537 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
538
539 if (unlikely(raw))
540 chip->ecc.write_page_raw(mtd, chip, buf);
541 else
542 chip->ecc.write_page(mtd, chip, buf);
543
544 /*
545 * Cached progamming disabled for now, Not sure if its worth the
546 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s)
547 */
548 cached = 0;
549
550 if (!cached || !(chip->options & NAND_CACHEPRG)) {
551
552 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
553 status = chip->waitfunc(mtd, chip);
554 /*
555 * See if operation failed and additional status checks are
556 * available
557 */
558 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
559 status = chip->errstat(mtd, chip, FL_WRITING, status,
560 page);
561
562 if (status & NAND_STATUS_FAIL)
563 return -EIO;
564 } else {
565 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
566 status = chip->waitfunc(mtd, chip);
567 }
568
569#ifdef CONFIG_MTD_NAND_VERIFY_WRITE
570 /* Send command to read back the data */
571 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
572
573 if (chip->verify_buf(mtd, buf, mtd->writesize))
574 return -EIO;
575#endif
576 return 0;
577}
578
David Woodhouse8dd851d2006-10-20 02:11:40 +0100579static int cafe_nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
580{
581 return 0;
582}
David Woodhouse5467fb02006-10-06 15:36:29 +0100583
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200584/* F_2[X]/(X**6+X+1) */
585static unsigned short __devinit gf64_mul(u8 a, u8 b)
586{
587 u8 c;
588 unsigned int i;
589
590 c = 0;
591 for (i = 0; i < 6; i++) {
592 if (a & 1)
593 c ^= b;
594 a >>= 1;
595 b <<= 1;
596 if ((b & 0x40) != 0)
597 b ^= 0x43;
598 }
599
600 return c;
601}
602
603/* F_64[X]/(X**2+X+A**-1) with A the generator of F_64[X] */
604static u16 __devinit gf4096_mul(u16 a, u16 b)
605{
606 u8 ah, al, bh, bl, ch, cl;
607
608 ah = a >> 6;
609 al = a & 0x3f;
610 bh = b >> 6;
611 bl = b & 0x3f;
612
613 ch = gf64_mul(ah ^ al, bh ^ bl) ^ gf64_mul(al, bl);
614 cl = gf64_mul(gf64_mul(ah, bh), 0x21) ^ gf64_mul(al, bl);
615
616 return (ch << 6) ^ cl;
617}
618
619static int __devinit cafe_mul(int x)
620{
621 if (x == 0)
622 return 1;
623 return gf4096_mul(x, 0xe01);
624}
625
David Woodhouse5467fb02006-10-06 15:36:29 +0100626static int __devinit cafe_nand_probe(struct pci_dev *pdev,
627 const struct pci_device_id *ent)
628{
629 struct mtd_info *mtd;
630 struct cafe_priv *cafe;
631 uint32_t ctrl;
632 int err = 0;
Toralf Förster437d0d22008-05-26 20:35:46 +0200633 struct mtd_partition *parts;
634 int nr_parts;
David Woodhouse5467fb02006-10-06 15:36:29 +0100635
David Woodhouse06ed24e2007-10-06 14:44:12 -0400636 /* Very old versions shared the same PCI ident for all three
637 functions on the chip. Verify the class too... */
638 if ((pdev->class >> 8) != PCI_CLASS_MEMORY_FLASH)
639 return -ENODEV;
640
David Woodhouse5467fb02006-10-06 15:36:29 +0100641 err = pci_enable_device(pdev);
642 if (err)
643 return err;
644
645 pci_set_master(pdev);
646
647 mtd = kzalloc(sizeof(*mtd) + sizeof(struct cafe_priv), GFP_KERNEL);
648 if (!mtd) {
649 dev_warn(&pdev->dev, "failed to alloc mtd_info\n");
650 return -ENOMEM;
651 }
652 cafe = (void *)(&mtd[1]);
653
David Woodhousec451c7c2009-04-04 15:27:45 +0100654 mtd->dev.parent = &pdev->dev;
David Woodhouse5467fb02006-10-06 15:36:29 +0100655 mtd->priv = cafe;
656 mtd->owner = THIS_MODULE;
657
658 cafe->pdev = pdev;
659 cafe->mmio = pci_iomap(pdev, 0, 0);
660 if (!cafe->mmio) {
661 dev_warn(&pdev->dev, "failed to iomap\n");
662 err = -ENOMEM;
663 goto out_free_mtd;
664 }
665 cafe->dmabuf = dma_alloc_coherent(&cafe->pdev->dev, 2112 + sizeof(struct nand_buffers),
666 &cafe->dmaaddr, GFP_KERNEL);
667 if (!cafe->dmabuf) {
668 err = -ENOMEM;
669 goto out_ior;
670 }
671 cafe->nand.buffers = (void *)cafe->dmabuf + 2112;
672
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200673 cafe->rs = init_rs_non_canonical(12, &cafe_mul, 0, 1, 8);
674 if (!cafe->rs) {
675 err = -ENOMEM;
676 goto out_ior;
677 }
678
David Woodhouse5467fb02006-10-06 15:36:29 +0100679 cafe->nand.cmdfunc = cafe_nand_cmdfunc;
680 cafe->nand.dev_ready = cafe_device_ready;
681 cafe->nand.read_byte = cafe_read_byte;
682 cafe->nand.read_buf = cafe_read_buf;
683 cafe->nand.write_buf = cafe_write_buf;
684 cafe->nand.select_chip = cafe_select_chip;
685
686 cafe->nand.chip_delay = 0;
687
688 /* Enable the following for a flash based bad block table */
689 cafe->nand.options = NAND_USE_FLASH_BBT | NAND_NO_AUTOINCR | NAND_OWN_BUFFERS;
David Woodhouse8dd851d2006-10-20 02:11:40 +0100690
691 if (skipbbt) {
692 cafe->nand.options |= NAND_SKIP_BBTSCAN;
693 cafe->nand.block_bad = cafe_nand_block_bad;
694 }
David Woodhousec9ac5972006-11-30 08:17:38 +0000695
David Woodhouse527a4f42007-01-23 15:35:27 +0800696 if (numtimings && numtimings != 3) {
697 dev_warn(&cafe->pdev->dev, "%d timing register values ignored; precisely three are required\n", numtimings);
698 }
699
700 if (numtimings == 3) {
David Woodhouse527a4f42007-01-23 15:35:27 +0800701 cafe_dev_dbg(&cafe->pdev->dev, "Using provided timings (%08x %08x %08x)\n",
David Woodhouse8e5368a2007-03-23 10:40:04 +0000702 timing[0], timing[1], timing[2]);
David Woodhouse527a4f42007-01-23 15:35:27 +0800703 } else {
David Woodhouse8e5368a2007-03-23 10:40:04 +0000704 timing[0] = cafe_readl(cafe, NAND_TIMING1);
705 timing[1] = cafe_readl(cafe, NAND_TIMING2);
706 timing[2] = cafe_readl(cafe, NAND_TIMING3);
David Woodhouse527a4f42007-01-23 15:35:27 +0800707
David Woodhouse8e5368a2007-03-23 10:40:04 +0000708 if (timing[0] | timing[1] | timing[2]) {
709 cafe_dev_dbg(&cafe->pdev->dev, "Timing registers already set (%08x %08x %08x)\n",
710 timing[0], timing[1], timing[2]);
David Woodhouse527a4f42007-01-23 15:35:27 +0800711 } else {
712 dev_warn(&cafe->pdev->dev, "Timing registers unset; using most conservative defaults\n");
David Woodhouse8e5368a2007-03-23 10:40:04 +0000713 timing[0] = timing[1] = timing[2] = 0xffffffff;
David Woodhouse527a4f42007-01-23 15:35:27 +0800714 }
715 }
716
David Woodhousedcc41bc2006-10-27 09:55:34 +0300717 /* Start off by resetting the NAND controller completely */
David Woodhouse195a2532006-10-31 12:30:11 +0800718 cafe_writel(cafe, 1, NAND_RESET);
719 cafe_writel(cafe, 0, NAND_RESET);
720
David Woodhouse8e5368a2007-03-23 10:40:04 +0000721 cafe_writel(cafe, timing[0], NAND_TIMING1);
722 cafe_writel(cafe, timing[1], NAND_TIMING2);
723 cafe_writel(cafe, timing[2], NAND_TIMING3);
David Woodhousedcc41bc2006-10-27 09:55:34 +0300724
David Woodhouse195a2532006-10-31 12:30:11 +0800725 cafe_writel(cafe, 0xffffffff, NAND_IRQ_MASK);
Thomas Gleixner2db63462007-02-14 00:33:20 -0800726 err = request_irq(pdev->irq, &cafe_nand_interrupt, IRQF_SHARED,
727 "CAFE NAND", mtd);
David Woodhouse5467fb02006-10-06 15:36:29 +0100728 if (err) {
729 dev_warn(&pdev->dev, "Could not register IRQ %d\n", pdev->irq);
David Woodhouse5467fb02006-10-06 15:36:29 +0100730 goto out_free_dma;
731 }
David Woodhousef7c37d72007-01-23 15:44:10 +0800732
David Woodhouse5467fb02006-10-06 15:36:29 +0100733 /* Disable master reset, enable NAND clock */
David Woodhouse195a2532006-10-31 12:30:11 +0800734 ctrl = cafe_readl(cafe, GLOBAL_CTRL);
David Woodhouse5467fb02006-10-06 15:36:29 +0100735 ctrl &= 0xffffeff0;
736 ctrl |= 0x00007000;
David Woodhouse195a2532006-10-31 12:30:11 +0800737 cafe_writel(cafe, ctrl | 0x05, GLOBAL_CTRL);
738 cafe_writel(cafe, ctrl | 0x0a, GLOBAL_CTRL);
739 cafe_writel(cafe, 0, NAND_DMA_CTRL);
David Woodhouse5467fb02006-10-06 15:36:29 +0100740
David Woodhouse195a2532006-10-31 12:30:11 +0800741 cafe_writel(cafe, 0x7006, GLOBAL_CTRL);
742 cafe_writel(cafe, 0x700a, GLOBAL_CTRL);
David Woodhouse5467fb02006-10-06 15:36:29 +0100743
744 /* Set up DMA address */
David Woodhouse195a2532006-10-31 12:30:11 +0800745 cafe_writel(cafe, cafe->dmaaddr & 0xffffffff, NAND_DMA_ADDR0);
David Woodhouse5467fb02006-10-06 15:36:29 +0100746 if (sizeof(cafe->dmaaddr) > 4)
David Woodhousefbad5692006-10-22 15:09:33 +0100747 /* Shift in two parts to shut the compiler up */
David Woodhouse195a2532006-10-31 12:30:11 +0800748 cafe_writel(cafe, (cafe->dmaaddr >> 16) >> 16, NAND_DMA_ADDR1);
David Woodhouse5467fb02006-10-06 15:36:29 +0100749 else
David Woodhouse195a2532006-10-31 12:30:11 +0800750 cafe_writel(cafe, 0, NAND_DMA_ADDR1);
David Woodhousefbad5692006-10-22 15:09:33 +0100751
David Woodhouse8dd851d2006-10-20 02:11:40 +0100752 cafe_dev_dbg(&cafe->pdev->dev, "Set DMA address to %x (virt %p)\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800753 cafe_readl(cafe, NAND_DMA_ADDR0), cafe->dmabuf);
David Woodhouse5467fb02006-10-06 15:36:29 +0100754
755 /* Enable NAND IRQ in global IRQ mask register */
David Woodhouse195a2532006-10-31 12:30:11 +0800756 cafe_writel(cafe, 0x80000007, GLOBAL_IRQ_MASK);
David Woodhouse8dd851d2006-10-20 02:11:40 +0100757 cafe_dev_dbg(&cafe->pdev->dev, "Control %x, IRQ mask %x\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800758 cafe_readl(cafe, GLOBAL_CTRL), cafe_readl(cafe, GLOBAL_IRQ_MASK));
David Woodhousef7c37d72007-01-23 15:44:10 +0800759
760 /* Scan to find existence of the device */
David Woodhouse5e81e882010-02-26 18:32:56 +0000761 if (nand_scan_ident(mtd, 2, NULL)) {
David Woodhouse5467fb02006-10-06 15:36:29 +0100762 err = -ENXIO;
763 goto out_irq;
764 }
765
766 cafe->ctl2 = 1<<27; /* Reed-Solomon ECC */
767 if (mtd->writesize == 2048)
768 cafe->ctl2 |= 1<<29; /* 2KiB page size */
769
770 /* Set up ECC according to the type of chip we found */
David Woodhousefbad5692006-10-22 15:09:33 +0100771 if (mtd->writesize == 2048) {
David Woodhouse8dd851d2006-10-20 02:11:40 +0100772 cafe->nand.ecc.layout = &cafe_oobinfo_2048;
773 cafe->nand.bbt_td = &cafe_bbt_main_descr_2048;
774 cafe->nand.bbt_md = &cafe_bbt_mirror_descr_2048;
David Woodhousefbad5692006-10-22 15:09:33 +0100775 } else if (mtd->writesize == 512) {
776 cafe->nand.ecc.layout = &cafe_oobinfo_512;
777 cafe->nand.bbt_td = &cafe_bbt_main_descr_512;
778 cafe->nand.bbt_md = &cafe_bbt_mirror_descr_512;
David Woodhouse5467fb02006-10-06 15:36:29 +0100779 } else {
David Woodhousefbad5692006-10-22 15:09:33 +0100780 printk(KERN_WARNING "Unexpected NAND flash writesize %d. Aborting\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100781 mtd->writesize);
David Woodhousefbad5692006-10-22 15:09:33 +0100782 goto out_irq;
David Woodhouse5467fb02006-10-06 15:36:29 +0100783 }
David Woodhousefbad5692006-10-22 15:09:33 +0100784 cafe->nand.ecc.mode = NAND_ECC_HW_SYNDROME;
785 cafe->nand.ecc.size = mtd->writesize;
786 cafe->nand.ecc.bytes = 14;
787 cafe->nand.ecc.hwctl = (void *)cafe_nand_bug;
788 cafe->nand.ecc.calculate = (void *)cafe_nand_bug;
789 cafe->nand.ecc.correct = (void *)cafe_nand_bug;
790 cafe->nand.write_page = cafe_nand_write_page;
791 cafe->nand.ecc.write_page = cafe_nand_write_page_lowlevel;
792 cafe->nand.ecc.write_oob = cafe_nand_write_oob;
793 cafe->nand.ecc.read_page = cafe_nand_read_page;
794 cafe->nand.ecc.read_oob = cafe_nand_read_oob;
David Woodhouse5467fb02006-10-06 15:36:29 +0100795
796 err = nand_scan_tail(mtd);
797 if (err)
798 goto out_irq;
799
David Woodhouse5467fb02006-10-06 15:36:29 +0100800 pci_set_drvdata(pdev, mtd);
David Woodhouse9c37f332007-10-28 21:56:39 -0400801
802 /* We register the whole device first, separate from the partitions */
Jamie Iles46720bb2011-05-23 10:23:16 +0100803 mtd_device_register(mtd, NULL, 0);
David Woodhouse9c37f332007-10-28 21:56:39 -0400804
Philip Rakity68874412008-10-08 16:08:20 -0700805#ifdef CONFIG_MTD_CMDLINE_PARTS
806 mtd->name = "cafe_nand";
807#endif
David Woodhouse9c37f332007-10-28 21:56:39 -0400808 nr_parts = parse_mtd_partitions(mtd, part_probes, &parts, 0);
809 if (nr_parts > 0) {
810 cafe->parts = parts;
Philip Rakity68874412008-10-08 16:08:20 -0700811 dev_info(&cafe->pdev->dev, "%d partitions found\n", nr_parts);
Jamie Iles46720bb2011-05-23 10:23:16 +0100812 mtd_device_register(mtd, parts, nr_parts);
David Woodhouse9c37f332007-10-28 21:56:39 -0400813 }
David Woodhouse5467fb02006-10-06 15:36:29 +0100814 goto out;
815
816 out_irq:
817 /* Disable NAND IRQ in global IRQ mask register */
David Woodhouse195a2532006-10-31 12:30:11 +0800818 cafe_writel(cafe, ~1 & cafe_readl(cafe, GLOBAL_IRQ_MASK), GLOBAL_IRQ_MASK);
David Woodhouse5467fb02006-10-06 15:36:29 +0100819 free_irq(pdev->irq, mtd);
820 out_free_dma:
821 dma_free_coherent(&cafe->pdev->dev, 2112, cafe->dmabuf, cafe->dmaaddr);
822 out_ior:
823 pci_iounmap(pdev, cafe->mmio);
824 out_free_mtd:
825 kfree(mtd);
826 out:
827 return err;
828}
829
830static void __devexit cafe_nand_remove(struct pci_dev *pdev)
831{
832 struct mtd_info *mtd = pci_get_drvdata(pdev);
833 struct cafe_priv *cafe = mtd->priv;
834
David Woodhouse5467fb02006-10-06 15:36:29 +0100835 /* Disable NAND IRQ in global IRQ mask register */
David Woodhouse195a2532006-10-31 12:30:11 +0800836 cafe_writel(cafe, ~1 & cafe_readl(cafe, GLOBAL_IRQ_MASK), GLOBAL_IRQ_MASK);
David Woodhouse5467fb02006-10-06 15:36:29 +0100837 free_irq(pdev->irq, mtd);
838 nand_release(mtd);
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200839 free_rs(cafe->rs);
David Woodhouse5467fb02006-10-06 15:36:29 +0100840 pci_iounmap(pdev, cafe->mmio);
841 dma_free_coherent(&cafe->pdev->dev, 2112, cafe->dmabuf, cafe->dmaaddr);
842 kfree(mtd);
843}
844
Márton Németh377ace02010-01-09 15:10:34 +0100845static const struct pci_device_id cafe_nand_tbl[] = {
David Woodhouse514fca42008-09-03 09:47:17 +0100846 { PCI_VENDOR_ID_MARVELL, PCI_DEVICE_ID_MARVELL_88ALP01_NAND,
847 PCI_ANY_ID, PCI_ANY_ID },
David Woodhouse06ed24e2007-10-06 14:44:12 -0400848 { }
David Woodhouse5467fb02006-10-06 15:36:29 +0100849};
850
851MODULE_DEVICE_TABLE(pci, cafe_nand_tbl);
852
David Woodhouse1fcf8ce2007-10-06 14:59:32 -0400853static int cafe_nand_resume(struct pci_dev *pdev)
854{
855 uint32_t ctrl;
856 struct mtd_info *mtd = pci_get_drvdata(pdev);
857 struct cafe_priv *cafe = mtd->priv;
858
859 /* Start off by resetting the NAND controller completely */
860 cafe_writel(cafe, 1, NAND_RESET);
861 cafe_writel(cafe, 0, NAND_RESET);
862 cafe_writel(cafe, 0xffffffff, NAND_IRQ_MASK);
863
864 /* Restore timing configuration */
865 cafe_writel(cafe, timing[0], NAND_TIMING1);
866 cafe_writel(cafe, timing[1], NAND_TIMING2);
867 cafe_writel(cafe, timing[2], NAND_TIMING3);
868
869 /* Disable master reset, enable NAND clock */
870 ctrl = cafe_readl(cafe, GLOBAL_CTRL);
871 ctrl &= 0xffffeff0;
872 ctrl |= 0x00007000;
873 cafe_writel(cafe, ctrl | 0x05, GLOBAL_CTRL);
874 cafe_writel(cafe, ctrl | 0x0a, GLOBAL_CTRL);
875 cafe_writel(cafe, 0, NAND_DMA_CTRL);
876 cafe_writel(cafe, 0x7006, GLOBAL_CTRL);
877 cafe_writel(cafe, 0x700a, GLOBAL_CTRL);
878
879 /* Set up DMA address */
880 cafe_writel(cafe, cafe->dmaaddr & 0xffffffff, NAND_DMA_ADDR0);
881 if (sizeof(cafe->dmaaddr) > 4)
882 /* Shift in two parts to shut the compiler up */
883 cafe_writel(cafe, (cafe->dmaaddr >> 16) >> 16, NAND_DMA_ADDR1);
884 else
885 cafe_writel(cafe, 0, NAND_DMA_ADDR1);
886
887 /* Enable NAND IRQ in global IRQ mask register */
888 cafe_writel(cafe, 0x80000007, GLOBAL_IRQ_MASK);
889 return 0;
890}
891
David Woodhouse5467fb02006-10-06 15:36:29 +0100892static struct pci_driver cafe_nand_pci_driver = {
893 .name = "CAFÉ NAND",
894 .id_table = cafe_nand_tbl,
895 .probe = cafe_nand_probe,
896 .remove = __devexit_p(cafe_nand_remove),
David Woodhouse5467fb02006-10-06 15:36:29 +0100897 .resume = cafe_nand_resume,
David Woodhouse5467fb02006-10-06 15:36:29 +0100898};
899
Peter Huewe627df232009-06-11 02:23:33 +0200900static int __init cafe_nand_init(void)
David Woodhouse5467fb02006-10-06 15:36:29 +0100901{
902 return pci_register_driver(&cafe_nand_pci_driver);
903}
904
Peter Huewe627df232009-06-11 02:23:33 +0200905static void __exit cafe_nand_exit(void)
David Woodhouse5467fb02006-10-06 15:36:29 +0100906{
907 pci_unregister_driver(&cafe_nand_pci_driver);
908}
909module_init(cafe_nand_init);
910module_exit(cafe_nand_exit);
911
912MODULE_LICENSE("GPL");
913MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
David Woodhousef7c37d72007-01-23 15:44:10 +0800914MODULE_DESCRIPTION("NAND flash driver for OLPC CAFÉ chip");