devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Mark Rutland <mark.rutland@arm.com>
To: "H. Nikolaus Schaller" <hns@goldelico.com>
Cc: List for communicating with real GTA04 owners
	<gta04-owner@goldelico.com>,
	tomeu@tomeuvizoso.net, NeilBrown <neil@brown.name>,
	One Thousand Gnomes <gnomes@lxorguk.ukuu.org.uk>,
	Peter Hurley <peter@hurleysoftware.com>,
	Arnd Bergmann <arnd@arndb.de>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Sebastian Reichel <sre@kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Rob Herring <robherring2@gmail.com>, Pavel Machek <pavel@ucw.cz>,
	linux-serial@vger.kernel.org,
	Grant Likely <grant.likely@linaro.org>,
	Jiri Slaby <jslaby@suse.cz>, Marek Belisko <marek@goldelico.com>
Subject: Re: [Gta04-owner] [PATCH 0/4] UART slave device support - version 4
Date: Fri, 15 Jan 2016 16:12:29 +0000	[thread overview]
Message-ID: <20160115161229.GN3262@leverpostej> (raw)
In-Reply-To: <69F8E1E5-EF49-4C8E-88E9-973F82F7102E@goldelico.com>

On Fri, Jan 15, 2016 at 04:05:45PM +0100, H. Nikolaus Schaller wrote:
> Hi Mark,
> 
> Am 15.01.2016 um 12:01 schrieb Mark Rutland <mark.rutland@arm.com>:
> 
> > On Fri, Jan 15, 2016 at 10:34:51AM +0100, H. Nikolaus Schaller wrote:
> >> Hi Mark,
> >> 
> >> Am 13.01.2016 um 20:15 schrieb Mark Rutland <mark.rutland@arm.com>:
> >> 
> >>> On Tue, Jan 12, 2016 at 02:28:00PM +0100, H. Nikolaus Schaller wrote:
> >>>> There is one point still to be solved: the exact style of the DT bindings.
> >>>> 
> >>>> We have an idea how a driver can implement two different styles (child node AND phandle)
> >>>> so that it is up to the DTS developer to use the one that best fits into the existing DTS.
> >>> 
> >>> From my perspective as a binding maintainer, and as I stated before, the
> >>> child node approach made the most sense and was most consistent with the
> >> 
> >>> way we handle other devices.
> >> 
> >> I simply don't see that this is the most common way other devices are handled.
> >> 
> >> I find many counter-examples which use phandles:
> >> * gpios
> >> * regulators
> >> * iio channels used by other drivers (e.g. iio-hwmon)
> >> * phy devices
> >> * timers
> >> * pwms
> >> * interrupts
> >> * dma
> > 
> > As was previously described to you, in these cases phandles are used
> > when these are _resources_ used by another device, not for the main
> > programmer-visible interface to the device.
> 
> Ah, I think I finally begin to understand the rule you are following:
> 
> 	If a device's data interface can be seen in user space, this interface
> 	is sort of a "main interface" and must be modelled in DT by a
> 	parent-child relationship.

No, you have misunderstood. This has _nothing_ to do with userspace.

This has everything to do with the "programmer's interface" as you would
find documented in a TRM -- effectively where a driver would communicate
with the device (e.g. MMIO/SPI/I2C registers).

[...]

> Now I also think I better understand what you meant by "main interface"
> a while ago.
> 
> For me, when looking into a chip data sheet, the main interface is a sometimes
> arbitrary. Or when viewing it through device driver implementors glasses
> I may end up with a different main interface.
> 
> From the hardware schematics, I can't read which interface is "main". I can
> only read which components and signals are connected. So the information
> what is "main" must come from somewhere else, but not the hardware.
> 
> You appear to have a definition based on Linux user space interfaces
> which is distinct from mine and at least explains why the discussion takes
> so long and we don't come to a common view.

This is nothing to do with userspace.

Admittedly, on a device which has multiple slave interfaces, "main" is
arbitrary. If I've followed correctly, that's not the cae here.

> > Conceptually, A UART slave is far closer to SPI or I2C, where the slave
> > is represented as a sub-node.
> 
> Only if you have the goal to describe the data/command path ("main interface")
> in DT.

