Re: [Gta04-owner] [PATCH 3/3] tty/slaves: add a driver to power on/off UART attached devices.

From: Sebastian Reichel
Date: Tue Mar 24 2015 - 21:46:18 EST


Hi,

On Tue, Mar 24, 2015 at 06:58:15PM +0100, Dr. H. Nikolaus Schaller wrote:
> So you propose that the parent->child relationship is âcontrolâ? I.e. some
> channel which allows to address some bus client (through <reg>) and
> control that devices.
>
> Makes sense. This is how i2c and spi clients are specified.
>
> >
> > In the case of our GPS, it receives control over the serial connection from
> > the UART,
>
> Ahem - does it?
>
> AFAIK the chip simply starts to emit NMEA records if powered on.
> There is no command going over the serial interface to address it
> or control it.

Right, since GPS basically doesn't need any configuration/control.
That's not true for other UART attached devices, though.

> > also receives control via a GPIO to the on/off pin, and also needs
> > a regulator to power the antenna.
> >
> > So should the parent be the uart, the on/off GPIO, or the regulator?
> >
> > I would much rather there wasn't a parent, and that each of these were listed
> > as ad-hoc attribute assignments. But device-tree says there must be a parent
> > (where possible), and the parent is the thing that is âprimarily" in control.
>
> Well, IMHO the âparentâ could also be the root. Representing the
> whole board.
>
> Nevertheless, I doubt your rule that âability to controlâ defines
> the parent>child relation (see below).
>
> >
> > I think the GPS is âprimarily" a uart-attached device.
>
> But not in the same way as an I2C device.
>
> Especially the serial interface is not a bus and not used for
> signalling and power control. It is payload data (only).

Actually many I2C devices are also powered on/off via a GPIO and
even use additional GPIOs for sending interrupts. Nevertheless they
are normally identified as an I2C device.

Also for non-GPS device the serial connection is used for
controlling and configuring the device.

> > So I propose a device-node which describes the GPS, which is a child of the
> > UART, and explicitly identifies the GPIO it uses to power on/off, the
> > regulator it uses to power the antenna, and how it receives "on or off"
> > status indications from the GPS.
>
> The more I think about that, you have given good arguments *not*
> to use the parent->child relationship for the UART interface of
> the GPS.
>
> Let me give another example. The 3G Modem has 3 (or 4) interfaces:
> 1. an USB-Interface for AT signalling and payload
> 2. some GPIOs for power control.
> 3. a PCM interface for digital voice.
> 4. it might also have a serial interface as alternate AT command and (GPRS
> low speed) payload.
>
> So which one is the most prominent or most important to make it a child of?
>
> If you use âcontrolâ you must make it a child of the USB phy and the serial interface
> which requires multiple inheritanceâ
>
> So I am not sure at all. None is IMHO prominent and unique enough to make it
> a parent>child relation.
>
> Threrefore, I would be happy to see it as multiple children of /. For example a
> MFD with subnodes.

This scenario has already been seen before and can happen for
non-UART based devices (e.g. SPI + I2C). So far the decision was to
postpone the discussion about this kind of devices until one of them
appears.

> > It is arguable that the "antenna" should be treated as a separate device - a
> > child of the GPS - which controls the regulator and also provides a 'extcon'
> > which reports whether an external GPS antenna is attached, or whether the
> > internal on is in use. I haven't made the time to properly explore that
> > issue yet.
>
> If you assume that parent>child relationship is about control (only). But if it
> is about data flow, there is a different concept in DT. For example the CSI/DSI
> (OMAP DSS) use the âportâ concept.

Yes, this is about data not going to the cpu / system memory.

> This means that indeed parent>child is used for control, e.g. I2C
> or SPI to tell the panel controller to switch on.

well parent > child is not about power control, but about "primary"
control. Some I2C/SPI devices have additional gpios for power
control.

> For example we have the GTA04 panel as a subnode of SPI (because SPI is a
> bus and the panel is controlled through SPI). Other panels need no control
> interface and are simply a child of /.

Yes, some devices do not have an interface worth of being called
"primary control" :)

> The video stream and its connections are arranged through such ports.
> For the video out management we have added our OPA362 video amplifier into
> that video pipeline which starts at the VENC (Video encode) in the SoC,
> goes through the OPA362 and ends in the connector (which has its own
> node). All this is connected by references. The opa362 node itself is a child
> of /:
>
> https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/arch/arm/boot/dts/omap3-gta04.dtsi?id=refs/tags/v4.0-rc5#n98
>
> So to summarize I now see exactly two cases where parent>child is used:
> a) for components of an aggregate device (OMAP3 > I2C controllers)
> b) for components connected to a bus controller (I2C > TWL4030)
>
> Since the twl regulators are components of the twl chip it completely explains
> why we see
>
> omap3 > i2c > twl4030 > vaux4
>
> Everything else is done by references. Therefore we see references for
> * gpios within a controller (independently of itâs relation on a bus)
> * regulators
> * clocks
> * any function that is not connected by a bus
>
> There is no need (and practice) to squeeze everything into a parent > child
> relationship. And I canât see your âcontrolâ or a âmain interfaceâ rule.

And I can't see your bus rule for me the motiviation behind the
parent > child relationship is about the system's primary way for
accessing a device.

It's coincidence, that this is currently (always?) a bus connection,
since most devices are actually connected using some kind of bus.

