638099960735b34f4db90fb944fa68b07e6669c9
[yaffs2.git] / yaffs_mtdif1.c
1 /*
2  * YAFFS: Yet another FFS. A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2010 Aleph One Ltd.
5  *   for Toby Churchill Ltd and Brightstar Engineering
6  *
7  * Created by Charles Manning <charles@aleph1.co.uk>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13
14 /*
15  * This module provides the interface between yaffs_nand.c and the
16  * MTD API.  This version is used when the MTD interface supports the
17  * 'mtd_oob_ops' style calls to read_oob and write_oob, circa 2.6.17,
18  * and we have small-page NAND device.
19  *
20  * These functions are invoked via function pointers in yaffs_nand.c.
21  * This replaces functionality provided by functions in yaffs_mtdif.c
22  * and the yaffs_tags_tCompatability functions in yaffs_tagscompat.c that are
23  * called in yaffs_mtdif.c when the function pointers are NULL.
24  * We assume the MTD layer is performing ECC (use_nand_ecc is true).
25  */
26
27 #include "yportenv.h"
28 #include "yaffs_trace.h"
29 #include "yaffs_guts.h"
30 #include "yaffs_packedtags1.h"
31 #include "yaffs_tagscompat.h"   /* for yaffs_calc_tags_ecc */
32 #include "yaffs_linux.h"
33
34 #include "linux/kernel.h"
35 #include "linux/version.h"
36 #include "linux/types.h"
37 #include "linux/mtd/mtd.h"
38
39 /* Don't compile this module if we don't have MTD's mtd_oob_ops interface */
40 #if (MTD_VERSION_CODE > MTD_VERSION(2, 6, 17))
41
42 #ifndef CONFIG_YAFFS_9BYTE_TAGS
43 # define YTAG1_SIZE 8
44 #else
45 # define YTAG1_SIZE 9
46 #endif
47
48 #if 0
49 /* Use the following nand_ecclayout with MTD when using
50  * CONFIG_YAFFS_9BYTE_TAGS and the older on-NAND tags layout.
51  * If you have existing Yaffs images and the byte order differs from this,
52  * adjust 'oobfree' to match your existing Yaffs data.
53  *
54  * This nand_ecclayout scatters/gathers to/from the old-yaffs layout with the
55  * page_status byte (at NAND spare offset 4) scattered/gathered from/to
56  * the 9th byte.
57  *
58  * Old-style on-NAND format: T0,T1,T2,T3,P,B,T4,T5,E0,E1,E2,T6,T7,E3,E4,E5
59  * We have/need packed_tags1 plus page_status: T0,T1,T2,T3,T4,T5,T6,T7,P
60  * where Tn are the tag bytes, En are MTD's ECC bytes, P is the page_status
61  * byte and B is the small-page bad-block indicator byte.
62  */
63 static struct nand_ecclayout nand_oob_16 = {
64         .eccbytes = 6,
65         .eccpos = { 8, 9, 10, 13, 14, 15 },
66         .oobavail = 9,
67         .oobfree = { { 0, 4 }, { 6, 2 }, { 11, 2 }, { 4, 1 } }
68 };
69 #endif
70
71 /* Write a chunk (page) of data to NAND.
72  *
73  * Caller always provides ExtendedTags data which are converted to a more
74  * compact (packed) form for storage in NAND.  A mini-ECC runs over the
75  * contents of the tags meta-data; used to valid the tags when read.
76  *
77  *  - Pack ExtendedTags to packed_tags1 form
78  *  - Compute mini-ECC for packed_tags1
79  *  - Write data and packed tags to NAND.
80  *
81  * Note: Due to the use of the packed_tags1 meta-data which does not include
82  * a full sequence number (as found in the larger packed_tags2 form) it is
83  * necessary for Yaffs to re-write a chunk/page (just once) to mark it as
84  * discarded and dirty.  This is not ideal: newer NAND parts are supposed
85  * to be written just once.  When Yaffs performs this operation, this
86  * function is called with a NULL data pointer -- calling MTD write_oob
87  * without data is valid usage (2.6.17).
88  *
89  * Any underlying MTD error results in YAFFS_FAIL.
90  * Returns YAFFS_OK or YAFFS_FAIL.
91  */
92 int nandmtd1_write_chunk_tags(yaffs_dev_t *dev,
93         int nand_chunk, const __u8 *data, const yaffs_ext_tags *etags)
94 {
95         struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
96         int chunk_bytes = dev->data_bytes_per_chunk;
97         loff_t addr = ((loff_t)nand_chunk) * chunk_bytes;
98         struct mtd_oob_ops ops;
99         yaffs_packed_tags1 pt1;
100         int retval;
101
102         /* we assume that packed_tags1 and yaffs_tags_t are compatible */
103         compile_time_assertion(sizeof(yaffs_packed_tags1) == 12);
104         compile_time_assertion(sizeof(yaffs_tags_t) == 8);
105
106         yaffs_pack_tags1(&pt1, etags);
107         yaffs_calc_tags_ecc((yaffs_tags_t *)&pt1);
108
109         /* When deleting a chunk, the upper layer provides only skeletal
110          * etags, one with is_deleted set.  However, we need to update the
111          * tags, not erase them completely.  So we use the NAND write property
112          * that only zeroed-bits stick and set tag bytes to all-ones and
113          * zero just the (not) deleted bit.
114          */
115 #ifndef CONFIG_YAFFS_9BYTE_TAGS
116         if (etags->is_deleted) {
117                 memset(&pt1, 0xff, 8);
118                 /* clear delete status bit to indicate deleted */
119                 pt1.deleted = 0;
120         }
121 #else
122         ((__u8 *)&pt1)[8] = 0xff;
123         if (etags->is_deleted) {
124                 memset(&pt1, 0xff, 8);
125                 /* zero page_status byte to indicate deleted */
126                 ((__u8 *)&pt1)[8] = 0;
127         }
128 #endif
129
130         memset(&ops, 0, sizeof(ops));
131         ops.mode = MTD_OOB_AUTO;
132         ops.len = (data) ? chunk_bytes : 0;
133         ops.ooblen = YTAG1_SIZE;
134         ops.datbuf = (__u8 *)data;
135         ops.oobbuf = (__u8 *)&pt1;
136
137         retval = mtd->write_oob(mtd, addr, &ops);
138         if (retval) {
139                 T(YAFFS_TRACE_MTD,
140                         (TSTR("write_oob failed, chunk %d, mtd error %d"TENDSTR),
141                         nand_chunk, retval));
142         }
143         return retval ? YAFFS_FAIL : YAFFS_OK;
144 }
145
146 /* Return with empty ExtendedTags but add ecc_result.
147  */
148 static int rettags(yaffs_ext_tags *etags, int ecc_result, int retval)
149 {
150         if (etags) {
151                 memset(etags, 0, sizeof(*etags));
152                 etags->ecc_result = ecc_result;
153         }
154         return retval;
155 }
156
157 /* Read a chunk (page) from NAND.
158  *
159  * Caller expects ExtendedTags data to be usable even on error; that is,
160  * all members except ecc_result and block_bad are zeroed.
161  *
162  *  - Check ECC results for data (if applicable)
163  *  - Check for blank/erased block (return empty ExtendedTags if blank)
164  *  - Check the packed_tags1 mini-ECC (correct if necessary/possible)
165  *  - Convert packed_tags1 to ExtendedTags
166  *  - Update ecc_result and block_bad members to refect state.
167  *
168  * Returns YAFFS_OK or YAFFS_FAIL.
169  */
170 int nandmtd1_read_chunk_tags(yaffs_dev_t *dev,
171         int nand_chunk, __u8 *data, yaffs_ext_tags *etags)
172 {
173         struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
174         int chunk_bytes = dev->data_bytes_per_chunk;
175         loff_t addr = ((loff_t)nand_chunk) * chunk_bytes;
176         int eccres = YAFFS_ECC_RESULT_NO_ERROR;
177         struct mtd_oob_ops ops;
178         yaffs_packed_tags1 pt1;
179         int retval;
180         int deleted;
181
182         memset(&ops, 0, sizeof(ops));
183         ops.mode = MTD_OOB_AUTO;
184         ops.len = (data) ? chunk_bytes : 0;
185         ops.ooblen = YTAG1_SIZE;
186         ops.datbuf = data;
187         ops.oobbuf = (__u8 *)&pt1;
188
189 #if (MTD_VERSION_CODE < MTD_VERSION(2, 6, 20))
190         /* In MTD 2.6.18 to 2.6.19 nand_base.c:nand_do_read_oob() has a bug;
191          * help it out with ops.len = ops.ooblen when ops.datbuf == NULL.
192          */
193         ops.len = (ops.datbuf) ? ops.len : ops.ooblen;
194 #endif
195         /* Read page and oob using MTD.
196          * Check status and determine ECC result.
197          */
198         retval = mtd->read_oob(mtd, addr, &ops);
199         if (retval) {
200                 T(YAFFS_TRACE_MTD,
201                         (TSTR("read_oob failed, chunk %d, mtd error %d"TENDSTR),
202                         nand_chunk, retval));
203         }
204
205         switch (retval) {
206         case 0:
207                 /* no error */
208                 break;
209
210         case -EUCLEAN:
211                 /* MTD's ECC fixed the data */
212                 eccres = YAFFS_ECC_RESULT_FIXED;
213                 dev->n_ecc_fixed++;
214                 break;
215
216         case -EBADMSG:
217                 /* MTD's ECC could not fix the data */
218                 dev->n_ecc_unfixed++;
219                 /* fall into... */
220         default:
221                 rettags(etags, YAFFS_ECC_RESULT_UNFIXED, 0);
222                 etags->block_bad = (mtd->block_isbad)(mtd, addr);
223                 return YAFFS_FAIL;
224         }
225
226         /* Check for a blank/erased chunk.
227          */
228         if (yaffs_check_ff((__u8 *)&pt1, 8)) {
229                 /* when blank, upper layers want ecc_result to be <= NO_ERROR */
230                 return rettags(etags, YAFFS_ECC_RESULT_NO_ERROR, YAFFS_OK);
231         }
232
233 #ifndef CONFIG_YAFFS_9BYTE_TAGS
234         /* Read deleted status (bit) then return it to it's non-deleted
235          * state before performing tags mini-ECC check. pt1.deleted is
236          * inverted.
237          */
238         deleted = !pt1.deleted;
239         pt1.deleted = 1;
240 #else
241         deleted = (yaffs_count_bits(((__u8 *)&pt1)[8]) < 7);
242 #endif
243
244         /* Check the packed tags mini-ECC and correct if necessary/possible.
245          */
246         retval = yaffs_check_tags_ecc((yaffs_tags_t *)&pt1);
247         switch (retval) {
248         case 0:
249                 /* no tags error, use MTD result */
250                 break;
251         case 1:
252                 /* recovered tags-ECC error */
253                 dev->n_tags_ecc_fixed++;
254                 if (eccres == YAFFS_ECC_RESULT_NO_ERROR)
255                         eccres = YAFFS_ECC_RESULT_FIXED;
256                 break;
257         default:
258                 /* unrecovered tags-ECC error */
259                 dev->n_tags_ecc_unfixed++;
260                 return rettags(etags, YAFFS_ECC_RESULT_UNFIXED, YAFFS_FAIL);
261         }
262
263         /* Unpack the tags to extended form and set ECC result.
264          * [set should_be_ff just to keep yaffs_unpack_tags1 happy]
265          */
266         pt1.should_be_ff = 0xFFFFFFFF;
267         yaffs_unpack_tags1(etags, &pt1);
268         etags->ecc_result = eccres;
269
270         /* Set deleted state */
271         etags->is_deleted = deleted;
272         return YAFFS_OK;
273 }
274
275 /* Mark a block bad.
276  *
277  * This is a persistant state.
278  * Use of this function should be rare.
279  *
280  * Returns YAFFS_OK or YAFFS_FAIL.
281  */
282 int nandmtd1_mark_block_bad(struct yaffs_dev_s *dev, int block_no)
283 {
284         struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
285         int blocksize = dev->param.chunks_per_block * dev->data_bytes_per_chunk;
286         int retval;
287
288         T(YAFFS_TRACE_BAD_BLOCKS,(TSTR("marking block %d bad"TENDSTR), block_no));
289
290         retval = mtd->block_markbad(mtd, (loff_t)blocksize * block_no);
291         return (retval) ? YAFFS_FAIL : YAFFS_OK;
292 }
293
294 /* Check any MTD prerequists.
295  *
296  * Returns YAFFS_OK or YAFFS_FAIL.
297  */
298 static int nandmtd1_test_prerequists(struct mtd_info *mtd)
299 {
300         /* 2.6.18 has mtd->ecclayout->oobavail */
301         /* 2.6.21 has mtd->ecclayout->oobavail and mtd->oobavail */
302         int oobavail = mtd->ecclayout->oobavail;
303
304         if (oobavail < YTAG1_SIZE) {
305                 T(YAFFS_TRACE_ERROR,
306                         (TSTR("mtd device has only %d bytes for tags, need %d"TENDSTR),
307                         oobavail, YTAG1_SIZE));
308                 return YAFFS_FAIL;
309         }
310         return YAFFS_OK;
311 }
312
313 /* Query for the current state of a specific block.
314  *
315  * Examine the tags of the first chunk of the block and return the state:
316  *  - YAFFS_BLOCK_STATE_DEAD, the block is marked bad
317  *  - YAFFS_BLOCK_STATE_NEEDS_SCANNING, the block is in use
318  *  - YAFFS_BLOCK_STATE_EMPTY, the block is clean
319  *
320  * Always returns YAFFS_OK.
321  */
322 int nandmtd1_query_block(struct yaffs_dev_s *dev, int block_no,
323         yaffs_block_state_t *state_ptr, __u32 *seq_ptr)
324 {
325         struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
326         int chunk_num = block_no * dev->param.chunks_per_block;
327         loff_t addr = (loff_t)chunk_num * dev->data_bytes_per_chunk;
328         yaffs_ext_tags etags;
329         int state = YAFFS_BLOCK_STATE_DEAD;
330         int seqnum = 0;
331         int retval;
332
333         /* We don't yet have a good place to test for MTD config prerequists.
334          * Do it here as we are called during the initial scan.
335          */
336         if (nandmtd1_test_prerequists(mtd) != YAFFS_OK)
337                 return YAFFS_FAIL;
338
339         retval = nandmtd1_read_chunk_tags(dev, chunk_num, NULL, &etags);
340         etags.block_bad = (mtd->block_isbad)(mtd, addr);
341         if (etags.block_bad) {
342                 T(YAFFS_TRACE_BAD_BLOCKS,
343                         (TSTR("block %d is marked bad"TENDSTR), block_no));
344                 state = YAFFS_BLOCK_STATE_DEAD;
345         } else if (etags.ecc_result != YAFFS_ECC_RESULT_NO_ERROR) {
346                 /* bad tags, need to look more closely */
347                 state = YAFFS_BLOCK_STATE_NEEDS_SCANNING;
348         } else if (etags.chunk_used) {
349                 state = YAFFS_BLOCK_STATE_NEEDS_SCANNING;
350                 seqnum = etags.seq_number;
351         } else {
352                 state = YAFFS_BLOCK_STATE_EMPTY;
353         }
354
355         *state_ptr = state;
356         *seq_ptr = seqnum;
357
358         /* query always succeeds */
359         return YAFFS_OK;
360 }
361
362 #endif /*MTD_VERSION*/