From: Arkadiusz Kubalewski <arkadiusz.kubalewski@intel.com>
To: linux-kernel@vger.kernel.org, intel-wired-lan@lists.osuosl.org,
netdev@vger.kernel.org, linux-kselftest@vger.kernel.org
Cc: jesse.brandeburg@intel.com, anthony.l.nguyen@intel.com,
davem@davemloft.net, kuba@kernel.org, richardcochran@gmail.com,
shuah@kernel.org, arkadiusz.kubalewski@intel.com, arnd@arndb.de,
nikolay@nvidia.com, cong.wang@bytedance.com,
colin.king@canonical.com, gustavoars@kernel.org
Subject: [RFC net-next 7/7] ice: add sysfs interface to configure PHY recovered reference signal
Date: Mon, 16 Aug 2021 18:07:17 +0200 [thread overview]
Message-ID: <20210816160717.31285-8-arkadiusz.kubalewski@intel.com> (raw)
In-Reply-To: <20210816160717.31285-1-arkadiusz.kubalewski@intel.com>
Allow user to enable or disable propagation of PHY recovered clock
signal onto requested output pin with new human friendly device private
sysfs interface.
Signed-off-by: Arkadiusz Kubalewski <arkadiusz.kubalewski@intel.com>
---
drivers/net/ethernet/intel/ice/ice_ptp.c | 111 ++++++++++++++++++++++-
drivers/net/ethernet/intel/ice/ice_ptp.h | 1 +
2 files changed, 111 insertions(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/intel/ice/ice_ptp.c b/drivers/net/ethernet/intel/ice/ice_ptp.c
index 23ab85dbbfc8..054346a8fdbd 100644
--- a/drivers/net/ethernet/intel/ice/ice_ptp.c
+++ b/drivers/net/ethernet/intel/ice/ice_ptp.c
@@ -9,6 +9,114 @@
#define UNKNOWN_INCVAL_E822 0x100000000ULL
+static ssize_t ice_sysfs_phy_write(struct kobject *kobj,
+ struct kobj_attribute *attr,
+ const char *buf, size_t count);
+
+static struct kobj_attribute phy_attribute = __ATTR(synce, 0220,
+ NULL, ice_sysfs_phy_write);
+
+/**
+ * __get_pf_pdev - helper function to get the pdev
+ * @kobj: kobject passed
+ * @pdev: PCI device information struct
+ *
+ * Raturns 0 on success, negative on failure
+ */
+static int __get_pf_pdev(struct kobject *kobj, struct pci_dev **pdev)
+{
+ struct device *dev;
+
+ if (!kobj->parent)
+ return -EINVAL;
+
+ /* get pdev */
+ dev = kobj_to_dev(kobj->parent);
+ *pdev = to_pci_dev(dev);
+
+ return 0;
+}
+
+#define ICE_C827_RCLKB_PIN 1 /* SDA pin */
+
+/**
+ * ice_sysfs_phy_write - sysfs interface for setting PHY recovered clock pins
+ * @kobj: sysfs node
+ * @attr: sysfs node attributes
+ * @buf: string representing enable and pin number
+ * @count: length of the 'buf' string
+ *
+ * Return number of bytes written on success or negative value on failure.
+ **/
+static ssize_t
+ice_sysfs_phy_write(struct kobject *kobj, struct kobj_attribute *attr,
+ const char *buf, size_t count)
+{
+ enum ice_status ret = 0;
+ unsigned int ena, pin;
+ struct pci_dev *pdev;
+ struct ice_pf *pf;
+ u32 freq = 0;
+ int cnt;
+
+ if (__get_pf_pdev(kobj, &pdev))
+ return -EPERM;
+
+ pf = pci_get_drvdata(pdev);
+
+ cnt = sscanf(buf, "%u %u", &ena, &pin);
+ if (cnt != 2 || pin > ICE_C827_RCLKB_PIN)
+ return -EINVAL;
+
+ ret = ice_aq_set_phy_rec_clk_out(&pf->hw, pin, !!ena, &freq);
+ if (ret)
+ return -EIO;
+
+ return count;
+}
+
+/**
+ * ice_phy_sysfs_init - initialize sysfs for DPLL
+ * @pf: pointer to pf structure
+ *
+ * Initialize sysfs for handling DPLL in HW.
+ **/
+static void ice_phy_sysfs_init(struct ice_pf *pf)
+{
+ struct kobject *phy_kobj;
+
+ phy_kobj = kobject_create_and_add("phy", &pf->pdev->dev.kobj);
+ if (!phy_kobj) {
+ dev_info(&pf->pdev->dev, "Failed to create PHY kobject\n");
+ return;
+ }
+
+ if (sysfs_create_file(phy_kobj, &phy_attribute.attr)) {
+ dev_info(&pf->pdev->dev, "Failed to create synce kobject\n");
+ kobject_put(phy_kobj);
+ return;
+ }
+
+ pf->ptp.phy_kobj = phy_kobj;
+}
+
+/**
+ * ice_ptp_sysfs_release - release sysfs resources of ptp and synce features
+ * @pf: pointer to pf structure
+ *
+ * Release sysfs interface resources for handling configuration of
+ * ptp and synce features.
+ */
+static void ice_ptp_sysfs_release(struct ice_pf *pf)
+{
+ if (pf->ptp.phy_kobj) {
+ sysfs_remove_file(pf->ptp.phy_kobj, &phy_attribute.attr);
+ kobject_del(pf->ptp.phy_kobj);
+ kobject_put(pf->ptp.phy_kobj);
+ pf->ptp.phy_kobj = 0;
+ }
+}
+
/**
* ice_set_tx_tstamp - Enable or disable Tx timestamping
* @pf: The PF pointer to search in
@@ -2121,6 +2229,7 @@ void ice_ptp_init(struct ice_pf *pf)
return;
}
+ ice_phy_sysfs_init(pf);
/* Disable timestamping for both Tx and Rx */
ice_ptp_cfg_timestamp(pf, false);
@@ -2180,7 +2289,7 @@ void ice_ptp_release(struct ice_pf *pf)
{
/* Disable timestamping for both Tx and Rx */
ice_ptp_cfg_timestamp(pf, false);
-
+ ice_ptp_sysfs_release(pf);
ice_ptp_release_tx_tracker(pf, &pf->ptp.port.tx);
clear_bit(ICE_FLAG_PTP, pf->flags);
diff --git a/drivers/net/ethernet/intel/ice/ice_ptp.h b/drivers/net/ethernet/intel/ice/ice_ptp.h
index 75656eb3084a..9b526782a977 100644
--- a/drivers/net/ethernet/intel/ice/ice_ptp.h
+++ b/drivers/net/ethernet/intel/ice/ice_ptp.h
@@ -143,6 +143,7 @@ struct ice_ptp {
struct ptp_clock_info info;
struct ptp_clock *clock;
struct hwtstamp_config tstamp_config;
+ struct kobject *phy_kobj;
};
#define __ptp_port_to_ptp(p) \
--
2.24.0
next prev parent reply other threads:[~2021-08-16 16:18 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-16 16:07 [RFC net-next 0/7] Add basic SyncE interfaces Arkadiusz Kubalewski
2021-08-16 16:07 ` [RFC net-next 1/7] ptp: Add interface for acquiring DPLL state Arkadiusz Kubalewski
2021-08-16 23:54 ` Richard Cochran
2021-08-17 9:41 ` Machnikowski, Maciej
2021-08-18 17:02 ` Richard Cochran
2021-08-18 18:14 ` [Intel-wired-lan] " Keller, Jacob E
2021-08-18 22:36 ` Machnikowski, Maciej
2021-08-19 15:34 ` Richard Cochran
2021-08-19 15:40 ` Machnikowski, Maciej
2021-08-20 15:55 ` Richard Cochran
2021-08-20 18:30 ` Machnikowski, Maciej
2021-08-22 1:50 ` Richard Cochran
2021-08-22 2:30 ` Richard Cochran
2021-08-23 8:29 ` Machnikowski, Maciej
2021-08-30 21:06 ` Richard Cochran
2021-08-31 9:29 ` Machnikowski, Maciej
2021-08-16 16:07 ` [RFC net-next 2/7] selftests/ptp: Add usage of PTP_DPLL_GETSTATE ioctl in testptp Arkadiusz Kubalewski
2021-08-16 23:54 ` Richard Cochran
2021-08-16 16:07 ` [RFC net-next 3/7] ice: add get_dpll_state ptp interface usage Arkadiusz Kubalewski
2021-08-16 16:07 ` [RFC net-next 4/7] net: add ioctl interface for recover reference clock on netdev Arkadiusz Kubalewski
2021-08-16 19:46 ` Arnd Bergmann
2021-08-17 10:35 ` Kubalewski, Arkadiusz
2021-08-22 1:25 ` Richard Cochran
2021-08-16 16:07 ` [RFC net-next 5/7] selftests/net: Add test app for SIOC{S|G}SYNCE Arkadiusz Kubalewski
2021-08-16 16:07 ` [RFC net-next 6/7] ice: add SIOC{S|G}SYNCE interface usage to recover reference signal Arkadiusz Kubalewski
2021-08-16 16:07 ` Arkadiusz Kubalewski [this message]
2021-08-18 17:05 ` [RFC net-next 0/7] Add basic SyncE interfaces Richard Cochran
2021-08-18 17:08 ` Richard Cochran
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210816160717.31285-8-arkadiusz.kubalewski@intel.com \
--to=arkadiusz.kubalewski@intel.com \
--cc=anthony.l.nguyen@intel.com \
--cc=arnd@arndb.de \
--cc=colin.king@canonical.com \
--cc=cong.wang@bytedance.com \
--cc=davem@davemloft.net \
--cc=gustavoars@kernel.org \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=jesse.brandeburg@intel.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=nikolay@nvidia.com \
--cc=richardcochran@gmail.com \
--cc=shuah@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).