linux-can.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Austin Schuh <austin@peloton-tech.com>
To: Oliver Hartkopp <socketcan@hartkopp.net>
Cc: linux-can <linux-can@vger.kernel.org>,
	Philipp Schrader <philipp@peloton-tech.com>
Subject: Re: CAN message timestamping
Date: Mon, 4 Apr 2016 13:32:06 -0700	[thread overview]
Message-ID: <CANGgnMbPmrCxCXddj_hOhTc6v3uHrtMtmfDZLOYjs+4TLjSdkA@mail.gmail.com> (raw)
In-Reply-To: <5702C43C.4000506@hartkopp.net>

On Mon, Apr 4, 2016 at 12:45 PM, Oliver Hartkopp <socketcan@hartkopp.net> wrote:
> Hi Austin,
>
>
> On 03/30/2016 06:50 PM, Austin Schuh wrote:
>>
>> Hi Oliver,
>>
>> On Wed, Mar 30, 2016 at 5:17 AM, Oliver Hartkopp <socketcan@hartkopp.net>
>> wrote:
>>>
>>> Hi Austin,
>>>
>>> On 03/29/2016 06:28 AM, Austin Schuh wrote:
>>>>
>>>>
>>>> On Mon, Mar 28, 2016 at 8:42 PM, Austin Schuh <austin@peloton-tech.com>
>>>> wrote:
>>>>>
>>>>>
>>>>> On Mon, Mar 28, 2016 at 6:51 PM, Austin Schuh <austin@peloton-tech.com>
>>>>> wrote:
>>>>> Turns out timestamping in the driver is pretty easy.  The following
>>>>> seems to be working for me.  (comments welcome!)  I don't think this
>>>>> is something that should be up streamed, but I'm including it here in
>>>>> case there is other interest.  I'm reading both clocks in the ISR to
>>>>> reduce the amount of time difference between when they are both read.
>>>>>
>>>>> $ git diff
>>>>> diff --git a/drivers/net/can/sja1000/sja1000.c
>>>>> b/drivers/net/can/sja1000/sja1000.c
>>>>> index 76ef900..55d6583 100644
>>>>> --- a/drivers/net/can/sja1000/sja1000.c
>>>>> +++ b/drivers/net/can/sja1000/sja1000.c
>>>>> @@ -370,6 +370,10 @@ static void sja1000_rx(struct net_device *dev)
>>>>>           /* release receive buffer */
>>>>>           sja1000_write_cmdreg(priv, CMD_RRB);
>>>>>
>>>>> +       struct skb_shared_hwtstamps *shhwtstamps =
>>>>> +           skb_hwtstamps(skb);
>>>>> +       shhwtstamps->syststamp = ktime_get();
>>>>> +       skb->tstamp = ktime_get_real();
>>>>>           netif_rx(skb);
>>>>>
>>>>>           stats->rx_packets++;
>>>
>>>
>>>
>>> Yes. I was also thinking about doing the timestamping directly at hw
>>> interrupt time.
>>>
>>> The point is, that timestamping is an option.
>>> The timestamping is only done if someone requires timestamps - an then it
>>> is
>>> done in the net-rx softirq (which is not that precise which is probably
>>> the
>>> reason for rx hardware timestamping).
>>
>>
>>  From what I see in the two drivers I've looked at so far, hardware
>> timestamping is done unconditionally.  Normal timestamping seems to be
>> done conditional on if SOCK_RCVTSTAMP is set on the sock and if it has
>> not already been timestamped.
>
>
> The fact that HW timstamping is done unconditionally should be discussed
> separately. E.g. by some net_timestamp_needed() function which would have to
> be introduced in linux/net/core/dev.c ...

Sounds reasonable.  I'll implement a RFC without this part in the next
week or so and send it out.  Once I've got something that's a bit
better than what I have now, I'll send it out.

>> drivers/net/can/usb/peak_usb/pcan_usb.c, in pcan_usb_decode_data, the
>> hardware timestamp is populated unconditionally.  I saw something
>> similar in the tg3 driver, though it was hidden behind an if statement
>> that I had trouble figuring out for sure when it was triggered.
>>
>> I haven't checked to see if the bits are available where we need them,
>> but there are option bits attached to struct sock in net/core/sock.c
>> that signal if timestamping is required.
>>
>> What do you think makes sense here?  I'm nervous about breaking things...
>
>
> See above - I would vote for a local solution first.
>
>
>>>
>>>> I missed the TX timestamping.  I didn't see a clean way to get access
>>>> to the echo skb.
>>>>
>>>> --- a/drivers/net/can/sja1000/sja1000.c
>>>> +++ b/drivers/net/can/sja1000/sja1000.c
>>>> @@ -518,10 +524,19 @@ irqreturn_t sja1000_interrupt(int irq, void
>>>> *dev_id)
>>>>                                   stats->tx_errors++;
>>>>                                   can_free_echo_skb(dev, 0);
>>>>                           } else {
>>>> +                               struct can_priv *can_priv_struct =
>>>> netdev_priv(dev);
>>>>                                   /* transmission complete */
>>>>                                   stats->tx_bytes +=
>>>>                                           priv->read_reg(priv,
>>>> SJA1000_FI)
>>>> & 0xf;
>>>>                                   stats->tx_packets++;
>>>> +                               if (can_priv_struct->echo_skb[0]) {
>>>> +                                       struct sk_buff *skb =
>>>> can_priv_struct->echo_skb[0];
>>>> +                                       struct skb_shared_hwtstamps
>>>> *shhwtstamps =
>>>> +                                               skb_hwtstamps(skb);
>>>> +                                       shhwtstamps->syststamp =
>>>> ktime_get();
>>>> +                                       skb->tstamp = ktime_get_real();
>>>> +                               }
>>>> +
>>>>                                   can_get_echo_skb(dev, 0);
>>>
>>>
>>>
>>> I think a proper way would be to put this directly in can_get_echo_skb(),
>>> as
>>> poking into can_priv_struct->echo_skb[0] can just be a proof of concept
>>> for
>>> tx timstamping.
>>>
>
> (..)
>
>> Works for me.
>
>
> Not for me :-)
>
>> I don't like running a custom kernel when I don't need
>> to.  Before I put together a patch, let's figure out what makes sense.
>> I'm more than capable of writing the software, but my kernel internals
>> background and knowledge of best practices isn't very good.
>
>
> I wonder if it makes sense to create a helper function to set the timestamps
> following your suggestion and call this function in can_get_echo_skb().
>
> Regards,
> Oliver
>

Ok!  I *think* I have enough to put together a first patch for
comments and test it on my SJA1000 and on vcan.  Thanks!  If you have
other thoughts, please let me know.

Austin

  reply	other threads:[~2016-04-04 20:32 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-23  5:12 CAN message timestamping Austin Schuh
2016-03-23  7:00 ` Oliver Hartkopp
2016-03-29  1:51   ` Austin Schuh
2016-03-29  3:42     ` Austin Schuh
2016-03-29  4:28       ` Austin Schuh
2016-03-30 12:17         ` Oliver Hartkopp
2016-03-30 16:50           ` Austin Schuh
2016-04-04 19:45             ` Oliver Hartkopp
2016-04-04 20:32               ` Austin Schuh [this message]
2016-05-12  2:07                 ` Austin Schuh

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=CANGgnMbPmrCxCXddj_hOhTc6v3uHrtMtmfDZLOYjs+4TLjSdkA@mail.gmail.com \
    --to=austin@peloton-tech.com \
    --cc=linux-can@vger.kernel.org \
    --cc=philipp@peloton-tech.com \
    --cc=socketcan@hartkopp.net \
    /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).