Skip to content

tests: qdma: fix the starting position of 4KB #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/soc/pci/xilinx/linux-qdma-test-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ $DRIVER_LOC/QDMA/linux-kernel/bin/dma-ctl ${DRVDEV} q start idx 0 dir h2c \
echo "TEST3: Send 8KB to the device @0x102100000"
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-to-device -d ${CHRDEV} -f \
$FILE3 -s 8192 -a 0x102100000
echo "TEST3: Get last written 4KB from the device @0x102100000"
echo "TEST3: Get last written 4KB from the device @0x102101000"
$DRIVER_LOC/QDMA/linux-kernel/bin/dma-from-device -d ${CHRDEV} -f \
$FILE2 -s 4096 -a 0x102100000
$FILE2 -s 4096 -a 0x102101000
echo "TEST3: Unloading the driver"
rmmod qdma-pf.ko
echo "TEST3: Comparing the files which should be different"
Expand Down