All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yangbo Lu <yangbo.lu@nxp.com>
To: netdev@vger.kernel.org
Cc: Yangbo Lu <yangbo.lu@nxp.com>,
	"David S . Miller" <davem@davemloft.net>,
	Richard Cochran <richardcochran@gmail.com>,
	Claudiu Manoil <claudiu.manoil@nxp.com>,
	Jakub Kicinski <kuba@kernel.org>
Subject: [net-next 4/6] enetc_ptp: support ptp virtual clock
Date: Fri,  7 May 2021 16:57:54 +0800	[thread overview]
Message-ID: <20210507085756.20427-5-yangbo.lu@nxp.com> (raw)
In-Reply-To: <20210507085756.20427-1-yangbo.lu@nxp.com>

Add support for ptp virtual clock.

Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
---
 drivers/net/ethernet/freescale/enetc/enetc_ptp.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/drivers/net/ethernet/freescale/enetc/enetc_ptp.c b/drivers/net/ethernet/freescale/enetc/enetc_ptp.c
index bc594892507a..52de736df800 100644
--- a/drivers/net/ethernet/freescale/enetc/enetc_ptp.c
+++ b/drivers/net/ethernet/freescale/enetc/enetc_ptp.c
@@ -10,6 +10,16 @@
 int enetc_phc_index = -1;
 EXPORT_SYMBOL(enetc_phc_index);
 
+struct ptp_vclock_cc ptp_qoriq_vclock_cc = {
+	.cc.read		= ptp_qoriq_clock_read,
+	.cc.mask		= CYCLECOUNTER_MASK(64),
+	.cc.shift		= 28,
+	.cc.mult		= (1 << 28),
+	.refresh_interval	= (HZ * 60),
+	.mult_num		= (1 << 6),
+	.mult_dem		= 15625,
+};
+
 static struct ptp_clock_info enetc_ptp_caps = {
 	.owner		= THIS_MODULE,
 	.name		= "ENETC PTP clock",
@@ -24,6 +34,7 @@ static struct ptp_clock_info enetc_ptp_caps = {
 	.gettime64	= ptp_qoriq_gettime,
 	.settime64	= ptp_qoriq_settime,
 	.enable		= ptp_qoriq_enable,
+	.vclock_cc	= &ptp_qoriq_vclock_cc,
 };
 
 static int enetc_ptp_probe(struct pci_dev *pdev,
-- 
2.25.1


  parent reply	other threads:[~2021-05-07  8:48 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-07  8:57 [net-next 0/6] ptp: support virtual clocks for multiple domains Yangbo Lu
2021-05-07  8:57 ` [net-next 1/6] ptp: add ptp virtual clock driver framework Yangbo Lu
2021-05-07 10:42   ` kernel test robot
2021-05-07 10:42     ` kernel test robot
2021-05-07 11:26   ` kernel test robot
2021-05-07 11:26     ` kernel test robot
2021-05-07  8:57 ` [net-next 2/6] ptp: support virtual clock and domain via sysfs Yangbo Lu
2021-05-07  8:57 ` [net-next 3/6] ptp_qoriq: export ptp clock reading function for cyclecounter Yangbo Lu
2021-05-07  8:57 ` Yangbo Lu [this message]
2021-05-07 19:58   ` [net-next 4/6] enetc_ptp: support ptp virtual clock Claudiu Manoil
2021-05-07 20:50   ` kernel test robot
2021-05-07 20:50     ` kernel test robot
2021-05-07  8:57 ` [net-next 5/6] enetc: store ptp device pointer Yangbo Lu
2021-05-07  8:57 ` [net-next 6/6] enetc: support PTP domain timestamp conversion Yangbo Lu
2021-05-08 19:17 ` [net-next 0/6] ptp: support virtual clocks for multiple domains Richard Cochran
2021-05-10  3:04   ` Y.b. Lu
2021-05-10 23:18     ` Richard Cochran
2021-05-11 10:40       ` Y.b. Lu
2021-05-11 15:49         ` Richard Cochran
2021-05-14  6:41           ` Y.b. Lu
2021-05-14 17:44             ` Richard Cochran
2021-05-17  2:46               ` Y.b. Lu

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=20210507085756.20427-5-yangbo.lu@nxp.com \
    --to=yangbo.lu@nxp.com \
    --cc=claudiu.manoil@nxp.com \
    --cc=davem@davemloft.net \
    --cc=kuba@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=richardcochran@gmail.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.