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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: flash.c,v 1.24 2001/10/08 22:19:51 davem Exp $
  2.  * flash.c: Allow mmap access to the OBP Flash, for OBP updates.
  3.  *
  4.  * Copyright (C) 1997  Eddie C. Dost  (ecd@skynet.be)
  5.  */
  6. #include <linux/config.h>
  7. #include <linux/module.h>
  8. #include <linux/types.h>
  9. #include <linux/errno.h>
  10. #include <linux/miscdevice.h>
  11. #include <linux/slab.h>
  12. #include <linux/fcntl.h>
  13. #include <linux/poll.h>
  14. #include <linux/init.h>
  15. #include <linux/smp_lock.h>
  16. #include <linux/spinlock.h>
  17. #include <asm/system.h>
  18. #include <asm/uaccess.h>
  19. #include <asm/pgtable.h>
  20. #include <asm/io.h>
  21. #include <asm/sbus.h>
  22. #include <asm/ebus.h>
  23. static spinlock_t flash_lock = SPIN_LOCK_UNLOCKED;
  24. static struct {
  25. unsigned long read_base; /* Physical read address */
  26. unsigned long write_base; /* Physical write address */
  27. unsigned long read_size; /* Size of read area */
  28. unsigned long write_size; /* Size of write area */
  29. unsigned long busy; /* In use? */
  30. } flash;
  31. #define FLASH_MINOR 152
  32. static int
  33. flash_mmap(struct file *file, struct vm_area_struct *vma)
  34. {
  35. unsigned long addr;
  36. unsigned long size;
  37. spin_lock(&flash_lock);
  38. if (flash.read_base == flash.write_base) {
  39. addr = flash.read_base;
  40. size = flash.read_size;
  41. } else {
  42. if ((vma->vm_flags & VM_READ) &&
  43.     (vma->vm_flags & VM_WRITE)) {
  44. spin_unlock(&flash_lock);
  45. return -EINVAL;
  46. }
  47. if (vma->vm_flags & VM_READ) {
  48. addr = flash.read_base;
  49. size = flash.read_size;
  50. } else if (vma->vm_flags & VM_WRITE) {
  51. addr = flash.write_base;
  52. size = flash.write_size;
  53. } else {
  54. spin_unlock(&flash_lock);
  55. return -ENXIO;
  56. }
  57. }
  58. spin_unlock(&flash_lock);
  59. if ((vma->vm_pgoff << PAGE_SHIFT) > size)
  60. return -ENXIO;
  61. addr += (vma->vm_pgoff << PAGE_SHIFT);
  62. if (vma->vm_end - (vma->vm_start + (vma->vm_pgoff << PAGE_SHIFT)) > size)
  63. size = vma->vm_end - (vma->vm_start + (vma->vm_pgoff << PAGE_SHIFT));
  64. pgprot_val(vma->vm_page_prot) &= ~(_PAGE_CACHE);
  65. pgprot_val(vma->vm_page_prot) |= _PAGE_E;
  66. vma->vm_flags |= (VM_SHM | VM_LOCKED);
  67. if (remap_page_range(vma->vm_start, addr, size, vma->vm_page_prot))
  68. return -EAGAIN;
  69. return 0;
  70. }
  71. static long long
  72. flash_llseek(struct file *file, long long offset, int origin)
  73. {
  74. switch (origin) {
  75. case 0:
  76. file->f_pos = offset;
  77. break;
  78. case 1:
  79. file->f_pos += offset;
  80. if (file->f_pos > flash.read_size)
  81. file->f_pos = flash.read_size;
  82. break;
  83. case 2:
  84. file->f_pos = flash.read_size;
  85. break;
  86. default:
  87. return -EINVAL;
  88. }
  89. return file->f_pos;
  90. }
  91. static ssize_t
  92. flash_read(struct file * file, char * buf,
  93.    size_t count, loff_t *ppos)
  94. {
  95. unsigned long p = file->f_pos;
  96. int i;
  97. if (count > flash.read_size - p)
  98. count = flash.read_size - p;
  99. for (i = 0; i < count; i++) {
  100. u8 data = readb(flash.read_base + p + i);
  101. if (put_user(data, buf))
  102. return -EFAULT;
  103. buf++;
  104. }
  105. file->f_pos += count;
  106. return count;
  107. }
  108. static int
  109. flash_open(struct inode *inode, struct file *file)
  110. {
  111. if (test_and_set_bit(0, (void *)&flash.busy) != 0)
  112. return -EBUSY;
  113. return 0;
  114. }
  115. static int
  116. flash_release(struct inode *inode, struct file *file)
  117. {
  118. spin_lock(&flash_lock);
  119. flash.busy = 0;
  120. spin_unlock(&flash_lock);
  121. return 0;
  122. }
  123. static struct file_operations flash_fops = {
  124. /* no write to the Flash, use mmap
  125.  * and play flash dependent tricks.
  126.  */
  127. owner: THIS_MODULE,
  128. llseek: flash_llseek,
  129. read: flash_read,
  130. mmap: flash_mmap,
  131. open: flash_open,
  132. release: flash_release,
  133. };
  134. static struct miscdevice flash_dev = { FLASH_MINOR, "flash", &flash_fops };
  135. EXPORT_NO_SYMBOLS;
  136. static int __init flash_init(void)
  137. {
  138. struct sbus_bus *sbus;
  139. struct sbus_dev *sdev = 0;
  140. struct linux_ebus *ebus;
  141. struct linux_ebus_device *edev = 0;
  142. struct linux_prom_registers regs[2];
  143. int len, err, nregs;
  144. for_all_sbusdev(sdev, sbus) {
  145. if (!strcmp(sdev->prom_name, "flashprom")) {
  146. if (sdev->reg_addrs[0].phys_addr == sdev->reg_addrs[1].phys_addr) {
  147. flash.read_base = ((unsigned long)sdev->reg_addrs[0].phys_addr) |
  148. (((unsigned long)sdev->reg_addrs[0].which_io)<<32UL);
  149. flash.read_size = sdev->reg_addrs[0].reg_size;
  150. flash.write_base = flash.read_base;
  151. flash.write_size = flash.read_size;
  152. } else {
  153. flash.read_base = ((unsigned long)sdev->reg_addrs[0].phys_addr) |
  154. (((unsigned long)sdev->reg_addrs[0].which_io)<<32UL);
  155. flash.read_size = sdev->reg_addrs[0].reg_size;
  156. flash.write_base = ((unsigned long)sdev->reg_addrs[1].phys_addr) |
  157. (((unsigned long)sdev->reg_addrs[1].which_io)<<32UL);
  158. flash.write_size = sdev->reg_addrs[1].reg_size;
  159. }
  160. flash.busy = 0;
  161. break;
  162. }
  163. }
  164. if (!sdev) {
  165. #ifdef CONFIG_PCI
  166. for_each_ebus(ebus) {
  167. for_each_ebusdev(edev, ebus) {
  168. if (!strcmp(edev->prom_name, "flashprom"))
  169. goto ebus_done;
  170. }
  171. }
  172. ebus_done:
  173. if (!edev)
  174. return -ENODEV;
  175. len = prom_getproperty(edev->prom_node, "reg", (void *)regs, sizeof(regs));
  176. if ((len % sizeof(regs[0])) != 0) {
  177. printk("flash: Strange reg property size %dn", len);
  178. return -ENODEV;
  179. }
  180. nregs = len / sizeof(regs[0]);
  181. flash.read_base = edev->resource[0].start;
  182. flash.read_size = regs[0].reg_size;
  183. if (nregs == 1) {
  184. flash.write_base = edev->resource[0].start;
  185. flash.write_size = regs[0].reg_size;
  186. } else if (nregs == 2) {
  187. flash.write_base = edev->resource[1].start;
  188. flash.write_size = regs[1].reg_size;
  189. } else {
  190. printk("flash: Strange number of regs %dn", nregs);
  191. return -ENODEV;
  192. }
  193. flash.busy = 0;
  194. #else
  195. return -ENODEV;
  196. #endif
  197. }
  198. printk("OBP Flash: RD %lx[%lx] WR %lx[%lx]n",
  199.        flash.read_base, flash.read_size,
  200.        flash.write_base, flash.write_size);
  201. err = misc_register(&flash_dev);
  202. if (err) {
  203. printk(KERN_ERR "flash: unable to get misc minorn");
  204. return err;
  205. }
  206. return 0;
  207. }
  208. static void __exit flash_cleanup(void)
  209. {
  210. misc_deregister(&flash_dev);
  211. }
  212. module_init(flash_init);
  213. module_exit(flash_cleanup);
  214. MODULE_LICENSE("GPL");