From: Rodolfo Giometti <giometti@enneenne.com>
To: Bastien Curutchet <bastien.curutchet@bootlin.com>
Cc: linux-kernel@vger.kernel.org,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
herve.codina@bootlin.com, christophercordahi@nanometrics.ca
Subject: Re: [PATCH 1/1] pps: clients: gpio: Bypass edge's direction check when not needed
Date: Thu, 25 Apr 2024 13:46:40 +0200 [thread overview]
Message-ID: <80e759c4-8016-488b-859a-25a07cc2094f@enneenne.com> (raw)
In-Reply-To: <d4b4fb72-79e7-4e06-a038-4645574a799b@bootlin.com>
On 25/04/24 08:11, Bastien Curutchet wrote:
> Hi Rodolfo,
>
>
> On 4/12/24 14:20, Bastien Curutchet wrote:
>> Hi Rodolfo,
>>
>> On 4/12/24 08:44, Rodolfo Giometti wrote:
>>> On 11/04/24 14:44, Bastien Curutchet wrote:
>>>>>
>>>>> However we should think very well about this modification since it could be
>>>>> the case where we have a device sending both assert and clear events but we
>>>>> wish to catch just the asserts... in this case we will get doubled asserts!
>>>>>
>>>>
>>>> My understanding is that clear events are to be captured only when this
>>>> capture_clear boolean is set. If it is not set, the PPS_CAPTURECLEAR
>>>> flag is not added to pps_source_info->mode and get_irqf_trigger_flags()
>>>> will return only one edge flag (rising or falling depending on
>>>> assert-falling-edge DT property).
>>>
>>> Yes. You are right.
>>>
>>>> By the way, I see that the capture_clear is never set since the legacy
>>>> platform data support has been dropped (commit ee89646619ba).
>>>
>>> I see, but it can be re-enabled in the future... In this scenario, I think we
>>> should add a DT entry to enable this special behavior. Maybe we can also add
>>> a warning as below: >
>>> static irqreturn_t pps_gpio_irq_handler(int irq, void *data)
>>> {
>>> ...
>>> if ((rising_edge && !info->assert_falling_edge) ||
>>> (!rising_edge && info->assert_falling_edge))
>>> pps_event(info->pps, &ts, PPS_CAPTUREASSERT, data);
>>> else if (info->capture_clear &&
>>> ((rising_edge && info->assert_falling_edge) ||
>>> (!rising_edge && !info->assert_falling_edge)))
>>> pps_event(info->pps, &ts, PPS_CAPTURECLEAR, data);
>>> else
>>> dev_warn_ratelimited(dev, "no ASSERT or CAPTURE event? "
>>> "Maybe you need support-tiny-assert-pulse?");
>>>
>>> return IRQ_HANDLED;
>>> }
>>>
>>
>> I'm not sure a DT entry is needed. IMO there are two cases:
>> 1) capture_clear is unset. We need to capture only assert events,
>> interrupt will be triggered by assert edge only so there is no need
>> to check GPIO state: we can use the bypass.
>> 2) capture_clear is set. We need to capture assert and/or clear
>> events, interrupt will be triggered by both assert and clear edges
>> so we can't avoid the GPIO state checking to distinguish clear
>> events from assert events: we can't use the bypass.
>>
>> So if we bypass the GPIO's state check when capture_clear is unset and
>> leave current behavior when capture_clear is set:
>> - case 1) will be more efficient and we won't lose tiny pulses anymore
>> - case 2) is unchanged: we still might lose tiny pulses but as bypass
>> can't be done here, I think that we can't do better.
>>
>> I agree that adding warning when the handler is left without triggering
>> a pps event can be useful, I can add it in a V3 version.
>>
>
> Would this be OK for you ? If yes, I'll send a V3 version without DT
> entry but with an additional warning.
Sorry, I completely missed this e-mail! :(
OK, I agree.
Ciao,
Rodolfo
--
GNU/Linux Solutions e-mail: giometti@enneenne.com
Linux Device Driver giometti@linux.it
Embedded Systems phone: +39 349 2432127
UNIX programming
prev parent reply other threads:[~2024-04-25 11:49 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-10 11:35 [PATCH 1/1] pps: clients: gpio: Bypass edge's direction check when not needed Bastien Curutchet
2024-04-10 14:23 ` Rodolfo Giometti
2024-04-10 14:46 ` Bastien Curutchet
2024-04-10 15:24 ` Rodolfo Giometti
2024-04-10 16:05 ` Bastien Curutchet
2024-04-11 7:20 ` Rodolfo Giometti
2024-04-11 12:44 ` Bastien Curutchet
2024-04-12 6:44 ` Rodolfo Giometti
2024-04-12 12:20 ` Bastien Curutchet
2024-04-25 6:11 ` Bastien Curutchet
2024-04-25 11:46 ` Rodolfo Giometti [this message]
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=80e759c4-8016-488b-859a-25a07cc2094f@enneenne.com \
--to=giometti@enneenne.com \
--cc=bastien.curutchet@bootlin.com \
--cc=christophercordahi@nanometrics.ca \
--cc=herve.codina@bootlin.com \
--cc=linux-kernel@vger.kernel.org \
--cc=thomas.petazzoni@bootlin.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