Merge remote-tracking branch 'pinctrl/for-next'
[deliverable/linux.git] / Documentation / devicetree / bindings / pinctrl / pinctrl-st.txt
CommitLineData
701016c0
SK
1*ST pin controller.
2
3Each multi-function pin is controlled, driven and routed through the
4PIO multiplexing block. Each pin supports GPIO functionality (ALT0)
5and multiple alternate functions(ALT1 - ALTx) that directly connect
6the pin to different hardware blocks.
7
8When a pin is in GPIO mode, Output Enable (OE), Open Drain(OD), and
9Pull Up (PU) are driven by the related PIO block.
10
11ST pinctrl driver controls PIO multiplexing block and also interacts with
12gpio driver to configure a pin.
13
727b0f71
SK
14GPIO bank can have one of the two possible types of interrupt-wirings.
15
16First type is via irqmux, single interrupt is used by multiple gpio banks. This
17reduces number of overall interrupts numbers required. All these banks belong to
18a single pincontroller.
19 _________
20 | |----> [gpio-bank (n) ]
21 | |----> [gpio-bank (n + 1)]
22 [irqN]-- | irq-mux |----> [gpio-bank (n + 2)]
23 | |----> [gpio-bank (... )]
24 |_________|----> [gpio-bank (n + 7)]
25
26Second type has a dedicated interrupt per gpio bank.
27
28 [irqN]----> [gpio-bank (n)]
29
30
31Pin controller node:
32Required properties:
701016c0
SK
33- compatible : should be "st,<SOC>-<pio-block>-pinctrl"
34 like st,stih415-sbc-pinctrl, st,stih415-front-pinctrl and so on.
727b0f71 35- st,syscfg : Should be a phandle of the syscfg node.
701016c0
SK
36- st,retime-pin-mask : Should be mask to specify which pins can be retimed.
37 If the property is not present, it is assumed that all the pins in the
38 bank are capable of retiming. Retiming is mainly used to improve the
39 IO timing margins of external synchronous interfaces.
727b0f71
SK
40- ranges : defines mapping between pin controller node (parent) to gpio-bank
41 node (children).
42
43Optional properties:
44- interrupts : Interrupt number of the irqmux. If the interrupt is shared
45 with other gpio banks via irqmux.
46 a irqline and gpio banks.
47- reg : irqmux memory resource. If irqmux is present.
48- reg-names : irqmux resource should be named as "irqmux".
49
50GPIO controller/bank node.
51Required properties:
52- gpio-controller : Indicates this device is a GPIO controller
1e234375
PC
53- #gpio-cells : Must be two.
54 - First cell: specifies the pin number inside the controller
55 - Second cell: specifies whether the pin is logically inverted.
56 - 0 = active high
57 - 1 = active low
727b0f71
SK
58- st,bank-name : Should be a name string for this bank as specified in
59 datasheet.
60
61Optional properties:
62- interrupts : Interrupt number for this gpio bank. If there is a dedicated
63 interrupt wired up for this gpio bank.
64
65- interrupt-controller : Indicates this device is a interrupt controller. GPIO
66 bank can be an interrupt controller iff one of the interrupt type either via
67irqmux or a dedicated interrupt per bank is specified.
68
69- #interrupt-cells: the value of this property should be 2.
70 - First Cell: represents the external gpio interrupt number local to the
71 gpio interrupt space of the controller.
72 - Second Cell: flags to identify the type of the interrupt
73 - 1 = rising edge triggered
74 - 2 = falling edge triggered
75 - 3 = rising and falling edge triggered
76 - 4 = high level triggered
77 - 8 = low level triggered
78for related macros look in:
79include/dt-bindings/interrupt-controller/irq.h
701016c0
SK
80
81Example:
82 pin-controller-sbc {
83 #address-cells = <1>;
84 #size-cells = <1>;
85 compatible = "st,stih415-sbc-pinctrl";
86 st,syscfg = <&syscfg_sbc>;
727b0f71
SK
87 reg = <0xfe61f080 0x4>;
88 reg-names = "irqmux";
89 interrupts = <GIC_SPI 180 IRQ_TYPE_LEVEL_HIGH>;
ae107d06 90 interrupt-names = "irqmux";
701016c0 91 ranges = <0 0xfe610000 0x5000>;
727b0f71 92
701016c0
SK
93 PIO0: gpio@fe610000 {
94 gpio-controller;
1e234375 95 #gpio-cells = <2>;
727b0f71
SK
96 interrupt-controller;
97 #interrupt-cells = <2>;
701016c0
SK
98 reg = <0 0x100>;
99 st,bank-name = "PIO0";
100 };
101 ...
102 pin-functions nodes follow...
103 };
104
105
106Contents of function subnode node:
107----------------------
108Required properties for pin configuration node:
109- st,pins : Child node with list of pins with configuration.
110
111Below is the format of how each pin conf should look like.
112
113<bank offset mux mode rt_type rt_delay rt_clk>
114
115Every PIO is represented with 4-7 parameters depending on retime configuration.
116Each parameter is explained as below.
117
118-bank : Should be bank phandle to which this PIO belongs.
119-offset : Offset in the PIO bank.
120-mux : Should be alternate function number associated this pin.
121 Use same numbers from datasheet.
122-mode :pin configuration is selected from one of the below values.
123 IN
124 IN_PU
125 OUT
126 BIDIR
127 BIDIR_PU
128
129-rt_type Retiming Configuration for the pin.
130 Possible retime configuration are:
131
132 ------- -------------
133 value args
134 ------- -------------
135 NICLK <delay> <clk>
136 ICLK_IO <delay> <clk>
137 BYPASS <delay>
138 DE_IO <delay> <clk>
139 SE_ICLK_IO <delay> <clk>
140 SE_NICLK_IO <delay> <clk>
141
142- delay is retime delay in pico seconds as mentioned in data sheet.
143
144- rt_clk :clk to be use for retime.
145 Possible values are:
146 CLK_A
147 CLK_B
148 CLK_C
149 CLK_D
150
151Example of mmcclk pin which is a bi-direction pull pu with retime config
152as non inverted clock retimed with CLK_B and delay of 0 pico seconds:
153
154pin-controller {
155 ...
156 mmc0 {
157 pinctrl_mmc: mmc {
158 st,pins {
159 mmcclk = <&PIO13 4 ALT4 BIDIR_PU NICLK 0 CLK_B>;
160 ...
161 };
162 };
163 ...
164 };
165};
166
167sdhci0:sdhci@fe810000{
168 ...
727b0f71
SK
169 interrupt-parent = <&PIO3>;
170 #interrupt-cells = <2>;
171 interrupts = <3 IRQ_TYPE_LEVEL_HIGH>; /* Interrupt line via PIO3-3 */
ae107d06 172 interrupt-names = "card-detect";
701016c0
SK
173 pinctrl-names = "default";
174 pinctrl-0 = <&pinctrl_mmc>;
175};
This page took 0.169186 seconds and 5 git commands to generate.