map_absent.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Common code to handle absent "placeholder" devices
  3.  * Copyright 2001 Resilience Corporation <ebrower@resilience.com>
  4.  * $Id: map_absent.c,v 1.2 2001/10/02 15:05:12 dwmw2 Exp $
  5.  *
  6.  * This map driver is used to allocate "placeholder" MTD
  7.  * devices on systems that have socketed/removable media. 
  8.  * Use of this driver as a fallback preserves the expected 
  9.  * 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. #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/mtd/map.h>
  26. static int map_absent_read (struct mtd_info *, loff_t, size_t, size_t *, u_char *);
  27. static int map_absent_write (struct mtd_info *, loff_t, size_t, size_t *, const u_char *);
  28. static int map_absent_erase (struct mtd_info *, struct erase_info *);
  29. static void map_absent_sync (struct mtd_info *);
  30. static struct mtd_info *map_absent_probe(struct map_info *map);
  31. static void map_absent_destroy (struct mtd_info *);
  32. static struct mtd_chip_driver map_absent_chipdrv = {
  33. probe:  map_absent_probe,
  34. destroy: map_absent_destroy,
  35. name:  "map_absent",
  36. module:  THIS_MODULE
  37. };
  38. static struct mtd_info *map_absent_probe(struct map_info *map)
  39. {
  40. struct mtd_info *mtd;
  41. mtd = kmalloc(sizeof(*mtd), GFP_KERNEL);
  42. if (!mtd) {
  43. return NULL;
  44. }
  45. memset(mtd, 0, sizeof(*mtd));
  46. map->fldrv  = &map_absent_chipdrv;
  47. mtd->priv  = map;
  48. mtd->name  = map->name;
  49. mtd->type  = MTD_ABSENT;
  50. mtd->size  = map->size;
  51. mtd->erase  = map_absent_erase;
  52. mtd->read  = map_absent_read;
  53. mtd->write  = map_absent_write;
  54. mtd->sync  = map_absent_sync;
  55. mtd->flags  = 0;
  56. mtd->erasesize = PAGE_SIZE;
  57. MOD_INC_USE_COUNT;
  58. return mtd;
  59. }
  60. static int map_absent_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf)
  61. {
  62. *retlen = 0;
  63. return -ENODEV;
  64. }
  65. static int map_absent_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf)
  66. {
  67. *retlen = 0;
  68. return -ENODEV; 
  69. }
  70. static int map_absent_erase(struct mtd_info *mtd, struct erase_info *instr)
  71. {
  72. return -ENODEV;
  73. }
  74. static void map_absent_sync(struct mtd_info *mtd)
  75. {
  76. /* nop */
  77. }
  78. static void map_absent_destroy(struct mtd_info *mtd)
  79. {
  80. /* nop */
  81. }
  82. int __init map_absent_init(void)
  83. {
  84. register_mtd_chip_driver(&map_absent_chipdrv);
  85. return 0;
  86. }
  87. static void __exit map_absent_exit(void)
  88. {
  89. unregister_mtd_chip_driver(&map_absent_chipdrv);
  90. }
  91. module_init(map_absent_init);
  92. module_exit(map_absent_exit);
  93. MODULE_LICENSE("GPL");
  94. MODULE_AUTHOR("Resilience Corporation - Eric Brower <ebrower@resilience.com>");
  95. MODULE_DESCRIPTION("Placeholder MTD chip driver for 'absent' chips");