blob: ac01a949b687a4513e7217c0c59ac1f492d06a45 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Common code to handle absent "placeholder" devices
3 * Copyright 2001 Resilience Corporation <ebrower@resilience.com>
Thomas Gleixner1f948b42005-11-07 11:15:37 +00004 * $Id: map_absent.c,v 1.6 2005/11/07 11:14:23 gleixner Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This map driver is used to allocate "placeholder" MTD
Thomas Gleixner1f948b42005-11-07 11:15:37 +00007 * devices on systems that have socketed/removable media.
8 * Use of this driver as a fallback preserves the expected
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * registration of MTD device nodes regardless of probe outcome.
10 * A usage example is as follows:
11 *
12 * my_dev[i] = do_map_probe("cfi", &my_map[i]);
13 * if(NULL == my_dev[i]) {
14 * my_dev[i] = do_map_probe("map_absent", &my_map[i]);
15 * }
16 *
17 * Any device 'probed' with this driver will return -ENODEV
18 * upon open.
19 */
20
21#include <linux/module.h>
22#include <linux/types.h>
23#include <linux/kernel.h>
24#include <linux/errno.h>
25#include <linux/slab.h>
26#include <linux/init.h>
27#include <linux/mtd/mtd.h>
28#include <linux/mtd/map.h>
29#include <linux/mtd/compatmac.h>
30
31static int map_absent_read (struct mtd_info *, loff_t, size_t, size_t *, u_char *);
32static int map_absent_write (struct mtd_info *, loff_t, size_t, size_t *, const u_char *);
33static int map_absent_erase (struct mtd_info *, struct erase_info *);
34static void map_absent_sync (struct mtd_info *);
35static struct mtd_info *map_absent_probe(struct map_info *map);
36static void map_absent_destroy (struct mtd_info *);
37
38
39static struct mtd_chip_driver map_absent_chipdrv = {
40 .probe = map_absent_probe,
41 .destroy = map_absent_destroy,
42 .name = "map_absent",
43 .module = THIS_MODULE
44};
45
46static struct mtd_info *map_absent_probe(struct map_info *map)
47{
48 struct mtd_info *mtd;
49
50 mtd = kmalloc(sizeof(*mtd), GFP_KERNEL);
51 if (!mtd) {
52 return NULL;
53 }
54
55 memset(mtd, 0, sizeof(*mtd));
56
57 map->fldrv = &map_absent_chipdrv;
58 mtd->priv = map;
59 mtd->name = map->name;
60 mtd->type = MTD_ABSENT;
61 mtd->size = map->size;
62 mtd->erase = map_absent_erase;
63 mtd->read = map_absent_read;
64 mtd->write = map_absent_write;
65 mtd->sync = map_absent_sync;
66 mtd->flags = 0;
Artem B. Bityutskiy17ffc7b2006-06-22 18:15:48 +040067 mtd->erasesize = PAGE_SIZE;
68 mtd->writesize = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 __module_get(THIS_MODULE);
71 return mtd;
72}
73
74
75static int map_absent_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf)
76{
77 *retlen = 0;
78 return -ENODEV;
79}
80
81static int map_absent_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf)
82{
83 *retlen = 0;
Thomas Gleixner1f948b42005-11-07 11:15:37 +000084 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
87static int map_absent_erase(struct mtd_info *mtd, struct erase_info *instr)
88{
89 return -ENODEV;
90}
91
92static void map_absent_sync(struct mtd_info *mtd)
93{
94 /* nop */
95}
96
97static void map_absent_destroy(struct mtd_info *mtd)
98{
99 /* nop */
100}
101
102static int __init map_absent_init(void)
103{
104 register_mtd_chip_driver(&map_absent_chipdrv);
105 return 0;
106}
107
108static void __exit map_absent_exit(void)
109{
110 unregister_mtd_chip_driver(&map_absent_chipdrv);
111}
112
113module_init(map_absent_init);
114module_exit(map_absent_exit);
115
116MODULE_LICENSE("GPL");
117MODULE_AUTHOR("Resilience Corporation - Eric Brower <ebrower@resilience.com>");
118MODULE_DESCRIPTION("Placeholder MTD chip driver for 'absent' chips");