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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/kernel/dma.c
  3.  *
  4.  *  Copyright (C) 1995-2000 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  Front-end to the DMA handling.  This handles the allocation/freeing
  11.  *  of DMA channels, and provides a unified interface to the machines
  12.  *  DMA facilities.
  13.  */
  14. #include <linux/module.h>
  15. #include <linux/slab.h>
  16. #include <linux/sched.h>
  17. #include <linux/mman.h>
  18. #include <linux/init.h>
  19. #include <linux/spinlock.h>
  20. #include <asm/dma.h>
  21. #include <asm/mach/dma.h>
  22. spinlock_t dma_spin_lock = SPIN_LOCK_UNLOCKED;
  23. #if MAX_DMA_CHANNELS > 0
  24. static dma_t dma_chan[MAX_DMA_CHANNELS];
  25. /*
  26.  * Get dma list for /proc/dma
  27.  */
  28. int get_dma_list(char *buf)
  29. {
  30. dma_t *dma;
  31. char *p = buf;
  32. int i;
  33. for (i = 0, dma = dma_chan; i < MAX_DMA_CHANNELS; i++, dma++)
  34. if (dma->lock)
  35. p += sprintf(p, "%2d: %14s %sn", i,
  36.      dma->d_ops->type, dma->device_id);
  37. return p - buf;
  38. }
  39. /*
  40.  * Request DMA channel
  41.  *
  42.  * On certain platforms, we have to allocate an interrupt as well...
  43.  */
  44. int request_dma(dmach_t channel, const char *device_id)
  45. {
  46. dma_t *dma = dma_chan + channel;
  47. int ret;
  48. if (channel >= MAX_DMA_CHANNELS || !dma->d_ops)
  49. goto bad_dma;
  50. if (xchg(&dma->lock, 1) != 0)
  51. goto busy;
  52. dma->device_id = device_id;
  53. dma->active    = 0;
  54. dma->invalid   = 1;
  55. ret = 0;
  56. if (dma->d_ops->request)
  57. ret = dma->d_ops->request(channel, dma);
  58. if (ret)
  59. xchg(&dma->lock, 0);
  60. return ret;
  61. bad_dma:
  62. printk(KERN_ERR "dma: trying to allocate DMA%dn", channel);
  63. return -EINVAL;
  64. busy:
  65. return -EBUSY;
  66. }
  67. /*
  68.  * Free DMA channel
  69.  *
  70.  * On certain platforms, we have to free interrupt as well...
  71.  */
  72. void free_dma(dmach_t channel)
  73. {
  74. dma_t *dma = dma_chan + channel;
  75. if (channel >= MAX_DMA_CHANNELS || !dma->d_ops)
  76. goto bad_dma;
  77. if (dma->active) {
  78. printk(KERN_ERR "dma%d: freeing active DMAn", channel);
  79. dma->d_ops->disable(channel, dma);
  80. dma->active = 0;
  81. }
  82. if (xchg(&dma->lock, 0) != 0) {
  83. if (dma->d_ops->free)
  84. dma->d_ops->free(channel, dma);
  85. return;
  86. }
  87. printk(KERN_ERR "dma%d: trying to free free DMAn", channel);
  88. return;
  89. bad_dma:
  90. printk(KERN_ERR "dma: trying to free DMA%dn", channel);
  91. }
  92. /* Set DMA Scatter-Gather list
  93.  */
  94. void set_dma_sg (dmach_t channel, struct scatterlist *sg, int nr_sg)
  95. {
  96. dma_t *dma = dma_chan + channel;
  97. dma->sg = sg;
  98. dma->sgcount = nr_sg;
  99. dma->using_sg = 1;
  100. dma->invalid = 1;
  101. }
  102. /* Set DMA address
  103.  *
  104.  * Copy address to the structure, and set the invalid bit
  105.  */
  106. void set_dma_addr (dmach_t channel, unsigned long physaddr)
  107. {
  108. dma_t *dma = dma_chan + channel;
  109. if (dma->active)
  110. printk(KERN_ERR "dma%d: altering DMA address while "
  111.        "DMA activen", channel);
  112. dma->sg = &dma->buf;
  113. dma->sgcount = 1;
  114. dma->buf.address = bus_to_virt(physaddr);
  115. dma->using_sg = 0;
  116. dma->invalid = 1;
  117. }
  118. /* Set DMA byte count
  119.  *
  120.  * Copy address to the structure, and set the invalid bit
  121.  */
  122. void set_dma_count (dmach_t channel, unsigned long count)
  123. {
  124. dma_t *dma = dma_chan + channel;
  125. if (dma->active)
  126. printk(KERN_ERR "dma%d: altering DMA count while "
  127.        "DMA activen", channel);
  128. dma->sg = &dma->buf;
  129. dma->sgcount = 1;
  130. dma->buf.length = count;
  131. dma->using_sg = 0;
  132. dma->invalid = 1;
  133. }
  134. /* Set DMA direction mode
  135.  */
  136. void set_dma_mode (dmach_t channel, dmamode_t mode)
  137. {
  138. dma_t *dma = dma_chan + channel;
  139. if (dma->active)
  140. printk(KERN_ERR "dma%d: altering DMA mode while "
  141.        "DMA activen", channel);
  142. dma->dma_mode = mode;
  143. dma->invalid = 1;
  144. }
  145. /* Enable DMA channel
  146.  */
  147. void enable_dma (dmach_t channel)
  148. {
  149. dma_t *dma = dma_chan + channel;
  150. if (!dma->lock)
  151. goto free_dma;
  152. if (dma->active == 0) {
  153. dma->active = 1;
  154. dma->d_ops->enable(channel, dma);
  155. }
  156. return;
  157. free_dma:
  158. printk(KERN_ERR "dma%d: trying to enable free DMAn", channel);
  159. BUG();
  160. }
  161. /* Disable DMA channel
  162.  */
  163. void disable_dma (dmach_t channel)
  164. {
  165. dma_t *dma = dma_chan + channel;
  166. if (!dma->lock)
  167. goto free_dma;
  168. if (dma->active == 1) {
  169. dma->active = 0;
  170. dma->d_ops->disable(channel, dma);
  171. }
  172. return;
  173. free_dma:
  174. printk(KERN_ERR "dma%d: trying to disable free DMAn", channel);
  175. BUG();
  176. }
  177. void set_dma_page(dmach_t channel, char pagenr)
  178. {
  179. printk(KERN_ERR "dma%d: trying to set_dma_pagen", channel);
  180. }
  181. void set_dma_speed(dmach_t channel, int cycle_ns)
  182. {
  183. dma_t *dma = dma_chan + channel;
  184. int ret = 0;
  185. if (dma->d_ops->setspeed)
  186. ret = dma->d_ops->setspeed(channel, dma, cycle_ns);
  187. dma->speed = ret;
  188. }
  189. int get_dma_residue(dmach_t channel)
  190. {
  191. dma_t *dma = dma_chan + channel;
  192. int ret = 0;
  193. if (dma->d_ops->residue)
  194. ret = dma->d_ops->residue(channel, dma);
  195. return ret;
  196. }
  197. void __init init_dma(void)
  198. {
  199. arch_dma_init(dma_chan);
  200. }
  201. #else
  202. int request_dma(dmach_t channel, const char *device_id)
  203. {
  204. return -EINVAL;
  205. }
  206. int get_dma_residue(dmach_t channel)
  207. {
  208. return 0;
  209. }
  210. #define GLOBAL_ALIAS(_a,_b) asm (".set " #_a "," #_b "; .globl " #_a)
  211. GLOBAL_ALIAS(disable_dma, get_dma_residue);
  212. GLOBAL_ALIAS(enable_dma, get_dma_residue);
  213. GLOBAL_ALIAS(free_dma, get_dma_residue);
  214. GLOBAL_ALIAS(get_dma_list, get_dma_residue);
  215. GLOBAL_ALIAS(set_dma_mode, get_dma_residue);
  216. GLOBAL_ALIAS(set_dma_page, get_dma_residue);
  217. GLOBAL_ALIAS(set_dma_count, get_dma_residue);
  218. GLOBAL_ALIAS(set_dma_addr, get_dma_residue);
  219. GLOBAL_ALIAS(set_dma_sg, get_dma_residue);
  220. GLOBAL_ALIAS(set_dma_speed, get_dma_residue);
  221. GLOBAL_ALIAS(init_dma, get_dma_residue);
  222. #endif
  223. EXPORT_SYMBOL(request_dma);
  224. EXPORT_SYMBOL(free_dma);
  225. EXPORT_SYMBOL(enable_dma);
  226. EXPORT_SYMBOL(disable_dma);
  227. EXPORT_SYMBOL(set_dma_addr);
  228. EXPORT_SYMBOL(set_dma_count);
  229. EXPORT_SYMBOL(set_dma_mode);
  230. EXPORT_SYMBOL(set_dma_page);
  231. EXPORT_SYMBOL(get_dma_residue);
  232. EXPORT_SYMBOL(set_dma_sg);
  233. EXPORT_SYMBOL(set_dma_speed);