2 * Common code to handle absent "placeholder" devices
3 * Copyright 2001 Resilience Corporation <ebrower@resilience.com>
5 * This map driver is used to allocate "placeholder" MTD
6 * devices on systems that have socketed/removable media.
7 * Use of this driver as a fallback preserves the expected
8 * registration of MTD device nodes regardless of probe outcome.
9 * A usage example is as follows:
11 * my_dev[i] = do_map_probe("cfi", &my_map[i]);
12 * if(NULL == my_dev[i]) {
13 * my_dev[i] = do_map_probe("map_absent", &my_map[i]);
16 * Any device 'probed' with this driver will return -ENODEV
20 #include <linux/module.h>
21 #include <linux/types.h>
22 #include <linux/kernel.h>
23 #include <linux/errno.h>
24 #include <linux/slab.h>
25 #include <linux/init.h>
26 #include <linux/mtd/mtd.h>
27 #include <linux/mtd/map.h>
29 static int map_absent_read (struct mtd_info
*, loff_t
, size_t, size_t *, u_char
*);
30 static int map_absent_write (struct mtd_info
*, loff_t
, size_t, size_t *, const u_char
*);
31 static int map_absent_erase (struct mtd_info
*, struct erase_info
*);
32 static void map_absent_sync (struct mtd_info
*);
33 static struct mtd_info
*map_absent_probe(struct map_info
*map
);
34 static void map_absent_destroy (struct mtd_info
*);
37 static struct mtd_chip_driver map_absent_chipdrv
= {
38 .probe
= map_absent_probe
,
39 .destroy
= map_absent_destroy
,
44 static struct mtd_info
*map_absent_probe(struct map_info
*map
)
48 mtd
= kzalloc(sizeof(*mtd
), GFP_KERNEL
);
53 map
->fldrv
= &map_absent_chipdrv
;
55 mtd
->name
= map
->name
;
56 mtd
->type
= MTD_ABSENT
;
57 mtd
->size
= map
->size
;
58 mtd
->_erase
= map_absent_erase
;
59 mtd
->_read
= map_absent_read
;
60 mtd
->_write
= map_absent_write
;
61 mtd
->_sync
= map_absent_sync
;
63 mtd
->erasesize
= PAGE_SIZE
;
66 __module_get(THIS_MODULE
);
71 static int map_absent_read(struct mtd_info
*mtd
, loff_t from
, size_t len
, size_t *retlen
, u_char
*buf
)
76 static int map_absent_write(struct mtd_info
*mtd
, loff_t to
, size_t len
, size_t *retlen
, const u_char
*buf
)
81 static int map_absent_erase(struct mtd_info
*mtd
, struct erase_info
*instr
)
86 static void map_absent_sync(struct mtd_info
*mtd
)
91 static void map_absent_destroy(struct mtd_info
*mtd
)
96 static int __init
map_absent_init(void)
98 register_mtd_chip_driver(&map_absent_chipdrv
);
102 static void __exit
map_absent_exit(void)
104 unregister_mtd_chip_driver(&map_absent_chipdrv
);
107 module_init(map_absent_init
);
108 module_exit(map_absent_exit
);
110 MODULE_LICENSE("GPL");
111 MODULE_AUTHOR("Resilience Corporation - Eric Brower <ebrower@resilience.com>");
112 MODULE_DESCRIPTION("Placeholder MTD chip driver for 'absent' chips");