2 * Driver for Disk-On-Chip 2000 and Millennium
3 * (c) 1999 Machine Vision Holdings, Inc.
4 * (c) 1999, 2000 David Woodhouse <dwmw2@infradead.org>
6 * $Id: doc2000.c,v 1.46 2001/10/02 15:05:13 dwmw2 Exp $
15 #ifdef CONFIG_SHOW_BOOT_PROGRESS
16 # include <status_led.h>
17 # define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
19 # define SHOW_BOOT_PROGRESS(arg)
22 #if (CONFIG_COMMANDS & CFG_CMD_DOC)
24 #include <linux/mtd/nftl.h>
25 #include <linux/mtd/nand.h>
26 #include <linux/mtd/nand_ids.h>
27 #include <linux/mtd/doc2000.h>
28 #include <linux/mtd/nftl.h>
30 #ifdef CFG_DOC_SUPPORT_2000
31 #define DoC_is_2000(doc) (doc->ChipID == DOC_ChipID_Doc2k)
33 #define DoC_is_2000(doc) (0)
36 #ifdef CFG_DOC_SUPPORT_MILLENNIUM
37 #define DoC_is_Millennium(doc) (doc->ChipID == DOC_ChipID_DocMil)
39 #define DoC_is_Millennium(doc) (0)
42 /* CFG_DOC_PASSIVE_PROBE:
43 In order to ensure that the BIOS checksum is correct at boot time, and
44 hence that the onboard BIOS extension gets executed, the DiskOnChip
45 goes into reset mode when it is read sequentially: all registers
46 return 0xff until the chip is woken up again by writing to the
49 Unfortunately, this means that the probe for the DiskOnChip is unsafe,
50 because one of the first things it does is write to where it thinks
51 the DOCControl register should be - which may well be shared memory
52 for another device. I've had machines which lock up when this is
53 attempted. Hence the possibility to do a passive probe, which will fail
54 to detect a chip in reset mode, but is at least guaranteed not to lock
57 If you have this problem, uncomment the following line:
58 #define CFG_DOC_PASSIVE_PROBE
66 static struct DiskOnChip doc_dev_desc[CFG_MAX_DOC_DEVICE];
68 /* Current DOC Device */
69 static int curr_device = -1;
71 /* ------------------------------------------------------------------------- */
73 int do_doc (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
80 printf ("Usage:\n%s\n", cmdtp->usage);
83 if (strcmp(argv[1],"info") == 0) {
88 for (i=0; i<CFG_MAX_DOC_DEVICE; ++i) {
89 if(doc_dev_desc[i].ChipID == DOC_ChipID_UNKNOWN)
90 continue; /* list only known devices */
91 printf ("Device %d: ", i);
92 doc_print(&doc_dev_desc[i]);
96 } else if (strcmp(argv[1],"device") == 0) {
97 if ((curr_device < 0) || (curr_device >= CFG_MAX_DOC_DEVICE)) {
98 puts ("\nno devices available\n");
101 printf ("\nDevice %d: ", curr_device);
102 doc_print(&doc_dev_desc[curr_device]);
105 printf ("Usage:\n%s\n", cmdtp->usage);
108 if (strcmp(argv[1],"device") == 0) {
109 int dev = (int)simple_strtoul(argv[2], NULL, 10);
111 printf ("\nDevice %d: ", dev);
112 if (dev >= CFG_MAX_DOC_DEVICE) {
113 puts ("unknown device\n");
116 doc_print(&doc_dev_desc[dev]);
119 if (doc_dev_desc[dev].ChipID == DOC_ChipID_UNKNOWN) {
125 puts ("... is now current device\n");
130 printf ("Usage:\n%s\n", cmdtp->usage);
133 /* at least 4 args */
135 if (strcmp(argv[1],"read") == 0 || strcmp(argv[1],"write") == 0) {
136 ulong addr = simple_strtoul(argv[2], NULL, 16);
137 ulong off = simple_strtoul(argv[3], NULL, 16);
138 ulong size = simple_strtoul(argv[4], NULL, 16);
139 int cmd = (strcmp(argv[1],"read") == 0);
142 printf ("\nDOC %s: device %d offset %ld, size %ld ... ",
143 cmd ? "read" : "write", curr_device, off, size);
145 ret = doc_rw(doc_dev_desc + curr_device, cmd, off, size,
146 (size_t *)&total, (u_char*)addr);
148 printf ("%d bytes %s: %s\n", total, cmd ? "read" : "write",
149 ret ? "ERROR" : "OK");
152 } else if (strcmp(argv[1],"erase") == 0) {
153 ulong off = simple_strtoul(argv[2], NULL, 16);
154 ulong size = simple_strtoul(argv[3], NULL, 16);
157 printf ("\nDOC erase: device %d offset %ld, size %ld ... ",
158 curr_device, off, size);
160 ret = doc_erase (doc_dev_desc + curr_device, off, size);
162 printf("%s\n", ret ? "ERROR" : "OK");
166 printf ("Usage:\n%s\n", cmdtp->usage);
175 "doc - Disk-On-Chip sub-system\n",
176 "info - show available DOC devices\n"
177 "doc device [dev] - show or set current device\n"
178 "doc read addr off size\n"
179 "doc write addr off size - read/write `size'"
180 " bytes starting at offset `off'\n"
181 " to/from memory address `addr'\n"
182 "doc erase off size - erase `size' bytes of DOC from offset `off'\n"
185 int do_docboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
187 char *boot_device = NULL;
198 addr = CFG_LOAD_ADDR;
199 boot_device = getenv ("bootdevice");
202 addr = simple_strtoul(argv[1], NULL, 16);
203 boot_device = getenv ("bootdevice");
206 addr = simple_strtoul(argv[1], NULL, 16);
207 boot_device = argv[2];
210 addr = simple_strtoul(argv[1], NULL, 16);
211 boot_device = argv[2];
212 offset = simple_strtoul(argv[3], NULL, 16);
215 printf ("Usage:\n%s\n", cmdtp->usage);
216 SHOW_BOOT_PROGRESS (-1);
221 puts ("\n** No boot device **\n");
222 SHOW_BOOT_PROGRESS (-1);
226 dev = simple_strtoul(boot_device, &ep, 16);
228 if ((dev >= CFG_MAX_DOC_DEVICE) ||
229 (doc_dev_desc[dev].ChipID == DOC_ChipID_UNKNOWN)) {
230 printf ("\n** Device %d not available\n", dev);
231 SHOW_BOOT_PROGRESS (-1);
235 printf ("\nLoading from device %d: %s at 0x%lX (offset 0x%lX)\n",
236 dev, doc_dev_desc[dev].name, doc_dev_desc[dev].physadr,
239 if (doc_rw (doc_dev_desc + dev, 1, offset,
240 SECTORSIZE, NULL, (u_char *)addr)) {
241 printf ("** Read error on %d\n", dev);
242 SHOW_BOOT_PROGRESS (-1);
246 hdr = (image_header_t *)addr;
248 if (hdr->ih_magic == IH_MAGIC) {
250 print_image_hdr (hdr);
252 cnt = (hdr->ih_size + sizeof(image_header_t));
255 puts ("\n** Bad Magic Number **\n");
256 SHOW_BOOT_PROGRESS (-1);
260 if (doc_rw (doc_dev_desc + dev, 1, offset + SECTORSIZE, cnt,
261 NULL, (u_char *)(addr+SECTORSIZE))) {
262 printf ("** Read error on %d\n", dev);
263 SHOW_BOOT_PROGRESS (-1);
267 /* Loading ok, update default load address */
271 /* Check if we should attempt an auto-start */
272 if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) {
274 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
276 local_args[0] = argv[0];
277 local_args[1] = NULL;
279 printf ("Automatic boot of image at addr 0x%08lX ...\n", addr);
281 do_bootm (cmdtp, 0, 1, local_args);
288 docboot, 4, 1, do_docboot,
289 "docboot - boot from DOC device\n",
293 int doc_rw (struct DiskOnChip* this, int cmd,
294 loff_t from, size_t len,
295 size_t * retlen, u_char * buf)
297 int noecc, ret = 0, n, total = 0;
301 /* The ECC will not be calculated correctly if
302 less than 512 is written or read */
303 noecc = (from != (from | 0x1ff) + 1) || (len < 0x200);
306 ret = doc_read_ecc(this, from, len,
307 (size_t *)&n, (u_char*)buf,
308 noecc ? (uchar *)NULL : (uchar *)eccbuf);
310 ret = doc_write_ecc(this, from, len,
311 (size_t *)&n, (u_char*)buf,
312 noecc ? (uchar *)NULL : (uchar *)eccbuf);
329 void doc_print(struct DiskOnChip *this) {
330 printf("%s at 0x%lX,\n"
331 "\t %d chip%s %s, size %d MB, \n"
332 "\t total size %ld MB, sector size %ld kB\n",
333 this->name, this->physadr, this->numchips,
334 this->numchips>1 ? "s" : "", this->chips_name,
335 1 << (this->chipshift - 20),
336 this->totlen >> 20, this->erasesize >> 10);
338 if (this->nftl_found) {
339 struct NFTLrecord *nftl = &this->nftl;
340 unsigned long bin_size, flash_size;
342 bin_size = nftl->nb_boot_blocks * this->erasesize;
343 flash_size = (nftl->nb_blocks - nftl->nb_boot_blocks) * this->erasesize;
345 printf("\t NFTL boot record:\n"
346 "\t Binary partition: size %ld%s\n"
347 "\t Flash disk partition: size %ld%s, offset 0x%lx\n",
348 bin_size > (1 << 20) ? bin_size >> 20 : bin_size >> 10,
349 bin_size > (1 << 20) ? "MB" : "kB",
350 flash_size > (1 << 20) ? flash_size >> 20 : flash_size >> 10,
351 flash_size > (1 << 20) ? "MB" : "kB", bin_size);
353 puts ("\t No NFTL boot record found.\n");
357 /* ------------------------------------------------------------------------- */
359 /* This function is needed to avoid calls of the __ashrdi3 function. */
360 static int shr(int val, int shift) {
364 /* Perform the required delay cycles by reading from the appropriate register */
365 static void DoC_Delay(struct DiskOnChip *doc, unsigned short cycles)
370 for (i = 0; i < cycles; i++) {
371 if (DoC_is_Millennium(doc))
372 dummy = ReadDOC(doc->virtadr, NOP);
374 dummy = ReadDOC(doc->virtadr, DOCStatus);
379 /* DOC_WaitReady: Wait for RDY line to be asserted by the flash chip */
380 static int _DoC_WaitReady(struct DiskOnChip *doc)
382 unsigned long docptr = doc->virtadr;
383 unsigned long start = get_timer(0);
386 puts ("_DoC_WaitReady called for out-of-line wait\n");
389 /* Out-of-line routine to wait for chip response */
390 while (!(ReadDOC(docptr, CDSNControl) & CDSN_CTRL_FR_B)) {
391 #ifdef CFG_DOC_SHORT_TIMEOUT
392 /* it seems that after a certain time the DoC deasserts
393 * the CDSN_CTRL_FR_B although it is not ready...
394 * using a short timout solve this (timer increments every ms) */
395 if (get_timer(start) > 10) {
399 if (get_timer(start) > 10 * 1000) {
400 puts ("_DoC_WaitReady timed out.\n");
410 static int DoC_WaitReady(struct DiskOnChip *doc)
412 unsigned long docptr = doc->virtadr;
413 /* This is inline, to optimise the common case, where it's ready instantly */
416 /* 4 read form NOP register should be issued in prior to the read from CDSNControl
417 see Software Requirement 11.4 item 2. */
420 if (!(ReadDOC(docptr, CDSNControl) & CDSN_CTRL_FR_B))
421 /* Call the out-of-line routine to wait */
422 ret = _DoC_WaitReady(doc);
424 /* issue 2 read from NOP register after reading from CDSNControl register
425 see Software Requirement 11.4 item 2. */
431 /* DoC_Command: Send a flash command to the flash chip through the CDSN Slow IO register to
432 bypass the internal pipeline. Each of 4 delay cycles (read from the NOP register) is
433 required after writing to CDSN Control register, see Software Requirement 11.4 item 3. */
435 static inline int DoC_Command(struct DiskOnChip *doc, unsigned char command,
436 unsigned char xtraflags)
438 unsigned long docptr = doc->virtadr;
440 if (DoC_is_2000(doc))
441 xtraflags |= CDSN_CTRL_FLASH_IO;
443 /* Assert the CLE (Command Latch Enable) line to the flash chip */
444 WriteDOC(xtraflags | CDSN_CTRL_CLE | CDSN_CTRL_CE, docptr, CDSNControl);
445 DoC_Delay(doc, 4); /* Software requirement 11.4.3 for Millennium */
447 if (DoC_is_Millennium(doc))
448 WriteDOC(command, docptr, CDSNSlowIO);
450 /* Send the command */
451 WriteDOC_(command, docptr, doc->ioreg);
453 /* Lower the CLE line */
454 WriteDOC(xtraflags | CDSN_CTRL_CE, docptr, CDSNControl);
455 DoC_Delay(doc, 4); /* Software requirement 11.4.3 for Millennium */
457 /* Wait for the chip to respond - Software requirement 11.4.1 (extended for any command) */
458 return DoC_WaitReady(doc);
461 /* DoC_Address: Set the current address for the flash chip through the CDSN Slow IO register to
462 bypass the internal pipeline. Each of 4 delay cycles (read from the NOP register) is
463 required after writing to CDSN Control register, see Software Requirement 11.4 item 3. */
465 static int DoC_Address(struct DiskOnChip *doc, int numbytes, unsigned long ofs,
466 unsigned char xtraflags1, unsigned char xtraflags2)
468 unsigned long docptr;
471 docptr = doc->virtadr;
473 if (DoC_is_2000(doc))
474 xtraflags1 |= CDSN_CTRL_FLASH_IO;
476 /* Assert the ALE (Address Latch Enable) line to the flash chip */
477 WriteDOC(xtraflags1 | CDSN_CTRL_ALE | CDSN_CTRL_CE, docptr, CDSNControl);
479 DoC_Delay(doc, 4); /* Software requirement 11.4.3 for Millennium */
481 /* Send the address */
482 /* Devices with 256-byte page are addressed as:
483 Column (bits 0-7), Page (bits 8-15, 16-23, 24-31)
484 * there is no device on the market with page256
485 and more than 24 bits.
486 Devices with 512-byte page are addressed as:
487 Column (bits 0-7), Page (bits 9-16, 17-24, 25-31)
488 * 25-31 is sent only if the chip support it.
489 * bit 8 changes the read command to be sent
490 (NAND_CMD_READ0 or NAND_CMD_READ1).
493 if (numbytes == ADDR_COLUMN || numbytes == ADDR_COLUMN_PAGE) {
494 if (DoC_is_Millennium(doc))
495 WriteDOC(ofs & 0xff, docptr, CDSNSlowIO);
496 WriteDOC_(ofs & 0xff, docptr, doc->ioreg);
505 if (numbytes == ADDR_PAGE || numbytes == ADDR_COLUMN_PAGE) {
506 for (i = 0; i < doc->pageadrlen; i++, ofs = ofs >> 8) {
507 if (DoC_is_Millennium(doc))
508 WriteDOC(ofs & 0xff, docptr, CDSNSlowIO);
509 WriteDOC_(ofs & 0xff, docptr, doc->ioreg);
513 DoC_Delay(doc, 2); /* Needed for some slow flash chips. mf. */
515 /* FIXME: The SlowIO's for millennium could be replaced by
516 a single WritePipeTerm here. mf. */
518 /* Lower the ALE line */
519 WriteDOC(xtraflags1 | xtraflags2 | CDSN_CTRL_CE, docptr,
522 DoC_Delay(doc, 4); /* Software requirement 11.4.3 for Millennium */
524 /* Wait for the chip to respond - Software requirement 11.4.1 */
525 return DoC_WaitReady(doc);
528 /* Read a buffer from DoC, taking care of Millennium oddities */
529 static void DoC_ReadBuf(struct DiskOnChip *doc, u_char * buf, int len)
532 int modulus = 0xffff;
533 unsigned long docptr;
536 docptr = doc->virtadr;
541 if (DoC_is_Millennium(doc)) {
542 /* Read the data via the internal pipeline through CDSN IO register,
543 see Pipelined Read Operations 11.3 */
544 dummy = ReadDOC(docptr, ReadPipeInit);
546 /* Millennium should use the LastDataRead register - Pipeline Reads */
549 /* This is needed for correctly ECC calculation */
553 for (i = 0; i < len; i++)
554 buf[i] = ReadDOC_(docptr, doc->ioreg + (i & modulus));
556 if (DoC_is_Millennium(doc)) {
557 buf[i] = ReadDOC(docptr, LastDataRead);
561 /* Write a buffer to DoC, taking care of Millennium oddities */
562 static void DoC_WriteBuf(struct DiskOnChip *doc, const u_char * buf, int len)
564 unsigned long docptr;
567 docptr = doc->virtadr;
572 for (i = 0; i < len; i++)
573 WriteDOC_(buf[i], docptr, doc->ioreg + i);
575 if (DoC_is_Millennium(doc)) {
576 WriteDOC(0x00, docptr, WritePipeTerm);
581 /* DoC_SelectChip: Select a given flash chip within the current floor */
583 static inline int DoC_SelectChip(struct DiskOnChip *doc, int chip)
585 unsigned long docptr = doc->virtadr;
587 /* Software requirement 11.4.4 before writing DeviceSelect */
588 /* Deassert the CE line to eliminate glitches on the FCE# outputs */
589 WriteDOC(CDSN_CTRL_WP, docptr, CDSNControl);
590 DoC_Delay(doc, 4); /* Software requirement 11.4.3 for Millennium */
592 /* Select the individual flash chip requested */
593 WriteDOC(chip, docptr, CDSNDeviceSelect);
596 /* Reassert the CE line */
597 WriteDOC(CDSN_CTRL_CE | CDSN_CTRL_FLASH_IO | CDSN_CTRL_WP, docptr,
599 DoC_Delay(doc, 4); /* Software requirement 11.4.3 for Millennium */
601 /* Wait for it to be ready */
602 return DoC_WaitReady(doc);
605 /* DoC_SelectFloor: Select a given floor (bank of flash chips) */
607 static inline int DoC_SelectFloor(struct DiskOnChip *doc, int floor)
609 unsigned long docptr = doc->virtadr;
611 /* Select the floor (bank) of chips required */
612 WriteDOC(floor, docptr, FloorSelect);
614 /* Wait for the chip to be ready */
615 return DoC_WaitReady(doc);
618 /* DoC_IdentChip: Identify a given NAND chip given {floor,chip} */
620 static int DoC_IdentChip(struct DiskOnChip *doc, int floor, int chip)
625 /* Page in the required floor/chip */
626 DoC_SelectFloor(doc, floor);
627 DoC_SelectChip(doc, chip);
630 if (DoC_Command(doc, NAND_CMD_RESET, CDSN_CTRL_WP)) {
632 printf("DoC_Command (reset) for %d,%d returned true\n",
639 /* Read the NAND chip ID: 1. Send ReadID command */
640 if (DoC_Command(doc, NAND_CMD_READID, CDSN_CTRL_WP)) {
642 printf("DoC_Command (ReadID) for %d,%d returned true\n",
648 /* Read the NAND chip ID: 2. Send address byte zero */
649 DoC_Address(doc, ADDR_COLUMN, 0, CDSN_CTRL_WP, 0);
651 /* Read the manufacturer and device id codes from the device */
653 /* CDSN Slow IO register see Software Requirement 11.4 item 5. */
654 dummy = ReadDOC(doc->virtadr, CDSNSlowIO);
656 mfr = ReadDOC_(doc->virtadr, doc->ioreg);
658 /* CDSN Slow IO register see Software Requirement 11.4 item 5. */
659 dummy = ReadDOC(doc->virtadr, CDSNSlowIO);
661 id = ReadDOC_(doc->virtadr, doc->ioreg);
663 /* No response - return failure */
664 if (mfr == 0xff || mfr == 0)
667 /* Check it's the same as the first chip we identified.
668 * M-Systems say that any given DiskOnChip device should only
669 * contain _one_ type of flash part, although that's not a
670 * hardware restriction. */
672 if (doc->mfr == mfr && doc->id == id)
673 return 1; /* This is another the same the first */
675 printf("Flash chip at floor %d, chip %d is different:\n",
679 /* Print and store the manufacturer and ID codes. */
680 for (i = 0; nand_flash_ids[i].name != NULL; i++) {
681 if (mfr == nand_flash_ids[i].manufacture_id &&
682 id == nand_flash_ids[i].model_id) {
684 printf("Flash chip found: Manufacturer ID: %2.2X, "
685 "Chip ID: %2.2X (%s)\n", mfr, id,
686 nand_flash_ids[i].name);
692 nand_flash_ids[i].chipshift;
693 doc->page256 = nand_flash_ids[i].page256;
695 nand_flash_ids[i].pageadrlen;
697 nand_flash_ids[i].erasesize;
699 nand_flash_ids[i].name;
708 /* We haven't fully identified the chip. Print as much as we know. */
709 printf("Unknown flash chip found: %2.2X %2.2X\n",
716 /* DoC_ScanChips: Find all NAND chips present in a DiskOnChip, and identify them */
718 static void DoC_ScanChips(struct DiskOnChip *this)
721 int numchips[MAX_FLOORS];
722 int maxchips = MAX_CHIPS;
729 if (DoC_is_Millennium(this))
730 maxchips = MAX_CHIPS_MIL;
732 /* For each floor, find the number of valid chips it contains */
733 for (floor = 0; floor < MAX_FLOORS; floor++) {
736 for (chip = 0; chip < maxchips && ret != 0; chip++) {
738 ret = DoC_IdentChip(this, floor, chip);
746 /* If there are none at all that we recognise, bail */
747 if (!this->numchips) {
748 puts ("No flash chips recognised.\n");
752 /* Allocate an array to hold the information for each chip */
753 this->chips = malloc(sizeof(struct Nand) * this->numchips);
755 puts ("No memory for allocating chip info structures\n");
761 /* Fill out the chip array with {floor, chipno} for each
762 * detected chip in the device. */
763 for (floor = 0; floor < MAX_FLOORS; floor++) {
764 for (chip = 0; chip < numchips[floor]; chip++) {
765 this->chips[ret].floor = floor;
766 this->chips[ret].chip = chip;
767 this->chips[ret].curadr = 0;
768 this->chips[ret].curmode = 0x50;
773 /* Calculate and print the total size of the device */
774 this->totlen = this->numchips * (1 << this->chipshift);
777 printf("%d flash chips found. Total DiskOnChip size: %ld MB\n",
778 this->numchips, this->totlen >> 20);
782 /* find_boot_record: Find the NFTL Media Header and its Spare copy which contains the
783 * various device information of the NFTL partition and Bad Unit Table. Update
784 * the ReplUnitTable[] table accroding to the Bad Unit Table. ReplUnitTable[]
785 * is used for management of Erase Unit in other routines in nftl.c and nftlmount.c
787 static int find_boot_record(struct NFTLrecord *nftl)
791 unsigned int block, boot_record_count = 0;
794 struct NFTLMediaHeader *mh = &nftl->MediaHdr;
797 nftl->MediaUnit = BLOCK_NIL;
798 nftl->SpareMediaUnit = BLOCK_NIL;
800 /* search for a valid boot record */
801 for (block = 0; block < nftl->nb_blocks; block++) {
804 /* Check for ANAND header first. Then can whinge if it's found but later
806 if ((ret = doc_read_ecc(nftl->mtd, block * nftl->EraseSize, SECTORSIZE,
807 (size_t *)&retlen, buf, NULL))) {
808 static int warncount = 5;
811 printf("Block read at 0x%x failed\n", block * nftl->EraseSize);
813 puts ("Further failures for this block will not be printed\n");
818 if (retlen < 6 || memcmp(buf, "ANAND", 6)) {
819 /* ANAND\0 not found. Continue */
821 printf("ANAND header not found at 0x%x\n", block * nftl->EraseSize);
827 printf("ANAND header found at 0x%x\n", block * nftl->EraseSize);
830 /* To be safer with BIOS, also use erase mark as discriminant */
831 if ((ret = doc_read_oob(nftl->mtd, block * nftl->EraseSize + SECTORSIZE + 8,
832 8, (size_t *)&retlen, (uchar *)&h1) < 0)) {
834 printf("ANAND header found at 0x%x, but OOB data read failed\n",
835 block * nftl->EraseSize);
840 /* OK, we like it. */
842 if (boot_record_count) {
843 /* We've already processed one. So we just check if
844 this one is the same as the first one we found */
845 if (memcmp(mh, buf, sizeof(struct NFTLMediaHeader))) {
847 printf("NFTL Media Headers at 0x%x and 0x%x disagree.\n",
848 nftl->MediaUnit * nftl->EraseSize, block * nftl->EraseSize);
850 /* if (debug) Print both side by side */
853 if (boot_record_count == 1)
854 nftl->SpareMediaUnit = block;
860 /* This is the first we've seen. Copy the media header structure into place */
861 memcpy(mh, buf, sizeof(struct NFTLMediaHeader));
863 /* Do some sanity checks on it */
864 if (mh->UnitSizeFactor == 0) {
866 puts ("UnitSizeFactor 0x00 detected.\n"
867 "This violates the spec but we think we know what it means...\n");
869 } else if (mh->UnitSizeFactor != 0xff) {
870 printf ("Sorry, we don't support UnitSizeFactor "
875 nftl->nb_boot_blocks = le16_to_cpu(mh->FirstPhysicalEUN);
876 if ((nftl->nb_boot_blocks + 2) >= nftl->nb_blocks) {
877 printf ("NFTL Media Header sanity check failed:\n"
878 "nb_boot_blocks (%d) + 2 > nb_blocks (%d)\n",
879 nftl->nb_boot_blocks, nftl->nb_blocks);
883 nftl->numvunits = le32_to_cpu(mh->FormattedSize) / nftl->EraseSize;
884 if (nftl->numvunits > (nftl->nb_blocks - nftl->nb_boot_blocks - 2)) {
885 printf ("NFTL Media Header sanity check failed:\n"
886 "numvunits (%d) > nb_blocks (%d) - nb_boot_blocks(%d) - 2\n",
889 nftl->nb_boot_blocks);
893 nftl->nr_sects = nftl->numvunits * (nftl->EraseSize / SECTORSIZE);
895 /* If we're not using the last sectors in the device for some reason,
896 reduce nb_blocks accordingly so we forget they're there */
897 nftl->nb_blocks = le16_to_cpu(mh->NumEraseUnits) + le16_to_cpu(mh->FirstPhysicalEUN);
899 /* read the Bad Erase Unit Table and modify ReplUnitTable[] accordingly */
900 for (i = 0; i < nftl->nb_blocks; i++) {
901 if ((i & (SECTORSIZE - 1)) == 0) {
902 /* read one sector for every SECTORSIZE of blocks */
903 if ((ret = doc_read_ecc(nftl->mtd, block * nftl->EraseSize +
904 i + SECTORSIZE, SECTORSIZE,
905 (size_t *)&retlen, buf, (uchar *)&oob)) < 0) {
906 puts ("Read of bad sector table failed\n");
910 /* mark the Bad Erase Unit as RESERVED in ReplUnitTable */
911 if (buf[i & (SECTORSIZE - 1)] != 0xff)
912 nftl->ReplUnitTable[i] = BLOCK_RESERVED;
915 nftl->MediaUnit = block;
918 } /* foreach (block) */
920 return boot_record_count?0:-1;
923 /* This routine is made available to other mtd code via
924 * inter_module_register. It must only be accessed through
925 * inter_module_get which will bump the use count of this module. The
926 * addresses passed back in mtd are valid as long as the use count of
927 * this module is non-zero, i.e. between inter_module_get and
928 * inter_module_put. Keith Owens <kaos@ocs.com.au> 29 Oct 2000.
930 static void DoC2k_init(struct DiskOnChip* this)
932 struct NFTLrecord *nftl;
934 switch (this->ChipID) {
935 case DOC_ChipID_Doc2k:
936 this->name = "DiskOnChip 2000";
937 this->ioreg = DoC_2k_CDSN_IO;
939 case DOC_ChipID_DocMil:
940 this->name = "DiskOnChip Millennium";
941 this->ioreg = DoC_Mil_CDSN_IO;
946 printf("%s found at address 0x%lX\n", this->name,
956 /* Ident all the chips present. */
958 if ((!this->numchips) || (!this->chips))
963 /* Get physical parameters */
964 nftl->EraseSize = this->erasesize;
965 nftl->nb_blocks = this->totlen / this->erasesize;
968 if (find_boot_record(nftl) != 0)
969 this->nftl_found = 0;
971 this->nftl_found = 1;
973 printf("%s @ 0x%lX, %ld MB\n", this->name, this->physadr, this->totlen >> 20);
976 int doc_read_ecc(struct DiskOnChip* this, loff_t from, size_t len,
977 size_t * retlen, u_char * buf, u_char * eccbuf)
979 unsigned long docptr;
981 unsigned char syndrome[6];
983 int i, len256 = 0, ret=0;
985 docptr = this->virtadr;
987 /* Don't allow read past end of device */
988 if (from >= this->totlen) {
989 puts ("Out of flash\n");
993 /* Don't allow a single read to cross a 512-byte block boundary */
994 if (from + len > ((from | 0x1ff) + 1))
995 len = ((from | 0x1ff) + 1) - from;
997 /* The ECC will not be calculated correctly if less than 512 is read */
998 if (len != 0x200 && eccbuf)
999 printf("ECC needs a full sector read (adr: %lx size %lx)\n",
1000 (long) from, (long) len);
1003 printf("DoC_Read (adr: %lx size %lx)\n", (long) from, (long) len);
1006 /* Find the chip which is to be used and select it */
1007 mychip = &this->chips[shr(from, this->chipshift)];
1009 if (this->curfloor != mychip->floor) {
1010 DoC_SelectFloor(this, mychip->floor);
1011 DoC_SelectChip(this, mychip->chip);
1012 } else if (this->curchip != mychip->chip) {
1013 DoC_SelectChip(this, mychip->chip);
1016 this->curfloor = mychip->floor;
1017 this->curchip = mychip->chip;
1021 && (from & 0x100)) ? NAND_CMD_READ1 : NAND_CMD_READ0,
1023 DoC_Address(this, ADDR_COLUMN_PAGE, from, CDSN_CTRL_WP,
1027 /* Prime the ECC engine */
1028 WriteDOC(DOC_ECC_RESET, docptr, ECCConf);
1029 WriteDOC(DOC_ECC_EN, docptr, ECCConf);
1031 /* disable the ECC engine */
1032 WriteDOC(DOC_ECC_RESET, docptr, ECCConf);
1033 WriteDOC(DOC_ECC_DIS, docptr, ECCConf);
1036 /* treat crossing 256-byte sector for 2M x 8bits devices */
1037 if (this->page256 && from + len > (from | 0xff) + 1) {
1038 len256 = (from | 0xff) + 1 - from;
1039 DoC_ReadBuf(this, buf, len256);
1041 DoC_Command(this, NAND_CMD_READ0, CDSN_CTRL_WP);
1042 DoC_Address(this, ADDR_COLUMN_PAGE, from + len256,
1043 CDSN_CTRL_WP, CDSN_CTRL_ECC_IO);
1046 DoC_ReadBuf(this, &buf[len256], len - len256);
1048 /* Let the caller know we completed it */
1052 /* Read the ECC data through the DiskOnChip ECC logic */
1053 /* Note: this will work even with 2M x 8bit devices as */
1054 /* they have 8 bytes of OOB per 256 page. mf. */
1055 DoC_ReadBuf(this, eccbuf, 6);
1057 /* Flush the pipeline */
1058 if (DoC_is_Millennium(this)) {
1059 dummy = ReadDOC(docptr, ECCConf);
1060 dummy = ReadDOC(docptr, ECCConf);
1061 i = ReadDOC(docptr, ECCConf);
1063 dummy = ReadDOC(docptr, 2k_ECCStatus);
1064 dummy = ReadDOC(docptr, 2k_ECCStatus);
1065 i = ReadDOC(docptr, 2k_ECCStatus);
1068 /* Check the ECC Status */
1071 /* There was an ECC error */
1073 printf("DiskOnChip ECC Error: Read at %lx\n", (long)from);
1075 /* Read the ECC syndrom through the DiskOnChip ECC logic.
1076 These syndrome will be all ZERO when there is no error */
1077 for (i = 0; i < 6; i++) {
1079 ReadDOC(docptr, ECCSyndrome0 + i);
1081 nb_errors = doc_decode_ecc(buf, syndrome);
1084 printf("Errors corrected: %x\n", nb_errors);
1086 if (nb_errors < 0) {
1087 /* We return error, but have actually done the read. Not that
1088 this can be told to user-space, via sys_read(), but at least
1089 MTD-aware stuff can know about it by checking *retlen */
1090 printf("ECC Errors at %lx\n", (long)from);
1096 printf("ECC DATA at %lxB: %2.2X %2.2X %2.2X %2.2X %2.2X %2.2X\n",
1097 (long)from, eccbuf[0], eccbuf[1], eccbuf[2],
1098 eccbuf[3], eccbuf[4], eccbuf[5]);
1101 /* disable the ECC engine */
1102 WriteDOC(DOC_ECC_DIS, docptr , ECCConf);
1105 /* according to 11.4.1, we need to wait for the busy line
1106 * drop if we read to the end of the page. */
1107 if(0 == ((from + *retlen) & 0x1ff))
1109 DoC_WaitReady(this);
1115 int doc_write_ecc(struct DiskOnChip* this, loff_t to, size_t len,
1116 size_t * retlen, const u_char * buf,
1119 int di; /* Yes, DI is a hangover from when I was disassembling the binary driver */
1120 unsigned long docptr;
1121 volatile char dummy;
1123 struct Nand *mychip;
1125 docptr = this->virtadr;
1127 /* Don't allow write past end of device */
1128 if (to >= this->totlen) {
1129 puts ("Out of flash\n");
1133 /* Don't allow a single write to cross a 512-byte block boundary */
1134 if (to + len > ((to | 0x1ff) + 1))
1135 len = ((to | 0x1ff) + 1) - to;
1137 /* The ECC will not be calculated correctly if less than 512 is written */
1138 if (len != 0x200 && eccbuf)
1139 printf("ECC needs a full sector write (adr: %lx size %lx)\n",
1140 (long) to, (long) len);
1142 /* printf("DoC_Write (adr: %lx size %lx)\n", (long) to, (long) len); */
1144 /* Find the chip which is to be used and select it */
1145 mychip = &this->chips[shr(to, this->chipshift)];
1147 if (this->curfloor != mychip->floor) {
1148 DoC_SelectFloor(this, mychip->floor);
1149 DoC_SelectChip(this, mychip->chip);
1150 } else if (this->curchip != mychip->chip) {
1151 DoC_SelectChip(this, mychip->chip);
1154 this->curfloor = mychip->floor;
1155 this->curchip = mychip->chip;
1157 /* Set device to main plane of flash */
1158 DoC_Command(this, NAND_CMD_RESET, CDSN_CTRL_WP);
1161 && (to & 0x100)) ? NAND_CMD_READ1 : NAND_CMD_READ0,
1164 DoC_Command(this, NAND_CMD_SEQIN, 0);
1165 DoC_Address(this, ADDR_COLUMN_PAGE, to, 0, CDSN_CTRL_ECC_IO);
1168 /* Prime the ECC engine */
1169 WriteDOC(DOC_ECC_RESET, docptr, ECCConf);
1170 WriteDOC(DOC_ECC_EN | DOC_ECC_RW, docptr, ECCConf);
1172 /* disable the ECC engine */
1173 WriteDOC(DOC_ECC_RESET, docptr, ECCConf);
1174 WriteDOC(DOC_ECC_DIS, docptr, ECCConf);
1177 /* treat crossing 256-byte sector for 2M x 8bits devices */
1178 if (this->page256 && to + len > (to | 0xff) + 1) {
1179 len256 = (to | 0xff) + 1 - to;
1180 DoC_WriteBuf(this, buf, len256);
1182 DoC_Command(this, NAND_CMD_PAGEPROG, 0);
1184 DoC_Command(this, NAND_CMD_STATUS, CDSN_CTRL_WP);
1185 /* There's an implicit DoC_WaitReady() in DoC_Command */
1187 dummy = ReadDOC(docptr, CDSNSlowIO);
1190 if (ReadDOC_(docptr, this->ioreg) & 1) {
1191 puts ("Error programming flash\n");
1192 /* Error in programming */
1197 DoC_Command(this, NAND_CMD_SEQIN, 0);
1198 DoC_Address(this, ADDR_COLUMN_PAGE, to + len256, 0,
1202 DoC_WriteBuf(this, &buf[len256], len - len256);
1205 WriteDOC(CDSN_CTRL_ECC_IO | CDSN_CTRL_CE, docptr,
1208 if (DoC_is_Millennium(this)) {
1209 WriteDOC(0, docptr, NOP);
1210 WriteDOC(0, docptr, NOP);
1211 WriteDOC(0, docptr, NOP);
1213 WriteDOC_(0, docptr, this->ioreg);
1214 WriteDOC_(0, docptr, this->ioreg);
1215 WriteDOC_(0, docptr, this->ioreg);
1218 /* Read the ECC data through the DiskOnChip ECC logic */
1219 for (di = 0; di < 6; di++) {
1220 eccbuf[di] = ReadDOC(docptr, ECCSyndrome0 + di);
1223 /* Reset the ECC engine */
1224 WriteDOC(DOC_ECC_DIS, docptr, ECCConf);
1228 ("OOB data at %lx is %2.2X %2.2X %2.2X %2.2X %2.2X %2.2X\n",
1229 (long) to, eccbuf[0], eccbuf[1], eccbuf[2], eccbuf[3],
1230 eccbuf[4], eccbuf[5]);
1234 DoC_Command(this, NAND_CMD_PAGEPROG, 0);
1236 DoC_Command(this, NAND_CMD_STATUS, CDSN_CTRL_WP);
1237 /* There's an implicit DoC_WaitReady() in DoC_Command */
1239 dummy = ReadDOC(docptr, CDSNSlowIO);
1242 if (ReadDOC_(docptr, this->ioreg) & 1) {
1243 puts ("Error programming flash\n");
1244 /* Error in programming */
1249 /* Let the caller know we completed it */
1257 /* Write the ECC data to flash */
1258 for (di=0; di<6; di++)
1264 ret = doc_write_oob(this, to, 8, &dummy, x);
1270 int doc_read_oob(struct DiskOnChip* this, loff_t ofs, size_t len,
1271 size_t * retlen, u_char * buf)
1273 int len256 = 0, ret;
1274 unsigned long docptr;
1275 struct Nand *mychip;
1277 docptr = this->virtadr;
1279 mychip = &this->chips[shr(ofs, this->chipshift)];
1281 if (this->curfloor != mychip->floor) {
1282 DoC_SelectFloor(this, mychip->floor);
1283 DoC_SelectChip(this, mychip->chip);
1284 } else if (this->curchip != mychip->chip) {
1285 DoC_SelectChip(this, mychip->chip);
1287 this->curfloor = mychip->floor;
1288 this->curchip = mychip->chip;
1290 /* update address for 2M x 8bit devices. OOB starts on the second */
1291 /* page to maintain compatibility with doc_read_ecc. */
1292 if (this->page256) {
1299 DoC_Command(this, NAND_CMD_READOOB, CDSN_CTRL_WP);
1300 DoC_Address(this, ADDR_COLUMN_PAGE, ofs, CDSN_CTRL_WP, 0);
1302 /* treat crossing 8-byte OOB data for 2M x 8bit devices */
1303 /* Note: datasheet says it should automaticaly wrap to the */
1304 /* next OOB block, but it didn't work here. mf. */
1305 if (this->page256 && ofs + len > (ofs | 0x7) + 1) {
1306 len256 = (ofs | 0x7) + 1 - ofs;
1307 DoC_ReadBuf(this, buf, len256);
1309 DoC_Command(this, NAND_CMD_READOOB, CDSN_CTRL_WP);
1310 DoC_Address(this, ADDR_COLUMN_PAGE, ofs & (~0x1ff),
1314 DoC_ReadBuf(this, &buf[len256], len - len256);
1317 /* Reading the full OOB data drops us off of the end of the page,
1318 * causing the flash device to go into busy mode, so we need
1319 * to wait until ready 11.4.1 and Toshiba TC58256FT docs */
1321 ret = DoC_WaitReady(this);
1327 int doc_write_oob(struct DiskOnChip* this, loff_t ofs, size_t len,
1328 size_t * retlen, const u_char * buf)
1331 unsigned long docptr = this->virtadr;
1332 struct Nand *mychip = &this->chips[shr(ofs, this->chipshift)];
1336 printf("doc_write_oob(%lx, %d): %2.2X %2.2X %2.2X %2.2X ... %2.2X %2.2X .. %2.2X %2.2X\n",
1337 (long)ofs, len, buf[0], buf[1], buf[2], buf[3],
1338 buf[8], buf[9], buf[14],buf[15]);
1341 /* Find the chip which is to be used and select it */
1342 if (this->curfloor != mychip->floor) {
1343 DoC_SelectFloor(this, mychip->floor);
1344 DoC_SelectChip(this, mychip->chip);
1345 } else if (this->curchip != mychip->chip) {
1346 DoC_SelectChip(this, mychip->chip);
1348 this->curfloor = mychip->floor;
1349 this->curchip = mychip->chip;
1351 /* disable the ECC engine */
1352 WriteDOC (DOC_ECC_RESET, docptr, ECCConf);
1353 WriteDOC (DOC_ECC_DIS, docptr, ECCConf);
1355 /* Reset the chip, see Software Requirement 11.4 item 1. */
1356 DoC_Command(this, NAND_CMD_RESET, CDSN_CTRL_WP);
1358 /* issue the Read2 command to set the pointer to the Spare Data Area. */
1359 DoC_Command(this, NAND_CMD_READOOB, CDSN_CTRL_WP);
1361 /* update address for 2M x 8bit devices. OOB starts on the second */
1362 /* page to maintain compatibility with doc_read_ecc. */
1363 if (this->page256) {
1370 /* issue the Serial Data In command to initial the Page Program process */
1371 DoC_Command(this, NAND_CMD_SEQIN, 0);
1372 DoC_Address(this, ADDR_COLUMN_PAGE, ofs, 0, 0);
1374 /* treat crossing 8-byte OOB data for 2M x 8bit devices */
1375 /* Note: datasheet says it should automaticaly wrap to the */
1376 /* next OOB block, but it didn't work here. mf. */
1377 if (this->page256 && ofs + len > (ofs | 0x7) + 1) {
1378 len256 = (ofs | 0x7) + 1 - ofs;
1379 DoC_WriteBuf(this, buf, len256);
1381 DoC_Command(this, NAND_CMD_PAGEPROG, 0);
1382 DoC_Command(this, NAND_CMD_STATUS, 0);
1383 /* DoC_WaitReady() is implicit in DoC_Command */
1385 dummy = ReadDOC(docptr, CDSNSlowIO);
1388 if (ReadDOC_(docptr, this->ioreg) & 1) {
1389 puts ("Error programming oob data\n");
1390 /* There was an error */
1394 DoC_Command(this, NAND_CMD_SEQIN, 0);
1395 DoC_Address(this, ADDR_COLUMN_PAGE, ofs & (~0x1ff), 0, 0);
1398 DoC_WriteBuf(this, &buf[len256], len - len256);
1400 DoC_Command(this, NAND_CMD_PAGEPROG, 0);
1401 DoC_Command(this, NAND_CMD_STATUS, 0);
1402 /* DoC_WaitReady() is implicit in DoC_Command */
1404 dummy = ReadDOC(docptr, CDSNSlowIO);
1407 if (ReadDOC_(docptr, this->ioreg) & 1) {
1408 puts ("Error programming oob data\n");
1409 /* There was an error */
1419 int doc_erase(struct DiskOnChip* this, loff_t ofs, size_t len)
1422 unsigned long docptr;
1423 struct Nand *mychip;
1425 if (ofs & (this->erasesize-1) || len & (this->erasesize-1)) {
1426 puts ("Offset and size must be sector aligned\n");
1430 docptr = this->virtadr;
1432 /* FIXME: Do this in the background. Use timers or schedule_task() */
1434 mychip = &this->chips[shr(ofs, this->chipshift)];
1436 if (this->curfloor != mychip->floor) {
1437 DoC_SelectFloor(this, mychip->floor);
1438 DoC_SelectChip(this, mychip->chip);
1439 } else if (this->curchip != mychip->chip) {
1440 DoC_SelectChip(this, mychip->chip);
1442 this->curfloor = mychip->floor;
1443 this->curchip = mychip->chip;
1445 DoC_Command(this, NAND_CMD_ERASE1, 0);
1446 DoC_Address(this, ADDR_PAGE, ofs, 0, 0);
1447 DoC_Command(this, NAND_CMD_ERASE2, 0);
1449 DoC_Command(this, NAND_CMD_STATUS, CDSN_CTRL_WP);
1451 dummy = ReadDOC(docptr, CDSNSlowIO);
1454 if (ReadDOC_(docptr, this->ioreg) & 1) {
1455 printf("Error erasing at 0x%lx\n", (long)ofs);
1456 /* There was an error */
1459 ofs += this->erasesize;
1460 len -= this->erasesize;
1467 static inline int doccheck(unsigned long potential, unsigned long physadr)
1469 unsigned long window=potential;
1470 unsigned char tmp, ChipID;
1471 #ifndef DOC_PASSIVE_PROBE
1475 /* Routine copied from the Linux DOC driver */
1477 #ifdef CFG_DOCPROBE_55AA
1478 /* Check for 0x55 0xAA signature at beginning of window,
1479 this is no longer true once we remove the IPL (for Millennium */
1480 if (ReadDOC(window, Sig1) != 0x55 || ReadDOC(window, Sig2) != 0xaa)
1482 #endif /* CFG_DOCPROBE_55AA */
1484 #ifndef DOC_PASSIVE_PROBE
1485 /* It's not possible to cleanly detect the DiskOnChip - the
1486 * bootup procedure will put the device into reset mode, and
1487 * it's not possible to talk to it without actually writing
1488 * to the DOCControl register. So we store the current contents
1489 * of the DOCControl register's location, in case we later decide
1490 * that it's not a DiskOnChip, and want to put it back how we
1493 tmp2 = ReadDOC(window, DOCControl);
1495 /* Reset the DiskOnChip ASIC */
1496 WriteDOC(DOC_MODE_CLR_ERR | DOC_MODE_MDWREN | DOC_MODE_RESET,
1497 window, DOCControl);
1498 WriteDOC(DOC_MODE_CLR_ERR | DOC_MODE_MDWREN | DOC_MODE_RESET,
1499 window, DOCControl);
1501 /* Enable the DiskOnChip ASIC */
1502 WriteDOC(DOC_MODE_CLR_ERR | DOC_MODE_MDWREN | DOC_MODE_NORMAL,
1503 window, DOCControl);
1504 WriteDOC(DOC_MODE_CLR_ERR | DOC_MODE_MDWREN | DOC_MODE_NORMAL,
1505 window, DOCControl);
1506 #endif /* !DOC_PASSIVE_PROBE */
1508 ChipID = ReadDOC(window, ChipID);
1511 case DOC_ChipID_Doc2k:
1512 /* Check the TOGGLE bit in the ECC register */
1513 tmp = ReadDOC(window, 2k_ECCStatus) & DOC_TOGGLE_BIT;
1514 if ((ReadDOC(window, 2k_ECCStatus) & DOC_TOGGLE_BIT) != tmp)
1518 case DOC_ChipID_DocMil:
1519 /* Check the TOGGLE bit in the ECC register */
1520 tmp = ReadDOC(window, ECCConf) & DOC_TOGGLE_BIT;
1521 if ((ReadDOC(window, ECCConf) & DOC_TOGGLE_BIT) != tmp)
1526 #ifndef CFG_DOCPROBE_55AA
1528 * if the ID isn't the DoC2000 or DoCMillenium ID, so we can assume
1529 * the DOC is missing
1532 printf("Possible DiskOnChip with unknown ChipID %2.2X found at 0x%lx\n",
1536 #ifndef DOC_PASSIVE_PROBE
1537 /* Put back the contents of the DOCControl register, in case it's not
1538 * actually a DiskOnChip.
1540 WriteDOC(tmp2, window, DOCControl);
1545 puts ("DiskOnChip failed TOGGLE test, dropping.\n");
1547 #ifndef DOC_PASSIVE_PROBE
1548 /* Put back the contents of the DOCControl register: it's not a DiskOnChip */
1549 WriteDOC(tmp2, window, DOCControl);
1554 void doc_probe(unsigned long physadr)
1556 struct DiskOnChip *this = NULL;
1559 if ((ChipID = doccheck(physadr, physadr))) {
1561 for (i=0; i<CFG_MAX_DOC_DEVICE; i++) {
1562 if (doc_dev_desc[i].ChipID == DOC_ChipID_UNKNOWN) {
1563 this = doc_dev_desc + i;
1569 puts ("Cannot allocate memory for data structures.\n");
1573 if (curr_device == -1)
1576 memset((char *)this, 0, sizeof(struct DiskOnChip));
1578 this->virtadr = physadr;
1579 this->physadr = physadr;
1580 this->ChipID = ChipID;
1584 puts ("No DiskOnChip found\n");
1588 #endif /* (CONFIG_COMMANDS & CFG_CMD_DOC) */