blob: 94e5f7a56084fb0df14037edb542161677ab2fd4 [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;
Miquel Raynal73a27db2018-07-25 15:31:37 +020070 bool usedma;
David Woodhouse5467fb02006-10-06 15:36:29 +010071 dma_addr_t dmaaddr;
72 unsigned char *dmabuf;
David Woodhouse5467fb02006-10-06 15:36:29 +010073};
74
David Woodhouseb478c772006-10-27 14:50:04 +030075static int usedma = 1;
David Woodhouse5467fb02006-10-06 15:36:29 +010076module_param(usedma, int, 0644);
77
David Woodhouse8dd851d2006-10-20 02:11:40 +010078static int skipbbt = 0;
79module_param(skipbbt, int, 0644);
80
81static int debug = 0;
82module_param(debug, int, 0644);
83
David Woodhousebe8444b2006-10-31 12:36:04 +080084static int regdebug = 0;
85module_param(regdebug, int, 0644);
86
David Woodhouseb478c772006-10-27 14:50:04 +030087static int checkecc = 1;
David Woodhouse470b0a92006-10-23 14:29:04 +010088module_param(checkecc, int, 0644);
89
Al Viro64a6f952007-10-14 19:35:30 +010090static unsigned int numtimings;
David Woodhouse527a4f42007-01-23 15:35:27 +080091static int timing[3];
92module_param_array(timing, int, &numtimings, 0644);
David Woodhouseb478c772006-10-27 14:50:04 +030093
Philip Rakity68874412008-10-08 16:08:20 -070094static const char *part_probes[] = { "cmdlinepart", "RedBoot", NULL };
David Woodhouse9c37f332007-10-28 21:56:39 -040095
David Woodhouse04459d72006-10-22 02:18:48 +010096/* Hrm. Why isn't this already conditional on something in the struct device? */
David Woodhouse8dd851d2006-10-20 02:11:40 +010097#define cafe_dev_dbg(dev, args...) do { if (debug) dev_dbg(dev, ##args); } while(0)
98
David Woodhouse195a2532006-10-31 12:30:11 +080099/* Make it easier to switch to PIO if we need to */
100#define cafe_readl(cafe, addr) readl((cafe)->mmio + CAFE_##addr)
101#define cafe_writel(cafe, datum, addr) writel(datum, (cafe)->mmio + CAFE_##addr)
David Woodhouse8dd851d2006-10-20 02:11:40 +0100102
David Woodhouse5467fb02006-10-06 15:36:29 +0100103static int cafe_device_ready(struct mtd_info *mtd)
104{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100105 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100106 struct cafe_priv *cafe = nand_get_controller_data(chip);
Dan Carpenter48f8b642012-06-09 19:08:25 +0300107 int result = !!(cafe_readl(cafe, NAND_STATUS) & 0x40000000);
David Woodhouse195a2532006-10-31 12:30:11 +0800108 uint32_t irqs = cafe_readl(cafe, NAND_IRQ);
David Woodhousefbad5692006-10-22 15:09:33 +0100109
David Woodhouse195a2532006-10-31 12:30:11 +0800110 cafe_writel(cafe, irqs, NAND_IRQ);
David Woodhousefbad5692006-10-22 15:09:33 +0100111
David Woodhouse8dd851d2006-10-20 02:11:40 +0100112 cafe_dev_dbg(&cafe->pdev->dev, "NAND device is%s ready, IRQ %x (%x) (%x,%x)\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800113 result?"":" not", irqs, cafe_readl(cafe, NAND_IRQ),
114 cafe_readl(cafe, GLOBAL_IRQ), cafe_readl(cafe, GLOBAL_IRQ_MASK));
David Woodhousefbad5692006-10-22 15:09:33 +0100115
David Woodhouse5467fb02006-10-06 15:36:29 +0100116 return result;
117}
118
119
120static void cafe_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
121{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100122 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100123 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100124
Miquel Raynal73a27db2018-07-25 15:31:37 +0200125 if (cafe->usedma)
David Woodhouse5467fb02006-10-06 15:36:29 +0100126 memcpy(cafe->dmabuf + cafe->datalen, buf, len);
127 else
128 memcpy_toio(cafe->mmio + CAFE_NAND_WRITE_DATA + cafe->datalen, buf, len);
David Woodhousefbad5692006-10-22 15:09:33 +0100129
David Woodhouse5467fb02006-10-06 15:36:29 +0100130 cafe->datalen += len;
131
David Woodhouse8dd851d2006-10-20 02:11:40 +0100132 cafe_dev_dbg(&cafe->pdev->dev, "Copy 0x%x bytes to write buffer. datalen 0x%x\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100133 len, cafe->datalen);
134}
135
136static void cafe_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
137{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100138 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100139 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100140
Miquel Raynal73a27db2018-07-25 15:31:37 +0200141 if (cafe->usedma)
David Woodhouse5467fb02006-10-06 15:36:29 +0100142 memcpy(buf, cafe->dmabuf + cafe->datalen, len);
143 else
144 memcpy_fromio(buf, cafe->mmio + CAFE_NAND_READ_DATA + cafe->datalen, len);
145
David Woodhouse8dd851d2006-10-20 02:11:40 +0100146 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 +0100147 len, cafe->datalen);
148 cafe->datalen += len;
149}
150
151static uint8_t cafe_read_byte(struct mtd_info *mtd)
152{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100153 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100154 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100155 uint8_t d;
156
157 cafe_read_buf(mtd, &d, 1);
David Woodhouse8dd851d2006-10-20 02:11:40 +0100158 cafe_dev_dbg(&cafe->pdev->dev, "Read %02x\n", d);
David Woodhouse5467fb02006-10-06 15:36:29 +0100159
160 return d;
161}
162
163static void cafe_nand_cmdfunc(struct mtd_info *mtd, unsigned command,
164 int column, int page_addr)
165{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100166 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100167 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100168 int adrbytes = 0;
169 uint32_t ctl1;
170 uint32_t doneint = 0x80000000;
David Woodhouse5467fb02006-10-06 15:36:29 +0100171
David Woodhouse8dd851d2006-10-20 02:11:40 +0100172 cafe_dev_dbg(&cafe->pdev->dev, "cmdfunc %02x, 0x%x, 0x%x\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100173 command, column, page_addr);
174
175 if (command == NAND_CMD_ERASE2 || command == NAND_CMD_PAGEPROG) {
176 /* Second half of a command we already calculated */
David Woodhouse195a2532006-10-31 12:30:11 +0800177 cafe_writel(cafe, cafe->ctl2 | 0x100 | command, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100178 ctl1 = cafe->ctl1;
David Woodhousecad40652006-11-01 08:19:20 +0800179 cafe->ctl2 &= ~(1<<30);
David Woodhouse8dd851d2006-10-20 02:11:40 +0100180 cafe_dev_dbg(&cafe->pdev->dev, "Continue command, ctl1 %08x, #data %d\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100181 cafe->ctl1, cafe->nr_data);
182 goto do_command;
183 }
184 /* Reset ECC engine */
David Woodhouse195a2532006-10-31 12:30:11 +0800185 cafe_writel(cafe, 0, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100186
187 /* Emulate NAND_CMD_READOOB on large-page chips */
188 if (mtd->writesize > 512 &&
189 command == NAND_CMD_READOOB) {
190 column += mtd->writesize;
191 command = NAND_CMD_READ0;
192 }
193
194 /* FIXME: Do we need to send read command before sending data
195 for small-page chips, to position the buffer correctly? */
196
197 if (column != -1) {
David Woodhouse195a2532006-10-31 12:30:11 +0800198 cafe_writel(cafe, column, NAND_ADDR1);
David Woodhouse5467fb02006-10-06 15:36:29 +0100199 adrbytes = 2;
200 if (page_addr != -1)
201 goto write_adr2;
202 } else if (page_addr != -1) {
David Woodhouse195a2532006-10-31 12:30:11 +0800203 cafe_writel(cafe, page_addr & 0xffff, NAND_ADDR1);
David Woodhouse5467fb02006-10-06 15:36:29 +0100204 page_addr >>= 16;
205 write_adr2:
David Woodhouse195a2532006-10-31 12:30:11 +0800206 cafe_writel(cafe, page_addr, NAND_ADDR2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100207 adrbytes += 2;
208 if (mtd->size > mtd->writesize << 16)
209 adrbytes++;
210 }
211
212 cafe->data_pos = cafe->datalen = 0;
213
David Woodhouse048c37b2007-05-02 12:26:37 +0100214 /* Set command valid bit, mask in the chip select bit */
215 ctl1 = 0x80000000 | command | (cafe->ctl1 & CTRL1_CHIPSELECT);
David Woodhouse5467fb02006-10-06 15:36:29 +0100216
217 /* Set RD or WR bits as appropriate */
218 if (command == NAND_CMD_READID || command == NAND_CMD_STATUS) {
219 ctl1 |= (1<<26); /* rd */
220 /* Always 5 bytes, for now */
David Woodhouse8dd851d2006-10-20 02:11:40 +0100221 cafe->datalen = 4;
David Woodhouse5467fb02006-10-06 15:36:29 +0100222 /* And one address cycle -- even for STATUS, since the controller doesn't work without */
223 adrbytes = 1;
224 } else if (command == NAND_CMD_READ0 || command == NAND_CMD_READ1 ||
225 command == NAND_CMD_READOOB || command == NAND_CMD_RNDOUT) {
226 ctl1 |= 1<<26; /* rd */
227 /* For now, assume just read to end of page */
228 cafe->datalen = mtd->writesize + mtd->oobsize - column;
229 } else if (command == NAND_CMD_SEQIN)
230 ctl1 |= 1<<25; /* wr */
231
232 /* Set number of address bytes */
233 if (adrbytes)
234 ctl1 |= ((adrbytes-1)|8) << 27;
235
236 if (command == NAND_CMD_SEQIN || command == NAND_CMD_ERASE1) {
David Woodhousec9ac59772006-11-30 08:17:38 +0000237 /* Ignore the first command of a pair; the hardware
David Woodhouse5467fb02006-10-06 15:36:29 +0100238 deals with them both at once, later */
239 cafe->ctl1 = ctl1;
David Woodhouse8dd851d2006-10-20 02:11:40 +0100240 cafe_dev_dbg(&cafe->pdev->dev, "Setup for delayed command, ctl1 %08x, dlen %x\n",
David Woodhouse5467fb02006-10-06 15:36:29 +0100241 cafe->ctl1, cafe->datalen);
242 return;
243 }
244 /* RNDOUT and READ0 commands need a following byte */
245 if (command == NAND_CMD_RNDOUT)
David Woodhouse195a2532006-10-31 12:30:11 +0800246 cafe_writel(cafe, cafe->ctl2 | 0x100 | NAND_CMD_RNDOUTSTART, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100247 else if (command == NAND_CMD_READ0 && mtd->writesize > 512)
David Woodhouse195a2532006-10-31 12:30:11 +0800248 cafe_writel(cafe, cafe->ctl2 | 0x100 | NAND_CMD_READSTART, NAND_CTRL2);
David Woodhouse5467fb02006-10-06 15:36:29 +0100249
250 do_command:
David Woodhousec9ac59772006-11-30 08:17:38 +0000251 cafe_dev_dbg(&cafe->pdev->dev, "dlen %x, ctl1 %x, ctl2 %x\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800252 cafe->datalen, ctl1, cafe_readl(cafe, NAND_CTRL2));
David Woodhousefbad5692006-10-22 15:09:33 +0100253
David Woodhouse5467fb02006-10-06 15:36:29 +0100254 /* NB: The datasheet lies -- we really should be subtracting 1 here */
David Woodhouse195a2532006-10-31 12:30:11 +0800255 cafe_writel(cafe, cafe->datalen, NAND_DATA_LEN);
256 cafe_writel(cafe, 0x90000000, NAND_IRQ);
Miquel Raynal73a27db2018-07-25 15:31:37 +0200257 if (cafe->usedma && (ctl1 & (3<<25))) {
David Woodhouse5467fb02006-10-06 15:36:29 +0100258 uint32_t dmactl = 0xc0000000 + cafe->datalen;
259 /* If WR or RD bits set, set up DMA */
260 if (ctl1 & (1<<26)) {
261 /* It's a read */
262 dmactl |= (1<<29);
263 /* ... so it's done when the DMA is done, not just
264 the command. */
265 doneint = 0x10000000;
266 }
David Woodhouse195a2532006-10-31 12:30:11 +0800267 cafe_writel(cafe, dmactl, NAND_DMA_CTRL);
David Woodhouse5467fb02006-10-06 15:36:29 +0100268 }
David Woodhouse5467fb02006-10-06 15:36:29 +0100269 cafe->datalen = 0;
270
David Woodhousebe8444b2006-10-31 12:36:04 +0800271 if (unlikely(regdebug)) {
272 int i;
273 printk("About to write command %08x to register 0\n", ctl1);
274 for (i=4; i< 0x5c; i+=4)
275 printk("Register %x: %08x\n", i, readl(cafe->mmio + i));
David Woodhousefbad5692006-10-22 15:09:33 +0100276 }
David Woodhousebe8444b2006-10-31 12:36:04 +0800277
David Woodhouse195a2532006-10-31 12:30:11 +0800278 cafe_writel(cafe, ctl1, NAND_CTRL1);
David Woodhouse5467fb02006-10-06 15:36:29 +0100279 /* Apply this short delay always to ensure that we do wait tWB in
280 * any case on any machine. */
281 ndelay(100);
282
283 if (1) {
Andrew Morton2a7295b22007-02-17 16:02:11 -0800284 int c;
David Woodhouse5467fb02006-10-06 15:36:29 +0100285 uint32_t irqs;
286
Andrew Morton2a7295b22007-02-17 16:02:11 -0800287 for (c = 500000; c != 0; c--) {
David Woodhouse195a2532006-10-31 12:30:11 +0800288 irqs = cafe_readl(cafe, NAND_IRQ);
David Woodhouse5467fb02006-10-06 15:36:29 +0100289 if (irqs & doneint)
290 break;
291 udelay(1);
David Woodhouse8dd851d2006-10-20 02:11:40 +0100292 if (!(c % 100000))
293 cafe_dev_dbg(&cafe->pdev->dev, "Wait for ready, IRQ %x\n", irqs);
David Woodhouse5467fb02006-10-06 15:36:29 +0100294 cpu_relax();
295 }
David Woodhouse195a2532006-10-31 12:30:11 +0800296 cafe_writel(cafe, doneint, NAND_IRQ);
David Woodhousea0207272006-10-28 17:08:38 +0300297 cafe_dev_dbg(&cafe->pdev->dev, "Command %x completed after %d usec, irqs %x (%x)\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800298 command, 500000-c, irqs, cafe_readl(cafe, NAND_IRQ));
David Woodhouse5467fb02006-10-06 15:36:29 +0100299 }
300
David Woodhousecad40652006-11-01 08:19:20 +0800301 WARN_ON(cafe->ctl2 & (1<<30));
David Woodhouse5467fb02006-10-06 15:36:29 +0100302
303 switch (command) {
304
305 case NAND_CMD_CACHEDPROG:
306 case NAND_CMD_PAGEPROG:
307 case NAND_CMD_ERASE1:
308 case NAND_CMD_ERASE2:
309 case NAND_CMD_SEQIN:
310 case NAND_CMD_RNDIN:
311 case NAND_CMD_STATUS:
David Woodhouse5467fb02006-10-06 15:36:29 +0100312 case NAND_CMD_RNDOUT:
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 }
Boris Brezillon2b356ab2018-09-06 14:05:16 +0200316 nand_wait_ready(chip);
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{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100322 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100323 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse048c37b2007-05-02 12:26:37 +0100324
325 cafe_dev_dbg(&cafe->pdev->dev, "select_chip %d\n", chipnr);
326
327 /* Mask the appropriate bit into the stored value of ctl1
328 which will be used by cafe_nand_cmdfunc() */
329 if (chipnr)
330 cafe->ctl1 |= CTRL1_CHIPSELECT;
331 else
332 cafe->ctl1 &= ~CTRL1_CHIPSELECT;
David Woodhouse5467fb02006-10-06 15:36:29 +0100333}
David Woodhousefbad5692006-10-22 15:09:33 +0100334
Alan Cox67cd7242009-04-22 15:02:23 +0100335static irqreturn_t cafe_nand_interrupt(int irq, void *id)
David Woodhouse5467fb02006-10-06 15:36:29 +0100336{
337 struct mtd_info *mtd = id;
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100338 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100339 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse195a2532006-10-31 12:30:11 +0800340 uint32_t irqs = cafe_readl(cafe, NAND_IRQ);
341 cafe_writel(cafe, irqs & ~0x90000000, NAND_IRQ);
David Woodhouse5467fb02006-10-06 15:36:29 +0100342 if (!irqs)
343 return IRQ_NONE;
344
David Woodhouse195a2532006-10-31 12:30:11 +0800345 cafe_dev_dbg(&cafe->pdev->dev, "irq, bits %x (%x)\n", irqs, cafe_readl(cafe, NAND_IRQ));
David Woodhouse5467fb02006-10-06 15:36:29 +0100346 return IRQ_HANDLED;
347}
348
David Woodhouse5467fb02006-10-06 15:36:29 +0100349static int cafe_nand_write_oob(struct mtd_info *mtd,
350 struct nand_chip *chip, int page)
351{
Boris Brezillon97d90da2017-11-30 18:01:29 +0100352 return nand_prog_page_op(chip, page, mtd->writesize, chip->oob_poi,
353 mtd->oobsize);
David Woodhouse5467fb02006-10-06 15:36:29 +0100354}
355
356/* Don't use -- use nand_read_oob_std for now */
357static int cafe_nand_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +0300358 int page)
David Woodhouse5467fb02006-10-06 15:36:29 +0100359{
Boris Brezillon97d90da2017-11-30 18:01:29 +0100360 return nand_read_oob_op(chip, page, 0, chip->oob_poi, mtd->oobsize);
David Woodhouse5467fb02006-10-06 15:36:29 +0100361}
362/**
Brian Norris7854d3f2011-06-23 14:12:08 -0700363 * cafe_nand_read_page_syndrome - [REPLACEABLE] hardware ecc syndrome based page read
David Woodhouse5467fb02006-10-06 15:36:29 +0100364 * @mtd: mtd info structure
365 * @chip: nand chip info structure
366 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -0700367 * @oob_required: caller expects OOB data read to chip->oob_poi
David Woodhouse5467fb02006-10-06 15:36:29 +0100368 *
Brian Norrisb9bc8152012-05-11 13:30:34 -0700369 * The hw generator calculates the error syndrome automatically. Therefore
David Woodhouse5467fb02006-10-06 15:36:29 +0100370 * we need a special oob layout and handling.
371 */
372static int cafe_nand_read_page(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -0700373 uint8_t *buf, int oob_required, int page)
David Woodhouse5467fb02006-10-06 15:36:29 +0100374{
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100375 struct cafe_priv *cafe = nand_get_controller_data(chip);
Mike Dunn3f91e942012-04-25 12:06:09 -0700376 unsigned int max_bitflips = 0;
David Woodhouse5467fb02006-10-06 15:36:29 +0100377
David Woodhousefbad5692006-10-22 15:09:33 +0100378 cafe_dev_dbg(&cafe->pdev->dev, "ECC result %08x SYN1,2 %08x\n",
David Woodhouse195a2532006-10-31 12:30:11 +0800379 cafe_readl(cafe, NAND_ECC_RESULT),
380 cafe_readl(cafe, NAND_ECC_SYN01));
David Woodhouse5467fb02006-10-06 15:36:29 +0100381
Boris Brezillon25f815f2017-11-30 18:01:30 +0100382 nand_read_page_op(chip, page, 0, buf, mtd->writesize);
David Woodhouse5467fb02006-10-06 15:36:29 +0100383 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
384
David Woodhouse195a2532006-10-31 12:30:11 +0800385 if (checkecc && cafe_readl(cafe, NAND_ECC_RESULT) & (1<<18)) {
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200386 unsigned short syn[8], pat[4];
387 int pos[4];
388 u8 *oob = chip->oob_poi;
389 int i, n;
David Woodhouse04459d72006-10-22 02:18:48 +0100390
391 for (i=0; i<8; i+=2) {
David Woodhouse195a2532006-10-31 12:30:11 +0800392 uint32_t tmp = cafe_readl(cafe, NAND_ECC_SYN01 + (i*2));
Thomas Gleixner21633982018-04-22 18:23:53 +0200393
394 syn[i] = cafe->rs->codec->index_of[tmp & 0xfff];
395 syn[i+1] = cafe->rs->codec->index_of[(tmp >> 16) & 0xfff];
David Woodhousec9ac59772006-11-30 08:17:38 +0000396 }
David Woodhouse04459d72006-10-22 02:18:48 +0100397
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200398 n = decode_rs16(cafe->rs, NULL, NULL, 1367, syn, 0, pos, 0,
Thomas Gleixner21633982018-04-22 18:23:53 +0200399 pat);
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200400
401 for (i = 0; i < n; i++) {
402 int p = pos[i];
403
404 /* The 12-bit symbols are mapped to bytes here */
405
406 if (p > 1374) {
407 /* out of range */
408 n = -1374;
409 } else if (p == 0) {
410 /* high four bits do not correspond to data */
411 if (pat[i] > 0xff)
412 n = -2048;
413 else
414 buf[0] ^= pat[i];
415 } else if (p == 1365) {
416 buf[2047] ^= pat[i] >> 4;
417 oob[0] ^= pat[i] << 4;
418 } else if (p > 1365) {
419 if ((p & 1) == 1) {
420 oob[3*p/2 - 2048] ^= pat[i] >> 4;
421 oob[3*p/2 - 2047] ^= pat[i] << 4;
422 } else {
423 oob[3*p/2 - 2049] ^= pat[i] >> 8;
424 oob[3*p/2 - 2048] ^= pat[i];
425 }
426 } else if ((p & 1) == 1) {
427 buf[3*p/2] ^= pat[i] >> 4;
428 buf[3*p/2 + 1] ^= pat[i] << 4;
429 } else {
430 buf[3*p/2 - 1] ^= pat[i] >> 8;
431 buf[3*p/2] ^= pat[i];
432 }
433 }
434
435 if (n < 0) {
David Woodhousebe8444b2006-10-31 12:36:04 +0800436 dev_dbg(&cafe->pdev->dev, "Failed to correct ECC at %08x\n",
437 cafe_readl(cafe, NAND_ADDR2) * 2048);
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200438 for (i = 0; i < 0x5c; i += 4)
David Woodhousebe8444b2006-10-31 12:36:04 +0800439 printk("Register %x: %08x\n", i, readl(cafe->mmio + i));
David Woodhouse04459d72006-10-22 02:18:48 +0100440 mtd->ecc_stats.failed++;
441 } else {
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200442 dev_dbg(&cafe->pdev->dev, "Corrected %d symbol errors\n", n);
443 mtd->ecc_stats.corrected += n;
Mike Dunn3f91e942012-04-25 12:06:09 -0700444 max_bitflips = max_t(unsigned int, max_bitflips, n);
David Woodhouse04459d72006-10-22 02:18:48 +0100445 }
446 }
447
Mike Dunn3f91e942012-04-25 12:06:09 -0700448 return max_bitflips;
David Woodhouse5467fb02006-10-06 15:36:29 +0100449}
450
Boris Brezillona8ed6e62016-02-03 19:59:47 +0100451static int cafe_ooblayout_ecc(struct mtd_info *mtd, int section,
452 struct mtd_oob_region *oobregion)
453{
454 struct nand_chip *chip = mtd_to_nand(mtd);
455
456 if (section)
457 return -ERANGE;
458
459 oobregion->offset = 0;
460 oobregion->length = chip->ecc.total;
461
462 return 0;
463}
464
465static int cafe_ooblayout_free(struct mtd_info *mtd, int section,
466 struct mtd_oob_region *oobregion)
467{
468 struct nand_chip *chip = mtd_to_nand(mtd);
469
470 if (section)
471 return -ERANGE;
472
473 oobregion->offset = chip->ecc.total;
474 oobregion->length = mtd->oobsize - chip->ecc.total;
475
476 return 0;
477}
478
479static const struct mtd_ooblayout_ops cafe_ooblayout_ops = {
480 .ecc = cafe_ooblayout_ecc,
481 .free = cafe_ooblayout_free,
David Woodhouse8dd851d2006-10-20 02:11:40 +0100482};
483
David Woodhousec9ac59772006-11-30 08:17:38 +0000484/* Ick. The BBT code really ought to be able to work this bit out
David Woodhousefbad5692006-10-22 15:09:33 +0100485 for itself from the above, at least for the 2KiB case */
486static uint8_t cafe_bbt_pattern_2048[] = { 'B', 'b', 't', '0' };
487static uint8_t cafe_mirror_pattern_2048[] = { '1', 't', 'b', 'B' };
488
489static uint8_t cafe_bbt_pattern_512[] = { 0xBB };
490static uint8_t cafe_mirror_pattern_512[] = { 0xBC };
491
David Woodhouse8dd851d2006-10-20 02:11:40 +0100492
493static struct nand_bbt_descr cafe_bbt_main_descr_2048 = {
494 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
David Woodhouse048c37b2007-05-02 12:26:37 +0100495 | NAND_BBT_2BIT | NAND_BBT_VERSION,
David Woodhouse8dd851d2006-10-20 02:11:40 +0100496 .offs = 14,
497 .len = 4,
498 .veroffs = 18,
499 .maxblocks = 4,
David Woodhousefbad5692006-10-22 15:09:33 +0100500 .pattern = cafe_bbt_pattern_2048
David Woodhouse8dd851d2006-10-20 02:11:40 +0100501};
502
503static struct nand_bbt_descr cafe_bbt_mirror_descr_2048 = {
504 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
David Woodhouse048c37b2007-05-02 12:26:37 +0100505 | NAND_BBT_2BIT | NAND_BBT_VERSION,
David Woodhouse8dd851d2006-10-20 02:11:40 +0100506 .offs = 14,
507 .len = 4,
508 .veroffs = 18,
509 .maxblocks = 4,
David Woodhousefbad5692006-10-22 15:09:33 +0100510 .pattern = cafe_mirror_pattern_2048
David Woodhouse8dd851d2006-10-20 02:11:40 +0100511};
512
David Woodhousefbad5692006-10-22 15:09:33 +0100513static struct nand_bbt_descr cafe_bbt_main_descr_512 = {
514 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
David Woodhouse048c37b2007-05-02 12:26:37 +0100515 | NAND_BBT_2BIT | NAND_BBT_VERSION,
David Woodhousefbad5692006-10-22 15:09:33 +0100516 .offs = 14,
517 .len = 1,
518 .veroffs = 15,
519 .maxblocks = 4,
520 .pattern = cafe_bbt_pattern_512
521};
522
523static struct nand_bbt_descr cafe_bbt_mirror_descr_512 = {
524 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
David Woodhouse048c37b2007-05-02 12:26:37 +0100525 | NAND_BBT_2BIT | NAND_BBT_VERSION,
David Woodhousefbad5692006-10-22 15:09:33 +0100526 .offs = 14,
527 .len = 1,
528 .veroffs = 15,
529 .maxblocks = 4,
530 .pattern = cafe_mirror_pattern_512
531};
532
533
Josh Wufdbad98d2012-06-25 18:07:45 +0800534static int cafe_nand_write_page_lowlevel(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -0700535 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +0200536 const uint8_t *buf, int oob_required,
537 int page)
David Woodhouse5467fb02006-10-06 15:36:29 +0100538{
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100539 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100540
Boris Brezillon25f815f2017-11-30 18:01:30 +0100541 nand_prog_page_begin_op(chip, page, 0, buf, mtd->writesize);
David Woodhouse8dd851d2006-10-20 02:11:40 +0100542 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
David Woodhouse5467fb02006-10-06 15:36:29 +0100543
544 /* Set up ECC autogeneration */
David Woodhousecad40652006-11-01 08:19:20 +0800545 cafe->ctl2 |= (1<<30);
Josh Wufdbad98d2012-06-25 18:07:45 +0800546
Boris Brezillon25f815f2017-11-30 18:01:30 +0100547 return nand_prog_page_end_op(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100548}
549
Archit Taneja9f3e0422016-02-03 14:29:49 +0530550static int cafe_nand_block_bad(struct mtd_info *mtd, loff_t ofs)
David Woodhouse8dd851d2006-10-20 02:11:40 +0100551{
552 return 0;
553}
David Woodhouse5467fb02006-10-06 15:36:29 +0100554
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200555/* F_2[X]/(X**6+X+1) */
Bill Pemberton06f25512012-11-19 13:23:07 -0500556static unsigned short gf64_mul(u8 a, u8 b)
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200557{
558 u8 c;
559 unsigned int i;
560
561 c = 0;
562 for (i = 0; i < 6; i++) {
563 if (a & 1)
564 c ^= b;
565 a >>= 1;
566 b <<= 1;
567 if ((b & 0x40) != 0)
568 b ^= 0x43;
569 }
570
571 return c;
572}
573
574/* F_64[X]/(X**2+X+A**-1) with A the generator of F_64[X] */
Bill Pemberton06f25512012-11-19 13:23:07 -0500575static u16 gf4096_mul(u16 a, u16 b)
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200576{
577 u8 ah, al, bh, bl, ch, cl;
578
579 ah = a >> 6;
580 al = a & 0x3f;
581 bh = b >> 6;
582 bl = b & 0x3f;
583
584 ch = gf64_mul(ah ^ al, bh ^ bl) ^ gf64_mul(al, bl);
585 cl = gf64_mul(gf64_mul(ah, bh), 0x21) ^ gf64_mul(al, bl);
586
587 return (ch << 6) ^ cl;
588}
589
Bill Pemberton06f25512012-11-19 13:23:07 -0500590static int cafe_mul(int x)
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200591{
592 if (x == 0)
593 return 1;
594 return gf4096_mul(x, 0xe01);
595}
596
Miquel Raynal73a27db2018-07-25 15:31:37 +0200597static int cafe_nand_attach_chip(struct nand_chip *chip)
598{
599 struct mtd_info *mtd = nand_to_mtd(chip);
600 struct cafe_priv *cafe = nand_get_controller_data(chip);
601 int err = 0;
602
603 cafe->dmabuf = dma_alloc_coherent(&cafe->pdev->dev, 2112,
604 &cafe->dmaaddr, GFP_KERNEL);
605 if (!cafe->dmabuf)
606 return -ENOMEM;
607
608 /* Set up DMA address */
609 cafe_writel(cafe, lower_32_bits(cafe->dmaaddr), NAND_DMA_ADDR0);
610 cafe_writel(cafe, upper_32_bits(cafe->dmaaddr), NAND_DMA_ADDR1);
611
612 cafe_dev_dbg(&cafe->pdev->dev, "Set DMA address to %x (virt %p)\n",
613 cafe_readl(cafe, NAND_DMA_ADDR0), cafe->dmabuf);
614
615 /* Restore the DMA flag */
616 cafe->usedma = usedma;
617
618 cafe->ctl2 = BIT(27); /* Reed-Solomon ECC */
619 if (mtd->writesize == 2048)
620 cafe->ctl2 |= BIT(29); /* 2KiB page size */
621
622 /* Set up ECC according to the type of chip we found */
623 mtd_set_ooblayout(mtd, &cafe_ooblayout_ops);
624 if (mtd->writesize == 2048) {
625 cafe->nand.bbt_td = &cafe_bbt_main_descr_2048;
626 cafe->nand.bbt_md = &cafe_bbt_mirror_descr_2048;
627 } else if (mtd->writesize == 512) {
628 cafe->nand.bbt_td = &cafe_bbt_main_descr_512;
629 cafe->nand.bbt_md = &cafe_bbt_mirror_descr_512;
630 } else {
631 dev_warn(&cafe->pdev->dev,
632 "Unexpected NAND flash writesize %d. Aborting\n",
633 mtd->writesize);
634 err = -ENOTSUPP;
635 goto out_free_dma;
636 }
637
638 cafe->nand.ecc.mode = NAND_ECC_HW_SYNDROME;
639 cafe->nand.ecc.size = mtd->writesize;
640 cafe->nand.ecc.bytes = 14;
641 cafe->nand.ecc.strength = 4;
642 cafe->nand.ecc.write_page = cafe_nand_write_page_lowlevel;
643 cafe->nand.ecc.write_oob = cafe_nand_write_oob;
644 cafe->nand.ecc.read_page = cafe_nand_read_page;
645 cafe->nand.ecc.read_oob = cafe_nand_read_oob;
646
647 return 0;
648
649 out_free_dma:
650 dma_free_coherent(&cafe->pdev->dev, 2112, cafe->dmabuf, cafe->dmaaddr);
651
652 return err;
653}
654
655static void cafe_nand_detach_chip(struct nand_chip *chip)
656{
657 struct cafe_priv *cafe = nand_get_controller_data(chip);
658
659 dma_free_coherent(&cafe->pdev->dev, 2112, cafe->dmabuf, cafe->dmaaddr);
660}
661
662static const struct nand_controller_ops cafe_nand_controller_ops = {
663 .attach_chip = cafe_nand_attach_chip,
664 .detach_chip = cafe_nand_detach_chip,
665};
666
Bill Pemberton06f25512012-11-19 13:23:07 -0500667static int cafe_nand_probe(struct pci_dev *pdev,
David Woodhouse5467fb02006-10-06 15:36:29 +0100668 const struct pci_device_id *ent)
669{
670 struct mtd_info *mtd;
671 struct cafe_priv *cafe;
672 uint32_t ctrl;
673 int err = 0;
674
David Woodhouse06ed24e2007-10-06 14:44:12 -0400675 /* Very old versions shared the same PCI ident for all three
676 functions on the chip. Verify the class too... */
677 if ((pdev->class >> 8) != PCI_CLASS_MEMORY_FLASH)
678 return -ENODEV;
679
David Woodhouse5467fb02006-10-06 15:36:29 +0100680 err = pci_enable_device(pdev);
681 if (err)
682 return err;
683
684 pci_set_master(pdev);
685
Boris BREZILLONe787dfd2015-12-10 08:59:55 +0100686 cafe = kzalloc(sizeof(*cafe), GFP_KERNEL);
687 if (!cafe)
David Woodhouse5467fb02006-10-06 15:36:29 +0100688 return -ENOMEM;
David Woodhouse5467fb02006-10-06 15:36:29 +0100689
Boris BREZILLONe787dfd2015-12-10 08:59:55 +0100690 mtd = nand_to_mtd(&cafe->nand);
David Woodhousec451c7c2009-04-04 15:27:45 +0100691 mtd->dev.parent = &pdev->dev;
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100692 nand_set_controller_data(&cafe->nand, cafe);
David Woodhouse5467fb02006-10-06 15:36:29 +0100693
694 cafe->pdev = pdev;
695 cafe->mmio = pci_iomap(pdev, 0, 0);
696 if (!cafe->mmio) {
697 dev_warn(&pdev->dev, "failed to iomap\n");
698 err = -ENOMEM;
699 goto out_free_mtd;
700 }
David Woodhouse5467fb02006-10-06 15:36:29 +0100701
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200702 cafe->rs = init_rs_non_canonical(12, &cafe_mul, 0, 1, 8);
703 if (!cafe->rs) {
704 err = -ENOMEM;
705 goto out_ior;
706 }
707
David Woodhouse5467fb02006-10-06 15:36:29 +0100708 cafe->nand.cmdfunc = cafe_nand_cmdfunc;
709 cafe->nand.dev_ready = cafe_device_ready;
710 cafe->nand.read_byte = cafe_read_byte;
711 cafe->nand.read_buf = cafe_read_buf;
712 cafe->nand.write_buf = cafe_write_buf;
713 cafe->nand.select_chip = cafe_select_chip;
Miquel Raynalb9587582018-03-19 14:47:19 +0100714 cafe->nand.set_features = nand_get_set_features_notsupp;
715 cafe->nand.get_features = nand_get_set_features_notsupp;
David Woodhouse5467fb02006-10-06 15:36:29 +0100716
717 cafe->nand.chip_delay = 0;
718
719 /* Enable the following for a flash based bad block table */
Brian Norrisbb9ebd42011-05-31 16:31:23 -0700720 cafe->nand.bbt_options = NAND_BBT_USE_FLASH;
David Woodhouse8dd851d2006-10-20 02:11:40 +0100721
722 if (skipbbt) {
723 cafe->nand.options |= NAND_SKIP_BBTSCAN;
724 cafe->nand.block_bad = cafe_nand_block_bad;
725 }
David Woodhousec9ac59772006-11-30 08:17:38 +0000726
David Woodhouse527a4f42007-01-23 15:35:27 +0800727 if (numtimings && numtimings != 3) {
728 dev_warn(&cafe->pdev->dev, "%d timing register values ignored; precisely three are required\n", numtimings);
729 }
730
731 if (numtimings == 3) {
David Woodhouse527a4f42007-01-23 15:35:27 +0800732 cafe_dev_dbg(&cafe->pdev->dev, "Using provided timings (%08x %08x %08x)\n",
David Woodhouse8e5368a2007-03-23 10:40:04 +0000733 timing[0], timing[1], timing[2]);
David Woodhouse527a4f42007-01-23 15:35:27 +0800734 } else {
David Woodhouse8e5368a2007-03-23 10:40:04 +0000735 timing[0] = cafe_readl(cafe, NAND_TIMING1);
736 timing[1] = cafe_readl(cafe, NAND_TIMING2);
737 timing[2] = cafe_readl(cafe, NAND_TIMING3);
David Woodhouse527a4f42007-01-23 15:35:27 +0800738
David Woodhouse8e5368a2007-03-23 10:40:04 +0000739 if (timing[0] | timing[1] | timing[2]) {
740 cafe_dev_dbg(&cafe->pdev->dev, "Timing registers already set (%08x %08x %08x)\n",
741 timing[0], timing[1], timing[2]);
David Woodhouse527a4f42007-01-23 15:35:27 +0800742 } else {
743 dev_warn(&cafe->pdev->dev, "Timing registers unset; using most conservative defaults\n");
David Woodhouse8e5368a2007-03-23 10:40:04 +0000744 timing[0] = timing[1] = timing[2] = 0xffffffff;
David Woodhouse527a4f42007-01-23 15:35:27 +0800745 }
746 }
747
David Woodhousedcc41bc2006-10-27 09:55:34 +0300748 /* Start off by resetting the NAND controller completely */
David Woodhouse195a2532006-10-31 12:30:11 +0800749 cafe_writel(cafe, 1, NAND_RESET);
750 cafe_writel(cafe, 0, NAND_RESET);
751
David Woodhouse8e5368a2007-03-23 10:40:04 +0000752 cafe_writel(cafe, timing[0], NAND_TIMING1);
753 cafe_writel(cafe, timing[1], NAND_TIMING2);
754 cafe_writel(cafe, timing[2], NAND_TIMING3);
David Woodhousedcc41bc2006-10-27 09:55:34 +0300755
David Woodhouse195a2532006-10-31 12:30:11 +0800756 cafe_writel(cafe, 0xffffffff, NAND_IRQ_MASK);
Thomas Gleixner2db63462007-02-14 00:33:20 -0800757 err = request_irq(pdev->irq, &cafe_nand_interrupt, IRQF_SHARED,
758 "CAFE NAND", mtd);
David Woodhouse5467fb02006-10-06 15:36:29 +0100759 if (err) {
760 dev_warn(&pdev->dev, "Could not register IRQ %d\n", pdev->irq);
Huang Shijief02ea4e2014-01-13 14:27:12 +0800761 goto out_ior;
David Woodhouse5467fb02006-10-06 15:36:29 +0100762 }
David Woodhousef7c37d72007-01-23 15:44:10 +0800763
David Woodhouse5467fb02006-10-06 15:36:29 +0100764 /* Disable master reset, enable NAND clock */
David Woodhouse195a2532006-10-31 12:30:11 +0800765 ctrl = cafe_readl(cafe, GLOBAL_CTRL);
David Woodhouse5467fb02006-10-06 15:36:29 +0100766 ctrl &= 0xffffeff0;
767 ctrl |= 0x00007000;
David Woodhouse195a2532006-10-31 12:30:11 +0800768 cafe_writel(cafe, ctrl | 0x05, GLOBAL_CTRL);
769 cafe_writel(cafe, ctrl | 0x0a, GLOBAL_CTRL);
770 cafe_writel(cafe, 0, NAND_DMA_CTRL);
David Woodhouse5467fb02006-10-06 15:36:29 +0100771
David Woodhouse195a2532006-10-31 12:30:11 +0800772 cafe_writel(cafe, 0x7006, GLOBAL_CTRL);
773 cafe_writel(cafe, 0x700a, GLOBAL_CTRL);
David Woodhouse5467fb02006-10-06 15:36:29 +0100774
Huang Shijief02ea4e2014-01-13 14:27:12 +0800775 /* Enable NAND IRQ in global IRQ mask register */
776 cafe_writel(cafe, 0x80000007, GLOBAL_IRQ_MASK);
777 cafe_dev_dbg(&cafe->pdev->dev, "Control %x, IRQ mask %x\n",
778 cafe_readl(cafe, GLOBAL_CTRL),
779 cafe_readl(cafe, GLOBAL_IRQ_MASK));
780
Miquel Raynal73a27db2018-07-25 15:31:37 +0200781 /* Do not use the DMA during the NAND identification */
782 cafe->usedma = 0;
Huang Shijief02ea4e2014-01-13 14:27:12 +0800783
784 /* Scan to find existence of the device */
Miquel Raynal73a27db2018-07-25 15:31:37 +0200785 cafe->nand.dummy_controller.ops = &cafe_nand_controller_ops;
Boris Brezillon00ad3782018-09-06 14:05:14 +0200786 err = nand_scan(&cafe->nand, 2);
Masahiro Yamada72480e42016-11-04 19:43:06 +0900787 if (err)
Huang Shijief02ea4e2014-01-13 14:27:12 +0800788 goto out_irq;
Huang Shijief02ea4e2014-01-13 14:27:12 +0800789
David Woodhouse5467fb02006-10-06 15:36:29 +0100790 pci_set_drvdata(pdev, mtd);
David Woodhouse9c37f332007-10-28 21:56:39 -0400791
Philip Rakity68874412008-10-08 16:08:20 -0700792 mtd->name = "cafe_nand";
Miquel Raynala446c992018-03-21 14:01:43 +0100793 err = mtd_device_parse_register(mtd, part_probes, NULL, NULL, 0);
794 if (err)
795 goto out_cleanup_nand;
Dmitry Eremin-Solenikov4d32de82011-06-02 18:00:29 +0400796
David Woodhouse5467fb02006-10-06 15:36:29 +0100797 goto out;
798
Miquel Raynala446c992018-03-21 14:01:43 +0100799 out_cleanup_nand:
800 nand_cleanup(&cafe->nand);
David Woodhouse5467fb02006-10-06 15:36:29 +0100801 out_irq:
802 /* Disable NAND IRQ in global IRQ mask register */
David Woodhouse195a2532006-10-31 12:30:11 +0800803 cafe_writel(cafe, ~1 & cafe_readl(cafe, GLOBAL_IRQ_MASK), GLOBAL_IRQ_MASK);
David Woodhouse5467fb02006-10-06 15:36:29 +0100804 free_irq(pdev->irq, mtd);
David Woodhouse5467fb02006-10-06 15:36:29 +0100805 out_ior:
806 pci_iounmap(pdev, cafe->mmio);
807 out_free_mtd:
Boris BREZILLONe787dfd2015-12-10 08:59:55 +0100808 kfree(cafe);
David Woodhouse5467fb02006-10-06 15:36:29 +0100809 out:
810 return err;
811}
812
Bill Pemberton810b7e02012-11-19 13:26:04 -0500813static void cafe_nand_remove(struct pci_dev *pdev)
David Woodhouse5467fb02006-10-06 15:36:29 +0100814{
815 struct mtd_info *mtd = pci_get_drvdata(pdev);
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100816 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100817 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse5467fb02006-10-06 15:36:29 +0100818
David Woodhouse5467fb02006-10-06 15:36:29 +0100819 /* Disable NAND IRQ in global IRQ mask register */
David Woodhouse195a2532006-10-31 12:30:11 +0800820 cafe_writel(cafe, ~1 & cafe_readl(cafe, GLOBAL_IRQ_MASK), GLOBAL_IRQ_MASK);
David Woodhouse5467fb02006-10-06 15:36:29 +0100821 free_irq(pdev->irq, mtd);
Boris Brezillon59ac2762018-09-06 14:05:15 +0200822 nand_release(chip);
Segher Boessenkool8c61b7a2007-05-02 12:18:49 +0200823 free_rs(cafe->rs);
David Woodhouse5467fb02006-10-06 15:36:29 +0100824 pci_iounmap(pdev, cafe->mmio);
Masahiro Yamadaf880b072017-12-05 17:47:14 +0900825 dma_free_coherent(&cafe->pdev->dev, 2112, cafe->dmabuf, cafe->dmaaddr);
Boris BREZILLONe787dfd2015-12-10 08:59:55 +0100826 kfree(cafe);
David Woodhouse5467fb02006-10-06 15:36:29 +0100827}
828
Márton Németh377ace02010-01-09 15:10:34 +0100829static const struct pci_device_id cafe_nand_tbl[] = {
David Woodhouse514fca42008-09-03 09:47:17 +0100830 { PCI_VENDOR_ID_MARVELL, PCI_DEVICE_ID_MARVELL_88ALP01_NAND,
831 PCI_ANY_ID, PCI_ANY_ID },
David Woodhouse06ed24e2007-10-06 14:44:12 -0400832 { }
David Woodhouse5467fb02006-10-06 15:36:29 +0100833};
834
835MODULE_DEVICE_TABLE(pci, cafe_nand_tbl);
836
David Woodhouse1fcf8ce2007-10-06 14:59:32 -0400837static int cafe_nand_resume(struct pci_dev *pdev)
838{
839 uint32_t ctrl;
840 struct mtd_info *mtd = pci_get_drvdata(pdev);
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100841 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100842 struct cafe_priv *cafe = nand_get_controller_data(chip);
David Woodhouse1fcf8ce2007-10-06 14:59:32 -0400843
844 /* Start off by resetting the NAND controller completely */
845 cafe_writel(cafe, 1, NAND_RESET);
846 cafe_writel(cafe, 0, NAND_RESET);
847 cafe_writel(cafe, 0xffffffff, NAND_IRQ_MASK);
848
849 /* Restore timing configuration */
850 cafe_writel(cafe, timing[0], NAND_TIMING1);
851 cafe_writel(cafe, timing[1], NAND_TIMING2);
852 cafe_writel(cafe, timing[2], NAND_TIMING3);
853
854 /* Disable master reset, enable NAND clock */
855 ctrl = cafe_readl(cafe, GLOBAL_CTRL);
856 ctrl &= 0xffffeff0;
857 ctrl |= 0x00007000;
858 cafe_writel(cafe, ctrl | 0x05, GLOBAL_CTRL);
859 cafe_writel(cafe, ctrl | 0x0a, GLOBAL_CTRL);
860 cafe_writel(cafe, 0, NAND_DMA_CTRL);
861 cafe_writel(cafe, 0x7006, GLOBAL_CTRL);
862 cafe_writel(cafe, 0x700a, GLOBAL_CTRL);
863
864 /* Set up DMA address */
865 cafe_writel(cafe, cafe->dmaaddr & 0xffffffff, NAND_DMA_ADDR0);
866 if (sizeof(cafe->dmaaddr) > 4)
867 /* Shift in two parts to shut the compiler up */
868 cafe_writel(cafe, (cafe->dmaaddr >> 16) >> 16, NAND_DMA_ADDR1);
869 else
870 cafe_writel(cafe, 0, NAND_DMA_ADDR1);
871
872 /* Enable NAND IRQ in global IRQ mask register */
873 cafe_writel(cafe, 0x80000007, GLOBAL_IRQ_MASK);
874 return 0;
875}
876
David Woodhouse5467fb02006-10-06 15:36:29 +0100877static struct pci_driver cafe_nand_pci_driver = {
878 .name = "CAFÉ NAND",
879 .id_table = cafe_nand_tbl,
880 .probe = cafe_nand_probe,
Bill Pemberton5153b882012-11-19 13:21:24 -0500881 .remove = cafe_nand_remove,
David Woodhouse5467fb02006-10-06 15:36:29 +0100882 .resume = cafe_nand_resume,
David Woodhouse5467fb02006-10-06 15:36:29 +0100883};
884
Axel Lin4d16cd62012-04-03 09:59:44 +0800885module_pci_driver(cafe_nand_pci_driver);
David Woodhouse5467fb02006-10-06 15:36:29 +0100886
887MODULE_LICENSE("GPL");
888MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
David Woodhousef7c37d72007-01-23 15:44:10 +0800889MODULE_DESCRIPTION("NAND flash driver for OLPC CAFÉ chip");