]> Pileus Git - ~andy/linux/blob - drivers/mtd/devices/doc2000.c
mtd: remove retlen zeroing duplication
[~andy/linux] / drivers / mtd / devices / doc2000.c
1
2 /*
3  * Linux driver for Disk-On-Chip 2000 and Millennium
4  * (c) 1999 Machine Vision Holdings, Inc.
5  * (c) 1999, 2000 David Woodhouse <dwmw2@infradead.org>
6  */
7
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <asm/errno.h>
11 #include <asm/io.h>
12 #include <asm/uaccess.h>
13 #include <linux/delay.h>
14 #include <linux/slab.h>
15 #include <linux/sched.h>
16 #include <linux/init.h>
17 #include <linux/types.h>
18 #include <linux/bitops.h>
19 #include <linux/mutex.h>
20
21 #include <linux/mtd/mtd.h>
22 #include <linux/mtd/nand.h>
23 #include <linux/mtd/doc2000.h>
24
25 #define DOC_SUPPORT_2000
26 #define DOC_SUPPORT_2000TSOP
27 #define DOC_SUPPORT_MILLENNIUM
28
29 #ifdef DOC_SUPPORT_2000
30 #define DoC_is_2000(doc) (doc->ChipID == DOC_ChipID_Doc2k)
31 #else
32 #define DoC_is_2000(doc) (0)
33 #endif
34
35 #if defined(DOC_SUPPORT_2000TSOP) || defined(DOC_SUPPORT_MILLENNIUM)
36 #define DoC_is_Millennium(doc) (doc->ChipID == DOC_ChipID_DocMil)
37 #else
38 #define DoC_is_Millennium(doc) (0)
39 #endif
40
41 /* #define ECC_DEBUG */
42
43 /* I have no idea why some DoC chips can not use memcpy_from|to_io().
44  * This may be due to the different revisions of the ASIC controller built-in or
45  * simplily a QA/Bug issue. Who knows ?? If you have trouble, please uncomment
46  * this:
47  #undef USE_MEMCPY
48 */
49
50 static int doc_read(struct mtd_info *mtd, loff_t from, size_t len,
51                     size_t *retlen, u_char *buf);
52 static int doc_write(struct mtd_info *mtd, loff_t to, size_t len,
53                      size_t *retlen, const u_char *buf);
54 static int doc_read_oob(struct mtd_info *mtd, loff_t ofs,
55                         struct mtd_oob_ops *ops);
56 static int doc_write_oob(struct mtd_info *mtd, loff_t ofs,
57                          struct mtd_oob_ops *ops);
58 static int doc_write_oob_nolock(struct mtd_info *mtd, loff_t ofs, size_t len,
59                          size_t *retlen, const u_char *buf);
60 static int doc_erase (struct mtd_info *mtd, struct erase_info *instr);
61
62 static struct mtd_info *doc2klist = NULL;
63
64 /* Perform the required delay cycles by reading from the appropriate register */
65 static void DoC_Delay(struct DiskOnChip *doc, unsigned short cycles)
66 {
67         volatile char dummy;
68         int i;
69
70         for (i = 0; i < cycles; i++) {
71                 if (DoC_is_Millennium(doc))
72                         dummy = ReadDOC(doc->virtadr, NOP);
73                 else
74                         dummy = ReadDOC(doc->virtadr, DOCStatus);
75         }
76
77 }
78
79 /* DOC_WaitReady: Wait for RDY line to be asserted by the flash chip */
80 static int _DoC_WaitReady(struct DiskOnChip *doc)
81 {
82         void __iomem *docptr = doc->virtadr;
83         unsigned long timeo = jiffies + (HZ * 10);
84
85         pr_debug("_DoC_WaitReady called for out-of-line wait\n");
86
87         /* Out-of-line routine to wait for chip response */
88         while (!(ReadDOC(docptr, CDSNControl) & CDSN_CTRL_FR_B)) {
89                 /* issue 2 read from NOP register after reading from CDSNControl register
90                 see Software Requirement 11.4 item 2. */
91                 DoC_Delay(doc, 2);
92
93                 if (time_after(jiffies, timeo)) {
94                         pr_debug("_DoC_WaitReady timed out.\n");
95                         return -EIO;
96                 }
97                 udelay(1);
98                 cond_resched();
99         }
100
101         return 0;
102 }
103
104 static inline int DoC_WaitReady(struct DiskOnChip *doc)
105 {
106         void __iomem *docptr = doc->virtadr;
107
108         /* This is inline, to optimise the common case, where it's ready instantly */
109         int ret = 0;
110
111         /* 4 read form NOP register should be issued in prior to the read from CDSNControl
112            see Software Requirement 11.4 item 2. */
113         DoC_Delay(doc, 4);
114
115         if (!(ReadDOC(docptr, CDSNControl) & CDSN_CTRL_FR_B))
116                 /* Call the out-of-line routine to wait */
117                 ret = _DoC_WaitReady(doc);
118
119         /* issue 2 read from NOP register after reading from CDSNControl register
120            see Software Requirement 11.4 item 2. */
121         DoC_Delay(doc, 2);
122
123         return ret;
124 }
125
126 /* DoC_Command: Send a flash command to the flash chip through the CDSN Slow IO register to
127    bypass the internal pipeline. Each of 4 delay cycles (read from the NOP register) is
128    required after writing to CDSN Control register, see Software Requirement 11.4 item 3. */
129
130 static int DoC_Command(struct DiskOnChip *doc, unsigned char command,
131                               unsigned char xtraflags)
132 {
133         void __iomem *docptr = doc->virtadr;
134
135         if (DoC_is_2000(doc))
136                 xtraflags |= CDSN_CTRL_FLASH_IO;
137
138         /* Assert the CLE (Command Latch Enable) line to the flash chip */
139         WriteDOC(xtraflags | CDSN_CTRL_CLE | CDSN_CTRL_CE, docptr, CDSNControl);
140         DoC_Delay(doc, 4);      /* Software requirement 11.4.3 for Millennium */
141
142         if (DoC_is_Millennium(doc))
143                 WriteDOC(command, docptr, CDSNSlowIO);
144
145         /* Send the command */
146         WriteDOC_(command, docptr, doc->ioreg);
147         if (DoC_is_Millennium(doc))
148                 WriteDOC(command, docptr, WritePipeTerm);
149
150         /* Lower the CLE line */
151         WriteDOC(xtraflags | CDSN_CTRL_CE, docptr, CDSNControl);
152         DoC_Delay(doc, 4);      /* Software requirement 11.4.3 for Millennium */
153
154         /* Wait for the chip to respond - Software requirement 11.4.1 (extended for any command) */
155         return DoC_WaitReady(doc);
156 }
157
158 /* DoC_Address: Set the current address for the flash chip through the CDSN Slow IO register to
159    bypass the internal pipeline. Each of 4 delay cycles (read from the NOP register) is
160    required after writing to CDSN Control register, see Software Requirement 11.4 item 3. */
161
162 static int DoC_Address(struct DiskOnChip *doc, int numbytes, unsigned long ofs,
163                        unsigned char xtraflags1, unsigned char xtraflags2)
164 {
165         int i;
166         void __iomem *docptr = doc->virtadr;
167
168         if (DoC_is_2000(doc))
169                 xtraflags1 |= CDSN_CTRL_FLASH_IO;
170
171         /* Assert the ALE (Address Latch Enable) line to the flash chip */
172         WriteDOC(xtraflags1 | CDSN_CTRL_ALE | CDSN_CTRL_CE, docptr, CDSNControl);
173
174         DoC_Delay(doc, 4);      /* Software requirement 11.4.3 for Millennium */
175
176         /* Send the address */
177         /* Devices with 256-byte page are addressed as:
178            Column (bits 0-7), Page (bits 8-15, 16-23, 24-31)
179            * there is no device on the market with page256
180            and more than 24 bits.
181            Devices with 512-byte page are addressed as:
182            Column (bits 0-7), Page (bits 9-16, 17-24, 25-31)
183            * 25-31 is sent only if the chip support it.
184            * bit 8 changes the read command to be sent
185            (NAND_CMD_READ0 or NAND_CMD_READ1).
186          */
187
188         if (numbytes == ADDR_COLUMN || numbytes == ADDR_COLUMN_PAGE) {
189                 if (DoC_is_Millennium(doc))
190                         WriteDOC(ofs & 0xff, docptr, CDSNSlowIO);
191                 WriteDOC_(ofs & 0xff, docptr, doc->ioreg);
192         }
193
194         if (doc->page256) {
195                 ofs = ofs >> 8;
196         } else {
197                 ofs = ofs >> 9;
198         }
199
200         if (numbytes == ADDR_PAGE || numbytes == ADDR_COLUMN_PAGE) {
201                 for (i = 0; i < doc->pageadrlen; i++, ofs = ofs >> 8) {
202                         if (DoC_is_Millennium(doc))
203                                 WriteDOC(ofs & 0xff, docptr, CDSNSlowIO);
204                         WriteDOC_(ofs & 0xff, docptr, doc->ioreg);
205                 }
206         }
207
208         if (DoC_is_Millennium(doc))
209                 WriteDOC(ofs & 0xff, docptr, WritePipeTerm);
210
211         DoC_Delay(doc, 2);      /* Needed for some slow flash chips. mf. */
212
213         /* FIXME: The SlowIO's for millennium could be replaced by
214            a single WritePipeTerm here. mf. */
215
216         /* Lower the ALE line */
217         WriteDOC(xtraflags1 | xtraflags2 | CDSN_CTRL_CE, docptr,
218                  CDSNControl);
219
220         DoC_Delay(doc, 4);      /* Software requirement 11.4.3 for Millennium */
221
222         /* Wait for the chip to respond - Software requirement 11.4.1 */
223         return DoC_WaitReady(doc);
224 }
225
226 /* Read a buffer from DoC, taking care of Millennium odditys */
227 static void DoC_ReadBuf(struct DiskOnChip *doc, u_char * buf, int len)
228 {
229         volatile int dummy;
230         int modulus = 0xffff;
231         void __iomem *docptr = doc->virtadr;
232         int i;
233
234         if (len <= 0)
235                 return;
236
237         if (DoC_is_Millennium(doc)) {
238                 /* Read the data via the internal pipeline through CDSN IO register,
239                    see Pipelined Read Operations 11.3 */
240                 dummy = ReadDOC(docptr, ReadPipeInit);
241
242                 /* Millennium should use the LastDataRead register - Pipeline Reads */
243                 len--;
244
245                 /* This is needed for correctly ECC calculation */
246                 modulus = 0xff;
247         }
248
249         for (i = 0; i < len; i++)
250                 buf[i] = ReadDOC_(docptr, doc->ioreg + (i & modulus));
251
252         if (DoC_is_Millennium(doc)) {
253                 buf[i] = ReadDOC(docptr, LastDataRead);
254         }
255 }
256
257 /* Write a buffer to DoC, taking care of Millennium odditys */
258 static void DoC_WriteBuf(struct DiskOnChip *doc, const u_char * buf, int len)
259 {
260         void __iomem *docptr = doc->virtadr;
261         int i;
262
263         if (len <= 0)
264                 return;
265
266         for (i = 0; i < len; i++)
267                 WriteDOC_(buf[i], docptr, doc->ioreg + i);
268
269         if (DoC_is_Millennium(doc)) {
270                 WriteDOC(0x00, docptr, WritePipeTerm);
271         }
272 }
273
274
275 /* DoC_SelectChip: Select a given flash chip within the current floor */
276
277 static inline int DoC_SelectChip(struct DiskOnChip *doc, int chip)
278 {
279         void __iomem *docptr = doc->virtadr;
280
281         /* Software requirement 11.4.4 before writing DeviceSelect */
282         /* Deassert the CE line to eliminate glitches on the FCE# outputs */
283         WriteDOC(CDSN_CTRL_WP, docptr, CDSNControl);
284         DoC_Delay(doc, 4);      /* Software requirement 11.4.3 for Millennium */
285
286         /* Select the individual flash chip requested */
287         WriteDOC(chip, docptr, CDSNDeviceSelect);
288         DoC_Delay(doc, 4);
289
290         /* Reassert the CE line */
291         WriteDOC(CDSN_CTRL_CE | CDSN_CTRL_FLASH_IO | CDSN_CTRL_WP, docptr,
292                  CDSNControl);
293         DoC_Delay(doc, 4);      /* Software requirement 11.4.3 for Millennium */
294
295         /* Wait for it to be ready */
296         return DoC_WaitReady(doc);
297 }
298
299 /* DoC_SelectFloor: Select a given floor (bank of flash chips) */
300
301 static inline int DoC_SelectFloor(struct DiskOnChip *doc, int floor)
302 {
303         void __iomem *docptr = doc->virtadr;
304
305         /* Select the floor (bank) of chips required */
306         WriteDOC(floor, docptr, FloorSelect);
307
308         /* Wait for the chip to be ready */
309         return DoC_WaitReady(doc);
310 }
311
312 /* DoC_IdentChip: Identify a given NAND chip given {floor,chip} */
313
314 static int DoC_IdentChip(struct DiskOnChip *doc, int floor, int chip)
315 {
316         int mfr, id, i, j;
317         volatile char dummy;
318
319         /* Page in the required floor/chip */
320         DoC_SelectFloor(doc, floor);
321         DoC_SelectChip(doc, chip);
322
323         /* Reset the chip */
324         if (DoC_Command(doc, NAND_CMD_RESET, CDSN_CTRL_WP)) {
325                 pr_debug("DoC_Command (reset) for %d,%d returned true\n",
326                       floor, chip);
327                 return 0;
328         }
329
330
331         /* Read the NAND chip ID: 1. Send ReadID command */
332         if (DoC_Command(doc, NAND_CMD_READID, CDSN_CTRL_WP)) {
333                 pr_debug("DoC_Command (ReadID) for %d,%d returned true\n",
334                       floor, chip);
335                 return 0;
336         }
337
338         /* Read the NAND chip ID: 2. Send address byte zero */
339         DoC_Address(doc, ADDR_COLUMN, 0, CDSN_CTRL_WP, 0);
340
341         /* Read the manufacturer and device id codes from the device */
342
343         if (DoC_is_Millennium(doc)) {
344                 DoC_Delay(doc, 2);
345                 dummy = ReadDOC(doc->virtadr, ReadPipeInit);
346                 mfr = ReadDOC(doc->virtadr, LastDataRead);
347
348                 DoC_Delay(doc, 2);
349                 dummy = ReadDOC(doc->virtadr, ReadPipeInit);
350                 id = ReadDOC(doc->virtadr, LastDataRead);
351         } else {
352                 /* CDSN Slow IO register see Software Req 11.4 item 5. */
353                 dummy = ReadDOC(doc->virtadr, CDSNSlowIO);
354                 DoC_Delay(doc, 2);
355                 mfr = ReadDOC_(doc->virtadr, doc->ioreg);
356
357                 /* CDSN Slow IO register see Software Req 11.4 item 5. */
358                 dummy = ReadDOC(doc->virtadr, CDSNSlowIO);
359                 DoC_Delay(doc, 2);
360                 id = ReadDOC_(doc->virtadr, doc->ioreg);
361         }
362
363         /* No response - return failure */
364         if (mfr == 0xff || mfr == 0)
365                 return 0;
366
367         /* Check it's the same as the first chip we identified.
368          * M-Systems say that any given DiskOnChip device should only
369          * contain _one_ type of flash part, although that's not a
370          * hardware restriction. */
371         if (doc->mfr) {
372                 if (doc->mfr == mfr && doc->id == id)
373                         return 1;       /* This is the same as the first */
374                 else
375                         printk(KERN_WARNING
376                                "Flash chip at floor %d, chip %d is different:\n",
377                                floor, chip);
378         }
379
380         /* Print and store the manufacturer and ID codes. */
381         for (i = 0; nand_flash_ids[i].name != NULL; i++) {
382                 if (id == nand_flash_ids[i].id) {
383                         /* Try to identify manufacturer */
384                         for (j = 0; nand_manuf_ids[j].id != 0x0; j++) {
385                                 if (nand_manuf_ids[j].id == mfr)
386                                         break;
387                         }
388                         printk(KERN_INFO
389                                "Flash chip found: Manufacturer ID: %2.2X, "
390                                "Chip ID: %2.2X (%s:%s)\n", mfr, id,
391                                nand_manuf_ids[j].name, nand_flash_ids[i].name);
392                         if (!doc->mfr) {
393                                 doc->mfr = mfr;
394                                 doc->id = id;
395                                 doc->chipshift =
396                                         ffs((nand_flash_ids[i].chipsize << 20)) - 1;
397                                 doc->page256 = (nand_flash_ids[i].pagesize == 256) ? 1 : 0;
398                                 doc->pageadrlen = doc->chipshift > 25 ? 3 : 2;
399                                 doc->erasesize =
400                                     nand_flash_ids[i].erasesize;
401                                 return 1;
402                         }
403                         return 0;
404                 }
405         }
406
407
408         /* We haven't fully identified the chip. Print as much as we know. */
409         printk(KERN_WARNING "Unknown flash chip found: %2.2X %2.2X\n",
410                id, mfr);
411
412         printk(KERN_WARNING "Please report to dwmw2@infradead.org\n");
413         return 0;
414 }
415
416 /* DoC_ScanChips: Find all NAND chips present in a DiskOnChip, and identify them */
417
418 static void DoC_ScanChips(struct DiskOnChip *this, int maxchips)
419 {
420         int floor, chip;
421         int numchips[MAX_FLOORS];
422         int ret = 1;
423
424         this->numchips = 0;
425         this->mfr = 0;
426         this->id = 0;
427
428         /* For each floor, find the number of valid chips it contains */
429         for (floor = 0; floor < MAX_FLOORS; floor++) {
430                 ret = 1;
431                 numchips[floor] = 0;
432                 for (chip = 0; chip < maxchips && ret != 0; chip++) {
433
434                         ret = DoC_IdentChip(this, floor, chip);
435                         if (ret) {
436                                 numchips[floor]++;
437                                 this->numchips++;
438                         }
439                 }
440         }
441
442         /* If there are none at all that we recognise, bail */
443         if (!this->numchips) {
444                 printk(KERN_NOTICE "No flash chips recognised.\n");
445                 return;
446         }
447
448         /* Allocate an array to hold the information for each chip */
449         this->chips = kmalloc(sizeof(struct Nand) * this->numchips, GFP_KERNEL);
450         if (!this->chips) {
451                 printk(KERN_NOTICE "No memory for allocating chip info structures\n");
452                 return;
453         }
454
455         ret = 0;
456
457         /* Fill out the chip array with {floor, chipno} for each
458          * detected chip in the device. */
459         for (floor = 0; floor < MAX_FLOORS; floor++) {
460                 for (chip = 0; chip < numchips[floor]; chip++) {
461                         this->chips[ret].floor = floor;
462                         this->chips[ret].chip = chip;
463                         this->chips[ret].curadr = 0;
464                         this->chips[ret].curmode = 0x50;
465                         ret++;
466                 }
467         }
468
469         /* Calculate and print the total size of the device */
470         this->totlen = this->numchips * (1 << this->chipshift);
471
472         printk(KERN_INFO "%d flash chips found. Total DiskOnChip size: %ld MiB\n",
473                this->numchips, this->totlen >> 20);
474 }
475
476 static int DoC2k_is_alias(struct DiskOnChip *doc1, struct DiskOnChip *doc2)
477 {
478         int tmp1, tmp2, retval;
479         if (doc1->physadr == doc2->physadr)
480                 return 1;
481
482         /* Use the alias resolution register which was set aside for this
483          * purpose. If it's value is the same on both chips, they might
484          * be the same chip, and we write to one and check for a change in
485          * the other. It's unclear if this register is usuable in the
486          * DoC 2000 (it's in the Millennium docs), but it seems to work. */
487         tmp1 = ReadDOC(doc1->virtadr, AliasResolution);
488         tmp2 = ReadDOC(doc2->virtadr, AliasResolution);
489         if (tmp1 != tmp2)
490                 return 0;
491
492         WriteDOC((tmp1 + 1) % 0xff, doc1->virtadr, AliasResolution);
493         tmp2 = ReadDOC(doc2->virtadr, AliasResolution);
494         if (tmp2 == (tmp1 + 1) % 0xff)
495                 retval = 1;
496         else
497                 retval = 0;
498
499         /* Restore register contents.  May not be necessary, but do it just to
500          * be safe. */
501         WriteDOC(tmp1, doc1->virtadr, AliasResolution);
502
503         return retval;
504 }
505
506 /* This routine is found from the docprobe code by symbol_get(),
507  * which will bump the use count of this module. */
508 void DoC2k_init(struct mtd_info *mtd)
509 {
510         struct DiskOnChip *this = mtd->priv;
511         struct DiskOnChip *old = NULL;
512         int maxchips;
513
514         /* We must avoid being called twice for the same device. */
515
516         if (doc2klist)
517                 old = doc2klist->priv;
518
519         while (old) {
520                 if (DoC2k_is_alias(old, this)) {
521                         printk(KERN_NOTICE
522                                "Ignoring DiskOnChip 2000 at 0x%lX - already configured\n",
523                                this->physadr);
524                         iounmap(this->virtadr);
525                         kfree(mtd);
526                         return;
527                 }
528                 if (old->nextdoc)
529                         old = old->nextdoc->priv;
530                 else
531                         old = NULL;
532         }
533
534
535         switch (this->ChipID) {
536         case DOC_ChipID_Doc2kTSOP:
537                 mtd->name = "DiskOnChip 2000 TSOP";
538                 this->ioreg = DoC_Mil_CDSN_IO;
539                 /* Pretend it's a Millennium */
540                 this->ChipID = DOC_ChipID_DocMil;
541                 maxchips = MAX_CHIPS;
542                 break;
543         case DOC_ChipID_Doc2k:
544                 mtd->name = "DiskOnChip 2000";
545                 this->ioreg = DoC_2k_CDSN_IO;
546                 maxchips = MAX_CHIPS;
547                 break;
548         case DOC_ChipID_DocMil:
549                 mtd->name = "DiskOnChip Millennium";
550                 this->ioreg = DoC_Mil_CDSN_IO;
551                 maxchips = MAX_CHIPS_MIL;
552                 break;
553         default:
554                 printk("Unknown ChipID 0x%02x\n", this->ChipID);
555                 kfree(mtd);
556                 iounmap(this->virtadr);
557                 return;
558         }
559
560         printk(KERN_NOTICE "%s found at address 0x%lX\n", mtd->name,
561                this->physadr);
562
563         mtd->type = MTD_NANDFLASH;
564         mtd->flags = MTD_CAP_NANDFLASH;
565         mtd->writebufsize = mtd->writesize = 512;
566         mtd->oobsize = 16;
567         mtd->owner = THIS_MODULE;
568         mtd->_erase = doc_erase;
569         mtd->_read = doc_read;
570         mtd->_write = doc_write;
571         mtd->_read_oob = doc_read_oob;
572         mtd->_write_oob = doc_write_oob;
573         this->curfloor = -1;
574         this->curchip = -1;
575         mutex_init(&this->lock);
576
577         /* Ident all the chips present. */
578         DoC_ScanChips(this, maxchips);
579
580         if (!this->totlen) {
581                 kfree(mtd);
582                 iounmap(this->virtadr);
583         } else {
584                 this->nextdoc = doc2klist;
585                 doc2klist = mtd;
586                 mtd->size = this->totlen;
587                 mtd->erasesize = this->erasesize;
588                 mtd_device_register(mtd, NULL, 0);
589                 return;
590         }
591 }
592 EXPORT_SYMBOL_GPL(DoC2k_init);
593
594 static int doc_read(struct mtd_info *mtd, loff_t from, size_t len,
595                     size_t * retlen, u_char * buf)
596 {
597         struct DiskOnChip *this = mtd->priv;
598         void __iomem *docptr = this->virtadr;
599         struct Nand *mychip;
600         unsigned char syndrome[6], eccbuf[6];
601         volatile char dummy;
602         int i, len256 = 0, ret=0;
603         size_t left = len;
604
605         mutex_lock(&this->lock);
606         while (left) {
607                 len = left;
608
609                 /* Don't allow a single read to cross a 512-byte block boundary */
610                 if (from + len > ((from | 0x1ff) + 1))
611                         len = ((from | 0x1ff) + 1) - from;
612
613                 /* The ECC will not be calculated correctly if less than 512 is read */
614                 if (len != 0x200)
615                         printk(KERN_WARNING
616                                "ECC needs a full sector read (adr: %lx size %lx)\n",
617                                (long) from, (long) len);
618
619                 /* printk("DoC_Read (adr: %lx size %lx)\n", (long) from, (long) len); */
620
621
622                 /* Find the chip which is to be used and select it */
623                 mychip = &this->chips[from >> (this->chipshift)];
624
625                 if (this->curfloor != mychip->floor) {
626                         DoC_SelectFloor(this, mychip->floor);
627                         DoC_SelectChip(this, mychip->chip);
628                 } else if (this->curchip != mychip->chip) {
629                         DoC_SelectChip(this, mychip->chip);
630                 }
631
632                 this->curfloor = mychip->floor;
633                 this->curchip = mychip->chip;
634
635                 DoC_Command(this,
636                             (!this->page256
637                              && (from & 0x100)) ? NAND_CMD_READ1 : NAND_CMD_READ0,
638                             CDSN_CTRL_WP);
639                 DoC_Address(this, ADDR_COLUMN_PAGE, from, CDSN_CTRL_WP,
640                             CDSN_CTRL_ECC_IO);
641
642                 /* Prime the ECC engine */
643                 WriteDOC(DOC_ECC_RESET, docptr, ECCConf);
644                 WriteDOC(DOC_ECC_EN, docptr, ECCConf);
645
646                 /* treat crossing 256-byte sector for 2M x 8bits devices */
647                 if (this->page256 && from + len > (from | 0xff) + 1) {
648                         len256 = (from | 0xff) + 1 - from;
649                         DoC_ReadBuf(this, buf, len256);
650
651                         DoC_Command(this, NAND_CMD_READ0, CDSN_CTRL_WP);
652                         DoC_Address(this, ADDR_COLUMN_PAGE, from + len256,
653                                     CDSN_CTRL_WP, CDSN_CTRL_ECC_IO);
654                 }
655
656                 DoC_ReadBuf(this, &buf[len256], len - len256);
657
658                 /* Let the caller know we completed it */
659                 *retlen += len;
660
661                 /* Read the ECC data through the DiskOnChip ECC logic */
662                 /* Note: this will work even with 2M x 8bit devices as   */
663                 /*       they have 8 bytes of OOB per 256 page. mf.      */
664                 DoC_ReadBuf(this, eccbuf, 6);
665
666                 /* Flush the pipeline */
667                 if (DoC_is_Millennium(this)) {
668                         dummy = ReadDOC(docptr, ECCConf);
669                         dummy = ReadDOC(docptr, ECCConf);
670                         i = ReadDOC(docptr, ECCConf);
671                 } else {
672                         dummy = ReadDOC(docptr, 2k_ECCStatus);
673                         dummy = ReadDOC(docptr, 2k_ECCStatus);
674                         i = ReadDOC(docptr, 2k_ECCStatus);
675                 }
676
677                 /* Check the ECC Status */
678                 if (i & 0x80) {
679                         int nb_errors;
680                         /* There was an ECC error */
681 #ifdef ECC_DEBUG
682                         printk(KERN_ERR "DiskOnChip ECC Error: Read at %lx\n", (long)from);
683 #endif
684                         /* Read the ECC syndrome through the DiskOnChip ECC
685                            logic.  These syndrome will be all ZERO when there
686                            is no error */
687                         for (i = 0; i < 6; i++) {
688                                 syndrome[i] =
689                                         ReadDOC(docptr, ECCSyndrome0 + i);
690                         }
691                         nb_errors = doc_decode_ecc(buf, syndrome);
692
693 #ifdef ECC_DEBUG
694                         printk(KERN_ERR "Errors corrected: %x\n", nb_errors);
695 #endif
696                         if (nb_errors < 0) {
697                                 /* We return error, but have actually done the
698                                    read. Not that this can be told to
699                                    user-space, via sys_read(), but at least
700                                    MTD-aware stuff can know about it by
701                                    checking *retlen */
702                                 ret = -EIO;
703                         }
704                 }
705
706 #ifdef PSYCHO_DEBUG
707                 printk(KERN_DEBUG "ECC DATA at %lxB: %2.2X %2.2X %2.2X %2.2X %2.2X %2.2X\n",
708                        (long)from, eccbuf[0], eccbuf[1], eccbuf[2],
709                        eccbuf[3], eccbuf[4], eccbuf[5]);
710 #endif
711
712                 /* disable the ECC engine */
713                 WriteDOC(DOC_ECC_DIS, docptr , ECCConf);
714
715                 /* according to 11.4.1, we need to wait for the busy line
716                  * drop if we read to the end of the page.  */
717                 if(0 == ((from + len) & 0x1ff))
718                 {
719                     DoC_WaitReady(this);
720                 }
721
722                 from += len;
723                 left -= len;
724                 buf += len;
725         }
726
727         mutex_unlock(&this->lock);
728
729         return ret;
730 }
731
732 static int doc_write(struct mtd_info *mtd, loff_t to, size_t len,
733                      size_t * retlen, const u_char * buf)
734 {
735         struct DiskOnChip *this = mtd->priv;
736         int di; /* Yes, DI is a hangover from when I was disassembling the binary driver */
737         void __iomem *docptr = this->virtadr;
738         unsigned char eccbuf[6];
739         volatile char dummy;
740         int len256 = 0;
741         struct Nand *mychip;
742         size_t left = len;
743         int status;
744
745         mutex_lock(&this->lock);
746         while (left) {
747                 len = left;
748
749                 /* Don't allow a single write to cross a 512-byte block boundary */
750                 if (to + len > ((to | 0x1ff) + 1))
751                         len = ((to | 0x1ff) + 1) - to;
752
753                 /* The ECC will not be calculated correctly if less than 512 is written */
754 /* DBB-
755                 if (len != 0x200 && eccbuf)
756                         printk(KERN_WARNING
757                                "ECC needs a full sector write (adr: %lx size %lx)\n",
758                                (long) to, (long) len);
759    -DBB */
760
761                 /* printk("DoC_Write (adr: %lx size %lx)\n", (long) to, (long) len); */
762
763                 /* Find the chip which is to be used and select it */
764                 mychip = &this->chips[to >> (this->chipshift)];
765
766                 if (this->curfloor != mychip->floor) {
767                         DoC_SelectFloor(this, mychip->floor);
768                         DoC_SelectChip(this, mychip->chip);
769                 } else if (this->curchip != mychip->chip) {
770                         DoC_SelectChip(this, mychip->chip);
771                 }
772
773                 this->curfloor = mychip->floor;
774                 this->curchip = mychip->chip;
775
776                 /* Set device to main plane of flash */
777                 DoC_Command(this, NAND_CMD_RESET, CDSN_CTRL_WP);
778                 DoC_Command(this,
779                             (!this->page256
780                              && (to & 0x100)) ? NAND_CMD_READ1 : NAND_CMD_READ0,
781                             CDSN_CTRL_WP);
782
783                 DoC_Command(this, NAND_CMD_SEQIN, 0);
784                 DoC_Address(this, ADDR_COLUMN_PAGE, to, 0, CDSN_CTRL_ECC_IO);
785
786                 /* Prime the ECC engine */
787                 WriteDOC(DOC_ECC_RESET, docptr, ECCConf);
788                 WriteDOC(DOC_ECC_EN | DOC_ECC_RW, docptr, ECCConf);
789
790                 /* treat crossing 256-byte sector for 2M x 8bits devices */
791                 if (this->page256 && to + len > (to | 0xff) + 1) {
792                         len256 = (to | 0xff) + 1 - to;
793                         DoC_WriteBuf(this, buf, len256);
794
795                         DoC_Command(this, NAND_CMD_PAGEPROG, 0);
796
797                         DoC_Command(this, NAND_CMD_STATUS, CDSN_CTRL_WP);
798                         /* There's an implicit DoC_WaitReady() in DoC_Command */
799
800                         dummy = ReadDOC(docptr, CDSNSlowIO);
801                         DoC_Delay(this, 2);
802
803                         if (ReadDOC_(docptr, this->ioreg) & 1) {
804                                 printk(KERN_ERR "Error programming flash\n");
805                                 /* Error in programming */
806                                 *retlen = 0;
807                                 mutex_unlock(&this->lock);
808                                 return -EIO;
809                         }
810
811                         DoC_Command(this, NAND_CMD_SEQIN, 0);
812                         DoC_Address(this, ADDR_COLUMN_PAGE, to + len256, 0,
813                                     CDSN_CTRL_ECC_IO);
814                 }
815
816                 DoC_WriteBuf(this, &buf[len256], len - len256);
817
818                 WriteDOC(CDSN_CTRL_ECC_IO | CDSN_CTRL_CE, docptr, CDSNControl);
819
820                 if (DoC_is_Millennium(this)) {
821                         WriteDOC(0, docptr, NOP);
822                         WriteDOC(0, docptr, NOP);
823                         WriteDOC(0, docptr, NOP);
824                 } else {
825                         WriteDOC_(0, docptr, this->ioreg);
826                         WriteDOC_(0, docptr, this->ioreg);
827                         WriteDOC_(0, docptr, this->ioreg);
828                 }
829
830                 WriteDOC(CDSN_CTRL_ECC_IO | CDSN_CTRL_FLASH_IO | CDSN_CTRL_CE, docptr,
831                          CDSNControl);
832
833                 /* Read the ECC data through the DiskOnChip ECC logic */
834                 for (di = 0; di < 6; di++) {
835                         eccbuf[di] = ReadDOC(docptr, ECCSyndrome0 + di);
836                 }
837
838                 /* Reset the ECC engine */
839                 WriteDOC(DOC_ECC_DIS, docptr, ECCConf);
840
841 #ifdef PSYCHO_DEBUG
842                 printk
843                         ("OOB data at %lx is %2.2X %2.2X %2.2X %2.2X %2.2X %2.2X\n",
844                          (long) to, eccbuf[0], eccbuf[1], eccbuf[2], eccbuf[3],
845                          eccbuf[4], eccbuf[5]);
846 #endif
847                 DoC_Command(this, NAND_CMD_PAGEPROG, 0);
848
849                 DoC_Command(this, NAND_CMD_STATUS, CDSN_CTRL_WP);
850                 /* There's an implicit DoC_WaitReady() in DoC_Command */
851
852                 if (DoC_is_Millennium(this)) {
853                         ReadDOC(docptr, ReadPipeInit);
854                         status = ReadDOC(docptr, LastDataRead);
855                 } else {
856                         dummy = ReadDOC(docptr, CDSNSlowIO);
857                         DoC_Delay(this, 2);
858                         status = ReadDOC_(docptr, this->ioreg);
859                 }
860
861                 if (status & 1) {
862                         printk(KERN_ERR "Error programming flash\n");
863                         /* Error in programming */
864                         *retlen = 0;
865                         mutex_unlock(&this->lock);
866                         return -EIO;
867                 }
868
869                 /* Let the caller know we completed it */
870                 *retlen += len;
871
872                 {
873                         unsigned char x[8];
874                         size_t dummy;
875                         int ret;
876
877                         /* Write the ECC data to flash */
878                         for (di=0; di<6; di++)
879                                 x[di] = eccbuf[di];
880
881                         x[6]=0x55;
882                         x[7]=0x55;
883
884                         ret = doc_write_oob_nolock(mtd, to, 8, &dummy, x);
885                         if (ret) {
886                                 mutex_unlock(&this->lock);
887                                 return ret;
888                         }
889                 }
890
891                 to += len;
892                 left -= len;
893                 buf += len;
894         }
895
896         mutex_unlock(&this->lock);
897         return 0;
898 }
899
900 static int doc_read_oob(struct mtd_info *mtd, loff_t ofs,
901                         struct mtd_oob_ops *ops)
902 {
903         struct DiskOnChip *this = mtd->priv;
904         int len256 = 0, ret;
905         struct Nand *mychip;
906         uint8_t *buf = ops->oobbuf;
907         size_t len = ops->len;
908
909         BUG_ON(ops->mode != MTD_OPS_PLACE_OOB);
910
911         ofs += ops->ooboffs;
912
913         mutex_lock(&this->lock);
914
915         mychip = &this->chips[ofs >> this->chipshift];
916
917         if (this->curfloor != mychip->floor) {
918                 DoC_SelectFloor(this, mychip->floor);
919                 DoC_SelectChip(this, mychip->chip);
920         } else if (this->curchip != mychip->chip) {
921                 DoC_SelectChip(this, mychip->chip);
922         }
923         this->curfloor = mychip->floor;
924         this->curchip = mychip->chip;
925
926         /* update address for 2M x 8bit devices. OOB starts on the second */
927         /* page to maintain compatibility with doc_read_ecc. */
928         if (this->page256) {
929                 if (!(ofs & 0x8))
930                         ofs += 0x100;
931                 else
932                         ofs -= 0x8;
933         }
934
935         DoC_Command(this, NAND_CMD_READOOB, CDSN_CTRL_WP);
936         DoC_Address(this, ADDR_COLUMN_PAGE, ofs, CDSN_CTRL_WP, 0);
937
938         /* treat crossing 8-byte OOB data for 2M x 8bit devices */
939         /* Note: datasheet says it should automaticaly wrap to the */
940         /*       next OOB block, but it didn't work here. mf.      */
941         if (this->page256 && ofs + len > (ofs | 0x7) + 1) {
942                 len256 = (ofs | 0x7) + 1 - ofs;
943                 DoC_ReadBuf(this, buf, len256);
944
945                 DoC_Command(this, NAND_CMD_READOOB, CDSN_CTRL_WP);
946                 DoC_Address(this, ADDR_COLUMN_PAGE, ofs & (~0x1ff),
947                             CDSN_CTRL_WP, 0);
948         }
949
950         DoC_ReadBuf(this, &buf[len256], len - len256);
951
952         ops->retlen = len;
953         /* Reading the full OOB data drops us off of the end of the page,
954          * causing the flash device to go into busy mode, so we need
955          * to wait until ready 11.4.1 and Toshiba TC58256FT docs */
956
957         ret = DoC_WaitReady(this);
958
959         mutex_unlock(&this->lock);
960         return ret;
961
962 }
963
964 static int doc_write_oob_nolock(struct mtd_info *mtd, loff_t ofs, size_t len,
965                                 size_t * retlen, const u_char * buf)
966 {
967         struct DiskOnChip *this = mtd->priv;
968         int len256 = 0;
969         void __iomem *docptr = this->virtadr;
970         struct Nand *mychip = &this->chips[ofs >> this->chipshift];
971         volatile int dummy;
972         int status;
973
974         //      printk("doc_write_oob(%lx, %d): %2.2X %2.2X %2.2X %2.2X ... %2.2X %2.2X .. %2.2X %2.2X\n",(long)ofs, len,
975         //   buf[0], buf[1], buf[2], buf[3], buf[8], buf[9], buf[14],buf[15]);
976
977         /* Find the chip which is to be used and select it */
978         if (this->curfloor != mychip->floor) {
979                 DoC_SelectFloor(this, mychip->floor);
980                 DoC_SelectChip(this, mychip->chip);
981         } else if (this->curchip != mychip->chip) {
982                 DoC_SelectChip(this, mychip->chip);
983         }
984         this->curfloor = mychip->floor;
985         this->curchip = mychip->chip;
986
987         /* disable the ECC engine */
988         WriteDOC (DOC_ECC_RESET, docptr, ECCConf);
989         WriteDOC (DOC_ECC_DIS, docptr, ECCConf);
990
991         /* Reset the chip, see Software Requirement 11.4 item 1. */
992         DoC_Command(this, NAND_CMD_RESET, CDSN_CTRL_WP);
993
994         /* issue the Read2 command to set the pointer to the Spare Data Area. */
995         DoC_Command(this, NAND_CMD_READOOB, CDSN_CTRL_WP);
996
997         /* update address for 2M x 8bit devices. OOB starts on the second */
998         /* page to maintain compatibility with doc_read_ecc. */
999         if (this->page256) {
1000                 if (!(ofs & 0x8))
1001                         ofs += 0x100;
1002                 else
1003                         ofs -= 0x8;
1004         }
1005
1006         /* issue the Serial Data In command to initial the Page Program process */
1007         DoC_Command(this, NAND_CMD_SEQIN, 0);
1008         DoC_Address(this, ADDR_COLUMN_PAGE, ofs, 0, 0);
1009
1010         /* treat crossing 8-byte OOB data for 2M x 8bit devices */
1011         /* Note: datasheet says it should automaticaly wrap to the */
1012         /*       next OOB block, but it didn't work here. mf.      */
1013         if (this->page256 && ofs + len > (ofs | 0x7) + 1) {
1014                 len256 = (ofs | 0x7) + 1 - ofs;
1015                 DoC_WriteBuf(this, buf, len256);
1016
1017                 DoC_Command(this, NAND_CMD_PAGEPROG, 0);
1018                 DoC_Command(this, NAND_CMD_STATUS, 0);
1019                 /* DoC_WaitReady() is implicit in DoC_Command */
1020
1021                 if (DoC_is_Millennium(this)) {
1022                         ReadDOC(docptr, ReadPipeInit);
1023                         status = ReadDOC(docptr, LastDataRead);
1024                 } else {
1025                         dummy = ReadDOC(docptr, CDSNSlowIO);
1026                         DoC_Delay(this, 2);
1027                         status = ReadDOC_(docptr, this->ioreg);
1028                 }
1029
1030                 if (status & 1) {
1031                         printk(KERN_ERR "Error programming oob data\n");
1032                         /* There was an error */
1033                         *retlen = 0;
1034                         return -EIO;
1035                 }
1036                 DoC_Command(this, NAND_CMD_SEQIN, 0);
1037                 DoC_Address(this, ADDR_COLUMN_PAGE, ofs & (~0x1ff), 0, 0);
1038         }
1039
1040         DoC_WriteBuf(this, &buf[len256], len - len256);
1041
1042         DoC_Command(this, NAND_CMD_PAGEPROG, 0);
1043         DoC_Command(this, NAND_CMD_STATUS, 0);
1044         /* DoC_WaitReady() is implicit in DoC_Command */
1045
1046         if (DoC_is_Millennium(this)) {
1047                 ReadDOC(docptr, ReadPipeInit);
1048                 status = ReadDOC(docptr, LastDataRead);
1049         } else {
1050                 dummy = ReadDOC(docptr, CDSNSlowIO);
1051                 DoC_Delay(this, 2);
1052                 status = ReadDOC_(docptr, this->ioreg);
1053         }
1054
1055         if (status & 1) {
1056                 printk(KERN_ERR "Error programming oob data\n");
1057                 /* There was an error */
1058                 *retlen = 0;
1059                 return -EIO;
1060         }
1061
1062         *retlen = len;
1063         return 0;
1064
1065 }
1066
1067 static int doc_write_oob(struct mtd_info *mtd, loff_t ofs,
1068                          struct mtd_oob_ops *ops)
1069 {
1070         struct DiskOnChip *this = mtd->priv;
1071         int ret;
1072
1073         BUG_ON(ops->mode != MTD_OPS_PLACE_OOB);
1074
1075         mutex_lock(&this->lock);
1076         ret = doc_write_oob_nolock(mtd, ofs + ops->ooboffs, ops->len,
1077                                    &ops->retlen, ops->oobbuf);
1078
1079         mutex_unlock(&this->lock);
1080         return ret;
1081 }
1082
1083 static int doc_erase(struct mtd_info *mtd, struct erase_info *instr)
1084 {
1085         struct DiskOnChip *this = mtd->priv;
1086         __u32 ofs = instr->addr;
1087         __u32 len = instr->len;
1088         volatile int dummy;
1089         void __iomem *docptr = this->virtadr;
1090         struct Nand *mychip;
1091         int status;
1092
1093         mutex_lock(&this->lock);
1094
1095         if (ofs & (mtd->erasesize-1) || len & (mtd->erasesize-1)) {
1096                 mutex_unlock(&this->lock);
1097                 return -EINVAL;
1098         }
1099
1100         instr->state = MTD_ERASING;
1101
1102         /* FIXME: Do this in the background. Use timers or schedule_task() */
1103         while(len) {
1104                 mychip = &this->chips[ofs >> this->chipshift];
1105
1106                 if (this->curfloor != mychip->floor) {
1107                         DoC_SelectFloor(this, mychip->floor);
1108                         DoC_SelectChip(this, mychip->chip);
1109                 } else if (this->curchip != mychip->chip) {
1110                         DoC_SelectChip(this, mychip->chip);
1111                 }
1112                 this->curfloor = mychip->floor;
1113                 this->curchip = mychip->chip;
1114
1115                 DoC_Command(this, NAND_CMD_ERASE1, 0);
1116                 DoC_Address(this, ADDR_PAGE, ofs, 0, 0);
1117                 DoC_Command(this, NAND_CMD_ERASE2, 0);
1118
1119                 DoC_Command(this, NAND_CMD_STATUS, CDSN_CTRL_WP);
1120
1121                 if (DoC_is_Millennium(this)) {
1122                         ReadDOC(docptr, ReadPipeInit);
1123                         status = ReadDOC(docptr, LastDataRead);
1124                 } else {
1125                         dummy = ReadDOC(docptr, CDSNSlowIO);
1126                         DoC_Delay(this, 2);
1127                         status = ReadDOC_(docptr, this->ioreg);
1128                 }
1129
1130                 if (status & 1) {
1131                         printk(KERN_ERR "Error erasing at 0x%x\n", ofs);
1132                         /* There was an error */
1133                         instr->state = MTD_ERASE_FAILED;
1134                         goto callback;
1135                 }
1136                 ofs += mtd->erasesize;
1137                 len -= mtd->erasesize;
1138         }
1139         instr->state = MTD_ERASE_DONE;
1140
1141  callback:
1142         mtd_erase_callback(instr);
1143
1144         mutex_unlock(&this->lock);
1145         return 0;
1146 }
1147
1148
1149 /****************************************************************************
1150  *
1151  * Module stuff
1152  *
1153  ****************************************************************************/
1154
1155 static void __exit cleanup_doc2000(void)
1156 {
1157         struct mtd_info *mtd;
1158         struct DiskOnChip *this;
1159
1160         while ((mtd = doc2klist)) {
1161                 this = mtd->priv;
1162                 doc2klist = this->nextdoc;
1163
1164                 mtd_device_unregister(mtd);
1165
1166                 iounmap(this->virtadr);
1167                 kfree(this->chips);
1168                 kfree(mtd);
1169         }
1170 }
1171
1172 module_exit(cleanup_doc2000);
1173
1174 MODULE_LICENSE("GPL");
1175 MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org> et al.");
1176 MODULE_DESCRIPTION("MTD driver for DiskOnChip 2000 and Millennium");
1177