mirror of https://gitee.com/openkylin/linux.git
pinctrl: aspeed: Document pinconf in devicetree bindings
Signed-off-by: Andrew Jeffery <andrew@aj.id.au> Acked-by: Rob Herring <robh@kernel.org> Acked-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
94bfc9be6d
commit
6de2185bc7
|
@ -34,13 +34,28 @@ Documentation/devicetree/bindings/mfd/syscon.txt
|
||||||
Subnode Format
|
Subnode Format
|
||||||
==============
|
==============
|
||||||
|
|
||||||
The required properties of child nodes are (as defined in pinctrl-bindings):
|
The required properties of pinmux child nodes are:
|
||||||
- function
|
- function: the mux function to select
|
||||||
- groups
|
- groups : the list of groups to select with this function
|
||||||
|
|
||||||
Each function has only one associated pin group. Each group is named by its
|
Required properties of pinconf child nodes are:
|
||||||
function. The following values for the function and groups properties are
|
- groups: A list of groups to select (either this or "pins" must be
|
||||||
supported:
|
specified)
|
||||||
|
- pins : A list of ball names as strings, eg "D14" (either this or "groups"
|
||||||
|
must be specified)
|
||||||
|
|
||||||
|
Optional properties of pinconf child nodes are:
|
||||||
|
- bias-disable : disable any pin bias
|
||||||
|
- bias-pull-down: pull down the pin
|
||||||
|
- drive-strength: sink or source at most X mA
|
||||||
|
|
||||||
|
Definitions are as specified in
|
||||||
|
Documentation/devicetree/bindings/pinctrl/pinctrl-bindings.txt, with any
|
||||||
|
further limitations as described above.
|
||||||
|
|
||||||
|
For pinmux, each mux function has only one associated pin group. Each group is
|
||||||
|
named by its function. The following values for the function and groups
|
||||||
|
properties are supported:
|
||||||
|
|
||||||
aspeed,ast2400-pinctrl, aspeed,g4-pinctrl:
|
aspeed,ast2400-pinctrl, aspeed,g4-pinctrl:
|
||||||
|
|
||||||
|
@ -90,6 +105,11 @@ syscon: scu@1e6e2000 {
|
||||||
function = "I2C3";
|
function = "I2C3";
|
||||||
groups = "I2C3";
|
groups = "I2C3";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pinctrl_gpioh0_unbiased_default: gpioh0 {
|
||||||
|
pins = "A8";
|
||||||
|
bias-disable;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -110,6 +130,11 @@ ahb {
|
||||||
function = "I2C3";
|
function = "I2C3";
|
||||||
groups = "I2C3";
|
groups = "I2C3";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pinctrl_gpioh0_unbiased_default: gpioh0 {
|
||||||
|
pins = "A18";
|
||||||
|
bias-disable;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -143,6 +168,3 @@ ahb {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
Please refer to pinctrl-bindings.txt in this directory for details of the
|
|
||||||
common pinctrl bindings used by client devices.
|
|
||||||
|
|
Loading…
Reference in New Issue