All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tty: of_serial: add no-loopback-test property
@ 2012-07-14 12:06 Gabor Juhos
  2012-07-14 14:01 ` Alan Cox
  0 siblings, 1 reply; 4+ messages in thread
From: Gabor Juhos @ 2012-07-14 12:06 UTC (permalink / raw)
  To: Grant Likely
  Cc: Alan Cox, Greg Kroah-Hartman, Rob Landley, devicetree-discuss,
	linux-serial, Gabor Juhos

The loopback test mode is not implemented in all
NS16550 compatible UARTs. The 8250 driver uses the
UPF_SKIP_TEST flag to indicate this, however it is
not possible to set this flag via device-tree.

Add a new 'no-loopback-test' property, and modify
the of_serial driver to set the UPF_SKIP_TEST flag
if the property is present.

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
---
 .../devicetree/bindings/tty/serial/of-serial.txt   |    2 ++
 drivers/tty/serial/of_serial.c                     |    4 ++++
 2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/Documentation/devicetree/bindings/tty/serial/of-serial.txt b/Documentation/devicetree/bindings/tty/serial/of-serial.txt
index b8b27b0..0e83e45 100644
--- a/Documentation/devicetree/bindings/tty/serial/of-serial.txt
+++ b/Documentation/devicetree/bindings/tty/serial/of-serial.txt
@@ -24,6 +24,8 @@ Optional properties:
   accesses to the UART (e.g. TI davinci).
 - used-by-rtas : set to indicate that the port is in use by the OpenFirmware
   RTAS and should not be registered.
+- no-loopback-test: set to indicate that the port does not implements loopback
+  test mode
 
 Example:
 
diff --git a/drivers/tty/serial/of_serial.c b/drivers/tty/serial/of_serial.c
index 5410c06..301e5e3 100644
--- a/drivers/tty/serial/of_serial.c
+++ b/drivers/tty/serial/of_serial.c
@@ -105,6 +105,10 @@ static int __devinit of_platform_serial_setup(struct platform_device *ofdev,
 	port->uartclk = clk;
 	port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_IOREMAP
 		| UPF_FIXED_PORT | UPF_FIXED_TYPE;
+
+	if (of_find_property(np, "no-loopback-test", NULL))
+		port->flags |= UPF_SKIP_TEST;
+
 	port->dev = &ofdev->dev;
 
 	if (type == PORT_TEGRA)
-- 
1.7.2.1


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

* Re: [PATCH] tty: of_serial: add no-loopback-test property
  2012-07-14 12:06 [PATCH] tty: of_serial: add no-loopback-test property Gabor Juhos
@ 2012-07-14 14:01 ` Alan Cox
  2012-07-14 14:04   ` Greg Kroah-Hartman
  2012-07-14 15:41   ` Gabor Juhos
  0 siblings, 2 replies; 4+ messages in thread
From: Alan Cox @ 2012-07-14 14:01 UTC (permalink / raw)
  To: Gabor Juhos
  Cc: Grant Likely, Alan Cox, Greg Kroah-Hartman, Rob Landley,
	devicetree-discuss, linux-serial

On Sat, 14 Jul 2012 14:06:20 +0200
Gabor Juhos <juhosg@openwrt.org> wrote:

> The loopback test mode is not implemented in all
> NS16550 compatible UARTs. The 8250 driver uses the
> UPF_SKIP_TEST flag to indicate this, however it is
> not possible to set this flag via device-tree.
> 
> Add a new 'no-loopback-test' property, and modify
> the of_serial driver to set the UPF_SKIP_TEST flag
> if the property is present.
> 
> Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

Looks good to me but clashes with the sync of the termios changes, which
we urgently need to get in first.

Greg - I'll add this to my patch stack with the relevant changes so that
it doesn't get messed up.

Alan

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

* Re: [PATCH] tty: of_serial: add no-loopback-test property
  2012-07-14 14:01 ` Alan Cox
@ 2012-07-14 14:04   ` Greg Kroah-Hartman
  2012-07-14 15:41   ` Gabor Juhos
  1 sibling, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2012-07-14 14:04 UTC (permalink / raw)
  To: Alan Cox
  Cc: Gabor Juhos, Grant Likely, Alan Cox, Rob Landley,
	devicetree-discuss, linux-serial

On Sat, Jul 14, 2012 at 03:01:01PM +0100, Alan Cox wrote:
> On Sat, 14 Jul 2012 14:06:20 +0200
> Gabor Juhos <juhosg@openwrt.org> wrote:
> 
> > The loopback test mode is not implemented in all
> > NS16550 compatible UARTs. The 8250 driver uses the
> > UPF_SKIP_TEST flag to indicate this, however it is
> > not possible to set this flag via device-tree.
> > 
> > Add a new 'no-loopback-test' property, and modify
> > the of_serial driver to set the UPF_SKIP_TEST flag
> > if the property is present.
> > 
> > Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
> 
> Looks good to me but clashes with the sync of the termios changes, which
> we urgently need to get in first.
> 
> Greg - I'll add this to my patch stack with the relevant changes so that
> it doesn't get messed up.

Ok, thanks for doing that.

greg k-h

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

* Re: [PATCH] tty: of_serial: add no-loopback-test property
  2012-07-14 14:01 ` Alan Cox
  2012-07-14 14:04   ` Greg Kroah-Hartman
@ 2012-07-14 15:41   ` Gabor Juhos
  1 sibling, 0 replies; 4+ messages in thread
From: Gabor Juhos @ 2012-07-14 15:41 UTC (permalink / raw)
  To: Alan Cox
  Cc: Grant Likely, Alan Cox, Greg Kroah-Hartman, Rob Landley,
	devicetree-discuss, linux-serial

2012.07.14. 16:01 keltezéssel, Alan Cox írta:
> On Sat, 14 Jul 2012 14:06:20 +0200
> Gabor Juhos <juhosg@openwrt.org> wrote:
> 
>> The loopback test mode is not implemented in all
>> NS16550 compatible UARTs. The 8250 driver uses the
>> UPF_SKIP_TEST flag to indicate this, however it is
>> not possible to set this flag via device-tree.
>>
>> Add a new 'no-loopback-test' property, and modify
>> the of_serial driver to set the UPF_SKIP_TEST flag
>> if the property is present.
>>
>> Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
> 
> Looks good to me but clashes with the sync of the termios changes, which
> we urgently need to get in first.
> 
> Greg - I'll add this to my patch stack with the relevant changes so that
> it doesn't get messed up.

Thank you!

-Gabor
--
To unsubscribe from this list: send the line "unsubscribe linux-serial" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2012-07-14 15:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-14 12:06 [PATCH] tty: of_serial: add no-loopback-test property Gabor Juhos
2012-07-14 14:01 ` Alan Cox
2012-07-14 14:04   ` Greg Kroah-Hartman
2012-07-14 15:41   ` Gabor Juhos

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.