diff options
Diffstat (limited to 'resources/libraries/python')
-rw-r--r-- | resources/libraries/python/Constants.py | 1 | ||||
-rw-r--r-- | resources/libraries/python/DUTSetup.py | 9 |
2 files changed, 8 insertions, 2 deletions
diff --git a/resources/libraries/python/Constants.py b/resources/libraries/python/Constants.py index cf7922f06f..92a16e6b8b 100644 --- a/resources/libraries/python/Constants.py +++ b/resources/libraries/python/Constants.py @@ -458,6 +458,7 @@ class Constants: # TODO CSIT-1481: Crypto HW should be read from topology file instead. NIC_NAME_TO_CRYPTO_HW = { + u"Intel-E810CQ": u"HW_4xxx", u"Intel-E822CQ": u"HW_C4xxx", u"Intel-X710": u"HW_DH895xcc", u"Intel-XL710": u"HW_DH895xcc", 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']}" |