aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/DUTSetup.py
diff options
context:
space:
mode:
authorYulong Pei <yulong.pei@intel.com>2023-06-14 02:20:25 +0000
committerPeter Mikus <peter.mikus@protonmail.ch>2023-06-16 12:01:34 +0000
commitef0822bf5781981fc5ddd8afbc007b5d7d272427 (patch)
treef2961286646314fd20b0f9a3b6691a44788dcbab /resources/libraries/python/DUTSetup.py
parente5ce7351f3ef20c564fa428aca81255a53c662c4 (diff)
Add cryptodev device 4xxx
QAT_4xxx is integrated QAT device on SPR platform. Signed-off-by: xinfeng zhao <xinfengx.zhao@intel.com> Signed-off-by: Yulong Pei <yulong.pei@intel.com> Change-Id: If1d4b3d72a2c66855ac8c1c42516f0cb78bdfab2
Diffstat (limited to 'resources/libraries/python/DUTSetup.py')
-rw-r--r--resources/libraries/python/DUTSetup.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/resources/libraries/python/DUTSetup.py b/resources/libraries/python/DUTSetup.py
index 2485fbb904..e715f48a76 100644
--- a/resources/libraries/python/DUTSetup.py
+++ b/resources/libraries/python/DUTSetup.py
@@ -253,7 +253,8 @@ class DUTSetup:
initialize or remove VFs on QAT.
:param node: DUT node.
- :crypto_type: Crypto device type - HW_DH895xcc, HW_C3xxx or HW_C4xxx.
+ :crypto_type: Crypto device type - HW_DH895xcc, HW_C3xxx, HW_C4xxx
+ or HW_4xxx.
:param numvfs: Number of VFs to initialize, 0 - disable the VFs.
:param force_init: If True then try to initialize to specific value.
:type node: dict
@@ -281,7 +282,8 @@ class DUTSetup:
"""Init Crypto QAT device virtual functions on DUT.
:param node: DUT node.
- :crypto_type: Crypto device type - HW_DH895xcc, HW_C3xxx or HW_C4xxx.
+ :crypto_type: Crypto device type - HW_DH895xcc, HW_C3xxx, HW_C4xxx
+ or HW_4xxx.
:param numvfs: Number of VFs to initialize, 0 - disable the VFs.
:type node: dict
:type crypto_type: string
@@ -298,6 +300,9 @@ class DUTSetup:
elif crypto_type == u"HW_C4xxx":
kernel_mod = u"qat_c4xxx"
kernel_drv = u"c4xxx"
+ elif crypto_type == u"HW_4xxx":
+ kernel_mod = u"qat_4xxx"
+ kernel_drv = u"4xxx"
else:
raise RuntimeError(
f"Unsupported crypto device type on {node[u'host']}"