feat(GD GPU): add support for GD32F450 "IPA" 2D GPU. (#3622)

This commit is contained in:
dongie
2022-10-03 08:12:47 +09:00
committed by GitHub
parent 613777f623
commit f8196747a9
6 changed files with 393 additions and 0 deletions

View File

@@ -171,6 +171,14 @@
#define LV_GPU_DMA2D_CMSIS_INCLUDE
#endif
/*Use GD32 IPA GPU
* This adds support for Image Processing Accelerator on GD32F450 and GD32F470 series MCUs
*
* NOTE: IPA on GD32F450 has a bug where the fill operation overwrites data beyond the
* framebuffer. This driver works around it by saving and restoring affected memory, but
* this makes it not thread-safe. GD32F470 is not affected. */
#define LV_USE_GPU_GD32_IPA 0
/*Use NXP's PXP GPU iMX RTxxx platforms*/
#define LV_USE_GPU_NXP_PXP 0
#if LV_USE_GPU_NXP_PXP