-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrun_test_in_qemu.sh
executable file
·264 lines (229 loc) · 9.17 KB
/
run_test_in_qemu.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
#!/bin/bash
# Copyright (C) 2024 BEIJING DATENLORD TECHNOLOGY CO., LTD
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0.
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions
# and limitations under the License.
set -o nounset
set -o xtrace
GUEST_MOUNT_POINT=/mnt/shared
sudo apt update
sudo apt install -y make
# Download and compile Xilinx opensource QDMA driver and userspace applications
pushd ${GUEST_MOUNT_POINT}/dma_ip_drivers/QDMA/linux-kernel
make install
popd
# Driver location
DRIVER_LOC="${GUEST_MOUNT_POINT}/dma_ip_drivers"
TEMP=/tmp
FILE1=$TEMP/test.txt
FILE2=$TEMP/test2.txt
FILE3=$TEMP/test_8k.txt
FILE4=$TEMP/test3.txt
FILE5=$TEMP/test4.txt
FILE6=$TEMP/test5.txt
# Use the device connected to the second PCIEHost by default which is the one
# used in the versal-cpie-cpm5 demo. This might change in case the qdma
# device is wired directly to a remote port.
DEVICE="${DEVICE:-02}"
SYSFS_QMAX=/sys/bus/pci/devices/0000:${DEVICE}:00.0/qdma/qmax
DRVDEV=qdma${DEVICE}000
CHRDEV=/dev/${DRVDEV}-MM-0
DIRMODE=${DEVICE}:0:2
INDIRMODE=${DEVICE}:0:3
DEVICE_ADDR="0x102100000"
DEVICE_ADDR_PLUS_4K="0x102101000"
DATA_SIZE_1K=1024
DATA_SIZE_4K=4096
DATA_SIZE_8K=8192
# Regression test for the QEMU + xxx + QDMA device.
#
# This requires a little test harness in order to work:
# * The QDMA needs to be bound to a x86_64 QEMU and a 4K memory must be
# mapped at $DEVICE_ADDR on the "card" interface. This acts as a dummy SBI
# with the 4K keyhole.
# Create some dummy files for the tests below.
dd if=/dev/urandom of=$FILE1 bs=1K count=1
dd if=/dev/urandom of=$FILE3 bs=1K count=8
################################################################################
# TEST0: Check that the device is correctly detected by the driver.
################################################################################
echo "TEST0: Load the driver"
insmod $DRIVER_LOC/QDMA/linux-kernel/bin/qdma-pf.ko mode=${DIRMODE}
echo "TEST0: Check that the SYSFS exists."
if [ ! -f ${SYSFS_QMAX} ]; then
echo "FAILED: cannot continue: check DEVICE variable"
exit 1
else
echo "SUCCESS"
fi
echo "TEST0: Unloading the driver"
rmmod qdma-pf.ko
################################################################################
# TEST1: Load simple data in Direct Interrupt Mode.
################################################################################
echo "TEST1: Load the driver in Direct Interrupt Mode"
insmod $DRIVER_LOC/QDMA/linux-kernel/bin/qdma-pf.ko mode=${DIRMODE}
echo "TEST1: Setting the number of queue"
echo 1 > ${SYSFS_QMAX}
echo "TEST1: Configuring H2C and C2H mm queues"
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q add idx 0 mode mm dir h2c
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q add idx 0 mode mm dir c2h
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q start idx 0 dir c2h
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q start idx 0 dir h2c
echo "TEST1: Sending 1KB to the device @$DEVICE_ADDR"
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-to-device -d ${CHRDEV} -f \
$FILE1 -s $DATA_SIZE_1K -a $DEVICE_ADDR
echo "TEST1: Getting 1KB from the device @$DEVICE_ADDR"
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-from-device -d ${CHRDEV} -f \
$FILE2 -s $DATA_SIZE_1K -a $DEVICE_ADDR
echo "TEST1: Unloading the driver"
rmmod qdma-pf.ko
echo "TEST1: Comparing the files"
diff $FILE1 $FILE2 > /dev/null
if [ $? -gt 0 ]
then
echo "FAILED: file are not identical!"
exit 1
else
echo "SUCCESS"
fi
echo "TEST1: Cleaning Up"
rm $FILE2
################################################################################
# TEST2: Load simple data in Indirect Interrupt Mode.
################################################################################
echo "TEST2: Load the driver in Indirect Interrupt Mode"
insmod $DRIVER_LOC/QDMA/linux-kernel/bin/qdma-pf.ko mode=${INDIRMODE}
echo "TEST2: Setting the number of queue"
echo 1 > ${SYSFS_QMAX}
echo "TEST2: Configuring H2C and C2H mm queues"
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q add idx 0 mode mm dir h2c
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q add idx 0 mode mm dir c2h
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q start idx 0 dir c2h
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q start idx 0 dir h2c
echo "TEST2: Sending 1KB to the device @$DEVICE_ADDR"
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-to-device -d ${CHRDEV} -f \
$FILE1 -s $DATA_SIZE_1K -a $DEVICE_ADDR
echo "TEST2: Getting 1KB from the device @$DEVICE_ADDR"
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-from-device -d ${CHRDEV} -f \
$FILE2 -s $DATA_SIZE_1K -a $DEVICE_ADDR
echo "TEST2: Unloading the driver"
rmmod qdma-pf.ko
echo "TEST2: Comparing the files"
diff $FILE1 $FILE2 > /dev/null
if [ $? -gt 0 ]
then
echo "FAILED: files are not identical!"
exit 1
else
echo "SUCCESS"
fi
echo "TEST2: Cleaning Up"
rm $FILE2
################################################################################
# TEST3: Load data with specific aperture size through a keyhole.
# * This is a driver specific feature but it exercises running multiple
# sequential descriptor. The driver will cut the transfer in two part.
################################################################################
echo "TEST3: Load the driver in Direct Interrupt Mode"
insmod $DRIVER_LOC/QDMA/linux-kernel/bin/qdma-pf.ko mode=${DIRMODE}
echo "TEST3: Setting the number of queue"
echo 1 > ${SYSFS_QMAX}
echo "TEST3: Configuring H2C and C2H mm queues"
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q add idx 0 mode mm dir h2c
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q add idx 0 mode mm dir c2h
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q start idx 0 dir c2h
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q start idx 0 dir h2c \
aperture_sz $DATA_SIZE_4K
echo "TEST3: Send 8KB to the device @$DEVICE_ADDR"
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-to-device -d ${CHRDEV} -f \
$FILE3 -s $DATA_SIZE_8K -a $DEVICE_ADDR
echo "TEST3: Get last written 4KB from the device @$DEVICE_ADDR_PLUS_4K"
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-from-device -d ${CHRDEV} -f \
$FILE2 -s $DATA_SIZE_4K -a $DEVICE_ADDR_PLUS_4K
echo "TEST3: Unloading the driver"
rmmod qdma-pf.ko
echo "TEST3: Comparing the files which should be different"
diff $FILE2 $FILE3 > /dev/null
if [ $? -gt 0 ]
then
echo "SUCCESS"
else
echo "FAILED: file are identical!"
exit 1
fi
dd if=$FILE3 of=$FILE4 bs=4k count=1 skip=1
echo "TEST3: Comparing the last 4k of the file which should be identical"
diff $FILE4 $FILE2 > /dev/null
if [ $? -gt 0 ]
then
echo "FAILED"
exit 1
else
echo "SUCCESS"
fi
echo "TEST3: Cleaning Up"
rm $FILE2 $FILE4
################################################################################
# TEST4: Load data and make the descriptor ring overflow.
################################################################################
# The Software producer Index is not reset, if the driver is not unloaded and
# the queue is not stopped. So just do several dma-ctl in order to overflow
# the descriptor ring, and check the data.
echo "TEST4: Creating two 4K files"
dd if=/dev/urandom of=$FILE5 bs=1K count=4
dd if=/dev/urandom of=$FILE6 bs=1K count=4
echo "TEST4: Load the driver"
insmod $DRIVER_LOC/QDMA/linux-kernel/bin/qdma-pf.ko
echo "TEST4: Setting the number of queue"
echo 1 > /sys/bus/pci/devices/0000:02:00.0/qdma/qmax
echo "TEST4: Configuring H2C / C2H queues, ring size 64"
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q add idx 0 mode mm dir h2c
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q add idx 0 mode mm dir c2h
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q start idx 0 dir h2c \
idx_ringsz 1
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q start idx 0 dir c2h \
idx_ringsz 1
echo "TEST4: Sending 128x 4K to the device @$DEVICE_ADDR"
loop=0
while [ "$loop" -lt 64 ]
do
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-to-device -d ${CHRDEV} -f $FILE5 \
-s $(( $DATA_SIZE_4K )) \
-a $DEVICE_ADDR > /dev/null
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-from-device -d ${CHRDEV} -f $FILE2 \
-s $(( $DATA_SIZE_4K )) \
-a $DEVICE_ADDR > /dev/null
diff $FILE5 $FILE2 > /dev/null
if [ $? -gt 0 ]
then
echo "FAILED at occurence $loop!"
exit 1
fi
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-to-device -d ${CHRDEV} -f $FILE6 \
-s $(( $DATA_SIZE_4K )) \
-a $DEVICE_ADDR > /dev/null
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-from-device -d ${CHRDEV} -f $FILE2 \
-s $(( $DATA_SIZE_4K )) \
-a $DEVICE_ADDR > /dev/null
diff $FILE6 $FILE2 > /dev/null
if [ $? -gt 0 ]
then
echo "FAILED at occurence $loop!"
exit 1
fi
echo "SUCCESS $loop / 64"
loop=`expr $loop + 1`
done
echo "SUCCESS"
echo "TEST4: Unloading the driver"
rmmod qdma-pf.ko
echo "TEST4: Cleaning Up"
rm $FILE2 $FILE5 $FILE6 -f
sudo poweroff