David Woodhouse | c9ac597 | 2006-11-30 08:17:38 +0000 | [diff] [blame] | 1 | /* |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 2 | * Driver for One Laptop Per Child ‘CAFÉ’ controller, aka Marvell 88ALP01 |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 3 | * |
David Woodhouse | 514fca4 | 2008-09-03 09:47:17 +0100 | [diff] [blame] | 4 | * The data sheet for this device can be found at: |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 5 | * http://wiki.laptop.org/go/Datasheets |
David Woodhouse | 514fca4 | 2008-09-03 09:47:17 +0100 | [diff] [blame] | 6 | * |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 7 | * Copyright © 2006 Red Hat, Inc. |
| 8 | * Copyright © 2006 David Woodhouse <dwmw2@infradead.org> |
| 9 | */ |
| 10 | |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 11 | #define DEBUG |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 12 | |
| 13 | #include <linux/device.h> |
| 14 | #undef DEBUG |
| 15 | #include <linux/mtd/mtd.h> |
| 16 | #include <linux/mtd/nand.h> |
David Woodhouse | 9c37f33 | 2007-10-28 21:56:39 -0400 | [diff] [blame] | 17 | #include <linux/mtd/partitions.h> |
Segher Boessenkool | 8c61b7a | 2007-05-02 12:18:49 +0200 | [diff] [blame] | 18 | #include <linux/rslib.h> |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 19 | #include <linux/pci.h> |
| 20 | #include <linux/delay.h> |
| 21 | #include <linux/interrupt.h> |
Al Viro | a127430 | 2007-01-30 13:23:30 +0000 | [diff] [blame] | 22 | #include <linux/dma-mapping.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/slab.h> |
Paul Gortmaker | a0e5cc5 | 2011-07-03 15:17:31 -0400 | [diff] [blame] | 24 | #include <linux/module.h> |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 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 |
David Woodhouse | 04459d7 | 2006-10-22 02:18:48 +0100 | [diff] [blame] | 40 | #define CAFE_NAND_ECC_RESULT 0x3C |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 41 | #define CAFE_NAND_DMA_CTRL 0x40 |
| 42 | #define CAFE_NAND_DMA_ADDR0 0x44 |
| 43 | #define CAFE_NAND_DMA_ADDR1 0x48 |
David Woodhouse | 04459d7 | 2006-10-22 02:18:48 +0100 | [diff] [blame] | 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 |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 48 | #define CAFE_NAND_READ_DATA 0x1000 |
| 49 | #define CAFE_NAND_WRITE_DATA 0x2000 |
| 50 | |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 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 | |
David Woodhouse | 048c37b | 2007-05-02 12:26:37 +0100 | [diff] [blame] | 56 | /* Missing from the datasheet: bit 19 of CTRL1 sets CE0 vs. CE1 */ |
| 57 | #define CTRL1_CHIPSELECT (1<<19) |
| 58 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 59 | struct cafe_priv { |
| 60 | struct nand_chip nand; |
| 61 | struct pci_dev *pdev; |
| 62 | void __iomem *mmio; |
Segher Boessenkool | 8c61b7a | 2007-05-02 12:18:49 +0200 | [diff] [blame] | 63 | struct rs_control *rs; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 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; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 72 | }; |
| 73 | |
David Woodhouse | b478c77 | 2006-10-27 14:50:04 +0300 | [diff] [blame] | 74 | static int usedma = 1; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 75 | module_param(usedma, int, 0644); |
| 76 | |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 77 | static int skipbbt = 0; |
| 78 | module_param(skipbbt, int, 0644); |
| 79 | |
| 80 | static int debug = 0; |
| 81 | module_param(debug, int, 0644); |
| 82 | |
David Woodhouse | be8444b | 2006-10-31 12:36:04 +0800 | [diff] [blame] | 83 | static int regdebug = 0; |
| 84 | module_param(regdebug, int, 0644); |
| 85 | |
David Woodhouse | b478c77 | 2006-10-27 14:50:04 +0300 | [diff] [blame] | 86 | static int checkecc = 1; |
David Woodhouse | 470b0a9 | 2006-10-23 14:29:04 +0100 | [diff] [blame] | 87 | module_param(checkecc, int, 0644); |
| 88 | |
Al Viro | 64a6f95 | 2007-10-14 19:35:30 +0100 | [diff] [blame] | 89 | static unsigned int numtimings; |
David Woodhouse | 527a4f4 | 2007-01-23 15:35:27 +0800 | [diff] [blame] | 90 | static int timing[3]; |
| 91 | module_param_array(timing, int, &numtimings, 0644); |
David Woodhouse | b478c77 | 2006-10-27 14:50:04 +0300 | [diff] [blame] | 92 | |
Philip Rakity | 6887441 | 2008-10-08 16:08:20 -0700 | [diff] [blame] | 93 | static const char *part_probes[] = { "cmdlinepart", "RedBoot", NULL }; |
David Woodhouse | 9c37f33 | 2007-10-28 21:56:39 -0400 | [diff] [blame] | 94 | |
David Woodhouse | 04459d7 | 2006-10-22 02:18:48 +0100 | [diff] [blame] | 95 | /* Hrm. Why isn't this already conditional on something in the struct device? */ |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 96 | #define cafe_dev_dbg(dev, args...) do { if (debug) dev_dbg(dev, ##args); } while(0) |
| 97 | |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 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) |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 101 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 102 | static int cafe_device_ready(struct mtd_info *mtd) |
| 103 | { |
| 104 | struct cafe_priv *cafe = mtd->priv; |
Dan Carpenter | 48f8b64 | 2012-06-09 19:08:25 +0300 | [diff] [blame] | 105 | int result = !!(cafe_readl(cafe, NAND_STATUS) & 0x40000000); |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 106 | uint32_t irqs = cafe_readl(cafe, NAND_IRQ); |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 107 | |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 108 | cafe_writel(cafe, irqs, NAND_IRQ); |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 109 | |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 110 | cafe_dev_dbg(&cafe->pdev->dev, "NAND device is%s ready, IRQ %x (%x) (%x,%x)\n", |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 111 | result?"":" not", irqs, cafe_readl(cafe, NAND_IRQ), |
| 112 | cafe_readl(cafe, GLOBAL_IRQ), cafe_readl(cafe, GLOBAL_IRQ_MASK)); |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 113 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 114 | return result; |
| 115 | } |
| 116 | |
| 117 | |
| 118 | static void cafe_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len) |
| 119 | { |
| 120 | struct cafe_priv *cafe = mtd->priv; |
| 121 | |
| 122 | if (usedma) |
| 123 | memcpy(cafe->dmabuf + cafe->datalen, buf, len); |
| 124 | else |
| 125 | memcpy_toio(cafe->mmio + CAFE_NAND_WRITE_DATA + cafe->datalen, buf, len); |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 126 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 127 | cafe->datalen += len; |
| 128 | |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 129 | cafe_dev_dbg(&cafe->pdev->dev, "Copy 0x%x bytes to write buffer. datalen 0x%x\n", |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 130 | len, cafe->datalen); |
| 131 | } |
| 132 | |
| 133 | static void cafe_read_buf(struct mtd_info *mtd, uint8_t *buf, int len) |
| 134 | { |
| 135 | struct cafe_priv *cafe = mtd->priv; |
| 136 | |
| 137 | if (usedma) |
| 138 | memcpy(buf, cafe->dmabuf + cafe->datalen, len); |
| 139 | else |
| 140 | memcpy_fromio(buf, cafe->mmio + CAFE_NAND_READ_DATA + cafe->datalen, len); |
| 141 | |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 142 | cafe_dev_dbg(&cafe->pdev->dev, "Copy 0x%x bytes from position 0x%x in read buffer.\n", |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 143 | len, cafe->datalen); |
| 144 | cafe->datalen += len; |
| 145 | } |
| 146 | |
| 147 | static uint8_t cafe_read_byte(struct mtd_info *mtd) |
| 148 | { |
| 149 | struct cafe_priv *cafe = mtd->priv; |
| 150 | uint8_t d; |
| 151 | |
| 152 | cafe_read_buf(mtd, &d, 1); |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 153 | cafe_dev_dbg(&cafe->pdev->dev, "Read %02x\n", d); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 154 | |
| 155 | return d; |
| 156 | } |
| 157 | |
| 158 | static void cafe_nand_cmdfunc(struct mtd_info *mtd, unsigned command, |
| 159 | int column, int page_addr) |
| 160 | { |
| 161 | struct cafe_priv *cafe = mtd->priv; |
| 162 | int adrbytes = 0; |
| 163 | uint32_t ctl1; |
| 164 | uint32_t doneint = 0x80000000; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 165 | |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 166 | cafe_dev_dbg(&cafe->pdev->dev, "cmdfunc %02x, 0x%x, 0x%x\n", |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 167 | command, column, page_addr); |
| 168 | |
| 169 | if (command == NAND_CMD_ERASE2 || command == NAND_CMD_PAGEPROG) { |
| 170 | /* Second half of a command we already calculated */ |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 171 | cafe_writel(cafe, cafe->ctl2 | 0x100 | command, NAND_CTRL2); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 172 | ctl1 = cafe->ctl1; |
David Woodhouse | cad4065 | 2006-11-01 08:19:20 +0800 | [diff] [blame] | 173 | cafe->ctl2 &= ~(1<<30); |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 174 | cafe_dev_dbg(&cafe->pdev->dev, "Continue command, ctl1 %08x, #data %d\n", |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 175 | cafe->ctl1, cafe->nr_data); |
| 176 | goto do_command; |
| 177 | } |
| 178 | /* Reset ECC engine */ |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 179 | cafe_writel(cafe, 0, NAND_CTRL2); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 180 | |
| 181 | /* Emulate NAND_CMD_READOOB on large-page chips */ |
| 182 | if (mtd->writesize > 512 && |
| 183 | command == NAND_CMD_READOOB) { |
| 184 | column += mtd->writesize; |
| 185 | command = NAND_CMD_READ0; |
| 186 | } |
| 187 | |
| 188 | /* FIXME: Do we need to send read command before sending data |
| 189 | for small-page chips, to position the buffer correctly? */ |
| 190 | |
| 191 | if (column != -1) { |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 192 | cafe_writel(cafe, column, NAND_ADDR1); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 193 | adrbytes = 2; |
| 194 | if (page_addr != -1) |
| 195 | goto write_adr2; |
| 196 | } else if (page_addr != -1) { |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 197 | cafe_writel(cafe, page_addr & 0xffff, NAND_ADDR1); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 198 | page_addr >>= 16; |
| 199 | write_adr2: |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 200 | cafe_writel(cafe, page_addr, NAND_ADDR2); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 201 | adrbytes += 2; |
| 202 | if (mtd->size > mtd->writesize << 16) |
| 203 | adrbytes++; |
| 204 | } |
| 205 | |
| 206 | cafe->data_pos = cafe->datalen = 0; |
| 207 | |
David Woodhouse | 048c37b | 2007-05-02 12:26:37 +0100 | [diff] [blame] | 208 | /* Set command valid bit, mask in the chip select bit */ |
| 209 | ctl1 = 0x80000000 | command | (cafe->ctl1 & CTRL1_CHIPSELECT); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 210 | |
| 211 | /* Set RD or WR bits as appropriate */ |
| 212 | if (command == NAND_CMD_READID || command == NAND_CMD_STATUS) { |
| 213 | ctl1 |= (1<<26); /* rd */ |
| 214 | /* Always 5 bytes, for now */ |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 215 | cafe->datalen = 4; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 216 | /* And one address cycle -- even for STATUS, since the controller doesn't work without */ |
| 217 | adrbytes = 1; |
| 218 | } else if (command == NAND_CMD_READ0 || command == NAND_CMD_READ1 || |
| 219 | command == NAND_CMD_READOOB || command == NAND_CMD_RNDOUT) { |
| 220 | ctl1 |= 1<<26; /* rd */ |
| 221 | /* For now, assume just read to end of page */ |
| 222 | cafe->datalen = mtd->writesize + mtd->oobsize - column; |
| 223 | } else if (command == NAND_CMD_SEQIN) |
| 224 | ctl1 |= 1<<25; /* wr */ |
| 225 | |
| 226 | /* Set number of address bytes */ |
| 227 | if (adrbytes) |
| 228 | ctl1 |= ((adrbytes-1)|8) << 27; |
| 229 | |
| 230 | if (command == NAND_CMD_SEQIN || command == NAND_CMD_ERASE1) { |
David Woodhouse | c9ac597 | 2006-11-30 08:17:38 +0000 | [diff] [blame] | 231 | /* Ignore the first command of a pair; the hardware |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 232 | deals with them both at once, later */ |
| 233 | cafe->ctl1 = ctl1; |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 234 | cafe_dev_dbg(&cafe->pdev->dev, "Setup for delayed command, ctl1 %08x, dlen %x\n", |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 235 | cafe->ctl1, cafe->datalen); |
| 236 | return; |
| 237 | } |
| 238 | /* RNDOUT and READ0 commands need a following byte */ |
| 239 | if (command == NAND_CMD_RNDOUT) |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 240 | cafe_writel(cafe, cafe->ctl2 | 0x100 | NAND_CMD_RNDOUTSTART, NAND_CTRL2); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 241 | else if (command == NAND_CMD_READ0 && mtd->writesize > 512) |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 242 | cafe_writel(cafe, cafe->ctl2 | 0x100 | NAND_CMD_READSTART, NAND_CTRL2); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 243 | |
| 244 | do_command: |
David Woodhouse | c9ac597 | 2006-11-30 08:17:38 +0000 | [diff] [blame] | 245 | cafe_dev_dbg(&cafe->pdev->dev, "dlen %x, ctl1 %x, ctl2 %x\n", |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 246 | cafe->datalen, ctl1, cafe_readl(cafe, NAND_CTRL2)); |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 247 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 248 | /* NB: The datasheet lies -- we really should be subtracting 1 here */ |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 249 | cafe_writel(cafe, cafe->datalen, NAND_DATA_LEN); |
| 250 | cafe_writel(cafe, 0x90000000, NAND_IRQ); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 251 | if (usedma && (ctl1 & (3<<25))) { |
| 252 | uint32_t dmactl = 0xc0000000 + cafe->datalen; |
| 253 | /* If WR or RD bits set, set up DMA */ |
| 254 | if (ctl1 & (1<<26)) { |
| 255 | /* It's a read */ |
| 256 | dmactl |= (1<<29); |
| 257 | /* ... so it's done when the DMA is done, not just |
| 258 | the command. */ |
| 259 | doneint = 0x10000000; |
| 260 | } |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 261 | cafe_writel(cafe, dmactl, NAND_DMA_CTRL); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 262 | } |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 263 | cafe->datalen = 0; |
| 264 | |
David Woodhouse | be8444b | 2006-10-31 12:36:04 +0800 | [diff] [blame] | 265 | if (unlikely(regdebug)) { |
| 266 | int i; |
| 267 | printk("About to write command %08x to register 0\n", ctl1); |
| 268 | for (i=4; i< 0x5c; i+=4) |
| 269 | printk("Register %x: %08x\n", i, readl(cafe->mmio + i)); |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 270 | } |
David Woodhouse | be8444b | 2006-10-31 12:36:04 +0800 | [diff] [blame] | 271 | |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 272 | cafe_writel(cafe, ctl1, NAND_CTRL1); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 273 | /* Apply this short delay always to ensure that we do wait tWB in |
| 274 | * any case on any machine. */ |
| 275 | ndelay(100); |
| 276 | |
| 277 | if (1) { |
Andrew Morton | 2a7295b2 | 2007-02-17 16:02:11 -0800 | [diff] [blame] | 278 | int c; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 279 | uint32_t irqs; |
| 280 | |
Andrew Morton | 2a7295b2 | 2007-02-17 16:02:11 -0800 | [diff] [blame] | 281 | for (c = 500000; c != 0; c--) { |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 282 | irqs = cafe_readl(cafe, NAND_IRQ); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 283 | if (irqs & doneint) |
| 284 | break; |
| 285 | udelay(1); |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 286 | if (!(c % 100000)) |
| 287 | cafe_dev_dbg(&cafe->pdev->dev, "Wait for ready, IRQ %x\n", irqs); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 288 | cpu_relax(); |
| 289 | } |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 290 | cafe_writel(cafe, doneint, NAND_IRQ); |
David Woodhouse | a020727 | 2006-10-28 17:08:38 +0300 | [diff] [blame] | 291 | cafe_dev_dbg(&cafe->pdev->dev, "Command %x completed after %d usec, irqs %x (%x)\n", |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 292 | command, 500000-c, irqs, cafe_readl(cafe, NAND_IRQ)); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 293 | } |
| 294 | |
David Woodhouse | cad4065 | 2006-11-01 08:19:20 +0800 | [diff] [blame] | 295 | WARN_ON(cafe->ctl2 & (1<<30)); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 296 | |
| 297 | switch (command) { |
| 298 | |
| 299 | case NAND_CMD_CACHEDPROG: |
| 300 | case NAND_CMD_PAGEPROG: |
| 301 | case NAND_CMD_ERASE1: |
| 302 | case NAND_CMD_ERASE2: |
| 303 | case NAND_CMD_SEQIN: |
| 304 | case NAND_CMD_RNDIN: |
| 305 | case NAND_CMD_STATUS: |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 306 | case NAND_CMD_RNDOUT: |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 307 | cafe_writel(cafe, cafe->ctl2, NAND_CTRL2); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 308 | return; |
| 309 | } |
| 310 | nand_wait_ready(mtd); |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 311 | cafe_writel(cafe, cafe->ctl2, NAND_CTRL2); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | static void cafe_select_chip(struct mtd_info *mtd, int chipnr) |
| 315 | { |
David Woodhouse | 048c37b | 2007-05-02 12:26:37 +0100 | [diff] [blame] | 316 | struct cafe_priv *cafe = mtd->priv; |
| 317 | |
| 318 | cafe_dev_dbg(&cafe->pdev->dev, "select_chip %d\n", chipnr); |
| 319 | |
| 320 | /* Mask the appropriate bit into the stored value of ctl1 |
| 321 | which will be used by cafe_nand_cmdfunc() */ |
| 322 | if (chipnr) |
| 323 | cafe->ctl1 |= CTRL1_CHIPSELECT; |
| 324 | else |
| 325 | cafe->ctl1 &= ~CTRL1_CHIPSELECT; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 326 | } |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 327 | |
Alan Cox | 67cd724 | 2009-04-22 15:02:23 +0100 | [diff] [blame] | 328 | static irqreturn_t cafe_nand_interrupt(int irq, void *id) |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 329 | { |
| 330 | struct mtd_info *mtd = id; |
| 331 | struct cafe_priv *cafe = mtd->priv; |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 332 | uint32_t irqs = cafe_readl(cafe, NAND_IRQ); |
| 333 | cafe_writel(cafe, irqs & ~0x90000000, NAND_IRQ); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 334 | if (!irqs) |
| 335 | return IRQ_NONE; |
| 336 | |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 337 | cafe_dev_dbg(&cafe->pdev->dev, "irq, bits %x (%x)\n", irqs, cafe_readl(cafe, NAND_IRQ)); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 338 | return IRQ_HANDLED; |
| 339 | } |
| 340 | |
| 341 | static void cafe_nand_bug(struct mtd_info *mtd) |
| 342 | { |
| 343 | BUG(); |
| 344 | } |
| 345 | |
| 346 | static int cafe_nand_write_oob(struct mtd_info *mtd, |
| 347 | struct nand_chip *chip, int page) |
| 348 | { |
| 349 | int status = 0; |
| 350 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 351 | chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page); |
| 352 | chip->write_buf(mtd, chip->oob_poi, mtd->oobsize); |
| 353 | chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1); |
| 354 | status = chip->waitfunc(mtd, chip); |
| 355 | |
| 356 | return status & NAND_STATUS_FAIL ? -EIO : 0; |
| 357 | } |
| 358 | |
| 359 | /* Don't use -- use nand_read_oob_std for now */ |
| 360 | static int cafe_nand_read_oob(struct mtd_info *mtd, struct nand_chip *chip, |
Shmulik Ladkani | 5c2ffb1 | 2012-05-09 13:06:35 +0300 | [diff] [blame] | 361 | int page) |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 362 | { |
| 363 | chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page); |
| 364 | chip->read_buf(mtd, chip->oob_poi, mtd->oobsize); |
Shmulik Ladkani | 5c2ffb1 | 2012-05-09 13:06:35 +0300 | [diff] [blame] | 365 | return 0; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 366 | } |
| 367 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 368 | * cafe_nand_read_page_syndrome - [REPLACEABLE] hardware ecc syndrome based page read |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 369 | * @mtd: mtd info structure |
| 370 | * @chip: nand chip info structure |
| 371 | * @buf: buffer to store read data |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 372 | * @oob_required: caller expects OOB data read to chip->oob_poi |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 373 | * |
Brian Norris | b9bc815 | 2012-05-11 13:30:34 -0700 | [diff] [blame] | 374 | * The hw generator calculates the error syndrome automatically. Therefore |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 375 | * we need a special oob layout and handling. |
| 376 | */ |
| 377 | static int cafe_nand_read_page(struct mtd_info *mtd, struct nand_chip *chip, |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 378 | uint8_t *buf, int oob_required, int page) |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 379 | { |
| 380 | struct cafe_priv *cafe = mtd->priv; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 381 | unsigned int max_bitflips = 0; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 382 | |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 383 | cafe_dev_dbg(&cafe->pdev->dev, "ECC result %08x SYN1,2 %08x\n", |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 384 | cafe_readl(cafe, NAND_ECC_RESULT), |
| 385 | cafe_readl(cafe, NAND_ECC_SYN01)); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 386 | |
| 387 | chip->read_buf(mtd, buf, mtd->writesize); |
| 388 | chip->read_buf(mtd, chip->oob_poi, mtd->oobsize); |
| 389 | |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 390 | if (checkecc && cafe_readl(cafe, NAND_ECC_RESULT) & (1<<18)) { |
Segher Boessenkool | 8c61b7a | 2007-05-02 12:18:49 +0200 | [diff] [blame] | 391 | unsigned short syn[8], pat[4]; |
| 392 | int pos[4]; |
| 393 | u8 *oob = chip->oob_poi; |
| 394 | int i, n; |
David Woodhouse | 04459d7 | 2006-10-22 02:18:48 +0100 | [diff] [blame] | 395 | |
| 396 | for (i=0; i<8; i+=2) { |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 397 | uint32_t tmp = cafe_readl(cafe, NAND_ECC_SYN01 + (i*2)); |
Segher Boessenkool | 8c61b7a | 2007-05-02 12:18:49 +0200 | [diff] [blame] | 398 | syn[i] = cafe->rs->index_of[tmp & 0xfff]; |
| 399 | syn[i+1] = cafe->rs->index_of[(tmp >> 16) & 0xfff]; |
David Woodhouse | c9ac597 | 2006-11-30 08:17:38 +0000 | [diff] [blame] | 400 | } |
David Woodhouse | 04459d7 | 2006-10-22 02:18:48 +0100 | [diff] [blame] | 401 | |
Segher Boessenkool | 8c61b7a | 2007-05-02 12:18:49 +0200 | [diff] [blame] | 402 | n = decode_rs16(cafe->rs, NULL, NULL, 1367, syn, 0, pos, 0, |
| 403 | pat); |
| 404 | |
| 405 | for (i = 0; i < n; i++) { |
| 406 | int p = pos[i]; |
| 407 | |
| 408 | /* The 12-bit symbols are mapped to bytes here */ |
| 409 | |
| 410 | if (p > 1374) { |
| 411 | /* out of range */ |
| 412 | n = -1374; |
| 413 | } else if (p == 0) { |
| 414 | /* high four bits do not correspond to data */ |
| 415 | if (pat[i] > 0xff) |
| 416 | n = -2048; |
| 417 | else |
| 418 | buf[0] ^= pat[i]; |
| 419 | } else if (p == 1365) { |
| 420 | buf[2047] ^= pat[i] >> 4; |
| 421 | oob[0] ^= pat[i] << 4; |
| 422 | } else if (p > 1365) { |
| 423 | if ((p & 1) == 1) { |
| 424 | oob[3*p/2 - 2048] ^= pat[i] >> 4; |
| 425 | oob[3*p/2 - 2047] ^= pat[i] << 4; |
| 426 | } else { |
| 427 | oob[3*p/2 - 2049] ^= pat[i] >> 8; |
| 428 | oob[3*p/2 - 2048] ^= pat[i]; |
| 429 | } |
| 430 | } else if ((p & 1) == 1) { |
| 431 | buf[3*p/2] ^= pat[i] >> 4; |
| 432 | buf[3*p/2 + 1] ^= pat[i] << 4; |
| 433 | } else { |
| 434 | buf[3*p/2 - 1] ^= pat[i] >> 8; |
| 435 | buf[3*p/2] ^= pat[i]; |
| 436 | } |
| 437 | } |
| 438 | |
| 439 | if (n < 0) { |
David Woodhouse | be8444b | 2006-10-31 12:36:04 +0800 | [diff] [blame] | 440 | dev_dbg(&cafe->pdev->dev, "Failed to correct ECC at %08x\n", |
| 441 | cafe_readl(cafe, NAND_ADDR2) * 2048); |
Segher Boessenkool | 8c61b7a | 2007-05-02 12:18:49 +0200 | [diff] [blame] | 442 | for (i = 0; i < 0x5c; i += 4) |
David Woodhouse | be8444b | 2006-10-31 12:36:04 +0800 | [diff] [blame] | 443 | printk("Register %x: %08x\n", i, readl(cafe->mmio + i)); |
David Woodhouse | 04459d7 | 2006-10-22 02:18:48 +0100 | [diff] [blame] | 444 | mtd->ecc_stats.failed++; |
| 445 | } else { |
Segher Boessenkool | 8c61b7a | 2007-05-02 12:18:49 +0200 | [diff] [blame] | 446 | dev_dbg(&cafe->pdev->dev, "Corrected %d symbol errors\n", n); |
| 447 | mtd->ecc_stats.corrected += n; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 448 | max_bitflips = max_t(unsigned int, max_bitflips, n); |
David Woodhouse | 04459d7 | 2006-10-22 02:18:48 +0100 | [diff] [blame] | 449 | } |
| 450 | } |
| 451 | |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 452 | return max_bitflips; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 453 | } |
| 454 | |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 455 | static struct nand_ecclayout cafe_oobinfo_2048 = { |
| 456 | .eccbytes = 14, |
| 457 | .eccpos = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13}, |
| 458 | .oobfree = {{14, 50}} |
| 459 | }; |
| 460 | |
David Woodhouse | c9ac597 | 2006-11-30 08:17:38 +0000 | [diff] [blame] | 461 | /* Ick. The BBT code really ought to be able to work this bit out |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 462 | for itself from the above, at least for the 2KiB case */ |
| 463 | static uint8_t cafe_bbt_pattern_2048[] = { 'B', 'b', 't', '0' }; |
| 464 | static uint8_t cafe_mirror_pattern_2048[] = { '1', 't', 'b', 'B' }; |
| 465 | |
| 466 | static uint8_t cafe_bbt_pattern_512[] = { 0xBB }; |
| 467 | static uint8_t cafe_mirror_pattern_512[] = { 0xBC }; |
| 468 | |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 469 | |
| 470 | static struct nand_bbt_descr cafe_bbt_main_descr_2048 = { |
| 471 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
David Woodhouse | 048c37b | 2007-05-02 12:26:37 +0100 | [diff] [blame] | 472 | | NAND_BBT_2BIT | NAND_BBT_VERSION, |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 473 | .offs = 14, |
| 474 | .len = 4, |
| 475 | .veroffs = 18, |
| 476 | .maxblocks = 4, |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 477 | .pattern = cafe_bbt_pattern_2048 |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 478 | }; |
| 479 | |
| 480 | static struct nand_bbt_descr cafe_bbt_mirror_descr_2048 = { |
| 481 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
David Woodhouse | 048c37b | 2007-05-02 12:26:37 +0100 | [diff] [blame] | 482 | | NAND_BBT_2BIT | NAND_BBT_VERSION, |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 483 | .offs = 14, |
| 484 | .len = 4, |
| 485 | .veroffs = 18, |
| 486 | .maxblocks = 4, |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 487 | .pattern = cafe_mirror_pattern_2048 |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 488 | }; |
| 489 | |
| 490 | static struct nand_ecclayout cafe_oobinfo_512 = { |
| 491 | .eccbytes = 14, |
| 492 | .eccpos = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13}, |
| 493 | .oobfree = {{14, 2}} |
| 494 | }; |
| 495 | |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 496 | static struct nand_bbt_descr cafe_bbt_main_descr_512 = { |
| 497 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
David Woodhouse | 048c37b | 2007-05-02 12:26:37 +0100 | [diff] [blame] | 498 | | NAND_BBT_2BIT | NAND_BBT_VERSION, |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 499 | .offs = 14, |
| 500 | .len = 1, |
| 501 | .veroffs = 15, |
| 502 | .maxblocks = 4, |
| 503 | .pattern = cafe_bbt_pattern_512 |
| 504 | }; |
| 505 | |
| 506 | static struct nand_bbt_descr cafe_bbt_mirror_descr_512 = { |
| 507 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
David Woodhouse | 048c37b | 2007-05-02 12:26:37 +0100 | [diff] [blame] | 508 | | NAND_BBT_2BIT | NAND_BBT_VERSION, |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 509 | .offs = 14, |
| 510 | .len = 1, |
| 511 | .veroffs = 15, |
| 512 | .maxblocks = 4, |
| 513 | .pattern = cafe_mirror_pattern_512 |
| 514 | }; |
| 515 | |
| 516 | |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 517 | static int cafe_nand_write_page_lowlevel(struct mtd_info *mtd, |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 518 | struct nand_chip *chip, |
| 519 | const uint8_t *buf, int oob_required) |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 520 | { |
| 521 | struct cafe_priv *cafe = mtd->priv; |
| 522 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 523 | chip->write_buf(mtd, buf, mtd->writesize); |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 524 | chip->write_buf(mtd, chip->oob_poi, mtd->oobsize); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 525 | |
| 526 | /* Set up ECC autogeneration */ |
David Woodhouse | cad4065 | 2006-11-01 08:19:20 +0800 | [diff] [blame] | 527 | cafe->ctl2 |= (1<<30); |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 528 | |
| 529 | return 0; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | static int cafe_nand_write_page(struct mtd_info *mtd, struct nand_chip *chip, |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 533 | uint32_t offset, int data_len, const uint8_t *buf, |
| 534 | int oob_required, int page, int cached, int raw) |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 535 | { |
| 536 | int status; |
| 537 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 538 | chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page); |
| 539 | |
| 540 | if (unlikely(raw)) |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 541 | status = chip->ecc.write_page_raw(mtd, chip, buf, oob_required); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 542 | else |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 543 | status = chip->ecc.write_page(mtd, chip, buf, oob_required); |
| 544 | |
| 545 | if (status < 0) |
| 546 | return status; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 547 | |
| 548 | /* |
| 549 | * Cached progamming disabled for now, Not sure if its worth the |
| 550 | * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s) |
| 551 | */ |
| 552 | cached = 0; |
| 553 | |
| 554 | if (!cached || !(chip->options & NAND_CACHEPRG)) { |
| 555 | |
| 556 | chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1); |
| 557 | status = chip->waitfunc(mtd, chip); |
| 558 | /* |
| 559 | * See if operation failed and additional status checks are |
| 560 | * available |
| 561 | */ |
| 562 | if ((status & NAND_STATUS_FAIL) && (chip->errstat)) |
| 563 | status = chip->errstat(mtd, chip, FL_WRITING, status, |
| 564 | page); |
| 565 | |
| 566 | if (status & NAND_STATUS_FAIL) |
| 567 | return -EIO; |
| 568 | } else { |
| 569 | chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1); |
| 570 | status = chip->waitfunc(mtd, chip); |
| 571 | } |
| 572 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 573 | return 0; |
| 574 | } |
| 575 | |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 576 | static int cafe_nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip) |
| 577 | { |
| 578 | return 0; |
| 579 | } |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 580 | |
Segher Boessenkool | 8c61b7a | 2007-05-02 12:18:49 +0200 | [diff] [blame] | 581 | /* F_2[X]/(X**6+X+1) */ |
Bill Pemberton | 06f2551 | 2012-11-19 13:23:07 -0500 | [diff] [blame] | 582 | static unsigned short gf64_mul(u8 a, u8 b) |
Segher Boessenkool | 8c61b7a | 2007-05-02 12:18:49 +0200 | [diff] [blame] | 583 | { |
| 584 | u8 c; |
| 585 | unsigned int i; |
| 586 | |
| 587 | c = 0; |
| 588 | for (i = 0; i < 6; i++) { |
| 589 | if (a & 1) |
| 590 | c ^= b; |
| 591 | a >>= 1; |
| 592 | b <<= 1; |
| 593 | if ((b & 0x40) != 0) |
| 594 | b ^= 0x43; |
| 595 | } |
| 596 | |
| 597 | return c; |
| 598 | } |
| 599 | |
| 600 | /* F_64[X]/(X**2+X+A**-1) with A the generator of F_64[X] */ |
Bill Pemberton | 06f2551 | 2012-11-19 13:23:07 -0500 | [diff] [blame] | 601 | static u16 gf4096_mul(u16 a, u16 b) |
Segher Boessenkool | 8c61b7a | 2007-05-02 12:18:49 +0200 | [diff] [blame] | 602 | { |
| 603 | u8 ah, al, bh, bl, ch, cl; |
| 604 | |
| 605 | ah = a >> 6; |
| 606 | al = a & 0x3f; |
| 607 | bh = b >> 6; |
| 608 | bl = b & 0x3f; |
| 609 | |
| 610 | ch = gf64_mul(ah ^ al, bh ^ bl) ^ gf64_mul(al, bl); |
| 611 | cl = gf64_mul(gf64_mul(ah, bh), 0x21) ^ gf64_mul(al, bl); |
| 612 | |
| 613 | return (ch << 6) ^ cl; |
| 614 | } |
| 615 | |
Bill Pemberton | 06f2551 | 2012-11-19 13:23:07 -0500 | [diff] [blame] | 616 | static int cafe_mul(int x) |
Segher Boessenkool | 8c61b7a | 2007-05-02 12:18:49 +0200 | [diff] [blame] | 617 | { |
| 618 | if (x == 0) |
| 619 | return 1; |
| 620 | return gf4096_mul(x, 0xe01); |
| 621 | } |
| 622 | |
Bill Pemberton | 06f2551 | 2012-11-19 13:23:07 -0500 | [diff] [blame] | 623 | static int cafe_nand_probe(struct pci_dev *pdev, |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 624 | const struct pci_device_id *ent) |
| 625 | { |
| 626 | struct mtd_info *mtd; |
| 627 | struct cafe_priv *cafe; |
| 628 | uint32_t ctrl; |
| 629 | int err = 0; |
Huang Shijie | f02ea4e | 2014-01-13 14:27:12 +0800 | [diff] [blame] | 630 | int old_dma; |
| 631 | struct nand_buffers *nbuf; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 632 | |
David Woodhouse | 06ed24e | 2007-10-06 14:44:12 -0400 | [diff] [blame] | 633 | /* Very old versions shared the same PCI ident for all three |
| 634 | functions on the chip. Verify the class too... */ |
| 635 | if ((pdev->class >> 8) != PCI_CLASS_MEMORY_FLASH) |
| 636 | return -ENODEV; |
| 637 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 638 | err = pci_enable_device(pdev); |
| 639 | if (err) |
| 640 | return err; |
| 641 | |
| 642 | pci_set_master(pdev); |
| 643 | |
| 644 | mtd = kzalloc(sizeof(*mtd) + sizeof(struct cafe_priv), GFP_KERNEL); |
Jingoo Han | 9fd9e4c | 2013-12-26 12:04:58 +0900 | [diff] [blame] | 645 | if (!mtd) |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 646 | return -ENOMEM; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 647 | cafe = (void *)(&mtd[1]); |
| 648 | |
David Woodhouse | c451c7c | 2009-04-04 15:27:45 +0100 | [diff] [blame] | 649 | mtd->dev.parent = &pdev->dev; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 650 | mtd->priv = cafe; |
| 651 | mtd->owner = THIS_MODULE; |
| 652 | |
| 653 | cafe->pdev = pdev; |
| 654 | cafe->mmio = pci_iomap(pdev, 0, 0); |
| 655 | if (!cafe->mmio) { |
| 656 | dev_warn(&pdev->dev, "failed to iomap\n"); |
| 657 | err = -ENOMEM; |
| 658 | goto out_free_mtd; |
| 659 | } |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 660 | |
Segher Boessenkool | 8c61b7a | 2007-05-02 12:18:49 +0200 | [diff] [blame] | 661 | cafe->rs = init_rs_non_canonical(12, &cafe_mul, 0, 1, 8); |
| 662 | if (!cafe->rs) { |
| 663 | err = -ENOMEM; |
| 664 | goto out_ior; |
| 665 | } |
| 666 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 667 | cafe->nand.cmdfunc = cafe_nand_cmdfunc; |
| 668 | cafe->nand.dev_ready = cafe_device_ready; |
| 669 | cafe->nand.read_byte = cafe_read_byte; |
| 670 | cafe->nand.read_buf = cafe_read_buf; |
| 671 | cafe->nand.write_buf = cafe_write_buf; |
| 672 | cafe->nand.select_chip = cafe_select_chip; |
| 673 | |
| 674 | cafe->nand.chip_delay = 0; |
| 675 | |
| 676 | /* Enable the following for a flash based bad block table */ |
Brian Norris | bb9ebd4 | 2011-05-31 16:31:23 -0700 | [diff] [blame] | 677 | cafe->nand.bbt_options = NAND_BBT_USE_FLASH; |
Brian Norris | 1826dbc | 2012-05-01 17:12:55 -0700 | [diff] [blame] | 678 | cafe->nand.options = NAND_OWN_BUFFERS; |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 679 | |
| 680 | if (skipbbt) { |
| 681 | cafe->nand.options |= NAND_SKIP_BBTSCAN; |
| 682 | cafe->nand.block_bad = cafe_nand_block_bad; |
| 683 | } |
David Woodhouse | c9ac597 | 2006-11-30 08:17:38 +0000 | [diff] [blame] | 684 | |
David Woodhouse | 527a4f4 | 2007-01-23 15:35:27 +0800 | [diff] [blame] | 685 | if (numtimings && numtimings != 3) { |
| 686 | dev_warn(&cafe->pdev->dev, "%d timing register values ignored; precisely three are required\n", numtimings); |
| 687 | } |
| 688 | |
| 689 | if (numtimings == 3) { |
David Woodhouse | 527a4f4 | 2007-01-23 15:35:27 +0800 | [diff] [blame] | 690 | cafe_dev_dbg(&cafe->pdev->dev, "Using provided timings (%08x %08x %08x)\n", |
David Woodhouse | 8e5368a | 2007-03-23 10:40:04 +0000 | [diff] [blame] | 691 | timing[0], timing[1], timing[2]); |
David Woodhouse | 527a4f4 | 2007-01-23 15:35:27 +0800 | [diff] [blame] | 692 | } else { |
David Woodhouse | 8e5368a | 2007-03-23 10:40:04 +0000 | [diff] [blame] | 693 | timing[0] = cafe_readl(cafe, NAND_TIMING1); |
| 694 | timing[1] = cafe_readl(cafe, NAND_TIMING2); |
| 695 | timing[2] = cafe_readl(cafe, NAND_TIMING3); |
David Woodhouse | 527a4f4 | 2007-01-23 15:35:27 +0800 | [diff] [blame] | 696 | |
David Woodhouse | 8e5368a | 2007-03-23 10:40:04 +0000 | [diff] [blame] | 697 | if (timing[0] | timing[1] | timing[2]) { |
| 698 | cafe_dev_dbg(&cafe->pdev->dev, "Timing registers already set (%08x %08x %08x)\n", |
| 699 | timing[0], timing[1], timing[2]); |
David Woodhouse | 527a4f4 | 2007-01-23 15:35:27 +0800 | [diff] [blame] | 700 | } else { |
| 701 | dev_warn(&cafe->pdev->dev, "Timing registers unset; using most conservative defaults\n"); |
David Woodhouse | 8e5368a | 2007-03-23 10:40:04 +0000 | [diff] [blame] | 702 | timing[0] = timing[1] = timing[2] = 0xffffffff; |
David Woodhouse | 527a4f4 | 2007-01-23 15:35:27 +0800 | [diff] [blame] | 703 | } |
| 704 | } |
| 705 | |
David Woodhouse | dcc41bc | 2006-10-27 09:55:34 +0300 | [diff] [blame] | 706 | /* Start off by resetting the NAND controller completely */ |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 707 | cafe_writel(cafe, 1, NAND_RESET); |
| 708 | cafe_writel(cafe, 0, NAND_RESET); |
| 709 | |
David Woodhouse | 8e5368a | 2007-03-23 10:40:04 +0000 | [diff] [blame] | 710 | cafe_writel(cafe, timing[0], NAND_TIMING1); |
| 711 | cafe_writel(cafe, timing[1], NAND_TIMING2); |
| 712 | cafe_writel(cafe, timing[2], NAND_TIMING3); |
David Woodhouse | dcc41bc | 2006-10-27 09:55:34 +0300 | [diff] [blame] | 713 | |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 714 | cafe_writel(cafe, 0xffffffff, NAND_IRQ_MASK); |
Thomas Gleixner | 2db6346 | 2007-02-14 00:33:20 -0800 | [diff] [blame] | 715 | err = request_irq(pdev->irq, &cafe_nand_interrupt, IRQF_SHARED, |
| 716 | "CAFE NAND", mtd); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 717 | if (err) { |
| 718 | dev_warn(&pdev->dev, "Could not register IRQ %d\n", pdev->irq); |
Huang Shijie | f02ea4e | 2014-01-13 14:27:12 +0800 | [diff] [blame] | 719 | goto out_ior; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 720 | } |
David Woodhouse | f7c37d7 | 2007-01-23 15:44:10 +0800 | [diff] [blame] | 721 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 722 | /* Disable master reset, enable NAND clock */ |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 723 | ctrl = cafe_readl(cafe, GLOBAL_CTRL); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 724 | ctrl &= 0xffffeff0; |
| 725 | ctrl |= 0x00007000; |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 726 | cafe_writel(cafe, ctrl | 0x05, GLOBAL_CTRL); |
| 727 | cafe_writel(cafe, ctrl | 0x0a, GLOBAL_CTRL); |
| 728 | cafe_writel(cafe, 0, NAND_DMA_CTRL); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 729 | |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 730 | cafe_writel(cafe, 0x7006, GLOBAL_CTRL); |
| 731 | cafe_writel(cafe, 0x700a, GLOBAL_CTRL); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 732 | |
Huang Shijie | f02ea4e | 2014-01-13 14:27:12 +0800 | [diff] [blame] | 733 | /* Enable NAND IRQ in global IRQ mask register */ |
| 734 | cafe_writel(cafe, 0x80000007, GLOBAL_IRQ_MASK); |
| 735 | cafe_dev_dbg(&cafe->pdev->dev, "Control %x, IRQ mask %x\n", |
| 736 | cafe_readl(cafe, GLOBAL_CTRL), |
| 737 | cafe_readl(cafe, GLOBAL_IRQ_MASK)); |
| 738 | |
| 739 | /* Do not use the DMA for the nand_scan_ident() */ |
| 740 | old_dma = usedma; |
| 741 | usedma = 0; |
| 742 | |
| 743 | /* Scan to find existence of the device */ |
| 744 | if (nand_scan_ident(mtd, 2, NULL)) { |
| 745 | err = -ENXIO; |
| 746 | goto out_irq; |
| 747 | } |
| 748 | |
| 749 | cafe->dmabuf = dma_alloc_coherent(&cafe->pdev->dev, |
| 750 | 2112 + sizeof(struct nand_buffers) + |
| 751 | mtd->writesize + mtd->oobsize, |
| 752 | &cafe->dmaaddr, GFP_KERNEL); |
| 753 | if (!cafe->dmabuf) { |
| 754 | err = -ENOMEM; |
| 755 | goto out_irq; |
| 756 | } |
| 757 | cafe->nand.buffers = nbuf = (void *)cafe->dmabuf + 2112; |
| 758 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 759 | /* Set up DMA address */ |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 760 | cafe_writel(cafe, cafe->dmaaddr & 0xffffffff, NAND_DMA_ADDR0); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 761 | if (sizeof(cafe->dmaaddr) > 4) |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 762 | /* Shift in two parts to shut the compiler up */ |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 763 | cafe_writel(cafe, (cafe->dmaaddr >> 16) >> 16, NAND_DMA_ADDR1); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 764 | else |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 765 | cafe_writel(cafe, 0, NAND_DMA_ADDR1); |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 766 | |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 767 | cafe_dev_dbg(&cafe->pdev->dev, "Set DMA address to %x (virt %p)\n", |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 768 | cafe_readl(cafe, NAND_DMA_ADDR0), cafe->dmabuf); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 769 | |
Huang Shijie | f02ea4e | 2014-01-13 14:27:12 +0800 | [diff] [blame] | 770 | /* this driver does not need the @ecccalc and @ecccode */ |
| 771 | nbuf->ecccalc = NULL; |
| 772 | nbuf->ecccode = NULL; |
| 773 | nbuf->databuf = (uint8_t *)(nbuf + 1); |
David Woodhouse | f7c37d7 | 2007-01-23 15:44:10 +0800 | [diff] [blame] | 774 | |
Huang Shijie | f02ea4e | 2014-01-13 14:27:12 +0800 | [diff] [blame] | 775 | /* Restore the DMA flag */ |
| 776 | usedma = old_dma; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 777 | |
| 778 | cafe->ctl2 = 1<<27; /* Reed-Solomon ECC */ |
| 779 | if (mtd->writesize == 2048) |
| 780 | cafe->ctl2 |= 1<<29; /* 2KiB page size */ |
| 781 | |
| 782 | /* Set up ECC according to the type of chip we found */ |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 783 | if (mtd->writesize == 2048) { |
David Woodhouse | 8dd851d | 2006-10-20 02:11:40 +0100 | [diff] [blame] | 784 | cafe->nand.ecc.layout = &cafe_oobinfo_2048; |
| 785 | cafe->nand.bbt_td = &cafe_bbt_main_descr_2048; |
| 786 | cafe->nand.bbt_md = &cafe_bbt_mirror_descr_2048; |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 787 | } else if (mtd->writesize == 512) { |
| 788 | cafe->nand.ecc.layout = &cafe_oobinfo_512; |
| 789 | cafe->nand.bbt_td = &cafe_bbt_main_descr_512; |
| 790 | cafe->nand.bbt_md = &cafe_bbt_mirror_descr_512; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 791 | } else { |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 792 | printk(KERN_WARNING "Unexpected NAND flash writesize %d. Aborting\n", |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 793 | mtd->writesize); |
Huang Shijie | f02ea4e | 2014-01-13 14:27:12 +0800 | [diff] [blame] | 794 | goto out_free_dma; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 795 | } |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 796 | cafe->nand.ecc.mode = NAND_ECC_HW_SYNDROME; |
| 797 | cafe->nand.ecc.size = mtd->writesize; |
| 798 | cafe->nand.ecc.bytes = 14; |
Mike Dunn | 6a918ba | 2012-03-11 14:21:11 -0700 | [diff] [blame] | 799 | cafe->nand.ecc.strength = 4; |
David Woodhouse | fbad569 | 2006-10-22 15:09:33 +0100 | [diff] [blame] | 800 | cafe->nand.ecc.hwctl = (void *)cafe_nand_bug; |
| 801 | cafe->nand.ecc.calculate = (void *)cafe_nand_bug; |
| 802 | cafe->nand.ecc.correct = (void *)cafe_nand_bug; |
| 803 | cafe->nand.write_page = cafe_nand_write_page; |
| 804 | cafe->nand.ecc.write_page = cafe_nand_write_page_lowlevel; |
| 805 | cafe->nand.ecc.write_oob = cafe_nand_write_oob; |
| 806 | cafe->nand.ecc.read_page = cafe_nand_read_page; |
| 807 | cafe->nand.ecc.read_oob = cafe_nand_read_oob; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 808 | |
| 809 | err = nand_scan_tail(mtd); |
| 810 | if (err) |
Huang Shijie | f02ea4e | 2014-01-13 14:27:12 +0800 | [diff] [blame] | 811 | goto out_free_dma; |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 812 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 813 | pci_set_drvdata(pdev, mtd); |
David Woodhouse | 9c37f33 | 2007-10-28 21:56:39 -0400 | [diff] [blame] | 814 | |
Philip Rakity | 6887441 | 2008-10-08 16:08:20 -0700 | [diff] [blame] | 815 | mtd->name = "cafe_nand"; |
Artem Bityutskiy | 42d7fbe | 2012-03-09 19:24:26 +0200 | [diff] [blame] | 816 | mtd_device_parse_register(mtd, part_probes, NULL, NULL, 0); |
Dmitry Eremin-Solenikov | 4d32de8 | 2011-06-02 18:00:29 +0400 | [diff] [blame] | 817 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 818 | goto out; |
| 819 | |
Huang Shijie | f02ea4e | 2014-01-13 14:27:12 +0800 | [diff] [blame] | 820 | out_free_dma: |
| 821 | dma_free_coherent(&cafe->pdev->dev, |
| 822 | 2112 + sizeof(struct nand_buffers) + |
| 823 | mtd->writesize + mtd->oobsize, |
| 824 | cafe->dmabuf, cafe->dmaaddr); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 825 | out_irq: |
| 826 | /* Disable NAND IRQ in global IRQ mask register */ |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 827 | cafe_writel(cafe, ~1 & cafe_readl(cafe, GLOBAL_IRQ_MASK), GLOBAL_IRQ_MASK); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 828 | free_irq(pdev->irq, mtd); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 829 | out_ior: |
| 830 | pci_iounmap(pdev, cafe->mmio); |
| 831 | out_free_mtd: |
| 832 | kfree(mtd); |
| 833 | out: |
| 834 | return err; |
| 835 | } |
| 836 | |
Bill Pemberton | 810b7e0 | 2012-11-19 13:26:04 -0500 | [diff] [blame] | 837 | static void cafe_nand_remove(struct pci_dev *pdev) |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 838 | { |
| 839 | struct mtd_info *mtd = pci_get_drvdata(pdev); |
| 840 | struct cafe_priv *cafe = mtd->priv; |
| 841 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 842 | /* Disable NAND IRQ in global IRQ mask register */ |
David Woodhouse | 195a253 | 2006-10-31 12:30:11 +0800 | [diff] [blame] | 843 | cafe_writel(cafe, ~1 & cafe_readl(cafe, GLOBAL_IRQ_MASK), GLOBAL_IRQ_MASK); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 844 | free_irq(pdev->irq, mtd); |
| 845 | nand_release(mtd); |
Segher Boessenkool | 8c61b7a | 2007-05-02 12:18:49 +0200 | [diff] [blame] | 846 | free_rs(cafe->rs); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 847 | pci_iounmap(pdev, cafe->mmio); |
Huang Shijie | f02ea4e | 2014-01-13 14:27:12 +0800 | [diff] [blame] | 848 | dma_free_coherent(&cafe->pdev->dev, |
| 849 | 2112 + sizeof(struct nand_buffers) + |
| 850 | mtd->writesize + mtd->oobsize, |
| 851 | cafe->dmabuf, cafe->dmaaddr); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 852 | kfree(mtd); |
| 853 | } |
| 854 | |
Márton Németh | 377ace0 | 2010-01-09 15:10:34 +0100 | [diff] [blame] | 855 | static const struct pci_device_id cafe_nand_tbl[] = { |
David Woodhouse | 514fca4 | 2008-09-03 09:47:17 +0100 | [diff] [blame] | 856 | { PCI_VENDOR_ID_MARVELL, PCI_DEVICE_ID_MARVELL_88ALP01_NAND, |
| 857 | PCI_ANY_ID, PCI_ANY_ID }, |
David Woodhouse | 06ed24e | 2007-10-06 14:44:12 -0400 | [diff] [blame] | 858 | { } |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 859 | }; |
| 860 | |
| 861 | MODULE_DEVICE_TABLE(pci, cafe_nand_tbl); |
| 862 | |
David Woodhouse | 1fcf8ce | 2007-10-06 14:59:32 -0400 | [diff] [blame] | 863 | static int cafe_nand_resume(struct pci_dev *pdev) |
| 864 | { |
| 865 | uint32_t ctrl; |
| 866 | struct mtd_info *mtd = pci_get_drvdata(pdev); |
| 867 | struct cafe_priv *cafe = mtd->priv; |
| 868 | |
| 869 | /* Start off by resetting the NAND controller completely */ |
| 870 | cafe_writel(cafe, 1, NAND_RESET); |
| 871 | cafe_writel(cafe, 0, NAND_RESET); |
| 872 | cafe_writel(cafe, 0xffffffff, NAND_IRQ_MASK); |
| 873 | |
| 874 | /* Restore timing configuration */ |
| 875 | cafe_writel(cafe, timing[0], NAND_TIMING1); |
| 876 | cafe_writel(cafe, timing[1], NAND_TIMING2); |
| 877 | cafe_writel(cafe, timing[2], NAND_TIMING3); |
| 878 | |
| 879 | /* Disable master reset, enable NAND clock */ |
| 880 | ctrl = cafe_readl(cafe, GLOBAL_CTRL); |
| 881 | ctrl &= 0xffffeff0; |
| 882 | ctrl |= 0x00007000; |
| 883 | cafe_writel(cafe, ctrl | 0x05, GLOBAL_CTRL); |
| 884 | cafe_writel(cafe, ctrl | 0x0a, GLOBAL_CTRL); |
| 885 | cafe_writel(cafe, 0, NAND_DMA_CTRL); |
| 886 | cafe_writel(cafe, 0x7006, GLOBAL_CTRL); |
| 887 | cafe_writel(cafe, 0x700a, GLOBAL_CTRL); |
| 888 | |
| 889 | /* Set up DMA address */ |
| 890 | cafe_writel(cafe, cafe->dmaaddr & 0xffffffff, NAND_DMA_ADDR0); |
| 891 | if (sizeof(cafe->dmaaddr) > 4) |
| 892 | /* Shift in two parts to shut the compiler up */ |
| 893 | cafe_writel(cafe, (cafe->dmaaddr >> 16) >> 16, NAND_DMA_ADDR1); |
| 894 | else |
| 895 | cafe_writel(cafe, 0, NAND_DMA_ADDR1); |
| 896 | |
| 897 | /* Enable NAND IRQ in global IRQ mask register */ |
| 898 | cafe_writel(cafe, 0x80000007, GLOBAL_IRQ_MASK); |
| 899 | return 0; |
| 900 | } |
| 901 | |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 902 | static struct pci_driver cafe_nand_pci_driver = { |
| 903 | .name = "CAFÉ NAND", |
| 904 | .id_table = cafe_nand_tbl, |
| 905 | .probe = cafe_nand_probe, |
Bill Pemberton | 5153b88 | 2012-11-19 13:21:24 -0500 | [diff] [blame] | 906 | .remove = cafe_nand_remove, |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 907 | .resume = cafe_nand_resume, |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 908 | }; |
| 909 | |
Axel Lin | 4d16cd6 | 2012-04-03 09:59:44 +0800 | [diff] [blame] | 910 | module_pci_driver(cafe_nand_pci_driver); |
David Woodhouse | 5467fb0 | 2006-10-06 15:36:29 +0100 | [diff] [blame] | 911 | |
| 912 | MODULE_LICENSE("GPL"); |
| 913 | MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>"); |
David Woodhouse | f7c37d7 | 2007-01-23 15:44:10 +0800 | [diff] [blame] | 914 | MODULE_DESCRIPTION("NAND flash driver for OLPC CAFÉ chip"); |