package/sunxi-mali-utgard: support the wayland driver

Add a choice to allow using the Wayland variant of the r6p2 Mali driver.
When selected, the package is marked as provider for libgbm as
libMali.so includes the symbols and a libgbm.so symlink is installed;
and both BR2_PACKAGE_HAS_{LIBGBM,LIBEGL_WAYLAND} are selected
accordingly.

Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Adrian Perez de Castro 2023-04-24 10:40:12 +03:00 committed by Thomas Petazzoni
parent 9d8497e79d
commit 6fc32c5697
2 changed files with 45 additions and 3 deletions

View File

@ -18,6 +18,9 @@ config BR2_PACKAGE_PROVIDES_LIBEGL
config BR2_PACKAGE_PROVIDES_LIBGLES
default "sunxi-mali-utgard"
config BR2_PACKAGE_PROVIDES_LIBGBM
default "sunxi-mali-utgard" if BR2_PACKAGE_SUNXI_MALI_UTGARD_WAYLAND
choice
prompt "Version"
default BR2_PACKAGE_SUNXI_MALI_UTGARD_R6P2 if BR2_PACKAGE_SUNXI_MALI_MAINLINE_R6P2 # legacy
@ -38,6 +41,32 @@ config BR2_PACKAGE_SUNXI_MALI_UTGARD_REVISION
default "r6p2" if BR2_PACKAGE_SUNXI_MALI_UTGARD_R6P2
default "r8p1" if BR2_PACKAGE_SUNXI_MALI_UTGARD_R8P1
choice
prompt "Platform"
default BR2_PACKAGE_SUNXI_MALI_UTGARD_FBDEV
help
Select the target EGL platform.
config BR2_PACKAGE_SUNXI_MALI_UTGARD_FBDEV
bool "fbdev"
config BR2_PACKAGE_SUNXI_MALI_UTGARD_WAYLAND
bool "wayland"
depends on BR2_PACKAGE_SUNXI_MALI_UTGARD_R6P2
select BR2_PACKAGE_HAS_LIBEGL_WAYLAND
select BR2_PACKAGE_HAS_LIBGBM
select BR2_PACKAGE_WAYLAND
comment "wayland support requires version r6p2"
depends on !BR2_PACKAGE_SUNXI_MALI_UTGARD_R6P2
endchoice
config BR2_PACKAGE_SUNXI_MALI_UTGARD_PLATFORM
string
default "fbdev" if BR2_PACKAGE_SUNXI_MALI_UTGARD_FBDEV
default "wayland" if BR2_PACKAGE_SUNXI_MALI_UTGARD_WAYLAND
endif
comment "sunxi-mali-utgard needs an EABIhf glibc toolchain"

View File

@ -14,6 +14,7 @@ SUNXI_MALI_UTGARD_EULA_NO_SPACES = EULA_for_Mali_400MP_AW.pdf
SUNXI_MALI_UTGARD_LICENSE_FILES = $(SUNXI_MALI_UTGARD_EULA_NO_SPACES)
SUNXI_MALI_UTGARD_REV = $(call qstrip,$(BR2_PACKAGE_SUNXI_MALI_UTGARD_REVISION))
SUNXI_MALI_UTGARD_PLATFORM = $(call qstrip,$(BR2_PACKAGE_SUNXI_MALI_UTGARD_PLATFORM))
ifeq ($(BR2_arm),y)
SUNXI_MALI_UTGARD_ARCH=arm
@ -24,9 +25,9 @@ endif
define SUNXI_MALI_UTGARD_INSTALL_STAGING_CMDS
mkdir -p $(STAGING_DIR)/usr/lib $(STAGING_DIR)/usr/include
cp -rf $(@D)/$(SUNXI_MALI_UTGARD_REV)/$(SUNXI_MALI_UTGARD_ARCH)/fbdev/*.so* \
cp -rf $(@D)/$(SUNXI_MALI_UTGARD_REV)/$(SUNXI_MALI_UTGARD_ARCH)/$(SUNXI_MALI_UTGARD_PLATFORM)/*.so* \
$(STAGING_DIR)/usr/lib/
cp -rf $(@D)/include/fbdev/* $(STAGING_DIR)/usr/include/
cp -rf $(@D)/include/$(SUNXI_MALI_UTGARD_PLATFORM)/* $(STAGING_DIR)/usr/include/
$(INSTALL) -D -m 0644 package/sunxi-mali-utgard/egl.pc \
$(STAGING_DIR)/usr/lib/pkgconfig/egl.pc
@ -34,9 +35,21 @@ define SUNXI_MALI_UTGARD_INSTALL_STAGING_CMDS
$(STAGING_DIR)/usr/lib/pkgconfig/glesv2.pc
endef
ifeq ($(BR2_PACKAGE_SUNXI_MALI_UTGARD_WAYLAND),y)
define SUNXI_MALI_UTGARD_INSTALL_FIXUP_STAGING_PC_FILES
sed -e '/^Cflags:/s/$$/ -DWL_EGL_PLATFORM/' \
-e '/^Requires:/s/$$/ wayland-client wayland-server/' \
-i $(STAGING_DIR)/usr/lib/pkgconfig/egl.pc
sed -e '/^Requires:/s/$$/ wayland-client wayland-server/' \
-i $(STAGING_DIR)/usr/lib/pkgconfig/glesv2.pc
endef
SUNXI_MALI_UTGARD_POST_INSTALL_TARGET_HOOKS += SUNXI_MALI_UTGARD_INSTALL_FIXUP_STAGING_PC_FILES
SUNXI_MALI_UTGARD_DEPENDENCIES += wayland
endif
define SUNXI_MALI_UTGARD_INSTALL_TARGET_CMDS
mkdir -p $(TARGET_DIR)/usr/lib
cp -rf $(@D)/$(SUNXI_MALI_UTGARD_REV)/$(SUNXI_MALI_UTGARD_ARCH)/fbdev/*.so* \
cp -rf $(@D)/$(SUNXI_MALI_UTGARD_REV)/$(SUNXI_MALI_UTGARD_ARCH)/$(SUNXI_MALI_UTGARD_PLATFORM)/*.so* \
$(TARGET_DIR)/usr/lib/
endef