Commit 9ffd49df authored by Marco Chiappero's avatar Marco Chiappero Committed by Herbert Xu

crypto: qat - fix naming of PF/VF enable functions

Currently all the functions related to the activation of the PFVF
protocol, both on PF and VF, include the direction specific "vf2pf"
name.

Replace the existing naming schema with:
  - a direction agnostic naming, that applies to both PF and VF, for the
    function pointer ("pfvf")
  - a direction specific naming schema for the implementations ("pf2vf" or
    "vf2pf")

In particular this patch renames:
  - adf_pf_enable_vf2pf_comms() in adf_enable_pf2vf_comms()
  - enable_vf2pf_comms() in enable_pfvf_comms()
Signed-off-by: default avatarMarco Chiappero <marco.chiappero@intel.com>
Co-developed-by: default avatarGiovanni Cabiddu <giovanni.cabiddu@intel.com>
Signed-off-by: default avatarGiovanni Cabiddu <giovanni.cabiddu@intel.com>
Reviewed-by: default avatarFiona Trahe <fiona.trahe@intel.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 7c258f50
...@@ -161,7 +161,7 @@ static void adf_enable_ints(struct adf_accel_dev *accel_dev) ...@@ -161,7 +161,7 @@ static void adf_enable_ints(struct adf_accel_dev *accel_dev)
ADF_CSR_WR(addr, ADF_4XXX_SMIAPF_MASK_OFFSET, 0); ADF_CSR_WR(addr, ADF_4XXX_SMIAPF_MASK_OFFSET, 0);
} }
static int adf_pf_enable_vf2pf_comms(struct adf_accel_dev *accel_dev) static int adf_enable_pf2vf_comms(struct adf_accel_dev *accel_dev)
{ {
return 0; return 0;
} }
...@@ -222,7 +222,7 @@ void adf_init_hw_data_4xxx(struct adf_hw_device_data *hw_data) ...@@ -222,7 +222,7 @@ void adf_init_hw_data_4xxx(struct adf_hw_device_data *hw_data)
hw_data->uof_get_ae_mask = uof_get_ae_mask; hw_data->uof_get_ae_mask = uof_get_ae_mask;
hw_data->set_msix_rttable = set_msix_default_rttable; hw_data->set_msix_rttable = set_msix_default_rttable;
hw_data->set_ssm_wdtimer = adf_gen4_set_ssm_wdtimer; hw_data->set_ssm_wdtimer = adf_gen4_set_ssm_wdtimer;
hw_data->enable_vf2pf_comms = adf_pf_enable_vf2pf_comms; hw_data->enable_pfvf_comms = adf_enable_pf2vf_comms;
hw_data->disable_iov = adf_disable_sriov; hw_data->disable_iov = adf_disable_sriov;
hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION; hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION;
......
...@@ -159,7 +159,7 @@ static void adf_enable_ints(struct adf_accel_dev *accel_dev) ...@@ -159,7 +159,7 @@ static void adf_enable_ints(struct adf_accel_dev *accel_dev)
ADF_C3XXX_SMIA1_MASK); ADF_C3XXX_SMIA1_MASK);
} }
static int adf_pf_enable_vf2pf_comms(struct adf_accel_dev *accel_dev) static int adf_enable_pf2vf_comms(struct adf_accel_dev *accel_dev)
{ {
spin_lock_init(&accel_dev->pf.vf2pf_ints_lock); spin_lock_init(&accel_dev->pf.vf2pf_ints_lock);
...@@ -212,7 +212,7 @@ void adf_init_hw_data_c3xxx(struct adf_hw_device_data *hw_data) ...@@ -212,7 +212,7 @@ void adf_init_hw_data_c3xxx(struct adf_hw_device_data *hw_data)
hw_data->reset_device = adf_reset_flr; hw_data->reset_device = adf_reset_flr;
hw_data->set_ssm_wdtimer = adf_gen2_set_ssm_wdtimer; hw_data->set_ssm_wdtimer = adf_gen2_set_ssm_wdtimer;
hw_data->get_pf2vf_offset = get_pf2vf_offset; hw_data->get_pf2vf_offset = get_pf2vf_offset;
hw_data->enable_vf2pf_comms = adf_pf_enable_vf2pf_comms; hw_data->enable_pfvf_comms = adf_enable_pf2vf_comms;
hw_data->disable_iov = adf_disable_sriov; hw_data->disable_iov = adf_disable_sriov;
hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION; hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION;
......
...@@ -95,7 +95,7 @@ void adf_init_hw_data_c3xxxiov(struct adf_hw_device_data *hw_data) ...@@ -95,7 +95,7 @@ void adf_init_hw_data_c3xxxiov(struct adf_hw_device_data *hw_data)
hw_data->get_vintmsk_offset = get_vintmsk_offset; hw_data->get_vintmsk_offset = get_vintmsk_offset;
hw_data->get_sku = get_sku; hw_data->get_sku = get_sku;
hw_data->enable_ints = adf_vf_void_noop; hw_data->enable_ints = adf_vf_void_noop;
hw_data->enable_vf2pf_comms = adf_enable_vf2pf_comms; hw_data->enable_pfvf_comms = adf_enable_vf2pf_comms;
hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION; hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION;
hw_data->dev_class->instances++; hw_data->dev_class->instances++;
adf_devmgr_update_class_index(hw_data); adf_devmgr_update_class_index(hw_data);
......
...@@ -160,7 +160,7 @@ static void adf_enable_ints(struct adf_accel_dev *accel_dev) ...@@ -160,7 +160,7 @@ static void adf_enable_ints(struct adf_accel_dev *accel_dev)
ADF_C62X_SMIA1_MASK); ADF_C62X_SMIA1_MASK);
} }
static int adf_pf_enable_vf2pf_comms(struct adf_accel_dev *accel_dev) static int adf_enable_pf2vf_comms(struct adf_accel_dev *accel_dev)
{ {
spin_lock_init(&accel_dev->pf.vf2pf_ints_lock); spin_lock_init(&accel_dev->pf.vf2pf_ints_lock);
...@@ -213,7 +213,7 @@ void adf_init_hw_data_c62x(struct adf_hw_device_data *hw_data) ...@@ -213,7 +213,7 @@ void adf_init_hw_data_c62x(struct adf_hw_device_data *hw_data)
hw_data->reset_device = adf_reset_flr; hw_data->reset_device = adf_reset_flr;
hw_data->set_ssm_wdtimer = adf_gen2_set_ssm_wdtimer; hw_data->set_ssm_wdtimer = adf_gen2_set_ssm_wdtimer;
hw_data->get_pf2vf_offset = get_pf2vf_offset; hw_data->get_pf2vf_offset = get_pf2vf_offset;
hw_data->enable_vf2pf_comms = adf_pf_enable_vf2pf_comms; hw_data->enable_pfvf_comms = adf_enable_pf2vf_comms;
hw_data->disable_iov = adf_disable_sriov; hw_data->disable_iov = adf_disable_sriov;
hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION; hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION;
......
...@@ -95,7 +95,7 @@ void adf_init_hw_data_c62xiov(struct adf_hw_device_data *hw_data) ...@@ -95,7 +95,7 @@ void adf_init_hw_data_c62xiov(struct adf_hw_device_data *hw_data)
hw_data->get_vintmsk_offset = get_vintmsk_offset; hw_data->get_vintmsk_offset = get_vintmsk_offset;
hw_data->get_sku = get_sku; hw_data->get_sku = get_sku;
hw_data->enable_ints = adf_vf_void_noop; hw_data->enable_ints = adf_vf_void_noop;
hw_data->enable_vf2pf_comms = adf_enable_vf2pf_comms; hw_data->enable_pfvf_comms = adf_enable_vf2pf_comms;
hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION; hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION;
hw_data->dev_class->instances++; hw_data->dev_class->instances++;
adf_devmgr_update_class_index(hw_data); adf_devmgr_update_class_index(hw_data);
......
...@@ -172,7 +172,7 @@ struct adf_hw_device_data { ...@@ -172,7 +172,7 @@ struct adf_hw_device_data {
bool enable); bool enable);
void (*enable_ints)(struct adf_accel_dev *accel_dev); void (*enable_ints)(struct adf_accel_dev *accel_dev);
void (*set_ssm_wdtimer)(struct adf_accel_dev *accel_dev); void (*set_ssm_wdtimer)(struct adf_accel_dev *accel_dev);
int (*enable_vf2pf_comms)(struct adf_accel_dev *accel_dev); int (*enable_pfvf_comms)(struct adf_accel_dev *accel_dev);
void (*reset_device)(struct adf_accel_dev *accel_dev); void (*reset_device)(struct adf_accel_dev *accel_dev);
void (*set_msix_rttable)(struct adf_accel_dev *accel_dev); void (*set_msix_rttable)(struct adf_accel_dev *accel_dev);
char *(*uof_get_name)(u32 obj_num); char *(*uof_get_name)(u32 obj_num);
......
...@@ -112,7 +112,7 @@ int adf_dev_init(struct adf_accel_dev *accel_dev) ...@@ -112,7 +112,7 @@ int adf_dev_init(struct adf_accel_dev *accel_dev)
hw_data->enable_ints(accel_dev); hw_data->enable_ints(accel_dev);
hw_data->enable_error_correction(accel_dev); hw_data->enable_error_correction(accel_dev);
ret = hw_data->enable_vf2pf_comms(accel_dev); ret = hw_data->enable_pfvf_comms(accel_dev);
if (ret) if (ret)
return ret; return ret;
......
...@@ -180,7 +180,7 @@ static void adf_enable_ints(struct adf_accel_dev *accel_dev) ...@@ -180,7 +180,7 @@ static void adf_enable_ints(struct adf_accel_dev *accel_dev)
ADF_DH895XCC_SMIA1_MASK); ADF_DH895XCC_SMIA1_MASK);
} }
static int adf_pf_enable_vf2pf_comms(struct adf_accel_dev *accel_dev) static int adf_enable_pf2vf_comms(struct adf_accel_dev *accel_dev)
{ {
spin_lock_init(&accel_dev->pf.vf2pf_ints_lock); spin_lock_init(&accel_dev->pf.vf2pf_ints_lock);
...@@ -232,7 +232,7 @@ void adf_init_hw_data_dh895xcc(struct adf_hw_device_data *hw_data) ...@@ -232,7 +232,7 @@ void adf_init_hw_data_dh895xcc(struct adf_hw_device_data *hw_data)
hw_data->enable_ints = adf_enable_ints; hw_data->enable_ints = adf_enable_ints;
hw_data->reset_device = adf_reset_sbr; hw_data->reset_device = adf_reset_sbr;
hw_data->get_pf2vf_offset = get_pf2vf_offset; hw_data->get_pf2vf_offset = get_pf2vf_offset;
hw_data->enable_vf2pf_comms = adf_pf_enable_vf2pf_comms; hw_data->enable_pfvf_comms = adf_enable_pf2vf_comms;
hw_data->disable_iov = adf_disable_sriov; hw_data->disable_iov = adf_disable_sriov;
hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION; hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION;
......
...@@ -95,7 +95,7 @@ void adf_init_hw_data_dh895xcciov(struct adf_hw_device_data *hw_data) ...@@ -95,7 +95,7 @@ void adf_init_hw_data_dh895xcciov(struct adf_hw_device_data *hw_data)
hw_data->get_vintmsk_offset = get_vintmsk_offset; hw_data->get_vintmsk_offset = get_vintmsk_offset;
hw_data->get_sku = get_sku; hw_data->get_sku = get_sku;
hw_data->enable_ints = adf_vf_void_noop; hw_data->enable_ints = adf_vf_void_noop;
hw_data->enable_vf2pf_comms = adf_enable_vf2pf_comms; hw_data->enable_pfvf_comms = adf_enable_vf2pf_comms;
hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION; hw_data->min_iov_compat_ver = ADF_PFVF_COMPAT_THIS_VERSION;
hw_data->dev_class->instances++; hw_data->dev_class->instances++;
adf_devmgr_update_class_index(hw_data); adf_devmgr_update_class_index(hw_data);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment