blob: 03e3de3a5d79e1d5420db77f287a23985f488bb9 [file] [log] [blame]
Thomas Gleixnerfd534e92019-05-23 11:14:39 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Thomas Gleixner97894cd2005-11-07 11:15:26 +00002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Direct MTD block device access
4 *
David Woodhousea1452a32010-08-08 20:58:20 +01005 * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org>
6 * Copyright © 2000-2003 Nicolas Pitre <nico@fluxnic.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/fs.h>
10#include <linux/init.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +010011#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/slab.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +010015#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/vmalloc.h>
Thomas Gleixner15fdc522005-11-07 00:14:42 +010017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/mtd/mtd.h>
19#include <linux/mtd/blktrans.h>
Ingo Molnar48b19262006-03-31 02:29:41 -080020#include <linux/mutex.h>
Ezequiel Garciaf83c3832013-10-13 18:05:23 -030021#include <linux/major.h>
Ingo Molnar48b19262006-03-31 02:29:41 -080022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Ben Hutchingscbfe93e2010-01-29 20:58:37 +000024struct mtdblk_dev {
25 struct mtd_blktrans_dev mbd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 int count;
Ingo Molnar48b19262006-03-31 02:29:41 -080027 struct mutex cache_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 unsigned char *cache_data;
29 unsigned long cache_offset;
30 unsigned int cache_size;
31 enum { STATE_EMPTY, STATE_CLEAN, STATE_DIRTY } cache_state;
Ben Hutchingscbfe93e2010-01-29 20:58:37 +000032};
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/*
35 * Cache stuff...
Thomas Gleixner97894cd2005-11-07 11:15:26 +000036 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * Since typical flash erasable sectors are much larger than what Linux's
38 * buffer cache can handle, we must implement read-modify-write on flash
39 * sectors for each block write requests. To avoid over-erasing flash sectors
40 * and to speed things up, we locally cache a whole flash sector while it is
41 * being written to until a different sector is required.
42 */
43
Thomas Gleixner97894cd2005-11-07 11:15:26 +000044static int erase_write (struct mtd_info *mtd, unsigned long pos,
huijin.parkbafae532018-11-28 23:19:51 -050045 unsigned int len, const char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 struct erase_info erase;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 size_t retlen;
49 int ret;
50
51 /*
52 * First, let's erase the flash block.
53 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 erase.addr = pos;
55 erase.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Artem Bityutskiy7e1f0dc2011-12-23 15:25:39 +020057 ret = mtd_erase(mtd, &erase);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 printk (KERN_WARNING "mtdblock: erase of region [0x%lx, 0x%x] "
60 "on \"%s\" failed\n",
61 pos, len, mtd->name);
62 return ret;
63 }
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 /*
Matthias Kaehlckedff15502009-07-06 12:02:08 +020066 * Next, write the data to flash.
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 */
68
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +020069 ret = mtd_write(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 if (ret)
71 return ret;
72 if (retlen != len)
73 return -EIO;
74 return 0;
75}
76
77
78static int write_cached_data (struct mtdblk_dev *mtdblk)
79{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +000080 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 int ret;
82
83 if (mtdblk->cache_state != STATE_DIRTY)
84 return 0;
85
Brian Norris289c0522011-07-19 10:06:09 -070086 pr_debug("mtdblock: writing cached data for \"%s\" "
Thomas Gleixner97894cd2005-11-07 11:15:26 +000087 "at 0x%lx, size 0x%x\n", mtd->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 mtdblk->cache_offset, mtdblk->cache_size);
Thomas Gleixner97894cd2005-11-07 11:15:26 +000089
90 ret = erase_write (mtd, mtdblk->cache_offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 mtdblk->cache_size, mtdblk->cache_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -030094 * Here we could arguably set the cache state to STATE_CLEAN.
Thomas Gleixner97894cd2005-11-07 11:15:26 +000095 * However this could lead to inconsistency since we will not
96 * be notified if this content is altered on the flash by other
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * means. Let's declare it empty and leave buffering tasks to
98 * the buffer cache instead.
Xiaoming Ni5788ccf2020-03-31 09:31:59 +080099 *
100 * If this cache_offset points to a bad block, data cannot be
101 * written to the device. Clear cache_state to avoid writing to
102 * bad blocks repeatedly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 */
Xiaoming Ni5788ccf2020-03-31 09:31:59 +0800104 if (ret == 0 || ret == -EIO)
105 mtdblk->cache_state = STATE_EMPTY;
106 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
109
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000110static int do_cached_write (struct mtdblk_dev *mtdblk, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 int len, const char *buf)
112{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000113 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 unsigned int sect_size = mtdblk->cache_size;
115 size_t retlen;
116 int ret;
117
Brian Norris289c0522011-07-19 10:06:09 -0700118 pr_debug("mtdblock: write on \"%s\" at 0x%lx, size 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 mtd->name, pos, len);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 if (!sect_size)
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +0200122 return mtd_write(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 while (len > 0) {
125 unsigned long sect_start = (pos/sect_size)*sect_size;
126 unsigned int offset = pos - sect_start;
127 unsigned int size = sect_size - offset;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000128 if( size > len )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 size = len;
130
131 if (size == sect_size) {
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000132 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * We are covering a whole sector. Thus there is no
134 * need to bother with the cache while it may still be
135 * useful for other partial writes.
136 */
137 ret = erase_write (mtd, pos, size, buf);
138 if (ret)
139 return ret;
140 } else {
141 /* Partial sector: need to use the cache */
142
143 if (mtdblk->cache_state == STATE_DIRTY &&
144 mtdblk->cache_offset != sect_start) {
145 ret = write_cached_data(mtdblk);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000146 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return ret;
148 }
149
150 if (mtdblk->cache_state == STATE_EMPTY ||
151 mtdblk->cache_offset != sect_start) {
152 /* fill the cache with the current sector */
153 mtdblk->cache_state = STATE_EMPTY;
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200154 ret = mtd_read(mtd, sect_start, sect_size,
155 &retlen, mtdblk->cache_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 if (ret)
157 return ret;
158 if (retlen != sect_size)
159 return -EIO;
160
161 mtdblk->cache_offset = sect_start;
162 mtdblk->cache_size = sect_size;
163 mtdblk->cache_state = STATE_CLEAN;
164 }
165
166 /* write data to our local cache */
167 memcpy (mtdblk->cache_data + offset, buf, size);
168 mtdblk->cache_state = STATE_DIRTY;
169 }
170
171 buf += size;
172 pos += size;
173 len -= size;
174 }
175
176 return 0;
177}
178
179
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000180static int do_cached_read (struct mtdblk_dev *mtdblk, unsigned long pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 int len, char *buf)
182{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000183 struct mtd_info *mtd = mtdblk->mbd.mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 unsigned int sect_size = mtdblk->cache_size;
185 size_t retlen;
186 int ret;
187
Brian Norris289c0522011-07-19 10:06:09 -0700188 pr_debug("mtdblock: read on \"%s\" at 0x%lx, size 0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 mtd->name, pos, len);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (!sect_size)
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200192 return mtd_read(mtd, pos, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 while (len > 0) {
195 unsigned long sect_start = (pos/sect_size)*sect_size;
196 unsigned int offset = pos - sect_start;
197 unsigned int size = sect_size - offset;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000198 if (size > len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 size = len;
200
201 /*
202 * Check if the requested data is already cached
203 * Read the requested amount of data from our internal cache if it
204 * contains what we want, otherwise we read the data directly
205 * from flash.
206 */
207 if (mtdblk->cache_state != STATE_EMPTY &&
208 mtdblk->cache_offset == sect_start) {
209 memcpy (buf, mtdblk->cache_data + offset, size);
210 } else {
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200211 ret = mtd_read(mtd, pos, size, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (ret)
213 return ret;
214 if (retlen != size)
215 return -EIO;
216 }
217
218 buf += size;
219 pos += size;
220 len -= size;
221 }
222
223 return 0;
224}
225
226static int mtdblock_readsect(struct mtd_blktrans_dev *dev,
227 unsigned long block, char *buf)
228{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000229 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return do_cached_read(mtdblk, block<<9, 512, buf);
231}
232
233static int mtdblock_writesect(struct mtd_blktrans_dev *dev,
234 unsigned long block, char *buf)
235{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000236 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (unlikely(!mtdblk->cache_data && mtdblk->cache_size)) {
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000238 mtdblk->cache_data = vmalloc(mtdblk->mbd.mtd->erasesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (!mtdblk->cache_data)
240 return -EINTR;
241 /* -EINTR is not really correct, but it is the best match
242 * documented in man 2 write for all cases. We could also
243 * return -EAGAIN sometimes, but why bother?
244 */
245 }
246 return do_cached_write(mtdblk, block<<9, 512, buf);
247}
248
249static int mtdblock_open(struct mtd_blktrans_dev *mbd)
250{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000251 struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Brian Norris289c0522011-07-19 10:06:09 -0700253 pr_debug("mtdblock_open\n");
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000254
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000255 if (mtdblk->count) {
256 mtdblk->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return 0;
258 }
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 /* OK, it's not open. Create cache info for it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 mtdblk->count = 1;
Ingo Molnar48b19262006-03-31 02:29:41 -0800262 mutex_init(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 mtdblk->cache_state = STATE_EMPTY;
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000264 if (!(mbd->mtd->flags & MTD_NO_ERASE) && mbd->mtd->erasesize) {
265 mtdblk->cache_size = mbd->mtd->erasesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 mtdblk->cache_data = NULL;
267 }
268
Brian Norris289c0522011-07-19 10:06:09 -0700269 pr_debug("ok\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 return 0;
272}
273
Al Viroa8ca8892013-05-05 21:31:22 -0400274static void mtdblock_release(struct mtd_blktrans_dev *mbd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000276 struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Brian Norris289c0522011-07-19 10:06:09 -0700278 pr_debug("mtdblock_release\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Ingo Molnar48b19262006-03-31 02:29:41 -0800280 mutex_lock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 write_cached_data(mtdblk);
Ingo Molnar48b19262006-03-31 02:29:41 -0800282 mutex_unlock(&mtdblk->cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 if (!--mtdblk->count) {
Alexander Stein70d50982012-01-10 13:26:58 +0100285 /*
286 * It was the last usage. Free the cache, but only sync if
287 * opened for writing.
288 */
289 if (mbd->file_mode & FMODE_WRITE)
290 mtd_sync(mbd->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 vfree(mtdblk->cache_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Matthias Kaehlcked676c112009-07-14 22:04:29 +0200293
Brian Norris289c0522011-07-19 10:06:09 -0700294 pr_debug("ok\n");
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000295}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297static int mtdblock_flush(struct mtd_blktrans_dev *dev)
298{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000299 struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
Xiaoming Ni4e4a9a82020-03-20 11:15:11 +0800300 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Ingo Molnar48b19262006-03-31 02:29:41 -0800302 mutex_lock(&mtdblk->cache_mutex);
Xiaoming Ni4e4a9a82020-03-20 11:15:11 +0800303 ret = write_cached_data(mtdblk);
Ingo Molnar48b19262006-03-31 02:29:41 -0800304 mutex_unlock(&mtdblk->cache_mutex);
Artem Bityutskiy327cf292011-12-30 16:35:35 +0200305 mtd_sync(dev->mtd);
Xiaoming Ni4e4a9a82020-03-20 11:15:11 +0800306 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
309static void mtdblock_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd)
310{
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000311 struct mtdblk_dev *dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 if (!dev)
314 return;
315
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000316 dev->mbd.mtd = mtd;
317 dev->mbd.devnum = mtd->index;
Richard Purdie19187672006-10-27 09:09:33 +0100318
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000319 dev->mbd.size = mtd->size >> 9;
320 dev->mbd.tr = tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 if (!(mtd->flags & MTD_WRITEABLE))
Ben Hutchingscbfe93e2010-01-29 20:58:37 +0000323 dev->mbd.readonly = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Ezequiel Garciae07403a2021-08-01 20:45:09 -0300325 if (mtd_type_is_nand(mtd))
326 pr_warn("%s: MTD device '%s' is NAND, please consider using UBI block devices instead.\n",
327 tr->name, mtd->name);
328
Maxim Levitsky298304f2010-02-22 20:39:31 +0200329 if (add_mtd_blktrans_dev(&dev->mbd))
330 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333static void mtdblock_remove_dev(struct mtd_blktrans_dev *dev)
334{
335 del_mtd_blktrans_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
338static struct mtd_blktrans_ops mtdblock_tr = {
339 .name = "mtdblock",
Ezequiel Garcia2aabeb22013-10-08 20:59:08 -0300340 .major = MTD_BLOCK_MAJOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 .part_bits = 0,
Richard Purdie19187672006-10-27 09:09:33 +0100342 .blksize = 512,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 .open = mtdblock_open,
344 .flush = mtdblock_flush,
345 .release = mtdblock_release,
346 .readsect = mtdblock_readsect,
347 .writesect = mtdblock_writesect,
348 .add_mtd = mtdblock_add_mtd,
349 .remove_dev = mtdblock_remove_dev,
350 .owner = THIS_MODULE,
351};
352
Dejin Zheng27b08bf2021-02-14 00:45:56 +0800353module_mtd_blktrans(mtdblock_tr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355MODULE_LICENSE("GPL");
Nicolas Pitre2f82af02009-09-14 03:25:28 -0400356MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net> et al.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357MODULE_DESCRIPTION("Caching read/erase/writeback block device emulation access to MTD devices");