Skip to content

Commit c9d0d18

Browse files
committed
qat: init: detect all system QAT devices
Signed-off-by: Mikko Ylinen <[email protected]>
1 parent 4915bfe commit c9d0d18

File tree

2 files changed

+25
-12
lines changed

2 files changed

+25
-12
lines changed

demo/qat-autoreset.sh

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
#!/usr/bin/env bash
22
NODE_NAME="${NODE_NAME:-}"
33
ENABLED_QAT_PF_PCIIDS=${ENABLED_QAT_PF_PCIIDS:-37c8 4940 4942 4944 4946}
4-
DEVS=$(for pf in $ENABLED_QAT_PF_PCIIDS; do lspci -n | grep -e "$pf" | grep -o -e "^\\S*"; done)
54

65
AUTORESET_ENABLED="NONE"
76
AUTORESET_ENABLED_FOUND="FALSE"
87
AUTORESET_OPTIONS_LIST="on off"
98

9+
DEVS=""
10+
for DEV in $(realpath /sys/bus/pci/devices/*); do
11+
for PF in $ENABLED_QAT_PF_PCIIDS; do
12+
if grep -q "$PF" "$DEV"/device; then
13+
DEVS="$DEV $DEVS"
14+
fi
15+
done
16+
done
17+
1018
check_config() {
1119
[ -f "conf/qat.conf" ] && AUTORESET_ENABLED=$(grep "^AutoresetEnabled=" conf/qat.conf | cut -d= -f 2 | grep '\S')
1220
[ -f "conf/qat-$NODE_NAME.conf" ] && AUTORESET_ENABLED=$(grep "^AutoresetEnabled=" conf/qat-"$NODE_NAME".conf | cut -d= -f 2 | grep '\S')
@@ -25,9 +33,8 @@ check_config() {
2533

2634
enable_auto_reset() {
2735
if [ "$AUTORESET_ENABLED_FOUND" = "TRUE" ]; then
28-
for dev in $DEVS; do
29-
devpath="/sys/bus/pci/devices/0000:$dev"
30-
autoreset_path="$devpath/qat/auto_reset"
36+
for devpath in $DEVS; do
37+
autoreset_path="$devpath"/qat/auto_reset
3138
if ! test -w "$autoreset_path"; then
3239
echo "error: $autoreset_path is not found or not writable. Check if QAT driver module is loaded. Skipping..."
3340
exit 1

demo/qat-init.sh

+14-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# This script is based on qatlib's qat_init.sh
33
NODE_NAME="${NODE_NAME:-}"
44
ENABLED_QAT_PF_PCIIDS=${ENABLED_QAT_PF_PCIIDS:-37c8 4940 4942 4944 4946}
5-
DEVS=$(for pf in $ENABLED_QAT_PF_PCIIDS; do lspci -n | grep -e "$pf" | grep -o -e "^\\S*"; done)
65
SERVICES_LIST="sym asym sym;asym dc sym;dc asym;dc"
76
QAT_4XXX_DEVICE_PCI_ID="0x4940"
87
QAT_401XX_DEVICE_PCI_ID="0x4942"
@@ -11,6 +10,15 @@ QAT_420XX_DEVICE_PCI_ID="0x4946"
1110
SERVICES_ENABLED="NONE"
1211
SERVICES_ENABLED_FOUND="FALSE"
1312

13+
DEVS=""
14+
for DEV in $(realpath /sys/bus/pci/devices/*); do
15+
for PF in $ENABLED_QAT_PF_PCIIDS; do
16+
if grep -q "$PF" "$DEV"/device; then
17+
DEVS="$DEV $DEVS"
18+
fi
19+
done
20+
done
21+
1422
check_config() {
1523
[ -f "conf/qat.conf" ] && SERVICES_ENABLED=$(grep "^ServicesEnabled=" conf/qat.conf | cut -d= -f 2 | grep '\S')
1624
[ -f "conf/qat-$NODE_NAME.conf" ] && SERVICES_ENABLED=$(grep "^ServicesEnabled=" conf/qat-"$NODE_NAME".conf | cut -d= -f 2 | grep '\S')
@@ -29,8 +37,7 @@ check_config() {
2937

3038
sysfs_config() {
3139
if [ "$SERVICES_ENABLED_FOUND" = "TRUE" ]; then
32-
for dev in $DEVS; do
33-
DEVPATH="/sys/bus/pci/devices/0000:$dev"
40+
for DEVPATH in $DEVS; do
3441
PCI_DEV=$(cat "$DEVPATH"/device 2> /dev/null)
3542
if [ "$PCI_DEV" != "$QAT_4XXX_DEVICE_PCI_ID" ] && [ "$PCI_DEV" != "$QAT_401XX_DEVICE_PCI_ID" ] && [ "$PCI_DEV" != "$QAT_402XX_DEVICE_PCI_ID" ] && [ "$PCI_DEV" != "$QAT_420XX_DEVICE_PCI_ID" ]; then
3643
continue
@@ -45,15 +52,14 @@ sysfs_config() {
4552
echo "$SERVICES_ENABLED" > "$DEVPATH"/qat/cfg_services
4653
CURRENT_SERVICES=$(cat "$DEVPATH"/qat/cfg_services)
4754
fi
48-
echo "Device $dev configured with services: $CURRENT_SERVICES"
55+
echo "Device $DEVPATH configured with services: $CURRENT_SERVICES"
4956
done
5057
fi
5158
}
5259

5360
enable_sriov() {
54-
for dev in $DEVS; do
55-
DEVPATH="/sys/bus/pci/devices/0000:$dev"
56-
NUMVFS="$DEVPATH/sriov_numvfs"
61+
for DEVPATH in $DEVS; do
62+
NUMVFS="$DEVPATH"/sriov_numvfs
5763
if ! test -w "$NUMVFS"; then
5864
echo "error: $NUMVFS is not found or not writable. Check if QAT driver module is loaded"
5965
exit 1
@@ -65,7 +71,7 @@ enable_sriov() {
6571
if [ "$(cat "$NUMVFS")" -ne 0 ]; then
6672
echo "$DEVPATH already configured"
6773
else
68-
tee "$NUMVFS" < "$DEVPATH/sriov_totalvfs"
74+
tee "$NUMVFS" < "$DEVPATH"/sriov_totalvfs
6975
VFDEVS=$(realpath -L "$DEVPATH"/virtfn*)
7076
for vfdev in $VFDEVS; do
7177
BSF=$(basename "$vfdev")

0 commit comments

Comments
 (0)