This is the way devices are described in DT -- walking from the root to
a leaf you follow the path from the CPU to a slave interface.

Some things don't have slave interfaces (e.g. fixed-clocks), but still
need to be referred to, so those still get placed in the DT. There are
arguments to be had w.r.t. their placement, but that's another
discussion entirely.

> I mentioned it several times: USB-PHYs use the phandle approach to attach
> a single PHY to the usb controller, although there is usually some ULPI-"bus"
> interface (12 parallel wires) between. And the PHY is clearly more "slave" than
> the usb controller, isn't it?

Some PHYs have additional interfaces, so their CPU-visible slave
interface is described. This necessitates the phandle reference in the
general case.

> But with phandle, the usb controller is a _resource_ for the PHY. So would
> you say this is wrong?

Not entirely.

> This is the design pattern (for DT and drivers) we have copied for our tty-slave
> proposal.

We have plenty of other ways of describing relationships today. The
existence of one style (and its continued support for ABI reasons) does
not mean that it's a style we want to proliferate.

> 
> > I wasn't aware of any instances of timers being referred to by phandle
> > by other devices -- that seems distinctly odd. Where do you see that
> > happening.
> 
> I found it in connection with dmtimer / pwm on OMAP3. May be a rare exception
> and that may be a special type of OMAP timers.

I took a quick look and couldn't spot where that happened. I take it
the timer was a "ti,omap3430-timer"? Or have I misunderstood?

What referenced it by phandle? In which dt?

