Registered User |
Registered User Tag: 2017 source edit |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 79: | Line 79: | ||
* '''Linux<sup>®</sup>''': [[V4L2_camera_overview|V4L2 framework]] | * '''Linux<sup>®</sup>''': [[V4L2_camera_overview|V4L2 framework]] | ||
* '''STM32Cube''': | * '''STM32Cube''': | ||
** for {{MicroprocessorDevice | device=13}}: [[STM32CubeMP13 | ** for {{MicroprocessorDevice | device=13}}: [[STM32CubeMP13 Package | DCMIPP HAL driver]] and {{CodeSource | STM32CubeMP13 | Drivers/STM32MP13xx_HAL_Driver/Inc/stm32mp13xx_hal_dcmipp.h | header file of DCMIPP HAL module}} | ||
** for {{MicroprocessorDevice | device=25}}: [[STM32CubeMP2 | ** for {{MicroprocessorDevice | device=25}}: [[STM32CubeMP2 Package | DCMIPP HAL driver]] and {{CodeSource | STM32CubeMP2 | Drivers/STM32MP2xx_HAL_Driver/Inc/stm32mp2xx_hal_dcmipp.h | header file of DCMIPP HAL module}} | ||
==How to assign and configure the peripheral== | ==How to assign and configure the peripheral== |
Latest revision as of 15:15, 11 June 2024
1. Article purpose
The purpose of this article is to:
- briefly introduce the DCMIPP 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
The DCMIPP (digital camera memory interface pixel processor) peripheral is used to receive video data from an external parallel camera sensor device, or from any other digital video equipment supporting a parallel interface.
The DCMIPP hardware block can receive various frame data formats such as: RAW8, RGB565, YUV422 and other formats, as well as compressed data such as JPEG.
Moreover, on STM32MP25x lines :
- the DCMIPP is also connected to the CSI internal peripheral that provides an interface to communicate with MIPI® CSI-compliant camera sensors: the DCMIPP is able to get pixels from the parallel or MIPI® CSI interface.
- the DCMIPP embeds 3 dedicated pixel pipelines named "dump", "main" and "auxiliary": camera sensor data go into these pixel pipelines before they are sent to memory for further processing or display purposes.
Refer to the STM32 MPU 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
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
3.1.1. On STM32MP1 series
The DCMIPP peripheral is not used at boot time.
3.1.2. On STM32MP2 series
STM32MP2 internal peripherals assignment table template
| rowspan="1" | Visual | rowspan="1" | DCMIPP | DCMIPP | | | ⬚ | |-
|}
3.2. Runtime assignment
3.2.1. On STM32MP13x lines 
Click on to expand or collapse the legend...
Domain | Peripheral | Runtime allocation | Comment ![]() | ||
---|---|---|---|---|---|
Instance | Cortex-A7 secure (OP-TEE) |
Cortex-A7 non-secure (Linux) | |||
Visual | DCMIPP | DCMIPP | ☑ |
3.2.2. On STM32MP25x lines 
STM32MP2 internal peripherals assignment table template
| rowspan="1" | Visual | rowspan="1" | DCMIPP | DCMIPP | ⬚OP-TEE | ☑ | ⬚ | ☐ | | |-
|}
4. Software frameworks and drivers
Below are listed the software frameworks and drivers managing the DCMIPP peripheral for the embedded software components listed in the above tables.
- Linux®: V4L2 framework
- STM32Cube:
- for STM32MP13x lines
: DCMIPP HAL driver and Unsupported domain!
- for STM32MP25x lines
: DCMIPP HAL driver and Unsupported domain!
- for STM32MP13x lines
5. How to assign and configure the peripheral
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.
See also additional information in the DCMIPP device tree configuration article for Linux®.