linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Frank Li <Frank.li@nxp.com>
To: Wei Fang <wei.fang@nxp.com>
Cc: robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org,
	richardcochran@gmail.com, claudiu.manoil@nxp.com,
	vladimir.oltean@nxp.com, xiaoning.wang@nxp.com,
	andrew+netdev@lunn.ch, davem@davemloft.net, edumazet@google.com,
	kuba@kernel.org, pabeni@redhat.com, vadim.fedorenko@linux.dev,
	shawnguo@kernel.org, fushi.peng@nxp.com,
	devicetree@vger.kernel.org, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org, imx@lists.linux.dev
Subject: Re: [PATCH v6 net-next 04/17] ptp: add debugfs interfaces to loop back the periodic output signal
Date: Wed, 27 Aug 2025 11:11:52 -0400	[thread overview]
Message-ID: <aK8gODZD15OP//V7@lizhi-Precision-Tower-5810> (raw)
In-Reply-To: <20250827063332.1217664-5-wei.fang@nxp.com>

On Wed, Aug 27, 2025 at 02:33:19PM +0800, Wei Fang wrote:
> For some PTP devices, they have the capability to loop back the periodic
> output signal for debugging, such as the ptp_qoriq device. So add the
> generic interfaces to set the periodic output signal loopback, rather
> than each vendor having a different implementation.
>
> Show how many channels support the periodic output signal loopback:
> $ cat /sys/kernel/debug/ptp<N>/n_perout_loopback
>
> Enable the loopback of the periodic output signal of channel X:
> $ echo <X> 1 > /sys/kernel/debug/ptp<N>/perout_loopback

Genernally sys interface only 1 input for each entry.

I suggest create one file for each channel.

/sys/kernel/debug/ptp<N>/perout<m>_loopback_enable

echo 1 > /sys/kernel/debug/ptp<N>/perout<m>_loopback_enable

Frank

>
> Disable the loopback of the periodic output signal of channel X:
> $ echo <X> 0 > /sys/kernel/debug/ptp<N>/perout_loopback
>
> Suggested-by: Andrew Lunn <andrew@lunn.ch>
> Signed-off-by: Wei Fang <wei.fang@nxp.com>
>
> ---
> v6 changes:
> 1. New patch
> ---
>  drivers/ptp/ptp_clock.c          | 66 ++++++++++++++++++++++++++++++++
>  include/linux/ptp_clock_kernel.h | 10 +++++
>  2 files changed, 76 insertions(+)
>
> diff --git a/drivers/ptp/ptp_clock.c b/drivers/ptp/ptp_clock.c
> index 2b0fd62a17ef..0a45c5ebd904 100644
> --- a/drivers/ptp/ptp_clock.c
> +++ b/drivers/ptp/ptp_clock.c
> @@ -237,6 +237,66 @@ static void ptp_aux_kworker(struct kthread_work *work)
>  		kthread_queue_delayed_work(ptp->kworker, &ptp->aux_work, delay);
>  }
>
> +static ssize_t ptp_n_perout_loopback_read(struct file *filep,
> +					  char __user *buffer,
> +					  size_t count, loff_t *pos)
> +{
> +	struct ptp_clock *ptp = filep->private_data;
> +	char buf[12] = {};
> +
> +	snprintf(buf, sizeof(buf), "%d\n", ptp->info->n_per_lp);
> +
> +	return simple_read_from_buffer(buffer, count, pos, buf, strlen(buf));
> +}
> +
> +static const struct file_operations ptp_n_perout_loopback_fops = {
> +	.owner	= THIS_MODULE,
> +	.open	= simple_open,
> +	.read	= ptp_n_perout_loopback_read,
> +};
> +
> +static ssize_t ptp_perout_loopback_write(struct file *filep,
> +					 const char __user *buffer,
> +					 size_t count, loff_t *ppos)
> +{
> +	struct ptp_clock *ptp = filep->private_data;
> +	struct ptp_clock_info *ops = ptp->info;
> +	int len, cnt, enable, err;
> +	unsigned int index;
> +	char buf[32] = {};
> +
> +	if (*ppos || !count)
> +		return -EINVAL;
> +
> +	if (count >= sizeof(buf))
> +		return -ENOSPC;
> +
> +	len = simple_write_to_buffer(buf, sizeof(buf) - 1,
> +				     ppos, buffer, count);
> +	if (len < 0)
> +		return len;
> +
> +	buf[len] = '\0';
> +	cnt = sscanf(buf, "%u %d", &index, &enable);
> +	if (cnt != 2)
> +		return -EINVAL;
> +
> +	if (index >= ops->n_per_lp)
> +		return -EINVAL;
> +
> +	err = ops->perout_loopback(ops, index, enable ? 1 : 0);
> +	if (err)
> +		return err;
> +
> +	return count;
> +}
> +
> +static const struct file_operations ptp_perout_loopback_ops = {
> +	.owner   = THIS_MODULE,
> +	.open    = simple_open,
> +	.write	 = ptp_perout_loopback_write,
> +};
> +
>  /* public interface */
>
>  struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info,
> @@ -378,6 +438,12 @@ struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info,
>  	/* Debugfs initialization */
>  	snprintf(debugfsname, sizeof(debugfsname), "ptp%d", ptp->index);
>  	ptp->debugfs_root = debugfs_create_dir(debugfsname, NULL);
> +	if (info->n_per_lp > 0 && info->perout_loopback) {
> +		debugfs_create_file("n_perout_loopback", 0400, ptp->debugfs_root,
> +				    ptp, &ptp_n_perout_loopback_fops);
> +		debugfs_create_file("perout_loopback", 0200, ptp->debugfs_root,
> +				    ptp, &ptp_perout_loopback_ops);
> +	}
>
>  	return ptp;
>
> diff --git a/include/linux/ptp_clock_kernel.h b/include/linux/ptp_clock_kernel.h
> index 7dd7951b23d5..884364596dd3 100644
> --- a/include/linux/ptp_clock_kernel.h
> +++ b/include/linux/ptp_clock_kernel.h
> @@ -67,6 +67,8 @@ struct ptp_system_timestamp {
>   * @n_ext_ts:  The number of external time stamp channels.
>   * @n_per_out: The number of programmable periodic signals.
>   * @n_pins:    The number of programmable pins.
> + * @n_per_lp:  The number of channels that support loopback the periodic
> + *             output signal.
>   * @pps:       Indicates whether the clock supports a PPS callback.
>   *
>   * @supported_perout_flags:  The set of flags the driver supports for the
> @@ -175,6 +177,11 @@ struct ptp_system_timestamp {
>   *                scheduling time (>=0) or negative value in case further
>   *                scheduling is not required.
>   *
> + * @perout_loopback: Request driver to enable or disable the periodic output
> + *                   signal loopback.
> + *                   parameter index: index of the periodic output signal channel.
> + *                   parameter on: caller passes one to enable or zero to disable.
> + *
>   * Drivers should embed their ptp_clock_info within a private
>   * structure, obtaining a reference to it using container_of().
>   *
> @@ -189,6 +196,7 @@ struct ptp_clock_info {
>  	int n_ext_ts;
>  	int n_per_out;
>  	int n_pins;
> +	int n_per_lp;
>  	int pps;
>  	unsigned int supported_perout_flags;
>  	unsigned int supported_extts_flags;
> @@ -213,6 +221,8 @@ struct ptp_clock_info {
>  	int (*verify)(struct ptp_clock_info *ptp, unsigned int pin,
>  		      enum ptp_pin_function func, unsigned int chan);
>  	long (*do_aux_work)(struct ptp_clock_info *ptp);
> +	int (*perout_loopback)(struct ptp_clock_info *ptp, unsigned int index,
> +			       int on);
>  };
>
>  struct ptp_clock;
> --
> 2.34.1
>

  reply	other threads:[~2025-08-27 15:12 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-27  6:33 [PATCH v6 net-next 00/17] Add NETC Timer PTP driver and add PTP support for i.MX95 Wei Fang
2025-08-27  6:33 ` [PATCH v6 net-next 01/17] dt-bindings: ptp: add NETC Timer PTP clock Wei Fang
2025-08-27 12:15   ` Krzysztof Kozlowski
2025-08-27  6:33 ` [PATCH v6 net-next 02/17] dt-bindings: net: move ptp-timer property to ethernet-controller.yaml Wei Fang
2025-08-27  6:33 ` [PATCH v6 net-next 03/17] ptp: add helpers to get the phc_index by of_node or dev Wei Fang
2025-08-27  6:33 ` [PATCH v6 net-next 04/17] ptp: add debugfs interfaces to loop back the periodic output signal Wei Fang
2025-08-27 15:11   ` Frank Li [this message]
2025-08-28  2:04     ` Wei Fang
2025-08-28  0:00   ` Jakub Kicinski
2025-08-28  2:10     ` Wei Fang
2025-08-27  6:33 ` [PATCH v6 net-next 05/17] ptp: netc: add NETC V4 Timer PTP driver support Wei Fang
2025-08-27  6:33 ` [PATCH v6 net-next 06/17] ptp: netc: add PTP_CLK_REQ_PPS support Wei Fang
2025-08-27  6:33 ` [PATCH v6 net-next 07/17] ptp: netc: add periodic pulse output support Wei Fang
2025-08-27  6:33 ` [PATCH v6 net-next 08/17] ptp: netc: add external trigger stamp support Wei Fang
2025-08-27  6:33 ` [PATCH v6 net-next 09/17] ptp: netc: add the periodic output signal loopback support Wei Fang
2025-08-27  6:33 ` [PATCH v6 net-next 10/17] MAINTAINERS: add NETC Timer PTP clock driver section Wei Fang
2025-08-27  6:33 ` [PATCH v6 net-next 11/17] net: enetc: save the parsed information of PTP packet to skb->cb Wei Fang
2025-08-27  6:33 ` [PATCH v6 net-next 12/17] net: enetc: extract enetc_update_ptp_sync_msg() to handle PTP Sync packets Wei Fang
2025-08-27  6:33 ` [PATCH v6 net-next 13/17] net: enetc: remove unnecessary CONFIG_FSL_ENETC_PTP_CLOCK check Wei Fang
2025-08-27  6:33 ` [PATCH v6 net-next 14/17] net: enetc: move sync packet modification before dma_map_single() Wei Fang
2025-08-27 14:49   ` Frank Li
2025-08-27  6:33 ` [PATCH v6 net-next 15/17] net: enetc: add PTP synchronization support for ENETC v4 Wei Fang
2025-08-27 15:02   ` Frank Li
2025-08-27  6:33 ` [PATCH v6 net-next 16/17] net: enetc: don't update sync packet checksum if checksum offload is used Wei Fang
2025-08-27  6:33 ` [PATCH v6 17/17] arm64: dts: imx95: add standard PCI device compatible string to NETC Timer Wei Fang

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=aK8gODZD15OP//V7@lizhi-Precision-Tower-5810 \
    --to=frank.li@nxp.com \
    --cc=andrew+netdev@lunn.ch \
    --cc=claudiu.manoil@nxp.com \
    --cc=conor+dt@kernel.org \
    --cc=davem@davemloft.net \
    --cc=devicetree@vger.kernel.org \
    --cc=edumazet@google.com \
    --cc=fushi.peng@nxp.com \
    --cc=imx@lists.linux.dev \
    --cc=krzk+dt@kernel.org \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=richardcochran@gmail.com \
    --cc=robh@kernel.org \
    --cc=shawnguo@kernel.org \
    --cc=vadim.fedorenko@linux.dev \
    --cc=vladimir.oltean@nxp.com \
    --cc=wei.fang@nxp.com \
    --cc=xiaoning.wang@nxp.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 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).