当前位置:   article > 正文

zynq 使用AXI_dma 传输==pl到ps,linux驱动开发,应用层处理DMA数据(一)_zynq linux dma

zynq linux dma

前言

在使用zynq输出处理时,会使用到pl和ps的数据传输,可供使用的方案有多种,由于我们的数据量较大打算,因此使用用以下两种方案处理:

1.使用pl直接写ddr3,

2.使用dma,

本次详细介绍使用axi_dma如何将pl的数据在linux应用层接收数据并处理,以及遇到的问题;

完整的测试代码以及接口封装请移步:

zynq 使用AXI_dma 传输==pl到ps,linux驱动开发,应用层处理DMA数据(二)-CSDN博客

1.功能介绍

fpga工程,我们使用fpga采集adc采集卡的数据,通过dma传输的linux端,在应用层对数据进行处理;第一种方法(使用pl直接写ddr3)后续在补充。

2.搭建 fpga工程

本次搭建采用我们项目的工程,由于工程太过复杂,因此之截图涉及到axi_dma的部分的详细配置:

2.1DMA输入

2.2DMA中断

2.3DMA控制软核的

本次使用user_reg最为DMA传输控制单元,主要是清除,复位,开始传输等功能。

2.4 DMA配置

PL端的读写本次不做说明。

3.生成设备数

        编译fpga,创建sdk,使用设备树模板生成设备树。

        以上步骤省略;

4.对设备数的修改

4.1自动生成的设备树中

两个ID默认都是0,需要将一个改为1:修改后的:

  1. axi_dma_0: dma@40400000 {
  2. #dma-cells = <1>;
  3. clock-names = "s_axi_lite_aclk", "m_axi_mm2s_aclk", "m_axi_s2mm_aclk";
  4. clocks = <&clkc 15>, <&clkc 15>, <&clkc 15>;
  5. compatible = "xlnx,axi-dma-7.1", "xlnx,axi-dma-1.00.a";
  6. interrupt-names = "mm2s_introut", "s2mm_introut";
  7. interrupt-parent = <&intc>;
  8. interrupts = <0 57 4 0 58 4>;
  9. reg = <0x40400000 0x10000>;
  10. xlnx,addrwidth = <0x20>;
  11. xlnx,sg-length-width = <0xe>;
  12. dma-channel@40400000 {
  13. compatible = "xlnx,axi-dma-mm2s-channel";
  14. dma-channels = <0x1>;
  15. interrupts = <0 57 4>;
  16. xlnx,datawidth = <0x20>;
  17. xlnx,device-id = <0x0>;
  18. };
  19. dma-channel@40400030 {
  20. compatible = "xlnx,axi-dma-s2mm-channel";
  21. dma-channels = <0x1>;
  22. interrupts = <0 58 4>;
  23. xlnx,datawidth = <0x20>;
  24. xlnx,device-id = <0x1>;
  25. };
  26. };

4.2添加dma设备驱动

  1. axidma_chrdev: axidma_chrdev@0 {
  2. compatible = "xlnx,axidma-chrdev";
  3. dmas = <&axi_dma_0 0 &axi_dma_0 1>;
  4. dma-names = "tx_channel", "rx_channel";
  5. };

5 编译内核以及驱动

内核的配置以及编译此处不在细讲。

5.1下载驱动

驱动采用开元驱动库:GitCode - 开发者的代码家园icon-default.png?t=N7T8https://gitcode.com/mirrors/bperez77/xilinx_axidma/tree/master/examples

        将下载的驱动放置内核目录,具体不做要求,我的路径如下:

5.2修改驱动的编译选项

将文件config_template.mk 拷贝一份命名为:config.mk

5.3config.mk内容修改

原始:

修改后:

增加的内容:

  1. CROSS_COMPILE = arm-linux-gnueabihf-
  2. ARCH = arm
  3. KBUILD_DIR = /mnt/workspace/uisrc-lab-xlnx/sources/kernel/
  4. OUTPUT_DIR = outputs

其中:CROSS_COMPILE:编译器的前缀
ARCH:平台
KBUILD_DIR:内核的完整路径
OUTPUT_DIR:生成目录

5.4驱动和示例程序编译

6.测试dma驱动提供的测试代码

1.将内核镜像放置sd卡或者使用emmc启动设备;

2.将上述编译的output目录通过ftp或者其他手段放置设备中;

3.执行:insmod axidma.ko 加载驱动模块,如果没有权限则使用超级去哪先去加载;

查看设备文件:

查看中断:记住终端次数,执行测试程序在对比

4.执行

需要注意:收发通道号:

再次查好看终端号:

7.测试我们自己的应用程序

