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