All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 0/4] igb: support PEROUT and EXTTS PTP pin functions on 82580/i354/i350
@ 2021-07-19  6:25 Ruud Bos
  2021-07-19 10:09 ` Jakub Kicinski
  0 siblings, 1 reply; 7+ messages in thread
From: Ruud Bos @ 2021-07-19  6:25 UTC (permalink / raw)
  To: netdev

The igb driver provides support for PEROUT and EXTTS pin functions that
allow adapter external use of timing signals. At Hottinger Bruel & Kjaer we
are using the PEROUT function to feed a PTP corrected 1pps signal into an
FPGA as cross system synchronized time source.

Support for the PEROUT and EXTTS SDP functions is currently limited to
i210/i211 based adapters. This patch series enables these functions also
for 82580/i354/i350 based ones. Because the time registers of these
adapters do not have the nice split in second rollovers as the i210 has,
the implementation is slightly more complex compared to the i210
implementation.

The PEROUT function has been successfully tested on an i350 based ethernet
adapter. Using the following user space code excerpt, the driver outputs a
PTP corrected 1pps signal on the SDP0 pin of an i350:

    struct ptp_pin_desc desc;
    memset(&desc, 0, sizeof(desc));
    desc.index = 0;
    desc.func = PTP_PF_PEROUT;
    desc.chan = 0;
    if (ioctl(fd, PTP_PIN_SETFUNC, &desc) == 0) {
        struct timespec ts;
        if (clock_gettime(clkid, &ts) == 0) {
            struct ptp_perout_request rq;
            memset(&rq, 0, sizeof(rq));
            rq.index = 0;
            rq.start.sec = ts.tv_sec + 1;
            rq.start.nsec = 500000000;
            rq.period.sec  = 1;
            rq.period.nsec = 0;
            if (ioctl(fd, PTP_PEROUT_REQUEST, &rq) == 0) {
                /* 1pps signal is now available on SDP0 */
            }
        }
    }

The added EXTTS function has not been tested. However, looking at the data
sheets, the layout of the registers involved match the i210 exactly except
for the time registers mentioned before. Hence the almost identical
implementation.

Ruud Bos (4):
  igb: move SDP config initialization to separate function
  igb: move PEROUT and EXTTS isr logic to separate functions
  igb: support PEROUT on 82580/i354/i350
  igb: support EXTTS on 82580/i354/i350

 drivers/net/ethernet/intel/igb/igb_main.c | 141 ++++++++++++-----
 drivers/net/ethernet/intel/igb/igb_ptp.c  | 183 ++++++++++++++++++++--
 2 files changed, 279 insertions(+), 45 deletions(-)

--
2.30.2


UNRESTRICTED
HBK Benelux B.V., Schutweg 15a, NL-5145 NP Waalwijk, The Netherlands www.hbkworld.com Registered as B.V. (Dutch limited liability company) in the Dutch commercial register 08183075 0000 Company domiciled in Waalwijk Managing Directors : Alexandra Hellemans, Jens Wiegand, Jorn Bagijn The information in this email is confidential. It is intended solely for the addressee. If you are not the intended recipient, please let me know and delete this email.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 0/4] igb: support PEROUT and EXTTS PTP pin functions on 82580/i354/i350
  2021-07-19  6:25 [PATCH net-next 0/4] igb: support PEROUT and EXTTS PTP pin functions on 82580/i354/i350 Ruud Bos
@ 2021-07-19 10:09 ` Jakub Kicinski
  0 siblings, 0 replies; 7+ messages in thread
From: Jakub Kicinski @ 2021-07-19 10:09 UTC (permalink / raw)
  To: Ruud Bos; +Cc: netdev

On Mon, 19 Jul 2021 06:25:36 +0000, Ruud Bos wrote:
> The igb driver provides support for PEROUT and EXTTS pin functions that
> allow adapter external use of timing signals. At Hottinger Bruel & Kjaer we
> are using the PEROUT function to feed a PTP corrected 1pps signal into an
> FPGA as cross system synchronized time source.

