yaffs Handle ENOSPC properly during object creation
[yaffs2.git] / yaffs_mtdif2_multi.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
19 #include "yaffs_mtdif2.h"
20
21 #include "linux/mtd/mtd.h"
22 #include "linux/types.h"
23 #include "linux/time.h"
24
25 #include "yaffs_packedtags2.h"
26
27 #include "yaffs_linux.h"
28
29 /* NB For use with inband tags....
30  * We assume that the data buffer is of size total_bytes_per_chunk so
31  * that we can also use it to load the tags.
32  */
33 int nandmtd2_write_chunk_tags(struct yaffs_dev *dev, int nand_chunk,
34                               const u8 *data,
35                               const struct yaffs_ext_tags *tags)
36 {
37         struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
38 #if (MTD_VERSION_CODE > MTD_VERSION(2, 6, 17))
39         struct mtd_oob_ops ops;
40 #else
41         size_t dummy;
42 #endif
43         int retval = 0;
44
45         loff_t addr;
46
47         struct yaffs_packed_tags2 pt;
48
49         int packed_tags_size =
50             dev->param.no_tags_ecc ? sizeof(pt.t) : sizeof(pt);
51         void *packed_tags_ptr =
52             dev->param.no_tags_ecc ? (void *)&pt.t : (void *)&pt;
53
54         yaffs_trace(YAFFS_TRACE_MTD,
55                 "nandmtd2_write_chunk_tags chunk %d data %p tags %p",
56                 nand_chunk, data, tags);
57
58         addr = ((loff_t) nand_chunk) * dev->param.total_bytes_per_chunk;
59
60         /* For yaffs2 writing there must be both data and tags.
61          * If we're using inband tags, then the tags are stuffed into
62          * the end of the data buffer.
63          */
64         if (!data || !tags)
65                 BUG();
66         else if (dev->param.inband_tags) {
67                 struct yaffs_packed_tags2_tags_only *pt2tp;
68                 pt2tp =
69                     (struct yaffs_packed_tags2_tags_only *)(data +
70                                                         dev->
71                                                         data_bytes_per_chunk);
72                 yaffs_pack_tags2_tags_only(pt2tp, tags);
73         } else {
74                 yaffs_pack_tags2(&pt, tags, !dev->param.no_tags_ecc);
75         }
76
77 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
78         ops.mode = MTD_OOB_AUTO;
79         ops.ooblen = (dev->param.inband_tags) ? 0 : packed_tags_size;
80         ops.len = dev->param.total_bytes_per_chunk;
81         ops.ooboffs = 0;
82         ops.datbuf = (u8 *) data;
83         ops.oobbuf = (dev->param.inband_tags) ? NULL : packed_tags_ptr;
84         retval = mtd->write_oob(mtd, addr, &ops);
85
86 #else
87         if (!dev->param.inband_tags) {
88                 retval =
89                     mtd->write_ecc(mtd, addr, dev->data_bytes_per_chunk,
90                                    &dummy, data, (u8 *) packed_tags_ptr, NULL);
91         } else {
92                 retval =
93                     mtd->write(mtd, addr, dev->param.total_bytes_per_chunk,
94                                &dummy, data);
95         }
96 #endif
97
98         if (retval == 0)
99                 return YAFFS_OK;
100         else
101                 return YAFFS_FAIL;
102 }
103
104 int nandmtd2_read_chunk_tags(struct yaffs_dev *dev, int nand_chunk,
105                              u8 *data, struct yaffs_ext_tags *tags)
106 {
107         struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
108 #if (MTD_VERSION_CODE > MTD_VERSION(2, 6, 17))
109         struct mtd_oob_ops ops;
110 #endif
111         size_t dummy;
112         int retval = 0;
113         int local_data = 0;
114
115         loff_t addr = ((loff_t) nand_chunk) * dev->param.total_bytes_per_chunk;
116
117         struct yaffs_packed_tags2 pt;
118
119         int packed_tags_size =
120             dev->param.no_tags_ecc ? sizeof(pt.t) : sizeof(pt);
121         void *packed_tags_ptr =
122             dev->param.no_tags_ecc ? (void *)&pt.t : (void *)&pt;
123
124         yaffs_trace(YAFFS_TRACE_MTD,
125                 "nandmtd2_read_chunk_tags chunk %d data %p tags %p",
126                 nand_chunk, data, tags);
127
128         if (dev->param.inband_tags) {
129
130                 if (!data) {
131                         local_data = 1;
132                         data = yaffs_get_temp_buffer(dev, __LINE__);
133                 }
134
135         }
136
137 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
138         if (dev->param.inband_tags || (data && !tags))
139                 retval = mtd->read(mtd, addr, dev->param.total_bytes_per_chunk,
140                                    &dummy, data);
141         else if (tags) {
142                 ops.mode = MTD_OOB_AUTO;
143                 ops.ooblen = packed_tags_size;
144                 ops.len = data ? dev->data_bytes_per_chunk : packed_tags_size;
145                 ops.ooboffs = 0;
146                 ops.datbuf = data;
147                 ops.oobbuf = yaffs_dev_to_lc(dev)->spare_buffer;
148                 retval = mtd->read_oob(mtd, addr, &ops);
149         }
150 #else
151         if (!dev->param.inband_tags && data && tags) {
152
153                 retval = mtd->read_ecc(mtd, addr, dev->data_bytes_per_chunk,
154                                        &dummy, data, dev->spare_buffer, NULL);
155         } else {
156                 if (data)
157                         retval =
158                             mtd->read(mtd, addr, dev->data_bytes_per_chunk,
159                                       &dummy, data);
160                 if (!dev->param.inband_tags && tags)
161                         retval =
162                             mtd->read_oob(mtd, addr, mtd->oobsize, &dummy,
163                                           dev->spare_buffer);
164         }
165 #endif
166
167         if (dev->param.inband_tags) {
168                 if (tags) {
169                         struct yaffs_packed_tags2_tags_only *pt2tp;
170                         pt2tp =
171                                 (struct yaffs_packed_tags2_tags_only *)
172                                 &data[dev->data_bytes_per_chunk];
173                         yaffs_unpack_tags2_tags_only(tags, pt2tp);
174                 }
175         } else {
176                 if (tags) {
177                         memcpy(packed_tags_ptr,
178                                yaffs_dev_to_lc(dev)->spare_buffer,
179                                packed_tags_size);
180                         yaffs_unpack_tags2(tags, &pt, !dev->param.no_tags_ecc);
181                 }
182         }
183
184         if (local_data)
185                 yaffs_release_temp_buffer(dev, data, __LINE__);
186
187         if (tags && retval == -EBADMSG
188             && tags->ecc_result == YAFFS_ECC_RESULT_NO_ERROR) {
189                 tags->ecc_result = YAFFS_ECC_RESULT_UNFIXED;
190                 dev->n_ecc_unfixed++;
191         }
192         if (tags && retval == -EUCLEAN
193             && tags->ecc_result == YAFFS_ECC_RESULT_NO_ERROR) {
194                 tags->ecc_result = YAFFS_ECC_RESULT_FIXED;
195                 dev->n_ecc_fixed++;
196         }
197         if (retval == 0)
198                 return YAFFS_OK;
199         else
200                 return YAFFS_FAIL;
201 }
202
203 int nandmtd2_mark_block_bad(struct yaffs_dev *dev, int block_no)
204 {
205         struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
206         int retval;
207         yaffs_trace(YAFFS_TRACE_MTD,
208                 "nandmtd2_mark_block_bad %d",
209                 block_no);
210
211         retval =
212             mtd->block_markbad(mtd,
213                                block_no * dev->param.chunks_per_block *
214                                dev->param.total_bytes_per_chunk);
215
216         if (retval == 0)
217                 return YAFFS_OK;
218         else
219                 return YAFFS_FAIL;
220
221 }
222
223 int nandmtd2_query_block(struct yaffs_dev *dev, int block_no,
224                          enum yaffs_block_state *state, u32 *seq_number)
225 {
226         struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
227         int retval;
228
229         yaffs_trace(YAFFS_TRACE_MTD, "nandmtd2_query_block %d", block_no);
230         retval =
231             mtd->block_isbad(mtd,
232                              block_no * dev->param.chunks_per_block *
233                              dev->param.total_bytes_per_chunk);
234
235         if (retval) {
236                 yaffs_trace(YAFFS_TRACE_MTD, "block is bad");
237
238                 *state = YAFFS_BLOCK_STATE_DEAD;
239                 *seq_number = 0;
240         } else {
241                 struct yaffs_ext_tags t;
242                 nandmtd2_read_chunk_tags(dev, block_no *
243                                          dev->param.chunks_per_block, NULL, &t);
244
245                 if (t.chunk_used) {
246                         *seq_number = t.seq_number;
247                         *state = YAFFS_BLOCK_STATE_NEEDS_SCAN;
248                 } else {
249                         *seq_number = 0;
250                         *state = YAFFS_BLOCK_STATE_EMPTY;
251                 }
252         }
253         yaffs_trace(YAFFS_TRACE_MTD,
254                 "block is bad seq %d state %d",
255                 *seq_number, *state);
256
257         if (retval == 0)
258                 return YAFFS_OK;
259         else
260                 return YAFFS_FAIL;
261 }
262