]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/pinctrl/allwinner,sunxi-pinctrl.txt
arm: imx6: defconfig: update tx6 defconfigs
[karo-tx-linux.git] / Documentation / devicetree / bindings / pinctrl / allwinner,sunxi-pinctrl.txt
1 * Allwinner A1X Pin Controller
2
3 The pins controlled by sunXi pin controller are organized in banks,
4 each bank has 32 pins.  Each pin has 7 multiplexing functions, with
5 the first two functions being GPIO in and out. The configuration on
6 the pins includes drive strength and pull-up.
7
8 Required properties:
9 - compatible: "allwinner,<soc>-pinctrl". Supported SoCs for now are:
10   sun5i-a13.
11 - reg: Should contain the register physical address and length for the
12   pin controller.
13
14 Please refer to pinctrl-bindings.txt in this directory for details of the
15 common pinctrl bindings used by client devices.
16
17 A pinctrl node should contain at least one subnodes representing the
18 pinctrl groups available on the machine. Each subnode will list the
19 pins it needs, and how they should be configured, with regard to muxer
20 configuration, drive strength and pullups. If one of these options is
21 not set, its actual value will be unspecified.
22
23 Required subnode-properties:
24
25 - allwinner,pins: List of strings containing the pin name.
26 - allwinner,function: Function to mux the pins listed above to.
27
28 Optional subnode-properties:
29 - allwinner,drive: Integer. Represents the current sent to the pin
30     0: 10 mA
31     1: 20 mA
32     2: 30 mA
33     3: 40 mA
34 - allwinner,pull: Integer.
35     0: No resistor
36     1: Pull-up resistor
37     2: Pull-down resistor
38
39 Examples:
40
41 pinctrl@01c20800 {
42         compatible = "allwinner,sun5i-a13-pinctrl";
43         reg = <0x01c20800 0x400>;
44         #address-cells = <1>;
45         #size-cells = <0>;
46
47         uart1_pins_a: uart1@0 {
48                 allwinner,pins = "PE10", "PE11";
49                 allwinner,function = "uart1";
50                 allwinner,drive = <0>;
51                 allwinner,pull = <0>;
52         };
53
54         uart1_pins_b: uart1@1 {
55                 allwinner,pins = "PG3", "PG4";
56                 allwinner,function = "uart1";
57                 allwinner,drive = <0>;
58                 allwinner,pull = <0>;
59         };
60 };