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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: chipreg.c,v 1.13 2002/02/21 08:26:58 dwmw2 Exp $
  3.  *
  4.  * Registration for chip drivers
  5.  *
  6.  */
  7. #include <linux/kernel.h>
  8. #include <linux/config.h>
  9. #include <linux/kmod.h>
  10. #include <linux/spinlock.h>
  11. #include <linux/mtd/compatmac.h>
  12. #include <linux/mtd/map.h>
  13. spinlock_t chip_drvs_lock = SPIN_LOCK_UNLOCKED;
  14. static LIST_HEAD(chip_drvs_list);
  15. void register_mtd_chip_driver(struct mtd_chip_driver *drv)
  16. {
  17. spin_lock(&chip_drvs_lock);
  18. list_add(&drv->list, &chip_drvs_list);
  19. spin_unlock(&chip_drvs_lock);
  20. }
  21. void unregister_mtd_chip_driver(struct mtd_chip_driver *drv)
  22. {
  23. spin_lock(&chip_drvs_lock);
  24. list_del(&drv->list);
  25. spin_unlock(&chip_drvs_lock);
  26. }
  27. static struct mtd_chip_driver *get_mtd_chip_driver (const char *name)
  28. {
  29. struct list_head *pos;
  30. struct mtd_chip_driver *ret = NULL, *this;
  31. spin_lock(&chip_drvs_lock);
  32. list_for_each(pos, &chip_drvs_list) {
  33. this = list_entry(pos, typeof(*this), list);
  34. if (!strcmp(this->name, name)) {
  35. ret = this;
  36. break;
  37. }
  38. }
  39. if (ret && !try_inc_mod_count(ret->module)) {
  40. /* Eep. Failed. */
  41. ret = NULL;
  42. }
  43. spin_unlock(&chip_drvs_lock);
  44. return ret;
  45. }
  46. /* Hide all the horrid details, like some silly person taking
  47.    get_module_symbol() away from us, from the caller. */
  48. struct mtd_info *do_map_probe(const char *name, struct map_info *map)
  49. {
  50. struct mtd_chip_driver *drv;
  51. struct mtd_info *ret;
  52. drv = get_mtd_chip_driver(name);
  53. if (!drv && !request_module(name))
  54. drv = get_mtd_chip_driver(name);
  55. if (!drv)
  56. return NULL;
  57. ret = drv->probe(map);
  58. #ifdef CONFIG_MODULES
  59. /* We decrease the use count here. It may have been a 
  60.    probe-only module, which is no longer required from this
  61.    point, having given us a handle on (and increased the use
  62.    count of) the actual driver code.
  63. */
  64. if(drv->module)
  65. __MOD_DEC_USE_COUNT(drv->module);
  66. #endif
  67. if (ret)
  68. return ret;
  69. return NULL;
  70. }
  71. EXPORT_SYMBOL(register_mtd_chip_driver);
  72. EXPORT_SYMBOL(unregister_mtd_chip_driver);
  73. EXPORT_SYMBOL(do_map_probe);
  74. MODULE_LICENSE("GPL");
  75. MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
  76. MODULE_DESCRIPTION("Core routines for registering and invoking MTD chip drivers");