> At least this is my (a little limited) view from using and programming DT for
> multiple boards.
>
> Maybe this is what the DT list should comment or show a clear definition when
> parent>child relations are wanted and when not.
>
> Now back to the GPS chip connected to an UART.
>
> Is it
> a) a component of an aggregate device? no
> b) is it connected to a bus (i2c, spi, address bus)? no

> This comes back to the question if UART is a bus.
>
> I still think that it is NOT a bus and therefore it should not be modeled in DT
> like busses are (enforcing clients to become subnodes).

If I use a SPI device with hardwired chip select its *very* similar
to UART.

> The reason is there no well defined protocol to make multiple clients and
> you canât specify a <reg>.
>
> So you are either abusing the notion of a bus or the gps chip must be a separate
> DT node (child of something else).
>
> I hope my gut feeling that we are trying to do something fundamentally wrong
> with making the gps chip a subode of serial is now argued a little better.
>
> For making the serial device control some regulator through a reference to
> a regulator, I am very fine. It is what you do for the W2CBW bluetooth part.

NAK about referencing the regulator from the UART node. It should be
referenced from the Bluetooth / GPS node. The UART port works
without the regulator. It's the remote side, that does not work.
We also do not add the regulators of I2C clients to the I2C host.

If you want to talk with an I2C device you enable the I2C device
*and* its parent (aka the I2C host controller). I guess the same
should be done for the UART.

> >>>> All the following is very special logic for the w2sg0004 chip which should be
> >>>> divided out into a separate driver.
> >>>>
> >>>> Marek and me already had proposed such a chip specific driver (to be located
> >>>> in drivers/misc) some months ago. It would encapsulate everything w2sg0004
> >>>> specific and present itself as a regulator (because that is its main purpose:
> >>>> control the LDO regulator inside the w2sg0004 chip).
> >>>
> >>> Presenting itself as a regulator would be wrong because it isnât a regulator.
> >>
> >> It has a regulator that can be controlled by a gpioâ
> >
> > Does it? I guess may it does.
> > Maybe it also has an ARM core and some memory and assorted other bits and
> > pieces. But we donât really need to describe them to device tree.
>
> Well, if I look into the data sheet, it has indeed an LDO from 3.3V to 1.8V.
>
> Not to make you confused: the w2sg0084 would have a WAKEUP output which - if
> connected to a GPIO - would tell if the module is really active or not. Using this would
> make monitoring the RX line through different pinmux states obsolete.
>
> But the only Linux board using the w2sg00x4 appears to be the GTA04 and it has
> not wired the WAKEUP line to a GPIO.
>
> > The w2sg0004 is primarily a GPS device, so that needs to be stated in the
> > devices tree description. If there are subcomponents that can usefully be
> > described as well then there could be a place to describe those subcomponents.
> > I notice that there is a "1V8-out" pin, so presumable the chip can deliver a
> > 1V8 source based on its 3V3 input. If a board made use of that, it could be
> > useful to describe the regulator inside the GPS so it could be declare that
> > some other device which needed 1V8 made use of that regulatorâ.
>
> Yes. Well, even if *we* do not use it in this way yet, we should not make it
> difficult for others to do by enforcing the wrong description.

well this has nothing to do with the parent-child discussion, since
you can obviously reference a regulator independently of its
position in the DT.

> >> Another example to think about: the twl4030 is also not a regulator.
> >> Nevertheless they present some regulator nodes.
> >
> > The TWL4030 is a multifunction device which contains regulators and GPIOs and
> > audio codec and USB PHY etc etc etc.
> >
> > So in device-tree there is a device-node for the TWL4030, and it has
> > child-nodes for each sub-device. They in turn can provide services to other
> > devices on the board.
>
> Exactly as discussed above. And there, the parent>child relation for the twl4030
> and its subdevices is right.
>
> > These sub-devices are much more independent of the whole than the regulator
> > inside the w2sg0004 is.
>
> Hm. That is probably argueable as well. At least a vague ciriterion.
> >
> >>
> >> Or take the OMAP3 pbias_regulator. The OMAP3 isnât a regulator as well
> >> but has an internal pbias_regulator that needs to be controlled.
> >
> > I don't know much about a "pbias_regulator", but the OMAP3 is a multifunction
> > device which contains a CPU and multiple other controllers and communicators
> > and stuff. One of the components in the OMAP3 is this pbias_regulator, and
> > it has a device-node which is a child of the 'ocp' node - which is the main
> > interconnect in the OMAP3 I think.
> >
> > So I'm not against describing the regulator in the w2sg0004, but for
> > consistency with everything else, it would need to be child-node of a
> > device-node which describes the w2sg0004 as a whole. I'm not sure that doing
> > that would gain anything.
>
> Well, it would gain consistency how chips with multiple components inside
> are described.

I don't think so. Many devices do not expose all of their
subdevices. e.g. they do not expose their internal clocks.
Apart from that there are a few devices in the kernel, which
do use enable-gpio(s).

> And would make it easier to see the whole w2sg0004 a child of /.

Even with the regulator subdevice I would still make the w2sg0004 a
child of the UART port. Main reason is, that I would need to go
through the UART to "communicate" with the w2sg0004.

> But then we need some reference from your tty/serial driver to
> that w2sg node.

-- Sebastian

Attachment: signature.asc
Description: Digital signature