From: "Alexander Shiyan" <shc_work@mail.ru>
To: "Charles Coldwell" <coldwell@gmail.com>
Cc: "linux-serial@vger.kernel.org" <linux-serial@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"Greg KH" <gregkh@linuxfoundation.org>,
"Jon Ringle" <jringle@gridpoint.com>,
"Jon Ringle" <jon@ringle.org>
Subject: Re: [PATCH v7 1/2] serial: sc16is7xx
Date: Fri, 25 Apr 2014 18:33:29 +0400 [thread overview]
Message-ID: <1398436409.315304910@f193.i.mail.ru> (raw)
In-Reply-To: <alpine.LRH.2.03.1404251019300.2893@frank.harvard.edu>
Fri, 25 Apr 2014 10:24:30 -0400 (EDT) от Charles Coldwell <coldwell@gmail.com>:
> On Fri, 25 Apr 2014, Jon Ringle wrote:
>
> > On Fri, Apr 25, 2014 at 9:44 AM, Charles Coldwell <coldwell@gmail.com> wrote:
> > > On Fri, 25 Apr 2014, Charles Coldwell wrote:
> > >
> > >> On Thu, 24 Apr 2014, jon@ringle.org wrote:
> > >>
> > >> > diff --git a/drivers/tty/serial/sc16is7xx.c b/drivers/tty/serial/sc16is7xx.c
> > >>
> > >> Isn't this a lot of duplication?
> > >
> > > Actually, the whole thing seems like duplication to me.
> >
> > The fact that we need to reach over the SPI/I2C bus makes a big
> > difference in the way access is handled.
> >
> > To achieve acceptable throughput, it is necessary to use threaded irq
> > and also bulk i2c transfers for RX and TX using
> > regmap_raw_{read,write}() to optimize the use of the i2c bus.
>
> Fair enough, but the 8250 framework does allow you to insert your own
> irq service routine. "serial8250_default_handle_irq" is the default
> (unsurprisingly), but if the uart_port has a non-NULL "handle_irq"
> method it will be faithfully copied into the uart_8250_port
> "handle_irq" method in 8250_core.c:early_serial_setup.
>
> > This is not a good fit for 8250.
>
> If that's really true, then I would say it argues in favor of a
> revision of the 8250 code. Certainly, this is not the last time that
> a 16550-compatible UART will appear on a non-PCI, non-ISA bus.
At this stage, I would suggest just move the driver code into serial/8250
to indicate the compatibility and then apply this patch and look for ways
to optimize similar functions.
---
WARNING: multiple messages have this Message-ID (diff)
From: "Alexander Shiyan" <shc_work@mail.ru>
To: "Charles Coldwell" <coldwell@gmail.com>
Cc: "linux-serial@vger.kernel.org" <linux-serial@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"Greg KH" <gregkh@linuxfoundation.org>,
"Jon Ringle" <jringle@gridpoint.com>,
"Jon Ringle" <jon@ringle.org>
Subject: Re: [PATCH v7 1/2] serial: sc16is7xx
Date: Fri, 25 Apr 2014 18:33:29 +0400 [thread overview]
Message-ID: <1398436409.315304910@f193.i.mail.ru> (raw)
In-Reply-To: <alpine.LRH.2.03.1404251019300.2893@frank.harvard.edu>
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=utf-8, Size: 1763 bytes --]
Fri, 25 Apr 2014 10:24:30 -0400 (EDT) Ð¾Ñ Charles Coldwell <coldwell@gmail.com>:
> On Fri, 25 Apr 2014, Jon Ringle wrote:
>
> > On Fri, Apr 25, 2014 at 9:44 AM, Charles Coldwell <coldwell@gmail.com> wrote:
> > > On Fri, 25 Apr 2014, Charles Coldwell wrote:
> > >
> > >> On Thu, 24 Apr 2014, jon@ringle.org wrote:
> > >>
> > >> > diff --git a/drivers/tty/serial/sc16is7xx.c b/drivers/tty/serial/sc16is7xx.c
> > >>
> > >> Isn't this a lot of duplication?
> > >
> > > Actually, the whole thing seems like duplication to me.
> >
> > The fact that we need to reach over the SPI/I2C bus makes a big
> > difference in the way access is handled.
> >
> > To achieve acceptable throughput, it is necessary to use threaded irq
> > and also bulk i2c transfers for RX and TX using
> > regmap_raw_{read,write}() to optimize the use of the i2c bus.
>
> Fair enough, but the 8250 framework does allow you to insert your own
> irq service routine. "serial8250_default_handle_irq" is the default
> (unsurprisingly), but if the uart_port has a non-NULL "handle_irq"
> method it will be faithfully copied into the uart_8250_port
> "handle_irq" method in 8250_core.c:early_serial_setup.
>
> > This is not a good fit for 8250.
>
> If that's really true, then I would say it argues in favor of a
> revision of the 8250 code. Certainly, this is not the last time that
> a 16550-compatible UART will appear on a non-PCI, non-ISA bus.
At this stage, I would suggest just move the driver code into serial/8250
to indicate the compatibility and then apply this patch and look for ways
to optimize similar functions.
---
ÿôèº{.nÇ+·®+%Ëÿ±éݶ\x17¥wÿº{.nÇ+·¥{±þG«éÿ{ayº\x1dÊÚë,j\a¢f£¢·hïêÿêçz_è®\x03(éÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?¨èÚ&£ø§~á¶iOæ¬z·vØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?I¥
next prev parent reply other threads:[~2014-04-25 14:35 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-25 0:56 [PATCH v7 1/2] serial: sc16is7xx jon
2014-04-25 0:56 ` [PATCH v7 2/2] serial: sc16is7xx: Add bindings documentation for the SC16IS7XX UARTs jon
2014-04-25 13:21 ` [PATCH v7 1/2] serial: sc16is7xx Charles Coldwell
2014-04-25 13:35 ` Alexander Shiyan
2014-04-25 13:35 ` Alexander Shiyan
2014-04-25 14:11 ` Jon Ringle
2014-04-25 13:44 ` Charles Coldwell
2014-04-25 14:08 ` Jon Ringle
2014-04-25 14:24 ` Charles Coldwell
2014-04-25 14:33 ` Alexander Shiyan [this message]
2014-04-25 14:33 ` Alexander Shiyan
2014-04-25 14:36 ` Charles Coldwell
2014-04-25 14:41 ` Jon Ringle
2014-04-25 14:54 ` Alexander Shiyan
2014-04-25 16:48 ` One Thousand Gnomes
2014-04-25 17:26 ` Greg KH
2014-04-25 17:26 ` Greg KH
2014-04-25 17:40 ` Alexander Shiyan
2014-04-25 18:24 ` Jon Ringle
2014-04-25 18:28 ` Alexander Shiyan
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=1398436409.315304910@f193.i.mail.ru \
--to=shc_work@mail.ru \
--cc=coldwell@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=jon@ringle.org \
--cc=jringle@gridpoint.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.