-
Notifications
You must be signed in to change notification settings - Fork 206
/
Copy pathqat-init.sh
executable file
·99 lines (92 loc) · 3.05 KB
/
qat-init.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
#!/usr/bin/env bash
# This script is based on qatlib's qat_init.sh
NODE_NAME="${NODE_NAME:-}"
ENABLED_QAT_PF_PCIIDS=${ENABLED_QAT_PF_PCIIDS:-37c8 4940 4942 4944 4946}
SERVICES_LIST="sym asym sym;asym dc sym;dc asym;dc"
QAT_4XXX_DEVICE_PCI_ID="0x4940"
QAT_401XX_DEVICE_PCI_ID="0x4942"
QAT_402XX_DEVICE_PCI_ID="0x4944"
QAT_420XX_DEVICE_PCI_ID="0x4946"
SERVICES_ENABLED="NONE"
SERVICES_ENABLED_FOUND="FALSE"
DEVS=""
for DEV in $(realpath /sys/bus/pci/devices/*); do
for PF in $ENABLED_QAT_PF_PCIIDS; do
if grep -q "$PF" "$DEV"/device; then
DEVS="$DEV $DEVS"
fi
done
done
check_config() {
[ -f "conf/qat.conf" ] && SERVICES_ENABLED=$(grep "^ServicesEnabled=" conf/qat.conf | cut -d= -f 2 | grep '\S')
[ -f "conf/qat-$NODE_NAME.conf" ] && SERVICES_ENABLED=$(grep "^ServicesEnabled=" conf/qat-"$NODE_NAME".conf | cut -d= -f 2 | grep '\S')
if [ "$SERVICES_ENABLED" != "NONE" ]; then
SERVICES_ENABLED_FOUND="FALSE"
for SERVICE in $SERVICES_LIST
do
if [ "$SERVICE" = "$SERVICES_ENABLED" ]; then
SERVICES_ENABLED_FOUND="TRUE"
break
fi
done
fi
}
sysfs_config() {
if [ "$SERVICES_ENABLED_FOUND" = "TRUE" ]; then
for DEVPATH in $DEVS; do
PCI_DEV=$(cat "$DEVPATH"/device 2> /dev/null)
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
continue
fi
CURRENT_SERVICES=$(cat "$DEVPATH"/qat/cfg_services)
if [ "$CURRENT_SERVICES" != "$SERVICES_ENABLED" ]; then
CURRENT_STATE=$(cat "$DEVPATH"/qat/state)
if [ "$CURRENT_STATE" = "up" ]; then
echo down > "$DEVPATH"/qat/state
fi
echo "$SERVICES_ENABLED" > "$DEVPATH"/qat/cfg_services
CURRENT_SERVICES=$(cat "$DEVPATH"/qat/cfg_services)
fi
echo "Device $DEVPATH configured with services: $CURRENT_SERVICES"
done
fi
}
enable_sriov() {
for DEVPATH in $DEVS; do
NUMVFS="$DEVPATH"/sriov_numvfs
if ! test -w "$NUMVFS"; then
echo "error: $NUMVFS is not found or not writable. Check if QAT driver module is loaded"
exit 1
fi
if ! test -d /sys/bus/pci/drivers/vfio-pci; then
echo "error: vfio-pci driver needed by QAT VFs must be loaded"
exit 1
fi
if [ "$(cat "$NUMVFS")" -ne 0 ]; then
echo "$DEVPATH already configured"
else
tee "$NUMVFS" < "$DEVPATH"/sriov_totalvfs
VFDEVS=$(realpath -L "$DEVPATH"/virtfn*)
for vfdev in $VFDEVS; do
BSF=$(basename "$vfdev")
VF_DEV="/sys/bus/pci/devices/$BSF"
if test -e "$VF_DEV/driver"; then
P=$(realpath -L "$VF_DEV/driver")
VF_DRIVER=$(basename "$P")
else
VF_DRIVER=""
fi
if [ "$VF_DRIVER" != "vfio-pci" ]; then
if [ "$VF_DRIVER" ]; then
echo -n "$BSF" > /sys/bus/pci/drivers/"$VF_DRIVER"/unbind
fi
echo -n vfio-pci > /sys/bus/pci/devices/"$BSF"/driver_override
echo -n "$BSF" > /sys/bus/pci/drivers/vfio-pci/bind
fi
done
fi
done
}
check_config
sysfs_config
enable_sriov