Part Number: TDA4VEN-Q1
Dear TI expert,
Hope this email finds you well.
We are currently working on a project that requires adding complex graphics rendering—such as drawing intricate shapes and complex icons—on top of an existing image/video stream.
Our Proposed Architecture:
To achieve this, we considered an LVGL-based solution. The concept is to have LVGL render the UI data onto a dedicated graphics layer, while the original video stream occupies another layer. During the display phase, we intend to leverage the DSS (Display Subsystem) hardware to perform a hardware overlay/blending of these layers to output the final image.
The Architectural Dilemma:
However, we are facing an architectural bottleneck. Currently, the display node runs on the MCU2_0 (Main R5F) core, and LVGL lacks native adaptation for the FVID2 APIs and DSS drivers used there.
To resolve this, we have brainstormed two potential data flow paths, but both have their trade-offs:
- Path A (A-Core Direct Display): We develop a custom
display noderunning on the A-core. LVGL would utilize the standard Linux DRM framework to push the display directly, entirely bypassing the existing FVID2-baseddisplay nodeon the Main R5F. - Path B (A-Core Rendering + R5F Overlay): LVGL renders the UI buffer on the A-core and then passes this rendered buffer down to the Main R5F (likely via IPC/shared memory). The
display nodeon the Main R5F would then take both the original video buffer and the UI buffer, invoking the DSS driver (via FVID2) to perform the final hardware overlay.
Given this context, we would greatly appreciate your insights and advice on the following two questions:
-
Regarding R5F DSS Driver Capabilities: Does the current DSS driver implementation on the Main R5F (via FVID2 APIs) fully support multi-layer hardware overlay/blending? Specifically, can it simultaneously manage and blend a dedicated video plane and a separate UI graphics plane (ideally with alpha blending support)?
- Regarding LVGL Adaptation: Is there a more elegant or efficient implementation strategy to adapt LVGL for our current architecture without completely bypassing the R5F display node?
- Regarding Alternative Solutions: If we were to pivot away from LVGL, are there other rendering frameworks or software solutions you would recommend for handling this kind of complex graphic overlay?
Thank you for your time and expertise. We look forward to hearing your insights.
Best regards,
