Apex中DMA的代码.代码主要来自LINUX.:)其实这些代码已经都比较成熟了.


#include "dma.h"


/* 如何使用:
 *
 * 调用request_dma请求指定的DMA通道.如果返回0表现该通道可用;
 * 在使用完毕以后使用free_dma释放该通道.
 */

 

/* dma_chan_busy[n] != 0 表示该通道不可用
 * DMA0 用作DRAM的刷新.
 * DMA4 用作级连.
 */
static volatile unsigned int dma_chan_busy[MAX_DMA_CHANNELS] = {
 1, 0, 0, 0, 1, 0, 0, 0
};

 

/* 将*p指向的数据替换为newval.由关键字xchgl看,这个值是32位的值。
 * xchgl是原子操作,可以省去cli和sti,稳定和性能都有益的.
 */
static __inline__ unsigned int mutex_atomic_swap(volatile unsigned int * p, unsigned int newval)
{
 unsigned int semval = newval;

 /* If one of the operands for the XCHG instructions is a memory ref,
  * it makes the swap an uninterruptible RMW cycle.
  *
  * One operand must be in memory, the other in a register, otherwise
  * the swap may not be atomic.
  */

 asm __volatile__ ("xchgl %2, %0/n"
   : /* outputs: semval   */ "=r" (semval)
   : /* inputs: newval, p */ "0" (semval), "m" (*p)
   ); /* p is a var, containing an address */
 return semval;
} /* mutex_atomic_swap */


#define EINVAL 1
#define EBUSY 2

int request_dma(unsigned int dmanr)
{
 if (dmanr >= MAX_DMA_CHANNELS)
  return -EINVAL;

 if (mutex_atomic_swap(&dma_chan_busy[dmanr], 1) != 0)
  return -EBUSY;
 else
  /* old flag was 0, now contains 1 to indicate busy */
  return 0;
} /* request_dma */

#define printk
void free_dma(unsigned int dmanr)
{
 if (dmanr >= MAX_DMA_CHANNELS) {
  printk("Trying to free DMA%d/n", dmanr);
  return;
 }

 if (mutex_atomic_swap(&dma_chan_busy[dmanr], 0) == 0)
  printk("Trying to free free DMA%d/n", dmanr);
} /* free_dma */

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值