Please resend and CC appropriate maintainers.
scripts/get_maintainers.pl should help.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 0/4] igb: support PEROUT and EXTTS PTP pin functions on 82580/i354/i350
  2021-10-12 15:49     ` Jakub Kicinski
@ 2021-10-12 15:53       ` Nguyen, Anthony L
  0 siblings, 0 replies; 7+ messages in thread
From: Nguyen, Anthony L @ 2021-10-12 15:53 UTC (permalink / raw)
  To: kuba, Brandeburg, Jesse; +Cc: richardcochran, netdev, davem, kernel.hbk

On Tue, 2021-10-12 at 08:49 -0700, Jakub Kicinski wrote:
> On Tue, 12 Oct 2021 17:43:52 +0200 Ruud Bos wrote:
> > On Wed, Oct 6, 2021 at 3:09 PM Ruud Bos <kernel.hbk@gmail.com>
> > wrote:
> > > My apologies for the huge delay in resending this patch set.
> > > 
> > > I tried  setting up my corporate e-mail to work on Linux to be
> > > able to use
> > > git send-email and getting rid of the automatically appended
> > > confidentiality claim. Eventually I gave up on getting this
> > > sorted, hence
> > > the different e-mail address.
> > > 
> > > Anyway, I have re-spun the patch series atop net-next.
> > > Feedback is welcome.
> > 
> > Ping?
> > I did not receive any response to my patches yet.
> > Does that mean I did something wrong?
> 
> These are supposed to go via Intel's trees. 
> Let's point To: at Intel's maintainers.

Sorry, I must have missed this. Could you resend and add
intel-wired-lan@lists.osuosl.org so that it can be reviewed there and
picked up by the Intel tree's patchworks?

Thanks,
Tony

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 0/4] igb: support PEROUT and EXTTS PTP pin functions on 82580/i354/i350
  2021-10-12 15:43   ` Ruud Bos
@ 2021-10-12 15:49     ` Jakub Kicinski
  2021-10-12 15:53       ` Nguyen, Anthony L
  0 siblings, 1 reply; 7+ messages in thread
From: Jakub Kicinski @ 2021-10-12 15:49 UTC (permalink / raw)
  To: jesse.brandeburg, anthony.l.nguyen
  Cc: Ruud Bos, netdev, richardcochran, davem

On Tue, 12 Oct 2021 17:43:52 +0200 Ruud Bos wrote:
> On Wed, Oct 6, 2021 at 3:09 PM Ruud Bos <kernel.hbk@gmail.com> wrote:
> > My apologies for the huge delay in resending this patch set.
> >
> > I tried  setting up my corporate e-mail to work on Linux to be able to use
> > git send-email and getting rid of the automatically appended
> > confidentiality claim. Eventually I gave up on getting this sorted, hence
> > the different e-mail address.
> >
> > Anyway, I have re-spun the patch series atop net-next.
> > Feedback is welcome.
>
> Ping?
> I did not receive any response to my patches yet.
> Does that mean I did something wrong?

These are supposed to go via Intel's trees. 
Let's point To: at Intel's maintainers.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 0/4] igb: support PEROUT and EXTTS PTP pin functions on 82580/i354/i350
  2021-10-06 13:09 ` Ruud Bos
@ 2021-10-12 15:43   ` Ruud Bos
  2021-10-12 15:49     ` Jakub Kicinski
  0 siblings, 1 reply; 7+ messages in thread
From: Ruud Bos @ 2021-10-12 15:43 UTC (permalink / raw)
  To: netdev; +Cc: richardcochran, davem, kuba, jesse.brandeburg, anthony.l.nguyen

On Wed, Oct 6, 2021 at 3:09 PM Ruud Bos <kernel.hbk@gmail.com> wrote:
>
> Hi,
>
> My apologies for the huge delay in resending this patch set.
>
> I tried  setting up my corporate e-mail to work on Linux to be able to use
> git send-email and getting rid of the automatically appended
> confidentiality claim. Eventually I gave up on getting this sorted, hence
> the different e-mail address.
>
> Anyway, I have re-spun the patch series atop net-next.
> Feedback is welcome.
>
> Regards,
> Ruud

Ping?
I did not receive any response to my patches yet.
Does that mean I did something wrong?

