3394|1

6892

帖子

0

TA的资源

五彩晶圆(高级)

楼主
 

分享SDRAM到DMA 的程序代码 [复制链接]

**********实现sdram到flash的数据传输******************/

#include <stdio.h>
#include <stdlib.h>
#include <sys/alt_dma.h>
#include "system.h"
static volatile int rx_done = 0;
alt_u8 i;
int rc;
alt_dma_txchan txchan;
alt_dma_rxchan rxchan;

void* tx_data = (void*) 0x02002000; /* 源地址,0x02002000是sdram的某一起始地址 */
void* rx_buffer = (void*) 0x04402000; /* 目标地址,0x04010000为flash的某一起始地址*/

//DMA传输结束回调函数

static void done_t(void* handle, void* data)//done_t()是DMA完成后被调用的回调函数

{
   rx_done++;
}

int main (int argc, char* argv[], char* envp[])

{
    alt_u8 *p=tx_data;
    alt_u8 *q=rx_buffer;
   
    printf("Welcome!\n");
    for(i=0;i<128;i++)
    {
         *p++=i;   
    }
   
    printf ("1\n");
   
/* 打开发送通道 */

  if (!(txchan = alt_dma_txchan_open("/dev/DMA")))
  {
    printf ("Failed to open transmit channel\n");
    exit (1);
  }

/* 打开接收通道 */

  if (!(rxchan = alt_dma_rxchan_open("/dev/DMA")))
  {
    printf ("Failed to open receive channel\n");
    exit (1);
  }
  
/* 开始发送数据 */

  if ((rc = alt_dma_txchan_send (txchan,  //选用transport通道
                                 tx_data,  //a pointer to the start of the data to send.
                                 128,       //the length of the data to send in bytes.
                                 NULL,
                                 NULL)) < 0)

  {
    printf ("Failed to post transmit request, reason = %i\n", rc);
    exit (1);
  }

/* 开始接收数据*/

  if ((rc = alt_dma_rxchan_prepare (rxchan,   //选中recieve通道
                                    rx_buffer,//目标地址
                                    128,    //the maximum length of the data to receive
                                    done_t,  //done_t()是DMA完成后被调用的回调函数
                                    NULL)) < 0)

  {
    printf ("Failed to post read request, reason = %i\n", rc);
    exit (1);
  }

/* 等待传输结束 ,即等待rx_done的值变为1,等待回调函数的执行*/
   printf ("2\n");

  while (!rx_done);
  printf ("Transfer successful!\n");
     printf ("3\n");
  
    p=tx_data;
    q=rx_buffer;
      
      for(i=0;i<128;i++)
    {
         printf(" flash%x=%x\n", *q++);   
         printf(" sdram%x=%x\n", *p++);
    }
  return 0;

}
此帖出自FPGA/CPLD论坛

最新回复

DDDD:D :D  详情 回复 发表于 2014-9-14 17:39
点赞 关注
个人签名一个为理想不懈前进的人,一个永不言败人!
http://shop57496282.taobao.com/
欢迎光临网上店铺!
 

回复
举报

18

帖子

0

TA的资源

一粒金砂(中级)

沙发
 
DDDD:D :D
此帖出自FPGA/CPLD论坛
 
 

回复
您需要登录后才可以回帖 登录 | 注册

查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/8 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表