TAMP device tree configuration

Revision as of 21:27, 15 September 2020 by Registered User (Created page with "== Article purpose == {{Warning|This article explains how to configure TAMP.}} This article describes the TAMP confi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

1. Article purpose[edit source]

Warning white.png Warning
This article explains how to configure TAMP.

This article describes the TAMP configuration performed using the device tree mechanism, which provides a hardware description of the TAMP peripheral.

2. DT bindings documentation[edit source]

The following binding-related documentation explains how to write device tree files for TAMP:

  • TF-A: tf-a/docs/devicetree/bindings/soc/st,stm32-tamp.txt"[1]

3. DT configuration[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 split.

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)[edit source]

The STM32MP1 TAMP node is located in the file stm32mp151.dtsi[2] (see Device tree for further explanation).

 / {
 ...
 	soc {
 ...
 		tamp: tamp@5c00a000 {

compatible = "st,stm32-tamp", "simple-bus", "syscon", "simple-mfd"; reg = <0x5c00a000 0x400>; secure-interrupts = <GIC_SPI 197 IRQ_TYPE_LEVEL_HIGH>; clocks = <&rcc RTCAPB>; };

 ...
 	};
 ...
 };

3.2. DT configuration (board level)[edit source]

3.2.1. STM32MP1 BSEC node append[edit source]

The board definition in the device tree may include some additional board-specific OTP declarations:

 &bsec {
 	board_id: board_id@ec {
 		reg = <0xec 0x4>;
 		st,non-secure-otp;
 	};
 };

With only 32 lower NVMEM 32-bit data words, the software needs to manage exceptions in order to allow some upper OTPs to be accessed by the non-secure world, through secure world services for very specific needs. The user can add an OTP declaration in the device tree, using the "st,non-secure-otp" property, with a 32-bit length granularity (that is, 4 bytes).

3.2.2. STM32MP1 BSEC node append (bootloader specific)[edit source]

The bootloader-specific STM32MP1 BSEC node append data is located in the file stm32mp151.dtsi [2] for TF-A (see Device tree for further explanation).
This completes NVMEM data providers, for bootloader-specific purposes only, either for a driver, or the platform itself.

 bsec: nvmem@5c005000 {                                           
 	compatible = "st,stm32mp15-bsec";                        
 	reg = <0x5c005000 0x400>;                                
 	#address-cells = <1>;                                    
 	#size-cells = <1>;                                       
 
 	cfg0_otp: cfg0_otp@0 {                                   
 		reg = <0x0 0x1>;                                 
 	};                                                       
 	part_number_otp: part_number_otp@4 {                     
 		reg = <0x4 0x1>;                                 
 	};                                                       
 	monotonic_otp: monotonic_otp@10 {                        
 		reg = <0x10 0x4>;                                
 	};                                                       
 	nand_otp: nand_otp@24 {                                  
 		reg = <0x24 0x4>;                                
 	};                                                       
 	uid_otp: uid_otp@34 {                                    
 		reg = <0x34 0xc>;                                
 	};                                                       
 	package_otp: package_otp@40 {                            
 		reg = <0x40 0x4>;                                
 	};                                                       
 	hw2_otp: hw2_otp@48 {                                    
 		reg = <0x48 0x4>;                                
 	};                                                       
 	ts_cal1: calib@5c {                                      
 		reg = <0x5c 0x2>;                                
 	};                                                       
 	ts_cal2: calib@5e {                                      
 		reg = <0x5e 0x2>;                                
 	};                                                       
 	pkh_otp: pkh_otp@60 {                                    
 		reg = <0x60 0x20>;                               
 	};                                                       
 	mac_addr: mac_addr@e4 {                                  
 		reg = <0xe4 0x8>;                                
 		st,non-secure-otp;                               
 	};                                                       
 };                           

Please see the "st,non-secure-otp" definition in the previous section above. No more spare field declaration here.

3.2.3. STM32MP1 driver node append[edit source]

The driver can directly consume NVMEM data cells, as described in NVMEM overview.
The CPU0 device is a good example, with a dedicated OTP containing part number information.
The device node is located in the stm32mp151.dtsi[3] file.

 cpu0: cpu@0 {
 	compatible = "arm,cortex-a7";
 	device_type = "cpu";
 	reg = <0>;
 	clocks = <&scmi0_clk CK_SCMI0_MPU>;
 	clock-names = "cpu";
 	operating-points-v2 = <&cpu0_opp_table>;
 	nvmem-cells = <&part_number_otp>;
 	nvmem-cell-names = "part_number";
 	#cooling-cells = <2>;
 };

With these nvmem-cells / nvmem-cell-names properties, the CPU0 device can easily find the OTP number, in order to access part number information.

3.2.4. STM32MP1 nvmem_layout node (bootloader specific)[edit source]

The STM32MP1 nvmem_layout node gathers all NVMEM platform-dependent layout information, including OTP names and phandles, in order to allow easy access for data consumers, using pre-defined string in the nvmem-cell-names property.

 nvmem_layout: nvmem_layout@0 {
 	compatible = "st,stm32mp1-nvmem-layout";
 	nvmem-cells = <&cfg0_otp>,
 		      <&part_number_otp>,
 		      <&monotonic_otp>,
 		      <&nand_otp>,
 		      <&uid_otp>,
 		      <&package_otp>,
 		      <&hw2_otp>;
  
 	nvmem-cell-names = "cfg0_otp",
 			   "part_number_otp",
 			   "monotonic_otp",
 			   "uid_otp",
 			   "nand_otp",
 			   "package_otp",
 			   "hw2_otp";
 };

With this new node, the platform can easily find the OTP numbers, in order to access all the necessary information.

4. How to configure the DT using STM32CubeMX[edit source]

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 the documents listed in DT bindings documentation above. If so, the tool inserts user sections in the generated device tree. These sections can then be edited to add some properties that are preserved from one generation to another. Refer to the STM32CubeMX user manual for further information.

5. References[edit source]

Please refer to the following links for additional information:

  1. docs/devicetree/bindings/soc/st,stm32-tamp.txt TF-A TAMP binding information file
  2. 2.0 2.1 fdts/stm32mp151.dtsi  : STM32MP151 TF-A device tree files Cite error: Invalid <ref> tag; name "stm32mp151_tfa_dtsi" defined multiple times with different content
  3. Cite error: Invalid <ref> tag; no text was provided for refs named stm32mp151_kernel_dtsi