blob: 81a4d964f3e92777ebba6fb2f9213ec74e51f34f [file] [log] [blame]
William Juul0e8cc8b2007-11-15 11:13:05 +01001/*
2 * YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
3 *
4 * Copyright (C) 2002-2007 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
William Juul90ef1172007-11-15 12:23:57 +010016/* XXX U-BOOT XXX */
17#include <common.h>
Simon Glasseb41d8a2020-05-10 11:40:08 -060018#include <linux/bug.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090019#include <linux/errno.h>
William Juul90ef1172007-11-15 12:23:57 +010020
William Juul0e8cc8b2007-11-15 11:13:05 +010021#include "yportenv.h"
Charles Manning753ac612012-05-09 16:55:17 +000022#include "yaffs_trace.h"
William Juul0e8cc8b2007-11-15 11:13:05 +010023
24#include "yaffs_mtdif2.h"
25
Masahiro Yamadab5bf5cb2016-09-21 11:28:53 +090026#include <linux/mtd/mtd.h>
27#include <linux/types.h>
28#include <linux/time.h>
William Juul0e8cc8b2007-11-15 11:13:05 +010029
Charles Manning753ac612012-05-09 16:55:17 +000030#include "yaffs_trace.h"
William Juul0e8cc8b2007-11-15 11:13:05 +010031#include "yaffs_packedtags2.h"
32
Charles Manning753ac612012-05-09 16:55:17 +000033#define yaffs_dev_to_mtd(dev) ((struct mtd_info *)((dev)->driver_context))
34#define yaffs_dev_to_lc(dev) ((struct yaffs_linux_context *)((dev)->os_context))
35
36
37/* NB For use with inband tags....
38 * We assume that the data buffer is of size total_bytes_per_chunk so
39 * that we can also use it to load the tags.
40 */
41int nandmtd2_write_chunk_tags(struct yaffs_dev *dev, int nand_chunk,
42 const u8 *data,
43 const struct yaffs_ext_tags *tags)
William Juul0e8cc8b2007-11-15 11:13:05 +010044{
Charles Manning753ac612012-05-09 16:55:17 +000045 struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
William Juul0e8cc8b2007-11-15 11:13:05 +010046 struct mtd_oob_ops ops;
Charles Manning753ac612012-05-09 16:55:17 +000047
William Juul0e8cc8b2007-11-15 11:13:05 +010048 int retval = 0;
Charles Manning753ac612012-05-09 16:55:17 +000049 loff_t addr;
William Juul0e8cc8b2007-11-15 11:13:05 +010050
Charles Manning753ac612012-05-09 16:55:17 +000051 struct yaffs_packed_tags2 pt;
William Juul0e8cc8b2007-11-15 11:13:05 +010052
Charles Manning753ac612012-05-09 16:55:17 +000053 int packed_tags_size =
54 dev->param.no_tags_ecc ? sizeof(pt.t) : sizeof(pt);
55 void *packed_tags_ptr =
56 dev->param.no_tags_ecc ? (void *)&pt.t : (void *)&pt;
William Juul0e8cc8b2007-11-15 11:13:05 +010057
Charles Manning753ac612012-05-09 16:55:17 +000058 yaffs_trace(YAFFS_TRACE_MTD,
59 "nandmtd2_write_chunk_tags chunk %d data %p tags %p",
60 nand_chunk, data, tags);
William Juul0e8cc8b2007-11-15 11:13:05 +010061
Charles Manning753ac612012-05-09 16:55:17 +000062 addr = ((loff_t) nand_chunk) * dev->param.total_bytes_per_chunk;
William Juul0e8cc8b2007-11-15 11:13:05 +010063
Charles Manning753ac612012-05-09 16:55:17 +000064 /* For yaffs2 writing there must be both data and tags.
65 * If we're using inband tags, then the tags are stuffed into
66 * the end of the data buffer.
67 */
68 if (!data || !tags)
69 BUG();
70 else if (dev->param.inband_tags) {
71 struct yaffs_packed_tags2_tags_only *pt2tp;
72 pt2tp =
73 (struct yaffs_packed_tags2_tags_only *)(data +
74 dev->
75 data_bytes_per_chunk);
76 yaffs_pack_tags2_tags_only(pt2tp, tags);
William Juul0e8cc8b2007-11-15 11:13:05 +010077 } else {
Charles Manning753ac612012-05-09 16:55:17 +000078 yaffs_pack_tags2(&pt, tags, !dev->param.no_tags_ecc);
William Juul0e8cc8b2007-11-15 11:13:05 +010079 }
Charles Manning753ac612012-05-09 16:55:17 +000080
Sergey Lapindfe64e22013-01-14 03:46:50 +000081 ops.mode = MTD_OPS_AUTO_OOB;
Charles Manning753ac612012-05-09 16:55:17 +000082 ops.ooblen = (dev->param.inband_tags) ? 0 : packed_tags_size;
83 ops.len = dev->param.total_bytes_per_chunk;
84 ops.ooboffs = 0;
85 ops.datbuf = (u8 *) data;
86 ops.oobbuf = (dev->param.inband_tags) ? NULL : packed_tags_ptr;
Sergey Lapindfe64e22013-01-14 03:46:50 +000087 retval = mtd_write_oob(mtd, addr, &ops);
William Juul0e8cc8b2007-11-15 11:13:05 +010088
89 if (retval == 0)
90 return YAFFS_OK;
91 else
92 return YAFFS_FAIL;
93}
94
Charles Manning753ac612012-05-09 16:55:17 +000095int nandmtd2_read_chunk_tags(struct yaffs_dev *dev, int nand_chunk,
96 u8 *data, struct yaffs_ext_tags *tags)
William Juul0e8cc8b2007-11-15 11:13:05 +010097{
Charles Manning753ac612012-05-09 16:55:17 +000098 struct mtd_info *mtd = yaffs_dev_to_mtd(dev);
99 u8 local_spare[128];
William Juul0e8cc8b2007-11-15 11:13:05 +0100100 struct mtd_oob_ops ops;
William Juul0e8cc8b2007-11-15 11:13:05 +0100101 size_t dummy;
102 int retval = 0;
Charles Manning753ac612012-05-09 16:55:17 +0000103 int local_data = 0;
104 struct yaffs_packed_tags2 pt;
105 loff_t addr = ((loff_t) nand_chunk) * dev->param.total_bytes_per_chunk;
106 int packed_tags_size =
107 dev->param.no_tags_ecc ? sizeof(pt.t) : sizeof(pt);
108 void *packed_tags_ptr =
109 dev->param.no_tags_ecc ? (void *)&pt.t : (void *)&pt;
William Juul0e8cc8b2007-11-15 11:13:05 +0100110
Charles Manning753ac612012-05-09 16:55:17 +0000111 yaffs_trace(YAFFS_TRACE_MTD,
112 "nandmtd2_read_chunk_tags chunk %d data %p tags %p",
113 nand_chunk, data, tags);
William Juul0e8cc8b2007-11-15 11:13:05 +0100114
Charles Manning753ac612012-05-09 16:55:17 +0000115 if (dev->param.inband_tags) {
William Juul0e8cc8b2007-11-15 11:13:05 +0100116
Charles Manning753ac612012-05-09 16:55:17 +0000117 if (!data) {
118 local_data = 1;
119 data = yaffs_get_temp_buffer(dev);
120 }
William Juul0e8cc8b2007-11-15 11:13:05 +0100121
Charles Manning753ac612012-05-09 16:55:17 +0000122 }
123
124 if (dev->param.inband_tags || (data && !tags))
Sergey Lapindfe64e22013-01-14 03:46:50 +0000125 retval = mtd_read(mtd, addr, dev->param.total_bytes_per_chunk,
Charles Manning753ac612012-05-09 16:55:17 +0000126 &dummy, data);
William Juul0e8cc8b2007-11-15 11:13:05 +0100127 else if (tags) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000128 ops.mode = MTD_OPS_AUTO_OOB;
Charles Manning753ac612012-05-09 16:55:17 +0000129 ops.ooblen = packed_tags_size;
130 ops.len = data ? dev->data_bytes_per_chunk : packed_tags_size;
William Juul0e8cc8b2007-11-15 11:13:05 +0100131 ops.ooboffs = 0;
132 ops.datbuf = data;
Charles Manning753ac612012-05-09 16:55:17 +0000133 ops.oobbuf = local_spare;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000134 retval = mtd_read_oob(mtd, addr, &ops);
William Juul0e8cc8b2007-11-15 11:13:05 +0100135 }
Charles Manning753ac612012-05-09 16:55:17 +0000136
137 if (dev->param.inband_tags) {
138 if (tags) {
139 struct yaffs_packed_tags2_tags_only *pt2tp;
140 pt2tp =
141 (struct yaffs_packed_tags2_tags_only *)
142 &data[dev->data_bytes_per_chunk];
143 yaffs_unpack_tags2_tags_only(tags, pt2tp);
William Juul0e8cc8b2007-11-15 11:13:05 +0100144 }
145 } else {
Charles Manning753ac612012-05-09 16:55:17 +0000146 if (tags) {
147 memcpy(packed_tags_ptr,
148 local_spare,
149 packed_tags_size);
150 yaffs_unpack_tags2(tags, &pt, !dev->param.no_tags_ecc);
151 }
William Juul0e8cc8b2007-11-15 11:13:05 +0100152 }
William Juul0e8cc8b2007-11-15 11:13:05 +0100153
Charles Manning753ac612012-05-09 16:55:17 +0000154 if (local_data)
155 yaffs_release_temp_buffer(dev, data);
William Juul0e8cc8b2007-11-15 11:13:05 +0100156
Charles Manning753ac612012-05-09 16:55:17 +0000157 if (tags && retval == -EBADMSG
158 && tags->ecc_result == YAFFS_ECC_RESULT_NO_ERROR) {
159 tags->ecc_result = YAFFS_ECC_RESULT_UNFIXED;
160 dev->n_ecc_unfixed++;
161 }
162 if (tags && retval == -EUCLEAN
163 && tags->ecc_result == YAFFS_ECC_RESULT_NO_ERROR) {
164 tags->ecc_result = YAFFS_ECC_RESULT_FIXED;
165 dev->n_ecc_fixed++;
166 }
William Juul0e8cc8b2007-11-15 11:13:05 +0100167 if (retval == 0)
168 return YAFFS_OK;
169 else
170 return YAFFS_FAIL;
171}
172
Charles Manning753ac612012-05-09 16:55:17 +0000173
174int nandmtd2_MarkNANDBlockBad(struct yaffs_dev *dev, int blockNo)
William Juul0e8cc8b2007-11-15 11:13:05 +0100175{
Charles Manning753ac612012-05-09 16:55:17 +0000176 struct mtd_info *mtd = (struct mtd_info *)(dev->driver_context);
William Juul0e8cc8b2007-11-15 11:13:05 +0100177 int retval;
Charles Manning753ac612012-05-09 16:55:17 +0000178
179 yaffs_trace(YAFFS_TRACE_MTD,
180 "nandmtd2_MarkNANDBlockBad %d", blockNo);
William Juul0e8cc8b2007-11-15 11:13:05 +0100181
182 retval =
Sergey Lapindfe64e22013-01-14 03:46:50 +0000183 mtd_block_markbad(mtd,
Charles Manning753ac612012-05-09 16:55:17 +0000184 blockNo * dev->param.chunks_per_block *
185 dev->data_bytes_per_chunk);
William Juul0e8cc8b2007-11-15 11:13:05 +0100186
187 if (retval == 0)
188 return YAFFS_OK;
189 else
190 return YAFFS_FAIL;
191
192}
193
Charles Manning753ac612012-05-09 16:55:17 +0000194int nandmtd2_QueryNANDBlock(struct yaffs_dev *dev, int blockNo,
195 enum yaffs_block_state *state, u32 *sequenceNumber)
William Juul0e8cc8b2007-11-15 11:13:05 +0100196{
Charles Manning753ac612012-05-09 16:55:17 +0000197 struct mtd_info *mtd = (struct mtd_info *)(dev->driver_context);
William Juul0e8cc8b2007-11-15 11:13:05 +0100198 int retval;
199
Charles Manning753ac612012-05-09 16:55:17 +0000200 yaffs_trace(YAFFS_TRACE_MTD, "nandmtd2_QueryNANDBlock %d", blockNo);
William Juul0e8cc8b2007-11-15 11:13:05 +0100201 retval =
Sergey Lapindfe64e22013-01-14 03:46:50 +0000202 mtd_block_isbad(mtd,
Charles Manning753ac612012-05-09 16:55:17 +0000203 blockNo * dev->param.chunks_per_block *
204 dev->data_bytes_per_chunk);
William Juul0e8cc8b2007-11-15 11:13:05 +0100205
206 if (retval) {
Charles Manning753ac612012-05-09 16:55:17 +0000207 yaffs_trace(YAFFS_TRACE_MTD, "block is bad");
William Juul0e8cc8b2007-11-15 11:13:05 +0100208
209 *state = YAFFS_BLOCK_STATE_DEAD;
210 *sequenceNumber = 0;
211 } else {
Charles Manning753ac612012-05-09 16:55:17 +0000212 struct yaffs_ext_tags t;
213 nandmtd2_read_chunk_tags(dev,
214 blockNo *
215 dev->param.chunks_per_block, NULL,
216 &t);
William Juul0e8cc8b2007-11-15 11:13:05 +0100217
Charles Manning753ac612012-05-09 16:55:17 +0000218 if (t.chunk_used) {
219 *sequenceNumber = t.seq_number;
220 *state = YAFFS_BLOCK_STATE_NEEDS_SCAN;
William Juul0e8cc8b2007-11-15 11:13:05 +0100221 } else {
222 *sequenceNumber = 0;
223 *state = YAFFS_BLOCK_STATE_EMPTY;
224 }
225 }
Charles Manning753ac612012-05-09 16:55:17 +0000226 yaffs_trace(YAFFS_TRACE_MTD, "block is bad seq %d state %d",
227 *sequenceNumber, *state);
William Juul0e8cc8b2007-11-15 11:13:05 +0100228
229 if (retval == 0)
230 return YAFFS_OK;
231 else
232 return YAFFS_FAIL;
233}