Thomas Gleixner | fd534e9 | 2019-05-23 11:14:39 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Core registration and callback routines for MTD |
| 4 | * drivers and users. |
| 5 | * |
David Woodhouse | a1452a3 | 2010-08-08 20:58:20 +0100 | [diff] [blame] | 6 | * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org> |
| 7 | * Copyright © 2006 Red Hat UK Limited |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/module.h> |
| 11 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/ptrace.h> |
Alexey Dobriyan | 447d9bd | 2011-05-13 23:34:19 +0300 | [diff] [blame] | 13 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/string.h> |
| 15 | #include <linux/timer.h> |
| 16 | #include <linux/major.h> |
| 17 | #include <linux/fs.h> |
Artem Bityutskiy | 7799308 | 2006-10-11 14:52:44 +0300 | [diff] [blame] | 18 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/ioctl.h> |
| 20 | #include <linux/init.h> |
Brian Norris | 215a02f | 2015-11-11 16:26:04 -0800 | [diff] [blame] | 21 | #include <linux/of.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/proc_fs.h> |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 23 | #include <linux/idr.h> |
Jörn Engel | a33eb6b | 2010-04-27 09:40:52 +0200 | [diff] [blame] | 24 | #include <linux/backing-dev.h> |
Tejun Heo | 05d71b46 | 2010-03-30 02:52:39 +0900 | [diff] [blame] | 25 | #include <linux/gfp.h> |
David Howells | 0d01ff2 | 2013-04-11 23:51:01 +0100 | [diff] [blame] | 26 | #include <linux/slab.h> |
Brian Norris | 3efe41b | 2014-11-26 01:01:08 -0800 | [diff] [blame] | 27 | #include <linux/reboot.h> |
Ezequiel Garcia | fea728c | 2016-04-12 17:46:42 -0300 | [diff] [blame] | 28 | #include <linux/leds.h> |
Mario Rugiero | e8e3edb | 2017-05-29 08:38:41 -0300 | [diff] [blame] | 29 | #include <linux/debugfs.h> |
Alban Bedel | c4dfa25 | 2018-11-13 15:01:10 +0100 | [diff] [blame] | 30 | #include <linux/nvmem-provider.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | #include <linux/mtd/mtd.h> |
Jamie Iles | f5671ab | 2011-05-23 17:15:46 +0100 | [diff] [blame] | 33 | #include <linux/mtd/partitions.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Ben Dooks | 356d70f | 2007-05-28 20:28:34 +0100 | [diff] [blame] | 35 | #include "mtdcore.h" |
Artem Bityutskiy | 660685d | 2013-03-14 13:27:40 +0200 | [diff] [blame] | 36 | |
Jan Kara | fa06052 | 2017-04-12 12:24:37 +0200 | [diff] [blame] | 37 | struct backing_dev_info *mtd_bdi; |
Ben Dooks | 356d70f | 2007-05-28 20:28:34 +0100 | [diff] [blame] | 38 | |
Lars-Peter Clausen | 57b8045d | 2015-04-06 12:00:39 +0200 | [diff] [blame] | 39 | #ifdef CONFIG_PM_SLEEP |
| 40 | |
| 41 | static int mtd_cls_suspend(struct device *dev) |
| 42 | { |
| 43 | struct mtd_info *mtd = dev_get_drvdata(dev); |
| 44 | |
| 45 | return mtd ? mtd_suspend(mtd) : 0; |
| 46 | } |
| 47 | |
| 48 | static int mtd_cls_resume(struct device *dev) |
| 49 | { |
| 50 | struct mtd_info *mtd = dev_get_drvdata(dev); |
| 51 | |
| 52 | if (mtd) |
| 53 | mtd_resume(mtd); |
| 54 | return 0; |
| 55 | } |
| 56 | |
| 57 | static SIMPLE_DEV_PM_OPS(mtd_cls_pm_ops, mtd_cls_suspend, mtd_cls_resume); |
| 58 | #define MTD_CLS_PM_OPS (&mtd_cls_pm_ops) |
| 59 | #else |
| 60 | #define MTD_CLS_PM_OPS NULL |
| 61 | #endif |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 62 | |
David Woodhouse | 15bce40 | 2009-04-05 07:40:58 -0700 | [diff] [blame] | 63 | static struct class mtd_class = { |
| 64 | .name = "mtd", |
| 65 | .owner = THIS_MODULE, |
Lars-Peter Clausen | 57b8045d | 2015-04-06 12:00:39 +0200 | [diff] [blame] | 66 | .pm = MTD_CLS_PM_OPS, |
David Woodhouse | 15bce40 | 2009-04-05 07:40:58 -0700 | [diff] [blame] | 67 | }; |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 68 | |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 69 | static DEFINE_IDR(mtd_idr); |
| 70 | |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 71 | /* These are exported solely for the purpose of mtd_blkdevs.c. You |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | should not use them for _anything_ else */ |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 73 | DEFINE_MUTEX(mtd_table_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | EXPORT_SYMBOL_GPL(mtd_table_mutex); |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 75 | |
| 76 | struct mtd_info *__mtd_next_device(int i) |
| 77 | { |
| 78 | return idr_get_next(&mtd_idr, &i); |
| 79 | } |
| 80 | EXPORT_SYMBOL_GPL(__mtd_next_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
| 82 | static LIST_HEAD(mtd_notifiers); |
| 83 | |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 84 | |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 85 | #define MTD_DEVT(index) MKDEV(MTD_CHAR_MAJOR, (index)*2) |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 86 | |
| 87 | /* REVISIT once MTD uses the driver model better, whoever allocates |
| 88 | * the mtd_info will probably want to use the release() hook... |
| 89 | */ |
| 90 | static void mtd_release(struct device *dev) |
| 91 | { |
Brian Norris | 5e47212 | 2014-07-21 19:06:47 -0700 | [diff] [blame] | 92 | struct mtd_info *mtd = dev_get_drvdata(dev); |
Artem Bityutskiy | d5de20a | 2011-12-29 18:00:29 +0200 | [diff] [blame] | 93 | dev_t index = MTD_DEVT(mtd->index); |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 94 | |
Brian Norris | 5e47212 | 2014-07-21 19:06:47 -0700 | [diff] [blame] | 95 | /* remove /dev/mtdXro node */ |
| 96 | device_destroy(&mtd_class, index + 1); |
David Woodhouse | 15bce40 | 2009-04-05 07:40:58 -0700 | [diff] [blame] | 97 | } |
| 98 | |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 99 | static ssize_t mtd_type_show(struct device *dev, |
| 100 | struct device_attribute *attr, char *buf) |
| 101 | { |
Artem Bityutskiy | d5de20a | 2011-12-29 18:00:29 +0200 | [diff] [blame] | 102 | struct mtd_info *mtd = dev_get_drvdata(dev); |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 103 | char *type; |
| 104 | |
| 105 | switch (mtd->type) { |
| 106 | case MTD_ABSENT: |
| 107 | type = "absent"; |
| 108 | break; |
| 109 | case MTD_RAM: |
| 110 | type = "ram"; |
| 111 | break; |
| 112 | case MTD_ROM: |
| 113 | type = "rom"; |
| 114 | break; |
| 115 | case MTD_NORFLASH: |
| 116 | type = "nor"; |
| 117 | break; |
| 118 | case MTD_NANDFLASH: |
| 119 | type = "nand"; |
| 120 | break; |
| 121 | case MTD_DATAFLASH: |
| 122 | type = "dataflash"; |
| 123 | break; |
| 124 | case MTD_UBIVOLUME: |
| 125 | type = "ubi"; |
| 126 | break; |
Huang Shijie | f483724 | 2013-09-25 14:58:19 +0800 | [diff] [blame] | 127 | case MTD_MLCNANDFLASH: |
| 128 | type = "mlc-nand"; |
| 129 | break; |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 130 | default: |
| 131 | type = "unknown"; |
| 132 | } |
| 133 | |
| 134 | return snprintf(buf, PAGE_SIZE, "%s\n", type); |
| 135 | } |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 136 | static DEVICE_ATTR(type, S_IRUGO, mtd_type_show, NULL); |
| 137 | |
| 138 | static ssize_t mtd_flags_show(struct device *dev, |
| 139 | struct device_attribute *attr, char *buf) |
| 140 | { |
Artem Bityutskiy | d5de20a | 2011-12-29 18:00:29 +0200 | [diff] [blame] | 141 | struct mtd_info *mtd = dev_get_drvdata(dev); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 142 | |
| 143 | return snprintf(buf, PAGE_SIZE, "0x%lx\n", (unsigned long)mtd->flags); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 144 | } |
| 145 | static DEVICE_ATTR(flags, S_IRUGO, mtd_flags_show, NULL); |
| 146 | |
| 147 | static ssize_t mtd_size_show(struct device *dev, |
| 148 | struct device_attribute *attr, char *buf) |
| 149 | { |
Artem Bityutskiy | d5de20a | 2011-12-29 18:00:29 +0200 | [diff] [blame] | 150 | struct mtd_info *mtd = dev_get_drvdata(dev); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 151 | |
| 152 | return snprintf(buf, PAGE_SIZE, "%llu\n", |
| 153 | (unsigned long long)mtd->size); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 154 | } |
| 155 | static DEVICE_ATTR(size, S_IRUGO, mtd_size_show, NULL); |
| 156 | |
| 157 | static ssize_t mtd_erasesize_show(struct device *dev, |
| 158 | struct device_attribute *attr, char *buf) |
| 159 | { |
Artem Bityutskiy | d5de20a | 2011-12-29 18:00:29 +0200 | [diff] [blame] | 160 | struct mtd_info *mtd = dev_get_drvdata(dev); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 161 | |
| 162 | return snprintf(buf, PAGE_SIZE, "%lu\n", (unsigned long)mtd->erasesize); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 163 | } |
| 164 | static DEVICE_ATTR(erasesize, S_IRUGO, mtd_erasesize_show, NULL); |
| 165 | |
| 166 | static ssize_t mtd_writesize_show(struct device *dev, |
| 167 | struct device_attribute *attr, char *buf) |
| 168 | { |
Artem Bityutskiy | d5de20a | 2011-12-29 18:00:29 +0200 | [diff] [blame] | 169 | struct mtd_info *mtd = dev_get_drvdata(dev); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 170 | |
| 171 | return snprintf(buf, PAGE_SIZE, "%lu\n", (unsigned long)mtd->writesize); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 172 | } |
| 173 | static DEVICE_ATTR(writesize, S_IRUGO, mtd_writesize_show, NULL); |
| 174 | |
Artem Bityutskiy | e769354 | 2009-04-18 12:29:42 +0300 | [diff] [blame] | 175 | static ssize_t mtd_subpagesize_show(struct device *dev, |
| 176 | struct device_attribute *attr, char *buf) |
| 177 | { |
Artem Bityutskiy | d5de20a | 2011-12-29 18:00:29 +0200 | [diff] [blame] | 178 | struct mtd_info *mtd = dev_get_drvdata(dev); |
Artem Bityutskiy | e769354 | 2009-04-18 12:29:42 +0300 | [diff] [blame] | 179 | unsigned int subpagesize = mtd->writesize >> mtd->subpage_sft; |
| 180 | |
| 181 | return snprintf(buf, PAGE_SIZE, "%u\n", subpagesize); |
Artem Bityutskiy | e769354 | 2009-04-18 12:29:42 +0300 | [diff] [blame] | 182 | } |
| 183 | static DEVICE_ATTR(subpagesize, S_IRUGO, mtd_subpagesize_show, NULL); |
| 184 | |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 185 | static ssize_t mtd_oobsize_show(struct device *dev, |
| 186 | struct device_attribute *attr, char *buf) |
| 187 | { |
Artem Bityutskiy | d5de20a | 2011-12-29 18:00:29 +0200 | [diff] [blame] | 188 | struct mtd_info *mtd = dev_get_drvdata(dev); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 189 | |
| 190 | return snprintf(buf, PAGE_SIZE, "%lu\n", (unsigned long)mtd->oobsize); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 191 | } |
| 192 | static DEVICE_ATTR(oobsize, S_IRUGO, mtd_oobsize_show, NULL); |
| 193 | |
Xiaolei Li | 7cc9aa6 | 2018-04-02 16:20:10 +0800 | [diff] [blame] | 194 | static ssize_t mtd_oobavail_show(struct device *dev, |
| 195 | struct device_attribute *attr, char *buf) |
| 196 | { |
| 197 | struct mtd_info *mtd = dev_get_drvdata(dev); |
| 198 | |
| 199 | return snprintf(buf, PAGE_SIZE, "%u\n", mtd->oobavail); |
| 200 | } |
| 201 | static DEVICE_ATTR(oobavail, S_IRUGO, mtd_oobavail_show, NULL); |
| 202 | |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 203 | static ssize_t mtd_numeraseregions_show(struct device *dev, |
| 204 | struct device_attribute *attr, char *buf) |
| 205 | { |
Artem Bityutskiy | d5de20a | 2011-12-29 18:00:29 +0200 | [diff] [blame] | 206 | struct mtd_info *mtd = dev_get_drvdata(dev); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 207 | |
| 208 | return snprintf(buf, PAGE_SIZE, "%u\n", mtd->numeraseregions); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 209 | } |
| 210 | static DEVICE_ATTR(numeraseregions, S_IRUGO, mtd_numeraseregions_show, |
| 211 | NULL); |
| 212 | |
| 213 | static ssize_t mtd_name_show(struct device *dev, |
| 214 | struct device_attribute *attr, char *buf) |
| 215 | { |
Artem Bityutskiy | d5de20a | 2011-12-29 18:00:29 +0200 | [diff] [blame] | 216 | struct mtd_info *mtd = dev_get_drvdata(dev); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 217 | |
| 218 | return snprintf(buf, PAGE_SIZE, "%s\n", mtd->name); |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 219 | } |
| 220 | static DEVICE_ATTR(name, S_IRUGO, mtd_name_show, NULL); |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 221 | |
Mike Dunn | a9b672e | 2012-04-25 12:06:07 -0700 | [diff] [blame] | 222 | static ssize_t mtd_ecc_strength_show(struct device *dev, |
| 223 | struct device_attribute *attr, char *buf) |
| 224 | { |
| 225 | struct mtd_info *mtd = dev_get_drvdata(dev); |
| 226 | |
| 227 | return snprintf(buf, PAGE_SIZE, "%u\n", mtd->ecc_strength); |
| 228 | } |
| 229 | static DEVICE_ATTR(ecc_strength, S_IRUGO, mtd_ecc_strength_show, NULL); |
| 230 | |
Mike Dunn | d062d4e | 2012-04-25 12:06:08 -0700 | [diff] [blame] | 231 | static ssize_t mtd_bitflip_threshold_show(struct device *dev, |
| 232 | struct device_attribute *attr, |
| 233 | char *buf) |
| 234 | { |
| 235 | struct mtd_info *mtd = dev_get_drvdata(dev); |
| 236 | |
| 237 | return snprintf(buf, PAGE_SIZE, "%u\n", mtd->bitflip_threshold); |
| 238 | } |
| 239 | |
| 240 | static ssize_t mtd_bitflip_threshold_store(struct device *dev, |
| 241 | struct device_attribute *attr, |
| 242 | const char *buf, size_t count) |
| 243 | { |
| 244 | struct mtd_info *mtd = dev_get_drvdata(dev); |
| 245 | unsigned int bitflip_threshold; |
| 246 | int retval; |
| 247 | |
| 248 | retval = kstrtouint(buf, 0, &bitflip_threshold); |
| 249 | if (retval) |
| 250 | return retval; |
| 251 | |
| 252 | mtd->bitflip_threshold = bitflip_threshold; |
| 253 | return count; |
| 254 | } |
| 255 | static DEVICE_ATTR(bitflip_threshold, S_IRUGO | S_IWUSR, |
| 256 | mtd_bitflip_threshold_show, |
| 257 | mtd_bitflip_threshold_store); |
| 258 | |
Huang Shijie | bf977e3 | 2013-08-16 10:10:05 +0800 | [diff] [blame] | 259 | static ssize_t mtd_ecc_step_size_show(struct device *dev, |
| 260 | struct device_attribute *attr, char *buf) |
| 261 | { |
| 262 | struct mtd_info *mtd = dev_get_drvdata(dev); |
| 263 | |
| 264 | return snprintf(buf, PAGE_SIZE, "%u\n", mtd->ecc_step_size); |
| 265 | |
| 266 | } |
| 267 | static DEVICE_ATTR(ecc_step_size, S_IRUGO, mtd_ecc_step_size_show, NULL); |
| 268 | |
Ezequiel Garcia | 990a3af | 2014-06-24 10:55:50 -0300 | [diff] [blame] | 269 | static ssize_t mtd_ecc_stats_corrected_show(struct device *dev, |
| 270 | struct device_attribute *attr, char *buf) |
| 271 | { |
| 272 | struct mtd_info *mtd = dev_get_drvdata(dev); |
| 273 | struct mtd_ecc_stats *ecc_stats = &mtd->ecc_stats; |
| 274 | |
| 275 | return snprintf(buf, PAGE_SIZE, "%u\n", ecc_stats->corrected); |
| 276 | } |
| 277 | static DEVICE_ATTR(corrected_bits, S_IRUGO, |
| 278 | mtd_ecc_stats_corrected_show, NULL); |
| 279 | |
| 280 | static ssize_t mtd_ecc_stats_errors_show(struct device *dev, |
| 281 | struct device_attribute *attr, char *buf) |
| 282 | { |
| 283 | struct mtd_info *mtd = dev_get_drvdata(dev); |
| 284 | struct mtd_ecc_stats *ecc_stats = &mtd->ecc_stats; |
| 285 | |
| 286 | return snprintf(buf, PAGE_SIZE, "%u\n", ecc_stats->failed); |
| 287 | } |
| 288 | static DEVICE_ATTR(ecc_failures, S_IRUGO, mtd_ecc_stats_errors_show, NULL); |
| 289 | |
| 290 | static ssize_t mtd_badblocks_show(struct device *dev, |
| 291 | struct device_attribute *attr, char *buf) |
| 292 | { |
| 293 | struct mtd_info *mtd = dev_get_drvdata(dev); |
| 294 | struct mtd_ecc_stats *ecc_stats = &mtd->ecc_stats; |
| 295 | |
| 296 | return snprintf(buf, PAGE_SIZE, "%u\n", ecc_stats->badblocks); |
| 297 | } |
| 298 | static DEVICE_ATTR(bad_blocks, S_IRUGO, mtd_badblocks_show, NULL); |
| 299 | |
| 300 | static ssize_t mtd_bbtblocks_show(struct device *dev, |
| 301 | struct device_attribute *attr, char *buf) |
| 302 | { |
| 303 | struct mtd_info *mtd = dev_get_drvdata(dev); |
| 304 | struct mtd_ecc_stats *ecc_stats = &mtd->ecc_stats; |
| 305 | |
| 306 | return snprintf(buf, PAGE_SIZE, "%u\n", ecc_stats->bbtblocks); |
| 307 | } |
| 308 | static DEVICE_ATTR(bbt_blocks, S_IRUGO, mtd_bbtblocks_show, NULL); |
| 309 | |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 310 | static struct attribute *mtd_attrs[] = { |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 311 | &dev_attr_type.attr, |
| 312 | &dev_attr_flags.attr, |
| 313 | &dev_attr_size.attr, |
| 314 | &dev_attr_erasesize.attr, |
| 315 | &dev_attr_writesize.attr, |
Artem Bityutskiy | e769354 | 2009-04-18 12:29:42 +0300 | [diff] [blame] | 316 | &dev_attr_subpagesize.attr, |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 317 | &dev_attr_oobsize.attr, |
Xiaolei Li | 7cc9aa6 | 2018-04-02 16:20:10 +0800 | [diff] [blame] | 318 | &dev_attr_oobavail.attr, |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 319 | &dev_attr_numeraseregions.attr, |
| 320 | &dev_attr_name.attr, |
Mike Dunn | a9b672e | 2012-04-25 12:06:07 -0700 | [diff] [blame] | 321 | &dev_attr_ecc_strength.attr, |
Huang Shijie | bf977e3 | 2013-08-16 10:10:05 +0800 | [diff] [blame] | 322 | &dev_attr_ecc_step_size.attr, |
Ezequiel Garcia | 990a3af | 2014-06-24 10:55:50 -0300 | [diff] [blame] | 323 | &dev_attr_corrected_bits.attr, |
| 324 | &dev_attr_ecc_failures.attr, |
| 325 | &dev_attr_bad_blocks.attr, |
| 326 | &dev_attr_bbt_blocks.attr, |
Mike Dunn | d062d4e | 2012-04-25 12:06:08 -0700 | [diff] [blame] | 327 | &dev_attr_bitflip_threshold.attr, |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 328 | NULL, |
| 329 | }; |
Axel Lin | 54c738f | 2013-12-02 10:12:25 +0800 | [diff] [blame] | 330 | ATTRIBUTE_GROUPS(mtd); |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 331 | |
Bhumika Goyal | 75864b3 | 2017-08-19 13:52:17 +0530 | [diff] [blame] | 332 | static const struct device_type mtd_devtype = { |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 333 | .name = "mtd", |
| 334 | .groups = mtd_groups, |
| 335 | .release = mtd_release, |
| 336 | }; |
| 337 | |
Yongqiang Liu | 5610d1f | 2020-07-16 17:02:20 +0800 | [diff] [blame] | 338 | static int mtd_partid_debug_show(struct seq_file *s, void *p) |
Zhuohao Lee | 1018c94 | 2019-07-01 00:07:10 +0800 | [diff] [blame] | 339 | { |
| 340 | struct mtd_info *mtd = s->private; |
| 341 | |
| 342 | seq_printf(s, "%s\n", mtd->dbg.partid); |
| 343 | |
| 344 | return 0; |
| 345 | } |
| 346 | |
Yongqiang Liu | 5610d1f | 2020-07-16 17:02:20 +0800 | [diff] [blame] | 347 | DEFINE_SHOW_ATTRIBUTE(mtd_partid_debug); |
Zhuohao Lee | 1018c94 | 2019-07-01 00:07:10 +0800 | [diff] [blame] | 348 | |
Yongqiang Liu | 5610d1f | 2020-07-16 17:02:20 +0800 | [diff] [blame] | 349 | static int mtd_partname_debug_show(struct seq_file *s, void *p) |
Zhuohao Lee | 1018c94 | 2019-07-01 00:07:10 +0800 | [diff] [blame] | 350 | { |
| 351 | struct mtd_info *mtd = s->private; |
| 352 | |
| 353 | seq_printf(s, "%s\n", mtd->dbg.partname); |
| 354 | |
| 355 | return 0; |
| 356 | } |
| 357 | |
Yongqiang Liu | 5610d1f | 2020-07-16 17:02:20 +0800 | [diff] [blame] | 358 | DEFINE_SHOW_ATTRIBUTE(mtd_partname_debug); |
Zhuohao Lee | 1018c94 | 2019-07-01 00:07:10 +0800 | [diff] [blame] | 359 | |
| 360 | static struct dentry *dfs_dir_mtd; |
| 361 | |
| 362 | static void mtd_debugfs_populate(struct mtd_info *mtd) |
| 363 | { |
| 364 | struct device *dev = &mtd->dev; |
Greg Kroah-Hartman | c2d73ba | 2019-11-07 09:51:11 +0100 | [diff] [blame] | 365 | struct dentry *root; |
Zhuohao Lee | 1018c94 | 2019-07-01 00:07:10 +0800 | [diff] [blame] | 366 | |
| 367 | if (IS_ERR_OR_NULL(dfs_dir_mtd)) |
| 368 | return; |
| 369 | |
| 370 | root = debugfs_create_dir(dev_name(dev), dfs_dir_mtd); |
Zhuohao Lee | 1018c94 | 2019-07-01 00:07:10 +0800 | [diff] [blame] | 371 | mtd->dbg.dfs_dir = root; |
| 372 | |
Greg Kroah-Hartman | c2d73ba | 2019-11-07 09:51:11 +0100 | [diff] [blame] | 373 | if (mtd->dbg.partid) |
| 374 | debugfs_create_file("partid", 0400, root, mtd, |
| 375 | &mtd_partid_debug_fops); |
Zhuohao Lee | 1018c94 | 2019-07-01 00:07:10 +0800 | [diff] [blame] | 376 | |
Greg Kroah-Hartman | c2d73ba | 2019-11-07 09:51:11 +0100 | [diff] [blame] | 377 | if (mtd->dbg.partname) |
| 378 | debugfs_create_file("partname", 0400, root, mtd, |
| 379 | &mtd_partname_debug_fops); |
Zhuohao Lee | 1018c94 | 2019-07-01 00:07:10 +0800 | [diff] [blame] | 380 | } |
| 381 | |
Christoph Hellwig | b4caecd | 2015-01-14 10:42:32 +0100 | [diff] [blame] | 382 | #ifndef CONFIG_MMU |
| 383 | unsigned mtd_mmap_capabilities(struct mtd_info *mtd) |
| 384 | { |
| 385 | switch (mtd->type) { |
| 386 | case MTD_RAM: |
| 387 | return NOMMU_MAP_COPY | NOMMU_MAP_DIRECT | NOMMU_MAP_EXEC | |
| 388 | NOMMU_MAP_READ | NOMMU_MAP_WRITE; |
| 389 | case MTD_ROM: |
| 390 | return NOMMU_MAP_COPY | NOMMU_MAP_DIRECT | NOMMU_MAP_EXEC | |
| 391 | NOMMU_MAP_READ; |
| 392 | default: |
| 393 | return NOMMU_MAP_COPY; |
| 394 | } |
| 395 | } |
Arnd Bergmann | 706a4e5 | 2015-01-28 11:09:20 -0700 | [diff] [blame] | 396 | EXPORT_SYMBOL_GPL(mtd_mmap_capabilities); |
Christoph Hellwig | b4caecd | 2015-01-14 10:42:32 +0100 | [diff] [blame] | 397 | #endif |
| 398 | |
Brian Norris | 3efe41b | 2014-11-26 01:01:08 -0800 | [diff] [blame] | 399 | static int mtd_reboot_notifier(struct notifier_block *n, unsigned long state, |
| 400 | void *cmd) |
| 401 | { |
| 402 | struct mtd_info *mtd; |
| 403 | |
| 404 | mtd = container_of(n, struct mtd_info, reboot_notifier); |
| 405 | mtd->_reboot(mtd); |
| 406 | |
| 407 | return NOTIFY_DONE; |
| 408 | } |
| 409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | /** |
Boris Brezillon | 477b022 | 2015-11-16 15:53:13 +0100 | [diff] [blame] | 411 | * mtd_wunit_to_pairing_info - get pairing information of a wunit |
| 412 | * @mtd: pointer to new MTD device info structure |
| 413 | * @wunit: write unit we are interested in |
| 414 | * @info: returned pairing information |
| 415 | * |
| 416 | * Retrieve pairing information associated to the wunit. |
| 417 | * This is mainly useful when dealing with MLC/TLC NANDs where pages can be |
| 418 | * paired together, and where programming a page may influence the page it is |
| 419 | * paired with. |
| 420 | * The notion of page is replaced by the term wunit (write-unit) to stay |
| 421 | * consistent with the ->writesize field. |
| 422 | * |
| 423 | * The @wunit argument can be extracted from an absolute offset using |
| 424 | * mtd_offset_to_wunit(). @info is filled with the pairing information attached |
| 425 | * to @wunit. |
| 426 | * |
| 427 | * From the pairing info the MTD user can find all the wunits paired with |
| 428 | * @wunit using the following loop: |
| 429 | * |
| 430 | * for (i = 0; i < mtd_pairing_groups(mtd); i++) { |
| 431 | * info.pair = i; |
| 432 | * mtd_pairing_info_to_wunit(mtd, &info); |
| 433 | * ... |
| 434 | * } |
| 435 | */ |
| 436 | int mtd_wunit_to_pairing_info(struct mtd_info *mtd, int wunit, |
| 437 | struct mtd_pairing_info *info) |
| 438 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 439 | struct mtd_info *master = mtd_get_master(mtd); |
| 440 | int npairs = mtd_wunit_per_eb(master) / mtd_pairing_groups(master); |
Boris Brezillon | 477b022 | 2015-11-16 15:53:13 +0100 | [diff] [blame] | 441 | |
| 442 | if (wunit < 0 || wunit >= npairs) |
| 443 | return -EINVAL; |
| 444 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 445 | if (master->pairing && master->pairing->get_info) |
| 446 | return master->pairing->get_info(master, wunit, info); |
Boris Brezillon | 477b022 | 2015-11-16 15:53:13 +0100 | [diff] [blame] | 447 | |
| 448 | info->group = 0; |
| 449 | info->pair = wunit; |
| 450 | |
| 451 | return 0; |
| 452 | } |
| 453 | EXPORT_SYMBOL_GPL(mtd_wunit_to_pairing_info); |
| 454 | |
| 455 | /** |
Xiaolei Li | c77a931 | 2018-03-29 09:34:58 +0800 | [diff] [blame] | 456 | * mtd_pairing_info_to_wunit - get wunit from pairing information |
Boris Brezillon | 477b022 | 2015-11-16 15:53:13 +0100 | [diff] [blame] | 457 | * @mtd: pointer to new MTD device info structure |
| 458 | * @info: pairing information struct |
| 459 | * |
| 460 | * Returns a positive number representing the wunit associated to the info |
| 461 | * struct, or a negative error code. |
| 462 | * |
| 463 | * This is the reverse of mtd_wunit_to_pairing_info(), and can help one to |
| 464 | * iterate over all wunits of a given pair (see mtd_wunit_to_pairing_info() |
| 465 | * doc). |
| 466 | * |
| 467 | * It can also be used to only program the first page of each pair (i.e. |
| 468 | * page attached to group 0), which allows one to use an MLC NAND in |
| 469 | * software-emulated SLC mode: |
| 470 | * |
| 471 | * info.group = 0; |
| 472 | * npairs = mtd_wunit_per_eb(mtd) / mtd_pairing_groups(mtd); |
| 473 | * for (info.pair = 0; info.pair < npairs; info.pair++) { |
| 474 | * wunit = mtd_pairing_info_to_wunit(mtd, &info); |
| 475 | * mtd_write(mtd, mtd_wunit_to_offset(mtd, blkoffs, wunit), |
| 476 | * mtd->writesize, &retlen, buf + (i * mtd->writesize)); |
| 477 | * } |
| 478 | */ |
| 479 | int mtd_pairing_info_to_wunit(struct mtd_info *mtd, |
| 480 | const struct mtd_pairing_info *info) |
| 481 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 482 | struct mtd_info *master = mtd_get_master(mtd); |
| 483 | int ngroups = mtd_pairing_groups(master); |
| 484 | int npairs = mtd_wunit_per_eb(master) / ngroups; |
Boris Brezillon | 477b022 | 2015-11-16 15:53:13 +0100 | [diff] [blame] | 485 | |
| 486 | if (!info || info->pair < 0 || info->pair >= npairs || |
| 487 | info->group < 0 || info->group >= ngroups) |
| 488 | return -EINVAL; |
| 489 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 490 | if (master->pairing && master->pairing->get_wunit) |
| 491 | return mtd->pairing->get_wunit(master, info); |
Boris Brezillon | 477b022 | 2015-11-16 15:53:13 +0100 | [diff] [blame] | 492 | |
| 493 | return info->pair; |
| 494 | } |
| 495 | EXPORT_SYMBOL_GPL(mtd_pairing_info_to_wunit); |
| 496 | |
| 497 | /** |
| 498 | * mtd_pairing_groups - get the number of pairing groups |
| 499 | * @mtd: pointer to new MTD device info structure |
| 500 | * |
| 501 | * Returns the number of pairing groups. |
| 502 | * |
| 503 | * This number is usually equal to the number of bits exposed by a single |
| 504 | * cell, and can be used in conjunction with mtd_pairing_info_to_wunit() |
| 505 | * to iterate over all pages of a given pair. |
| 506 | */ |
| 507 | int mtd_pairing_groups(struct mtd_info *mtd) |
| 508 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 509 | struct mtd_info *master = mtd_get_master(mtd); |
| 510 | |
| 511 | if (!master->pairing || !master->pairing->ngroups) |
Boris Brezillon | 477b022 | 2015-11-16 15:53:13 +0100 | [diff] [blame] | 512 | return 1; |
| 513 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 514 | return master->pairing->ngroups; |
Boris Brezillon | 477b022 | 2015-11-16 15:53:13 +0100 | [diff] [blame] | 515 | } |
| 516 | EXPORT_SYMBOL_GPL(mtd_pairing_groups); |
| 517 | |
Alban Bedel | c4dfa25 | 2018-11-13 15:01:10 +0100 | [diff] [blame] | 518 | static int mtd_nvmem_reg_read(void *priv, unsigned int offset, |
| 519 | void *val, size_t bytes) |
| 520 | { |
| 521 | struct mtd_info *mtd = priv; |
| 522 | size_t retlen; |
| 523 | int err; |
| 524 | |
| 525 | err = mtd_read(mtd, offset, bytes, &retlen, val); |
| 526 | if (err && err != -EUCLEAN) |
| 527 | return err; |
| 528 | |
| 529 | return retlen == bytes ? 0 : -EIO; |
| 530 | } |
| 531 | |
| 532 | static int mtd_nvmem_add(struct mtd_info *mtd) |
| 533 | { |
| 534 | struct nvmem_config config = {}; |
| 535 | |
Aneesh Kumar K.V | 6e95268 | 2019-02-11 19:03:37 +0530 | [diff] [blame] | 536 | config.id = -1; |
Alban Bedel | c4dfa25 | 2018-11-13 15:01:10 +0100 | [diff] [blame] | 537 | config.dev = &mtd->dev; |
Ricardo Ribalda Delgado | 7b01b72 | 2020-04-30 15:17:21 +0200 | [diff] [blame] | 538 | config.name = dev_name(&mtd->dev); |
Alban Bedel | c4dfa25 | 2018-11-13 15:01:10 +0100 | [diff] [blame] | 539 | config.owner = THIS_MODULE; |
| 540 | config.reg_read = mtd_nvmem_reg_read; |
| 541 | config.size = mtd->size; |
| 542 | config.word_size = 1; |
| 543 | config.stride = 1; |
| 544 | config.read_only = true; |
| 545 | config.root_only = true; |
| 546 | config.no_of_node = true; |
| 547 | config.priv = mtd; |
| 548 | |
| 549 | mtd->nvmem = nvmem_register(&config); |
| 550 | if (IS_ERR(mtd->nvmem)) { |
| 551 | /* Just ignore if there is no NVMEM support in the kernel */ |
Boris Brezillon | 19e16fb | 2019-01-02 15:36:53 +0100 | [diff] [blame] | 552 | if (PTR_ERR(mtd->nvmem) == -EOPNOTSUPP) { |
Alban Bedel | c4dfa25 | 2018-11-13 15:01:10 +0100 | [diff] [blame] | 553 | mtd->nvmem = NULL; |
| 554 | } else { |
| 555 | dev_err(&mtd->dev, "Failed to register NVMEM device\n"); |
| 556 | return PTR_ERR(mtd->nvmem); |
| 557 | } |
| 558 | } |
| 559 | |
| 560 | return 0; |
| 561 | } |
| 562 | |
Boris Brezillon | 477b022 | 2015-11-16 15:53:13 +0100 | [diff] [blame] | 563 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | * add_mtd_device - register an MTD device |
| 565 | * @mtd: pointer to new MTD device info structure |
| 566 | * |
| 567 | * Add a device to the list of MTD devices present in the system, and |
| 568 | * notify each currently active MTD 'user' of its arrival. Returns |
Brian Norris | 57dd990 | 2015-06-01 16:17:18 -0700 | [diff] [blame] | 569 | * zero on success or non-zero on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | */ |
| 571 | |
| 572 | int add_mtd_device(struct mtd_info *mtd) |
| 573 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 574 | struct mtd_info *master = mtd_get_master(mtd); |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 575 | struct mtd_notifier *not; |
| 576 | int i, error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
Brian Norris | be0dbff | 2015-06-01 16:17:20 -0700 | [diff] [blame] | 578 | /* |
| 579 | * May occur, for instance, on buggy drivers which call |
| 580 | * mtd_device_parse_register() multiple times on the same master MTD, |
| 581 | * especially with CONFIG_MTD_PARTITIONED_MASTER=y. |
| 582 | */ |
Jan Kara | fa06052 | 2017-04-12 12:24:37 +0200 | [diff] [blame] | 583 | if (WARN_ONCE(mtd->dev.type, "MTD already registered\n")) |
Brian Norris | be0dbff | 2015-06-01 16:17:20 -0700 | [diff] [blame] | 584 | return -EEXIST; |
| 585 | |
Artem B. Bityutskiy | 783ed81 | 2006-06-14 19:53:44 +0400 | [diff] [blame] | 586 | BUG_ON(mtd->writesize == 0); |
Boris Brezillon | 33f45c4 | 2017-12-15 13:39:51 +0100 | [diff] [blame] | 587 | |
Boris Brezillon | 2431c4f | 2018-12-20 15:13:20 +0100 | [diff] [blame] | 588 | /* |
| 589 | * MTD drivers should implement ->_{write,read}() or |
| 590 | * ->_{write,read}_oob(), but not both. |
| 591 | */ |
| 592 | if (WARN_ON((mtd->_write && mtd->_write_oob) || |
| 593 | (mtd->_read && mtd->_read_oob))) |
| 594 | return -EINVAL; |
| 595 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 596 | if (WARN_ON((!mtd->erasesize || !master->_erase) && |
Boris Brezillon | 33f45c4 | 2017-12-15 13:39:51 +0100 | [diff] [blame] | 597 | !(mtd->flags & MTD_NO_ERASE))) |
| 598 | return -EINVAL; |
| 599 | |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 600 | /* |
| 601 | * MTD_SLC_ON_MLC_EMULATION can only be set on partitions, when the |
| 602 | * master is an MLC NAND and has a proper pairing scheme defined. |
| 603 | * We also reject masters that implement ->_writev() for now, because |
| 604 | * NAND controller drivers don't implement this hook, and adding the |
| 605 | * SLC -> MLC address/length conversion to this path is useless if we |
| 606 | * don't have a user. |
| 607 | */ |
| 608 | if (mtd->flags & MTD_SLC_ON_MLC_EMULATION && |
| 609 | (!mtd_is_partition(mtd) || master->type != MTD_MLCNANDFLASH || |
| 610 | !master->pairing || master->_writev)) |
| 611 | return -EINVAL; |
| 612 | |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 613 | mutex_lock(&mtd_table_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
Tejun Heo | 589e9c4 | 2013-02-27 17:04:33 -0800 | [diff] [blame] | 615 | i = idr_alloc(&mtd_idr, mtd, 0, 0, GFP_KERNEL); |
Brian Norris | 57dd990 | 2015-06-01 16:17:18 -0700 | [diff] [blame] | 616 | if (i < 0) { |
| 617 | error = i; |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 618 | goto fail_locked; |
Brian Norris | 57dd990 | 2015-06-01 16:17:18 -0700 | [diff] [blame] | 619 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 621 | mtd->index = i; |
| 622 | mtd->usecount = 0; |
Adrian Hunter | 69423d9 | 2008-12-10 13:37:21 +0000 | [diff] [blame] | 623 | |
Mike Dunn | d062d4e | 2012-04-25 12:06:08 -0700 | [diff] [blame] | 624 | /* default value if not set by driver */ |
| 625 | if (mtd->bitflip_threshold == 0) |
| 626 | mtd->bitflip_threshold = mtd->ecc_strength; |
| 627 | |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 628 | if (mtd->flags & MTD_SLC_ON_MLC_EMULATION) { |
| 629 | int ngroups = mtd_pairing_groups(master); |
| 630 | |
| 631 | mtd->erasesize /= ngroups; |
| 632 | mtd->size = (u64)mtd_div_by_eb(mtd->size, master) * |
| 633 | mtd->erasesize; |
| 634 | } |
| 635 | |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 636 | if (is_power_of_2(mtd->erasesize)) |
| 637 | mtd->erasesize_shift = ffs(mtd->erasesize) - 1; |
| 638 | else |
| 639 | mtd->erasesize_shift = 0; |
Adrian Hunter | 69423d9 | 2008-12-10 13:37:21 +0000 | [diff] [blame] | 640 | |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 641 | if (is_power_of_2(mtd->writesize)) |
| 642 | mtd->writesize_shift = ffs(mtd->writesize) - 1; |
| 643 | else |
| 644 | mtd->writesize_shift = 0; |
Adrian Hunter | 69423d9 | 2008-12-10 13:37:21 +0000 | [diff] [blame] | 645 | |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 646 | mtd->erasesize_mask = (1 << mtd->erasesize_shift) - 1; |
| 647 | mtd->writesize_mask = (1 << mtd->writesize_shift) - 1; |
Håvard Skinnemoen | 187ef15 | 2006-09-22 10:07:08 +0100 | [diff] [blame] | 648 | |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 649 | /* Some chips always power up locked. Unlock them now */ |
Artem Bityutskiy | 3813456 | 2011-12-30 17:00:35 +0200 | [diff] [blame] | 650 | if ((mtd->flags & MTD_WRITEABLE) && (mtd->flags & MTD_POWERUP_LOCK)) { |
| 651 | error = mtd_unlock(mtd, 0, mtd->size); |
| 652 | if (error && error != -EOPNOTSUPP) |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 653 | printk(KERN_WARNING |
| 654 | "%s: unlock failed, writes may not work\n", |
| 655 | mtd->name); |
Brian Norris | 57dd990 | 2015-06-01 16:17:18 -0700 | [diff] [blame] | 656 | /* Ignore unlock failures? */ |
| 657 | error = 0; |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 658 | } |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 659 | |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 660 | /* Caller should have set dev.parent to match the |
Frans Klaver | 260e89a | 2015-06-10 22:38:15 +0200 | [diff] [blame] | 661 | * physical device, if appropriate. |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 662 | */ |
| 663 | mtd->dev.type = &mtd_devtype; |
| 664 | mtd->dev.class = &mtd_class; |
| 665 | mtd->dev.devt = MTD_DEVT(i); |
| 666 | dev_set_name(&mtd->dev, "mtd%d", i); |
| 667 | dev_set_drvdata(&mtd->dev, mtd); |
Brian Norris | 215a02f | 2015-11-11 16:26:04 -0800 | [diff] [blame] | 668 | of_node_get(mtd_get_of_node(mtd)); |
Brian Norris | 57dd990 | 2015-06-01 16:17:18 -0700 | [diff] [blame] | 669 | error = device_register(&mtd->dev); |
| 670 | if (error) |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 671 | goto fail_added; |
David Brownell | 1f24b5a | 2009-03-26 00:42:41 -0700 | [diff] [blame] | 672 | |
Alban Bedel | c4dfa25 | 2018-11-13 15:01:10 +0100 | [diff] [blame] | 673 | /* Add the nvmem provider */ |
| 674 | error = mtd_nvmem_add(mtd); |
| 675 | if (error) |
| 676 | goto fail_nvmem_add; |
| 677 | |
Zhuohao Lee | 1018c94 | 2019-07-01 00:07:10 +0800 | [diff] [blame] | 678 | mtd_debugfs_populate(mtd); |
Mario Rugiero | e8e3edb | 2017-05-29 08:38:41 -0300 | [diff] [blame] | 679 | |
Brian Norris | 5e47212 | 2014-07-21 19:06:47 -0700 | [diff] [blame] | 680 | device_create(&mtd_class, mtd->dev.parent, MTD_DEVT(i) + 1, NULL, |
| 681 | "mtd%dro", i); |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 682 | |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 683 | pr_debug("mtd: Giving out device %d to %s\n", i, mtd->name); |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 684 | /* No need to get a refcount on the module containing |
| 685 | the notifier, since we hold the mtd_table_mutex */ |
| 686 | list_for_each_entry(not, &mtd_notifiers, list) |
| 687 | not->add(mtd); |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 688 | |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 689 | mutex_unlock(&mtd_table_mutex); |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 690 | /* We _know_ we aren't being removed, because |
| 691 | our caller is still holding us here. So none |
| 692 | of this try_ nonsense, and no bitching about it |
| 693 | either. :) */ |
| 694 | __module_get(THIS_MODULE); |
| 695 | return 0; |
| 696 | |
Alban Bedel | c4dfa25 | 2018-11-13 15:01:10 +0100 | [diff] [blame] | 697 | fail_nvmem_add: |
| 698 | device_unregister(&mtd->dev); |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 699 | fail_added: |
Brian Norris | 215a02f | 2015-11-11 16:26:04 -0800 | [diff] [blame] | 700 | of_node_put(mtd_get_of_node(mtd)); |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 701 | idr_remove(&mtd_idr, i); |
| 702 | fail_locked: |
| 703 | mutex_unlock(&mtd_table_mutex); |
Brian Norris | 57dd990 | 2015-06-01 16:17:18 -0700 | [diff] [blame] | 704 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | /** |
| 708 | * del_mtd_device - unregister an MTD device |
| 709 | * @mtd: pointer to MTD device info structure |
| 710 | * |
| 711 | * Remove a device from the list of MTD devices present in the system, |
| 712 | * and notify each currently active MTD 'user' of its departure. |
| 713 | * Returns zero on success or 1 on failure, which currently will happen |
| 714 | * if the requested device does not appear to be present in the list. |
| 715 | */ |
| 716 | |
Jamie Iles | eea72d5 | 2011-05-23 10:23:42 +0100 | [diff] [blame] | 717 | int del_mtd_device(struct mtd_info *mtd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | { |
| 719 | int ret; |
Maxim Levitsky | 75c0b84 | 2010-02-22 20:39:32 +0200 | [diff] [blame] | 720 | struct mtd_notifier *not; |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 721 | |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 722 | mutex_lock(&mtd_table_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | |
Mario Rugiero | e8e3edb | 2017-05-29 08:38:41 -0300 | [diff] [blame] | 724 | debugfs_remove_recursive(mtd->dbg.dfs_dir); |
| 725 | |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 726 | if (idr_find(&mtd_idr, mtd->index) != mtd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | ret = -ENODEV; |
Maxim Levitsky | 75c0b84 | 2010-02-22 20:39:32 +0200 | [diff] [blame] | 728 | goto out_error; |
| 729 | } |
| 730 | |
| 731 | /* No need to get a refcount on the module containing |
| 732 | the notifier, since we hold the mtd_table_mutex */ |
| 733 | list_for_each_entry(not, &mtd_notifiers, list) |
| 734 | not->remove(mtd); |
| 735 | |
| 736 | if (mtd->usecount) { |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 737 | printk(KERN_NOTICE "Removing MTD device #%d (%s) with use count %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | mtd->index, mtd->name, mtd->usecount); |
| 739 | ret = -EBUSY; |
| 740 | } else { |
Alban Bedel | c4dfa25 | 2018-11-13 15:01:10 +0100 | [diff] [blame] | 741 | /* Try to remove the NVMEM provider */ |
| 742 | if (mtd->nvmem) |
| 743 | nvmem_unregister(mtd->nvmem); |
| 744 | |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 745 | device_unregister(&mtd->dev); |
| 746 | |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 747 | idr_remove(&mtd_idr, mtd->index); |
Brian Norris | 215a02f | 2015-11-11 16:26:04 -0800 | [diff] [blame] | 748 | of_node_put(mtd_get_of_node(mtd)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | |
| 750 | module_put(THIS_MODULE); |
| 751 | ret = 0; |
| 752 | } |
| 753 | |
Maxim Levitsky | 75c0b84 | 2010-02-22 20:39:32 +0200 | [diff] [blame] | 754 | out_error: |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 755 | mutex_unlock(&mtd_table_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | return ret; |
| 757 | } |
| 758 | |
Brian Norris | 472b444 | 2015-12-11 15:58:01 -0800 | [diff] [blame] | 759 | /* |
| 760 | * Set a few defaults based on the parent devices, if not provided by the |
| 761 | * driver |
| 762 | */ |
| 763 | static void mtd_set_dev_defaults(struct mtd_info *mtd) |
| 764 | { |
| 765 | if (mtd->dev.parent) { |
| 766 | if (!mtd->owner && mtd->dev.parent->driver) |
| 767 | mtd->owner = mtd->dev.parent->driver->owner; |
| 768 | if (!mtd->name) |
| 769 | mtd->name = dev_name(mtd->dev.parent); |
| 770 | } else { |
| 771 | pr_debug("mtd device won't show a device symlink in sysfs\n"); |
| 772 | } |
Rafał Miłecki | 1186af4 | 2018-11-20 09:55:45 +0100 | [diff] [blame] | 773 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 774 | INIT_LIST_HEAD(&mtd->partitions); |
| 775 | mutex_init(&mtd->master.partitions_lock); |
Brian Norris | 472b444 | 2015-12-11 15:58:01 -0800 | [diff] [blame] | 776 | } |
Dan Ehrenberg | 727dc61 | 2015-04-02 15:15:10 -0700 | [diff] [blame] | 777 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | /** |
Dmitry Eremin-Solenikov | 1c4c215c | 2011-03-25 22:26:25 +0300 | [diff] [blame] | 779 | * mtd_device_parse_register - parse partitions and register an MTD device. |
| 780 | * |
| 781 | * @mtd: the MTD device to register |
| 782 | * @types: the list of MTD partition probes to try, see |
| 783 | * 'parse_mtd_partitions()' for more information |
Dmitry Eremin-Solenikov | c797533 | 2011-06-10 18:18:28 +0400 | [diff] [blame] | 784 | * @parser_data: MTD partition parser-specific data |
Dmitry Eremin-Solenikov | 1c4c215c | 2011-03-25 22:26:25 +0300 | [diff] [blame] | 785 | * @parts: fallback partition information to register, if parsing fails; |
| 786 | * only valid if %nr_parts > %0 |
| 787 | * @nr_parts: the number of partitions in parts, if zero then the full |
| 788 | * MTD device is registered if no partition info is found |
| 789 | * |
| 790 | * This function aggregates MTD partitions parsing (done by |
| 791 | * 'parse_mtd_partitions()') and MTD device and partitions registering. It |
| 792 | * basically follows the most common pattern found in many MTD drivers: |
| 793 | * |
Rafał Miłecki | 55a999a | 2018-03-27 15:36:47 +0200 | [diff] [blame] | 794 | * * If the MTD_PARTITIONED_MASTER option is set, then the device as a whole is |
| 795 | * registered first. |
| 796 | * * Then It tries to probe partitions on MTD device @mtd using parsers |
Dmitry Eremin-Solenikov | 1c4c215c | 2011-03-25 22:26:25 +0300 | [diff] [blame] | 797 | * specified in @types (if @types is %NULL, then the default list of parsers |
| 798 | * is used, see 'parse_mtd_partitions()' for more information). If none are |
| 799 | * found this functions tries to fallback to information specified in |
| 800 | * @parts/@nr_parts. |
Dmitry Eremin-Solenikov | 1c4c215c | 2011-03-25 22:26:25 +0300 | [diff] [blame] | 801 | * * If no partitions were found this function just registers the MTD device |
| 802 | * @mtd and exits. |
| 803 | * |
| 804 | * Returns zero in case of success and a negative error code in case of failure. |
| 805 | */ |
Artem Bityutskiy | 26a4734 | 2013-03-11 15:38:48 +0200 | [diff] [blame] | 806 | int mtd_device_parse_register(struct mtd_info *mtd, const char * const *types, |
Dmitry Eremin-Solenikov | c797533 | 2011-06-10 18:18:28 +0400 | [diff] [blame] | 807 | struct mtd_part_parser_data *parser_data, |
Dmitry Eremin-Solenikov | 1c4c215c | 2011-03-25 22:26:25 +0300 | [diff] [blame] | 808 | const struct mtd_partition *parts, |
| 809 | int nr_parts) |
| 810 | { |
Dan Ehrenberg | 727dc61 | 2015-04-02 15:15:10 -0700 | [diff] [blame] | 811 | int ret; |
Dmitry Eremin-Solenikov | 1c4c215c | 2011-03-25 22:26:25 +0300 | [diff] [blame] | 812 | |
Brian Norris | 472b444 | 2015-12-11 15:58:01 -0800 | [diff] [blame] | 813 | mtd_set_dev_defaults(mtd); |
| 814 | |
Rafał Miłecki | 2c77c57 | 2018-01-16 16:45:41 +0100 | [diff] [blame] | 815 | if (IS_ENABLED(CONFIG_MTD_PARTITIONED_MASTER)) { |
| 816 | ret = add_mtd_device(mtd); |
| 817 | if (ret) |
| 818 | return ret; |
| 819 | } |
| 820 | |
Rafał Miłecki | 0dbe4ea | 2018-01-16 16:45:42 +0100 | [diff] [blame] | 821 | /* Prefer parsed partitions over driver-provided fallback */ |
Rafał Miłecki | 5ac67ce | 2018-03-27 22:35:41 +0200 | [diff] [blame] | 822 | ret = parse_mtd_partitions(mtd, types, parser_data); |
| 823 | if (ret > 0) |
| 824 | ret = 0; |
| 825 | else if (nr_parts) |
Rafał Miłecki | 0dbe4ea | 2018-01-16 16:45:42 +0100 | [diff] [blame] | 826 | ret = add_mtd_partitions(mtd, parts, nr_parts); |
| 827 | else if (!device_is_registered(&mtd->dev)) |
| 828 | ret = add_mtd_device(mtd); |
| 829 | else |
| 830 | ret = 0; |
| 831 | |
Brian Norris | 3e00ed0 | 2015-06-01 16:17:19 -0700 | [diff] [blame] | 832 | if (ret) |
| 833 | goto out; |
Dmitry Eremin-Solenikov | 1c4c215c | 2011-03-25 22:26:25 +0300 | [diff] [blame] | 834 | |
Niklas Cassel | e1dd864 | 2015-02-01 02:08:50 +0100 | [diff] [blame] | 835 | /* |
| 836 | * FIXME: some drivers unfortunately call this function more than once. |
| 837 | * So we have to check if we've already assigned the reboot notifier. |
| 838 | * |
| 839 | * Generally, we can make multiple calls work for most cases, but it |
| 840 | * does cause problems with parse_mtd_partitions() above (e.g., |
| 841 | * cmdlineparts will register partitions more than once). |
| 842 | */ |
Brian Norris | f8479dd | 2015-11-03 17:01:53 -0800 | [diff] [blame] | 843 | WARN_ONCE(mtd->_reboot && mtd->reboot_notifier.notifier_call, |
| 844 | "MTD already registered\n"); |
Niklas Cassel | e1dd864 | 2015-02-01 02:08:50 +0100 | [diff] [blame] | 845 | if (mtd->_reboot && !mtd->reboot_notifier.notifier_call) { |
Brian Norris | 3efe41b | 2014-11-26 01:01:08 -0800 | [diff] [blame] | 846 | mtd->reboot_notifier.notifier_call = mtd_reboot_notifier; |
| 847 | register_reboot_notifier(&mtd->reboot_notifier); |
| 848 | } |
| 849 | |
Brian Norris | 3e00ed0 | 2015-06-01 16:17:19 -0700 | [diff] [blame] | 850 | out: |
Rafał Miłecki | 2c77c57 | 2018-01-16 16:45:41 +0100 | [diff] [blame] | 851 | if (ret && device_is_registered(&mtd->dev)) |
| 852 | del_mtd_device(mtd); |
| 853 | |
Dan Ehrenberg | 727dc61 | 2015-04-02 15:15:10 -0700 | [diff] [blame] | 854 | return ret; |
Dmitry Eremin-Solenikov | 1c4c215c | 2011-03-25 22:26:25 +0300 | [diff] [blame] | 855 | } |
| 856 | EXPORT_SYMBOL_GPL(mtd_device_parse_register); |
| 857 | |
| 858 | /** |
Jamie Iles | f5671ab | 2011-05-23 17:15:46 +0100 | [diff] [blame] | 859 | * mtd_device_unregister - unregister an existing MTD device. |
| 860 | * |
| 861 | * @master: the MTD device to unregister. This will unregister both the master |
| 862 | * and any partitions if registered. |
| 863 | */ |
| 864 | int mtd_device_unregister(struct mtd_info *master) |
| 865 | { |
| 866 | int err; |
| 867 | |
Brian Norris | 3efe41b | 2014-11-26 01:01:08 -0800 | [diff] [blame] | 868 | if (master->_reboot) |
| 869 | unregister_reboot_notifier(&master->reboot_notifier); |
| 870 | |
Jamie Iles | f5671ab | 2011-05-23 17:15:46 +0100 | [diff] [blame] | 871 | err = del_mtd_partitions(master); |
| 872 | if (err) |
| 873 | return err; |
| 874 | |
| 875 | if (!device_is_registered(&master->dev)) |
| 876 | return 0; |
| 877 | |
| 878 | return del_mtd_device(master); |
| 879 | } |
| 880 | EXPORT_SYMBOL_GPL(mtd_device_unregister); |
| 881 | |
| 882 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | * register_mtd_user - register a 'user' of MTD devices. |
| 884 | * @new: pointer to notifier info structure |
| 885 | * |
| 886 | * Registers a pair of callbacks function to be called upon addition |
| 887 | * or removal of MTD devices. Causes the 'add' callback to be immediately |
| 888 | * invoked for each MTD device currently present in the system. |
| 889 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | void register_mtd_user (struct mtd_notifier *new) |
| 891 | { |
Ben Hutchings | f1332ba | 2010-01-29 20:57:11 +0000 | [diff] [blame] | 892 | struct mtd_info *mtd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 894 | mutex_lock(&mtd_table_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | |
| 896 | list_add(&new->list, &mtd_notifiers); |
| 897 | |
Wanlong Gao | d5ca512 | 2011-05-20 21:14:30 +0800 | [diff] [blame] | 898 | __module_get(THIS_MODULE); |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 899 | |
Ben Hutchings | f1332ba | 2010-01-29 20:57:11 +0000 | [diff] [blame] | 900 | mtd_for_each_device(mtd) |
| 901 | new->add(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 903 | mutex_unlock(&mtd_table_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | } |
Artem Bityutskiy | 33c87b4 | 2011-12-30 16:11:14 +0200 | [diff] [blame] | 905 | EXPORT_SYMBOL_GPL(register_mtd_user); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | |
| 907 | /** |
Artem B. Bityuckiy | 4945079 | 2005-02-18 14:34:54 +0000 | [diff] [blame] | 908 | * unregister_mtd_user - unregister a 'user' of MTD devices. |
| 909 | * @old: pointer to notifier info structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | * |
| 911 | * Removes a callback function pair from the list of 'users' to be |
| 912 | * notified upon addition or removal of MTD devices. Causes the |
| 913 | * 'remove' callback to be immediately invoked for each MTD device |
| 914 | * currently present in the system. |
| 915 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | int unregister_mtd_user (struct mtd_notifier *old) |
| 917 | { |
Ben Hutchings | f1332ba | 2010-01-29 20:57:11 +0000 | [diff] [blame] | 918 | struct mtd_info *mtd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 920 | mutex_lock(&mtd_table_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | |
| 922 | module_put(THIS_MODULE); |
| 923 | |
Ben Hutchings | f1332ba | 2010-01-29 20:57:11 +0000 | [diff] [blame] | 924 | mtd_for_each_device(mtd) |
| 925 | old->remove(mtd); |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 926 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | list_del(&old->list); |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 928 | mutex_unlock(&mtd_table_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | return 0; |
| 930 | } |
Artem Bityutskiy | 33c87b4 | 2011-12-30 16:11:14 +0200 | [diff] [blame] | 931 | EXPORT_SYMBOL_GPL(unregister_mtd_user); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | |
| 933 | /** |
| 934 | * get_mtd_device - obtain a validated handle for an MTD device |
| 935 | * @mtd: last known address of the required MTD device |
| 936 | * @num: internal device number of the required MTD device |
| 937 | * |
| 938 | * Given a number and NULL address, return the num'th entry in the device |
| 939 | * table, if any. Given an address and num == -1, search the device table |
| 940 | * for a device with that address and return if it's still present. Given |
Artem Bityutskiy | 9c74034 | 2006-10-11 14:52:47 +0300 | [diff] [blame] | 941 | * both, return the num'th driver only if its address matches. Return |
| 942 | * error code if not. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num) |
| 945 | { |
Ben Hutchings | f1332ba | 2010-01-29 20:57:11 +0000 | [diff] [blame] | 946 | struct mtd_info *ret = NULL, *other; |
| 947 | int err = -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 949 | mutex_lock(&mtd_table_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | |
| 951 | if (num == -1) { |
Ben Hutchings | f1332ba | 2010-01-29 20:57:11 +0000 | [diff] [blame] | 952 | mtd_for_each_device(other) { |
| 953 | if (other == mtd) { |
| 954 | ret = mtd; |
| 955 | break; |
| 956 | } |
| 957 | } |
Ben Hutchings | b520e41 | 2010-01-29 20:59:42 +0000 | [diff] [blame] | 958 | } else if (num >= 0) { |
| 959 | ret = idr_find(&mtd_idr, num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | if (mtd && mtd != ret) |
| 961 | ret = NULL; |
| 962 | } |
| 963 | |
Maxim Levitsky | 3bd4565 | 2010-02-22 20:39:28 +0200 | [diff] [blame] | 964 | if (!ret) { |
| 965 | ret = ERR_PTR(err); |
| 966 | goto out; |
Artem Bityutskiy | 9fe912c | 2006-10-11 14:52:45 +0300 | [diff] [blame] | 967 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | |
Maxim Levitsky | 3bd4565 | 2010-02-22 20:39:28 +0200 | [diff] [blame] | 969 | err = __get_mtd_device(ret); |
| 970 | if (err) |
| 971 | ret = ERR_PTR(err); |
| 972 | out: |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 973 | mutex_unlock(&mtd_table_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | return ret; |
Maxim Levitsky | 3bd4565 | 2010-02-22 20:39:28 +0200 | [diff] [blame] | 975 | } |
Artem Bityutskiy | 33c87b4 | 2011-12-30 16:11:14 +0200 | [diff] [blame] | 976 | EXPORT_SYMBOL_GPL(get_mtd_device); |
Artem Bityutskiy | 9c74034 | 2006-10-11 14:52:47 +0300 | [diff] [blame] | 977 | |
Maxim Levitsky | 3bd4565 | 2010-02-22 20:39:28 +0200 | [diff] [blame] | 978 | |
| 979 | int __get_mtd_device(struct mtd_info *mtd) |
| 980 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 981 | struct mtd_info *master = mtd_get_master(mtd); |
Maxim Levitsky | 3bd4565 | 2010-02-22 20:39:28 +0200 | [diff] [blame] | 982 | int err; |
| 983 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 984 | if (!try_module_get(master->owner)) |
Maxim Levitsky | 3bd4565 | 2010-02-22 20:39:28 +0200 | [diff] [blame] | 985 | return -ENODEV; |
| 986 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 987 | if (master->_get_device) { |
| 988 | err = master->_get_device(mtd); |
Maxim Levitsky | 3bd4565 | 2010-02-22 20:39:28 +0200 | [diff] [blame] | 989 | |
| 990 | if (err) { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 991 | module_put(master->owner); |
Maxim Levitsky | 3bd4565 | 2010-02-22 20:39:28 +0200 | [diff] [blame] | 992 | return err; |
| 993 | } |
| 994 | } |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 995 | |
Richard Weinberger | 1ca7141 | 2020-12-06 21:22:20 +0100 | [diff] [blame] | 996 | master->usecount++; |
| 997 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 998 | while (mtd->parent) { |
| 999 | mtd->usecount++; |
| 1000 | mtd = mtd->parent; |
| 1001 | } |
| 1002 | |
Maxim Levitsky | 3bd4565 | 2010-02-22 20:39:28 +0200 | [diff] [blame] | 1003 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | } |
Artem Bityutskiy | 33c87b4 | 2011-12-30 16:11:14 +0200 | [diff] [blame] | 1005 | EXPORT_SYMBOL_GPL(__get_mtd_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | |
Artem Bityutskiy | 7799308 | 2006-10-11 14:52:44 +0300 | [diff] [blame] | 1007 | /** |
| 1008 | * get_mtd_device_nm - obtain a validated handle for an MTD device by |
| 1009 | * device name |
| 1010 | * @name: MTD device name to open |
| 1011 | * |
| 1012 | * This function returns MTD device description structure in case of |
| 1013 | * success and an error code in case of failure. |
| 1014 | */ |
Artem Bityutskiy | 7799308 | 2006-10-11 14:52:44 +0300 | [diff] [blame] | 1015 | struct mtd_info *get_mtd_device_nm(const char *name) |
| 1016 | { |
Ben Hutchings | f1332ba | 2010-01-29 20:57:11 +0000 | [diff] [blame] | 1017 | int err = -ENODEV; |
| 1018 | struct mtd_info *mtd = NULL, *other; |
Artem Bityutskiy | 7799308 | 2006-10-11 14:52:44 +0300 | [diff] [blame] | 1019 | |
| 1020 | mutex_lock(&mtd_table_mutex); |
| 1021 | |
Ben Hutchings | f1332ba | 2010-01-29 20:57:11 +0000 | [diff] [blame] | 1022 | mtd_for_each_device(other) { |
| 1023 | if (!strcmp(name, other->name)) { |
| 1024 | mtd = other; |
Artem Bityutskiy | 7799308 | 2006-10-11 14:52:44 +0300 | [diff] [blame] | 1025 | break; |
| 1026 | } |
| 1027 | } |
| 1028 | |
Artem Bityutskiy | 9fe912c | 2006-10-11 14:52:45 +0300 | [diff] [blame] | 1029 | if (!mtd) |
Artem Bityutskiy | 7799308 | 2006-10-11 14:52:44 +0300 | [diff] [blame] | 1030 | goto out_unlock; |
| 1031 | |
Wanlong Gao | 52534f2 | 2011-05-17 22:36:18 +0800 | [diff] [blame] | 1032 | err = __get_mtd_device(mtd); |
| 1033 | if (err) |
Artem Bityutskiy | 7799308 | 2006-10-11 14:52:44 +0300 | [diff] [blame] | 1034 | goto out_unlock; |
| 1035 | |
Artem Bityutskiy | 7799308 | 2006-10-11 14:52:44 +0300 | [diff] [blame] | 1036 | mutex_unlock(&mtd_table_mutex); |
| 1037 | return mtd; |
Artem Bityutskiy | 9fe912c | 2006-10-11 14:52:45 +0300 | [diff] [blame] | 1038 | |
Artem Bityutskiy | 9fe912c | 2006-10-11 14:52:45 +0300 | [diff] [blame] | 1039 | out_unlock: |
| 1040 | mutex_unlock(&mtd_table_mutex); |
| 1041 | return ERR_PTR(err); |
Artem Bityutskiy | 7799308 | 2006-10-11 14:52:44 +0300 | [diff] [blame] | 1042 | } |
Artem Bityutskiy | 33c87b4 | 2011-12-30 16:11:14 +0200 | [diff] [blame] | 1043 | EXPORT_SYMBOL_GPL(get_mtd_device_nm); |
Artem Bityutskiy | 7799308 | 2006-10-11 14:52:44 +0300 | [diff] [blame] | 1044 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | void put_mtd_device(struct mtd_info *mtd) |
| 1046 | { |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 1047 | mutex_lock(&mtd_table_mutex); |
Maxim Levitsky | 3bd4565 | 2010-02-22 20:39:28 +0200 | [diff] [blame] | 1048 | __put_mtd_device(mtd); |
| 1049 | mutex_unlock(&mtd_table_mutex); |
| 1050 | |
| 1051 | } |
Artem Bityutskiy | 33c87b4 | 2011-12-30 16:11:14 +0200 | [diff] [blame] | 1052 | EXPORT_SYMBOL_GPL(put_mtd_device); |
Maxim Levitsky | 3bd4565 | 2010-02-22 20:39:28 +0200 | [diff] [blame] | 1053 | |
| 1054 | void __put_mtd_device(struct mtd_info *mtd) |
| 1055 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1056 | struct mtd_info *master = mtd_get_master(mtd); |
Maxim Levitsky | 3bd4565 | 2010-02-22 20:39:28 +0200 | [diff] [blame] | 1057 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1058 | while (mtd->parent) { |
| 1059 | --mtd->usecount; |
| 1060 | BUG_ON(mtd->usecount < 0); |
| 1061 | mtd = mtd->parent; |
| 1062 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | |
Richard Weinberger | 1ca7141 | 2020-12-06 21:22:20 +0100 | [diff] [blame] | 1064 | master->usecount--; |
| 1065 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1066 | if (master->_put_device) |
| 1067 | master->_put_device(master); |
| 1068 | |
| 1069 | module_put(master->owner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | } |
Artem Bityutskiy | 33c87b4 | 2011-12-30 16:11:14 +0200 | [diff] [blame] | 1071 | EXPORT_SYMBOL_GPL(__put_mtd_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | |
Artem Bityutskiy | 52b0203 | 2011-12-30 15:57:25 +0200 | [diff] [blame] | 1073 | /* |
Boris Brezillon | 884cfd9 | 2018-02-12 22:03:09 +0100 | [diff] [blame] | 1074 | * Erase is an synchronous operation. Device drivers are epected to return a |
| 1075 | * negative error code if the operation failed and update instr->fail_addr |
| 1076 | * to point the portion that was not properly erased. |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1077 | */ |
| 1078 | int mtd_erase(struct mtd_info *mtd, struct erase_info *instr) |
| 1079 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1080 | struct mtd_info *master = mtd_get_master(mtd); |
| 1081 | u64 mst_ofs = mtd_get_master_ofs(mtd, 0); |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 1082 | struct erase_info adjinstr; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1083 | int ret; |
| 1084 | |
Boris Brezillon | c585da9 | 2018-02-12 22:03:07 +0100 | [diff] [blame] | 1085 | instr->fail_addr = MTD_FAIL_ADDR_UNKNOWN; |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 1086 | adjinstr = *instr; |
Boris Brezillon | c585da9 | 2018-02-12 22:03:07 +0100 | [diff] [blame] | 1087 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1088 | if (!mtd->erasesize || !master->_erase) |
Boris Brezillon | e6e620f | 2018-01-22 10:38:01 +0100 | [diff] [blame] | 1089 | return -ENOTSUPP; |
| 1090 | |
Brian Norris | 0c2b4e2 | 2014-07-21 19:06:27 -0700 | [diff] [blame] | 1091 | if (instr->addr >= mtd->size || instr->len > mtd->size - instr->addr) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1092 | return -EINVAL; |
Artem Bityutskiy | 664addc | 2012-02-03 18:13:23 +0200 | [diff] [blame] | 1093 | if (!(mtd->flags & MTD_WRITEABLE)) |
| 1094 | return -EROFS; |
Boris Brezillon | e6e620f | 2018-01-22 10:38:01 +0100 | [diff] [blame] | 1095 | |
Boris Brezillon | e7bfb3f | 2018-02-12 22:03:11 +0100 | [diff] [blame] | 1096 | if (!instr->len) |
Artem Bityutskiy | bcb1d23 | 2012-02-06 13:27:43 +0200 | [diff] [blame] | 1097 | return 0; |
Boris Brezillon | e7bfb3f | 2018-02-12 22:03:11 +0100 | [diff] [blame] | 1098 | |
Ezequiel Garcia | fea728c | 2016-04-12 17:46:42 -0300 | [diff] [blame] | 1099 | ledtrig_mtd_activity(); |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1100 | |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 1101 | if (mtd->flags & MTD_SLC_ON_MLC_EMULATION) { |
| 1102 | adjinstr.addr = (loff_t)mtd_div_by_eb(instr->addr, mtd) * |
| 1103 | master->erasesize; |
| 1104 | adjinstr.len = ((u64)mtd_div_by_eb(instr->addr + instr->len, mtd) * |
| 1105 | master->erasesize) - |
| 1106 | adjinstr.addr; |
| 1107 | } |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1108 | |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 1109 | adjinstr.addr += mst_ofs; |
| 1110 | |
| 1111 | ret = master->_erase(master, &adjinstr); |
| 1112 | |
| 1113 | if (adjinstr.fail_addr != MTD_FAIL_ADDR_UNKNOWN) { |
| 1114 | instr->fail_addr = adjinstr.fail_addr - mst_ofs; |
| 1115 | if (mtd->flags & MTD_SLC_ON_MLC_EMULATION) { |
| 1116 | instr->fail_addr = mtd_div_by_eb(instr->fail_addr, |
| 1117 | master); |
| 1118 | instr->fail_addr *= mtd->erasesize; |
| 1119 | } |
| 1120 | } |
| 1121 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1122 | return ret; |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1123 | } |
| 1124 | EXPORT_SYMBOL_GPL(mtd_erase); |
| 1125 | |
| 1126 | /* |
| 1127 | * This stuff for eXecute-In-Place. phys is optional and may be set to NULL. |
| 1128 | */ |
| 1129 | int mtd_point(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, |
| 1130 | void **virt, resource_size_t *phys) |
| 1131 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1132 | struct mtd_info *master = mtd_get_master(mtd); |
| 1133 | |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1134 | *retlen = 0; |
Artem Bityutskiy | 0dd5235 | 2012-02-08 15:13:26 +0200 | [diff] [blame] | 1135 | *virt = NULL; |
| 1136 | if (phys) |
| 1137 | *phys = 0; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1138 | if (!master->_point) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1139 | return -EOPNOTSUPP; |
Brian Norris | 0c2b4e2 | 2014-07-21 19:06:27 -0700 | [diff] [blame] | 1140 | if (from < 0 || from >= mtd->size || len > mtd->size - from) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1141 | return -EINVAL; |
Artem Bityutskiy | bcb1d23 | 2012-02-06 13:27:43 +0200 | [diff] [blame] | 1142 | if (!len) |
| 1143 | return 0; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1144 | |
| 1145 | from = mtd_get_master_ofs(mtd, from); |
| 1146 | return master->_point(master, from, len, retlen, virt, phys); |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1147 | } |
| 1148 | EXPORT_SYMBOL_GPL(mtd_point); |
| 1149 | |
| 1150 | /* We probably shouldn't allow XIP if the unpoint isn't a NULL */ |
| 1151 | int mtd_unpoint(struct mtd_info *mtd, loff_t from, size_t len) |
| 1152 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1153 | struct mtd_info *master = mtd_get_master(mtd); |
| 1154 | |
| 1155 | if (!master->_unpoint) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1156 | return -EOPNOTSUPP; |
Brian Norris | 0c2b4e2 | 2014-07-21 19:06:27 -0700 | [diff] [blame] | 1157 | if (from < 0 || from >= mtd->size || len > mtd->size - from) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1158 | return -EINVAL; |
Artem Bityutskiy | bcb1d23 | 2012-02-06 13:27:43 +0200 | [diff] [blame] | 1159 | if (!len) |
| 1160 | return 0; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1161 | return master->_unpoint(master, mtd_get_master_ofs(mtd, from), len); |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1162 | } |
| 1163 | EXPORT_SYMBOL_GPL(mtd_unpoint); |
| 1164 | |
| 1165 | /* |
| 1166 | * Allow NOMMU mmap() to directly map the device (if not NULL) |
| 1167 | * - return the address to which the offset maps |
| 1168 | * - return -ENOSYS to indicate refusal to do the mapping |
| 1169 | */ |
| 1170 | unsigned long mtd_get_unmapped_area(struct mtd_info *mtd, unsigned long len, |
| 1171 | unsigned long offset, unsigned long flags) |
| 1172 | { |
Nicolas Pitre | 9eaa903 | 2017-10-30 14:48:32 -0400 | [diff] [blame] | 1173 | size_t retlen; |
| 1174 | void *virt; |
| 1175 | int ret; |
| 1176 | |
| 1177 | ret = mtd_point(mtd, offset, len, &retlen, &virt, NULL); |
| 1178 | if (ret) |
| 1179 | return ret; |
| 1180 | if (retlen != len) { |
| 1181 | mtd_unpoint(mtd, offset, retlen); |
| 1182 | return -ENOSYS; |
| 1183 | } |
| 1184 | return (unsigned long)virt; |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1185 | } |
| 1186 | EXPORT_SYMBOL_GPL(mtd_get_unmapped_area); |
| 1187 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1188 | static void mtd_update_ecc_stats(struct mtd_info *mtd, struct mtd_info *master, |
| 1189 | const struct mtd_ecc_stats *old_stats) |
| 1190 | { |
| 1191 | struct mtd_ecc_stats diff; |
| 1192 | |
| 1193 | if (master == mtd) |
| 1194 | return; |
| 1195 | |
| 1196 | diff = master->ecc_stats; |
| 1197 | diff.failed -= old_stats->failed; |
| 1198 | diff.corrected -= old_stats->corrected; |
| 1199 | |
| 1200 | while (mtd->parent) { |
| 1201 | mtd->ecc_stats.failed += diff.failed; |
| 1202 | mtd->ecc_stats.corrected += diff.corrected; |
| 1203 | mtd = mtd->parent; |
| 1204 | } |
| 1205 | } |
| 1206 | |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1207 | int mtd_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, |
| 1208 | u_char *buf) |
| 1209 | { |
Boris Brezillon | 2431c4f | 2018-12-20 15:13:20 +0100 | [diff] [blame] | 1210 | struct mtd_oob_ops ops = { |
| 1211 | .len = len, |
| 1212 | .datbuf = buf, |
| 1213 | }; |
| 1214 | int ret; |
Mike Dunn | edbc4540 | 2012-04-25 12:06:11 -0700 | [diff] [blame] | 1215 | |
Boris Brezillon | 2431c4f | 2018-12-20 15:13:20 +0100 | [diff] [blame] | 1216 | ret = mtd_read_oob(mtd, from, &ops); |
| 1217 | *retlen = ops.retlen; |
Boris Brezillon | 24ff129 | 2018-01-09 09:50:34 +0100 | [diff] [blame] | 1218 | |
Boris Brezillon | 2431c4f | 2018-12-20 15:13:20 +0100 | [diff] [blame] | 1219 | return ret; |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1220 | } |
| 1221 | EXPORT_SYMBOL_GPL(mtd_read); |
| 1222 | |
| 1223 | int mtd_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, |
| 1224 | const u_char *buf) |
| 1225 | { |
Boris Brezillon | 2431c4f | 2018-12-20 15:13:20 +0100 | [diff] [blame] | 1226 | struct mtd_oob_ops ops = { |
| 1227 | .len = len, |
| 1228 | .datbuf = (u8 *)buf, |
| 1229 | }; |
| 1230 | int ret; |
Boris Brezillon | 24ff129 | 2018-01-09 09:50:34 +0100 | [diff] [blame] | 1231 | |
Boris Brezillon | 2431c4f | 2018-12-20 15:13:20 +0100 | [diff] [blame] | 1232 | ret = mtd_write_oob(mtd, to, &ops); |
| 1233 | *retlen = ops.retlen; |
Boris Brezillon | 24ff129 | 2018-01-09 09:50:34 +0100 | [diff] [blame] | 1234 | |
Boris Brezillon | 2431c4f | 2018-12-20 15:13:20 +0100 | [diff] [blame] | 1235 | return ret; |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1236 | } |
| 1237 | EXPORT_SYMBOL_GPL(mtd_write); |
| 1238 | |
| 1239 | /* |
| 1240 | * In blackbox flight recorder like scenarios we want to make successful writes |
| 1241 | * in interrupt context. panic_write() is only intended to be called when its |
| 1242 | * known the kernel is about to panic and we need the write to succeed. Since |
| 1243 | * the kernel is not going to be running for much longer, this function can |
| 1244 | * break locks and delay to ensure the write succeeds (but not sleep). |
| 1245 | */ |
| 1246 | int mtd_panic_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, |
| 1247 | const u_char *buf) |
| 1248 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1249 | struct mtd_info *master = mtd_get_master(mtd); |
| 1250 | |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1251 | *retlen = 0; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1252 | if (!master->_panic_write) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1253 | return -EOPNOTSUPP; |
Brian Norris | 0c2b4e2 | 2014-07-21 19:06:27 -0700 | [diff] [blame] | 1254 | if (to < 0 || to >= mtd->size || len > mtd->size - to) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1255 | return -EINVAL; |
Artem Bityutskiy | 664addc | 2012-02-03 18:13:23 +0200 | [diff] [blame] | 1256 | if (!(mtd->flags & MTD_WRITEABLE)) |
| 1257 | return -EROFS; |
Artem Bityutskiy | bcb1d23 | 2012-02-06 13:27:43 +0200 | [diff] [blame] | 1258 | if (!len) |
| 1259 | return 0; |
Kamal Dasu | 630e8d5 | 2020-06-15 11:51:34 -0400 | [diff] [blame] | 1260 | if (!master->oops_panic_write) |
| 1261 | master->oops_panic_write = true; |
Kamal Dasu | 9f897bf | 2019-05-16 12:41:46 -0400 | [diff] [blame] | 1262 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1263 | return master->_panic_write(master, mtd_get_master_ofs(mtd, to), len, |
| 1264 | retlen, buf); |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1265 | } |
| 1266 | EXPORT_SYMBOL_GPL(mtd_panic_write); |
| 1267 | |
Boris Brezillon | 5cdd929 | 2017-06-27 21:22:21 +0200 | [diff] [blame] | 1268 | static int mtd_check_oob_ops(struct mtd_info *mtd, loff_t offs, |
| 1269 | struct mtd_oob_ops *ops) |
| 1270 | { |
| 1271 | /* |
| 1272 | * Some users are setting ->datbuf or ->oobbuf to NULL, but are leaving |
| 1273 | * ->len or ->ooblen uninitialized. Force ->len and ->ooblen to 0 in |
| 1274 | * this case. |
| 1275 | */ |
| 1276 | if (!ops->datbuf) |
| 1277 | ops->len = 0; |
| 1278 | |
| 1279 | if (!ops->oobbuf) |
| 1280 | ops->ooblen = 0; |
| 1281 | |
Miquel Raynal | d82c368 | 2017-12-18 08:26:28 +0100 | [diff] [blame] | 1282 | if (offs < 0 || offs + ops->len > mtd->size) |
Boris Brezillon | 5cdd929 | 2017-06-27 21:22:21 +0200 | [diff] [blame] | 1283 | return -EINVAL; |
| 1284 | |
| 1285 | if (ops->ooblen) { |
Miquel Raynal | 89f706d | 2018-11-18 21:18:31 +0100 | [diff] [blame] | 1286 | size_t maxooblen; |
Boris Brezillon | 5cdd929 | 2017-06-27 21:22:21 +0200 | [diff] [blame] | 1287 | |
| 1288 | if (ops->ooboffs >= mtd_oobavail(mtd, ops)) |
| 1289 | return -EINVAL; |
| 1290 | |
Miquel Raynal | 89f706d | 2018-11-18 21:18:31 +0100 | [diff] [blame] | 1291 | maxooblen = ((size_t)(mtd_div_by_ws(mtd->size, mtd) - |
| 1292 | mtd_div_by_ws(offs, mtd)) * |
Boris Brezillon | 5cdd929 | 2017-06-27 21:22:21 +0200 | [diff] [blame] | 1293 | mtd_oobavail(mtd, ops)) - ops->ooboffs; |
| 1294 | if (ops->ooblen > maxooblen) |
| 1295 | return -EINVAL; |
| 1296 | } |
| 1297 | |
| 1298 | return 0; |
| 1299 | } |
| 1300 | |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 1301 | static int mtd_read_oob_std(struct mtd_info *mtd, loff_t from, |
| 1302 | struct mtd_oob_ops *ops) |
| 1303 | { |
| 1304 | struct mtd_info *master = mtd_get_master(mtd); |
| 1305 | int ret; |
| 1306 | |
| 1307 | from = mtd_get_master_ofs(mtd, from); |
| 1308 | if (master->_read_oob) |
| 1309 | ret = master->_read_oob(master, from, ops); |
| 1310 | else |
| 1311 | ret = master->_read(master, from, ops->len, &ops->retlen, |
| 1312 | ops->datbuf); |
| 1313 | |
| 1314 | return ret; |
| 1315 | } |
| 1316 | |
| 1317 | static int mtd_write_oob_std(struct mtd_info *mtd, loff_t to, |
| 1318 | struct mtd_oob_ops *ops) |
| 1319 | { |
| 1320 | struct mtd_info *master = mtd_get_master(mtd); |
| 1321 | int ret; |
| 1322 | |
| 1323 | to = mtd_get_master_ofs(mtd, to); |
| 1324 | if (master->_write_oob) |
| 1325 | ret = master->_write_oob(master, to, ops); |
| 1326 | else |
| 1327 | ret = master->_write(master, to, ops->len, &ops->retlen, |
| 1328 | ops->datbuf); |
| 1329 | |
| 1330 | return ret; |
| 1331 | } |
| 1332 | |
| 1333 | static int mtd_io_emulated_slc(struct mtd_info *mtd, loff_t start, bool read, |
| 1334 | struct mtd_oob_ops *ops) |
| 1335 | { |
| 1336 | struct mtd_info *master = mtd_get_master(mtd); |
| 1337 | int ngroups = mtd_pairing_groups(master); |
| 1338 | int npairs = mtd_wunit_per_eb(master) / ngroups; |
| 1339 | struct mtd_oob_ops adjops = *ops; |
| 1340 | unsigned int wunit, oobavail; |
| 1341 | struct mtd_pairing_info info; |
| 1342 | int max_bitflips = 0; |
| 1343 | u32 ebofs, pageofs; |
| 1344 | loff_t base, pos; |
| 1345 | |
| 1346 | ebofs = mtd_mod_by_eb(start, mtd); |
| 1347 | base = (loff_t)mtd_div_by_eb(start, mtd) * master->erasesize; |
| 1348 | info.group = 0; |
| 1349 | info.pair = mtd_div_by_ws(ebofs, mtd); |
| 1350 | pageofs = mtd_mod_by_ws(ebofs, mtd); |
| 1351 | oobavail = mtd_oobavail(mtd, ops); |
| 1352 | |
| 1353 | while (ops->retlen < ops->len || ops->oobretlen < ops->ooblen) { |
| 1354 | int ret; |
| 1355 | |
| 1356 | if (info.pair >= npairs) { |
| 1357 | info.pair = 0; |
| 1358 | base += master->erasesize; |
| 1359 | } |
| 1360 | |
| 1361 | wunit = mtd_pairing_info_to_wunit(master, &info); |
| 1362 | pos = mtd_wunit_to_offset(mtd, base, wunit); |
| 1363 | |
| 1364 | adjops.len = ops->len - ops->retlen; |
| 1365 | if (adjops.len > mtd->writesize - pageofs) |
| 1366 | adjops.len = mtd->writesize - pageofs; |
| 1367 | |
| 1368 | adjops.ooblen = ops->ooblen - ops->oobretlen; |
| 1369 | if (adjops.ooblen > oobavail - adjops.ooboffs) |
| 1370 | adjops.ooblen = oobavail - adjops.ooboffs; |
| 1371 | |
| 1372 | if (read) { |
| 1373 | ret = mtd_read_oob_std(mtd, pos + pageofs, &adjops); |
| 1374 | if (ret > 0) |
| 1375 | max_bitflips = max(max_bitflips, ret); |
| 1376 | } else { |
| 1377 | ret = mtd_write_oob_std(mtd, pos + pageofs, &adjops); |
| 1378 | } |
| 1379 | |
| 1380 | if (ret < 0) |
| 1381 | return ret; |
| 1382 | |
| 1383 | max_bitflips = max(max_bitflips, ret); |
| 1384 | ops->retlen += adjops.retlen; |
| 1385 | ops->oobretlen += adjops.oobretlen; |
| 1386 | adjops.datbuf += adjops.retlen; |
| 1387 | adjops.oobbuf += adjops.oobretlen; |
| 1388 | adjops.ooboffs = 0; |
| 1389 | pageofs = 0; |
| 1390 | info.pair++; |
| 1391 | } |
| 1392 | |
| 1393 | return max_bitflips; |
| 1394 | } |
| 1395 | |
Brian Norris | d2d4848 | 2012-06-22 16:35:38 -0700 | [diff] [blame] | 1396 | int mtd_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops) |
| 1397 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1398 | struct mtd_info *master = mtd_get_master(mtd); |
| 1399 | struct mtd_ecc_stats old_stats = master->ecc_stats; |
Brian Norris | e47f685 | 2012-06-22 16:35:39 -0700 | [diff] [blame] | 1400 | int ret_code; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1401 | |
Brian Norris | d2d4848 | 2012-06-22 16:35:38 -0700 | [diff] [blame] | 1402 | ops->retlen = ops->oobretlen = 0; |
Ezequiel Garcia | fea728c | 2016-04-12 17:46:42 -0300 | [diff] [blame] | 1403 | |
Boris Brezillon | 5cdd929 | 2017-06-27 21:22:21 +0200 | [diff] [blame] | 1404 | ret_code = mtd_check_oob_ops(mtd, from, ops); |
| 1405 | if (ret_code) |
| 1406 | return ret_code; |
| 1407 | |
Ezequiel Garcia | fea728c | 2016-04-12 17:46:42 -0300 | [diff] [blame] | 1408 | ledtrig_mtd_activity(); |
Miquel Raynal | 89fd23e | 2018-07-14 14:42:00 +0200 | [diff] [blame] | 1409 | |
| 1410 | /* Check the validity of a potential fallback on mtd->_read */ |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1411 | if (!master->_read_oob && (!master->_read || ops->oobbuf)) |
Miquel Raynal | 89fd23e | 2018-07-14 14:42:00 +0200 | [diff] [blame] | 1412 | return -EOPNOTSUPP; |
| 1413 | |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 1414 | if (mtd->flags & MTD_SLC_ON_MLC_EMULATION) |
| 1415 | ret_code = mtd_io_emulated_slc(mtd, from, true, ops); |
Miquel Raynal | 89fd23e | 2018-07-14 14:42:00 +0200 | [diff] [blame] | 1416 | else |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 1417 | ret_code = mtd_read_oob_std(mtd, from, ops); |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1418 | |
| 1419 | mtd_update_ecc_stats(mtd, master, &old_stats); |
Miquel Raynal | 89fd23e | 2018-07-14 14:42:00 +0200 | [diff] [blame] | 1420 | |
Brian Norris | e47f685 | 2012-06-22 16:35:39 -0700 | [diff] [blame] | 1421 | /* |
| 1422 | * In cases where ops->datbuf != NULL, mtd->_read_oob() has semantics |
| 1423 | * similar to mtd->_read(), returning a non-negative integer |
| 1424 | * representing max bitflips. In other cases, mtd->_read_oob() may |
| 1425 | * return -EUCLEAN. In all cases, perform similar logic to mtd_read(). |
| 1426 | */ |
Brian Norris | e47f685 | 2012-06-22 16:35:39 -0700 | [diff] [blame] | 1427 | if (unlikely(ret_code < 0)) |
| 1428 | return ret_code; |
| 1429 | if (mtd->ecc_strength == 0) |
| 1430 | return 0; /* device lacks ecc */ |
| 1431 | return ret_code >= mtd->bitflip_threshold ? -EUCLEAN : 0; |
Brian Norris | d2d4848 | 2012-06-22 16:35:38 -0700 | [diff] [blame] | 1432 | } |
| 1433 | EXPORT_SYMBOL_GPL(mtd_read_oob); |
| 1434 | |
Ezequiel Garcia | 0c034fe | 2016-04-12 17:46:39 -0300 | [diff] [blame] | 1435 | int mtd_write_oob(struct mtd_info *mtd, loff_t to, |
| 1436 | struct mtd_oob_ops *ops) |
| 1437 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1438 | struct mtd_info *master = mtd_get_master(mtd); |
Boris Brezillon | 5cdd929 | 2017-06-27 21:22:21 +0200 | [diff] [blame] | 1439 | int ret; |
| 1440 | |
Ezequiel Garcia | 0c034fe | 2016-04-12 17:46:39 -0300 | [diff] [blame] | 1441 | ops->retlen = ops->oobretlen = 0; |
Miquel Raynal | 89fd23e | 2018-07-14 14:42:00 +0200 | [diff] [blame] | 1442 | |
Ezequiel Garcia | 0c034fe | 2016-04-12 17:46:39 -0300 | [diff] [blame] | 1443 | if (!(mtd->flags & MTD_WRITEABLE)) |
| 1444 | return -EROFS; |
Boris Brezillon | 5cdd929 | 2017-06-27 21:22:21 +0200 | [diff] [blame] | 1445 | |
| 1446 | ret = mtd_check_oob_ops(mtd, to, ops); |
| 1447 | if (ret) |
| 1448 | return ret; |
| 1449 | |
Ezequiel Garcia | fea728c | 2016-04-12 17:46:42 -0300 | [diff] [blame] | 1450 | ledtrig_mtd_activity(); |
Miquel Raynal | 89fd23e | 2018-07-14 14:42:00 +0200 | [diff] [blame] | 1451 | |
| 1452 | /* Check the validity of a potential fallback on mtd->_write */ |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1453 | if (!master->_write_oob && (!master->_write || ops->oobbuf)) |
Miquel Raynal | 89fd23e | 2018-07-14 14:42:00 +0200 | [diff] [blame] | 1454 | return -EOPNOTSUPP; |
| 1455 | |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 1456 | if (mtd->flags & MTD_SLC_ON_MLC_EMULATION) |
| 1457 | return mtd_io_emulated_slc(mtd, to, false, ops); |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1458 | |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 1459 | return mtd_write_oob_std(mtd, to, ops); |
Ezequiel Garcia | 0c034fe | 2016-04-12 17:46:39 -0300 | [diff] [blame] | 1460 | } |
| 1461 | EXPORT_SYMBOL_GPL(mtd_write_oob); |
| 1462 | |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1463 | /** |
| 1464 | * mtd_ooblayout_ecc - Get the OOB region definition of a specific ECC section |
| 1465 | * @mtd: MTD device structure |
| 1466 | * @section: ECC section. Depending on the layout you may have all the ECC |
| 1467 | * bytes stored in a single contiguous section, or one section |
| 1468 | * per ECC chunk (and sometime several sections for a single ECC |
| 1469 | * ECC chunk) |
| 1470 | * @oobecc: OOB region struct filled with the appropriate ECC position |
| 1471 | * information |
| 1472 | * |
Masahiro Yamada | 7da0fff | 2016-12-14 09:31:01 +0900 | [diff] [blame] | 1473 | * This function returns ECC section information in the OOB area. If you want |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1474 | * to get all the ECC bytes information, then you should call |
| 1475 | * mtd_ooblayout_ecc(mtd, section++, oobecc) until it returns -ERANGE. |
| 1476 | * |
| 1477 | * Returns zero on success, a negative error code otherwise. |
| 1478 | */ |
| 1479 | int mtd_ooblayout_ecc(struct mtd_info *mtd, int section, |
| 1480 | struct mtd_oob_region *oobecc) |
| 1481 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1482 | struct mtd_info *master = mtd_get_master(mtd); |
| 1483 | |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1484 | memset(oobecc, 0, sizeof(*oobecc)); |
| 1485 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1486 | if (!master || section < 0) |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1487 | return -EINVAL; |
| 1488 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1489 | if (!master->ooblayout || !master->ooblayout->ecc) |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1490 | return -ENOTSUPP; |
| 1491 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1492 | return master->ooblayout->ecc(master, section, oobecc); |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1493 | } |
| 1494 | EXPORT_SYMBOL_GPL(mtd_ooblayout_ecc); |
| 1495 | |
| 1496 | /** |
| 1497 | * mtd_ooblayout_free - Get the OOB region definition of a specific free |
| 1498 | * section |
| 1499 | * @mtd: MTD device structure |
| 1500 | * @section: Free section you are interested in. Depending on the layout |
| 1501 | * you may have all the free bytes stored in a single contiguous |
| 1502 | * section, or one section per ECC chunk plus an extra section |
| 1503 | * for the remaining bytes (or other funky layout). |
| 1504 | * @oobfree: OOB region struct filled with the appropriate free position |
| 1505 | * information |
| 1506 | * |
Masahiro Yamada | 7da0fff | 2016-12-14 09:31:01 +0900 | [diff] [blame] | 1507 | * This function returns free bytes position in the OOB area. If you want |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1508 | * to get all the free bytes information, then you should call |
| 1509 | * mtd_ooblayout_free(mtd, section++, oobfree) until it returns -ERANGE. |
| 1510 | * |
| 1511 | * Returns zero on success, a negative error code otherwise. |
| 1512 | */ |
| 1513 | int mtd_ooblayout_free(struct mtd_info *mtd, int section, |
| 1514 | struct mtd_oob_region *oobfree) |
| 1515 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1516 | struct mtd_info *master = mtd_get_master(mtd); |
| 1517 | |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1518 | memset(oobfree, 0, sizeof(*oobfree)); |
| 1519 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1520 | if (!master || section < 0) |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1521 | return -EINVAL; |
| 1522 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1523 | if (!master->ooblayout || !master->ooblayout->free) |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1524 | return -ENOTSUPP; |
| 1525 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1526 | return master->ooblayout->free(master, section, oobfree); |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1527 | } |
| 1528 | EXPORT_SYMBOL_GPL(mtd_ooblayout_free); |
| 1529 | |
| 1530 | /** |
| 1531 | * mtd_ooblayout_find_region - Find the region attached to a specific byte |
| 1532 | * @mtd: mtd info structure |
| 1533 | * @byte: the byte we are searching for |
| 1534 | * @sectionp: pointer where the section id will be stored |
| 1535 | * @oobregion: used to retrieve the ECC position |
| 1536 | * @iter: iterator function. Should be either mtd_ooblayout_free or |
| 1537 | * mtd_ooblayout_ecc depending on the region type you're searching for |
| 1538 | * |
Masahiro Yamada | 7da0fff | 2016-12-14 09:31:01 +0900 | [diff] [blame] | 1539 | * This function returns the section id and oobregion information of a |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1540 | * specific byte. For example, say you want to know where the 4th ECC byte is |
| 1541 | * stored, you'll use: |
| 1542 | * |
| 1543 | * mtd_ooblayout_find_region(mtd, 3, §ion, &oobregion, mtd_ooblayout_ecc); |
| 1544 | * |
| 1545 | * Returns zero on success, a negative error code otherwise. |
| 1546 | */ |
| 1547 | static int mtd_ooblayout_find_region(struct mtd_info *mtd, int byte, |
| 1548 | int *sectionp, struct mtd_oob_region *oobregion, |
| 1549 | int (*iter)(struct mtd_info *, |
| 1550 | int section, |
| 1551 | struct mtd_oob_region *oobregion)) |
| 1552 | { |
| 1553 | int pos = 0, ret, section = 0; |
| 1554 | |
| 1555 | memset(oobregion, 0, sizeof(*oobregion)); |
| 1556 | |
| 1557 | while (1) { |
| 1558 | ret = iter(mtd, section, oobregion); |
| 1559 | if (ret) |
| 1560 | return ret; |
| 1561 | |
| 1562 | if (pos + oobregion->length > byte) |
| 1563 | break; |
| 1564 | |
| 1565 | pos += oobregion->length; |
| 1566 | section++; |
| 1567 | } |
| 1568 | |
| 1569 | /* |
| 1570 | * Adjust region info to make it start at the beginning at the |
| 1571 | * 'start' ECC byte. |
| 1572 | */ |
| 1573 | oobregion->offset += byte - pos; |
| 1574 | oobregion->length -= byte - pos; |
| 1575 | *sectionp = section; |
| 1576 | |
| 1577 | return 0; |
| 1578 | } |
| 1579 | |
| 1580 | /** |
| 1581 | * mtd_ooblayout_find_eccregion - Find the ECC region attached to a specific |
| 1582 | * ECC byte |
| 1583 | * @mtd: mtd info structure |
| 1584 | * @eccbyte: the byte we are searching for |
Lee Jones | 6361f53 | 2020-11-09 18:21:48 +0000 | [diff] [blame] | 1585 | * @section: pointer where the section id will be stored |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1586 | * @oobregion: OOB region information |
| 1587 | * |
| 1588 | * Works like mtd_ooblayout_find_region() except it searches for a specific ECC |
| 1589 | * byte. |
| 1590 | * |
| 1591 | * Returns zero on success, a negative error code otherwise. |
| 1592 | */ |
| 1593 | int mtd_ooblayout_find_eccregion(struct mtd_info *mtd, int eccbyte, |
| 1594 | int *section, |
| 1595 | struct mtd_oob_region *oobregion) |
| 1596 | { |
| 1597 | return mtd_ooblayout_find_region(mtd, eccbyte, section, oobregion, |
| 1598 | mtd_ooblayout_ecc); |
| 1599 | } |
| 1600 | EXPORT_SYMBOL_GPL(mtd_ooblayout_find_eccregion); |
| 1601 | |
| 1602 | /** |
| 1603 | * mtd_ooblayout_get_bytes - Extract OOB bytes from the oob buffer |
| 1604 | * @mtd: mtd info structure |
| 1605 | * @buf: destination buffer to store OOB bytes |
| 1606 | * @oobbuf: OOB buffer |
| 1607 | * @start: first byte to retrieve |
| 1608 | * @nbytes: number of bytes to retrieve |
| 1609 | * @iter: section iterator |
| 1610 | * |
| 1611 | * Extract bytes attached to a specific category (ECC or free) |
| 1612 | * from the OOB buffer and copy them into buf. |
| 1613 | * |
| 1614 | * Returns zero on success, a negative error code otherwise. |
| 1615 | */ |
| 1616 | static int mtd_ooblayout_get_bytes(struct mtd_info *mtd, u8 *buf, |
| 1617 | const u8 *oobbuf, int start, int nbytes, |
| 1618 | int (*iter)(struct mtd_info *, |
| 1619 | int section, |
| 1620 | struct mtd_oob_region *oobregion)) |
| 1621 | { |
Masahiro Yamada | 8e8fd4d | 2016-11-09 11:08:08 +0900 | [diff] [blame] | 1622 | struct mtd_oob_region oobregion; |
| 1623 | int section, ret; |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1624 | |
| 1625 | ret = mtd_ooblayout_find_region(mtd, start, §ion, |
| 1626 | &oobregion, iter); |
| 1627 | |
| 1628 | while (!ret) { |
| 1629 | int cnt; |
| 1630 | |
Masahiro Yamada | 7c295ef | 2016-11-09 11:08:09 +0900 | [diff] [blame] | 1631 | cnt = min_t(int, nbytes, oobregion.length); |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1632 | memcpy(buf, oobbuf + oobregion.offset, cnt); |
| 1633 | buf += cnt; |
| 1634 | nbytes -= cnt; |
| 1635 | |
| 1636 | if (!nbytes) |
| 1637 | break; |
| 1638 | |
| 1639 | ret = iter(mtd, ++section, &oobregion); |
| 1640 | } |
| 1641 | |
| 1642 | return ret; |
| 1643 | } |
| 1644 | |
| 1645 | /** |
| 1646 | * mtd_ooblayout_set_bytes - put OOB bytes into the oob buffer |
| 1647 | * @mtd: mtd info structure |
| 1648 | * @buf: source buffer to get OOB bytes from |
| 1649 | * @oobbuf: OOB buffer |
| 1650 | * @start: first OOB byte to set |
| 1651 | * @nbytes: number of OOB bytes to set |
| 1652 | * @iter: section iterator |
| 1653 | * |
| 1654 | * Fill the OOB buffer with data provided in buf. The category (ECC or free) |
| 1655 | * is selected by passing the appropriate iterator. |
| 1656 | * |
| 1657 | * Returns zero on success, a negative error code otherwise. |
| 1658 | */ |
| 1659 | static int mtd_ooblayout_set_bytes(struct mtd_info *mtd, const u8 *buf, |
| 1660 | u8 *oobbuf, int start, int nbytes, |
| 1661 | int (*iter)(struct mtd_info *, |
| 1662 | int section, |
| 1663 | struct mtd_oob_region *oobregion)) |
| 1664 | { |
Masahiro Yamada | 8e8fd4d | 2016-11-09 11:08:08 +0900 | [diff] [blame] | 1665 | struct mtd_oob_region oobregion; |
| 1666 | int section, ret; |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1667 | |
| 1668 | ret = mtd_ooblayout_find_region(mtd, start, §ion, |
| 1669 | &oobregion, iter); |
| 1670 | |
| 1671 | while (!ret) { |
| 1672 | int cnt; |
| 1673 | |
Masahiro Yamada | 7c295ef | 2016-11-09 11:08:09 +0900 | [diff] [blame] | 1674 | cnt = min_t(int, nbytes, oobregion.length); |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1675 | memcpy(oobbuf + oobregion.offset, buf, cnt); |
| 1676 | buf += cnt; |
| 1677 | nbytes -= cnt; |
| 1678 | |
| 1679 | if (!nbytes) |
| 1680 | break; |
| 1681 | |
| 1682 | ret = iter(mtd, ++section, &oobregion); |
| 1683 | } |
| 1684 | |
| 1685 | return ret; |
| 1686 | } |
| 1687 | |
| 1688 | /** |
| 1689 | * mtd_ooblayout_count_bytes - count the number of bytes in a OOB category |
| 1690 | * @mtd: mtd info structure |
| 1691 | * @iter: category iterator |
| 1692 | * |
| 1693 | * Count the number of bytes in a given category. |
| 1694 | * |
| 1695 | * Returns a positive value on success, a negative error code otherwise. |
| 1696 | */ |
| 1697 | static int mtd_ooblayout_count_bytes(struct mtd_info *mtd, |
| 1698 | int (*iter)(struct mtd_info *, |
| 1699 | int section, |
| 1700 | struct mtd_oob_region *oobregion)) |
| 1701 | { |
Masahiro Yamada | 4d6aecf | 2016-11-09 11:08:10 +0900 | [diff] [blame] | 1702 | struct mtd_oob_region oobregion; |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1703 | int section = 0, ret, nbytes = 0; |
| 1704 | |
| 1705 | while (1) { |
| 1706 | ret = iter(mtd, section++, &oobregion); |
| 1707 | if (ret) { |
| 1708 | if (ret == -ERANGE) |
| 1709 | ret = nbytes; |
| 1710 | break; |
| 1711 | } |
| 1712 | |
| 1713 | nbytes += oobregion.length; |
| 1714 | } |
| 1715 | |
| 1716 | return ret; |
| 1717 | } |
| 1718 | |
| 1719 | /** |
| 1720 | * mtd_ooblayout_get_eccbytes - extract ECC bytes from the oob buffer |
| 1721 | * @mtd: mtd info structure |
| 1722 | * @eccbuf: destination buffer to store ECC bytes |
| 1723 | * @oobbuf: OOB buffer |
| 1724 | * @start: first ECC byte to retrieve |
| 1725 | * @nbytes: number of ECC bytes to retrieve |
| 1726 | * |
| 1727 | * Works like mtd_ooblayout_get_bytes(), except it acts on ECC bytes. |
| 1728 | * |
| 1729 | * Returns zero on success, a negative error code otherwise. |
| 1730 | */ |
| 1731 | int mtd_ooblayout_get_eccbytes(struct mtd_info *mtd, u8 *eccbuf, |
| 1732 | const u8 *oobbuf, int start, int nbytes) |
| 1733 | { |
| 1734 | return mtd_ooblayout_get_bytes(mtd, eccbuf, oobbuf, start, nbytes, |
| 1735 | mtd_ooblayout_ecc); |
| 1736 | } |
| 1737 | EXPORT_SYMBOL_GPL(mtd_ooblayout_get_eccbytes); |
| 1738 | |
| 1739 | /** |
| 1740 | * mtd_ooblayout_set_eccbytes - set ECC bytes into the oob buffer |
| 1741 | * @mtd: mtd info structure |
| 1742 | * @eccbuf: source buffer to get ECC bytes from |
| 1743 | * @oobbuf: OOB buffer |
| 1744 | * @start: first ECC byte to set |
| 1745 | * @nbytes: number of ECC bytes to set |
| 1746 | * |
| 1747 | * Works like mtd_ooblayout_set_bytes(), except it acts on ECC bytes. |
| 1748 | * |
| 1749 | * Returns zero on success, a negative error code otherwise. |
| 1750 | */ |
| 1751 | int mtd_ooblayout_set_eccbytes(struct mtd_info *mtd, const u8 *eccbuf, |
| 1752 | u8 *oobbuf, int start, int nbytes) |
| 1753 | { |
| 1754 | return mtd_ooblayout_set_bytes(mtd, eccbuf, oobbuf, start, nbytes, |
| 1755 | mtd_ooblayout_ecc); |
| 1756 | } |
| 1757 | EXPORT_SYMBOL_GPL(mtd_ooblayout_set_eccbytes); |
| 1758 | |
| 1759 | /** |
| 1760 | * mtd_ooblayout_get_databytes - extract data bytes from the oob buffer |
| 1761 | * @mtd: mtd info structure |
| 1762 | * @databuf: destination buffer to store ECC bytes |
| 1763 | * @oobbuf: OOB buffer |
| 1764 | * @start: first ECC byte to retrieve |
| 1765 | * @nbytes: number of ECC bytes to retrieve |
| 1766 | * |
| 1767 | * Works like mtd_ooblayout_get_bytes(), except it acts on free bytes. |
| 1768 | * |
| 1769 | * Returns zero on success, a negative error code otherwise. |
| 1770 | */ |
| 1771 | int mtd_ooblayout_get_databytes(struct mtd_info *mtd, u8 *databuf, |
| 1772 | const u8 *oobbuf, int start, int nbytes) |
| 1773 | { |
| 1774 | return mtd_ooblayout_get_bytes(mtd, databuf, oobbuf, start, nbytes, |
| 1775 | mtd_ooblayout_free); |
| 1776 | } |
| 1777 | EXPORT_SYMBOL_GPL(mtd_ooblayout_get_databytes); |
| 1778 | |
| 1779 | /** |
Xiaolei Li | c77a931 | 2018-03-29 09:34:58 +0800 | [diff] [blame] | 1780 | * mtd_ooblayout_set_databytes - set data bytes into the oob buffer |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1781 | * @mtd: mtd info structure |
Xiaolei Li | c77a931 | 2018-03-29 09:34:58 +0800 | [diff] [blame] | 1782 | * @databuf: source buffer to get data bytes from |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1783 | * @oobbuf: OOB buffer |
| 1784 | * @start: first ECC byte to set |
| 1785 | * @nbytes: number of ECC bytes to set |
| 1786 | * |
Miquel Raynal | 519494a | 2020-05-26 21:56:13 +0200 | [diff] [blame] | 1787 | * Works like mtd_ooblayout_set_bytes(), except it acts on free bytes. |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1788 | * |
| 1789 | * Returns zero on success, a negative error code otherwise. |
| 1790 | */ |
| 1791 | int mtd_ooblayout_set_databytes(struct mtd_info *mtd, const u8 *databuf, |
| 1792 | u8 *oobbuf, int start, int nbytes) |
| 1793 | { |
| 1794 | return mtd_ooblayout_set_bytes(mtd, databuf, oobbuf, start, nbytes, |
| 1795 | mtd_ooblayout_free); |
| 1796 | } |
| 1797 | EXPORT_SYMBOL_GPL(mtd_ooblayout_set_databytes); |
| 1798 | |
| 1799 | /** |
| 1800 | * mtd_ooblayout_count_freebytes - count the number of free bytes in OOB |
| 1801 | * @mtd: mtd info structure |
| 1802 | * |
| 1803 | * Works like mtd_ooblayout_count_bytes(), except it count free bytes. |
| 1804 | * |
| 1805 | * Returns zero on success, a negative error code otherwise. |
| 1806 | */ |
| 1807 | int mtd_ooblayout_count_freebytes(struct mtd_info *mtd) |
| 1808 | { |
| 1809 | return mtd_ooblayout_count_bytes(mtd, mtd_ooblayout_free); |
| 1810 | } |
| 1811 | EXPORT_SYMBOL_GPL(mtd_ooblayout_count_freebytes); |
| 1812 | |
| 1813 | /** |
Xiaolei Li | c77a931 | 2018-03-29 09:34:58 +0800 | [diff] [blame] | 1814 | * mtd_ooblayout_count_eccbytes - count the number of ECC bytes in OOB |
Boris Brezillon | 75eb2ce | 2016-02-04 09:52:30 +0100 | [diff] [blame] | 1815 | * @mtd: mtd info structure |
| 1816 | * |
| 1817 | * Works like mtd_ooblayout_count_bytes(), except it count ECC bytes. |
| 1818 | * |
| 1819 | * Returns zero on success, a negative error code otherwise. |
| 1820 | */ |
| 1821 | int mtd_ooblayout_count_eccbytes(struct mtd_info *mtd) |
| 1822 | { |
| 1823 | return mtd_ooblayout_count_bytes(mtd, mtd_ooblayout_ecc); |
| 1824 | } |
| 1825 | EXPORT_SYMBOL_GPL(mtd_ooblayout_count_eccbytes); |
| 1826 | |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1827 | /* |
| 1828 | * Method to access the protection register area, present in some flash |
| 1829 | * devices. The user data is one time programmable but the factory data is read |
| 1830 | * only. |
| 1831 | */ |
Christian Riesch | 4b78fc42f | 2014-01-28 09:29:44 +0100 | [diff] [blame] | 1832 | int mtd_get_fact_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen, |
| 1833 | struct otp_info *buf) |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1834 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1835 | struct mtd_info *master = mtd_get_master(mtd); |
| 1836 | |
| 1837 | if (!master->_get_fact_prot_info) |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1838 | return -EOPNOTSUPP; |
| 1839 | if (!len) |
| 1840 | return 0; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1841 | return master->_get_fact_prot_info(master, len, retlen, buf); |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1842 | } |
| 1843 | EXPORT_SYMBOL_GPL(mtd_get_fact_prot_info); |
| 1844 | |
| 1845 | int mtd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, |
| 1846 | size_t *retlen, u_char *buf) |
| 1847 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1848 | struct mtd_info *master = mtd_get_master(mtd); |
| 1849 | |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1850 | *retlen = 0; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1851 | if (!master->_read_fact_prot_reg) |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1852 | return -EOPNOTSUPP; |
| 1853 | if (!len) |
| 1854 | return 0; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1855 | return master->_read_fact_prot_reg(master, from, len, retlen, buf); |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1856 | } |
| 1857 | EXPORT_SYMBOL_GPL(mtd_read_fact_prot_reg); |
| 1858 | |
Christian Riesch | 4b78fc42f | 2014-01-28 09:29:44 +0100 | [diff] [blame] | 1859 | int mtd_get_user_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen, |
| 1860 | struct otp_info *buf) |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1861 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1862 | struct mtd_info *master = mtd_get_master(mtd); |
| 1863 | |
| 1864 | if (!master->_get_user_prot_info) |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1865 | return -EOPNOTSUPP; |
| 1866 | if (!len) |
| 1867 | return 0; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1868 | return master->_get_user_prot_info(master, len, retlen, buf); |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1869 | } |
| 1870 | EXPORT_SYMBOL_GPL(mtd_get_user_prot_info); |
| 1871 | |
| 1872 | int mtd_read_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, |
| 1873 | size_t *retlen, u_char *buf) |
| 1874 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1875 | struct mtd_info *master = mtd_get_master(mtd); |
| 1876 | |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1877 | *retlen = 0; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1878 | if (!master->_read_user_prot_reg) |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1879 | return -EOPNOTSUPP; |
| 1880 | if (!len) |
| 1881 | return 0; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1882 | return master->_read_user_prot_reg(master, from, len, retlen, buf); |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1883 | } |
| 1884 | EXPORT_SYMBOL_GPL(mtd_read_user_prot_reg); |
| 1885 | |
| 1886 | int mtd_write_user_prot_reg(struct mtd_info *mtd, loff_t to, size_t len, |
| 1887 | size_t *retlen, u_char *buf) |
| 1888 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1889 | struct mtd_info *master = mtd_get_master(mtd); |
Christian Riesch | 9a78bc8 | 2014-03-06 12:42:37 +0100 | [diff] [blame] | 1890 | int ret; |
| 1891 | |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1892 | *retlen = 0; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1893 | if (!master->_write_user_prot_reg) |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1894 | return -EOPNOTSUPP; |
| 1895 | if (!len) |
| 1896 | return 0; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1897 | ret = master->_write_user_prot_reg(master, to, len, retlen, buf); |
Christian Riesch | 9a78bc8 | 2014-03-06 12:42:37 +0100 | [diff] [blame] | 1898 | if (ret) |
| 1899 | return ret; |
| 1900 | |
| 1901 | /* |
| 1902 | * If no data could be written at all, we are out of memory and |
| 1903 | * must return -ENOSPC. |
| 1904 | */ |
| 1905 | return (*retlen) ? 0 : -ENOSPC; |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1906 | } |
| 1907 | EXPORT_SYMBOL_GPL(mtd_write_user_prot_reg); |
| 1908 | |
| 1909 | int mtd_lock_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len) |
| 1910 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1911 | struct mtd_info *master = mtd_get_master(mtd); |
| 1912 | |
| 1913 | if (!master->_lock_user_prot_reg) |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1914 | return -EOPNOTSUPP; |
| 1915 | if (!len) |
| 1916 | return 0; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1917 | return master->_lock_user_prot_reg(master, from, len); |
Artem Bityutskiy | de3cac9 | 2012-02-08 16:37:14 +0200 | [diff] [blame] | 1918 | } |
| 1919 | EXPORT_SYMBOL_GPL(mtd_lock_user_prot_reg); |
| 1920 | |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1921 | /* Chip-supported device locking */ |
| 1922 | int mtd_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len) |
| 1923 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1924 | struct mtd_info *master = mtd_get_master(mtd); |
| 1925 | |
| 1926 | if (!master->_lock) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1927 | return -EOPNOTSUPP; |
Brian Norris | 0c2b4e2 | 2014-07-21 19:06:27 -0700 | [diff] [blame] | 1928 | if (ofs < 0 || ofs >= mtd->size || len > mtd->size - ofs) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1929 | return -EINVAL; |
Artem Bityutskiy | bcb1d23 | 2012-02-06 13:27:43 +0200 | [diff] [blame] | 1930 | if (!len) |
| 1931 | return 0; |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 1932 | |
| 1933 | if (mtd->flags & MTD_SLC_ON_MLC_EMULATION) { |
| 1934 | ofs = (loff_t)mtd_div_by_eb(ofs, mtd) * master->erasesize; |
| 1935 | len = (u64)mtd_div_by_eb(len, mtd) * master->erasesize; |
| 1936 | } |
| 1937 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1938 | return master->_lock(master, mtd_get_master_ofs(mtd, ofs), len); |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1939 | } |
| 1940 | EXPORT_SYMBOL_GPL(mtd_lock); |
| 1941 | |
| 1942 | int mtd_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len) |
| 1943 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1944 | struct mtd_info *master = mtd_get_master(mtd); |
| 1945 | |
| 1946 | if (!master->_unlock) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1947 | return -EOPNOTSUPP; |
Brian Norris | 0c2b4e2 | 2014-07-21 19:06:27 -0700 | [diff] [blame] | 1948 | if (ofs < 0 || ofs >= mtd->size || len > mtd->size - ofs) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1949 | return -EINVAL; |
Artem Bityutskiy | bcb1d23 | 2012-02-06 13:27:43 +0200 | [diff] [blame] | 1950 | if (!len) |
| 1951 | return 0; |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 1952 | |
| 1953 | if (mtd->flags & MTD_SLC_ON_MLC_EMULATION) { |
| 1954 | ofs = (loff_t)mtd_div_by_eb(ofs, mtd) * master->erasesize; |
| 1955 | len = (u64)mtd_div_by_eb(len, mtd) * master->erasesize; |
| 1956 | } |
| 1957 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1958 | return master->_unlock(master, mtd_get_master_ofs(mtd, ofs), len); |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1959 | } |
| 1960 | EXPORT_SYMBOL_GPL(mtd_unlock); |
| 1961 | |
| 1962 | int mtd_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len) |
| 1963 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1964 | struct mtd_info *master = mtd_get_master(mtd); |
| 1965 | |
| 1966 | if (!master->_is_locked) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1967 | return -EOPNOTSUPP; |
Brian Norris | 0c2b4e2 | 2014-07-21 19:06:27 -0700 | [diff] [blame] | 1968 | if (ofs < 0 || ofs >= mtd->size || len > mtd->size - ofs) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1969 | return -EINVAL; |
Artem Bityutskiy | bcb1d23 | 2012-02-06 13:27:43 +0200 | [diff] [blame] | 1970 | if (!len) |
| 1971 | return 0; |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 1972 | |
| 1973 | if (mtd->flags & MTD_SLC_ON_MLC_EMULATION) { |
| 1974 | ofs = (loff_t)mtd_div_by_eb(ofs, mtd) * master->erasesize; |
| 1975 | len = (u64)mtd_div_by_eb(len, mtd) * master->erasesize; |
| 1976 | } |
| 1977 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1978 | return master->_is_locked(master, mtd_get_master_ofs(mtd, ofs), len); |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1979 | } |
| 1980 | EXPORT_SYMBOL_GPL(mtd_is_locked); |
| 1981 | |
Ezequiel Garcia | 8471bb7 | 2014-05-21 19:06:12 -0300 | [diff] [blame] | 1982 | int mtd_block_isreserved(struct mtd_info *mtd, loff_t ofs) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1983 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1984 | struct mtd_info *master = mtd_get_master(mtd); |
| 1985 | |
Brian Norris | 0c2b4e2 | 2014-07-21 19:06:27 -0700 | [diff] [blame] | 1986 | if (ofs < 0 || ofs >= mtd->size) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 1987 | return -EINVAL; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1988 | if (!master->_block_isreserved) |
Ezequiel Garcia | 8471bb7 | 2014-05-21 19:06:12 -0300 | [diff] [blame] | 1989 | return 0; |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 1990 | |
| 1991 | if (mtd->flags & MTD_SLC_ON_MLC_EMULATION) |
| 1992 | ofs = (loff_t)mtd_div_by_eb(ofs, mtd) * master->erasesize; |
| 1993 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 1994 | return master->_block_isreserved(master, mtd_get_master_ofs(mtd, ofs)); |
Ezequiel Garcia | 8471bb7 | 2014-05-21 19:06:12 -0300 | [diff] [blame] | 1995 | } |
| 1996 | EXPORT_SYMBOL_GPL(mtd_block_isreserved); |
| 1997 | |
| 1998 | int mtd_block_isbad(struct mtd_info *mtd, loff_t ofs) |
| 1999 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 2000 | struct mtd_info *master = mtd_get_master(mtd); |
| 2001 | |
Brian Norris | 0c2b4e2 | 2014-07-21 19:06:27 -0700 | [diff] [blame] | 2002 | if (ofs < 0 || ofs >= mtd->size) |
Ezequiel Garcia | 8471bb7 | 2014-05-21 19:06:12 -0300 | [diff] [blame] | 2003 | return -EINVAL; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 2004 | if (!master->_block_isbad) |
Ezequiel Garcia | 8471bb7 | 2014-05-21 19:06:12 -0300 | [diff] [blame] | 2005 | return 0; |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 2006 | |
| 2007 | if (mtd->flags & MTD_SLC_ON_MLC_EMULATION) |
| 2008 | ofs = (loff_t)mtd_div_by_eb(ofs, mtd) * master->erasesize; |
| 2009 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 2010 | return master->_block_isbad(master, mtd_get_master_ofs(mtd, ofs)); |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 2011 | } |
| 2012 | EXPORT_SYMBOL_GPL(mtd_block_isbad); |
| 2013 | |
| 2014 | int mtd_block_markbad(struct mtd_info *mtd, loff_t ofs) |
| 2015 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 2016 | struct mtd_info *master = mtd_get_master(mtd); |
| 2017 | int ret; |
| 2018 | |
| 2019 | if (!master->_block_markbad) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 2020 | return -EOPNOTSUPP; |
Brian Norris | 0c2b4e2 | 2014-07-21 19:06:27 -0700 | [diff] [blame] | 2021 | if (ofs < 0 || ofs >= mtd->size) |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 2022 | return -EINVAL; |
Artem Bityutskiy | 664addc | 2012-02-03 18:13:23 +0200 | [diff] [blame] | 2023 | if (!(mtd->flags & MTD_WRITEABLE)) |
| 2024 | return -EROFS; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 2025 | |
Boris Brezillon | 9e3307a | 2020-05-03 17:53:37 +0200 | [diff] [blame] | 2026 | if (mtd->flags & MTD_SLC_ON_MLC_EMULATION) |
| 2027 | ofs = (loff_t)mtd_div_by_eb(ofs, mtd) * master->erasesize; |
| 2028 | |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 2029 | ret = master->_block_markbad(master, mtd_get_master_ofs(mtd, ofs)); |
| 2030 | if (ret) |
| 2031 | return ret; |
| 2032 | |
| 2033 | while (mtd->parent) { |
| 2034 | mtd->ecc_stats.badblocks++; |
| 2035 | mtd = mtd->parent; |
| 2036 | } |
| 2037 | |
| 2038 | return 0; |
Artem Bityutskiy | 8273a0c | 2012-02-03 14:34:14 +0200 | [diff] [blame] | 2039 | } |
| 2040 | EXPORT_SYMBOL_GPL(mtd_block_markbad); |
| 2041 | |
| 2042 | /* |
Artem Bityutskiy | 52b0203 | 2011-12-30 15:57:25 +0200 | [diff] [blame] | 2043 | * default_mtd_writev - the default writev method |
| 2044 | * @mtd: mtd device description object pointer |
| 2045 | * @vecs: the vectors to write |
| 2046 | * @count: count of vectors in @vecs |
| 2047 | * @to: the MTD device offset to write to |
| 2048 | * @retlen: on exit contains the count of bytes written to the MTD device. |
| 2049 | * |
| 2050 | * This function returns zero in case of success and a negative error code in |
| 2051 | * case of failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | */ |
Artem Bityutskiy | 1dbebd3 | 2011-12-30 16:23:41 +0200 | [diff] [blame] | 2053 | static int default_mtd_writev(struct mtd_info *mtd, const struct kvec *vecs, |
| 2054 | unsigned long count, loff_t to, size_t *retlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2055 | { |
| 2056 | unsigned long i; |
| 2057 | size_t totlen = 0, thislen; |
| 2058 | int ret = 0; |
| 2059 | |
Artem Bityutskiy | 52b0203 | 2011-12-30 15:57:25 +0200 | [diff] [blame] | 2060 | for (i = 0; i < count; i++) { |
| 2061 | if (!vecs[i].iov_len) |
| 2062 | continue; |
| 2063 | ret = mtd_write(mtd, to, vecs[i].iov_len, &thislen, |
| 2064 | vecs[i].iov_base); |
| 2065 | totlen += thislen; |
| 2066 | if (ret || thislen != vecs[i].iov_len) |
| 2067 | break; |
| 2068 | to += vecs[i].iov_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | } |
Artem Bityutskiy | 52b0203 | 2011-12-30 15:57:25 +0200 | [diff] [blame] | 2070 | *retlen = totlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | return ret; |
| 2072 | } |
Artem Bityutskiy | 1dbebd3 | 2011-12-30 16:23:41 +0200 | [diff] [blame] | 2073 | |
| 2074 | /* |
| 2075 | * mtd_writev - the vector-based MTD write method |
| 2076 | * @mtd: mtd device description object pointer |
| 2077 | * @vecs: the vectors to write |
| 2078 | * @count: count of vectors in @vecs |
| 2079 | * @to: the MTD device offset to write to |
| 2080 | * @retlen: on exit contains the count of bytes written to the MTD device. |
| 2081 | * |
| 2082 | * This function returns zero in case of success and a negative error code in |
| 2083 | * case of failure. |
| 2084 | */ |
| 2085 | int mtd_writev(struct mtd_info *mtd, const struct kvec *vecs, |
| 2086 | unsigned long count, loff_t to, size_t *retlen) |
| 2087 | { |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 2088 | struct mtd_info *master = mtd_get_master(mtd); |
| 2089 | |
Artem Bityutskiy | 1dbebd3 | 2011-12-30 16:23:41 +0200 | [diff] [blame] | 2090 | *retlen = 0; |
Artem Bityutskiy | 664addc | 2012-02-03 18:13:23 +0200 | [diff] [blame] | 2091 | if (!(mtd->flags & MTD_WRITEABLE)) |
| 2092 | return -EROFS; |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 2093 | |
| 2094 | if (!master->_writev) |
Artem Bityutskiy | 1dbebd3 | 2011-12-30 16:23:41 +0200 | [diff] [blame] | 2095 | return default_mtd_writev(mtd, vecs, count, to, retlen); |
Miquel Raynal | 46b5889 | 2020-01-14 10:09:52 +0100 | [diff] [blame] | 2096 | |
| 2097 | return master->_writev(master, vecs, count, |
| 2098 | mtd_get_master_ofs(mtd, to), retlen); |
Artem Bityutskiy | 1dbebd3 | 2011-12-30 16:23:41 +0200 | [diff] [blame] | 2099 | } |
| 2100 | EXPORT_SYMBOL_GPL(mtd_writev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2101 | |
Grant Erickson | 33b5371 | 2011-04-08 08:51:32 -0700 | [diff] [blame] | 2102 | /** |
| 2103 | * mtd_kmalloc_up_to - allocate a contiguous buffer up to the specified size |
Artem Bityutskiy | 52b0203 | 2011-12-30 15:57:25 +0200 | [diff] [blame] | 2104 | * @mtd: mtd device description object pointer |
| 2105 | * @size: a pointer to the ideal or maximum size of the allocation, points |
Grant Erickson | 33b5371 | 2011-04-08 08:51:32 -0700 | [diff] [blame] | 2106 | * to the actual allocation size on success. |
| 2107 | * |
| 2108 | * This routine attempts to allocate a contiguous kernel buffer up to |
| 2109 | * the specified size, backing off the size of the request exponentially |
| 2110 | * until the request succeeds or until the allocation size falls below |
| 2111 | * the system page size. This attempts to make sure it does not adversely |
| 2112 | * impact system performance, so when allocating more than one page, we |
Linus Torvalds | caf4919 | 2012-12-10 10:51:16 -0800 | [diff] [blame] | 2113 | * ask the memory allocator to avoid re-trying, swapping, writing back |
| 2114 | * or performing I/O. |
Grant Erickson | 33b5371 | 2011-04-08 08:51:32 -0700 | [diff] [blame] | 2115 | * |
| 2116 | * Note, this function also makes sure that the allocated buffer is aligned to |
| 2117 | * the MTD device's min. I/O unit, i.e. the "mtd->writesize" value. |
| 2118 | * |
| 2119 | * This is called, for example by mtd_{read,write} and jffs2_scan_medium, |
| 2120 | * to handle smaller (i.e. degraded) buffer allocations under low- or |
| 2121 | * fragmented-memory situations where such reduced allocations, from a |
| 2122 | * requested ideal, are allowed. |
| 2123 | * |
| 2124 | * Returns a pointer to the allocated buffer on success; otherwise, NULL. |
| 2125 | */ |
| 2126 | void *mtd_kmalloc_up_to(const struct mtd_info *mtd, size_t *size) |
| 2127 | { |
Mel Gorman | d0164ad | 2015-11-06 16:28:21 -0800 | [diff] [blame] | 2128 | gfp_t flags = __GFP_NOWARN | __GFP_DIRECT_RECLAIM | __GFP_NORETRY; |
Grant Erickson | 33b5371 | 2011-04-08 08:51:32 -0700 | [diff] [blame] | 2129 | size_t min_alloc = max_t(size_t, mtd->writesize, PAGE_SIZE); |
| 2130 | void *kbuf; |
| 2131 | |
| 2132 | *size = min_t(size_t, *size, KMALLOC_MAX_SIZE); |
| 2133 | |
| 2134 | while (*size > min_alloc) { |
| 2135 | kbuf = kmalloc(*size, flags); |
| 2136 | if (kbuf) |
| 2137 | return kbuf; |
| 2138 | |
| 2139 | *size >>= 1; |
| 2140 | *size = ALIGN(*size, mtd->writesize); |
| 2141 | } |
| 2142 | |
| 2143 | /* |
| 2144 | * For the last resort allocation allow 'kmalloc()' to do all sorts of |
| 2145 | * things (write-back, dropping caches, etc) by using GFP_KERNEL. |
| 2146 | */ |
| 2147 | return kmalloc(*size, GFP_KERNEL); |
| 2148 | } |
Grant Erickson | 33b5371 | 2011-04-08 08:51:32 -0700 | [diff] [blame] | 2149 | EXPORT_SYMBOL_GPL(mtd_kmalloc_up_to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2150 | |
Pavel Machek | 2d2dce0 | 2006-03-31 02:29:49 -0800 | [diff] [blame] | 2151 | #ifdef CONFIG_PROC_FS |
| 2152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2153 | /*====================================================================*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2154 | /* Support for /proc/mtd */ |
| 2155 | |
Alexey Dobriyan | 447d9bd | 2011-05-13 23:34:19 +0300 | [diff] [blame] | 2156 | static int mtd_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2157 | { |
Ben Hutchings | f1332ba | 2010-01-29 20:57:11 +0000 | [diff] [blame] | 2158 | struct mtd_info *mtd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | |
Alexey Dobriyan | 447d9bd | 2011-05-13 23:34:19 +0300 | [diff] [blame] | 2160 | seq_puts(m, "dev: size erasesize name\n"); |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 2161 | mutex_lock(&mtd_table_mutex); |
Ben Hutchings | f1332ba | 2010-01-29 20:57:11 +0000 | [diff] [blame] | 2162 | mtd_for_each_device(mtd) { |
Alexey Dobriyan | 447d9bd | 2011-05-13 23:34:19 +0300 | [diff] [blame] | 2163 | seq_printf(m, "mtd%d: %8.8llx %8.8x \"%s\"\n", |
| 2164 | mtd->index, (unsigned long long)mtd->size, |
| 2165 | mtd->erasesize, mtd->name); |
Wanlong Gao | d5ca512 | 2011-05-20 21:14:30 +0800 | [diff] [blame] | 2166 | } |
Ingo Molnar | 48b1926 | 2006-03-31 02:29:41 -0800 | [diff] [blame] | 2167 | mutex_unlock(&mtd_table_mutex); |
Wanlong Gao | d5ca512 | 2011-05-20 21:14:30 +0800 | [diff] [blame] | 2168 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2169 | } |
Kevin Cernekee | 45b0907 | 2009-04-04 11:03:04 -0700 | [diff] [blame] | 2170 | #endif /* CONFIG_PROC_FS */ |
| 2171 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | /*====================================================================*/ |
| 2173 | /* Init code */ |
| 2174 | |
Steve Longerbeam | 445caaa | 2016-08-04 19:31:15 +0530 | [diff] [blame] | 2175 | static struct backing_dev_info * __init mtd_bdi_init(char *name) |
Jens Axboe | 0661b1a | 2010-04-27 09:49:47 +0200 | [diff] [blame] | 2176 | { |
Steve Longerbeam | 445caaa | 2016-08-04 19:31:15 +0530 | [diff] [blame] | 2177 | struct backing_dev_info *bdi; |
Jens Axboe | 0661b1a | 2010-04-27 09:49:47 +0200 | [diff] [blame] | 2178 | int ret; |
| 2179 | |
Christoph Hellwig | aef33c2 | 2020-05-04 14:48:00 +0200 | [diff] [blame] | 2180 | bdi = bdi_alloc(NUMA_NO_NODE); |
Steve Longerbeam | 445caaa | 2016-08-04 19:31:15 +0530 | [diff] [blame] | 2181 | if (!bdi) |
| 2182 | return ERR_PTR(-ENOMEM); |
Christoph Hellwig | 55b2598 | 2020-09-24 08:51:32 +0200 | [diff] [blame] | 2183 | bdi->ra_pages = 0; |
| 2184 | bdi->io_pages = 0; |
Jens Axboe | 0661b1a | 2010-04-27 09:49:47 +0200 | [diff] [blame] | 2185 | |
Jan Kara | fa06052 | 2017-04-12 12:24:37 +0200 | [diff] [blame] | 2186 | /* |
| 2187 | * We put '-0' suffix to the name to get the same name format as we |
| 2188 | * used to get. Since this is called only once, we get a unique name. |
| 2189 | */ |
Jan Kara | 7c4cc30 | 2017-04-12 12:24:49 +0200 | [diff] [blame] | 2190 | ret = bdi_register(bdi, "%.28s-0", name); |
Jens Axboe | 0661b1a | 2010-04-27 09:49:47 +0200 | [diff] [blame] | 2191 | if (ret) |
Jan Kara | fa06052 | 2017-04-12 12:24:37 +0200 | [diff] [blame] | 2192 | bdi_put(bdi); |
Jens Axboe | 0661b1a | 2010-04-27 09:49:47 +0200 | [diff] [blame] | 2193 | |
Steve Longerbeam | 445caaa | 2016-08-04 19:31:15 +0530 | [diff] [blame] | 2194 | return ret ? ERR_PTR(ret) : bdi; |
Jens Axboe | 0661b1a | 2010-04-27 09:49:47 +0200 | [diff] [blame] | 2195 | } |
| 2196 | |
Artem Bityutskiy | 93e5621 | 2013-03-15 12:56:05 +0200 | [diff] [blame] | 2197 | static struct proc_dir_entry *proc_mtd; |
| 2198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2199 | static int __init init_mtd(void) |
| 2200 | { |
David Woodhouse | 15bce40 | 2009-04-05 07:40:58 -0700 | [diff] [blame] | 2201 | int ret; |
Kevin Cernekee | 694bb7f | 2009-04-03 13:00:45 -0700 | [diff] [blame] | 2202 | |
Jens Axboe | 0661b1a | 2010-04-27 09:49:47 +0200 | [diff] [blame] | 2203 | ret = class_register(&mtd_class); |
| 2204 | if (ret) |
| 2205 | goto err_reg; |
| 2206 | |
Steve Longerbeam | 445caaa | 2016-08-04 19:31:15 +0530 | [diff] [blame] | 2207 | mtd_bdi = mtd_bdi_init("mtd"); |
| 2208 | if (IS_ERR(mtd_bdi)) { |
| 2209 | ret = PTR_ERR(mtd_bdi); |
Christoph Hellwig | b4caecd | 2015-01-14 10:42:32 +0100 | [diff] [blame] | 2210 | goto err_bdi; |
Steve Longerbeam | 445caaa | 2016-08-04 19:31:15 +0530 | [diff] [blame] | 2211 | } |
Jens Axboe | 0661b1a | 2010-04-27 09:49:47 +0200 | [diff] [blame] | 2212 | |
Christoph Hellwig | 3f3942a | 2018-05-15 15:57:23 +0200 | [diff] [blame] | 2213 | proc_mtd = proc_create_single("mtd", 0, NULL, mtd_proc_show); |
Artem Bityutskiy | 93e5621 | 2013-03-15 12:56:05 +0200 | [diff] [blame] | 2214 | |
Artem Bityutskiy | 660685d | 2013-03-14 13:27:40 +0200 | [diff] [blame] | 2215 | ret = init_mtdchar(); |
| 2216 | if (ret) |
| 2217 | goto out_procfs; |
| 2218 | |
Mario Rugiero | e8e3edb | 2017-05-29 08:38:41 -0300 | [diff] [blame] | 2219 | dfs_dir_mtd = debugfs_create_dir("mtd", NULL); |
| 2220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | return 0; |
Jens Axboe | 0661b1a | 2010-04-27 09:49:47 +0200 | [diff] [blame] | 2222 | |
Artem Bityutskiy | 660685d | 2013-03-14 13:27:40 +0200 | [diff] [blame] | 2223 | out_procfs: |
| 2224 | if (proc_mtd) |
| 2225 | remove_proc_entry("mtd", NULL); |
Jan Kara | fa06052 | 2017-04-12 12:24:37 +0200 | [diff] [blame] | 2226 | bdi_put(mtd_bdi); |
Christoph Hellwig | b4caecd | 2015-01-14 10:42:32 +0100 | [diff] [blame] | 2227 | err_bdi: |
Jens Axboe | 0661b1a | 2010-04-27 09:49:47 +0200 | [diff] [blame] | 2228 | class_unregister(&mtd_class); |
| 2229 | err_reg: |
| 2230 | pr_err("Error registering mtd class or bdi: %d\n", ret); |
| 2231 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2232 | } |
| 2233 | |
| 2234 | static void __exit cleanup_mtd(void) |
| 2235 | { |
Mario Rugiero | e8e3edb | 2017-05-29 08:38:41 -0300 | [diff] [blame] | 2236 | debugfs_remove_recursive(dfs_dir_mtd); |
Artem Bityutskiy | 660685d | 2013-03-14 13:27:40 +0200 | [diff] [blame] | 2237 | cleanup_mtdchar(); |
Wanlong Gao | d5ca512 | 2011-05-20 21:14:30 +0800 | [diff] [blame] | 2238 | if (proc_mtd) |
Artem Bityutskiy | 93e5621 | 2013-03-15 12:56:05 +0200 | [diff] [blame] | 2239 | remove_proc_entry("mtd", NULL); |
David Woodhouse | 15bce40 | 2009-04-05 07:40:58 -0700 | [diff] [blame] | 2240 | class_unregister(&mtd_class); |
Jan Kara | fa06052 | 2017-04-12 12:24:37 +0200 | [diff] [blame] | 2241 | bdi_put(mtd_bdi); |
Johannes Thumshirn | 35667b9 | 2015-07-08 17:15:34 +0200 | [diff] [blame] | 2242 | idr_destroy(&mtd_idr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2243 | } |
| 2244 | |
| 2245 | module_init(init_mtd); |
| 2246 | module_exit(cleanup_mtd); |
| 2247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | MODULE_LICENSE("GPL"); |
| 2249 | MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>"); |
| 2250 | MODULE_DESCRIPTION("Core MTD registration and access routines"); |