Registered User mNo edit summary |
Registered User No edit summary |
||
(10 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
{{ApplicableFor | |||
|MPUs list=STM32MP13x, STM32MP15x, STM32MP21x, STM32MP23x, STM32MP25x | |||
|MPUs checklist=STM32MP13x, STM32MP15x, STM32MP21x, STM32MP23x, STM32MP25x | |||
}} | |||
<noinclude></noinclude> | |||
== Article purpose == | == Article purpose == | ||
This article explains how to configure the [[ | This article explains how to configure the [[HASH_internal_peripheral|'''HASH''']] 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 | 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 this configuration. | ||
== DT bindings documentation == | |||
The device tree bindings documents are stored either in the given applicable components listed below, or in the Linux<sup>®</sup> kernel repository: <br> | |||
* OP-TEE, Linux<sup>®</sup> Kernel: | |||
** HASH device tree bindings: {{CodeSource | Linux kernel | Documentation/devicetree/bindings/crypto/st,stm32-hash.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 tree file | 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. | ||
===DT configuration (STM32 level) === | ===DT configuration (STM32/SoC level) === | ||
The HASH node is | |||
The [[HASH_internal_peripheral|'''HASH''']] 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. | |||
{{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) === | ||
This | |||
This chapter explains how to enable and configure the [[HASH_internal_peripheral|'''HASH''']] DT nodes for a board.<br> | |||
The peripheral configuration must be done in the specific board device tree files (board dts file).<br> | |||
=== DT configuration examples === | === DT configuration examples === | ||
&hash { | |||
status = "okay"; | |||
}; | |||
==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 might not support all the properties described in the DT binding 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> | ||
{{ArticleBasedOnModel|Peripheral or framework device tree configuration model}} | {{ArticleBasedOnModel | Peripheral or framework device tree configuration model}} | ||
{{PublicationRequestId | | {{PublicationRequestId | 24655 | 2022-09-26}} | ||
[[Category:Device tree configuration]] | [[Category:Device tree configuration]] | ||
[[Category:Crypto]] | [[Category:Crypto]] | ||
[[Category:OP-TEE Crypto]] | |||
</noinclude> | </noinclude> |
Latest revision as of 14:32, 28 October 2024
1. Article purpose[edit | edit source]
This article explains how to configure the HASH 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 this configuration.
2. DT bindings documentation[edit | edit source]
The device tree bindings documents are stored either in the given applicable components listed below, or in the Linux® kernel repository:
- OP-TEE, Linux® Kernel:
- HASH device tree bindings: Documentation/devicetree/bindings/crypto/st,stm32-hash.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 HASH node is located in the device tree file for the software components, supporting the peripheral and listed in the above DT bindings documentation paragraph.
3.2. DT configuration (board level)[edit | edit source]
This chapter explains how to enable and configure the HASH DT nodes for a board.
The peripheral configuration must be done in the specific board device tree files (board dts file).
3.3. DT configuration examples[edit | edit source]
&hash {
status = "okay";
};
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 binding 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.