1 * STM32 GPIO and Pin Mux/Config controller
3 STMicroelectronics's STM32 MCUs intregrate a GPIO and Pin mux/config hardware
4 controller. It controls the input/output settings on the available pins and
5 also provides ability to multiplex and configure the output of various on-chip
6 controllers onto these pads.
10 - compatible: value should be one of the following:
11 "st,stm32f429-pinctrl"
12 "st,stm32f469-pinctrl"
13 "st,stm32f746-pinctrl"
14 "st,stm32f769-pinctrl"
15 "st,stm32h743-pinctrl"
16 "st,stm32mp157-pinctrl"
17 "st,stm32mp157-z-pinctrl"
18 - #address-cells: The value of this property must be 1
19 - #size-cells : The value of this property must be 1
20 - ranges : defines mapping between pin controller node (parent) to
21 gpio-bank node (children).
22 - pins-are-numbered: Specify the subnodes are using numbered pinmux to
25 GPIO controller/bank node:
27 - gpio-controller : Indicates this device is a GPIO controller
28 - #gpio-cells : Should be two.
29 The first cell is the pin number
30 The second one is the polarity:
33 - reg : The gpio address range, relative to the pinctrl range
34 - clocks : clock that drives this bank
35 - st,bank-name : Should be a name string for this bank as specified in
39 - reset: : Reference to the reset controller
40 - st,syscfg: Should be phandle/offset/mask.
41 -The phandle to the syscon node which includes IRQ mux selection register.
42 -The offset of the IRQ mux selection register
43 -The field mask of IRQ mux, needed if different of 0xf.
44 - gpio-ranges: Define a dedicated mapping between a pin-controller and
45 a gpio controller. Format is <&phandle a b c> with:
46 -(phandle): phandle of pin-controller.
47 -(a): gpio base offset in range.
48 -(b): pin base offset in range.
49 -(c): gpio count in range
50 This entry has to be used either if there are holes inside a bank:
51 GPIOB0/B1/B2/B14/B15 (see example 2)
52 or if banks are not contiguous:
54 NOTE: If "gpio-ranges" is used for a gpio controller, all gpio-controller
55 have to use a "gpio-ranges" entry.
56 More details in Documentation/devicetree/bindings/gpio/gpio.txt.
57 - st,bank-ioport: should correspond to the EXTI IOport selection (EXTI line
58 used to select GPIOs as interrupts).
61 #include <dt-bindings/pinctrl/stm32f429-pinfunc.h>
67 compatible = "st,stm32f429-pinctrl";
68 ranges = <0 0x40020000 0x3000>;
71 gpioa: gpio@40020000 {
75 resets = <&reset_ahb1 0>;
76 st,bank-name = "GPIOA";
79 pin-functions nodes follow...
83 #include <dt-bindings/pinctrl/stm32f429-pinfunc.h>
86 pinctrl: pin-controller {
89 compatible = "st,stm32f429-pinctrl";
90 ranges = <0 0x40020000 0x3000>;
93 gpioa: gpio@40020000 {
97 resets = <&reset_ahb1 0>;
98 st,bank-name = "GPIOA";
99 gpio-ranges = <&pinctrl 0 0 16>;
102 gpiob: gpio@40020400 {
106 resets = <&reset_ahb1 0>;
107 st,bank-name = "GPIOB";
109 gpio-ranges = <&pinctrl 0 16 3>,
115 pin-functions nodes follow...
119 Contents of function subnode node:
120 ----------------------------------
122 A pinctrl node should contain at least one subnode representing the
123 pinctrl group available on the machine. Each subnode will list the
124 pins it needs, and how they should be configured, with regard to muxer
125 configuration, pullups, drive, output high/low and output speed.
128 pinmux = <PIN_NUMBER_PINMUX>;
133 - pinmux: integer array, represents gpio pin number and mux setting.
134 Supported pin number and mux varies for different SoCs, and are defined in
135 dt-bindings/pinctrl/<soc>-pinfunc.h directly.
136 These defines are calculated as:
137 ((port * 16 + line) << 8) | function
139 - port: The gpio port index (PA = 0, PB = 1, ..., PK = 11)
140 - line: The line offset within the port (PA0 = 0, PA1 = 1, ..., PA15 = 15)
141 - function: The function number, can be:
143 * 1 : Alternate Function 0
144 * 2 : Alternate Function 1
145 * 3 : Alternate Function 2
147 * 16 : Alternate Function 15
150 To simplify the usage, macro is available to generate "pinmux" field.
151 This macro is available here:
152 - include/dt-bindings/pinctrl/stm32-pinfunc.h
154 Some examples of using macro:
155 /* GPIO A9 set as alernate function 2 */
157 pinmux = <STM32_PINMUX('A', 9, AF2)>;
159 /* GPIO A9 set as GPIO */
161 pinmux = <STM32_PINMUX('A', 9, GPIO)>;
163 /* GPIO A9 set as analog */
165 pinmux = <STM32_PINMUX('A', 9, ANALOG)>;
169 - GENERIC_PINCONFIG: is the generic pinconfig options to use.
170 Available options are:
178 - slew-rate = <x>, with x being:
188 usart1_pins_a: usart1@0 {
190 pinmux = <STM32_PINMUX('A', 9, AF7)>;
196 pinmux = <STM32_PINMUX('A', 10, AF7)>;
203 pinctrl-0 = <&usart1_pins_a>;
204 pinctrl-names = "default";