]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
crypto: qat - remove unnecessary collision prevention step in PFVF
authorMarco Chiappero <marco.chiappero@intel.com>
Tue, 28 Sep 2021 11:44:31 +0000 (12:44 +0100)
committerPaolo Pisati <paolo.pisati@canonical.com>
Fri, 28 Jan 2022 09:59:17 +0000 (10:59 +0100)
BugLink: https://bugs.launchpad.net/bugs/1959376
[ Upstream commit e17f49bb244a281fe39bfdad0306a38b3a02e7bf ]

The initial version of the PFVF protocol included an initial "carrier
sensing" to get ownership of the channel.

Collisions can happen anyway, the extra wait and test does not prevent
collisions, it instead slows the communication down, so remove it.

Signed-off-by: Marco Chiappero <marco.chiappero@intel.com>
Reviewed-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
drivers/crypto/qat/qat_common/adf_pf2vf_msg.c

index 5a41beb8f20f6a95e5d63f37946d4fa936a73f0a..d3f6ff68d45d9339d3785e406fc0410b81692e11 100644 (file)
@@ -126,28 +126,10 @@ static int __adf_iov_putmsg(struct adf_accel_dev *accel_dev, u32 msg, u8 vf_nr)
                goto out;
        }
 
-       /* Attempt to get ownership of PF2VF CSR */
        msg &= ~local_in_use_mask;
        msg |= local_in_use_pattern;
-       ADF_CSR_WR(pmisc_bar_addr, pf2vf_offset, msg);
 
-       /* Wait in case remote func also attempting to get ownership */
-       msleep(ADF_IOV_MSG_COLLISION_DETECT_DELAY);
-
-       val = ADF_CSR_RD(pmisc_bar_addr, pf2vf_offset);
-       if ((val & local_in_use_mask) != local_in_use_pattern) {
-               dev_dbg(&GET_DEV(accel_dev),
-                       "PF2VF CSR in use by remote - collision detected\n");
-               ret = -EBUSY;
-               goto out;
-       }
-
-       /*
-        * This function now owns the PV2VF CSR.  The IN_USE_BY pattern must
-        * remain in the PF2VF CSR for all writes including ACK from remote
-        * until this local function relinquishes the CSR.  Send the message
-        * by interrupting the remote.
-        */
+       /* Attempt to get ownership of the PF2VF CSR */
        ADF_CSR_WR(pmisc_bar_addr, pf2vf_offset, msg | int_bit);
 
        /* Wait for confirmation from remote func it received the message */