Merge branch 'i2c/for-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux
[deliverable/linux.git] / Documentation / devicetree / bindings / pinctrl / rockchip,pinctrl.txt
CommitLineData
d3e51161
HS
1* Rockchip Pinmux Controller
2
3The Rockchip Pinmux Controller, enables the IC
4to share one PAD to several functional blocks. The sharing is done by
f3ababa8
DA
5multiplexing the PAD input/output signals. For each PAD there are several
6muxing options with option 0 being the use as a GPIO.
d3e51161
HS
7
8Please refer to pinctrl-bindings.txt in this directory for details of the
9common pinctrl bindings used by client devices, including the meaning of the
10phrase "pin configuration node".
11
12The Rockchip pin configuration node is a node of a group of pins which can be
13used for a specific device or function. This node represents both mux and
14config of the pins in that group. The 'pins' selects the function mode(also
15named pin mode) this pin can work on and the 'config' configures various pad
16settings such as pull-up, etc.
17
18The pins are grouped into up to 5 individual pin banks which need to be
19defined as gpio sub-nodes of the pinmux controller.
20
21Required properties for iomux controller:
22 - compatible: one of "rockchip,rk2928-pinctrl", "rockchip,rk3066a-pinctrl"
23 "rockchip,rk3066b-pinctrl", "rockchip,rk3188-pinctrl"
fea0fe60 24 "rockchip,rk3228-pinctrl", "rockchip,rk3288-pinctrl"
b6c23275 25 "rockchip,rk3368-pinctrl", "rockchip,rk3399-pinctrl"
c51426ef
HS
26 - rockchip,grf: phandle referencing a syscon providing the
27 "general register files"
28
29Optional properties for iomux controller:
30 - rockchip,pmu: phandle referencing a syscon providing the pmu registers
31 as some SoCs carry parts of the iomux controller registers there.
daecdc66
HS
32 Required for at least rk3188 and rk3288. On the rk3368 this should
33 point to the PMUGRF syscon.
c51426ef
HS
34
35Deprecated properties for iomux controller:
6ca5274d 36 - reg: first element is the general register space of the iomux controller
bfc7a42a 37 It should be large enough to contain also separate pull registers.
c51426ef
HS
38 second element is the separate pull register space of the rk3188.
39 Use rockchip,grf and rockchip,pmu described above instead.
d3e51161
HS
40
41Required properties for gpio sub nodes:
fc72c923 42 - compatible: "rockchip,gpio-bank"
d3e51161
HS
43 - reg: register of the gpio bank (different than the iomux registerset)
44 - interrupts: base interrupt of the gpio bank in the interrupt controller
45 - clocks: clock that drives this bank
46 - gpio-controller: identifies the node as a gpio controller and pin bank.
47 - #gpio-cells: number of cells in GPIO specifier. Since the generic GPIO
48 binding is used, the amount of cells must be specified as 2. See generic
49 GPIO binding documentation for description of particular cells.
50 - interrupt-controller: identifies the controller node as interrupt-parent.
51 - #interrupt-cells: the value of this property should be 2 and the interrupt
52 cells should use the standard two-cell scheme described in
53 bindings/interrupt-controller/interrupts.txt
54
c51426ef 55Deprecated properties for gpio sub nodes:
fc72c923 56 - compatible: "rockchip,rk3188-gpio-bank0"
c51426ef
HS
57 - reg: second element: separate pull register for rk3188 bank0, use
58 rockchip,pmu described above instead
59
d3e51161
HS
60Required properties for pin configuration node:
61 - rockchip,pins: 3 integers array, represents a group of pins mux and config
62 setting. The format is rockchip,pins = <PIN_BANK PIN_BANK_IDX MUX &phandle>.
f3ababa8 63 The MUX 0 means gpio and MUX 1 to N mean the specific device function.
d3e51161
HS
64 The phandle of a node containing the generic pinconfig options
65 to use, as described in pinctrl-bindings.txt in this directory.
66
67Examples:
68
69#include <dt-bindings/pinctrl/rockchip.h>
70
71...
72
73pinctrl@20008000 {
74 compatible = "rockchip,rk3066a-pinctrl";
c51426ef
HS
75 rockchip,grf = <&grf>;
76
d3e51161
HS
77 #address-cells = <1>;
78 #size-cells = <1>;
79 ranges;
80
81 gpio0: gpio0@20034000 {
82 compatible = "rockchip,gpio-bank";
83 reg = <0x20034000 0x100>;
84 interrupts = <GIC_SPI 54 IRQ_TYPE_LEVEL_HIGH>;
85 clocks = <&clk_gates8 9>;
86
87 gpio-controller;
88 #gpio-cells = <2>;
89
90 interrupt-controller;
91 #interrupt-cells = <2>;
92 };
93
94 ...
95
96 pcfg_pull_default: pcfg_pull_default {
97 bias-pull-pin-default
98 };
99
100 uart2 {
101 uart2_xfer: uart2-xfer {
102 rockchip,pins = <RK_GPIO1 8 1 &pcfg_pull_default>,
103 <RK_GPIO1 9 1 &pcfg_pull_default>;
104 };
105 };
106};
107
108uart2: serial@20064000 {
109 compatible = "snps,dw-apb-uart";
110 reg = <0x20064000 0x400>;
111 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
112 reg-shift = <2>;
113 reg-io-width = <1>;
114 clocks = <&mux_uart2>;
115 status = "okay";
116
117 pinctrl-names = "default";
118 pinctrl-0 = <&uart2_xfer>;
119};
6ca5274d
HS
120
121Example for rk3188:
122
123 pinctrl@20008000 {
124 compatible = "rockchip,rk3188-pinctrl";
c51426ef
HS
125 rockchip,grf = <&grf>;
126 rockchip,pmu = <&pmu>;
6ca5274d
HS
127 #address-cells = <1>;
128 #size-cells = <1>;
129 ranges;
130
131 gpio0: gpio0@0x2000a000 {
132 compatible = "rockchip,rk3188-gpio-bank0";
c51426ef 133 reg = <0x2000a000 0x100>;
6ca5274d
HS
134 interrupts = <GIC_SPI 54 IRQ_TYPE_LEVEL_HIGH>;
135 clocks = <&clk_gates8 9>;
136
137 gpio-controller;
138 #gpio-cells = <2>;
139
140 interrupt-controller;
141 #interrupt-cells = <2>;
142 };
143
144 gpio1: gpio1@0x2003c000 {
145 compatible = "rockchip,gpio-bank";
146 reg = <0x2003c000 0x100>;
147 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
148 clocks = <&clk_gates8 10>;
149
150 gpio-controller;
151 #gpio-cells = <2>;
152
153 interrupt-controller;
154 #interrupt-cells = <2>;
155 };
156
157 ...
158
159 };
This page took 0.26254 seconds and 5 git commands to generate.