0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認識你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

Petalinux2020.01 內(nèi)核DMA驅(qū)動調(diào)試說明

C29F_xilinx_inc ? 來源:用戶發(fā)布 ? 作者:用戶發(fā)布 ? 2022-02-16 16:21 ? 次閱讀

1、在用戶設(shè)備樹中 pl-custom中

/delete-node/ &axi_dma_0;
/ {
axi_dma_0: dma@a0000000 {
#dma-cells = ;
clock-names = "s_axi_lite_aclk", "m_axi_mm2s_aclk", "m_axi_s2mm_aclk";
clocks = , , ;
compatible = "xlnx,axi-dma-7.1", "xlnx,axi-dma-1.00.a";
interrupt-names = "mm2s_introut", "s2mm_introut";
interrupt-parent = ;
interrupts = ;
reg = ;
xlnx,addrwidth = ;
xlnx,sg-length-width = ;
dma-channel@a0000000 {
compatible = "xlnx,axi-dma-mm2s-channel";
dma-channels = ;
interrupts = ;
xlnx,datawidth = ;
xlnx,device-id = ;
xlnx,include-dre ;
};
dma-channel@a0000030 {
compatible = "xlnx,axi-dma-s2mm-channel";
dma-channels = ;
interrupts = ;
xlnx,datawidth = ;
xlnx,device-id = ;
xlnx,include-dre ;
};
};
};

2 、在用戶system-user中

/include/ "system-conf.dtsi"
/include/ "pl-custom.dtsi"
/ {
axidma_chrdev: axidma_chrdev@0 {
compatible = "xlnx,axidma-chrdev";
dmas = ;
dma-names = "tx_channel", "rx_channel";
};
};

&axi_dma_0 {
dma-coherent;
status = "okay";
};

3、device-tree.bbappend

SRC_URI += "file://system-user.dtsi"
SRC_URI += "file://pl-custom.dtsi"

4 、teminal

petalinux-create -t modules -n xilinx-axidma --enable

5 、github上下載dma驅(qū)動,xilinx_axidma-master.zip 并解壓,由于內(nèi)核的改變,對下列部分文件做出改變。
(1) makefile

DRIVER_NAME = xilinx-axidma
$(DRIVER_NAME)-objs = axi_dma.o axidma_chrdev.o axidma_dma.o axidma_of.o
obj-m := $(DRIVER_NAME).o

(2)xilinx-axidma.bb

SRC_URI = "file://Makefile \
file://axi_dma.c \
file://axidma_chrdev.c \
file://axidma_dma.c \
file://axidma_of.c \
file://axidma.h \
file://axidma_ioctl.h \
file://COPYING \

(3)axi_dma.c

#include
// new

(4)axidma_chrdev.c
linux 內(nèi)核4.x到5.x,參數(shù)減少,查看內(nèi)核函數(shù),無影響
https://elixir.bootlin.com/linux/v4.9.251/source/include/linux/of_device.h
https://elixir.bootlin.com/linux/v4.9.251/source/include/linux/uaccess.h

在 static bool axidma_access_ok(const void __user *arg, size_t size, bool readonly)函數(shù)中

