mirror of
https://github.com/torvalds/linux.git
synced 2024-12-20 18:11:47 +00:00
657ad678e0
Allow for crypto instances to be configured with symmetric crypto rings that belong to a bank that is different from the one where asymmetric crypto rings are located. This is to allow for devices with banks made of a single ring pair. In these, crypto instances will be composed of two separate banks. Changed string literals are not exposed to the user space. Signed-off-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com> Reviewed-by: Wojciech Ziemba <wojciech.ziemba@intel.com> Reviewed-by: Fiona Trahe <fiona.trahe@intel.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
39 lines
1.5 KiB
C
39 lines
1.5 KiB
C
/* SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0-only) */
|
|
/* Copyright(c) 2014 - 2020 Intel Corporation */
|
|
#ifndef ADF_CFG_STRINGS_H_
|
|
#define ADF_CFG_STRINGS_H_
|
|
|
|
#define ADF_GENERAL_SEC "GENERAL"
|
|
#define ADF_KERNEL_SEC "KERNEL"
|
|
#define ADF_ACCEL_SEC "Accelerator"
|
|
#define ADF_NUM_CY "NumberCyInstances"
|
|
#define ADF_NUM_DC "NumberDcInstances"
|
|
#define ADF_RING_SYM_SIZE "NumConcurrentSymRequests"
|
|
#define ADF_RING_ASYM_SIZE "NumConcurrentAsymRequests"
|
|
#define ADF_RING_DC_SIZE "NumConcurrentRequests"
|
|
#define ADF_RING_ASYM_TX "RingAsymTx"
|
|
#define ADF_RING_SYM_TX "RingSymTx"
|
|
#define ADF_RING_ASYM_RX "RingAsymRx"
|
|
#define ADF_RING_SYM_RX "RingSymRx"
|
|
#define ADF_RING_DC_TX "RingTx"
|
|
#define ADF_RING_DC_RX "RingRx"
|
|
#define ADF_ETRMGR_BANK "Bank"
|
|
#define ADF_RING_SYM_BANK_NUM "BankSymNumber"
|
|
#define ADF_RING_ASYM_BANK_NUM "BankAsymNumber"
|
|
#define ADF_CY "Cy"
|
|
#define ADF_DC "Dc"
|
|
#define ADF_ETRMGR_COALESCING_ENABLED "InterruptCoalescingEnabled"
|
|
#define ADF_ETRMGR_COALESCING_ENABLED_FORMAT \
|
|
ADF_ETRMGR_BANK "%d" ADF_ETRMGR_COALESCING_ENABLED
|
|
#define ADF_ETRMGR_COALESCE_TIMER "InterruptCoalescingTimerNs"
|
|
#define ADF_ETRMGR_COALESCE_TIMER_FORMAT \
|
|
ADF_ETRMGR_BANK "%d" ADF_ETRMGR_COALESCE_TIMER
|
|
#define ADF_ETRMGR_COALESCING_MSG_ENABLED "InterruptCoalescingNumResponses"
|
|
#define ADF_ETRMGR_COALESCING_MSG_ENABLED_FORMAT \
|
|
ADF_ETRMGR_BANK "%d" ADF_ETRMGR_COALESCING_MSG_ENABLED
|
|
#define ADF_ETRMGR_CORE_AFFINITY "CoreAffinity"
|
|
#define ADF_ETRMGR_CORE_AFFINITY_FORMAT \
|
|
ADF_ETRMGR_BANK "%d" ADF_ETRMGR_CORE_AFFINITY
|
|
#define ADF_ACCEL_STR "Accelerator%d"
|
|
#endif
|