From: Greg KH <gregkh@linuxfoundation.org>
To: Andre Werner <andre.werner@systec-electronic.com>
Cc: jirislaby@kernel.org, hvilleneuve@dimonoff.com, andy@kernel.org,
linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org,
lech.perczak@camlingroup.com
Subject: Re: [External Email] Re: [PATCH] serial: sc16is7xx: Add polling feature if no IRQ usage possible
Date: Thu, 19 Dec 2024 10:41:23 +0100 [thread overview]
Message-ID: <2024121906-reach-hash-3d7c@gregkh> (raw)
In-Reply-To: <fbd224a3-8f10-3ccf-5480-38fcd839d409@systec-electronic.com>
On Thu, Dec 19, 2024 at 10:22:40AM +0100, Andre Werner wrote:
> Dear Greg,
> On Thu, 19 Dec 2024, Greg KH wrote:
>
> > On Thu, Dec 19, 2024 at 09:46:38AM +0100, Andre Werner wrote:
> > > Fall back to polling mode if no interrupt is configured because not
> > > possible. If "interrupts" property is missing in devicetree the driver
> > > uses a delayed worker to pull state of interrupt status registers.
> > >
> > > Signed-off-by: Andre Werner <andre.werner@systec-electronic.com>
> > > ---
> > > This driver was tested on Linux 5.10. We had a custom board that was not
> > > able to connect the interrupt port. Only I2C was available.
> >
> > Could you not test this on the latest tree? 5.10 is _VERY_ old now.
>
> I will try it on devboard with a 6.1 Kernel. Is that okay for you?
6.1 was released in December of 2022, 2 full years and hundreds of
thousands of changes ago. Please work off of Linus's latest tree, we
can't go back in time :)
> > > @@ -1537,7 +1564,13 @@ int sc16is7xx_probe(struct device *dev, const struct sc16is7xx_devtype *devtype,
> > >
> > > /* Always ask for fixed clock rate from a property. */
> > > device_property_read_u32(dev, "clock-frequency", &uartclk);
> > > + s->polling = !device_property_present(dev, "interrupts");
> > >
> > > + if (s->polling) {
> > > + dev_warn(dev,
> > > + "No interrupt definition found. Falling back to polling mode.\n");
> >
> > What is a user supposed to do with this message? And why would a device
> > NOT have any interrupts? This feels like it is just going to pound on
> > the device and cause a lot of power drain for just a simple little uart.
>
> I thought it could be interesting to know that the device has missing
> interrupt support.
Maybe, but as you are now warning a user about this, what are they
supposed to do to fix it?
> > Why can't your system provide a valid irq line?
> >
>
> In our case we have only an I2C available in a connection cable and the
> GPIOs are linked through a two way level shifter.
> It was a very special situation in our case because target platform and
> sensor platform are provided.
> The IRQ from the sensor war not able to drive the two way level shifter low so
> we always detect outgoing traffic and the IRQ signal but at the target
> board after the level shifter the signal remains stable. So
> communication failed with a timeout. So we need to force polling the
> interrupt status register because
> both HW solution should not be changed in any way.
Again, you are burning a TON of power just for a simple little uart,
with your system never being able to go to sleep, are you sure this is
something that you want others to emulate and support?
thanks,
greg k-h
next prev parent reply other threads:[~2024-12-19 9:41 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-19 8:46 [PATCH] serial: sc16is7xx: Add polling feature if no IRQ usage possible Andre Werner
2024-12-19 8:56 ` Greg KH
2024-12-19 9:22 ` [External Email] " Andre Werner
2024-12-19 9:41 ` Greg KH [this message]
2024-12-20 5:50 ` Andre Werner
2024-12-23 14:27 ` Maarten Brock
2024-12-23 17:59 ` Greg KH
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=2024121906-reach-hash-3d7c@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=andre.werner@systec-electronic.com \
--cc=andy@kernel.org \
--cc=hvilleneuve@dimonoff.com \
--cc=jirislaby@kernel.org \
--cc=lech.perczak@camlingroup.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
/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.