7.1代码实列

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <stdbool.h>
  5. #include <errno.h>
  6. #include <signal.h>
  7. #include <fcntl.h>
  8. #include <ctype.h>
  9. #include <termios.h>
  10. #include <sys/types.h>
  11. #include <sys/mman.h>
  12. #include <time.h>
  13. #include <pthread.h>
  14. #include <sys/stat.h>
  15. #include "libaxidma.h"
  16. #define MAXLENGTH 4096
  17. struct dma_transfer {
  18. int input_fd; // The file descriptor for the input file
  19. int input_channel; // The channel used to send the data
  20. int input_size; // The amount of data to send
  21. void *input_buf; // The buffer to hold the input data
  22. int output_fd; // The file descriptor for the output file
  23. int output_channel; // The channel used to receive the data
  24. int output_size; // The amount of data to receive
  25. void *output_buf; // The buffer to hold the output
  26. };
  27. axidma_dev_t axidma_dev;
  28. struct dma_transfer trans;
  29. static unsigned char rbuffer[MAXLENGTH] = {0};
  30. static unsigned char sbuffer[MAXLENGTH] = {0};
  31. static unsigned char tbuffer[MAXLENGTH] = {0};
  32. void get_format_time_ms(char *str_time, int size) {
  33. struct tm *tm_t;
  34. struct timeval time;
  35. if (size < 32) {
  36. printf("input buff len less than 32");
  37. return;
  38. }
  39. gettimeofday(&time,NULL);
  40. tm_t = localtime(&time.tv_sec);
  41. if(NULL != tm_t) {
  42. sprintf(str_time,"%04d_%02d_%02d_%02d_%02d_%02d_%03ld",
  43. tm_t->tm_year+1900,
  44. tm_t->tm_mon+1,
  45. tm_t->tm_mday,
  46. tm_t->tm_hour,
  47. tm_t->tm_min,
  48. tm_t->tm_sec,
  49. time.tv_usec/1000);
  50. }
  51. return;
  52. }
  53. int main()
  54. {
  55. int rc;
  56. int i;
  57. int rec_len;
  58. char *input_path, *output_path;
  59. const array_t *tx_chans, *rx_chans;
  60. int error;
  61. int ret;
  62. // 初始化AXIDMA设备
  63. axidma_dev = axidma_init();
  64. if (axidma_dev == NULL) {
  65. printf("Error: Failed to initialize the AXI DMA device.\n");
  66. }
  67. printf("Succeed to initialize the AXI DMA device.\n");
  68. // 如果还没有指定tx和rx通道,则获取收发通道
  69. tx_chans = axidma_get_dma_tx(axidma_dev);
  70. if (tx_chans->len < 1) {
  71. printf("Error: No transmit channels were found.\n");
  72. }
  73. rx_chans = axidma_get_dma_rx(axidma_dev);
  74. if (rx_chans->len < 1) {
  75. printf("Error: No receive channels were found.\n");
  76. }
  77. /* 如果用户没有指定通道,我们假设发送和接收通道是编号最低的通道。 */
  78. if (trans.input_channel == -1 && trans.output_channel == -1) {
  79. trans.input_channel = tx_chans->data[0];
  80. trans.output_channel = rx_chans->data[0];
  81. printf("user :\n");
  82. }
  83. trans.input_channel = 0;
  84. trans.output_channel = 1;
  85. printf("AXI DMAt File Transfer Info:\n");
  86. printf("\tTransmit Channel: %d\n", trans.input_channel);
  87. printf("\tReceive Channel: %d\n", trans.output_channel);
  88. // printf("\tInput Data Size: %.4f MiB\n", BYTE_TO_MIB(trans.input_size));
  89. // printf("\tOutput Data Size: %.4f MiB\n\n", BYTE_TO_MIB(trans.output_size));
  90. trans.output_size = 64*8; //64为采样点数据量,*8为每个点的8个字节 (4通道,每通道16bit
  91. trans.input_size = 64*8; //64为采样点数据量,*8为每个点的8个字节 (4通道,每通道16bit
  92. // 为输出文件分配一个缓冲区
  93. trans.output_buf = axidma_malloc(axidma_dev, trans.output_size);
  94. // printf("output_size is 0x%d\n",trans->output_size);
  95. if (trans.output_buf == NULL) {
  96. printf("Failed to allocate the output buffer.\n");
  97. axidma_free(axidma_dev, trans.output_buf, trans.output_size);
  98. }
  99. trans.input_buf = axidma_malloc(axidma_dev, trans.input_size);
  100. if (trans.input_buf == NULL) {
  101. printf("Failed to allocate the input buffer.\n");
  102. axidma_free(axidma_dev, trans.input_buf, trans.input_size);
  103. }
  104. for(i = 0; i < 100; i++)
  105. {
  106. ((char *)trans.output_buf)[i] = i;
  107. }
  108. char str_time[32] = {0}, end_time[32] = {0};
  109. get_format_time_ms(str_time, 32);
  110. if(0 != axidma_oneway_transfer(axidma_dev, trans.output_channel, trans.output_buf, trans.output_size, true))
  111. {
  112. printf("axidma_oneway_transfer timeout.\n");
  113. }
  114. get_format_time_ms(end_time, 32);
  115. for(i = 0; i < dataLen; i++)
  116. {
  117. u32 data_0 = ((char *)trans.output_buf)[i * 8 + 1] * 256 + ((char *)trans.output_buf)[i * 8 + 0];
  118. u32 data_1 = ((char *)trans.output_buf)[i * 8 + 3] * 256 + ((char *)trans.output_buf)[i * 8 + 2];
  119. u32 data_2 = ((char *)trans.output_buf)[i * 8 + 5] * 256 + ((char *)trans.output_buf)[i * 8 + 4];
  120. u32 data_3 = ((char *)trans.output_buf)[i * 8 + 7] * 256 + ((char *)trans.output_buf)[i * 8 + 6];
  121. printf("==> i:%05d %05d %05d %05d %05d \n", i, data_0, data_1, data_2, data_3);
  122. }
  123. //释放传输空间
  124. axidma_free(axidma_dev, addr, 1024*1024);
  125. //释放资源
  126. axidma_destroy(axidma_dev);
  127. return 0;
  128. }

 dma的启动不在此处,工程不同方法不同:我的启动方式通过寄存器操作,

