mtdcore.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: mtdcore.c,v 1.32 2002/03/07 18:38:10 joern Exp $
  3.  *
  4.  * Core registration and callback routines for MTD
  5.  * drivers and users.
  6.  *
  7.  */
  8. #include <linux/config.h>
  9. #include <linux/module.h>
  10. #include <linux/kernel.h>
  11. #include <linux/sched.h>
  12. #include <linux/ptrace.h>
  13. #include <linux/slab.h>
  14. #include <linux/string.h>
  15. #include <linux/timer.h>
  16. #include <linux/major.h>
  17. #include <linux/fs.h>
  18. #include <linux/ioctl.h>
  19. #include <stdarg.h>
  20. #include <linux/mtd/compatmac.h>
  21. #ifdef CONFIG_PROC_FS
  22. #include <linux/proc_fs.h>
  23. #endif
  24. #include <linux/mtd/mtd.h>
  25. static DECLARE_MUTEX(mtd_table_mutex);
  26. static struct mtd_info *mtd_table[MAX_MTD_DEVICES];
  27. static struct mtd_notifier *mtd_notifiers = NULL;
  28. /**
  29.  * add_mtd_device - register an MTD device
  30.  * @mtd: pointer to new MTD device info structure
  31.  *
  32.  * Add a device to the list of MTD devices present in the system, and
  33.  * notify each currently active MTD 'user' of its arrival. Returns
  34.  * zero on success or 1 on failure, which currently will only happen
  35.  * if the number of present devices exceeds MAX_MTD_DEVICES (i.e. 16)
  36.  */
  37. int add_mtd_device(struct mtd_info *mtd)
  38. {
  39. int i;
  40. down(&mtd_table_mutex);
  41. for (i=0; i< MAX_MTD_DEVICES; i++)
  42. if (!mtd_table[i])
  43. {
  44. struct mtd_notifier *not=mtd_notifiers;
  45. mtd_table[i] = mtd;
  46. mtd->index = i;
  47. DEBUG(0, "mtd: Giving out device %d to %sn",i, mtd->name);
  48. while (not)
  49. {
  50. (*(not->add))(mtd);
  51. not = not->next;
  52. }
  53. up(&mtd_table_mutex);
  54. MOD_INC_USE_COUNT;
  55. return 0;
  56. }
  57. up(&mtd_table_mutex);
  58. return 1;
  59. }
  60. /**
  61.  * del_mtd_device - unregister an MTD device
  62.  * @mtd: pointer to MTD device info structure
  63.  *
  64.  * Remove a device from the list of MTD devices present in the system,
  65.  * and notify each currently active MTD 'user' of its departure.
  66.  * Returns zero on success or 1 on failure, which currently will happen
  67.  * if the requested device does not appear to be present in the list.
  68.  */
  69. int del_mtd_device (struct mtd_info *mtd)
  70. {
  71. struct mtd_notifier *not=mtd_notifiers;
  72. int i;
  73. down(&mtd_table_mutex);
  74. for (i=0; i < MAX_MTD_DEVICES; i++)
  75. {
  76. if (mtd_table[i] == mtd)
  77. {
  78. while (not)
  79. {
  80. (*(not->remove))(mtd);
  81. not = not->next;
  82. }
  83. mtd_table[i] = NULL;
  84. up (&mtd_table_mutex);
  85. MOD_DEC_USE_COUNT;
  86. return 0;
  87. }
  88. }
  89. up(&mtd_table_mutex);
  90. return 1;
  91. }
  92. /**
  93.  * register_mtd_user - register a 'user' of MTD devices.
  94.  * @new: pointer to notifier info structure
  95.  *
  96.  * Registers a pair of callbacks function to be called upon addition
  97.  * or removal of MTD devices. Causes the 'add' callback to be immediately
  98.  * invoked for each MTD device currently present in the system.
  99.  */
  100. void register_mtd_user (struct mtd_notifier *new)
  101. {
  102. int i;
  103. down(&mtd_table_mutex);
  104. new->next = mtd_notifiers;
  105. mtd_notifiers = new;
  106.   MOD_INC_USE_COUNT;
  107. for (i=0; i< MAX_MTD_DEVICES; i++)
  108. if (mtd_table[i])
  109. new->add(mtd_table[i]);
  110. up(&mtd_table_mutex);
  111. }
  112. /**
  113.  * register_mtd_user - unregister a 'user' of MTD devices.
  114.  * @new: pointer to notifier info structure
  115.  *
  116.  * Removes a callback function pair from the list of 'users' to be
  117.  * notified upon addition or removal of MTD devices. Causes the
  118.  * 'remove' callback to be immediately invoked for each MTD device
  119.  * currently present in the system.
  120.  */
  121. int unregister_mtd_user (struct mtd_notifier *old)
  122. {
  123. struct mtd_notifier **prev = &mtd_notifiers;
  124. struct mtd_notifier *cur;
  125. int i;
  126. down(&mtd_table_mutex);
  127. while ((cur = *prev)) {
  128. if (cur == old) {
  129. *prev = cur->next;
  130. MOD_DEC_USE_COUNT;
  131. for (i=0; i< MAX_MTD_DEVICES; i++)
  132. if (mtd_table[i])
  133. old->remove(mtd_table[i]);
  134. up(&mtd_table_mutex);
  135. return 0;
  136. }
  137. prev = &cur->next;
  138. }
  139. up(&mtd_table_mutex);
  140. return 1;
  141. }
  142. /**
  143.  * __get_mtd_device - obtain a validated handle for an MTD device
  144.  * @mtd: last known address of the required MTD device
  145.  * @num: internal device number of the required MTD device
  146.  *
  147.  * Given a number and NULL address, return the num'th entry in the device
  148.  * table, if any. Given an address and num == -1, search the device table
  149.  * for a device with that address and return if it's still present. Given
  150.  * both, return the num'th driver only if its address matches. Return NULL
  151.  * if not. get_mtd_device() increases the use count, but
  152.  * __get_mtd_device() doesn't - you should generally use get_mtd_device().
  153.  */
  154. struct mtd_info *__get_mtd_device(struct mtd_info *mtd, int num)
  155. {
  156. struct mtd_info *ret = NULL;
  157. int i;
  158. down(&mtd_table_mutex);
  159. if (num == -1) {
  160. for (i=0; i< MAX_MTD_DEVICES; i++)
  161. if (mtd_table[i] == mtd)
  162. ret = mtd_table[i];
  163. } else if (num < MAX_MTD_DEVICES) {
  164. ret = mtd_table[num];
  165. if (mtd && mtd != ret)
  166. ret = NULL;
  167. }
  168. up(&mtd_table_mutex);
  169. return ret;
  170. }
  171. EXPORT_SYMBOL(add_mtd_device);
  172. EXPORT_SYMBOL(del_mtd_device);
  173. EXPORT_SYMBOL(__get_mtd_device);
  174. EXPORT_SYMBOL(register_mtd_user);
  175. EXPORT_SYMBOL(unregister_mtd_user);
  176. /*====================================================================*/
  177. /* Power management code */
  178. #ifdef CONFIG_PM
  179. #include <linux/pm.h>
  180. static struct pm_dev *mtd_pm_dev = NULL;
  181. static int mtd_pm_callback(struct pm_dev *dev, pm_request_t rqst, void *data)
  182. {
  183. int ret = 0, i;
  184. if (down_trylock(&mtd_table_mutex))
  185. return -EAGAIN;
  186. if (rqst == PM_SUSPEND) {
  187. for (i = 0; ret == 0 && i < MAX_MTD_DEVICES; i++) {
  188. if (mtd_table[i] && mtd_table[i]->suspend)
  189. ret = mtd_table[i]->suspend(mtd_table[i]);
  190. }
  191. } else i = MAX_MTD_DEVICES-1;
  192. if (rqst == PM_RESUME || ret) {
  193. for ( ; i >= 0; i--) {
  194. if (mtd_table[i] && mtd_table[i]->resume)
  195. mtd_table[i]->resume(mtd_table[i]);
  196. }
  197. }
  198. up(&mtd_table_mutex);
  199. return ret;
  200. }
  201. #endif
  202. /*====================================================================*/
  203. /* Support for /proc/mtd */
  204. #ifdef CONFIG_PROC_FS
  205. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,0)
  206. static struct proc_dir_entry *proc_mtd;
  207. #endif
  208. static inline int mtd_proc_info (char *buf, int i)
  209. {
  210. struct mtd_info *this = mtd_table[i];
  211. if (!this)
  212. return 0;
  213. return sprintf(buf, "mtd%d: %8.8x %8.8x "%s"n", i, this->size,
  214.        this->erasesize, this->name);
  215. }
  216. static int mtd_read_proc ( char *page, char **start, off_t off,int count
  217. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,0)
  218.                        ,int *eof, void *data_unused
  219. #else
  220.                         ,int unused
  221. #endif
  222. )
  223. {
  224. int len, l, i;
  225.         off_t   begin = 0;
  226. down(&mtd_table_mutex);
  227. len = sprintf(page, "dev:    size   erasesize  namen");
  228.         for (i=0; i< MAX_MTD_DEVICES; i++) {
  229.                 l = mtd_proc_info(page + len, i);
  230.                 len += l;
  231.                 if (len+begin > off+count)
  232.                         goto done;
  233.                 if (len+begin < off) {
  234.                         begin += len;
  235.                         len = 0;
  236.                 }
  237.         }
  238. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,0)
  239.         *eof = 1;
  240. #endif
  241. done:
  242. up(&mtd_table_mutex);
  243.         if (off >= len+begin)
  244.                 return 0;
  245.         *start = page + (off-begin);
  246.         return ((count < begin+len-off) ? count : begin+len-off);
  247. }
  248. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,2,0)
  249. struct proc_dir_entry mtd_proc_entry = {
  250.         0,                 /* low_ino: the inode -- dynamic */
  251.         3, "mtd",     /* len of name and name */
  252.         S_IFREG | S_IRUGO, /* mode */
  253.         1, 0, 0,           /* nlinks, owner, group */
  254.         0, NULL,           /* size - unused; operations -- use default */
  255.         &mtd_read_proc,   /* function used to read data */
  256.         /* nothing more */
  257.     };
  258. #endif
  259. #endif /* CONFIG_PROC_FS */
  260. /*====================================================================*/
  261. /* Init code */
  262. int __init init_mtd(void)
  263. {
  264. #ifdef CONFIG_PROC_FS
  265. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,0)
  266. if ((proc_mtd = create_proc_entry( "mtd", 0, 0 )))
  267.   proc_mtd->read_proc = mtd_read_proc;
  268. #else
  269.         proc_register_dynamic(&proc_root,&mtd_proc_entry);
  270. #endif
  271. #endif
  272. #if LINUX_VERSION_CODE < 0x20212
  273. init_mtd_devices();
  274. #endif
  275. #ifdef CONFIG_PM
  276. mtd_pm_dev = pm_register(PM_UNKNOWN_DEV, 0, mtd_pm_callback);
  277. #endif
  278. return 0;
  279. }
  280. static void __exit cleanup_mtd(void)
  281. {
  282. #ifdef CONFIG_PM
  283. if (mtd_pm_dev) {
  284. pm_unregister(mtd_pm_dev);
  285. mtd_pm_dev = NULL;
  286. }
  287. #endif
  288. #ifdef CONFIG_PROC_FS
  289. #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,0)
  290.         if (proc_mtd)
  291.           remove_proc_entry( "mtd", 0);
  292. #else
  293.         proc_unregister(&proc_root,mtd_proc_entry.low_ino);
  294. #endif
  295. #endif
  296. }
  297. module_init(init_mtd);
  298. module_exit(cleanup_mtd);
  299. MODULE_LICENSE("GPL");
  300. MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
  301. MODULE_DESCRIPTION("Core MTD registration and access routines");