2 * inftlmount.c -- INFTL mount code with extensive checks.
4 * Author: Greg Ungerer (gerg@snapgear.com)
5 * (C) Copyright 2002-2003, Greg Ungerer (gerg@snapgear.com)
7 * Based heavily on the nftlmount.c code which is:
8 * Author: Fabrice Bellard (fabrice.bellard@netgem.com)
9 * Copyright (C) 2000 Netgem S.A.
11 * $Id: inftlmount.c,v 1.18 2005/11/07 11:14:20 gleixner Exp $
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #include <linux/kernel.h>
29 #include <linux/module.h>
30 #include <asm/errno.h>
32 #include <asm/uaccess.h>
33 #include <linux/miscdevice.h>
34 #include <linux/delay.h>
35 #include <linux/slab.h>
36 #include <linux/init.h>
37 #include <linux/mtd/mtd.h>
38 #include <linux/mtd/nftl.h>
39 #include <linux/mtd/inftl.h>
40 #include <linux/mtd/compatmac.h>
42 char inftlmountrev
[]="$Revision: 1.18 $";
44 extern int inftl_read_oob(struct mtd_info
*mtd
, loff_t offs
, size_t len
,
45 size_t *retlen
, uint8_t *buf
);
46 extern int inftl_write_oob(struct mtd_info
*mtd
, loff_t offs
, size_t len
,
47 size_t *retlen
, uint8_t *buf
);
50 * find_boot_record: Find the INFTL Media Header and its Spare copy which
51 * contains the various device information of the INFTL partition and
52 * Bad Unit Table. Update the PUtable[] table according to the Bad
53 * Unit Table. PUtable[] is used for management of Erase Unit in
54 * other routines in inftlcore.c and inftlmount.c.
56 static int find_boot_record(struct INFTLrecord
*inftl
)
58 struct inftl_unittail h1
;
59 //struct inftl_oob oob;
60 unsigned int i
, block
;
62 struct INFTLMediaHeader
*mh
= &inftl
->MediaHdr
;
63 struct mtd_info
*mtd
= inftl
->mbd
.mtd
;
64 struct INFTLPartition
*ip
;
67 DEBUG(MTD_DEBUG_LEVEL3
, "INFTL: find_boot_record(inftl=%p)\n", inftl
);
70 * Assume logical EraseSize == physical erasesize for starting the
71 * scan. We'll sort it out later if we find a MediaHeader which says
74 inftl
->EraseSize
= inftl
->mbd
.mtd
->erasesize
;
75 inftl
->nb_blocks
= inftl
->mbd
.mtd
->size
/ inftl
->EraseSize
;
77 inftl
->MediaUnit
= BLOCK_NIL
;
79 /* Search for a valid boot record */
80 for (block
= 0; block
< inftl
->nb_blocks
; block
++) {
84 * Check for BNAND header first. Then whinge if it's found
85 * but later checks fail.
87 ret
= mtd
->read(mtd
, block
* inftl
->EraseSize
,
88 SECTORSIZE
, &retlen
, buf
);
89 /* We ignore ret in case the ECC of the MediaHeader is invalid
90 (which is apparently acceptable) */
91 if (retlen
!= SECTORSIZE
) {
92 static int warncount
= 5;
95 printk(KERN_WARNING
"INFTL: block read at 0x%x "
96 "of mtd%d failed: %d\n",
97 block
* inftl
->EraseSize
,
98 inftl
->mbd
.mtd
->index
, ret
);
100 printk(KERN_WARNING
"INFTL: further "
101 "failures for this block will "
107 if (retlen
< 6 || memcmp(buf
, "BNAND", 6)) {
108 /* BNAND\0 not found. Continue */
112 /* To be safer with BIOS, also use erase mark as discriminant */
113 if ((ret
= inftl_read_oob(mtd
, block
* inftl
->EraseSize
+
114 SECTORSIZE
+ 8, 8, &retlen
,
116 printk(KERN_WARNING
"INFTL: ANAND header found at "
117 "0x%x in mtd%d, but OOB data read failed "
118 "(err %d)\n", block
* inftl
->EraseSize
,
119 inftl
->mbd
.mtd
->index
, ret
);
125 * This is the first we've seen.
126 * Copy the media header structure into place.
128 memcpy(mh
, buf
, sizeof(struct INFTLMediaHeader
));
130 /* Read the spare media header at offset 4096 */
131 mtd
->read(mtd
, block
* inftl
->EraseSize
+ 4096,
132 SECTORSIZE
, &retlen
, buf
);
133 if (retlen
!= SECTORSIZE
) {
134 printk(KERN_WARNING
"INFTL: Unable to read spare "
138 /* Check if this one is the same as the first one we found. */
139 if (memcmp(mh
, buf
, sizeof(struct INFTLMediaHeader
))) {
140 printk(KERN_WARNING
"INFTL: Primary and spare Media "
141 "Headers disagree.\n");
145 mh
->NoOfBootImageBlocks
= le32_to_cpu(mh
->NoOfBootImageBlocks
);
146 mh
->NoOfBinaryPartitions
= le32_to_cpu(mh
->NoOfBinaryPartitions
);
147 mh
->NoOfBDTLPartitions
= le32_to_cpu(mh
->NoOfBDTLPartitions
);
148 mh
->BlockMultiplierBits
= le32_to_cpu(mh
->BlockMultiplierBits
);
149 mh
->FormatFlags
= le32_to_cpu(mh
->FormatFlags
);
150 mh
->PercentUsed
= le32_to_cpu(mh
->PercentUsed
);
152 #ifdef CONFIG_MTD_DEBUG_VERBOSE
153 if (CONFIG_MTD_DEBUG_VERBOSE
>= 2) {
154 printk("INFTL: Media Header ->\n"
155 " bootRecordID = %s\n"
156 " NoOfBootImageBlocks = %d\n"
157 " NoOfBinaryPartitions = %d\n"
158 " NoOfBDTLPartitions = %d\n"
159 " BlockMultiplerBits = %d\n"
161 " OsakVersion = 0x%x\n"
162 " PercentUsed = %d\n",
163 mh
->bootRecordID
, mh
->NoOfBootImageBlocks
,
164 mh
->NoOfBinaryPartitions
,
165 mh
->NoOfBDTLPartitions
,
166 mh
->BlockMultiplierBits
, mh
->FormatFlags
,
167 mh
->OsakVersion
, mh
->PercentUsed
);
171 if (mh
->NoOfBDTLPartitions
== 0) {
172 printk(KERN_WARNING
"INFTL: Media Header sanity check "
173 "failed: NoOfBDTLPartitions (%d) == 0, "
174 "must be at least 1\n", mh
->NoOfBDTLPartitions
);
178 if ((mh
->NoOfBDTLPartitions
+ mh
->NoOfBinaryPartitions
) > 4) {
179 printk(KERN_WARNING
"INFTL: Media Header sanity check "
180 "failed: Total Partitions (%d) > 4, "
181 "BDTL=%d Binary=%d\n", mh
->NoOfBDTLPartitions
+
182 mh
->NoOfBinaryPartitions
,
183 mh
->NoOfBDTLPartitions
,
184 mh
->NoOfBinaryPartitions
);
188 if (mh
->BlockMultiplierBits
> 1) {
189 printk(KERN_WARNING
"INFTL: sorry, we don't support "
190 "UnitSizeFactor 0x%02x\n",
191 mh
->BlockMultiplierBits
);
193 } else if (mh
->BlockMultiplierBits
== 1) {
194 printk(KERN_WARNING
"INFTL: support for INFTL with "
195 "UnitSizeFactor 0x%02x is experimental\n",
196 mh
->BlockMultiplierBits
);
197 inftl
->EraseSize
= inftl
->mbd
.mtd
->erasesize
<<
198 mh
->BlockMultiplierBits
;
199 inftl
->nb_blocks
= inftl
->mbd
.mtd
->size
/ inftl
->EraseSize
;
200 block
>>= mh
->BlockMultiplierBits
;
203 /* Scan the partitions */
204 for (i
= 0; (i
< 4); i
++) {
205 ip
= &mh
->Partitions
[i
];
206 ip
->virtualUnits
= le32_to_cpu(ip
->virtualUnits
);
207 ip
->firstUnit
= le32_to_cpu(ip
->firstUnit
);
208 ip
->lastUnit
= le32_to_cpu(ip
->lastUnit
);
209 ip
->flags
= le32_to_cpu(ip
->flags
);
210 ip
->spareUnits
= le32_to_cpu(ip
->spareUnits
);
211 ip
->Reserved0
= le32_to_cpu(ip
->Reserved0
);
213 #ifdef CONFIG_MTD_DEBUG_VERBOSE
214 if (CONFIG_MTD_DEBUG_VERBOSE
>= 2) {
215 printk(" PARTITION[%d] ->\n"
216 " virtualUnits = %d\n"
220 " spareUnits = %d\n",
221 i
, ip
->virtualUnits
, ip
->firstUnit
,
222 ip
->lastUnit
, ip
->flags
,
227 if (ip
->Reserved0
!= ip
->firstUnit
) {
228 struct erase_info
*instr
= &inftl
->instr
;
230 instr
->mtd
= inftl
->mbd
.mtd
;
233 * Most likely this is using the
234 * undocumented qiuck mount feature.
235 * We don't support that, we will need
236 * to erase the hidden block for full
239 instr
->addr
= ip
->Reserved0
* inftl
->EraseSize
;
240 instr
->len
= inftl
->EraseSize
;
241 mtd
->erase(mtd
, instr
);
243 if ((ip
->lastUnit
- ip
->firstUnit
+ 1) < ip
->virtualUnits
) {
244 printk(KERN_WARNING
"INFTL: Media Header "
245 "Partition %d sanity check failed\n"
246 " firstUnit %d : lastUnit %d > "
247 "virtualUnits %d\n", i
, ip
->lastUnit
,
248 ip
->firstUnit
, ip
->Reserved0
);
251 if (ip
->Reserved1
!= 0) {
252 printk(KERN_WARNING
"INFTL: Media Header "
253 "Partition %d sanity check failed: "
254 "Reserved1 %d != 0\n",
259 if (ip
->flags
& INFTL_BDTL
)
264 printk(KERN_WARNING
"INFTL: Media Header Partition "
265 "sanity check failed:\n No partition "
266 "marked as Disk Partition\n");
270 inftl
->nb_boot_blocks
= ip
->firstUnit
;
271 inftl
->numvunits
= ip
->virtualUnits
;
272 if (inftl
->numvunits
> (inftl
->nb_blocks
-
273 inftl
->nb_boot_blocks
- 2)) {
274 printk(KERN_WARNING
"INFTL: Media Header sanity check "
275 "failed:\n numvunits (%d) > nb_blocks "
276 "(%d) - nb_boot_blocks(%d) - 2\n",
277 inftl
->numvunits
, inftl
->nb_blocks
,
278 inftl
->nb_boot_blocks
);
282 inftl
->mbd
.size
= inftl
->numvunits
*
283 (inftl
->EraseSize
/ SECTORSIZE
);
286 * Block count is set to last used EUN (we won't need to keep
287 * any meta-data past that point).
289 inftl
->firstEUN
= ip
->firstUnit
;
290 inftl
->lastEUN
= ip
->lastUnit
;
291 inftl
->nb_blocks
= ip
->lastUnit
+ 1;
294 inftl
->PUtable
= kmalloc(inftl
->nb_blocks
* sizeof(u16
), GFP_KERNEL
);
295 if (!inftl
->PUtable
) {
296 printk(KERN_WARNING
"INFTL: allocation of PUtable "
297 "failed (%zd bytes)\n",
298 inftl
->nb_blocks
* sizeof(u16
));
302 inftl
->VUtable
= kmalloc(inftl
->nb_blocks
* sizeof(u16
), GFP_KERNEL
);
303 if (!inftl
->VUtable
) {
304 kfree(inftl
->PUtable
);
305 printk(KERN_WARNING
"INFTL: allocation of VUtable "
306 "failed (%zd bytes)\n",
307 inftl
->nb_blocks
* sizeof(u16
));
311 /* Mark the blocks before INFTL MediaHeader as reserved */
312 for (i
= 0; i
< inftl
->nb_boot_blocks
; i
++)
313 inftl
->PUtable
[i
] = BLOCK_RESERVED
;
314 /* Mark all remaining blocks as potentially containing data */
315 for (; i
< inftl
->nb_blocks
; i
++)
316 inftl
->PUtable
[i
] = BLOCK_NOTEXPLORED
;
318 /* Mark this boot record (NFTL MediaHeader) block as reserved */
319 inftl
->PUtable
[block
] = BLOCK_RESERVED
;
321 /* Read Bad Erase Unit Table and modify PUtable[] accordingly */
322 for (i
= 0; i
< inftl
->nb_blocks
; i
++) {
324 /* If any of the physical eraseblocks are bad, don't
326 for (physblock
= 0; physblock
< inftl
->EraseSize
; physblock
+= inftl
->mbd
.mtd
->erasesize
) {
327 if (inftl
->mbd
.mtd
->block_isbad(inftl
->mbd
.mtd
, i
* inftl
->EraseSize
+ physblock
))
328 inftl
->PUtable
[i
] = BLOCK_RESERVED
;
332 inftl
->MediaUnit
= block
;
340 static int memcmpb(void *a
, int c
, int n
)
343 for (i
= 0; i
< n
; i
++) {
344 if (c
!= ((unsigned char *)a
)[i
])
351 * check_free_sector: check if a free sector is actually FREE,
352 * i.e. All 0xff in data and oob area.
354 static int check_free_sectors(struct INFTLrecord
*inftl
, unsigned int address
,
355 int len
, int check_oob
)
357 u8 buf
[SECTORSIZE
+ inftl
->mbd
.mtd
->oobsize
];
358 struct mtd_info
*mtd
= inftl
->mbd
.mtd
;
362 for (i
= 0; i
< len
; i
+= SECTORSIZE
) {
363 if (mtd
->read(mtd
, address
, SECTORSIZE
, &retlen
, buf
))
365 if (memcmpb(buf
, 0xff, SECTORSIZE
) != 0)
369 if(inftl_read_oob(mtd
, address
, mtd
->oobsize
,
370 &retlen
, &buf
[SECTORSIZE
]) < 0)
372 if (memcmpb(buf
+ SECTORSIZE
, 0xff, mtd
->oobsize
) != 0)
375 address
+= SECTORSIZE
;
382 * INFTL_format: format a Erase Unit by erasing ALL Erase Zones in the Erase
383 * Unit and Update INFTL metadata. Each erase operation is
384 * checked with check_free_sectors.
386 * Return: 0 when succeed, -1 on error.
388 * ToDo: 1. Is it neceressary to check_free_sector after erasing ??
390 int INFTL_formatblock(struct INFTLrecord
*inftl
, int block
)
393 struct inftl_unittail uci
;
394 struct erase_info
*instr
= &inftl
->instr
;
395 struct mtd_info
*mtd
= inftl
->mbd
.mtd
;
398 DEBUG(MTD_DEBUG_LEVEL3
, "INFTL: INFTL_formatblock(inftl=%p,"
399 "block=%d)\n", inftl
, block
);
401 memset(instr
, 0, sizeof(struct erase_info
));
403 /* FIXME: Shouldn't we be setting the 'discarded' flag to zero
406 /* Use async erase interface, test return code */
407 instr
->mtd
= inftl
->mbd
.mtd
;
408 instr
->addr
= block
* inftl
->EraseSize
;
409 instr
->len
= inftl
->mbd
.mtd
->erasesize
;
410 /* Erase one physical eraseblock at a time, even though the NAND api
411 allows us to group them. This way we if we have a failure, we can
412 mark only the failed block in the bbt. */
413 for (physblock
= 0; physblock
< inftl
->EraseSize
;
414 physblock
+= instr
->len
, instr
->addr
+= instr
->len
) {
415 mtd
->erase(inftl
->mbd
.mtd
, instr
);
417 if (instr
->state
== MTD_ERASE_FAILED
) {
418 printk(KERN_WARNING
"INFTL: error while formatting block %d\n",
424 * Check the "freeness" of Erase Unit before updating metadata.
425 * FixMe: is this check really necessary? Since we have check
426 * the return code after the erase operation.
428 if (check_free_sectors(inftl
, instr
->addr
, instr
->len
, 1) != 0)
432 uci
.EraseMark
= cpu_to_le16(ERASE_MARK
);
433 uci
.EraseMark1
= cpu_to_le16(ERASE_MARK
);
438 instr
->addr
= block
* inftl
->EraseSize
+ SECTORSIZE
* 2;
439 if (inftl_write_oob(mtd
, instr
->addr
+ 8, 8, &retlen
, (char *)&uci
) < 0)
443 /* could not format, update the bad block table (caller is responsible
444 for setting the PUtable to BLOCK_RESERVED on failure) */
445 inftl
->mbd
.mtd
->block_markbad(inftl
->mbd
.mtd
, instr
->addr
);
450 * format_chain: Format an invalid Virtual Unit chain. It frees all the Erase
451 * Units in a Virtual Unit Chain, i.e. all the units are disconnected.
453 * Since the chain is invalid then we will have to erase it from its
454 * head (normally for INFTL we go from the oldest). But if it has a
455 * loop then there is no oldest...
457 static void format_chain(struct INFTLrecord
*inftl
, unsigned int first_block
)
459 unsigned int block
= first_block
, block1
;
461 printk(KERN_WARNING
"INFTL: formatting chain at block %d\n",
465 block1
= inftl
->PUtable
[block
];
467 printk(KERN_WARNING
"INFTL: formatting block %d\n", block
);
468 if (INFTL_formatblock(inftl
, block
) < 0) {
470 * Cannot format !!!! Mark it as Bad Unit,
472 inftl
->PUtable
[block
] = BLOCK_RESERVED
;
474 inftl
->PUtable
[block
] = BLOCK_FREE
;
477 /* Goto next block on the chain */
480 if (block
== BLOCK_NIL
|| block
>= inftl
->lastEUN
)
485 void INFTL_dumptables(struct INFTLrecord
*s
)
489 printk("-------------------------------------------"
490 "----------------------------------\n");
492 printk("VUtable[%d] ->", s
->nb_blocks
);
493 for (i
= 0; i
< s
->nb_blocks
; i
++) {
495 printk("\n%04x: ", i
);
496 printk("%04x ", s
->VUtable
[i
]);
499 printk("\n-------------------------------------------"
500 "----------------------------------\n");
502 printk("PUtable[%d-%d=%d] ->", s
->firstEUN
, s
->lastEUN
, s
->nb_blocks
);
503 for (i
= 0; i
<= s
->lastEUN
; i
++) {
505 printk("\n%04x: ", i
);
506 printk("%04x ", s
->PUtable
[i
]);
509 printk("\n-------------------------------------------"
510 "----------------------------------\n");
514 " h/s/c = %d/%d/%d\n"
518 " numfreeEUNs = %d\n"
519 " LastFreeEUN = %d\n"
521 " nb_boot_blocks = %d",
522 s
->EraseSize
, s
->heads
, s
->sectors
, s
->cylinders
,
523 s
->numvunits
, s
->firstEUN
, s
->lastEUN
, s
->numfreeEUNs
,
524 s
->LastFreeEUN
, s
->nb_blocks
, s
->nb_boot_blocks
);
526 printk("\n-------------------------------------------"
527 "----------------------------------\n");
530 void INFTL_dumpVUchains(struct INFTLrecord
*s
)
532 int logical
, block
, i
;
534 printk("-------------------------------------------"
535 "----------------------------------\n");
537 printk("INFTL Virtual Unit Chains:\n");
538 for (logical
= 0; logical
< s
->nb_blocks
; logical
++) {
539 block
= s
->VUtable
[logical
];
540 if (block
> s
->nb_blocks
)
542 printk(" LOGICAL %d --> %d ", logical
, block
);
543 for (i
= 0; i
< s
->nb_blocks
; i
++) {
544 if (s
->PUtable
[block
] == BLOCK_NIL
)
546 block
= s
->PUtable
[block
];
547 printk("%d ", block
);
552 printk("-------------------------------------------"
553 "----------------------------------\n");
556 int INFTL_mount(struct INFTLrecord
*s
)
558 struct mtd_info
*mtd
= s
->mbd
.mtd
;
559 unsigned int block
, first_block
, prev_block
, last_block
;
560 unsigned int first_logical_block
, logical_block
, erase_mark
;
561 int chain_length
, do_format_chain
;
562 struct inftl_unithead1 h0
;
563 struct inftl_unittail h1
;
568 DEBUG(MTD_DEBUG_LEVEL3
, "INFTL: INFTL_mount(inftl=%p)\n", s
);
570 /* Search for INFTL MediaHeader and Spare INFTL Media Header */
571 if (find_boot_record(s
) < 0) {
572 printk(KERN_WARNING
"INFTL: could not find valid boot record?\n");
576 /* Init the logical to physical table */
577 for (i
= 0; i
< s
->nb_blocks
; i
++)
578 s
->VUtable
[i
] = BLOCK_NIL
;
580 logical_block
= block
= BLOCK_NIL
;
582 /* Temporary buffer to store ANAC numbers. */
583 ANACtable
= kcalloc(s
->nb_blocks
, sizeof(u8
), GFP_KERNEL
);
585 printk(KERN_WARNING
"INFTL: allocation of ANACtable "
586 "failed (%zd bytes)\n",
587 s
->nb_blocks
* sizeof(u8
));
592 * First pass is to explore each physical unit, and construct the
593 * virtual chains that exist (newest physical unit goes into VUtable).
594 * Any block that is in any way invalid will be left in the
595 * NOTEXPLORED state. Then at the end we will try to format it and
598 DEBUG(MTD_DEBUG_LEVEL3
, "INFTL: pass 1, explore each unit\n");
599 for (first_block
= s
->firstEUN
; first_block
<= s
->lastEUN
; first_block
++) {
600 if (s
->PUtable
[first_block
] != BLOCK_NOTEXPLORED
)
604 first_logical_block
= BLOCK_NIL
;
605 last_block
= BLOCK_NIL
;
608 for (chain_length
= 0; ; chain_length
++) {
610 if ((chain_length
== 0) &&
611 (s
->PUtable
[block
] != BLOCK_NOTEXPLORED
)) {
612 /* Nothing to do here, onto next block */
616 if (inftl_read_oob(mtd
, block
* s
->EraseSize
+ 8,
617 8, &retlen
, (char *)&h0
) < 0 ||
618 inftl_read_oob(mtd
, block
* s
->EraseSize
+
619 2 * SECTORSIZE
+ 8, 8, &retlen
,
621 /* Should never happen? */
626 logical_block
= le16_to_cpu(h0
.virtualUnitNo
);
627 prev_block
= le16_to_cpu(h0
.prevUnitNo
);
628 erase_mark
= le16_to_cpu((h1
.EraseMark
| h1
.EraseMark1
));
629 ANACtable
[block
] = h0
.ANAC
;
631 /* Previous block is relative to start of Partition */
632 if (prev_block
< s
->nb_blocks
)
633 prev_block
+= s
->firstEUN
;
635 /* Already explored partial chain? */
636 if (s
->PUtable
[block
] != BLOCK_NOTEXPLORED
) {
637 /* Check if chain for this logical */
638 if (logical_block
== first_logical_block
) {
639 if (last_block
!= BLOCK_NIL
)
640 s
->PUtable
[last_block
] = block
;
645 /* Check for invalid block */
646 if (erase_mark
!= ERASE_MARK
) {
647 printk(KERN_WARNING
"INFTL: corrupt block %d "
648 "in chain %d, chain length %d, erase "
649 "mark 0x%x?\n", block
, first_block
,
650 chain_length
, erase_mark
);
652 * Assume end of chain, probably incomplete
655 if (chain_length
== 0)
660 /* Check for it being free already then... */
661 if ((logical_block
== BLOCK_FREE
) ||
662 (logical_block
== BLOCK_NIL
)) {
663 s
->PUtable
[block
] = BLOCK_FREE
;
667 /* Sanity checks on block numbers */
668 if ((logical_block
>= s
->nb_blocks
) ||
669 ((prev_block
>= s
->nb_blocks
) &&
670 (prev_block
!= BLOCK_NIL
))) {
671 if (chain_length
> 0) {
672 printk(KERN_WARNING
"INFTL: corrupt "
673 "block %d in chain %d?\n",
680 if (first_logical_block
== BLOCK_NIL
) {
681 first_logical_block
= logical_block
;
683 if (first_logical_block
!= logical_block
) {
684 /* Normal for folded chain... */
690 * Current block is valid, so if we followed a virtual
691 * chain to get here then we can set the previous
692 * block pointer in our PUtable now. Then move onto
693 * the previous block in the chain.
695 s
->PUtable
[block
] = BLOCK_NIL
;
696 if (last_block
!= BLOCK_NIL
)
697 s
->PUtable
[last_block
] = block
;
701 /* Check for end of chain */
702 if (block
== BLOCK_NIL
)
705 /* Validate next block before following it... */
706 if (block
> s
->lastEUN
) {
707 printk(KERN_WARNING
"INFTL: invalid previous "
708 "block %d in chain %d?\n", block
,
715 if (do_format_chain
) {
716 format_chain(s
, first_block
);
721 * Looks like a valid chain then. It may not really be the
722 * newest block in the chain, but it is the newest we have
723 * found so far. We might update it in later iterations of
724 * this loop if we find something newer.
726 s
->VUtable
[first_logical_block
] = first_block
;
727 logical_block
= BLOCK_NIL
;
730 #ifdef CONFIG_MTD_DEBUG_VERBOSE
731 if (CONFIG_MTD_DEBUG_VERBOSE
>= 2)
736 * Second pass, check for infinite loops in chains. These are
737 * possible because we don't update the previous pointers when
738 * we fold chains. No big deal, just fix them up in PUtable.
740 DEBUG(MTD_DEBUG_LEVEL3
, "INFTL: pass 2, validate virtual chains\n");
741 for (logical_block
= 0; logical_block
< s
->numvunits
; logical_block
++) {
742 block
= s
->VUtable
[logical_block
];
743 last_block
= BLOCK_NIL
;
745 /* Check for free/reserved/nil */
746 if (block
>= BLOCK_RESERVED
)
749 ANAC
= ANACtable
[block
];
750 for (i
= 0; i
< s
->numvunits
; i
++) {
751 if (s
->PUtable
[block
] == BLOCK_NIL
)
753 if (s
->PUtable
[block
] > s
->lastEUN
) {
754 printk(KERN_WARNING
"INFTL: invalid prev %d, "
755 "in virtual chain %d\n",
756 s
->PUtable
[block
], logical_block
);
757 s
->PUtable
[block
] = BLOCK_NIL
;
760 if (ANACtable
[block
] != ANAC
) {
762 * Chain must point back to itself. This is ok,
763 * but we will need adjust the tables with this
764 * newest block and oldest block.
766 s
->VUtable
[logical_block
] = block
;
767 s
->PUtable
[last_block
] = BLOCK_NIL
;
773 block
= s
->PUtable
[block
];
776 if (i
>= s
->nb_blocks
) {
778 * Uhoo, infinite chain with valid ANACS!
779 * Format whole chain...
781 format_chain(s
, first_block
);
785 #ifdef CONFIG_MTD_DEBUG_VERBOSE
786 if (CONFIG_MTD_DEBUG_VERBOSE
>= 2)
788 if (CONFIG_MTD_DEBUG_VERBOSE
>= 2)
789 INFTL_dumpVUchains(s
);
793 * Third pass, format unreferenced blocks and init free block count.
796 s
->LastFreeEUN
= BLOCK_NIL
;
798 DEBUG(MTD_DEBUG_LEVEL3
, "INFTL: pass 3, format unused blocks\n");
799 for (block
= s
->firstEUN
; block
<= s
->lastEUN
; block
++) {
800 if (s
->PUtable
[block
] == BLOCK_NOTEXPLORED
) {
801 printk("INFTL: unreferenced block %d, formatting it\n",
803 if (INFTL_formatblock(s
, block
) < 0)
804 s
->PUtable
[block
] = BLOCK_RESERVED
;
806 s
->PUtable
[block
] = BLOCK_FREE
;
808 if (s
->PUtable
[block
] == BLOCK_FREE
) {
810 if (s
->LastFreeEUN
== BLOCK_NIL
)
811 s
->LastFreeEUN
= block
;