xref: /openwifi/driver/xilinx_dma/README.md (revision 14124d7306727ee7bbae83655e3d9ecacc4c3bee)
1Currently used driver xilinx_dma-orig.c is based on 552d3f11e374ca0d435aa93a571507819eabdda2 of https://github.com/Xilinx/linux-xlnx )
2
3instruction to generate our customized xilinx dma driver:
4
5./make_xilinx_dma.sh
6
7instruction to generate our customized xilinx dma test program:
8
9./make_xilinx_dma_test.sh
10
11test dma driver on board: login to zc706, then:
12
13    rm axidmatest.ko
14    wget ftp://192.168.10.1/driver/xilinx_dma/axidmatest.ko
15    rm ddc.ko
16    wget ftp://192.168.10.1/driver/ddc/ddc.ko
17    rm xilinx_dma.ko
18    wget ftp://192.168.10.1/driver/xilinx_dma/xilinx_dma.ko
19    rmmod axidmatest
20    rmmod ddc
21    rmmod xilinx_dma
22    insmod xilinx_dma.ko
23    insmod ddc.ko
24    insmod axidmatest.ko
25    dmesg -c
26
27dmesg will show test result printed by "insmod axidmatest.ko". Like this:
28
29    root@analog:~#     dmesg -c
30    xilinx_dmatest: dropped channel dma5chan0
31    xilinx_dmatest: dropped channel dma5chan1
32
33    sdr,ddc dev_remove base_addr 0xf14e0000
34    sdr,ddc dev_remove ddc_driver_api_inst 0xbf032284
35    sdr,ddc dev_remove             ddc_api 0xbf032284
36    sdr,ddc dev_remove succeed!
37    xilinx-vdma 43000000.axivdma: Xilinx AXI VDMA Engine Driver Probed!!
38    xilinx-vdma 80400000.dma: Xilinx AXI DMA Engine Driver Probed!!
39    xilinx-vdma 80410000.dma: Xilinx AXI DMA Engine Driver Probed!!
40
41    sdr,ddc dev_probe match!
42    sdr,ddc dev_probe io start 0x83c20000 end 0x83c2ffff name /fpga-axi@0/rx_intf@83c20000 flags 0x00000200 desc 0x00000000
43    sdr,ddc dev_probe base_addr 0xf18e0000
44    sdr,ddc dev_probe ddc_driver_api_inst 0xbf0e1284
45    sdr,ddc dev_probe             ddc_api 0xbf0e1284
46    sdr,ddc dev_probe reset tsf timer
47    sdr,ddc dev_probe tsf timer runtime read 1 33007 100015us
48    sdr,ddc dev_probe succeed!
49    sdr,ddc hw_init mode 0
50    sdr,ddc hw_init mode DDC_AXIS_LOOP_BACK
51    sdr,ddc hw_init err 0
52    dmatest: Started 1 threads using dma5chan0 dma5chan1
53    align 3
54    sdr,ddc hw_init mode 0
55    sdr,ddc hw_init mode DDC_AXIS_LOOP_BACK
56    sdr,ddc hw_init err 0
57    tx_tmo 99 status 0 len 6448 DMA_COMPLETE 0
58    dma5chan0-dma5c: verifying source buffer...
59    dma5chan0-dma5c: verifying dest buffer...
60    dma5chan0-dma5c: #0: No errors with
61    src_off=0x448 dst_off=0x568 len=0x1930
62    align 3
63    sdr,ddc hw_init mode 0
64    sdr,ddc hw_init mode DDC_AXIS_LOOP_BACK
65    sdr,ddc hw_init err 0
66    tx_tmo 100 status 0 len 3248 DMA_COMPLETE 0
67    dma5chan0-dma5c: verifying source buffer...
68    dma5chan0-dma5c: verifying dest buffer...
69    dma5chan0-dma5c: #1: No errors with
70    src_off=0x458 dst_off=0xf08 len=0xcb0
71    align 3
72    sdr,ddc hw_init mode 0
73    sdr,ddc hw_init mode DDC_AXIS_LOOP_BACK
74    sdr,ddc hw_init err 0
75    tx_tmo 100 status 0 len 8112 DMA_COMPLETE 0
76    dma5chan0-dma5c: verifying source buffer...
77    dma5chan0-dma5c: verifying dest buffer...
78    dma5chan0-dma5c: #2: No errors with
79    src_off=0x10 dst_off=0x20 len=0x1fb0
80    align 3
81    sdr,ddc hw_init mode 0
82    sdr,ddc hw_init mode DDC_AXIS_LOOP_BACK
83    sdr,ddc hw_init err 0
84    tx_tmo 100 status 0 len 840 DMA_COMPLETE 0
85    dma5chan0-dma5c: verifying source buffer...
86    dma5chan0-dma5c: verifying dest buffer...
87    dma5chan0-dma5c: #3: No errors with
88    src_off=0x1890 dst_off=0x1268 len=0x348
89    align 3
90    sdr,ddc hw_init mode 0
91    sdr,ddc hw_init mode DDC_AXIS_LOOP_BACK
92    sdr,ddc hw_init err 0
93    tx_tmo 100 status 0 len 7816 DMA_COMPLETE 0
94    dma5chan0-dma5c: verifying source buffer...
95    dma5chan0-dma5c: verifying dest buffer...
96    dma5chan0-dma5c: #4: No errors with
97    src_off=0x80 dst_off=0x168 len=0x1e88
98    dma5chan0-dma5c: terminating after 5 tests, 0 failures (status 0)
99
100