Registered User mNo edit summary |
Registered User Tag: 2017 source edit |
||
(17 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
<noinclude>{{ApplicableFor | <noinclude>{{ApplicableFor | ||
|MPUs list=STM32MP13x | |MPUs list=STM32MP13x | ||
|MPUs checklist=STM32MP13x, STM32MP15x | |MPUs checklist=STM32MP13x, STM32MP15x, STM32MP21x, STM32MP23x, STM32MP25x | ||
}}</noinclude> | }}</noinclude> | ||
Line 36: | Line 36: | ||
| | | | ||
| | | | ||
| | | <span title="assignable peripheral but not supported" style="font-size:21px">⬚</span> | ||
| | | OP-TEE offers SCMI regulator service to manage VREFBUF | ||
|- | |- | ||
<section end=stm32mp13_boottime /> | <section end=stm32mp13_boottime /> | ||
Line 50: | Line 50: | ||
| VREFBUF | | VREFBUF | ||
| <span title="assignable peripheral" style="font-size:21px">☐</span> | | <span title="assignable peripheral" style="font-size:21px">☐</span> | ||
| <span title="assignable peripheral" style="font-size:21px"> | | <span title="assignable peripheral but not supported" style="font-size:21px">⬚</span> | ||
| Assignment (single choice)<br>VREFBUF | | Assignment (single choice)<br/>OP-TEE offers SCMI regulator service to manage VREFBUF | ||
|- | |- | ||
<section end=stm32mp13_runtime /> | <section end=stm32mp13_runtime /> | ||
|} | |} | ||
{{Info | As soon as one VREFBUF client peripheral (ADC1 or ADC2) is set secure, the VREFBUF should be set secure.}} | {{Info | As soon as one VREFBUF client peripheral (ADC1 or ADC2) is set secure, the VREFBUF should be set secure with [[ETZPC_device_tree_configuration#DT_configuration_-28board_level-29 | ETZPC configuration]].<br/> | ||
In OpenSTlinux, VREFBUF is only managed by OP-TEE exported through [[SCMI overview|SCMI]] even if all ADC are non-secured.}} | |||
==Software frameworks and drivers== | ==Software frameworks and drivers== | ||
Below are listed the software frameworks and drivers managing the VREFBUF peripheral for the embedded software components listed in the above tables. | Below are listed the software frameworks and drivers managing the VREFBUF peripheral for the embedded software components listed in the above tables. | ||
* [[SCMI overview | SCMI]] | |||
* '''Linux<sup>®</sup>''': [[Regulator overview|regulator framework]] | * '''Linux<sup>®</sup>''': [[Regulator overview|regulator framework]] | ||
* '''OP-TEE''': | ** {{CodeSource | Linux kernel | drivers/regulator/stm32-vrefbuf.c}} (deprecated as SCMI is used in OpenSTLinux) | ||
* '''OP-TEE''' driver: {{CodeSource | OP-TEE_OS | core/drivers/regulator/stm32_vrefbuf.c}} | |||
==How to assign and configure the peripheral== | ==How to assign and configure the peripheral== | ||
Line 71: | Line 74: | ||
The configuration is applied by the firmware running in the context in which the peripheral is assigned. | The configuration is applied by the firmware running in the context in which the peripheral is assigned. | ||
* For the Linux kernel configuration, please refer to [[Regulator_overview# | * For the Linux kernel configuration, please refer to [[Regulator_overview#Microprocessor_device_internal_regulator|device internal regulator]]. An example can be found also in [[ADC_device_tree_configuration#DT_configuration_examples|ADC DT configuration examples]] | ||
=== DT configuration example === | |||
In OP-TEE device tree: | |||
&etzpc { | |||
st,decprot = < | |||
DECPROT(STM32MP1_ETZPC_VREFBUF_ID, {{highlight|DECPROT_S_RW}}, DECPROT_UNLOCK) | |||
>; | |||
}; | |||
&scmi_regu { | |||
scmi_vrefbuf: voltd-vrefbuf { | |||
reg = <{{highlight|VOLTD_SCMI_VREFBUF}}>; | |||
voltd-supply = <&vrefbuf>; | |||
}; | |||
}; | |||
&vrefbuf { | |||
vdda-supply = <&vdd>; | |||
status = "okay"; | |||
}; | |||
In Linux device tree: | |||
&adc_1 { | |||
... | |||
vref-supply = <&scmi_vrefbuf>; | |||
status = "okay"; | |||
}; | |||
&scmi_regu { | |||
scmi_vrefbuf: voltd-vrefbuf { | |||
reg = <{{highlight|VOLTD_SCMI_VREFBUF}}>; | |||
regulator-name = "vrefbuf"; | |||
regulator-min-microvolt = <2500000>; | |||
regulator-max-microvolt = <2500000>; | |||
}; | |||
}; | |||
==References== | ==References== |
Latest revision as of 19:51, 7 November 2024
1. Article purpose[edit | edit source]
The purpose of this article is to:
- briefly introduce the VREFBUF peripheral and its main features,
- indicate the peripheral instances assignment at boot time and their assignment at runtime (including whether instances can be allocated to secure contexts),
- list the software frameworks and drivers managing the peripheral,
- explain how to configure the peripheral.
2. Peripheral overview[edit | edit source]
The VREFBUF peripheral is an internal voltage regulator.
The VREFBUF is supplied via the VDDA pin. When enabled, it can provide a reference voltage in the range of: 1,65V, 1,8V, 2,048V or 2,5V. The VREFBUF can be used to provide an analog voltage reference for:
- ADC internal peripheral
- External components through the dedicated VREF+ pin.
The VREFBUF can be left unused. In this case, an external voltage regulator can provide reference voltage to VREF+ pin.
Refer to the STM32MP13 reference manuals for the complete list of features, and to the software frameworks and drivers, introduced below, to see which features are implemented.
3. Peripheral usage[edit | edit source]
This chapter is applicable in the scope of the OpenSTLinux BSP running on the Arm® Cortex®-A processor(s), and the STM32CubeMPU Package running on the Arm® Cortex®-M processor.
3.1. Boot time assignment[edit | edit source]
3.1.1. On STM32MP13x lines
[edit | edit source]
The VREFBUF is usually not used at boot time. But it may be needed by the SSBL (see Boot chain overview), to supply the internal ADC for example.
Click on the right to expand the legend...
Domain | Peripheral | Boot time allocation | Comment | |||
---|---|---|---|---|---|---|
Instance | Cortex-A7 secure (ROM code) |
Cortex-A7 secure (TF-A BL2) |
Cortex-A7 non-secure (U-Boot) | |||
Analog | VREFBUF | VREFBUF | ⬚ | OP-TEE offers SCMI regulator service to manage VREFBUF |
3.2. Runtime assignment[edit | edit source]
3.2.1. On STM32MP13x lines
[edit | edit source]
Click on the right to expand the legend...
Domain | Peripheral | Runtime allocation | Comment | ||
---|---|---|---|---|---|
Instance | Cortex-A7 secure (OP-TEE) |
Cortex-A7 non-secure (Linux) | |||
Analog | VREFBUF | VREFBUF | ☐ | ⬚ | Assignment (single choice) OP-TEE offers SCMI regulator service to manage VREFBUF |
4. Software frameworks and drivers[edit | edit source]
Below are listed the software frameworks and drivers managing the VREFBUF peripheral for the embedded software components listed in the above tables.
- SCMI
- Linux®: regulator framework
- drivers/regulator/stm32-vrefbuf.c (deprecated as SCMI is used in OpenSTLinux)
- OP-TEE driver: core/drivers/regulator/stm32_vrefbuf.c
5. How to assign and configure the peripheral[edit | edit source]
The peripheral assignment can be done via the STM32CubeMX graphical tool (and manually completed if needed).
This tool also helps to configure the peripheral:
- partial device trees (pin control and clock tree) generation for the OpenSTLinux software components,
- HAL initialization code generation for the STM32CubeMPU Package.
The configuration is applied by the firmware running in the context in which the peripheral is assigned.
- For the Linux kernel configuration, please refer to device internal regulator. An example can be found also in ADC DT configuration examples
5.1. DT configuration example[edit | edit source]
In OP-TEE device tree:
ETZPC_VREFBUF_ID, DECPROT_S_RW, DECPROT_UNLOCK) >; }; &scmi_regu { scmi_vrefbuf: voltd-vrefbuf { reg = <VOLTD_SCMI_VREFBUF>; voltd-supply = <&vrefbuf>; }; }; &vrefbuf { vdda-supply = <&vdd>; status = "okay"; };&etzpc { st,decprot = < DECPROT(STM32MP1_
In Linux device tree:
&adc_1 {
...
vref-supply = <&scmi_vrefbuf>;
status = "okay";
};
VOLTD_SCMI_VREFBUF>; regulator-name = "vrefbuf"; regulator-min-microvolt = <2500000>; regulator-max-microvolt = <2500000>; }; };&scmi_regu { scmi_vrefbuf: voltd-vrefbuf { reg = <
6. References[edit | edit source]