blob: 3c1b6a3786b2516d6fd6364a99329efc08b81a6b [file] [log] [blame]
David Woodhousec9ac59772006-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>
Boris Brezillond4092d72017-08-04 17:29:10 +020016#include <linux/mtd/rawnand.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>
Paul Gortmakera0e5cc52011-07-03 15:17:31 -040024#include <linux/module.h>
David Woodhouse5467fb02006-10-06 15:36:29 +010025#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
David Woodhouse04459d72006-10-22 02:18:48 +010040#define CAFE_NAND_ECC_RESULT 0x3C
David Woodhousefbad5692006-10-22 15:09:33 +010041#define CAFE_NAND_DMA_CTRL 0x40
42#define CAFE_NAND_DMA_ADDR0 0x44
43#define CAFE_NAND_DMA_ADDR1 0x48
David Woodhouse04459d72006-10-22 02:18:48 +010044#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
David Woodhouse5467fb02006-10-06 15:36:29 +010048#define CAFE_NAND_READ_DATA 0x1000
49#define CAFE_NAND_WRITE_DATA 0x2000
50
David Woodhouse195a2532006-10-31 12:30:11 +080051#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
David Woodhouse048c37b2007-05-02 12:26:37 +010056/* Missing from the datasheet: bit 19 of CTRL1 sets CE0 vs. CE1 */
57#define CTRL1_CHIPSELECT (1<<19)
58
David Woodhouse5467fb02006-10-06 15:36:29 +010059struct cafe_priv {
60 struct nand_chip nand;
61 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{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100104 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100105 struct cafe_priv *cafe = nand_get_controller_data(chip);
Dan Carpenter48f8b642012-06-09 19:08:25 +0300106 int result = !!(cafe_readl(cafe, NAND_STATUS) & 0x40000000);
David Woodhouse195a2532006-10-31 12:30:11 +0800107 uint32_t irqs = cafe_readl(cafe, NAND_IRQ);
David Woodhousefbad5692006-10-22 15:09:33 +0100108
David Woodhouse195a2532006-10-31 12:30:11 +0800109 cafe_writel(cafe, irqs, NAND_IRQ);
David Woodhousefbad5692006-10-22 15:09:33 +0100110
David Woodhouse8dd851d2006-10-20 02:11:40 +0100111 cafe_dev_dbg(&cafe->pdev->dev, "NAND device is%s ready, IRQ %x (%x) (%x,%x)\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800112 result?"":" not", irqs, cafe_readl(cafe, NAND_IRQ),
113 cafe_readl(cafe, GLOBAL_IRQ), cafe_readl(cafe, GLOBAL_IRQ_MASK));
David Woodhousefbad5692006-10-22 15:09:33 +0100114
David Woodhouse5467fb02006-10-06 15:36:29 +0100115 return result;
116}
117
118
119static void cafe_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
120{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100121 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100122 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100123
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);
David Woodhousefbad5692006-10-22 15:09:33 +0100128
David Woodhouse5467fb02006-10-06 15:36:29 +0100129 cafe->datalen += len;
130
David Woodhouse8dd851d2006-10-20 02:11:40 +0100131 cafe_dev_dbg(&cafe->pdev->dev, "Copy 0x%x bytes to write buffer. datalen 0x%x\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100132 len, cafe->datalen);
133}
134
135static void cafe_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
136{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100137 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100138 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100139
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
David Woodhouse8dd851d2006-10-20 02:11:40 +0100145 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 +0100146 len, cafe->datalen);
147 cafe->datalen += len;
148}
149
150static uint8_t cafe_read_byte(struct mtd_info *mtd)
151{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100152 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100153 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100154 uint8_t d;
155
156 cafe_read_buf(mtd, &d, 1);
David Woodhouse8dd851d2006-10-20 02:11:40 +0100157 cafe_dev_dbg(&cafe->pdev->dev, "Read %02x\n", d);
David Woodhouse5467fb02006-10-06 15:36:29 +0100158
159 return d;
160}
161
162static void cafe_nand_cmdfunc(struct mtd_info *mtd, unsigned command,
163 int column, int page_addr)
164{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100165 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100166 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100167 int adrbytes = 0;
168 uint32_t ctl1;
169 uint32_t doneint = 0x80000000;
David Woodhouse5467fb02006-10-06 15:36:29 +0100170
David Woodhouse8dd851d2006-10-20 02:11:40 +0100171 cafe_dev_dbg(&cafe->pdev->dev, "cmdfunc %02x, 0x%x, 0x%x\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100172 command, column, page_addr);
173
174 if (command == NAND_CMD_ERASE2 || command == NAND_CMD_PAGEPROG) {
175 /* Second half of a command we already calculated */
David Woodhouse195a2532006-10-31 12:30:11 +0800176 cafe_writel(cafe, cafe->ctl2 | 0x100 | command, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100177 ctl1 = cafe->ctl1;
David Woodhousecad40652006-11-01 08:19:20 +0800178 cafe->ctl2 &= ~(1<<30);
David Woodhouse8dd851d2006-10-20 02:11:40 +0100179 cafe_dev_dbg(&cafe->pdev->dev, "Continue command, ctl1 %08x, #data %d\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100180 cafe->ctl1, cafe->nr_data);
181 goto do_command;
182 }
183 /* Reset ECC engine */
David Woodhouse195a2532006-10-31 12:30:11 +0800184 cafe_writel(cafe, 0, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100185
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) {
David Woodhouse195a2532006-10-31 12:30:11 +0800197 cafe_writel(cafe, column, NAND_ADDR1);
David Woodhouse5467fb02006-10-06 15:36:29 +0100198 adrbytes = 2;
199 if (page_addr != -1)
200 goto write_adr2;
201 } else if (page_addr != -1) {
David Woodhouse195a2532006-10-31 12:30:11 +0800202 cafe_writel(cafe, page_addr & 0xffff, NAND_ADDR1);
David Woodhouse5467fb02006-10-06 15:36:29 +0100203 page_addr >>= 16;
204 write_adr2:
David Woodhouse195a2532006-10-31 12:30:11 +0800205 cafe_writel(cafe, page_addr, NAND_ADDR2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100206 adrbytes += 2;
207 if (mtd->size > mtd->writesize << 16)
208 adrbytes++;
209 }
210
211 cafe->data_pos = cafe->datalen = 0;
212
David Woodhouse048c37b2007-05-02 12:26:37 +0100213 /* Set command valid bit, mask in the chip select bit */
214 ctl1 = 0x80000000 | command | (cafe->ctl1 & CTRL1_CHIPSELECT);
David Woodhouse5467fb02006-10-06 15:36:29 +0100215
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 */
David Woodhouse8dd851d2006-10-20 02:11:40 +0100220 cafe->datalen = 4;
David Woodhouse5467fb02006-10-06 15:36:29 +0100221 /* 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) {
David Woodhousec9ac59772006-11-30 08:17:38 +0000236 /* Ignore the first command of a pair; the hardware
David Woodhouse5467fb02006-10-06 15:36:29 +0100237 deals with them both at once, later */
238 cafe->ctl1 = ctl1;
David Woodhouse8dd851d2006-10-20 02:11:40 +0100239 cafe_dev_dbg(&cafe->pdev->dev, "Setup for delayed command, ctl1 %08x, dlen %x\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100240 cafe->ctl1, cafe->datalen);
241 return;
242 }
243 /* RNDOUT and READ0 commands need a following byte */
244 if (command == NAND_CMD_RNDOUT)
David Woodhouse195a2532006-10-31 12:30:11 +0800245 cafe_writel(cafe, cafe->ctl2 | 0x100 | NAND_CMD_RNDOUTSTART, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100246 else if (command == NAND_CMD_READ0 && mtd->writesize > 512)
David Woodhouse195a2532006-10-31 12:30:11 +0800247 cafe_writel(cafe, cafe->ctl2 | 0x100 | NAND_CMD_READSTART, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100248
249 do_command:
David Woodhousec9ac59772006-11-30 08:17:38 +0000250 cafe_dev_dbg(&cafe->pdev->dev, "dlen %x, ctl1 %x, ctl2 %x\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800251 cafe->datalen, ctl1, cafe_readl(cafe, NAND_CTRL2));
David Woodhousefbad5692006-10-22 15:09:33 +0100252
David Woodhouse5467fb02006-10-06 15:36:29 +0100253 /* NB: The datasheet lies -- we really should be subtracting 1 here */
David Woodhouse195a2532006-10-31 12:30:11 +0800254 cafe_writel(cafe, cafe->datalen, NAND_DATA_LEN);
255 cafe_writel(cafe, 0x90000000, NAND_IRQ);
David Woodhouse5467fb02006-10-06 15:36:29 +0100256 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 }
David Woodhouse195a2532006-10-31 12:30:11 +0800266 cafe_writel(cafe, dmactl, NAND_DMA_CTRL);
David Woodhouse5467fb02006-10-06 15:36:29 +0100267 }
David Woodhouse5467fb02006-10-06 15:36:29 +0100268 cafe->datalen = 0;
269
David Woodhousebe8444b2006-10-31 12:36:04 +0800270 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));
David Woodhousefbad5692006-10-22 15:09:33 +0100275 }
David Woodhousebe8444b2006-10-31 12:36:04 +0800276
David Woodhouse195a2532006-10-31 12:30:11 +0800277 cafe_writel(cafe, ctl1, NAND_CTRL1);
David Woodhouse5467fb02006-10-06 15:36:29 +0100278 /* 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) {
Andrew Morton2a7295b22007-02-17 16:02:11 -0800283 int c;
David Woodhouse5467fb02006-10-06 15:36:29 +0100284 uint32_t irqs;
285
Andrew Morton2a7295b22007-02-17 16:02:11 -0800286 for (c = 500000; c != 0; c--) {
David Woodhouse195a2532006-10-31 12:30:11 +0800287 irqs = cafe_readl(cafe, NAND_IRQ);
David Woodhouse5467fb02006-10-06 15:36:29 +0100288 if (irqs & doneint)
289 break;
290 udelay(1);
David Woodhouse8dd851d2006-10-20 02:11:40 +0100291 if (!(c % 100000))
292 cafe_dev_dbg(&cafe->pdev->dev, "Wait for ready, IRQ %x\n", irqs);
David Woodhouse5467fb02006-10-06 15:36:29 +0100293 cpu_relax();
294 }
David Woodhouse195a2532006-10-31 12:30:11 +0800295 cafe_writel(cafe, doneint, NAND_IRQ);
David Woodhousea0207272006-10-28 17:08:38 +0300296 cafe_dev_dbg(&cafe->pdev->dev, "Command %x completed after %d usec, irqs %x (%x)\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800297 command, 500000-c, irqs, cafe_readl(cafe, NAND_IRQ));
David Woodhouse5467fb02006-10-06 15:36:29 +0100298 }
299
David Woodhousecad40652006-11-01 08:19:20 +0800300 WARN_ON(cafe->ctl2 & (1<<30));
David Woodhouse5467fb02006-10-06 15:36:29 +0100301
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:
David Woodhouse5467fb02006-10-06 15:36:29 +0100311 case NAND_CMD_RNDOUT:
David Woodhouse195a2532006-10-31 12:30:11 +0800312 cafe_writel(cafe, cafe->ctl2, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100313 return;
314 }
315 nand_wait_ready(mtd);
David Woodhouse195a2532006-10-31 12:30:11 +0800316 cafe_writel(cafe, cafe->ctl2, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100317}
318
319static void cafe_select_chip(struct mtd_info *mtd, int chipnr)
320{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100321 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100322 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse048c37b2007-05-02 12:26:37 +0100323
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;
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100337 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100338 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse195a2532006-10-31 12:30:11 +0800339 uint32_t irqs = cafe_readl(cafe, NAND_IRQ);
340 cafe_writel(cafe, irqs & ~0x90000000, NAND_IRQ);
David Woodhouse5467fb02006-10-06 15:36:29 +0100341 if (!irqs)
342 return IRQ_NONE;
343
David Woodhouse195a2532006-10-31 12:30:11 +0800344 cafe_dev_dbg(&cafe->pdev->dev, "irq, bits %x (%x)\n", irqs, cafe_readl(cafe, NAND_IRQ));
David Woodhouse5467fb02006-10-06 15:36:29 +0100345 return IRQ_HANDLED;
346}
347
348static void cafe_nand_bug(struct mtd_info *mtd)
349{
350 BUG();
351}
352
353static int cafe_nand_write_oob(struct mtd_info *mtd,
354 struct nand_chip *chip, int page)
355{
Boris Brezillon97d90da2017-11-30 18:01:29 +0100356 return nand_prog_page_op(chip, page, mtd->writesize, chip->oob_poi,
357 mtd->oobsize);
David Woodhouse5467fb02006-10-06 15:36:29 +0100358}
359
360/* Don't use -- use nand_read_oob_std for now */
361static int cafe_nand_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +0300362 int page)
David Woodhouse5467fb02006-10-06 15:36:29 +0100363{
Boris Brezillon97d90da2017-11-30 18:01:29 +0100364 return nand_read_oob_op(chip, page, 0, chip->oob_poi, mtd->oobsize);
David Woodhouse5467fb02006-10-06 15:36:29 +0100365}
366/**
Brian Norris7854d3f2011-06-23 14:12:08 -0700367 * cafe_nand_read_page_syndrome - [REPLACEABLE] hardware ecc syndrome based page read
David Woodhouse5467fb02006-10-06 15:36:29 +0100368 * @mtd: mtd info structure
369 * @chip: nand chip info structure
370 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -0700371 * @oob_required: caller expects OOB data read to chip->oob_poi
David Woodhouse5467fb02006-10-06 15:36:29 +0100372 *
Brian Norrisb9bc8152012-05-11 13:30:34 -0700373 * The hw generator calculates the error syndrome automatically. Therefore
David Woodhouse5467fb02006-10-06 15:36:29 +0100374 * we need a special oob layout and handling.
375 */
376static int cafe_nand_read_page(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -0700377 uint8_t *buf, int oob_required, int page)
David Woodhouse5467fb02006-10-06 15:36:29 +0100378{
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100379 struct cafe_priv *cafe = nand_get_controller_data(chip);
Mike Dunn3f91e942012-04-25 12:06:09 -0700380 unsigned int max_bitflips = 0;
David Woodhouse5467fb02006-10-06 15:36:29 +0100381
David Woodhousefbad5692006-10-22 15:09:33 +0100382 cafe_dev_dbg(&cafe->pdev->dev, "ECC result %08x SYN1,2 %08x\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800383 cafe_readl(cafe, NAND_ECC_RESULT),
384 cafe_readl(cafe, NAND_ECC_SYN01));
David Woodhouse5467fb02006-10-06 15:36:29 +0100385
Boris Brezillon25f815f2017-11-30 18:01:30 +0100386 nand_read_page_op(chip, page, 0, buf, mtd->writesize);
David Woodhouse5467fb02006-10-06 15:36:29 +0100387 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
388
David Woodhouse195a2532006-10-31 12:30:11 +0800389 if (checkecc && cafe_readl(cafe, NAND_ECC_RESULT) & (1<<18)) {
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200390 unsigned short syn[8], pat[4];
391 int pos[4];
392 u8 *oob = chip->oob_poi;
393 int i, n;
David Woodhouse04459d72006-10-22 02:18:48 +0100394
395 for (i=0; i<8; i+=2) {
David Woodhouse195a2532006-10-31 12:30:11 +0800396 uint32_t tmp = cafe_readl(cafe, NAND_ECC_SYN01 + (i*2));
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200397 syn[i] = cafe->rs->index_of[tmp & 0xfff];
398 syn[i+1] = cafe->rs->index_of[(tmp >> 16) & 0xfff];
David Woodhousec9ac59772006-11-30 08:17:38 +0000399 }
David Woodhouse04459d72006-10-22 02:18:48 +0100400
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200401 n = decode_rs16(cafe->rs, NULL, NULL, 1367, syn, 0, pos, 0,
402 pat);
403
404 for (i = 0; i < n; i++) {
405 int p = pos[i];
406
407 /* The 12-bit symbols are mapped to bytes here */
408
409 if (p > 1374) {
410 /* out of range */
411 n = -1374;
412 } else if (p == 0) {
413 /* high four bits do not correspond to data */
414 if (pat[i] > 0xff)
415 n = -2048;
416 else
417 buf[0] ^= pat[i];
418 } else if (p == 1365) {
419 buf[2047] ^= pat[i] >> 4;
420 oob[0] ^= pat[i] << 4;
421 } else if (p > 1365) {
422 if ((p & 1) == 1) {
423 oob[3*p/2 - 2048] ^= pat[i] >> 4;
424 oob[3*p/2 - 2047] ^= pat[i] << 4;
425 } else {
426 oob[3*p/2 - 2049] ^= pat[i] >> 8;
427 oob[3*p/2 - 2048] ^= pat[i];
428 }
429 } else if ((p & 1) == 1) {
430 buf[3*p/2] ^= pat[i] >> 4;
431 buf[3*p/2 + 1] ^= pat[i] << 4;
432 } else {
433 buf[3*p/2 - 1] ^= pat[i] >> 8;
434 buf[3*p/2] ^= pat[i];
435 }
436 }
437
438 if (n < 0) {
David Woodhousebe8444b2006-10-31 12:36:04 +0800439 dev_dbg(&cafe->pdev->dev, "Failed to correct ECC at %08x\n",
440 cafe_readl(cafe, NAND_ADDR2) * 2048);
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200441 for (i = 0; i < 0x5c; i += 4)
David Woodhousebe8444b2006-10-31 12:36:04 +0800442 printk("Register %x: %08x\n", i, readl(cafe->mmio + i));
David Woodhouse04459d72006-10-22 02:18:48 +0100443 mtd->ecc_stats.failed++;
444 } else {
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200445 dev_dbg(&cafe->pdev->dev, "Corrected %d symbol errors\n", n);
446 mtd->ecc_stats.corrected += n;
Mike Dunn3f91e942012-04-25 12:06:09 -0700447 max_bitflips = max_t(unsigned int, max_bitflips, n);
David Woodhouse04459d72006-10-22 02:18:48 +0100448 }
449 }
450
Mike Dunn3f91e942012-04-25 12:06:09 -0700451 return max_bitflips;
David Woodhouse5467fb02006-10-06 15:36:29 +0100452}
453
Boris Brezillona8ed6e62016-02-03 19:59:47 +0100454static int cafe_ooblayout_ecc(struct mtd_info *mtd, int section,
455 struct mtd_oob_region *oobregion)
456{
457 struct nand_chip *chip = mtd_to_nand(mtd);
458
459 if (section)
460 return -ERANGE;
461
462 oobregion->offset = 0;
463 oobregion->length = chip->ecc.total;
464
465 return 0;
466}
467
468static int cafe_ooblayout_free(struct mtd_info *mtd, int section,
469 struct mtd_oob_region *oobregion)
470{
471 struct nand_chip *chip = mtd_to_nand(mtd);
472
473 if (section)
474 return -ERANGE;
475
476 oobregion->offset = chip->ecc.total;
477 oobregion->length = mtd->oobsize - chip->ecc.total;
478
479 return 0;
480}
481
482static const struct mtd_ooblayout_ops cafe_ooblayout_ops = {
483 .ecc = cafe_ooblayout_ecc,
484 .free = cafe_ooblayout_free,
David Woodhouse8dd851d2006-10-20 02:11:40 +0100485};
486
David Woodhousec9ac59772006-11-30 08:17:38 +0000487/* Ick. The BBT code really ought to be able to work this bit out
David Woodhousefbad5692006-10-22 15:09:33 +0100488 for itself from the above, at least for the 2KiB case */
489static uint8_t cafe_bbt_pattern_2048[] = { 'B', 'b', 't', '0' };
490static uint8_t cafe_mirror_pattern_2048[] = { '1', 't', 'b', 'B' };
491
492static uint8_t cafe_bbt_pattern_512[] = { 0xBB };
493static uint8_t cafe_mirror_pattern_512[] = { 0xBC };
494
David Woodhouse8dd851d2006-10-20 02:11:40 +0100495
496static struct nand_bbt_descr cafe_bbt_main_descr_2048 = {
497 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
David Woodhouse048c37b2007-05-02 12:26:37 +0100498 | NAND_BBT_2BIT | NAND_BBT_VERSION,
David Woodhouse8dd851d2006-10-20 02:11:40 +0100499 .offs = 14,
500 .len = 4,
501 .veroffs = 18,
502 .maxblocks = 4,
David Woodhousefbad5692006-10-22 15:09:33 +0100503 .pattern = cafe_bbt_pattern_2048
David Woodhouse8dd851d2006-10-20 02:11:40 +0100504};
505
506static struct nand_bbt_descr cafe_bbt_mirror_descr_2048 = {
507 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
David Woodhouse048c37b2007-05-02 12:26:37 +0100508 | NAND_BBT_2BIT | NAND_BBT_VERSION,
David Woodhouse8dd851d2006-10-20 02:11:40 +0100509 .offs = 14,
510 .len = 4,
511 .veroffs = 18,
512 .maxblocks = 4,
David Woodhousefbad5692006-10-22 15:09:33 +0100513 .pattern = cafe_mirror_pattern_2048
David Woodhouse8dd851d2006-10-20 02:11:40 +0100514};
515
David Woodhousefbad5692006-10-22 15:09:33 +0100516static struct nand_bbt_descr cafe_bbt_main_descr_512 = {
517 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
David Woodhouse048c37b2007-05-02 12:26:37 +0100518 | NAND_BBT_2BIT | NAND_BBT_VERSION,
David Woodhousefbad5692006-10-22 15:09:33 +0100519 .offs = 14,
520 .len = 1,
521 .veroffs = 15,
522 .maxblocks = 4,
523 .pattern = cafe_bbt_pattern_512
524};
525
526static struct nand_bbt_descr cafe_bbt_mirror_descr_512 = {
527 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
David Woodhouse048c37b2007-05-02 12:26:37 +0100528 | NAND_BBT_2BIT | NAND_BBT_VERSION,
David Woodhousefbad5692006-10-22 15:09:33 +0100529 .offs = 14,
530 .len = 1,
531 .veroffs = 15,
532 .maxblocks = 4,
533 .pattern = cafe_mirror_pattern_512
534};
535
536
Josh Wufdbad98d2012-06-25 18:07:45 +0800537static int cafe_nand_write_page_lowlevel(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -0700538 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +0200539 const uint8_t *buf, int oob_required,
540 int page)
David Woodhouse5467fb02006-10-06 15:36:29 +0100541{
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100542 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100543
Boris Brezillon25f815f2017-11-30 18:01:30 +0100544 nand_prog_page_begin_op(chip, page, 0, buf, mtd->writesize);
David Woodhouse8dd851d2006-10-20 02:11:40 +0100545 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
David Woodhouse5467fb02006-10-06 15:36:29 +0100546
547 /* Set up ECC autogeneration */
David Woodhousecad40652006-11-01 08:19:20 +0800548 cafe->ctl2 |= (1<<30);
Josh Wufdbad98d2012-06-25 18:07:45 +0800549
Boris Brezillon25f815f2017-11-30 18:01:30 +0100550 return nand_prog_page_end_op(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100551}
552
Archit Taneja9f3e0422016-02-03 14:29:49 +0530553static int cafe_nand_block_bad(struct mtd_info *mtd, loff_t ofs)
David Woodhouse8dd851d2006-10-20 02:11:40 +0100554{
555 return 0;
556}
David Woodhouse5467fb02006-10-06 15:36:29 +0100557
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200558/* F_2[X]/(X**6+X+1) */
Bill Pemberton06f25512012-11-19 13:23:07 -0500559static unsigned short gf64_mul(u8 a, u8 b)
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200560{
561 u8 c;
562 unsigned int i;
563
564 c = 0;
565 for (i = 0; i < 6; i++) {
566 if (a & 1)
567 c ^= b;
568 a >>= 1;
569 b <<= 1;
570 if ((b & 0x40) != 0)
571 b ^= 0x43;
572 }
573
574 return c;
575}
576
577/* F_64[X]/(X**2+X+A**-1) with A the generator of F_64[X] */
Bill Pemberton06f25512012-11-19 13:23:07 -0500578static u16 gf4096_mul(u16 a, u16 b)
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200579{
580 u8 ah, al, bh, bl, ch, cl;
581
582 ah = a >> 6;
583 al = a & 0x3f;
584 bh = b >> 6;
585 bl = b & 0x3f;
586
587 ch = gf64_mul(ah ^ al, bh ^ bl) ^ gf64_mul(al, bl);
588 cl = gf64_mul(gf64_mul(ah, bh), 0x21) ^ gf64_mul(al, bl);
589
590 return (ch << 6) ^ cl;
591}
592
Bill Pemberton06f25512012-11-19 13:23:07 -0500593static int cafe_mul(int x)
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200594{
595 if (x == 0)
596 return 1;
597 return gf4096_mul(x, 0xe01);
598}
599
Bill Pemberton06f25512012-11-19 13:23:07 -0500600static int cafe_nand_probe(struct pci_dev *pdev,
David Woodhouse5467fb02006-10-06 15:36:29 +0100601 const struct pci_device_id *ent)
602{
603 struct mtd_info *mtd;
604 struct cafe_priv *cafe;
605 uint32_t ctrl;
606 int err = 0;
Huang Shijief02ea4e2014-01-13 14:27:12 +0800607 int old_dma;
David Woodhouse5467fb02006-10-06 15:36:29 +0100608
David Woodhouse06ed24e2007-10-06 14:44:12 -0400609 /* Very old versions shared the same PCI ident for all three
610 functions on the chip. Verify the class too... */
611 if ((pdev->class >> 8) != PCI_CLASS_MEMORY_FLASH)
612 return -ENODEV;
613
David Woodhouse5467fb02006-10-06 15:36:29 +0100614 err = pci_enable_device(pdev);
615 if (err)
616 return err;
617
618 pci_set_master(pdev);
619
Boris BREZILLONe787dfd2015-12-10 08:59:55 +0100620 cafe = kzalloc(sizeof(*cafe), GFP_KERNEL);
621 if (!cafe)
David Woodhouse5467fb02006-10-06 15:36:29 +0100622 return -ENOMEM;
David Woodhouse5467fb02006-10-06 15:36:29 +0100623
Boris BREZILLONe787dfd2015-12-10 08:59:55 +0100624 mtd = nand_to_mtd(&cafe->nand);
David Woodhousec451c7c2009-04-04 15:27:45 +0100625 mtd->dev.parent = &pdev->dev;
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100626 nand_set_controller_data(&cafe->nand, cafe);
David Woodhouse5467fb02006-10-06 15:36:29 +0100627
628 cafe->pdev = pdev;
629 cafe->mmio = pci_iomap(pdev, 0, 0);
630 if (!cafe->mmio) {
631 dev_warn(&pdev->dev, "failed to iomap\n");
632 err = -ENOMEM;
633 goto out_free_mtd;
634 }
David Woodhouse5467fb02006-10-06 15:36:29 +0100635
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200636 cafe->rs = init_rs_non_canonical(12, &cafe_mul, 0, 1, 8);
637 if (!cafe->rs) {
638 err = -ENOMEM;
639 goto out_ior;
640 }
641
David Woodhouse5467fb02006-10-06 15:36:29 +0100642 cafe->nand.cmdfunc = cafe_nand_cmdfunc;
643 cafe->nand.dev_ready = cafe_device_ready;
644 cafe->nand.read_byte = cafe_read_byte;
645 cafe->nand.read_buf = cafe_read_buf;
646 cafe->nand.write_buf = cafe_write_buf;
647 cafe->nand.select_chip = cafe_select_chip;
Miquel Raynalb9587582018-03-19 14:47:19 +0100648 cafe->nand.set_features = nand_get_set_features_notsupp;
649 cafe->nand.get_features = nand_get_set_features_notsupp;
David Woodhouse5467fb02006-10-06 15:36:29 +0100650
651 cafe->nand.chip_delay = 0;
652
653 /* Enable the following for a flash based bad block table */
Brian Norrisbb9ebd42011-05-31 16:31:23 -0700654 cafe->nand.bbt_options = NAND_BBT_USE_FLASH;
David Woodhouse8dd851d2006-10-20 02:11:40 +0100655
656 if (skipbbt) {
657 cafe->nand.options |= NAND_SKIP_BBTSCAN;
658 cafe->nand.block_bad = cafe_nand_block_bad;
659 }
David Woodhousec9ac59772006-11-30 08:17:38 +0000660
David Woodhouse527a4f42007-01-23 15:35:27 +0800661 if (numtimings && numtimings != 3) {
662 dev_warn(&cafe->pdev->dev, "%d timing register values ignored; precisely three are required\n", numtimings);
663 }
664
665 if (numtimings == 3) {
David Woodhouse527a4f42007-01-23 15:35:27 +0800666 cafe_dev_dbg(&cafe->pdev->dev, "Using provided timings (%08x %08x %08x)\n",
David Woodhouse8e5368a2007-03-23 10:40:04 +0000667 timing[0], timing[1], timing[2]);
David Woodhouse527a4f42007-01-23 15:35:27 +0800668 } else {
David Woodhouse8e5368a2007-03-23 10:40:04 +0000669 timing[0] = cafe_readl(cafe, NAND_TIMING1);
670 timing[1] = cafe_readl(cafe, NAND_TIMING2);
671 timing[2] = cafe_readl(cafe, NAND_TIMING3);
David Woodhouse527a4f42007-01-23 15:35:27 +0800672
David Woodhouse8e5368a2007-03-23 10:40:04 +0000673 if (timing[0] | timing[1] | timing[2]) {
674 cafe_dev_dbg(&cafe->pdev->dev, "Timing registers already set (%08x %08x %08x)\n",
675 timing[0], timing[1], timing[2]);
David Woodhouse527a4f42007-01-23 15:35:27 +0800676 } else {
677 dev_warn(&cafe->pdev->dev, "Timing registers unset; using most conservative defaults\n");
David Woodhouse8e5368a2007-03-23 10:40:04 +0000678 timing[0] = timing[1] = timing[2] = 0xffffffff;
David Woodhouse527a4f42007-01-23 15:35:27 +0800679 }
680 }
681
David Woodhousedcc41bc2006-10-27 09:55:34 +0300682 /* Start off by resetting the NAND controller completely */
David Woodhouse195a2532006-10-31 12:30:11 +0800683 cafe_writel(cafe, 1, NAND_RESET);
684 cafe_writel(cafe, 0, NAND_RESET);
685
David Woodhouse8e5368a2007-03-23 10:40:04 +0000686 cafe_writel(cafe, timing[0], NAND_TIMING1);
687 cafe_writel(cafe, timing[1], NAND_TIMING2);
688 cafe_writel(cafe, timing[2], NAND_TIMING3);
David Woodhousedcc41bc2006-10-27 09:55:34 +0300689
David Woodhouse195a2532006-10-31 12:30:11 +0800690 cafe_writel(cafe, 0xffffffff, NAND_IRQ_MASK);
Thomas Gleixner2db63462007-02-14 00:33:20 -0800691 err = request_irq(pdev->irq, &cafe_nand_interrupt, IRQF_SHARED,
692 "CAFE NAND", mtd);
David Woodhouse5467fb02006-10-06 15:36:29 +0100693 if (err) {
694 dev_warn(&pdev->dev, "Could not register IRQ %d\n", pdev->irq);
Huang Shijief02ea4e2014-01-13 14:27:12 +0800695 goto out_ior;
David Woodhouse5467fb02006-10-06 15:36:29 +0100696 }
David Woodhousef7c37d72007-01-23 15:44:10 +0800697
David Woodhouse5467fb02006-10-06 15:36:29 +0100698 /* Disable master reset, enable NAND clock */
David Woodhouse195a2532006-10-31 12:30:11 +0800699 ctrl = cafe_readl(cafe, GLOBAL_CTRL);
David Woodhouse5467fb02006-10-06 15:36:29 +0100700 ctrl &= 0xffffeff0;
701 ctrl |= 0x00007000;
David Woodhouse195a2532006-10-31 12:30:11 +0800702 cafe_writel(cafe, ctrl | 0x05, GLOBAL_CTRL);
703 cafe_writel(cafe, ctrl | 0x0a, GLOBAL_CTRL);
704 cafe_writel(cafe, 0, NAND_DMA_CTRL);
David Woodhouse5467fb02006-10-06 15:36:29 +0100705
David Woodhouse195a2532006-10-31 12:30:11 +0800706 cafe_writel(cafe, 0x7006, GLOBAL_CTRL);
707 cafe_writel(cafe, 0x700a, GLOBAL_CTRL);
David Woodhouse5467fb02006-10-06 15:36:29 +0100708
Huang Shijief02ea4e2014-01-13 14:27:12 +0800709 /* Enable NAND IRQ in global IRQ mask register */
710 cafe_writel(cafe, 0x80000007, GLOBAL_IRQ_MASK);
711 cafe_dev_dbg(&cafe->pdev->dev, "Control %x, IRQ mask %x\n",
712 cafe_readl(cafe, GLOBAL_CTRL),
713 cafe_readl(cafe, GLOBAL_IRQ_MASK));
714
715 /* Do not use the DMA for the nand_scan_ident() */
716 old_dma = usedma;
717 usedma = 0;
718
719 /* Scan to find existence of the device */
Masahiro Yamada72480e42016-11-04 19:43:06 +0900720 err = nand_scan_ident(mtd, 2, NULL);
721 if (err)
Huang Shijief02ea4e2014-01-13 14:27:12 +0800722 goto out_irq;
Huang Shijief02ea4e2014-01-13 14:27:12 +0800723
Masahiro Yamadaf880b072017-12-05 17:47:14 +0900724 cafe->dmabuf = dma_alloc_coherent(&cafe->pdev->dev, 2112,
725 &cafe->dmaaddr, GFP_KERNEL);
Huang Shijief02ea4e2014-01-13 14:27:12 +0800726 if (!cafe->dmabuf) {
727 err = -ENOMEM;
728 goto out_irq;
729 }
Huang Shijief02ea4e2014-01-13 14:27:12 +0800730
David Woodhouse5467fb02006-10-06 15:36:29 +0100731 /* Set up DMA address */
Masahiro Yamada958ef112017-12-05 17:49:56 +0900732 cafe_writel(cafe, lower_32_bits(cafe->dmaaddr), NAND_DMA_ADDR0);
733 cafe_writel(cafe, upper_32_bits(cafe->dmaaddr), NAND_DMA_ADDR1);
David Woodhousefbad5692006-10-22 15:09:33 +0100734
David Woodhouse8dd851d2006-10-20 02:11:40 +0100735 cafe_dev_dbg(&cafe->pdev->dev, "Set DMA address to %x (virt %p)\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800736 cafe_readl(cafe, NAND_DMA_ADDR0), cafe->dmabuf);
David Woodhouse5467fb02006-10-06 15:36:29 +0100737
Huang Shijief02ea4e2014-01-13 14:27:12 +0800738 /* Restore the DMA flag */
739 usedma = old_dma;
David Woodhouse5467fb02006-10-06 15:36:29 +0100740
741 cafe->ctl2 = 1<<27; /* Reed-Solomon ECC */
742 if (mtd->writesize == 2048)
743 cafe->ctl2 |= 1<<29; /* 2KiB page size */
744
745 /* Set up ECC according to the type of chip we found */
Boris Brezillona8ed6e62016-02-03 19:59:47 +0100746 mtd_set_ooblayout(mtd, &cafe_ooblayout_ops);
David Woodhousefbad5692006-10-22 15:09:33 +0100747 if (mtd->writesize == 2048) {
David Woodhouse8dd851d2006-10-20 02:11:40 +0100748 cafe->nand.bbt_td = &cafe_bbt_main_descr_2048;
749 cafe->nand.bbt_md = &cafe_bbt_mirror_descr_2048;
David Woodhousefbad5692006-10-22 15:09:33 +0100750 } else if (mtd->writesize == 512) {
David Woodhousefbad5692006-10-22 15:09:33 +0100751 cafe->nand.bbt_td = &cafe_bbt_main_descr_512;
752 cafe->nand.bbt_md = &cafe_bbt_mirror_descr_512;
David Woodhouse5467fb02006-10-06 15:36:29 +0100753 } else {
Shreeya Patel63fa37f2018-02-22 22:01:22 +0530754 pr_warn("Unexpected NAND flash writesize %d. Aborting\n",
755 mtd->writesize);
Huang Shijief02ea4e2014-01-13 14:27:12 +0800756 goto out_free_dma;
David Woodhouse5467fb02006-10-06 15:36:29 +0100757 }
David Woodhousefbad5692006-10-22 15:09:33 +0100758 cafe->nand.ecc.mode = NAND_ECC_HW_SYNDROME;
759 cafe->nand.ecc.size = mtd->writesize;
760 cafe->nand.ecc.bytes = 14;
Mike Dunn6a918ba2012-03-11 14:21:11 -0700761 cafe->nand.ecc.strength = 4;
David Woodhousefbad5692006-10-22 15:09:33 +0100762 cafe->nand.ecc.hwctl = (void *)cafe_nand_bug;
763 cafe->nand.ecc.calculate = (void *)cafe_nand_bug;
764 cafe->nand.ecc.correct = (void *)cafe_nand_bug;
David Woodhousefbad5692006-10-22 15:09:33 +0100765 cafe->nand.ecc.write_page = cafe_nand_write_page_lowlevel;
766 cafe->nand.ecc.write_oob = cafe_nand_write_oob;
767 cafe->nand.ecc.read_page = cafe_nand_read_page;
768 cafe->nand.ecc.read_oob = cafe_nand_read_oob;
David Woodhouse5467fb02006-10-06 15:36:29 +0100769
770 err = nand_scan_tail(mtd);
771 if (err)
Huang Shijief02ea4e2014-01-13 14:27:12 +0800772 goto out_free_dma;
David Woodhouse5467fb02006-10-06 15:36:29 +0100773
David Woodhouse5467fb02006-10-06 15:36:29 +0100774 pci_set_drvdata(pdev, mtd);
David Woodhouse9c37f332007-10-28 21:56:39 -0400775
Philip Rakity68874412008-10-08 16:08:20 -0700776 mtd->name = "cafe_nand";
Artem Bityutskiy42d7fbe2012-03-09 19:24:26 +0200777 mtd_device_parse_register(mtd, part_probes, NULL, NULL, 0);
Dmitry Eremin-Solenikov4d32de82011-06-02 18:00:29 +0400778
David Woodhouse5467fb02006-10-06 15:36:29 +0100779 goto out;
780
Huang Shijief02ea4e2014-01-13 14:27:12 +0800781 out_free_dma:
Masahiro Yamadaf880b072017-12-05 17:47:14 +0900782 dma_free_coherent(&cafe->pdev->dev, 2112, cafe->dmabuf, cafe->dmaaddr);
David Woodhouse5467fb02006-10-06 15:36:29 +0100783 out_irq:
784 /* Disable NAND IRQ in global IRQ mask register */
David Woodhouse195a2532006-10-31 12:30:11 +0800785 cafe_writel(cafe, ~1 & cafe_readl(cafe, GLOBAL_IRQ_MASK), GLOBAL_IRQ_MASK);
David Woodhouse5467fb02006-10-06 15:36:29 +0100786 free_irq(pdev->irq, mtd);
David Woodhouse5467fb02006-10-06 15:36:29 +0100787 out_ior:
788 pci_iounmap(pdev, cafe->mmio);
789 out_free_mtd:
Boris BREZILLONe787dfd2015-12-10 08:59:55 +0100790 kfree(cafe);
David Woodhouse5467fb02006-10-06 15:36:29 +0100791 out:
792 return err;
793}
794
Bill Pemberton810b7e02012-11-19 13:26:04 -0500795static void cafe_nand_remove(struct pci_dev *pdev)
David Woodhouse5467fb02006-10-06 15:36:29 +0100796{
797 struct mtd_info *mtd = pci_get_drvdata(pdev);
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100798 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100799 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100800
David Woodhouse5467fb02006-10-06 15:36:29 +0100801 /* Disable NAND IRQ in global IRQ mask register */
David Woodhouse195a2532006-10-31 12:30:11 +0800802 cafe_writel(cafe, ~1 & cafe_readl(cafe, GLOBAL_IRQ_MASK), GLOBAL_IRQ_MASK);
David Woodhouse5467fb02006-10-06 15:36:29 +0100803 free_irq(pdev->irq, mtd);
804 nand_release(mtd);
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200805 free_rs(cafe->rs);
David Woodhouse5467fb02006-10-06 15:36:29 +0100806 pci_iounmap(pdev, cafe->mmio);
Masahiro Yamadaf880b072017-12-05 17:47:14 +0900807 dma_free_coherent(&cafe->pdev->dev, 2112, cafe->dmabuf, cafe->dmaaddr);
Boris BREZILLONe787dfd2015-12-10 08:59:55 +0100808 kfree(cafe);
David Woodhouse5467fb02006-10-06 15:36:29 +0100809}
810
Márton Németh377ace02010-01-09 15:10:34 +0100811static const struct pci_device_id cafe_nand_tbl[] = {
David Woodhouse514fca42008-09-03 09:47:17 +0100812 { PCI_VENDOR_ID_MARVELL, PCI_DEVICE_ID_MARVELL_88ALP01_NAND,
813 PCI_ANY_ID, PCI_ANY_ID },
David Woodhouse06ed24e2007-10-06 14:44:12 -0400814 { }
David Woodhouse5467fb02006-10-06 15:36:29 +0100815};
816
817MODULE_DEVICE_TABLE(pci, cafe_nand_tbl);
818
David Woodhouse1fcf8ce2007-10-06 14:59:32 -0400819static int cafe_nand_resume(struct pci_dev *pdev)
820{
821 uint32_t ctrl;
822 struct mtd_info *mtd = pci_get_drvdata(pdev);
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100823 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100824 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse1fcf8ce2007-10-06 14:59:32 -0400825
826 /* Start off by resetting the NAND controller completely */
827 cafe_writel(cafe, 1, NAND_RESET);
828 cafe_writel(cafe, 0, NAND_RESET);
829 cafe_writel(cafe, 0xffffffff, NAND_IRQ_MASK);
830
831 /* Restore timing configuration */
832 cafe_writel(cafe, timing[0], NAND_TIMING1);
833 cafe_writel(cafe, timing[1], NAND_TIMING2);
834 cafe_writel(cafe, timing[2], NAND_TIMING3);
835
836 /* Disable master reset, enable NAND clock */
837 ctrl = cafe_readl(cafe, GLOBAL_CTRL);
838 ctrl &= 0xffffeff0;
839 ctrl |= 0x00007000;
840 cafe_writel(cafe, ctrl | 0x05, GLOBAL_CTRL);
841 cafe_writel(cafe, ctrl | 0x0a, GLOBAL_CTRL);
842 cafe_writel(cafe, 0, NAND_DMA_CTRL);
843 cafe_writel(cafe, 0x7006, GLOBAL_CTRL);
844 cafe_writel(cafe, 0x700a, GLOBAL_CTRL);
845
846 /* Set up DMA address */
847 cafe_writel(cafe, cafe->dmaaddr & 0xffffffff, NAND_DMA_ADDR0);
848 if (sizeof(cafe->dmaaddr) > 4)
849 /* Shift in two parts to shut the compiler up */
850 cafe_writel(cafe, (cafe->dmaaddr >> 16) >> 16, NAND_DMA_ADDR1);
851 else
852 cafe_writel(cafe, 0, NAND_DMA_ADDR1);
853
854 /* Enable NAND IRQ in global IRQ mask register */
855 cafe_writel(cafe, 0x80000007, GLOBAL_IRQ_MASK);
856 return 0;
857}
858
David Woodhouse5467fb02006-10-06 15:36:29 +0100859static struct pci_driver cafe_nand_pci_driver = {
860 .name = "CAFÉ NAND",
861 .id_table = cafe_nand_tbl,
862 .probe = cafe_nand_probe,
Bill Pemberton5153b882012-11-19 13:21:24 -0500863 .remove = cafe_nand_remove,
David Woodhouse5467fb02006-10-06 15:36:29 +0100864 .resume = cafe_nand_resume,
David Woodhouse5467fb02006-10-06 15:36:29 +0100865};
866
Axel Lin4d16cd62012-04-03 09:59:44 +0800867module_pci_driver(cafe_nand_pci_driver);
David Woodhouse5467fb02006-10-06 15:36:29 +0100868
869MODULE_LICENSE("GPL");
870MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
David Woodhousef7c37d72007-01-23 15:44:10 +0800871MODULE_DESCRIPTION("NAND flash driver for OLPC CAFÉ chip");