yaffs direct: Prevent yaffs_start_up being called twice.
[yaffs2.git] / yaffs_mtdif2_single.c
1 /*
2  * YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2011 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 /* mtd interface for YAFFS2 */
15
16 #include "yportenv.h"
17 #include "yaffs_trace.h"
18 #include "yaffs_mtdif2.h"
19 #include "yaffs_packedtags2.h"
20 #include "yaffs_linux.h"
21 #include "linux/mtd/mtd.h"
22 #include "linux/types.h"
23 #include "linux/time.h"
24
25
26 /* NB For use with inband tags....
27  * We assume that the data buffer is of size total_bytes_per_chunk so that
28  * we can also use it to load the tags.
29  */
30 int nandmtd2_write_chunk_tags(struct yaffs_dev *dev, int nand_chunk,
31                               const u8 *data,
32                               const struct yaffs_ext_tags *tags)
33 {
34         struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
35         struct mtd_oob_ops ops;
36         int retval = 0;
37         loff_t addr;
38         struct yaffs_packed_tags2 pt;
39         int packed_tags_size =
40             dev->param.no_tags_ecc ? sizeof(pt.t) : sizeof(pt);
41         void *packed_tags_ptr =
42             dev->param.no_tags_ecc ? (void *)&pt.t : (void *)&pt;
43
44         yaffs_trace(YAFFS_TRACE_MTD,
45                 "nandmtd2_write_chunk_tags chunk %d data %p tags %p",
46                 nand_chunk, data, tags);
47
48         addr = ((loff_t) nand_chunk) * dev->param.total_bytes_per_chunk;
49
50         /* For yaffs2 writing there must be both data and tags.
51          * If we're using inband tags, then the tags are stuffed into
52          * the end of the data buffer.
53          */
54         if (!data || !tags)
55                 BUG();
56         else if (dev->param.inband_tags) {
57                 struct yaffs_packed_tags2_tags_only *pt2tp;
58
59                 pt2tp =
60                     (struct yaffs_packed_tags2_tags_only *)
61                         (data + dev->data_bytes_per_chunk);
62                 yaffs_pack_tags2_tags_only(pt2tp, tags);
63         } else {
64                 yaffs_pack_tags2(&pt, tags, !dev->param.no_tags_ecc);
65         }
66
67         ops.mode = MTD_OOB_AUTO;
68         ops.ooblen = (dev->param.inband_tags) ? 0 : packed_tags_size;
69         ops.len = dev->param.total_bytes_per_chunk;
70         ops.ooboffs = 0;
71         ops.datbuf = (u8 *) data;
72         ops.oobbuf = (dev->param.inband_tags) ? NULL : packed_tags_ptr;
73         retval = mtd->write_oob(mtd, addr, &ops);
74
75         if (retval == 0)
76                 return YAFFS_OK;
77
78         return YAFFS_FAIL;
79 }
80
81 int nandmtd2_read_chunk_tags(struct yaffs_dev *dev, int nand_chunk,
82                              u8 *data, struct yaffs_ext_tags *tags)
83 {
84         struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
85         struct mtd_oob_ops ops;
86         size_t dummy;
87         int retval = 0;
88         int local_data = 0;
89         loff_t addr = ((loff_t) nand_chunk) * dev->param.total_bytes_per_chunk;
90         struct yaffs_packed_tags2 pt;
91         int packed_tags_size =
92             dev->param.no_tags_ecc ? sizeof(pt.t) : sizeof(pt);
93         void *packed_tags_ptr =
94             dev->param.no_tags_ecc ? (void *)&pt.t : (void *)&pt;
95
96         yaffs_trace(YAFFS_TRACE_MTD,
97                 "nandmtd2_read_chunk_tags chunk %d data %p tags %p",
98                 nand_chunk, data, tags);
99
100         if (dev->param.inband_tags && !data) {
101                 local_data = 1;
102                 data = yaffs_get_temp_buffer(dev);
103         }
104
105         if (dev->param.inband_tags || (data && !tags)) {
106                 retval = mtd->read(mtd, addr, dev->param.total_bytes_per_chunk,
107                                    &dummy, data);
108         } else if (tags) {
109                 ops.mode = MTD_OOB_AUTO;
110                 ops.ooblen = packed_tags_size;
111                 ops.len = data ? dev->data_bytes_per_chunk : packed_tags_size;
112                 ops.ooboffs = 0;
113                 ops.datbuf = data;
114                 ops.oobbuf = yaffs_dev_to_lc(dev)->spare_buffer;
115                 retval = mtd->read_oob(mtd, addr, &ops);
116         }
117
118         if (dev->param.inband_tags && tags) {
119                 struct yaffs_packed_tags2_tags_only *pt2tp;
120
121                 pt2tp =
122                         (struct yaffs_packed_tags2_tags_only *)
123                                 &data[dev->data_bytes_per_chunk];
124                 yaffs_unpack_tags2_tags_only(tags, pt2tp);
125         } else if (tags) {
126                 memcpy(packed_tags_ptr,
127                        yaffs_dev_to_lc(dev)->spare_buffer,
128                        packed_tags_size);
129                 yaffs_unpack_tags2(tags, &pt, !dev->param.no_tags_ecc);
130         }
131
132         if (local_data)
133                 yaffs_release_temp_buffer(dev, data);
134
135         if (tags && retval == -EBADMSG &&
136             tags->ecc_result == YAFFS_ECC_RESULT_NO_ERROR) {
137                 tags->ecc_result = YAFFS_ECC_RESULT_UNFIXED;
138                 dev->n_ecc_unfixed++;
139         }
140         if (tags && retval == -EUCLEAN &&
141             tags->ecc_result == YAFFS_ECC_RESULT_NO_ERROR) {
142                 tags->ecc_result = YAFFS_ECC_RESULT_FIXED;
143                 dev->n_ecc_fixed++;
144         }
145
146         if (retval == 0)
147                 return YAFFS_OK;
148
149         return YAFFS_FAIL;
150 }
151
152 int nandmtd2_mark_block_bad(struct yaffs_dev *dev, int block_no)
153 {
154         struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
155         int retval;
156
157         yaffs_trace(YAFFS_TRACE_MTD,
158                 "nandmtd2_mark_block_bad %d", block_no);
159
160         retval =
161             mtd->block_markbad(mtd,
162                                block_no * dev->param.chunks_per_block *
163                                dev->param.total_bytes_per_chunk);
164
165         if (retval == 0)
166                 return YAFFS_OK;
167
168         return YAFFS_FAIL;
169 }
170
171 int nandmtd2_query_block(struct yaffs_dev *dev, int block_no,
172                          enum yaffs_block_state *state, u32 * seq_number)
173 {
174         struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
175         int retval;
176
177         yaffs_trace(YAFFS_TRACE_MTD, "nandmtd2_query_block %d", block_no);
178         retval =
179             mtd->block_isbad(mtd,
180                              block_no * dev->param.chunks_per_block *
181                              dev->param.total_bytes_per_chunk);
182
183         if (retval) {
184                 yaffs_trace(YAFFS_TRACE_MTD, "block is bad");
185
186                 *state = YAFFS_BLOCK_STATE_DEAD;
187                 *seq_number = 0;
188         } else {
189                 struct yaffs_ext_tags t;
190
191                 nandmtd2_read_chunk_tags(dev, block_no *
192                                          dev->param.chunks_per_block, NULL, &t);
193
194                 if (t.chunk_used) {
195                         *seq_number = t.seq_number;
196                         *state = YAFFS_BLOCK_STATE_NEEDS_SCAN;
197                 } else {
198                         *seq_number = 0;
199                         *state = YAFFS_BLOCK_STATE_EMPTY;
200                 }
201         }
202         yaffs_trace(YAFFS_TRACE_MTD,
203                 "block is bad seq %d state %d", *seq_number, *state);
204
205         if (retval == 0)
206                 return YAFFS_OK;
207
208         return YAFFS_FAIL;
209 }