// if (!readonly && !access_ok(VERIFY_WRITE, arg, size)) {
if (!readonly && !access_ok(arg, size)) {

// } else if (!access_ok(VERIFY_READ, arg, size)) {
} else if (!access_ok(arg, size)) {

//of_dma_configure(struct device->dev, NULL);
of_dma_configure(struct device->dev, NULL,true);

(5)axidma_dma.c

#include
// new

static void axidma_dma_callback(void *data)
struct kernel_siginfo sig_info;

6、petalinux-build petalinux-build --sdk petalinux-package --sysroot

7、配置qt的環(huán)境。

8 qt 將example中的axidma_benchmark.c復(fù)制到qt,并添加其他所需文件。

(1)**.pro
SOURCES += \
gpio.cpp \
libaxidma.c \
main.cpp \
util.c

HEADERS += \
axidma_ioctl.h \
conversion.h \
gpio.h \
libaxidma.h \
util.h

(2)main.cpp() 由于是將C文件改為c++文件,所以此文件中這個函數(shù)需要做改變((void *)和(char *)相同)

static int single_transfer_test(axidma_dev_t dev, int tx_channel, void *tx_buf,
int tx_size, struct axidma_video_frame *tx_frame, int rx_channel,
void *rx_buf, int rx_size, struct axidma_video_frame *rx_frame)
{
int rc;

// Initialize the buffer region we're going to transmit
init_data((char *)tx_buf, (char *)rx_buf, tx_size, rx_size);

// Perform the DMA transaction
rc = axidma_twoway_transfer(dev, tx_channel, (char *)tx_buf, tx_size, tx_frame,
rx_channel, (char *)rx_buf, rx_size, rx_frame, true);
if (rc return rc;
}

// Verify that the data in the buffer changed
return verify_data((char *)tx_buf, (char *)rx_buf, tx_size, rx_size);
}

(3)在所有的 **.h中,為了使用QT的類功能,盡量用C++編程,對C文件的頭文件做如下改變。

#ifdef __cplusplus
extern "C"{
#endif

......

#endif /* UTIL_H_ */

#ifdef __cplusplus
}
#endif

9、加載驅(qū)動

root@u3_save:/lib/modules/5.4.0-xilinx-v2020.1/extra# insmod xilinx-axidma.ko
[ 1637.846215] axidma: axidma_dma.c: axidma_dma_init: 725: DMA: Found 1 transmit channels and 1 receive channels.
[ 1637.856240] axidma: axidma_dma.c: axidma_dma_init: 727: VDMA: Found 0 transmit channels and 0 receive channels.

10、測試 因為dma的輸入輸出并沒有還起來,所以只能看到發(fā)出去,看不到接收的

root@u3_save:/mnt# ./u3_dma_save
AXI DMA Benchmark Parameters:
Transmit Buffer Size: 7.91 MiB
R[ 1661.465441] axidma axidma: DMA mask not set
eceive Buffer Size: 7.91 MiB
Number of DMA Transfers: 1000 transfers

Using transmit channel 0 and receive channel 1.
[ 1671.710879] axidma: axidma_dma.c: axidma_start_transfer: 309: DMA receive transaction timed out.
[ 1672.719678] xilinx-vdma a0000000.dma: Cannot stop channel 00000000145aa465: 0
Failed to perform the AXI DMA read-write transfer: Timer expired

11、當使用環(huán)回時

root@u3_dma_test:/# ./mnt/u3_dma_save
AXI DMA Benchmark Parameters:
Transmit Buffer Size: 7.91 MiB
Receive Buffer Size: 7.91 MiB
Number of DMA Transfers: 1000 transfers

Using transmit channel 0 and receive channel 1.
Single transfer test successfully completed!
Beginning performance analysis of the DMA engine.

DMA Timing Statistics:
Elapsed Time: 41.49 s
Transmit Throughput: 190.66 MiB/s
Receive Throughput: 190.66 MiB/s
Total Throughput: 381.32 MiB/s
root@u3_dma_test:/#

13、qt and opencv 的配置
(1)安裝sdk.sh
(2)在qt的pro中添加

INCLUDEPATH += /home/lcl/Soft/Sdk/sysroots/aarch64-xilinx-linux/usr/include

LIBS += \
-lopencv_imgcodecs \
-lopencv_highgui \
-lopencv_imgproc \
-lopencv_core \

即可。

14、接口改為128

root@u3_dma_test:/# ./mnt/u3_dma_save
AXI DMA Benchmark Parameters:
Transmit Buffer Size: 16.00 MiB
Receive Buffer Size: 16.00 MiB
Number of DMA Transfers: 1000 transfers

Using transmit channel 0 and receive channel 1.
Elapsed Time: 0.25 s
Single transfer test successfully completed!
Beginning performance analysis of the DMA engine.

DMA Timing Statistics:
Elapsed Time: 12.39 s
Transmit Throughput: 1291.32 MiB/s
Receive Throughput: 1291.32 MiB/s
Total Throughput: 2582.65 MiB/s
root@u3_dma_test:/#

15、第一個Elapsed Time: 0.25 s是當我把數(shù)據(jù)從緩沖區(qū)復(fù)制到其他位置消耗的時間,也就是16MB的數(shù)據(jù)需要250ms的時間,速率也就在60M左右,也驗證以前的貼子,dma的實現(xiàn)方式(UIO或者內(nèi)核驅(qū)動)與數(shù)據(jù)從緩沖區(qū)copy到別的地方的速率是沒有關(guān)系的。

16、速度慢是緩沖區(qū)的問題 https://github.com/bperez77/xilinx_axidma/issues/69
(1)在設(shè)備樹中
/include/ "system-conf.dtsi"
/include/ "pl-custom.dtsi"
/ {

axidma_chrdev: axidma_chrdev@0 {
compatible = "xlnx,axidma-chrdev";
dmas = ;
dma-names = "tx_channel", "rx_channel";
dma-coherent;
};
&axi_dma_0 {
dma-coherent;
status = "okay";
};

在測試代碼中加速加入測速代碼
......
rc = single_transfer_test(axidma_dev, tx_channel, tx_buf, tx_size,
tx_frame, rx_channel, rx_buf, rx_size, rx_frame);
if (rc goto free_rx_buf;
}

struct timeval start_time0, end_time0;
double elapsed_time0;
// Begin timing
gettimeofday(&start_time0, NULL);
memcpy(image_mid0, rx_buf, 2048*4096*4);
gettimeofday(&end_time0, NULL);
elapsed_time0 = TVAL_TO_SEC(end_time0) - TVAL_TO_SEC(start_time0);
printf("\tElapsed Time0: %0.2f s\n", elapsed_time0);

struct timeval start_time1, end_time1;
double elapsed_time1;
// Begin timing
gettimeofday(&start_time1, NULL);
memcpy(image_mid1, image_mid0, 2048*4096*4);
gettimeofday(&end_time1, NULL);
elapsed_time1 = TVAL_TO_SEC(end_time1) - TVAL_TO_SEC(start_time1);
printf("\tElapsed Time1: %0.2f s\n", elapsed_time1);

(3)測試結(jié)果
root@u3_dma_test:/# ./mnt/u3_dma_save
AXI DMA Benchmark Parameters:
Transmit Buffer Size: 32.00 MiB
[ 84.709677] axidma axidma: DMA mask not set
Receive Buffer Size: 32.00 MiB
Number of DMA Transfers: 1000 transfers

Using transmit channel 0 and receive channel 1.
Elapsed Time0: 0.07 s
Elapsed Time1: 0.07 s
Single transfer test successfully completed!
Beginning performance analysis of the DMA engine.

DMA Timing Statistics:
Elapsed Time: 24.75 s
Transmit Throughput: 1292.82 MiB/s
Receive Throughput: 1292.82 MiB/s
Total Throughput: 2585.64 MiB/s
root@u3_dma_test:/#

最后測得速率 32MB/70ms=450MB。
17、雖然速度是提高了,但是讀寫的數(shù)據(jù)是不對的
https://forums.xilinx.com/t5/%E5%B5%8C%E5%85%A5%E5%BC%8F-%E7%A1%AC%E4%BB...
https://xilinx-wiki.atlassian.net/wiki/spaces/A/pages/18842098/Zynq+Ultr...

審核編輯:符乾江

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學習之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • 驅(qū)動
    +關(guān)注

    關(guān)注

    12

    文章

    1790

    瀏覽量

    84910
  • Linux
    +關(guān)注

    關(guān)注

    87

    文章

    11123

    瀏覽量

    207913
收藏 人收藏

    評論

    相關(guān)推薦

    linux驅(qū)動程序如何加載進內(nèi)核

    在Linux系統(tǒng)中,驅(qū)動程序是內(nèi)核與硬件設(shè)備之間的橋梁。它們允許內(nèi)核與硬件設(shè)備進行通信,從而實現(xiàn)對硬件設(shè)備的控制和管理。 驅(qū)動程序的編寫 驅(qū)動
    的頭像 發(fā)表于 08-30 15:02 ?191次閱讀

    STC串口驅(qū)動調(diào)試程序

    STC的串口驅(qū)動調(diào)試程序。
    發(fā)表于 07-08 14:23 ?2次下載

    AOSP源碼定制-內(nèi)核驅(qū)動編寫

    有時候為了分析一些殼的檢測,需要在內(nèi)核層面對讀寫相關(guān)的操作進行監(jiān)控,每次去修改對應(yīng)的內(nèi)核源碼編譯重刷過于耗時耗力,這里就來嘗試編寫一個內(nèi)核驅(qū)動,載入后監(jiān)控讀寫。
    的頭像 發(fā)表于 04-23 11:15 ?766次閱讀
    AOSP源碼定制-<b class='flag-5'>內(nèi)核</b><b class='flag-5'>驅(qū)動</b>編寫

    Linux DMA子系統(tǒng)驅(qū)動開發(fā)

    Streaming DMA在訪問內(nèi)存地址時經(jīng)過cache,是non-coherence設(shè)備,通常采用streaming mapping的API進行內(nèi)存申請,在單次DMA傳輸時進行map,在傳輸完成后進行unmap;
    發(fā)表于 04-07 14:38 ?632次閱讀
    Linux <b class='flag-5'>DMA</b>子系統(tǒng)<b class='flag-5'>驅(qū)動</b>開發(fā)

    RK3568驅(qū)動指南|驅(qū)動基礎(chǔ)進階篇-進階8 內(nèi)核運行ko文件總結(jié)

    RK3568驅(qū)動指南|驅(qū)動基礎(chǔ)進階篇-進階8 內(nèi)核運行ko文件總結(jié)
    的頭像 發(fā)表于 01-31 14:58 ?952次閱讀
    RK3568<b class='flag-5'>驅(qū)動</b>指南|<b class='flag-5'>驅(qū)動</b>基礎(chǔ)進階篇-進階8 <b class='flag-5'>內(nèi)核</b>運行ko文件總結(jié)

    TLT507-GDB程序調(diào)試方法說明

    TLT507-GDB程序調(diào)試方法說明
    的頭像 發(fā)表于 01-26 10:11 ?835次閱讀
    TLT507-GDB程序<b class='flag-5'>調(diào)試</b>方法<b class='flag-5'>說明</b>

    RK3568-GDB程序調(diào)試方法說明

    RK3568-GDB程序調(diào)試方法說明
    的頭像 發(fā)表于 01-19 16:16 ?1490次閱讀
    RK3568-GDB程序<b class='flag-5'>調(diào)試</b>方法<b class='flag-5'>說明</b>

    dma和通道技術(shù)的區(qū)別

    。 DMA是一種通過繞過中央處理器(CPU)來直接訪問內(nèi)存的機制。它允許外部設(shè)備(如硬盤驅(qū)動器、網(wǎng)卡等)直接與內(nèi)存進行數(shù)據(jù)傳輸,而無需通過CPU的干預(yù)。DMA的設(shè)計理念是提高數(shù)據(jù)傳輸?shù)男?,減少CPU的負擔。
    的頭像 發(fā)表于 01-04 14:31 ?1632次閱讀

    內(nèi)核中的psci驅(qū)動是什么

    內(nèi)核中的psci架構(gòu) 內(nèi)核psci軟件架構(gòu)包含psci驅(qū)動和每個cpu的cpu_ops回調(diào)函數(shù)實現(xiàn)兩部分。 其中psci驅(qū)動實現(xiàn)了驅(qū)動初始化
    的頭像 發(fā)表于 12-05 16:58 ?527次閱讀
    <b class='flag-5'>內(nèi)核</b>中的psci<b class='flag-5'>驅(qū)動</b>是什么

    zedboard petalinux構(gòu)建工程錯誤是什么原因造成的?

    : do_ configure (log file is at / home/ yl/xlinx/petalinux/ hdmi_zed/building/tmp/work
    發(fā)表于 11-28 07:33

    RK3399 VR Android參數(shù)配置和調(diào)試說明

    電子發(fā)燒友網(wǎng)站提供《RK3399 VR Android參數(shù)配置和調(diào)試說明.pdf》資料免費下載
    發(fā)表于 10-07 15:42 ?0次下載
    RK3399 VR Android參數(shù)配置和<b class='flag-5'>調(diào)試</b><b class='flag-5'>說明</b>

    內(nèi)核調(diào)試工具printkprintk的輸出格式

    很多內(nèi)核開發(fā)者喜歡的調(diào)試工具是printk,在Linux內(nèi)核中,使用printk()函數(shù)來打印信息,它與C庫的printf()函數(shù)類似。 printk()與printf()的一個重要
    的頭像 發(fā)表于 09-27 16:09 ?831次閱讀

    Linux內(nèi)核動態(tài)輸出調(diào)試

    動態(tài)輸出可以動態(tài)選擇打開某個內(nèi)核子系統(tǒng)的輸出,可以有選擇性地打開某些模塊的輸出。 配置內(nèi)核編譯選項要使用動態(tài)輸出,必須在配置內(nèi)核時打開CONFIG_DYNAMIC_DEBUG宏。內(nèi)核
    的頭像 發(fā)表于 09-27 15:45 ?462次閱讀
    Linux<b class='flag-5'>內(nèi)核</b>動態(tài)輸出<b class='flag-5'>調(diào)試</b>

    Linux內(nèi)核reset驅(qū)動實例

    reset驅(qū)動實例 類似于clock驅(qū)動,reset驅(qū)動也是編進內(nèi)核的,在Linux啟動時,完成reset驅(qū)動的加載。 設(shè)備樹 reset
    的頭像 發(fā)表于 09-27 14:21 ?588次閱讀

    什么是SysRq 內(nèi)核配置選項

    Linux內(nèi)核提供了一些與用戶空間的通信機制,例如 procfs 接口和 sysfs 接口,大部分的這些接口都可以作為獲取內(nèi)核信息的手段。 但除了這些接口,內(nèi)核也提供了專門的調(diào)試機制—
    的頭像 發(fā)表于 09-26 16:42 ?637次閱讀