]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/mtd/nand/raw/cafe_nand.c
mtd: rawnand: brcmnand: convert driver to nand_scan()
[mirror_ubuntu-jammy-kernel.git] / drivers / mtd / nand / raw / cafe_nand.c
CommitLineData
c9ac5977 1/*
fbad5696 2 * Driver for One Laptop Per Child ‘CAFÉ’ controller, aka Marvell 88ALP01
5467fb02 3 *
514fca43 4 * The data sheet for this device can be found at:
631dd1a8 5 * http://wiki.laptop.org/go/Datasheets
514fca43 6 *
5467fb02
DW
7 * Copyright © 2006 Red Hat, Inc.
8 * Copyright © 2006 David Woodhouse <dwmw2@infradead.org>
9 */
10
8dd851de 11#define DEBUG
5467fb02
DW
12
13#include <linux/device.h>
14#undef DEBUG
15#include <linux/mtd/mtd.h>
d4092d76 16#include <linux/mtd/rawnand.h>
9c37f332 17#include <linux/mtd/partitions.h>
8c61b7a7 18#include <linux/rslib.h>
5467fb02
DW
19#include <linux/pci.h>
20#include <linux/delay.h>
21#include <linux/interrupt.h>
a1274302 22#include <linux/dma-mapping.h>
5a0e3ad6 23#include <linux/slab.h>
a0e5cc58 24#include <linux/module.h>
5467fb02
DW
25#include <asm/io.h>
26
27#define CAFE_NAND_CTRL1 0x00
28#define CAFE_NAND_CTRL2 0x04
29#define CAFE_NAND_CTRL3 0x08
30#define CAFE_NAND_STATUS 0x0c
31#define CAFE_NAND_IRQ 0x10
32#define CAFE_NAND_IRQ_MASK 0x14
33#define CAFE_NAND_DATA_LEN 0x18
34#define CAFE_NAND_ADDR1 0x1c
35#define CAFE_NAND_ADDR2 0x20
36#define CAFE_NAND_TIMING1 0x24
37#define CAFE_NAND_TIMING2 0x28
38#define CAFE_NAND_TIMING3 0x2c
39#define CAFE_NAND_NONMEM 0x30
04459d7c 40#define CAFE_NAND_ECC_RESULT 0x3C
fbad5696
DW
41#define CAFE_NAND_DMA_CTRL 0x40
42#define CAFE_NAND_DMA_ADDR0 0x44
43#define CAFE_NAND_DMA_ADDR1 0x48
04459d7c
DW
44#define CAFE_NAND_ECC_SYN01 0x50
45#define CAFE_NAND_ECC_SYN23 0x54
46#define CAFE_NAND_ECC_SYN45 0x58
47#define CAFE_NAND_ECC_SYN67 0x5c
5467fb02
DW
48#define CAFE_NAND_READ_DATA 0x1000
49#define CAFE_NAND_WRITE_DATA 0x2000
50
195a253b
DW
51#define CAFE_GLOBAL_CTRL 0x3004
52#define CAFE_GLOBAL_IRQ 0x3008
53#define CAFE_GLOBAL_IRQ_MASK 0x300c
54#define CAFE_NAND_RESET 0x3034
55
048c37b4
DW
56/* Missing from the datasheet: bit 19 of CTRL1 sets CE0 vs. CE1 */
57#define CTRL1_CHIPSELECT (1<<19)
58
5467fb02
DW
59struct cafe_priv {
60 struct nand_chip nand;
61 struct pci_dev *pdev;
62 void __iomem *mmio;
8c61b7a7 63 struct rs_control *rs;
5467fb02
DW
64 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;
5467fb02
DW
72};
73
b478c775 74static int usedma = 1;
5467fb02
DW
75module_param(usedma, int, 0644);
76
8dd851de
DW
77static int skipbbt = 0;
78module_param(skipbbt, int, 0644);
79
80static int debug = 0;
81module_param(debug, int, 0644);
82
be8444bd
DW
83static int regdebug = 0;
84module_param(regdebug, int, 0644);
85
b478c775 86static int checkecc = 1;
470b0a90
DW
87module_param(checkecc, int, 0644);
88
64a6f950 89static unsigned int numtimings;
527a4f45
DW
90static int timing[3];
91module_param_array(timing, int, &numtimings, 0644);
b478c775 92
68874414 93static const char *part_probes[] = { "cmdlinepart", "RedBoot", NULL };
9c37f332 94
04459d7c 95/* Hrm. Why isn't this already conditional on something in the struct device? */
8dd851de
DW
96#define cafe_dev_dbg(dev, args...) do { if (debug) dev_dbg(dev, ##args); } while(0)
97
195a253b
DW
98/* 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)
8dd851de 101
5467fb02
DW
102static int cafe_device_ready(struct mtd_info *mtd)
103{
4bd4ebcc 104 struct nand_chip *chip = mtd_to_nand(mtd);
d699ed25 105 struct cafe_priv *cafe = nand_get_controller_data(chip);
48f8b641 106 int result = !!(cafe_readl(cafe, NAND_STATUS) & 0x40000000);
195a253b 107 uint32_t irqs = cafe_readl(cafe, NAND_IRQ);
fbad5696 108
195a253b 109 cafe_writel(cafe, irqs, NAND_IRQ);
fbad5696 110
8dd851de 111 cafe_dev_dbg(&cafe->pdev->dev, "NAND device is%s ready, IRQ %x (%x) (%x,%x)\n",
195a253b
DW
112 result?"":" not", irqs, cafe_readl(cafe, NAND_IRQ),
113 cafe_readl(cafe, GLOBAL_IRQ), cafe_readl(cafe, GLOBAL_IRQ_MASK));
fbad5696 114
5467fb02
DW
115 return result;
116}
117
118
119static void cafe_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
120{
4bd4ebcc 121 struct nand_chip *chip = mtd_to_nand(mtd);
d699ed25 122 struct cafe_priv *cafe = nand_get_controller_data(chip);
5467fb02
DW
123
124 if (usedma)
125 memcpy(cafe->dmabuf + cafe->datalen, buf, len);
126 else
127 memcpy_toio(cafe->mmio + CAFE_NAND_WRITE_DATA + cafe->datalen, buf, len);
fbad5696 128
5467fb02
DW
129 cafe->datalen += len;
130
8dd851de 131 cafe_dev_dbg(&cafe->pdev->dev, "Copy 0x%x bytes to write buffer. datalen 0x%x\n",
5467fb02
DW
132 len, cafe->datalen);
133}
134
135static void cafe_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
136{
4bd4ebcc 137 struct nand_chip *chip = mtd_to_nand(mtd);
d699ed25 138 struct cafe_priv *cafe = nand_get_controller_data(chip);
5467fb02
DW
139
140 if (usedma)
141 memcpy(buf, cafe->dmabuf + cafe->datalen, len);
142 else
143 memcpy_fromio(buf, cafe->mmio + CAFE_NAND_READ_DATA + cafe->datalen, len);
144
8dd851de 145 cafe_dev_dbg(&cafe->pdev->dev, "Copy 0x%x bytes from position 0x%x in read buffer.\n",
5467fb02
DW
146 len, cafe->datalen);
147 cafe->datalen += len;
148}
149
150static uint8_t cafe_read_byte(struct mtd_info *mtd)
151{
4bd4ebcc 152 struct nand_chip *chip = mtd_to_nand(mtd);
d699ed25 153 struct cafe_priv *cafe = nand_get_controller_data(chip);
5467fb02
DW
154 uint8_t d;
155
156 cafe_read_buf(mtd, &d, 1);
8dd851de 157 cafe_dev_dbg(&cafe->pdev->dev, "Read %02x\n", d);
5467fb02
DW
158
159 return d;
160}
161
162static void cafe_nand_cmdfunc(struct mtd_info *mtd, unsigned command,
163 int column, int page_addr)
164{
4bd4ebcc 165 struct nand_chip *chip = mtd_to_nand(mtd);
d699ed25 166 struct cafe_priv *cafe = nand_get_controller_data(chip);
5467fb02
DW
167 int adrbytes = 0;
168 uint32_t ctl1;
169 uint32_t doneint = 0x80000000;
5467fb02 170
8dd851de 171 cafe_dev_dbg(&cafe->pdev->dev, "cmdfunc %02x, 0x%x, 0x%x\n",
5467fb02
DW
172 command, column, page_addr);
173
174 if (command == NAND_CMD_ERASE2 || command == NAND_CMD_PAGEPROG) {
175 /* Second half of a command we already calculated */
195a253b 176 cafe_writel(cafe, cafe->ctl2 | 0x100 | command, NAND_CTRL2);
5467fb02 177 ctl1 = cafe->ctl1;
cad40654 178 cafe->ctl2 &= ~(1<<30);
8dd851de 179 cafe_dev_dbg(&cafe->pdev->dev, "Continue command, ctl1 %08x, #data %d\n",
5467fb02
DW
180 cafe->ctl1, cafe->nr_data);
181 goto do_command;
182 }
183 /* Reset ECC engine */
195a253b 184 cafe_writel(cafe, 0, NAND_CTRL2);
5467fb02
DW
185
186 /* Emulate NAND_CMD_READOOB on large-page chips */
187 if (mtd->writesize > 512 &&
188 command == NAND_CMD_READOOB) {
189 column += mtd->writesize;
190 command = NAND_CMD_READ0;
191 }
192
193 /* FIXME: Do we need to send read command before sending data
194 for small-page chips, to position the buffer correctly? */
195
196 if (column != -1) {
195a253b 197 cafe_writel(cafe, column, NAND_ADDR1);
5467fb02
DW
198 adrbytes = 2;
199 if (page_addr != -1)
200 goto write_adr2;
201 } else if (page_addr != -1) {
195a253b 202 cafe_writel(cafe, page_addr & 0xffff, NAND_ADDR1);
5467fb02
DW
203 page_addr >>= 16;
204 write_adr2:
195a253b 205 cafe_writel(cafe, page_addr, NAND_ADDR2);
5467fb02
DW
206 adrbytes += 2;
207 if (mtd->size > mtd->writesize << 16)
208 adrbytes++;
209 }
210
211 cafe->data_pos = cafe->datalen = 0;
212
048c37b4
DW
213 /* Set command valid bit, mask in the chip select bit */
214 ctl1 = 0x80000000 | command | (cafe->ctl1 & CTRL1_CHIPSELECT);
5467fb02
DW
215
216 /* Set RD or WR bits as appropriate */
217 if (command == NAND_CMD_READID || command == NAND_CMD_STATUS) {
218 ctl1 |= (1<<26); /* rd */
219 /* Always 5 bytes, for now */
8dd851de 220 cafe->datalen = 4;
5467fb02
DW
221 /* And one address cycle -- even for STATUS, since the controller doesn't work without */
222 adrbytes = 1;
223 } else if (command == NAND_CMD_READ0 || command == NAND_CMD_READ1 ||
224 command == NAND_CMD_READOOB || command == NAND_CMD_RNDOUT) {
225 ctl1 |= 1<<26; /* rd */
226 /* For now, assume just read to end of page */
227 cafe->datalen = mtd->writesize + mtd->oobsize - column;
228 } else if (command == NAND_CMD_SEQIN)
229 ctl1 |= 1<<25; /* wr */
230
231 /* Set number of address bytes */
232 if (adrbytes)
233 ctl1 |= ((adrbytes-1)|8) << 27;
234
235 if (command == NAND_CMD_SEQIN || command == NAND_CMD_ERASE1) {
c9ac5977 236 /* Ignore the first command of a pair; the hardware
5467fb02
DW
237 deals with them both at once, later */
238 cafe->ctl1 = ctl1;
8dd851de 239 cafe_dev_dbg(&cafe->pdev->dev, "Setup for delayed command, ctl1 %08x, dlen %x\n",
5467fb02
DW
240 cafe->ctl1, cafe->datalen);
241 return;
242 }
243 /* RNDOUT and READ0 commands need a following byte */
244 if (command == NAND_CMD_RNDOUT)
195a253b 245 cafe_writel(cafe, cafe->ctl2 | 0x100 | NAND_CMD_RNDOUTSTART, NAND_CTRL2);
5467fb02 246 else if (command == NAND_CMD_READ0 && mtd->writesize > 512)
195a253b 247 cafe_writel(cafe, cafe->ctl2 | 0x100 | NAND_CMD_READSTART, NAND_CTRL2);
5467fb02
DW
248
249 do_command:
c9ac5977 250 cafe_dev_dbg(&cafe->pdev->dev, "dlen %x, ctl1 %x, ctl2 %x\n",
195a253b 251 cafe->datalen, ctl1, cafe_readl(cafe, NAND_CTRL2));
fbad5696 252
5467fb02 253 /* NB: The datasheet lies -- we really should be subtracting 1 here */
195a253b
DW
254 cafe_writel(cafe, cafe->datalen, NAND_DATA_LEN);
255 cafe_writel(cafe, 0x90000000, NAND_IRQ);
5467fb02
DW
256 if (usedma && (ctl1 & (3<<25))) {
257 uint32_t dmactl = 0xc0000000 + cafe->datalen;
258 /* If WR or RD bits set, set up DMA */
259 if (ctl1 & (1<<26)) {
260 /* It's a read */
261 dmactl |= (1<<29);
262 /* ... so it's done when the DMA is done, not just
263 the command. */
264 doneint = 0x10000000;
265 }
195a253b 266 cafe_writel(cafe, dmactl, NAND_DMA_CTRL);
5467fb02 267 }
5467fb02
DW
268 cafe->datalen = 0;
269
be8444bd
DW
270 if (unlikely(regdebug)) {
271 int i;
272 printk("About to write command %08x to register 0\n", ctl1);
273 for (i=4; i< 0x5c; i+=4)
274 printk("Register %x: %08x\n", i, readl(cafe->mmio + i));
fbad5696 275 }
be8444bd 276
195a253b 277 cafe_writel(cafe, ctl1, NAND_CTRL1);
5467fb02
DW
278 /* Apply this short delay always to ensure that we do wait tWB in
279 * any case on any machine. */
280 ndelay(100);
281
282 if (1) {
2a7295b2 283 int c;
5467fb02
DW
284 uint32_t irqs;
285
2a7295b2 286 for (c = 500000; c != 0; c--) {
195a253b 287 irqs = cafe_readl(cafe, NAND_IRQ);
5467fb02
DW
288 if (irqs & doneint)
289 break;
290 udelay(1);
8dd851de
DW
291 if (!(c % 100000))
292 cafe_dev_dbg(&cafe->pdev->dev, "Wait for ready, IRQ %x\n", irqs);
5467fb02
DW
293 cpu_relax();
294 }
195a253b 295 cafe_writel(cafe, doneint, NAND_IRQ);
a020727b 296 cafe_dev_dbg(&cafe->pdev->dev, "Command %x completed after %d usec, irqs %x (%x)\n",
195a253b 297 command, 500000-c, irqs, cafe_readl(cafe, NAND_IRQ));
5467fb02
DW
298 }
299
cad40654 300 WARN_ON(cafe->ctl2 & (1<<30));
5467fb02
DW
301
302 switch (command) {
303
304 case NAND_CMD_CACHEDPROG:
305 case NAND_CMD_PAGEPROG:
306 case NAND_CMD_ERASE1:
307 case NAND_CMD_ERASE2:
308 case NAND_CMD_SEQIN:
309 case NAND_CMD_RNDIN:
310 case NAND_CMD_STATUS:
5467fb02 311 case NAND_CMD_RNDOUT:
195a253b 312 cafe_writel(cafe, cafe->ctl2, NAND_CTRL2);
5467fb02
DW
313 return;
314 }
315 nand_wait_ready(mtd);
195a253b 316 cafe_writel(cafe, cafe->ctl2, NAND_CTRL2);
5467fb02
DW
317}
318
319static void cafe_select_chip(struct mtd_info *mtd, int chipnr)
320{
4bd4ebcc 321 struct nand_chip *chip = mtd_to_nand(mtd);
d699ed25 322 struct cafe_priv *cafe = nand_get_controller_data(chip);
048c37b4
DW
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;
5467fb02 332}
fbad5696 333
67cd724f 334static irqreturn_t cafe_nand_interrupt(int irq, void *id)
5467fb02
DW
335{
336 struct mtd_info *mtd = id;
4bd4ebcc 337 struct nand_chip *chip = mtd_to_nand(mtd);
d699ed25 338 struct cafe_priv *cafe = nand_get_controller_data(chip);
195a253b
DW
339 uint32_t irqs = cafe_readl(cafe, NAND_IRQ);
340 cafe_writel(cafe, irqs & ~0x90000000, NAND_IRQ);
5467fb02
DW
341 if (!irqs)
342 return IRQ_NONE;
343
195a253b 344 cafe_dev_dbg(&cafe->pdev->dev, "irq, bits %x (%x)\n", irqs, cafe_readl(cafe, NAND_IRQ));
5467fb02
DW
345 return IRQ_HANDLED;
346}
347
5467fb02
DW
348static int cafe_nand_write_oob(struct mtd_info *mtd,
349 struct nand_chip *chip, int page)
350{
97d90da8
BB
351 return nand_prog_page_op(chip, page, mtd->writesize, chip->oob_poi,
352 mtd->oobsize);
5467fb02
DW
353}
354
355/* Don't use -- use nand_read_oob_std for now */
356static int cafe_nand_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
5c2ffb11 357 int page)
5467fb02 358{
97d90da8 359 return nand_read_oob_op(chip, page, 0, chip->oob_poi, mtd->oobsize);
5467fb02
DW
360}
361/**
7854d3f7 362 * cafe_nand_read_page_syndrome - [REPLACEABLE] hardware ecc syndrome based page read
5467fb02
DW
363 * @mtd: mtd info structure
364 * @chip: nand chip info structure
365 * @buf: buffer to store read data
1fbb938d 366 * @oob_required: caller expects OOB data read to chip->oob_poi
5467fb02 367 *
b9bc815c 368 * The hw generator calculates the error syndrome automatically. Therefore
5467fb02
DW
369 * we need a special oob layout and handling.
370 */
371static int cafe_nand_read_page(struct mtd_info *mtd, struct nand_chip *chip,
1fbb938d 372 uint8_t *buf, int oob_required, int page)
5467fb02 373{
d699ed25 374 struct cafe_priv *cafe = nand_get_controller_data(chip);
3f91e94f 375 unsigned int max_bitflips = 0;
5467fb02 376
fbad5696 377 cafe_dev_dbg(&cafe->pdev->dev, "ECC result %08x SYN1,2 %08x\n",
195a253b
DW
378 cafe_readl(cafe, NAND_ECC_RESULT),
379 cafe_readl(cafe, NAND_ECC_SYN01));
5467fb02 380
25f815f6 381 nand_read_page_op(chip, page, 0, buf, mtd->writesize);
5467fb02
DW
382 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
383
195a253b 384 if (checkecc && cafe_readl(cafe, NAND_ECC_RESULT) & (1<<18)) {
8c61b7a7
SB
385 unsigned short syn[8], pat[4];
386 int pos[4];
387 u8 *oob = chip->oob_poi;
388 int i, n;
04459d7c
DW
389
390 for (i=0; i<8; i+=2) {
195a253b 391 uint32_t tmp = cafe_readl(cafe, NAND_ECC_SYN01 + (i*2));
21633981
TG
392
393 syn[i] = cafe->rs->codec->index_of[tmp & 0xfff];
394 syn[i+1] = cafe->rs->codec->index_of[(tmp >> 16) & 0xfff];
8c61b7a7
SB
395 }
396
397 n = decode_rs16(cafe->rs, NULL, NULL, 1367, syn, 0, pos, 0,
21633981 398 pat);
8c61b7a7
SB
399
400 for (i = 0; i < n; i++) {
401 int p = pos[i];
402
403 /* The 12-bit symbols are mapped to bytes here */
404
405 if (p > 1374) {
406 /* out of range */
407 n = -1374;
408 } else if (p == 0) {
409 /* high four bits do not correspond to data */
410 if (pat[i] > 0xff)
411 n = -2048;
412 else
413 buf[0] ^= pat[i];
414 } else if (p == 1365) {
415 buf[2047] ^= pat[i] >> 4;
416 oob[0] ^= pat[i] << 4;
417 } else if (p > 1365) {
418 if ((p & 1) == 1) {
419 oob[3*p/2 - 2048] ^= pat[i] >> 4;
420 oob[3*p/2 - 2047] ^= pat[i] << 4;
421 } else {
422 oob[3*p/2 - 2049] ^= pat[i] >> 8;
423 oob[3*p/2 - 2048] ^= pat[i];
424 }
425 } else if ((p & 1) == 1) {
426 buf[3*p/2] ^= pat[i] >> 4;
427 buf[3*p/2 + 1] ^= pat[i] << 4;
428 } else {
429 buf[3*p/2 - 1] ^= pat[i] >> 8;
430 buf[3*p/2] ^= pat[i];
431 }
c9ac5977 432 }
04459d7c 433
8c61b7a7 434 if (n < 0) {
be8444bd
DW
435 dev_dbg(&cafe->pdev->dev, "Failed to correct ECC at %08x\n",
436 cafe_readl(cafe, NAND_ADDR2) * 2048);
8c61b7a7 437 for (i = 0; i < 0x5c; i += 4)
be8444bd 438 printk("Register %x: %08x\n", i, readl(cafe->mmio + i));
04459d7c
DW
439 mtd->ecc_stats.failed++;
440 } else {
8c61b7a7
SB
441 dev_dbg(&cafe->pdev->dev, "Corrected %d symbol errors\n", n);
442 mtd->ecc_stats.corrected += n;
3f91e94f 443 max_bitflips = max_t(unsigned int, max_bitflips, n);
04459d7c
DW
444 }
445 }
446
3f91e94f 447 return max_bitflips;
5467fb02
DW
448}
449
a8ed6e66
BB
450static int cafe_ooblayout_ecc(struct mtd_info *mtd, int section,
451 struct mtd_oob_region *oobregion)
452{
453 struct nand_chip *chip = mtd_to_nand(mtd);
454
455 if (section)
456 return -ERANGE;
457
458 oobregion->offset = 0;
459 oobregion->length = chip->ecc.total;
460
461 return 0;
462}
463
464static int cafe_ooblayout_free(struct mtd_info *mtd, int section,
465 struct mtd_oob_region *oobregion)
466{
467 struct nand_chip *chip = mtd_to_nand(mtd);
468
469 if (section)
470 return -ERANGE;
471
472 oobregion->offset = chip->ecc.total;
473 oobregion->length = mtd->oobsize - chip->ecc.total;
474
475 return 0;
476}
477
478static const struct mtd_ooblayout_ops cafe_ooblayout_ops = {
479 .ecc = cafe_ooblayout_ecc,
480 .free = cafe_ooblayout_free,
8dd851de
DW
481};
482
c9ac5977 483/* Ick. The BBT code really ought to be able to work this bit out
fbad5696
DW
484 for itself from the above, at least for the 2KiB case */
485static uint8_t cafe_bbt_pattern_2048[] = { 'B', 'b', 't', '0' };
486static uint8_t cafe_mirror_pattern_2048[] = { '1', 't', 'b', 'B' };
487
488static uint8_t cafe_bbt_pattern_512[] = { 0xBB };
489static uint8_t cafe_mirror_pattern_512[] = { 0xBC };
490
8dd851de
DW
491
492static struct nand_bbt_descr cafe_bbt_main_descr_2048 = {
493 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
048c37b4 494 | NAND_BBT_2BIT | NAND_BBT_VERSION,
8dd851de
DW
495 .offs = 14,
496 .len = 4,
497 .veroffs = 18,
498 .maxblocks = 4,
fbad5696 499 .pattern = cafe_bbt_pattern_2048
8dd851de
DW
500};
501
502static struct nand_bbt_descr cafe_bbt_mirror_descr_2048 = {
503 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
048c37b4 504 | NAND_BBT_2BIT | NAND_BBT_VERSION,
8dd851de
DW
505 .offs = 14,
506 .len = 4,
507 .veroffs = 18,
508 .maxblocks = 4,
fbad5696 509 .pattern = cafe_mirror_pattern_2048
8dd851de
DW
510};
511
fbad5696
DW
512static struct nand_bbt_descr cafe_bbt_main_descr_512 = {
513 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
048c37b4 514 | NAND_BBT_2BIT | NAND_BBT_VERSION,
fbad5696
DW
515 .offs = 14,
516 .len = 1,
517 .veroffs = 15,
518 .maxblocks = 4,
519 .pattern = cafe_bbt_pattern_512
520};
521
522static struct nand_bbt_descr cafe_bbt_mirror_descr_512 = {
523 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
048c37b4 524 | NAND_BBT_2BIT | NAND_BBT_VERSION,
fbad5696
DW
525 .offs = 14,
526 .len = 1,
527 .veroffs = 15,
528 .maxblocks = 4,
529 .pattern = cafe_mirror_pattern_512
530};
531
532
fdbad98d 533static int cafe_nand_write_page_lowlevel(struct mtd_info *mtd,
1fbb938d 534 struct nand_chip *chip,
45aaeff9
BB
535 const uint8_t *buf, int oob_required,
536 int page)
5467fb02 537{
d699ed25 538 struct cafe_priv *cafe = nand_get_controller_data(chip);
5467fb02 539
25f815f6 540 nand_prog_page_begin_op(chip, page, 0, buf, mtd->writesize);
8dd851de 541 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
5467fb02
DW
542
543 /* Set up ECC autogeneration */
cad40654 544 cafe->ctl2 |= (1<<30);
fdbad98d 545
25f815f6 546 return nand_prog_page_end_op(chip);
5467fb02
DW
547}
548
9f3e0429 549static int cafe_nand_block_bad(struct mtd_info *mtd, loff_t ofs)
8dd851de
DW
550{
551 return 0;
552}
5467fb02 553
8c61b7a7 554/* F_2[X]/(X**6+X+1) */
06f25510 555static unsigned short gf64_mul(u8 a, u8 b)
8c61b7a7
SB
556{
557 u8 c;
558 unsigned int i;
559
560 c = 0;
561 for (i = 0; i < 6; i++) {
562 if (a & 1)
563 c ^= b;
564 a >>= 1;
565 b <<= 1;
566 if ((b & 0x40) != 0)
567 b ^= 0x43;
568 }
569
570 return c;
571}
572
573/* F_64[X]/(X**2+X+A**-1) with A the generator of F_64[X] */
06f25510 574static u16 gf4096_mul(u16 a, u16 b)
8c61b7a7
SB
575{
576 u8 ah, al, bh, bl, ch, cl;
577
578 ah = a >> 6;
579 al = a & 0x3f;
580 bh = b >> 6;
581 bl = b & 0x3f;
582
583 ch = gf64_mul(ah ^ al, bh ^ bl) ^ gf64_mul(al, bl);
584 cl = gf64_mul(gf64_mul(ah, bh), 0x21) ^ gf64_mul(al, bl);
585
586 return (ch << 6) ^ cl;
587}
588
06f25510 589static int cafe_mul(int x)
8c61b7a7
SB
590{
591 if (x == 0)
592 return 1;
593 return gf4096_mul(x, 0xe01);
594}
595
06f25510 596static int cafe_nand_probe(struct pci_dev *pdev,
5467fb02
DW
597 const struct pci_device_id *ent)
598{
599 struct mtd_info *mtd;
600 struct cafe_priv *cafe;
601 uint32_t ctrl;
602 int err = 0;
f02ea4e6 603 int old_dma;
5467fb02 604
06ed24e5
DW
605 /* Very old versions shared the same PCI ident for all three
606 functions on the chip. Verify the class too... */
607 if ((pdev->class >> 8) != PCI_CLASS_MEMORY_FLASH)
608 return -ENODEV;
609
5467fb02
DW
610 err = pci_enable_device(pdev);
611 if (err)
612 return err;
613
614 pci_set_master(pdev);
615
e787dfd1
BB
616 cafe = kzalloc(sizeof(*cafe), GFP_KERNEL);
617 if (!cafe)
5467fb02 618 return -ENOMEM;
5467fb02 619
e787dfd1 620 mtd = nand_to_mtd(&cafe->nand);
c451c7c4 621 mtd->dev.parent = &pdev->dev;
d699ed25 622 nand_set_controller_data(&cafe->nand, cafe);
5467fb02
DW
623
624 cafe->pdev = pdev;
625 cafe->mmio = pci_iomap(pdev, 0, 0);
626 if (!cafe->mmio) {
627 dev_warn(&pdev->dev, "failed to iomap\n");
628 err = -ENOMEM;
629 goto out_free_mtd;
630 }
5467fb02 631
8c61b7a7
SB
632 cafe->rs = init_rs_non_canonical(12, &cafe_mul, 0, 1, 8);
633 if (!cafe->rs) {
634 err = -ENOMEM;
635 goto out_ior;
636 }
637
5467fb02
DW
638 cafe->nand.cmdfunc = cafe_nand_cmdfunc;
639 cafe->nand.dev_ready = cafe_device_ready;
640 cafe->nand.read_byte = cafe_read_byte;
641 cafe->nand.read_buf = cafe_read_buf;
642 cafe->nand.write_buf = cafe_write_buf;
643 cafe->nand.select_chip = cafe_select_chip;
b958758e
MR
644 cafe->nand.set_features = nand_get_set_features_notsupp;
645 cafe->nand.get_features = nand_get_set_features_notsupp;
5467fb02
DW
646
647 cafe->nand.chip_delay = 0;
648
649 /* Enable the following for a flash based bad block table */
bb9ebd4e 650 cafe->nand.bbt_options = NAND_BBT_USE_FLASH;
8dd851de
DW
651
652 if (skipbbt) {
653 cafe->nand.options |= NAND_SKIP_BBTSCAN;
654 cafe->nand.block_bad = cafe_nand_block_bad;
655 }
c9ac5977 656
527a4f45
DW
657 if (numtimings && numtimings != 3) {
658 dev_warn(&cafe->pdev->dev, "%d timing register values ignored; precisely three are required\n", numtimings);
659 }
660
661 if (numtimings == 3) {
527a4f45 662 cafe_dev_dbg(&cafe->pdev->dev, "Using provided timings (%08x %08x %08x)\n",
8e5368a1 663 timing[0], timing[1], timing[2]);
527a4f45 664 } else {
8e5368a1
DW
665 timing[0] = cafe_readl(cafe, NAND_TIMING1);
666 timing[1] = cafe_readl(cafe, NAND_TIMING2);
667 timing[2] = cafe_readl(cafe, NAND_TIMING3);
527a4f45 668
8e5368a1
DW
669 if (timing[0] | timing[1] | timing[2]) {
670 cafe_dev_dbg(&cafe->pdev->dev, "Timing registers already set (%08x %08x %08x)\n",
671 timing[0], timing[1], timing[2]);
527a4f45
DW
672 } else {
673 dev_warn(&cafe->pdev->dev, "Timing registers unset; using most conservative defaults\n");
8e5368a1 674 timing[0] = timing[1] = timing[2] = 0xffffffff;
527a4f45
DW
675 }
676 }
677
dcc41bc8 678 /* Start off by resetting the NAND controller completely */
195a253b
DW
679 cafe_writel(cafe, 1, NAND_RESET);
680 cafe_writel(cafe, 0, NAND_RESET);
dcc41bc8 681
8e5368a1
DW
682 cafe_writel(cafe, timing[0], NAND_TIMING1);
683 cafe_writel(cafe, timing[1], NAND_TIMING2);
684 cafe_writel(cafe, timing[2], NAND_TIMING3);
b478c775 685
195a253b 686 cafe_writel(cafe, 0xffffffff, NAND_IRQ_MASK);
2db6346f
TG
687 err = request_irq(pdev->irq, &cafe_nand_interrupt, IRQF_SHARED,
688 "CAFE NAND", mtd);
5467fb02
DW
689 if (err) {
690 dev_warn(&pdev->dev, "Could not register IRQ %d\n", pdev->irq);
f02ea4e6 691 goto out_ior;
5467fb02 692 }
f7c37d7b 693
5467fb02 694 /* Disable master reset, enable NAND clock */
195a253b 695 ctrl = cafe_readl(cafe, GLOBAL_CTRL);
5467fb02
DW
696 ctrl &= 0xffffeff0;
697 ctrl |= 0x00007000;
195a253b
DW
698 cafe_writel(cafe, ctrl | 0x05, GLOBAL_CTRL);
699 cafe_writel(cafe, ctrl | 0x0a, GLOBAL_CTRL);
700 cafe_writel(cafe, 0, NAND_DMA_CTRL);
5467fb02 701
195a253b
DW
702 cafe_writel(cafe, 0x7006, GLOBAL_CTRL);
703 cafe_writel(cafe, 0x700a, GLOBAL_CTRL);
5467fb02 704
f02ea4e6
HS
705 /* Enable NAND IRQ in global IRQ mask register */
706 cafe_writel(cafe, 0x80000007, GLOBAL_IRQ_MASK);
707 cafe_dev_dbg(&cafe->pdev->dev, "Control %x, IRQ mask %x\n",
708 cafe_readl(cafe, GLOBAL_CTRL),
709 cafe_readl(cafe, GLOBAL_IRQ_MASK));
710
711 /* Do not use the DMA for the nand_scan_ident() */
712 old_dma = usedma;
713 usedma = 0;
714
715 /* Scan to find existence of the device */
72480e4e
MY
716 err = nand_scan_ident(mtd, 2, NULL);
717 if (err)
f02ea4e6 718 goto out_irq;
f02ea4e6 719
f880b07b
MY
720 cafe->dmabuf = dma_alloc_coherent(&cafe->pdev->dev, 2112,
721 &cafe->dmaaddr, GFP_KERNEL);
f02ea4e6
HS
722 if (!cafe->dmabuf) {
723 err = -ENOMEM;
724 goto out_irq;
725 }
f02ea4e6 726
5467fb02 727 /* Set up DMA address */
958ef111
MY
728 cafe_writel(cafe, lower_32_bits(cafe->dmaaddr), NAND_DMA_ADDR0);
729 cafe_writel(cafe, upper_32_bits(cafe->dmaaddr), NAND_DMA_ADDR1);
fbad5696 730
8dd851de 731 cafe_dev_dbg(&cafe->pdev->dev, "Set DMA address to %x (virt %p)\n",
195a253b 732 cafe_readl(cafe, NAND_DMA_ADDR0), cafe->dmabuf);
5467fb02 733
f02ea4e6
HS
734 /* Restore the DMA flag */
735 usedma = old_dma;
5467fb02
DW
736
737 cafe->ctl2 = 1<<27; /* Reed-Solomon ECC */
738 if (mtd->writesize == 2048)
739 cafe->ctl2 |= 1<<29; /* 2KiB page size */
740
741 /* Set up ECC according to the type of chip we found */
a8ed6e66 742 mtd_set_ooblayout(mtd, &cafe_ooblayout_ops);
fbad5696 743 if (mtd->writesize == 2048) {
8dd851de
DW
744 cafe->nand.bbt_td = &cafe_bbt_main_descr_2048;
745 cafe->nand.bbt_md = &cafe_bbt_mirror_descr_2048;
fbad5696 746 } else if (mtd->writesize == 512) {
fbad5696
DW
747 cafe->nand.bbt_td = &cafe_bbt_main_descr_512;
748 cafe->nand.bbt_md = &cafe_bbt_mirror_descr_512;
5467fb02 749 } else {
63fa37f0
SP
750 pr_warn("Unexpected NAND flash writesize %d. Aborting\n",
751 mtd->writesize);
f02ea4e6 752 goto out_free_dma;
5467fb02 753 }
fbad5696
DW
754 cafe->nand.ecc.mode = NAND_ECC_HW_SYNDROME;
755 cafe->nand.ecc.size = mtd->writesize;
756 cafe->nand.ecc.bytes = 14;
6a918bad 757 cafe->nand.ecc.strength = 4;
fbad5696
DW
758 cafe->nand.ecc.write_page = cafe_nand_write_page_lowlevel;
759 cafe->nand.ecc.write_oob = cafe_nand_write_oob;
760 cafe->nand.ecc.read_page = cafe_nand_read_page;
761 cafe->nand.ecc.read_oob = cafe_nand_read_oob;
5467fb02
DW
762
763 err = nand_scan_tail(mtd);
764 if (err)
f02ea4e6 765 goto out_free_dma;
5467fb02 766
5467fb02 767 pci_set_drvdata(pdev, mtd);
9c37f332 768
68874414 769 mtd->name = "cafe_nand";
a446c998
MR
770 err = mtd_device_parse_register(mtd, part_probes, NULL, NULL, 0);
771 if (err)
772 goto out_cleanup_nand;
4d32de81 773
5467fb02
DW
774 goto out;
775
a446c998
MR
776 out_cleanup_nand:
777 nand_cleanup(&cafe->nand);
f02ea4e6 778 out_free_dma:
f880b07b 779 dma_free_coherent(&cafe->pdev->dev, 2112, cafe->dmabuf, cafe->dmaaddr);
5467fb02
DW
780 out_irq:
781 /* Disable NAND IRQ in global IRQ mask register */
195a253b 782 cafe_writel(cafe, ~1 & cafe_readl(cafe, GLOBAL_IRQ_MASK), GLOBAL_IRQ_MASK);
5467fb02 783 free_irq(pdev->irq, mtd);
5467fb02
DW
784 out_ior:
785 pci_iounmap(pdev, cafe->mmio);
786 out_free_mtd:
e787dfd1 787 kfree(cafe);
5467fb02
DW
788 out:
789 return err;
790}
791
810b7e06 792static void cafe_nand_remove(struct pci_dev *pdev)
5467fb02
DW
793{
794 struct mtd_info *mtd = pci_get_drvdata(pdev);
4bd4ebcc 795 struct nand_chip *chip = mtd_to_nand(mtd);
d699ed25 796 struct cafe_priv *cafe = nand_get_controller_data(chip);
5467fb02 797
5467fb02 798 /* Disable NAND IRQ in global IRQ mask register */
195a253b 799 cafe_writel(cafe, ~1 & cafe_readl(cafe, GLOBAL_IRQ_MASK), GLOBAL_IRQ_MASK);
5467fb02
DW
800 free_irq(pdev->irq, mtd);
801 nand_release(mtd);
8c61b7a7 802 free_rs(cafe->rs);
5467fb02 803 pci_iounmap(pdev, cafe->mmio);
f880b07b 804 dma_free_coherent(&cafe->pdev->dev, 2112, cafe->dmabuf, cafe->dmaaddr);
e787dfd1 805 kfree(cafe);
5467fb02
DW
806}
807
377ace08 808static const struct pci_device_id cafe_nand_tbl[] = {
514fca43
DW
809 { PCI_VENDOR_ID_MARVELL, PCI_DEVICE_ID_MARVELL_88ALP01_NAND,
810 PCI_ANY_ID, PCI_ANY_ID },
06ed24e5 811 { }
5467fb02
DW
812};
813
814MODULE_DEVICE_TABLE(pci, cafe_nand_tbl);
815
1fcf8ce5
DW
816static int cafe_nand_resume(struct pci_dev *pdev)
817{
818 uint32_t ctrl;
819 struct mtd_info *mtd = pci_get_drvdata(pdev);
4bd4ebcc 820 struct nand_chip *chip = mtd_to_nand(mtd);
d699ed25 821 struct cafe_priv *cafe = nand_get_controller_data(chip);
1fcf8ce5
DW
822
823 /* Start off by resetting the NAND controller completely */
824 cafe_writel(cafe, 1, NAND_RESET);
825 cafe_writel(cafe, 0, NAND_RESET);
826 cafe_writel(cafe, 0xffffffff, NAND_IRQ_MASK);
827
828 /* Restore timing configuration */
829 cafe_writel(cafe, timing[0], NAND_TIMING1);
830 cafe_writel(cafe, timing[1], NAND_TIMING2);
831 cafe_writel(cafe, timing[2], NAND_TIMING3);
832
833 /* Disable master reset, enable NAND clock */
834 ctrl = cafe_readl(cafe, GLOBAL_CTRL);
835 ctrl &= 0xffffeff0;
836 ctrl |= 0x00007000;
837 cafe_writel(cafe, ctrl | 0x05, GLOBAL_CTRL);
838 cafe_writel(cafe, ctrl | 0x0a, GLOBAL_CTRL);
839 cafe_writel(cafe, 0, NAND_DMA_CTRL);
840 cafe_writel(cafe, 0x7006, GLOBAL_CTRL);
841 cafe_writel(cafe, 0x700a, GLOBAL_CTRL);
842
843 /* Set up DMA address */
844 cafe_writel(cafe, cafe->dmaaddr & 0xffffffff, NAND_DMA_ADDR0);
845 if (sizeof(cafe->dmaaddr) > 4)
846 /* Shift in two parts to shut the compiler up */
847 cafe_writel(cafe, (cafe->dmaaddr >> 16) >> 16, NAND_DMA_ADDR1);
848 else
849 cafe_writel(cafe, 0, NAND_DMA_ADDR1);
850
851 /* Enable NAND IRQ in global IRQ mask register */
852 cafe_writel(cafe, 0x80000007, GLOBAL_IRQ_MASK);
853 return 0;
854}
855
5467fb02
DW
856static struct pci_driver cafe_nand_pci_driver = {
857 .name = "CAFÉ NAND",
858 .id_table = cafe_nand_tbl,
859 .probe = cafe_nand_probe,
5153b88c 860 .remove = cafe_nand_remove,
5467fb02 861 .resume = cafe_nand_resume,
5467fb02
DW
862};
863
4d16cd65 864module_pci_driver(cafe_nand_pci_driver);
5467fb02
DW
865
866MODULE_LICENSE("GPL");
867MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
f7c37d7b 868MODULE_DESCRIPTION("NAND flash driver for OLPC CAFÉ chip");