]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ice: Add ice_get_ctrl_ptp() wrapper to simplify the code
authorSergey Temerkhanov <sergey.temerkhanov@intel.com>
Wed, 21 Aug 2024 13:09:54 +0000 (15:09 +0200)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Tue, 1 Oct 2024 18:11:38 +0000 (11:11 -0700)
Add ice_get_ctrl_ptp() wrapper to simplify the PTP support code
in the functions that do not use ctrl_pf directly.
Add the control PF pointer to struct ice_adapter
Rearrange fields in struct ice_adapter

Signed-off-by: Sergey Temerkhanov <sergey.temerkhanov@intel.com>
Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Tested-by: Pucha Himasekhar Reddy <himasekharx.reddy.pucha@intel.com> (A Contingent worker at Intel)
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
drivers/net/ethernet/intel/ice/ice_adapter.h
drivers/net/ethernet/intel/ice/ice_ptp.c

index 9d11014ec02ff22051a4998c763ef5662a202b72..eb7cac01c242702c8adf50b6374d5ba098363e24 100644 (file)
@@ -8,18 +8,21 @@
 #include <linux/refcount_types.h>
 
 struct pci_dev;
+struct ice_pf;
 
 /**
  * struct ice_adapter - PCI adapter resources shared across PFs
  * @ptp_gltsyn_time_lock: Spinlock protecting access to the GLTSYN_TIME
  *                        register of the PTP clock.
  * @refcount: Reference count. struct ice_pf objects hold the references.
+ * @ctrl_pf: Control PF of the adapter
  */
 struct ice_adapter {
+       refcount_t refcount;
        /* For access to the GLTSYN_TIME register */
        spinlock_t ptp_gltsyn_time_lock;
 
-       refcount_t refcount;
+       struct ice_pf *ctrl_pf;
 };
 
 struct ice_adapter *ice_adapter_get(const struct pci_dev *pdev);
index d3cd7e663d38e4e00aec6cf6d3f21aa47c6dbf17..e5c5bd53bfff8e105a7d0acc1aafed4e5b7c89ab 100644 (file)
@@ -57,6 +57,18 @@ static const struct ice_ptp_pin_desc ice_pin_desc_e810_sma[] = {
        {  UFL2, {  3, -1 }},
 };
 
+static struct ice_pf *ice_get_ctrl_pf(struct ice_pf *pf)
+{
+       return !pf->adapter ? NULL : pf->adapter->ctrl_pf;
+}
+
+static __maybe_unused struct ice_ptp *ice_get_ctrl_ptp(struct ice_pf *pf)
+{
+       struct ice_pf *ctrl_pf = ice_get_ctrl_pf(pf);
+
+       return !ctrl_pf ? NULL : &ctrl_pf->ptp;
+}
+
 /**
  * ice_ptp_find_pin_idx - Find pin index in ptp_pin_desc
  * @pf: Board private structure