Arm-2D GPU (Arm-2D 图形处理器)
显示原文
Arm-2D is not a GPU but an abstraction layer for 2D GPUs dedicated to Microcontrollers. It supports all Cortex-M processors ranging from Cortex-M0 to the latest Cortex-M85.
Arm-2D accelerates LVGL9 with two modes: Synchronous Mode and Asynchronous Mode.
When Helium and ACI (Arm Custom Instruction) are available, it is recommend to use Synchronous Mode to accelerate LVGL.
When Arm-2D backed 2D-GPUs are available, for example, DMAC-350 based 2D GPUs, it is recommend to use Asynchronous Mode to accelerate LVGL.
Arm-2D is an open-source project on GitHub. For more, please refer to: https://github.com/ARM-software/Arm-2D.
Arm-2D 不是 GPU,而是 为微控制器专用的 2D GPU 抽象层。它支持所有 Cortex-M 处理器,从 Cortex-M0 到最新的 Cortex-M85。
Arm-2D 通过两种模式加速 LVGL9: 同步模式 和 异步模式。
当 Helium 和 ACI (Arm Custom Instruction) 可用时,推荐使用 同步模式 来加速 LVGL。
当 Arm-2D 支持的 2D-GPU 可用时,例如 基于 DMAC-350 的 2D GPU,推荐使用 异步模式 来加速 LVGL。
Arm-2D 是一个开源项目,托管在 GitHub 上。更多信息,请参考: https://github.com/ARM-software/Arm-2D。
How to Use (如何使用)
显示原文
In general:
you can set the macro
LV_USE_DRAW_ARM2D_SYNC
to1
andLV_DRAW_SW_ASM
toLV_DRAW_SW_ASM_HELIUM
inlv_conf.h
to enable Arm-2D synchronous acceleration for LVGL.You can set the macro
LV_USE_DRAW_ARM2D_ASYNC
to1
inlv_conf.h
to enable Arm-2D Asynchronous acceleration for LVGL.
If you are using
CMSIS-Pack
to deploy the LVGL. You don't have to define the macro
LV_USE_DRAW_ARM2D_SYNC
manually, instead the lv_conf_cmsis.h will
check the environment and set the LV_USE_DRAW_ARM2D_SYNC
accordingly.
一般来说:
您可以在
lv_conf.h
中将宏LV_USE_DRAW_ARM2D_SYNC
设置为1
,并将LV_DRAW_SW_ASM
设置为LV_DRAW_SW_ASM_HELIUM
来启用 Arm-2D 同步加速以加速 LVGL。您可以在
lv_conf.h
中将宏LV_USE_DRAW_ARM2D_ASYNC
设置为1
来启用 Arm-2D 异步加速以加速 LVGL。
如果您使用 CMSIS-Pack 来部署 LVGL,则不需要手动定义宏 LV_USE_DRAW_ARM2D_SYNC
,而是通过 lv_conf_cmsis.h 检查环境并相应地设置 LV_USE_DRAW_ARM2D_SYNC
。
Design Considerations(设计建议)
显示原文
As mentioned before, Arm-2D is an abstraction layer for 2D GPU; hence if there is no accelerator or dedicated instruction set (such as Helium or ACI) available for Arm-2D, it provides negligible performance boost for LVGL (sometimes worse) for regular Cortex-M processors.
We highly recommend you enable Arm-2D acceleration for LVGL when:
如前所述,Arm-2D 是一个 2D GPU 抽象层;因此,如果没有加速器或专用指令集(如 Helium 或 ACI)可供 Arm-2D 使用,它对常规 Cortex-M 处理器的 LVGL 性能提升微乎其微(有时甚至更差)。
我们强烈建议在以下情况下启用 Arm-2D 加速来加速 LVGL: