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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #include <linux/config.h>
  2. #include <linux/module.h>
  3. #include <linux/init.h>
  4. #include <linux/kernel.h>
  5. #include <linux/miscdevice.h>
  6. #include <linux/slab.h>
  7. #include <asm/gsc.h>
  8. #include <asm/uaccess.h>
  9. #include <asm/eisa_eeprom.h>
  10. #define  EISA_EEPROM_MINOR 241
  11. static unsigned long eeprom_addr;
  12. static long long eisa_eeprom_llseek(struct file *file, loff_t offset, int origin )
  13. {
  14. switch (origin) {
  15.   case 0:
  16. /* nothing to do */
  17. break;
  18.   case 1:
  19. offset += file->f_pos;
  20. break;
  21.   case 2:
  22. offset += HPEE_MAX_LENGTH;
  23. break;
  24. }
  25. return (offset >= 0 && offset < HPEE_MAX_LENGTH) ? (file->f_pos = offset) : -EINVAL;
  26. }
  27. static ssize_t eisa_eeprom_read(struct file * file,
  28.       char *buf, size_t count, loff_t *ppos )
  29. {
  30. unsigned char *tmp;
  31. ssize_t ret;
  32. int i;
  33. if (*ppos >= HPEE_MAX_LENGTH)
  34. return 0;
  35. count = *ppos + count < HPEE_MAX_LENGTH ? count : HPEE_MAX_LENGTH - *ppos;
  36. tmp = kmalloc(count, GFP_KERNEL);
  37. if (tmp) {
  38. for (i = 0; i < count; i++)
  39. tmp[i] = gsc_readb(eeprom_addr+(*ppos)++);
  40. if (copy_to_user (buf, tmp, count))
  41. ret = -EFAULT;
  42. else
  43. ret = count;
  44. kfree (tmp);
  45. } else
  46. ret = -ENOMEM;
  47. return ret;
  48. }
  49. static int eisa_eeprom_ioctl(struct inode *inode, struct file *file, 
  50.    unsigned int cmd,
  51.    unsigned long arg)
  52. {
  53. return -ENOTTY;
  54. }
  55. static int eisa_eeprom_open(struct inode *inode, struct file *file)
  56. {
  57. if (file->f_mode & 2 || eeprom_addr == 0)
  58. return -EINVAL;
  59.    
  60. return 0;
  61. }
  62. static int eisa_eeprom_release(struct inode *inode, struct file *file)
  63. {
  64. return 0;
  65. }
  66. /*
  67.  * The various file operations we support.
  68.  */
  69. static struct file_operations eisa_eeprom_fops = {
  70. owner: THIS_MODULE,
  71. llseek: eisa_eeprom_llseek,
  72. read: eisa_eeprom_read,
  73. ioctl: eisa_eeprom_ioctl,
  74. open: eisa_eeprom_open,
  75. release: eisa_eeprom_release,
  76. };
  77. static struct miscdevice eisa_eeprom_dev=
  78. {
  79. EISA_EEPROM_MINOR,
  80. "eisa eeprom",
  81. &eisa_eeprom_fops
  82. };
  83. int __init eisa_eeprom_init(unsigned long addr)
  84. {
  85. if (addr) {
  86. eeprom_addr = addr;
  87. misc_register(&eisa_eeprom_dev);
  88. printk(KERN_INFO "EISA EEPROM at 0x%lxn", eeprom_addr);
  89. }
  90. return 0;
  91. }
  92. MODULE_LICENSE("GPL");