2
2
# This script is based on qatlib's qat_init.sh
3
3
NODE_NAME=" ${NODE_NAME:- } "
4
4
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)
6
5
SERVICES_LIST=" sym asym sym;asym dc sym;dc asym;dc"
7
6
QAT_4XXX_DEVICE_PCI_ID=" 0x4940"
8
7
QAT_401XX_DEVICE_PCI_ID=" 0x4942"
@@ -11,6 +10,15 @@ QAT_420XX_DEVICE_PCI_ID="0x4946"
11
10
SERVICES_ENABLED=" NONE"
12
11
SERVICES_ENABLED_FOUND=" FALSE"
13
12
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
+
14
22
check_config () {
15
23
[ -f " conf/qat.conf" ] && SERVICES_ENABLED=$( grep " ^ServicesEnabled=" conf/qat.conf | cut -d= -f 2 | grep ' \S' )
16
24
[ -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() {
29
37
30
38
sysfs_config () {
31
39
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
34
41
PCI_DEV=$( cat " $DEVPATH " /device 2> /dev/null)
35
42
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
36
43
continue
@@ -45,15 +52,14 @@ sysfs_config() {
45
52
echo " $SERVICES_ENABLED " > " $DEVPATH " /qat/cfg_services
46
53
CURRENT_SERVICES=$( cat " $DEVPATH " /qat/cfg_services)
47
54
fi
48
- echo " Device $dev configured with services: $CURRENT_SERVICES "
55
+ echo " Device $DEVPATH configured with services: $CURRENT_SERVICES "
49
56
done
50
57
fi
51
58
}
52
59
53
60
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
57
63
if ! test -w " $NUMVFS " ; then
58
64
echo " error: $NUMVFS is not found or not writable. Check if QAT driver module is loaded"
59
65
exit 1
@@ -65,7 +71,7 @@ enable_sriov() {
65
71
if [ " $( cat " $NUMVFS " ) " -ne 0 ]; then
66
72
echo " $DEVPATH already configured"
67
73
else
68
- tee " $NUMVFS " < " $DEVPATH /sriov_totalvfs"
74
+ tee " $NUMVFS " < " $DEVPATH " /sriov_totalvfs
69
75
VFDEVS=$( realpath -L " $DEVPATH " /virtfn* )
70
76
for vfdev in $VFDEVS ; do
71
77
BSF=$( basename " $vfdev " )
0 commit comments