IB/srp: Let srp_abort() return FAST_IO_FAIL if TL offline
[linux/fpc-iii.git] / Documentation / devicetree / bindings / pinctrl / allwinner,sunxi-pinctrl.txt
blobdff0e5f995e2c10b6e383c8ac14c43cf92cc5f05
1 * Allwinner A1X Pin Controller
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.
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.
14 Please refer to pinctrl-bindings.txt in this directory for details of the
15 common pinctrl bindings used by client devices.
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.
23 Required subnode-properties:
25 - allwinner,pins: List of strings containing the pin name.
26 - allwinner,function: Function to mux the pins listed above to.
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
39 Examples:
41 pinctrl@01c20800 {
42         compatible = "allwinner,sun5i-a13-pinctrl";
43         reg = <0x01c20800 0x400>;
44         #address-cells = <1>;
45         #size-cells = <0>;
47         uart1_pins_a: uart1@0 {
48                 allwinner,pins = "PE10", "PE11";
49                 allwinner,function = "uart1";
50                 allwinner,drive = <0>;
51                 allwinner,pull = <0>;
52         };
54         uart1_pins_b: uart1@1 {
55                 allwinner,pins = "PG3", "PG4";
56                 allwinner,function = "uart1";
57                 allwinner,drive = <0>;
58                 allwinner,pull = <0>;
59         };