> >> * mcbsp (see e.g. http://lxr.free-electrons.com/source/arch/arm/boot/dts/omap3-n900.dts#L127)
> > 
> > Subsystem type bindings are more of a special case, and regardless the
> > components have nodes in the relevant portions of the DT.
> 
> > 
> >> * mmc-pwr-seq-simple (which does not even describe a physical piece of hardware)
> > 
> > If this is so different, how is it relevant?
> 
> It could as well be subnode of the affected mmc interface or mmc-slave, but obviously it
> isn't grouped there, and uses a phandle to refer to its &mmc "master".
> 
> Its function is quite similar what we need for our GPS chip: control power sequences
> of a remote device.

That may fit your one particular use-case, but for UART slaves generally
we should have a kernel driver (which can do more than a trivial
power-up), at which point you need a node, and the separate sequence
node is useless.

> >> All of them define the provider in one node. And refer to it by a phandle in another node
> >> where they are used.
> >> 
> >> So I see a lot of provider-consumer relationships modeled by phandles but not by child nodes.
> > 
> > I agree that provider-consumer type relationships are typically
> > described in this manner.
> 
> Ok.
> 
> > 
> > However, master-slave relationships are not.
> 
> It looks as if you see a significant difference between provider-consumer and master-slave
> relationship which I was not sure of which applies to what and where you make the distinction.
> 
> By the way: what exactly makes the UART on the SoC side "master" and the UART on the connected
> device a "slave" (except the user-space view)?

Typically a "slave" accepts commands, and won't send commands of its own
accord. This case is admittedly fuzzier given that a UART slave could
send a stream of bytes at any point, but that's data.

The distinction is really that the UART slave won't control other
devices -- you can think of the entire path of the CPU to the UART as
the master.

> UARTs per se have no master-slave roles and are symmetrical (contrary to SPI and I2C where it
> is well defined). Rather, both are formally DTE connected by a null-modem.
> 
> This is another substantial difference between UART and I2C/SPI besides addressability.

Sure, except for the fact that the device attached to the UART logically
follows a "slave" role. The rest of the system would be usable without
it, and it assert no control over anything else.

Thanks,
Mark.

  parent reply	other threads:[~2016-01-15 16:12 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-11  1:56 [PATCH 0/4] UART slave device support - version 4 NeilBrown
2015-05-11  1:56 ` [PATCH 1/4] TTY: use class_find_device to find port in uart_suspend/resume NeilBrown
2015-05-11  1:56 ` [PATCH 3/4] TTY: add support for uart_slave devices NeilBrown
2015-05-12  8:31   ` Paul Bolle
2015-05-12 23:35     ` NeilBrown
2015-05-11  1:56 ` [PATCH 2/4] TTY: split tty_register_device_attr into 'initialize' and 'add' parts NeilBrown
2015-05-31 22:01 ` [PATCH 0/4] UART slave device support - version 4 Greg Kroah-Hartman
     [not found] ` <20150511013540.5709.93626.stgit-wvvUuzkyo1EYVZTmpyfIwg@public.gmane.org>
2015-05-11  1:56   ` [PATCH 4/4] tty/slaves: add a driver to power on/off UART attached devices NeilBrown
2015-08-07 13:01   ` [PATCH 0/4] UART slave device support - version 4 Linus Walleij
2015-08-11 23:20     ` NeilBrown
2015-08-28  5:52       ` [Gta04-owner] " Dr. H. Nikolaus Schaller
     [not found]         ` <CD86D8CD-20D8-44EF-8245-A3E49C2D3EA7-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2015-08-28  7:02           ` Pavel Machek
2015-08-28  9:43             ` Dr. H. Nikolaus Schaller
     [not found]               ` <0579762D-51C2-45F0-A362-EE31215A40E8-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2015-08-28 11:04                 ` Pavel Machek
2015-08-28 20:04                   ` Christ van Willegen
2016-01-12 13:06   ` Tomeu Vizoso
2016-01-12 13:28     ` [Gta04-owner] " H. Nikolaus Schaller
2016-01-13 19:15       ` Mark Rutland
2016-01-15  9:34         ` H. Nikolaus Schaller
2016-01-15 11:01           ` Mark Rutland
2016-01-15 15:05             ` H. Nikolaus Schaller
     [not found]               ` <69F8E1E5-EF49-4C8E-88E9-973F82F7102E-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2016-01-15 15:43                 ` Andrey Vostrikov
2016-01-15 16:08                   ` H. Nikolaus Schaller
     [not found]                     ` <CB69F6F0-B40B-47D1-B175-8401F43288C5-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2016-01-15 17:16                       ` Peter Hurley
     [not found]                         ` <56992959.2020204-WaGBZJeGNqdsbIuE7sb01tBPR1lH4CV8@public.gmane.org>
2016-01-15 17:32                           ` H. Nikolaus Schaller
2016-01-15 17:43                             ` Peter Hurley
2016-01-15 17:58                               ` H. Nikolaus Schaller
     [not found]                                 ` <69FAE2F5-25D1-4E5E-9FED-FC86773269D6-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2016-01-15 19:23                                   ` Peter Hurley
2016-01-15 21:24                                     ` H. Nikolaus Schaller
2016-01-15 22:40                         ` Rob Herring
     [not found]                           ` <CAL_JsqL=Wotz4FuoV7PULfZNfSV=S_q0iOzkckVA3NDDzMdfZQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-01-16  7:34                             ` Vostrikov Andrey
2016-01-16 23:31                               ` Rob Herring
2016-01-17  8:53                                 ` H. Nikolaus Schaller
     [not found]                                   ` <3D5F35D7-31B5-4E68-875F-7DD492EF0316-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2016-01-17 14:19                                     ` One Thousand Gnomes
2016-01-17 17:57                                       ` H. Nikolaus Schaller
     [not found]                                         ` <1D5F146E-D347-453B-9158-8D269F8DA99C-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2016-01-17 19:38                                           ` One Thousand Gnomes
2016-01-18  8:17                                             ` H. Nikolaus Schaller
     [not found]                                               ` <37DCE36D-0A5E-41C5-BDA4-857DCF9F2DD1-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2016-01-18  8:56                                                 ` Andrey Vostrikov
2016-01-18 11:52                                                   ` H. Nikolaus Schaller
2016-01-18 11:19                                                 ` One Thousand Gnomes
     [not found]                                               ` <20160118111926.0882b422@ lxorguk.ukuu.org.uk>
     [not found]                                                 ` <20160118111926.0882b422-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org>
2016-01-18 20:58                                                   ` H. Nikolaus Schaller
     [not found]                                                     ` <07F3B6C0-0C87-478C-B6DD-5C0EECB42D0D-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2016-01-18 22:03                                                       ` One Thousand Gnomes
     [not found]                                                         ` <20160118220319.051c9cc0-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org>
2016-01-18 22:32                                                           ` H. Nikolaus Schaller
     [not found]                                                             ` <C1E6AFE7-1EF2-4C70-8BE2-82F5CD7DDE22-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2016-01-19 14:25                                                               ` One Thousand Gnomes
     [not found]                                                                 ` <20160119142542.5bf64395-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org>
2016-01-20 17:33                                                                   ` H. Nikolaus Schaller
2016-01-20 16:11                                                               ` H. Nikolaus Schaller
     [not found]                                                                 ` <9E37C552-361C-4A54-980E-E3BFFF834302-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2016-01-20 17:46                                                                   ` One Thousand Gnomes
     [not found]                                                                     ` <20160120174610.1c64239a-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org>
2016-01-20 18:03                                                                       ` H. Nikolaus Schaller
2016-01-21 10:01                                                                         ` Radek Polak
     [not found]                                                                         ` <39B850CE-E381-4D3B-BD0A-84AFE7DAEEDF-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2016-01-22 15:45                                                                           ` Tomeu Vizoso
2016-01-22 16:49                                                                             ` Rob Herring
     [not found]                                                                             ` <CAAObsKB4oFeM9Cjet5z+vz0S1M8RZ3jFt03b38KXq+sh6f5EwA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-01-22 20:12                                                                               ` One Thousand Gnomes
     [not found]                                                                                 ` <20160122201229.5df0bb2d-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org>
2016-01-23  7:40                                                                                   ` Andreas Kemnade
2016-01-23 12:19                                                                                   ` H. Nikolaus Schaller
     [not found]                                                                                     ` <DF404071-9FD0-4B33-B1B5-EC14192655E7-xXXSsgcRVICgSpxsJD1C4w@public.gmane.org>
2016-01-23 17:28                                                                                       ` One Thousand Gnomes
2016-01-23 22:04                                                                                         ` H. Nikolaus Schaller
2016-01-24 17:10                                                                                           ` One Thousand Gnomes
2016-01-25 10:36                                                                                             ` H. Nikolaus Schaller
2016-01-19  6:32                                                         ` Andreas Kemnade
     [not found]                               ` <744620565.20160116103445-M4DtvfQ/ZS1MRgGoP+s0PdBPR1lH4CV8@public.gmane.org>
2016-01-20 19:38                                 ` Dmitry Torokhov
     [not found]                                   ` <CAKdAkRQh7xSgOXERhA8EjXEfX5m-PTTjiv757X7FYxK=bhfpww-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-01-20 20:09                                     ` Vostrikov Andrey
2016-01-15 16:12               ` Mark Rutland [this message]
2016-01-15 19:16                 ` H. Nikolaus Schaller
2016-01-15 19:40           ` Pavel Machek
2016-01-15 20:35             ` H. Nikolaus Schaller
     [not found]     ` <CAAObsKD7-02HVUosXVwqcH6HyGEGYJ9jdNepuNhLiiL+ujO5iw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-01-12 21:28       ` NeilBrown
     [not found]         ` <87lh7u8p3b.fsf-wvvUuzkyo1HefUI2i7LXDhCRmIWqnp/j@public.gmane.org>
2016-01-13 19:00           ` Pavel Machek

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=20160115161229.GN3262@leverpostej \
    --to=mark.rutland@arm.com \
    --cc=arnd@arndb.de \
    --cc=devicetree@vger.kernel.org \
    --cc=gnomes@lxorguk.ukuu.org.uk \
    --cc=grant.likely@linaro.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=gta04-owner@goldelico.com \
    --cc=hns@goldelico.com \
    --cc=jslaby@suse.cz \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-serial@vger.kernel.org \
    --cc=marek@goldelico.com \
    --cc=neil@brown.name \
    --cc=pavel@ucw.cz \
    --cc=peter@hurleysoftware.com \
    --cc=robherring2@gmail.com \
    --cc=sre@kernel.org \
    --cc=tomeu@tomeuvizoso.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).