From: Romain Naour <romain.naour@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH/next v9 11/12] package/mesa3d: add support for gallium lima driver
Date: Sun, 11 Aug 2019 22:41:31 +0200 [thread overview]
Message-ID: <cfe3018a-dfff-5644-e856-5598dfb93a50@gmail.com> (raw)
In-Reply-To: <20190811131755.30840-11-bernd.kuhls@t-online.de>
Le 11/08/2019 ? 15:17, Bernd Kuhls a ?crit?:
> More infos can be found here:
> https://gitlab.freedesktop.org/lima/web/wikis/home
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
I'm testing on Potato Board with Lima DRM driver and a kernel 5.2.
Reviewed-by: Romain Naour <romain.naour@gmail.com>
Tested-by: Romain Naour <romain.naour@gmail.com>
Best regards,
Romain
> ---
> package/mesa3d/Config.in | 7 +++++++
> package/mesa3d/mesa3d.mk | 3 +++
> 2 files changed, 10 insertions(+)
>
> diff --git a/package/mesa3d/Config.in b/package/mesa3d/Config.in
> index 3631e22cc3..1cf241e552 100644
> --- a/package/mesa3d/Config.in
> +++ b/package/mesa3d/Config.in
> @@ -103,6 +103,13 @@ config BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_KMSRO
> comment "Gallium KMSRO needs one or more renderonly drivers"
> depends on !BR2_PACKAGE_MESA3D_GALLIUM_KMSRO
>
> +config BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_LIMA
> + bool "Gallium lima driver"
> + select BR2_PACKAGE_MESA3D_GALLIUM_DRIVER
> + select BR2_PACKAGE_MESA3D_GALLIUM_KMSRO
> + help
> + Mesa driver for ARM Mali Utgard GPUs.
> +
> config BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_NOUVEAU
> bool "Gallium nouveau driver"
> depends on BR2_i386 || BR2_x86_64
> diff --git a/package/mesa3d/mesa3d.mk b/package/mesa3d/mesa3d.mk
> index 1497659202..80abd392ba 100644
> --- a/package/mesa3d/mesa3d.mk
> +++ b/package/mesa3d/mesa3d.mk
> @@ -86,6 +86,7 @@ endif
> #Gallium Drivers
> MESA3D_GALLIUM_DRIVERS-$(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_ETNAVIV) += etnaviv
> MESA3D_GALLIUM_DRIVERS-$(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_KMSRO) += kmsro
> +MESA3D_GALLIUM_DRIVERS-$(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_LIMA) += lima
> MESA3D_GALLIUM_DRIVERS-$(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_NOUVEAU) += nouveau
> MESA3D_GALLIUM_DRIVERS-$(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_R600) += r600
> MESA3D_GALLIUM_DRIVERS-$(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_RADEONSI) += radeonsi
> @@ -172,6 +173,8 @@ else ifeq ($(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_VC4),y)
> MESA3D_PLATFORMS = drm
> else ifeq ($(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_ETNAVIV),y)
> MESA3D_PLATFORMS = drm
> +else ifeq ($(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_LIMA),y)
> +MESA3D_PLATFORMS = drm
> else ifeq ($(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_VIRGL),y)
> MESA3D_PLATFORMS = drm
> else ifeq ($(BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_RADEONSI),y)
>
next prev parent reply other threads:[~2019-08-11 20:41 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-11 13:17 [Buildroot] [PATCH/next v9 01/12] package/python3-mako: new package Bernd Kuhls
2019-08-11 13:17 ` [Buildroot] [PATCH/next v9 02/12] package/mesa3d: rename OSMesa option Bernd Kuhls
2019-08-13 19:09 ` André Hentschel
2019-08-11 13:17 ` [Buildroot] [PATCH/next v9 03/12] package/mesa3d: add OSMesa classic needs dri swrast Bernd Kuhls
2019-08-11 13:17 ` [Buildroot] [PATCH/next v9 04/12] package/mesa3d: Only one swrast provider can be built Bernd Kuhls
2019-08-11 13:17 ` [Buildroot] [PATCH/next v9 05/12] package/mesa3d: add xvmc option Bernd Kuhls
2019-08-11 13:17 ` [Buildroot] [PATCH/next v9 06/12] package/mesa3d: Gallium xa state tracker is only available for nouveau and svga Gallium drivers Bernd Kuhls
2019-08-11 13:17 ` [Buildroot] [PATCH/next v9 07/12] package/mesa3d: add a new option to enable GLX support Bernd Kuhls
2019-08-11 20:31 ` Romain Naour
2019-08-11 13:17 ` [Buildroot] [PATCH/next v9 08/12] package/mesa3d: switch build system to meson Bernd Kuhls
2019-08-11 20:39 ` Romain Naour
2019-08-11 13:17 ` [Buildroot] [PATCH/next v9 09/12] package/mesa3d: select kmsro for etnaviv Bernd Kuhls
2019-08-11 13:17 ` [Buildroot] [PATCH/next v9 10/12] package/{mesa3d, mesa3d-headers}: bump version to 19.1.4 Bernd Kuhls
2019-08-11 13:17 ` [Buildroot] [PATCH/next v9 11/12] package/mesa3d: add support for gallium lima driver Bernd Kuhls
2019-08-11 20:41 ` Romain Naour [this message]
2019-08-11 13:17 ` [Buildroot] [PATCH/next v9 12/12] package/mesa3d: add support for gallium panfrost driver Bernd Kuhls
2019-08-11 20:43 ` Romain Naour
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cfe3018a-dfff-5644-e856-5598dfb93a50@gmail.com \
--to=romain.naour@gmail.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox