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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * /dev/nvram driver for Power Macintosh.
  3.  */
  4. #define NVRAM_VERSION "1.0"
  5. #include <linux/module.h>
  6. #include <linux/types.h>
  7. #include <linux/errno.h>
  8. #include <linux/fs.h>
  9. #include <linux/miscdevice.h>
  10. #include <linux/fcntl.h>
  11. #include <linux/nvram.h>
  12. #include <linux/init.h>
  13. #include <asm/uaccess.h>
  14. #include <asm/nvram.h>
  15. #define NVRAM_SIZE 8192
  16. static loff_t nvram_llseek(struct file *file, loff_t offset, int origin)
  17. {
  18. switch (origin) {
  19. case 1:
  20. offset += file->f_pos;
  21. break;
  22. case 2:
  23. offset += NVRAM_SIZE;
  24. break;
  25. }
  26. if (offset < 0)
  27. return -EINVAL;
  28. file->f_pos = offset;
  29. return file->f_pos;
  30. }
  31. static ssize_t read_nvram(struct file *file, char *buf,
  32.   size_t count, loff_t *ppos)
  33. {
  34. unsigned int i;
  35. char *p = buf;
  36. if (verify_area(VERIFY_WRITE, buf, count))
  37. return -EFAULT;
  38. if (*ppos >= NVRAM_SIZE)
  39. return 0;
  40. for (i = *ppos; count > 0 && i < NVRAM_SIZE; ++i, ++p, --count)
  41. if (__put_user(nvram_read_byte(i), p))
  42. return -EFAULT;
  43. *ppos = i;
  44. return p - buf;
  45. }
  46. static ssize_t write_nvram(struct file *file, const char *buf,
  47.    size_t count, loff_t *ppos)
  48. {
  49. unsigned int i;
  50. const char *p = buf;
  51. char c;
  52. if (verify_area(VERIFY_READ, buf, count))
  53. return -EFAULT;
  54. if (*ppos >= NVRAM_SIZE)
  55. return 0;
  56. for (i = *ppos; count > 0 && i < NVRAM_SIZE; ++i, ++p, --count) {
  57. if (__get_user(c, p))
  58. return -EFAULT;
  59. nvram_write_byte(c, i);
  60. }
  61. *ppos = i;
  62. return p - buf;
  63. }
  64. static int nvram_ioctl(struct inode *inode, struct file *file,
  65. unsigned int cmd, unsigned long arg)
  66. {
  67. switch(cmd) {
  68. case PMAC_NVRAM_GET_OFFSET:
  69. {
  70. int part, offset;
  71. if (copy_from_user(&part,(void*)arg,sizeof(part))!=0)
  72. return -EFAULT;
  73. if (part < pmac_nvram_OF || part > pmac_nvram_NR)
  74. return -EINVAL;
  75. offset = pmac_get_partition(part);
  76. if (copy_to_user((void*)arg,&offset,sizeof(offset))!=0)
  77. return -EFAULT;
  78. break;
  79. }
  80. default:
  81. return -EINVAL;
  82. }
  83. return 0;
  84. }
  85. struct file_operations nvram_fops = {
  86. owner: THIS_MODULE,
  87. llseek: nvram_llseek,
  88. read: read_nvram,
  89. write: write_nvram,
  90. ioctl: nvram_ioctl,
  91. };
  92. static struct miscdevice nvram_dev = {
  93. NVRAM_MINOR,
  94. "nvram",
  95. &nvram_fops
  96. };
  97. int __init nvram_init(void)
  98. {
  99. printk(KERN_INFO "Macintosh non-volatile memory driver v%sn",
  100. NVRAM_VERSION);
  101. misc_register(&nvram_dev);
  102. return 0;
  103. }
  104. void __exit nvram_cleanup(void)
  105. {
  106.         misc_deregister( &nvram_dev );
  107. }
  108. module_init(nvram_init);
  109. module_exit(nvram_cleanup);
  110. MODULE_LICENSE("GPL");