Registered User mNo edit summary |
Registered User (Remove the obsolete RNG parameter configuration) Tag: 2017 source edit |
||
(11 intermediate revisions by 5 users not shown) | |||
Line 6: | Line 6: | ||
== Article purpose == | == Article purpose == | ||
This article explains how to configure the [[RNG_internal_peripheral|'''RNG''']] using the [[Device tree|device tree]] mechanism (DT), relying on the bindings documentation, which is the description of the required and optional device tree properties. | |||
The peripheral can be assigned to different contexts | The peripheral can be assigned to different contexts and software components, depending on the final product needs. Refer to [[How to assign an internal peripheral to an execution context]] article for guidelines on such configuration. | ||
== DT bindings documentation == | == DT bindings documentation == | ||
The device tree | The device tree bindings documents are stored either in the given applicable components listed below: | ||
* TF-A BL2, | *OP-TEE | ||
** RNG device tree bindings : {{CodeSource | Linux kernel | Documentation/devicetree/bindings/rng/st,stm32-rng.yaml}} | ** RNG device tree bindings: {{CodeSource | OP-TEE_OS | documentation/devicetree/bindings/rng/st,stm32-rng.yaml}} | ||
* TF-A BL2, U-Boot, Linux<sup>®</sup> Kernel: | |||
** RNG device tree bindings: {{CodeSource | Linux kernel | Documentation/devicetree/bindings/rng/st,stm32-rng.yaml}} | |||
== DT configuration == | == 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 | 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. | '''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. | ||
Line 26: | Line 29: | ||
The [[RNG_internal_peripheral|'''RNG''']] node is located in the [[STM32 MPU device_tree#Device tree structure|device tree file]] for the software components, supporting the peripheral and listed in the above [[#DT bindings documentation|DT bindings documentation]] paragraph. | The [[RNG_internal_peripheral|'''RNG''']] node is located in the [[STM32 MPU device_tree#Device tree structure|device tree file]] for the software components, supporting the peripheral and listed in the above [[#DT bindings documentation|DT bindings documentation]] paragraph. | ||
It is only included | It is only included in SoCs supporting secure boot. | ||
{{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.}} | ||
Line 32: | Line 35: | ||
=== DT configuration (board level) === | === DT configuration (board level) === | ||
This chapter explains how to enable and configure the [[RNG_internal_peripheral|'''RNG''']] DT nodes for a board.<br> | |||
The peripheral configuration must be done in the specific board device tree files (board dts file).<br> | |||
RNG runs on two different clocks: | RNG runs on two different clocks: | ||
* AHB bus clock to access registers | * The AHB bus clock to access registers | ||
* | * A dedicated RNG clock connected to internal random blocks | ||
Depending the clock source selected for the RNG clocks, the RNG dedicated clock '''must''' be higher than AHB clock / 32 if clock error detection is enabled. | Depending on the clock source selected for the RNG clocks, the RNG dedicated clock '''must''' be higher than AHB clock / 32 if clock error detection is enabled. | ||
=== DT configuration examples === | === DT configuration examples === | ||
Line 50: | Line 53: | ||
==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 | STM32CubeMX might not support all the properties described in the DT bindings files listed in the above [[#DT bindings documentation|DT bindings documentation]] paragraph. In such cases, the tool inserts '''user sections''' in the generated device tree. These sections can then be edited to add some properties; They are preserved from one generation to another. Refer to [[STM32CubeMX]] user manual for further information. | ||
<noinclude> | <noinclude> | ||
Line 62: | Line 61: | ||
[[Category:Device tree configuration]] | [[Category:Device tree configuration]] | ||
[[Category:OP-TEE Crypto]] | [[Category:OP-TEE Crypto]] | ||
{{PublicationRequestId | 24656| 2022-09-26}} | |||
</noinclude> | </noinclude> |
Latest revision as of 16:53, 13 May 2024
1. Article purpose[edit | edit source]
This article explains how to configure the RNG using the device tree mechanism (DT), relying on the bindings documentation, which is the description of the required and optional device tree properties.
The peripheral can be assigned to different contexts and software components, depending on the final product needs. Refer to How to assign an internal peripheral to an execution context article for guidelines on such configuration.
2. DT bindings documentation[edit | edit source]
The device tree bindings documents are stored either in the given applicable components listed below:
- OP-TEE
- RNG device tree bindings: documentation/devicetree/bindings/rng/st,stm32-rng.yaml
- TF-A BL2, U-Boot, Linux® Kernel:
- RNG device tree bindings: Documentation/devicetree/bindings/rng/st,stm32-rng.yaml
3. DT configuration[edit | edit source]
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/SoC level)[edit | edit source]
The RNG node is located in the device tree file for the software components, supporting the peripheral and listed in the above DT bindings documentation paragraph.
It is only included in SoCs supporting secure boot.
3.2. DT configuration (board level)[edit | edit source]
This chapter explains how to enable and configure the RNG DT nodes for a board.
The peripheral configuration must be done in the specific board device tree files (board dts file).
RNG runs on two different clocks:
- The AHB bus clock to access registers
- A dedicated RNG clock connected to internal random blocks
Depending on the clock source selected for the RNG clocks, the RNG dedicated clock must be higher than AHB clock / 32 if clock error detection is enabled.
3.3. DT configuration examples[edit | edit source]
// Enable the clock error management };&rng { status = "okay"; clock-error-detect;
4. How to configure the DT using STM32CubeMX[edit | edit source]
The STM32CubeMX tool can be used to configure the STM32MPU device and get the corresponding platform configuration device tree files.
STM32CubeMX might not support all the properties described in the DT bindings files listed in the above DT bindings documentation paragraph. In such cases, the tool inserts user sections in the generated device tree. These sections can then be edited to add some properties; They are preserved from one generation to another. Refer to STM32CubeMX user manual for further information.