Regards,
Ruud

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH net-next 0/4] igb: support PEROUT and EXTTS PTP pin functions on 82580/i354/i350
  2021-10-06 12:58 Ruud Bos
@ 2021-10-06 13:09 ` Ruud Bos
  2021-10-12 15:43   ` Ruud Bos
  0 siblings, 1 reply; 7+ messages in thread
From: Ruud Bos @ 2021-10-06 13:09 UTC (permalink / raw)
  To: netdev; +Cc: richardcochran, davem, kuba, jesse.brandeburg, anthony.l.nguyen

Hi,

My apologies for the huge delay in resending this patch set.

I tried  setting up my corporate e-mail to work on Linux to be able to use 
git send-email and getting rid of the automatically appended 
confidentiality claim. Eventually I gave up on getting this sorted, hence 
the different e-mail address.

Anyway, I have re-spun the patch series atop net-next.
Feedback is welcome.

Regards,
Ruud

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH net-next 0/4] igb: support PEROUT and EXTTS PTP pin functions on 82580/i354/i350
@ 2021-10-06 12:58 Ruud Bos
  2021-10-06 13:09 ` Ruud Bos
  0 siblings, 1 reply; 7+ messages in thread
From: Ruud Bos @ 2021-10-06 12:58 UTC (permalink / raw)
  To: netdev
  Cc: richardcochran, davem, kuba, jesse.brandeburg, anthony.l.nguyen,
	Ruud Bos

The igb driver provides support for PEROUT and EXTTS pin functions that
allow adapter external use of timing signals. At Hottinger Bruel & Kjaer we
are using the PEROUT function to feed a PTP corrected 1pps signal into an
FPGA as cross system synchronized time source.

Support for the PEROUT and EXTTS SDP functions is currently limited to
i210/i211 based adapters. This patch series enables these functions also
for 82580/i354/i350 based ones. Because the time registers of these
adapters do not have the nice split in second rollovers as the i210 has,
the implementation is slightly more complex compared to the i210
implementation.

The PEROUT function has been successfully tested on an i350 based ethernet
adapter. Using the following user space code excerpt, the driver outputs a
PTP corrected 1pps signal on the SDP0 pin of an i350:

    struct ptp_pin_desc desc;
    memset(&desc, 0, sizeof(desc));
    desc.index = 0;
    desc.func = PTP_PF_PEROUT;
    desc.chan = 0;
    if (ioctl(fd, PTP_PIN_SETFUNC, &desc) == 0) {
        struct timespec ts;
        if (clock_gettime(clkid, &ts) == 0) {
            struct ptp_perout_request rq;
            memset(&rq, 0, sizeof(rq));
            rq.index = 0;
            rq.start.sec = ts.tv_sec + 1;
            rq.start.nsec = 500000000;
            rq.period.sec  = 1;
            rq.period.nsec = 0;
            if (ioctl(fd, PTP_PEROUT_REQUEST, &rq) == 0) {
                /* 1pps signal is now available on SDP0 */
            }
        }
    }

The added EXTTS function has not been tested. However, looking at the data
sheets, the layout of the registers involved match the i210 exactly except
for the time registers mentioned before. Hence the almost identical
implementation.

Ruud Bos (4):
  igb: move SDP config initialization to separate function
  igb: move PEROUT and EXTTS isr logic to separate functions
  igb: support PEROUT on 82580/i354/i350
  support EXTTS on 82580/i354/i350

 drivers/net/ethernet/intel/igb/igb_main.c | 141 ++++++++++++-----
 drivers/net/ethernet/intel/igb/igb_ptp.c  | 183 ++++++++++++++++++++--
 2 files changed, 279 insertions(+), 45 deletions(-)

-- 
2.30.2


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-10-12 15:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-19  6:25 [PATCH net-next 0/4] igb: support PEROUT and EXTTS PTP pin functions on 82580/i354/i350 Ruud Bos
2021-07-19 10:09 ` Jakub Kicinski
2021-10-06 12:58 Ruud Bos
2021-10-06 13:09 ` Ruud Bos
2021-10-12 15:43   ` Ruud Bos
2021-10-12 15:49     ` Jakub Kicinski
2021-10-12 15:53       ` Nguyen, Anthony L

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.