Registered User mNo edit summary |
Registered User mNo edit summary Tag: 2017 source edit |
||
(18 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{ | <noinclude>{{ApplicableFor | ||
|MPUs list=STM32MP13x, STM32MP15x, STM32MP25x | |||
|MPUs checklist=STM32MP13x,STM32MP15x, STM32MP25x | |||
}}</noinclude> | |||
== Article purpose == | == Article purpose == | ||
The purpose of this article is to explain how to configure the | The purpose of this article is to explain how to configure the [[TIM internal peripheral]] using the [[Device tree|device tree]] mechanism, relying on the bindings documentation, that is the description of the required and optional device-tree properties. | ||
When the peripheral is assigned to Linux<sup>®</sup> OS''', it explains: | |||
* | * how to enable PWM, trigger or quadrature encoder. | ||
* how to configure the '''board''', e.g. TIM input/output pins. | |||
It is used by the [[TIM Linux driver]] that registers relevant information in [[PWM overview|PWM]], [[IIO overview|IIO]] and <span style="color: {{STLightBlue}};">counter</span> frameworks. | |||
The peripheral can be assigned to different contexts/software components, depending on the final product needs. Refer to [[How to assign an internal peripheral to an execution context]] for guidelines on this configuration. | |||
== DT bindings documentation == | == DT bindings documentation == | ||
The | The device tree binding documents are stored in the Linux kernel repository: | ||
* Linux<sup>®</sup> OS : {{CodeSource | Linux kernel | Documentation/devicetree/bindings/mfd/st,stm32-timers.yaml | Documentation/devicetree/bindings/mfd/mfd/st,stm32-timers.yaml}} | |||
* | |||
The ''TIM internal peripheral''<ref name="TIM internal peripheral"> [[TIM internal peripheral]]</ref> is a multifunction device (MFD), providing several functions represented by a separate compatible string: | |||
* '' | * ''st,stm32-timers'' deals with core resources. (e.g. registers, clock, DMAs) | ||
* ''st,stm32-pwm'' deals with PWM resources. (e.g. PWM input/output pins) | |||
* ''st,stm32-timer-trigger'' deals with trigger resources (e.g. trigger output connected to other STM32 internal peripherals) | |||
* ''st,stm32-timer-counter'' deals with quadrature encoder resources and external events counter. | |||
== DT configuration == | == DT configuration == | ||
This hardware description is a combination of | This hardware description is a combination of the '''STM32 microprocessor''' device tree files (''.dtsi'' extension) and '''board''' device tree files (''.dts'' extension). See the [[Device tree]] for an explanation of the device-tree file organization. | ||
'''STM32CubeMX''' can be used to generate the board device tree. Refer to [[#How_to_configure_the_DT_using_STM32CubeMX|How to configure the DT using STM32CubeMX]] for more details. | |||
=== DT configuration (STM32 level) === | === DT configuration (STM32 level) === | ||
'''DT root node''' (e.g. timers1...) and '''DT child nodes''' describe the [[TIM internal peripheral|TIM features]] such as: | |||
'''DT root node''' (e.g. timers1...) and '''DT child nodes''' describe the [[TIM internal peripheral | |||
* PWM | * PWM | ||
* trigger and quadrature encoder | * trigger | ||
* counter and quadrature encoder | |||
They also describe hardware parameters such as registers address, clock and DMA. | They also describe hardware parameters such as registers address, clock and DMA. | ||
====On {{MicroprocessorDevice | device=1}}==== | |||
TIM nodes are declared in stm32mp131.dtsi<ref name="stm32mp131_dtsi">{{CodeSource | Linux kernel | arch/arm/boot/dts/stm32mp131.dtsi | STM32MP131 device tree file}}</ref> on {{MicroprocessorDevice | device=13}}. | |||
TIM nodes are declared in stm32mp151.dtsi<ref name="stm32mp151_dtsi">{{CodeSource | Linux kernel | arch/arm/boot/dts/stm32mp151.dtsi | STM32MP151 device tree file}}</ref> on {{MicroprocessorDevice | device=15}}. | |||
timers1: timer@address { | timers1: timer@address { | ||
{{highlight|/* timer common resources */}} | {{highlight|/* timer common resources */}} | ||
Line 46: | Line 51: | ||
}; | }; | ||
timer@'''0''' { | timer@'''0''' { | ||
compatible = "st,stm32h7-timer-trigger"; | compatible = "st,stm32h7-timer-trigger"; | ||
{{highlight|/* trigger identifier (e.g. 0 for TIM1 triggers, 1 for TIM2... */}} | {{highlight|/* trigger identifier (e.g. 0 for TIM1 triggers, 1 for TIM2... */}} | ||
reg = <'''0'''>; | reg = <'''0'''>; | ||
}; | |||
counter { | |||
compatible = "st,stm32-timer-counter"; | |||
}; | |||
}; | |||
{{Warning|This device tree part is related to STM32 microprocessors. It must be kept as is, without being modified by the end-user.}} | |||
====On {{MicroprocessorDevice | device=2}}==== | |||
TIM nodes are declared in stm32mp251.dtsi<ref name="stm32mp251_dtsi">{{CodeSource | Linux kernel | arch/arm64/boot/dts/st/stm32mp251.dtsi | STM32MP251 device tree file}}</ref> on {{MicroprocessorDevice | device=25}}. | |||
timers1: timer@address { | |||
{{highlight|/* timer common resources */}} | |||
compatible = "st,stm32mp25-timers"; | |||
... | |||
pwm { | |||
{{highlight|/* PWM*/}} | |||
compatible = "st,stm32mp25-pwm"; | |||
}; | |||
timer@'''0''' { | |||
compatible = "st,stm32mp25-timer-trigger"; | |||
{{highlight|/* trigger identifier (e.g. 0 for TIM1 triggers, 1 for TIM2... */}} | |||
reg = <'''0'''>; | |||
}; | |||
counter { | |||
compatible = "st,stm32mp25-timer-counter"; | |||
}; | }; | ||
}; | }; | ||
{{Warning|This device tree part is related to STM32 microprocessors. It must be kept as is, without being modified by the end-user.}} | {{Warning|This device tree part is related to STM32 microprocessors. It must be kept as is, without being modified by the end-user.}} | ||
=== DT configuration (board level) === | === DT configuration (board level) === | ||
The objective of this chapter is to explain how to enable and configure the TIM DT nodes for a board: | |||
* | * Enable '''DT root node''' for the TIM instances in use (e.g timers1...) by setting '''{{highlight|<nowiki>status = "okay";</nowiki>}}''' | ||
* | * Enable '''DT child node(s)''' for the feature(s) in use (PWM input/output, trigger and quadrature encoder) by setting '''{{highlight|<nowiki>status = "okay";</nowiki>}}''' | ||
* | * Configure pins in use via [[Pinctrl overview|pinctrl]] through '''{{highlight|pinctrl-0}}''', '''{{highlight|pinctrl-1}}''' and '''{{highlight|pinctrl-names}}'''. | ||
To enable PWM capture on the board (optional), DMA must be configured: | To enable PWM capture on the board (optional), DMA must be configured: | ||
* Enable DMA channel(s) corresponding to the PWM input(s) by setting '''{{highlight|<nowiki>dmas = <...>, <...>;</nowiki>}}''' and matching '''{{highlight|<nowiki>dma-names = "ch1", "ch3";</nowiki>}}'''. | * Enable DMA channel(s) corresponding to the PWM input(s) by setting '''{{highlight|<nowiki>dmas = <...>, <...>;</nowiki>}}''' and matching '''{{highlight|<nowiki>dma-names = "ch1", "ch3";</nowiki>}}'''. | ||
When PWM capture isn't used, it's recommended to disable DMA channels by default, to spare them for other usage: | When PWM capture isn't used, it's recommended to disable DMA channels by default, to spare them for other usage: | ||
* Disable DMA channels by setting '''{{highlight|/delete-property/dmas}}''' and '''{{highlight|/delete-property/dma-names}}''' | * Disable DMA channels by setting '''{{highlight|/delete-property/dmas}}''' and '''{{highlight|/delete-property/dma-names}}''' | ||
Peripheral configuration should be done in specific board device tree files (board dts file and [[Pinctrl device tree configuration|pinctrl dtsi file]]). | |||
=== DT configuration examples === | === DT configuration examples === | ||
==== TIM configured in PWM mode==== | ==== TIM configured in PWM mode==== | ||
The example below shows how to configure '''TIM1 channel 1''' to act as: | The example below shows how to configure '''TIM1 channel 1''' to act as: | ||
* '''PWM output on PE9''', e.g. TIM1_CH1 ([[Pinctrl_device_tree_configuration|See pinctrl device tree configuration]] and [[GPIO internal peripheral]]) | * '''PWM output on PE9''', e.g. TIM1_CH1 ([[Pinctrl_device_tree_configuration|See pinctrl device tree configuration]] and [[GPIO internal peripheral]]) | ||
* PWM device tree provider (e.g. TIM1_CH1) used by a device tree consumer (e.g. like "pwm-leds"<ref name="pwm-leds">{{CodeSource | Linux kernel | Documentation/devicetree/bindings/leds/leds-pwm. | * PWM device tree provider (e.g. TIM1_CH1) used by a device tree consumer (e.g. like "pwm-leds"<ref name="pwm-leds">{{CodeSource | Linux kernel | Documentation/devicetree/bindings/leds/leds-pwm.yaml}}, PWM LEDs device tree bindings</ref>). | ||
{{highlight|/* select TIM1_CH1 alternate function 1 on 'PE9' */}} | {{highlight|/* select TIM1_CH1 alternate function 1 on 'PE9' */}} | ||
Line 164: | Line 196: | ||
}; | }; | ||
==== TIM configured in PWM input capture mode==== | ==== TIM configured in PWM input capture mode ==== | ||
This chapter is only applicable for {{MicroprocessorDevice | device=1}}. | |||
The example below shows how to configure '''TIM1 channel 1''' in PWM input capture mode (e.g. period and duty cycle): | The example below shows how to configure '''TIM1 channel 1''' in PWM input capture mode (e.g. period and duty cycle): | ||
* Configure '''PWM input on PE9''', e.g. TIM1_CH1 ([[Pinctrl_device_tree_configuration|See pinctrl device tree configuration]] and [[GPIO internal peripheral]]) | * Configure '''PWM input on PE9''', e.g. TIM1_CH1 ([[Pinctrl_device_tree_configuration|See pinctrl device tree configuration]] and [[GPIO internal peripheral]]) | ||
Line 200: | Line 234: | ||
}; | }; | ||
}; | }; | ||
{{Info|DMA channels 1 and/or 3 for each TIM can be picked from the '''"dmas"''' list in | {{Info|DMA channels 1 and/or 3 for each TIM can be picked from the '''"dmas"''' list in stm32mp131.dtsi<ref name="stm32mp131_dtsi"/> or stm32mp151.dtsi<ref name="stm32mp151_dtsi"/> files}} | ||
==== TIM configured as quadrature encoder interface ==== | ==== TIM configured as quadrature encoder interface ==== | ||
The example below shows how to configure '''TIM1''' to interface with a quadrature encoder: | The example below shows how to configure '''TIM1''' to interface with a quadrature encoder: | ||
* '''Configure PE9 and | * '''Configure PE9 and PE11 as encoder input pins''', e.g. TIM1_CH1, TIM1_CH2 ([[Pinctrl_device_tree_configuration|see pinctrl device tree configuration]] and [[GPIO internal peripheral]]) | ||
{{Info|On the STM32MP157X-DKX discovery board, TIM1_CH1 and TIM1_CH2 signals are accessible via the D6 and D10 pins of the [[STM32MP157x-DKx_-_hardware_description#Arduino_Uno_connector|Arduino Uno connector]].}} | |||
tim1_in_pins_a: tim1-in-pins-0 { | tim1_in_pins_a: tim1-in-pins-0 { | ||
pins { | pins { | ||
pinmux = <STM32_PINMUX('E', 9, AF1)>, /* TIM1_CH1 */ | pinmux = <STM32_PINMUX('E', 9, AF1)>, /* TIM1_CH1 */ | ||
<STM32_PINMUX(' | <STM32_PINMUX('E', 11, AF1)>; /* TIM1_CH2 */ | ||
bias-disable; | bias-disable; | ||
}; | }; | ||
Line 216: | Line 250: | ||
pins { | pins { | ||
pinmux = <STM32_PINMUX('E', 9, ANALOG)>, /* TIM1_CH1 */ | pinmux = <STM32_PINMUX('E', 9, ANALOG)>, /* TIM1_CH1 */ | ||
<STM32_PINMUX(' | <STM32_PINMUX('E', 11, ANALOG)>; /* TIM1_CH2 */ | ||
}; | }; | ||
}; | }; | ||
Line 224: | Line 258: | ||
/delete-property/dmas; {{highlight|/* spare all DMA channels since they are not required for quadrature encoder interface */}} | /delete-property/dmas; {{highlight|/* spare all DMA channels since they are not required for quadrature encoder interface */}} | ||
/delete-property/dma-names; | /delete-property/dma-names; | ||
counter { | |||
pinctrl-0 = <&tim1_in_pins_a>; {{highlight|/* configure TIM1_CH1 and TIM1_CH2 as encoder input pins */}} | pinctrl-0 = <&tim1_in_pins_a>; {{highlight|/* configure TIM1_CH1 and TIM1_CH2 as encoder input pins */}} | ||
pinctrl-1 = <&tim1_in_pins_sleep_a>; | pinctrl-1 = <&tim1_in_pins_sleep_a>; | ||
Line 233: | Line 267: | ||
==How to configure the DT using STM32CubeMX== | ==How to configure the DT using STM32CubeMX== | ||
The [[STM32CubeMX]] tool can be used to configure the STM32MPU device and get the corresponding [[Device_tree# | The [[STM32CubeMX]] tool can be used to configure the STM32MPU device and get the corresponding [[Device_tree#STM32_MPU|platform configuration device tree]] files.<br /> | ||
STM32CubeMX may not support all the properties described in DT binding files listed in the above [[#DT bindings documentation|DT bindings documentation]] paragraph. If so, the tool inserts '''user sections''' in the generated device tree. These sections can then be edited to add some properties, and they are preserved from one generation to another. Refer to [[STM32CubeMX]] user manual for further information. | |||
==References== | ==References== | ||
Refer to the following links for additional information: | |||
<references /> | <references /> | ||
Line 246: | Line 280: | ||
{{PublicationRequestId | 8783 | 2018-09-20 | AnneJ}} | {{PublicationRequestId | 8783 | 2018-09-20 | AnneJ}} | ||
{{ArticleBasedOnModel|Peripheral_or_framework_device_tree_configuration_model}} | {{ArticleBasedOnModel|Peripheral_or_framework_device_tree_configuration_model}} | ||
</noinclude> | </noinclude> |
Latest revision as of 11:44, 5 June 2024
1. Article purpose
The purpose of this article is to explain how to configure the TIM internal peripheral using the device tree mechanism, relying on the bindings documentation, that is the description of the required and optional device-tree properties.
When the peripheral is assigned to Linux® OS, it explains:
- how to enable PWM, trigger or quadrature encoder.
- how to configure the board, e.g. TIM input/output pins.
It is used by the TIM Linux driver that registers relevant information in PWM, IIO and counter frameworks.
The peripheral can be assigned to different contexts/software components, depending on the final product needs. Refer to How to assign an internal peripheral to an execution context for guidelines on this configuration.
2. DT bindings documentation
The device tree binding documents are stored in the Linux kernel repository:
The TIM internal peripheral[1] is a multifunction device (MFD), providing several functions represented by a separate compatible string:
- st,stm32-timers deals with core resources. (e.g. registers, clock, DMAs)
- st,stm32-pwm deals with PWM resources. (e.g. PWM input/output pins)
- st,stm32-timer-trigger deals with trigger resources (e.g. trigger output connected to other STM32 internal peripherals)
- st,stm32-timer-counter deals with quadrature encoder resources and external events counter.
3. DT configuration
This hardware description is a combination of the STM32 microprocessor device tree files (.dtsi extension) and board device tree files (.dts extension). See the Device tree for an explanation of the device-tree file organization.
STM32CubeMX can be used to generate the board device tree. Refer to How to configure the DT using STM32CubeMX for more details.
3.1. DT configuration (STM32 level)
DT root node (e.g. timers1...) and DT child nodes describe the TIM features such as:
- PWM
- trigger
- counter and quadrature encoder
They also describe hardware parameters such as registers address, clock and DMA.
3.1.1. On STM32MP1 series
TIM nodes are declared in stm32mp131.dtsi[2] on STM32MP13x lines .
TIM nodes are declared in stm32mp151.dtsi[3] on STM32MP15x lines .
/* timer common resources */ compatible = "st,stm32-timers"; ... pwm { /* PWM*/ compatible = "st,stm32-pwm"; }; timer@0 { compatible = "st,stm32h7-timer-trigger"; /* trigger identifier (e.g. 0 for TIM1 triggers, 1 for TIM2... */ reg = <0>; }; counter { compatible = "st,stm32-timer-counter"; }; };timers1: timer@address {
![]() |
This device tree part is related to STM32 microprocessors. It must be kept as is, without being modified by the end-user. |
3.1.2. On STM32MP2 series
TIM nodes are declared in stm32mp251.dtsi[4] on STM32MP25x lines .
/* timer common resources */ compatible = "st,stm32mp25-timers"; ... pwm { /* PWM*/ compatible = "st,stm32mp25-pwm"; }; timer@0 { compatible = "st,stm32mp25-timer-trigger"; /* trigger identifier (e.g. 0 for TIM1 triggers, 1 for TIM2... */ reg = <0>; }; counter { compatible = "st,stm32mp25-timer-counter"; }; };timers1: timer@address {
![]() |
This device tree part is related to STM32 microprocessors. It must be kept as is, without being modified by the end-user. |
3.2. DT configuration (board level)
The objective of this chapter is to explain how to enable and configure the TIM DT nodes for a board:
- Enable DT root node for the TIM instances in use (e.g timers1...) by setting status = "okay";
- Enable DT child node(s) for the feature(s) in use (PWM input/output, trigger and quadrature encoder) by setting status = "okay";
- Configure pins in use via pinctrl through pinctrl-0, pinctrl-1 and pinctrl-names.
To enable PWM capture on the board (optional), DMA must be configured:
- Enable DMA channel(s) corresponding to the PWM input(s) by setting dmas = <...>, <...>; and matching dma-names = "ch1", "ch3";.
When PWM capture isn't used, it's recommended to disable DMA channels by default, to spare them for other usage:
- Disable DMA channels by setting /delete-property/dmas and /delete-property/dma-names
Peripheral configuration should be done in specific board device tree files (board dts file and pinctrl dtsi file).
3.3. DT configuration examples
3.3.1. TIM configured in PWM mode
The example below shows how to configure TIM1 channel 1 to act as:
- PWM output on PE9, e.g. TIM1_CH1 (See pinctrl device tree configuration and GPIO internal peripheral)
- PWM device tree provider (e.g. TIM1_CH1) used by a device tree consumer (e.g. like "pwm-leds"[5]).
/* select TIM1_CH1 alternate function 1 on 'PE9' */ pwm1_pins_a: pwm1-0 { pins { pinmux = <STM32_PINMUX('E', 9, AF1)>; bias-pull-down; drive-push-pull; slew-rate = <0>; }; }; /* configure 'PE9' as analog input in low-power mode */ pwm1_sleep_pins_a: pwm1-sleep-0 { pins { pinmux = <STM32_PINMUX('E', 9, ANALOG)>; }; };
![]() |
The PWM output doesn't require any DMA channel. Disable them if they are configured by default in the .dtsi file. |
/* PWM DT provider on TIM1: "pwm1" */ &timers1 { status = "okay"; /* spare all DMA channels since they are not needed for PWM output */ /delete-property/dmas; /delete-property/dma-names; /* define pwm1 label */ pwm1: pwm { /* configure PWM pins on TIM1_CH1 */ pinctrl-0 = <&pwm1_pins_a>; pinctrl-1 = <&pwm1_sleep_pins_a>; pinctrl-names = "default", "sleep"; /* enable PWM on TIM1 */ status = "okay"; }; };
- PWM DT user example
![]() |
The TIM PWM DT user specifier encodes 3 cells:
|
/* PWM DT user on TIM1_CH1: "pwm1", example with "pwm-leds"[5] */ pwmleds { compatible = "pwm-leds"; example { label = "stm32-pwm-leds-example"; /* Use pwm1 channel 0 (e.g. TIM1_CH1) */ /* period in nanoseconds (500000), normal polarity (0) */ pwms = <&pwm1 0 500000 0>; max-brightness = <127>; }; }; };/ { ...
3.3.2. TIM configured in PWM mode and trigger source
The example below shows how to configure TIM1 channel 1 to act as:
- PWM output on PE9, e.g. TIM1_CH1 (See pinctrl device tree configuration and GPIO internal peripheral)
- trigger source (synchronous with PWM) for other internal peripheral such as STM32 ADC
/* select TIM1_CH1 alternate function 1 on 'PE9' */ pwm1_pins_a: pwm1-0 { pins { pinmux = <STM32_PINMUX('E', 9, AF1)>; bias-pull-down; drive-push-pull; slew-rate = <0>; }; }; /* configure 'PE9' as analog input in low-power mode */ pwm1_sleep_pins_a: pwm1-sleep-0 { pins { pinmux = <STM32_PINMUX('E', 9, ANALOG)>; }; };
![]() |
The PWM output doesn't require any DMA channel. Disable them if they are configured by default in the .dtsi file. |
okay"; /* spare all DMA channels since they are not needed for PWM output */ /delete-property/dmas; /delete-property/dma-names; pwm { /* configure PWM on TIM1_CH1 */ pinctrl-0 = <&pwm1_pins_a>; pinctrl-1 = <&pwm1_sleep_pins_a>; pinctrl-names = "default", "sleep"; /* enable PWM on TIM1 */ status = "okay"; }; timer@0 { /* enable trigger on TIM1 */ status = "okay"; }; };&timers1 { status = "
3.3.3. TIM configured in PWM input capture mode
This chapter is only applicable for STM32MP1 series.
The example below shows how to configure TIM1 channel 1 in PWM input capture mode (e.g. period and duty cycle):
- Configure PWM input on PE9, e.g. TIM1_CH1 (See pinctrl device tree configuration and GPIO internal peripheral)
/* select TIM1_CH1 alternate function 1 on 'PE9' */ pwm1_in_pins_a: pwm1-in-0 { pins { pinmux = <STM32_PINMUX('E', 9, AF1)>; bias-disable; }; }; /* configure 'PE9' as analog input in low-power mode */ pwm1_in_sleep_pins_a: pwm1-in-sleep-0 { pins { pinmux = <STM32_PINMUX('E', 9, ANALOG)>; }; };
A DMA channel is required and must be configured depending on the PWM input channel:
- Select DMA channel 1, "ch1", to capture PWM input channel 1 and/or 2
- Select DMA channel 3, "ch3", to capture PWM input channel 3 and/or 4
- Select both "ch1" and "ch3" dmas to enable capture on all PWM input channels
okay"; /* Enable DMA "ch1" for PWM input on TIM1_CH1 */ dmas = <&dmamux1 11 0x400 0x5>; dma-names = "ch1"; pwm { /* configure PWM input pins, e.g. TIM1_CH1 */ pinctrl-0 = <&pwm1_in_pins_a>; pinctrl-1 = <&pwm1_in_sleep_pins_a>; pinctrl-names = "default", "sleep"; /* enable PWM on TIM1 */ status = "okay"; }; };&timers1 { status = "
![]() |
DMA channels 1 and/or 3 for each TIM can be picked from the "dmas" list in stm32mp131.dtsi[2] or stm32mp151.dtsi[3] files |
3.3.4. TIM configured as quadrature encoder interface
The example below shows how to configure TIM1 to interface with a quadrature encoder:
- Configure PE9 and PE11 as encoder input pins, e.g. TIM1_CH1, TIM1_CH2 (see pinctrl device tree configuration and GPIO internal peripheral)
![]() |
On the STM32MP157X-DKX discovery board, TIM1_CH1 and TIM1_CH2 signals are accessible via the D6 and D10 pins of the Arduino Uno connector. |
tim1_in_pins_a: tim1-in-pins-0 {
pins {
pinmux = <STM32_PINMUX('E', 9, AF1)>, /* TIM1_CH1 */
<STM32_PINMUX('E', 11, AF1)>; /* TIM1_CH2 */
bias-disable;
};
};
tim1_in_pins_sleep_a: tim1-in-pins-sleep-0 {
pins {
pinmux = <STM32_PINMUX('E', 9, ANALOG)>, /* TIM1_CH1 */
<STM32_PINMUX('E', 11, ANALOG)>; /* TIM1_CH2 */
};
};
okay"; /delete-property/dmas; /* spare all DMA channels since they are not required for quadrature encoder interface */ /delete-property/dma-names; counter { pinctrl-0 = <&tim1_in_pins_a>; /* configure TIM1_CH1 and TIM1_CH2 as encoder input pins */ pinctrl-1 = <&tim1_in_pins_sleep_a>; pinctrl-names = "default", "sleep"; status = "okay"; /* enable Encoder interface mode on TIM1 */ }; };&timers1 { status = "
4. How to configure the DT using STM32CubeMX
The STM32CubeMX tool can be used to configure the STM32MPU device and get the corresponding platform configuration device tree files.
STM32CubeMX may not support all the properties described in DT binding files listed in the above DT bindings documentation paragraph. If so, the tool inserts user sections in the generated device tree. These sections can then be edited to add some properties, and they are preserved from one generation to another. Refer to STM32CubeMX user manual for further information.
5. References
Refer to the following links for additional information: