crypto: hisilicon/qm - remove some unused defines
authorWeili Qian <qianweili@huawei.com>
Thu, 9 Feb 2023 12:36:13 +0000 (20:36 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 14 Feb 2023 05:39:33 +0000 (13:39 +0800)
1. Remove some macros define since it is not used.
2. Remove enum QM_HW_UNKNOWN since it is not used.
3. Remove unused member 'is_frozen' in 'hisi_qm' structure.

Signed-off-by: Weili Qian <qianweili@huawei.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/hisilicon/qm.c
include/linux/hisi_acc_qm.h

index 007ac7a69ce74759c2a973cf38c6d3894097b4b0..547626718484c1ce30130654b8c1208b8bbeba71 100644 (file)
@@ -95,8 +95,6 @@
 #define QM_VFT_CFG_RDY                 0x10006c
 #define QM_VFT_CFG_OP_WR               0x100058
 #define QM_VFT_CFG_TYPE                        0x10005c
-#define QM_SQC_VFT                     0x0
-#define QM_CQC_VFT                     0x1
 #define QM_VFT_CFG                     0x100060
 #define QM_VFT_CFG_OP_ENABLE           0x100054
 #define QM_PM_CTRL                     0x100148
 
 /* interfunction communication */
 #define QM_IFC_READY_STATUS            0x100128
-#define QM_IFC_C_STS_M                 0x10012C
 #define QM_IFC_INT_SET_P               0x100130
 #define QM_IFC_INT_CFG                 0x100134
 #define QM_IFC_INT_SOURCE_P            0x100138
 
 #define PCI_BAR_2                      2
 #define PCI_BAR_4                      4
-#define QM_SQE_DATA_ALIGN_MASK         GENMASK(6, 0)
 #define QMC_ALIGN(sz)                  ALIGN(sz, 32)
 
 #define QM_DBG_READ_LEN                256
 #define QM_DRIVER_REMOVING             0
 #define QM_RST_SCHED                   1
 #define QM_QOS_PARAM_NUM               2
-#define QM_QOS_VAL_NUM                 1
-#define QM_QOS_BDF_PARAM_NUM           4
 #define QM_QOS_MAX_VAL                 1000
 #define QM_QOS_RATE                    100
 #define QM_QOS_EXPAND_RATE             1000
 #define QM_SHAPER_FACTOR_CBS_B_SHIFT   15
 #define QM_SHAPER_FACTOR_CBS_S_SHIFT   19
 #define QM_SHAPER_CBS_B                        1
-#define QM_SHAPER_CBS_S                        16
 #define QM_SHAPER_VFT_OFFSET           6
-#define WAIT_FOR_QOS_VF                        100
 #define QM_QOS_MIN_ERROR_RATE          5
-#define QM_QOS_TYPICAL_NUM             8
 #define QM_SHAPER_MIN_CBS_S            8
 #define QM_QOS_TICK                    0x300U
 #define QM_QOS_DIVISOR_CLK             0x1f40U
 #define QM_QOS_MAX_CIR_B               200
 #define QM_QOS_MIN_CIR_B               100
 #define QM_QOS_MAX_CIR_U               6
-#define QM_QOS_MAX_CIR_S               11
 #define QM_AUTOSUSPEND_DELAY           3000
 
 #define QM_MK_CQC_DW3_V1(hop_num, pg_sz, buf_sz, cqe_sz) \
index be3aedaa96dc146e3f39b72f85a200f367625c25..df5be7e6db04481b27b73882c29c91108e89cf70 100644 (file)
@@ -122,7 +122,6 @@ enum qp_state {
 };
 
 enum qm_hw_ver {
-       QM_HW_UNKNOWN = -1,
        QM_HW_V1 = 0x20,
        QM_HW_V2 = 0x21,
        QM_HW_V3 = 0x30,
@@ -332,7 +331,6 @@ struct hisi_qm {
 
        const char *algs;
        bool use_sva;
-       bool is_frozen;
 
        resource_size_t phys_base;
        resource_size_t db_phys_base;