lkml.org 
[lkml]   [2012]   [Mar]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] dt: pinctrl: Document device tree binding
On 03/12/2012 08:34 AM, Dong Aisheng wrote:
> On Sat, Mar 10, 2012 at 02:14:33AM +0800, Stephen Warren wrote:
>> The core pin controller bindings define:
>> * The fact that pin controllers expose pin configurations as nodes in
>> device tree.
>> * That the bindings for those pin configuration nodes is defined by the
>> individual pin controller drivers.
>> * A standardized set of properties for client devices to define numbered
>> or named pin configuration states, each referring to some number of the
>> afore-mentioned pin configuration nodes.
>> * That the bindings for the client devices determines the set of numbered
>> or named states that must exist.

>> diff --git a/Documentation/devicetree/bindings/pinctrl/pinctrl-bindings.txt b/Documentation/devicetree/bindings/pinctrl/pinctrl-bindings.txt

>> +Required properties:
>> +pinctrl-0: List of phandles, each pointing at a pin configuration
>> + node. These referenced pin configuration nodes must be child
>> + nodes of the pin controller that they configure. Multiple
>> + entries may exist in this list so that multiple pin
>> + controllers may be configured, or so that a state may be built
>> + from multiple nodes for a single pin controller, each
>> + contributing part of the overall configuration. See the next
>> + section of this document for details of the format of these
>> + pin configuration nodes.
>> +
>> + In some cases, it may be useful to define a state, but for it
>> + to be empty. This may be required when a common IP block is
>> + used in an SoC either without a pin controller, or where the
>> + pin controller does not affect the HW module in question. If
>> + the binding for that IP block requires certain pin states to
>> + exist, they must still be defined, but may be left empty.
>> +
>
> It looks this functions similar as the PIN_MAP_DUMMY_STATE you introduced
> before to address the issues that the shared IP block may need or not need
> pinctrl configuration on different platforms(correct me if wrong).

Yes, it's to generate the dummy states.

> Then, there may be cases like below which may look a bit confusing
> to people.
> device {
> pinctrl-names = "active", "idle";
> pinctrl-0;
> pinctrl-1;
> };

I'd personally expect the syntax to look like:

device {
pinctrl-names = "active", "idle";
pinctrl-0 = <>;
pinctrl-1 = <>;
};

which has an explicitly empty value. Admittedly, these would both
compile down to the exact same thing in the DTB, but I think the
interpretation of the above is pretty readable.

> I'm wondering if we can let each individual driver to handle this special case?
> Like checking device id then make decision whether call pinctrl_* APIs.
> Then we can just do not define those properties for devices who
> do not need pin configurations.

The individual client drivers certainly could work that way.

However, the disadvantage is that the client driver then needs explicit
code to deal with this case, and this needs to be triggered by using a
different compatible flag (or perhaps some other explicit property).
You'd have to write this code over and over for each individual driver.

That also means that if you were the first user of an IP block in a
system which didn't need pin muxing for it, you'd have to modify the
kernel to support pinctrl being optional before you could use that device.

If the pinctrl subsystem itself hides this from the client driver, then
you'd never need to add any code to any driver to support this case, and
all you'd need to do is write a few lines of device tree to use the
driver; no code changes.


\
 
 \ /
  Last update: 2012-03-12 18:19    [W:0.138 / U:0.116 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site