使用mmap映射物理地址,直接操作寄存的值,通知pl将数据写入DMA,然后我在执行上述文件启动dma传输。

7.2ADC输入

7.3运行结果如下

  1. Succeed to initialize the AXI DMA device.
  2. AXI DMAt File Transfer Info:
  3. Transmit Channel: 0
  4. Receive Channel: 1
  5. ==> i:00000 16383 16383 14998 10905
  6. ==> i:00001 16383 16383 10974 14904
  7. ==> i:00002 16383 16383 05899 16319
  8. ==> i:00003 16383 16383 01732 14622
  9. ==> i:00004 16383 16383 00053 10448
  10. ==> i:00005 16383 16383 01516 05403
  11. ==> i:00006 16383 16383 05542 01417
  12. ==> i:00007 16383 16383 10606 00000
  13. ==> i:00008 16383 16383 14779 01689
  14. ==> i:00009 16383 16383 16383 05861
  15. ==> i:00010 16383 16383 15001 10914
  16. ==> i:00011 16383 16383 10963 14909
  17. ==> i:00012 16383 16383 05897 16320
  18. ==> i:00013 16383 16383 01732 14619
  19. ==> i:00014 16383 16383 00049 10436
  20. ==> i:00015 16383 16383 01516 05398
  21. ==> i:00016 16383 16383 05545 01411
  22. ==> i:00017 16383 16383 10619 00000
  23. ==> i:00018 16383 16383 14781 01686
  24. ==> i:00019 16383 16383 16383 05867
  25. ==> i:00020 16383 16383 15006 10911
  26. ==> i:00021 16383 16383 10964 14909
  27. ==> i:00022 16383 16383 05893 16326
  28. ==> i:00023 16383 16383 01725 14626
  29. ==> i:00024 16383 16383 00051 10446
  30. ==> i:00025 16383 16383 01502 05402
  31. ==> i:00026 16383 16383 05540 01421
  32. ==> i:00027 16383 16383 10615 00000
  33. ==> i:00028 16383 16383 14781 01697
  34. ==> i:00029 16383 16383 16383 05867
  35. ==> i:00030 16383 16383 15001 10922
  36. ==> i:00031 16383 16383 10969 14915
  37. ==> i:00032 16383 16383 05888 16328
  38. ==> i:00033 16383 16383 01718 14623
  39. ==> i:00034 16383 16383 00050 10448
  40. ==> i:00035 16383 16383 01511 05398
  41. ==> i:00036 16383 16383 05547 01412
  42. ==> i:00037 16383 16383 10620 00000
  43. ==> i:00038 16383 16383 14775 01689
  44. ==> i:00039 16383 16383 16383 05863
  45. ==> i:00040 16383 16383 15005 10915
  46. ==> i:00041 16383 16383 10967 14905
  47. ==> i:00042 16383 16383 05903 16318
  48. ==> i:00043 16383 16383 01724 14620
  49. ==> i:00044 16383 16383 00042 10449
  50. ==> i:00045 16383 16383 01510 05402
  51. ==> i:00046 16383 16383 05544 01416
  52. ==> i:00047 16383 16383 10622 00000
  53. ==> i:00048 16383 16383 14778 01693
  54. ==> i:00049 16383 16383 16383 05870
  55. ==> i:00050 16383 16383 15001 10924
  56. ==> i:00051 16383 16383 10961 14909
  57. ==> i:00052 16383 16383 05894 16318
  58. ==> i:00053 16383 16383 01722 14617
  59. ==> i:00054 16383 16383 00053 10441
  60. ==> i:00055 16383 16383 01518 05396
  61. ==> i:00056 16383 16383 05549 01414
  62. ==> i:00057 16383 16383 10614 00000
  63. ==> i:00058 16383 16383 14777 01689
  64. ==> i:00059 16383 16383 16383 05865
  65. ==> i:00060 16383 16383 15004 10910
  66. ==> i:00061 16383 16383 10970 14903
  67. ==> i:00062 16383 16383 05892 16327
  68. ==> i:00063 16383 16383 01720 14626

8.总结

遇到的问题:

1.生成的设备数默认id都是0,需要修改其中一个

2.通道配置错误,需要通过测试用例来查看读写通道; 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/547567
推荐阅读
相关标签
  

闽ICP备14008679号