1 // SPDX-License-Identifier: GPL-2.0
3 * Common code to handle map devices which are simple ROM
7 #include <linux/module.h>
8 #include <linux/types.h>
9 #include <linux/kernel.h>
11 #include <asm/byteorder.h>
12 #include <linux/errno.h>
13 #include <linux/slab.h>
14 #include <linux/init.h>
16 #include <linux/mtd/mtd.h>
17 #include <linux/mtd/map.h>
19 static int maprom_read (struct mtd_info *, loff_t, size_t, size_t *, u_char *);
20 static int maprom_write (struct mtd_info *, loff_t, size_t, size_t *, const u_char *);
21 static void maprom_nop (struct mtd_info *);
22 static struct mtd_info *map_rom_probe(struct map_info *map);
23 static int maprom_erase (struct mtd_info *mtd, struct erase_info *info);
24 static int maprom_point (struct mtd_info *mtd, loff_t from, size_t len,
25 size_t *retlen, void **virt, resource_size_t *phys);
26 static int maprom_unpoint(struct mtd_info *mtd, loff_t from, size_t len);
29 static struct mtd_chip_driver maprom_chipdrv = {
30 .probe = map_rom_probe,
35 static unsigned int default_erasesize(struct map_info *map)
37 const __be32 *erase_size = NULL;
39 erase_size = of_get_property(map->device_node, "erase-size", NULL);
41 return !erase_size ? map->size : be32_to_cpu(*erase_size);
44 static struct mtd_info *map_rom_probe(struct map_info *map)
48 mtd = kzalloc(sizeof(*mtd), GFP_KERNEL);
52 map->fldrv = &maprom_chipdrv;
54 mtd->name = map->name;
56 mtd->size = map->size;
57 mtd->_point = maprom_point;
58 mtd->_unpoint = maprom_unpoint;
59 mtd->_read = maprom_read;
60 mtd->_write = maprom_write;
61 mtd->_sync = maprom_nop;
62 mtd->_erase = maprom_erase;
63 mtd->flags = MTD_CAP_ROM;
64 mtd->erasesize = default_erasesize(map);
66 mtd->writebufsize = 1;
68 __module_get(THIS_MODULE);
73 static int maprom_point(struct mtd_info *mtd, loff_t from, size_t len,
74 size_t *retlen, void **virt, resource_size_t *phys)
76 struct map_info *map = mtd->priv;
80 *virt = map->virt + from;
82 *phys = map->phys + from;
87 static int maprom_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
92 static int maprom_read (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf)
94 struct map_info *map = mtd->priv;
96 map_copy_from(map, buf, from, len);
101 static void maprom_nop(struct mtd_info *mtd)
103 /* Nothing to see here */
106 static int maprom_write (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf)
111 static int maprom_erase (struct mtd_info *mtd, struct erase_info *info)
113 /* We do our best 8) */
117 static int __init map_rom_init(void)
119 register_mtd_chip_driver(&maprom_chipdrv);
123 static void __exit map_rom_exit(void)
125 unregister_mtd_chip_driver(&maprom_chipdrv);
128 module_init(map_rom_init);
129 module_exit(map_rom_exit);
131 MODULE_LICENSE("GPL");
132 MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
133 MODULE_DESCRIPTION("MTD chip driver for ROM chips");