All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v3] qt5base: Qt KMS support does not depend on opengl
@ 2018-02-13 16:46 Joshua Henderson
  2018-03-15 16:45 ` Joshua Henderson
  2018-10-21 23:18 ` Arnout Vandecappelle
  0 siblings, 2 replies; 5+ messages in thread
From: Joshua Henderson @ 2018-02-13 16:46 UTC (permalink / raw)
  To: buildroot

Qt KMS support should not explicitly depend on the availability of opengl.
Don't explicitly disable KMS if opengl is not available and fallback to
detecting if libdrm is available before disabling kms.

The scenario where this is necessary involves using the Qt linuxfb backend
"dumb buffer" support via the DRM API.  This is new in Qt 5.9 [1] and only
requires KMS, but not opengl.

[1] http://doc.qt.io/qt-5/embedded-linux.html#linuxfb

Cc: Peter Seiderer <ps.report@gmx.net>
Cc: Julien Corjon <corjon.j@ecagroup.com>
Signed-off-by: Joshua Henderson <joshua.henderson@microchip.com>

---

v3:
- Reorganize libdrm/egl make condition to be more clear.

v2:
- If libdrm is configured, make it an explicit dependency.
---
 package/qt5/qt5base/qt5base.mk | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/package/qt5/qt5base/qt5base.mk b/package/qt5/qt5base/qt5base.mk
index b3f9c79..644852d 100644
--- a/package/qt5/qt5base/qt5base.mk
+++ b/package/qt5/qt5base/qt5base.mk
@@ -35,12 +35,19 @@ endif
 
 QT5BASE_CONFIGURE_OPTS += $(call qstrip,$(BR2_PACKAGE_QT5BASE_CUSTOM_CONF_OPTS))
 
+ifeq ($(BR2_PACKAGE_LIBDRM),y)
+QT5BASE_CONFIGURE_OPTS += -kms
+QT5BASE_DEPENDENCIES += libdrm
+else
+QT5BASE_CONFIGURE_OPTS += -no-kms
+endif
+
 # Uses libgbm from mesa3d
 ifeq ($(BR2_PACKAGE_MESA3D_OPENGL_EGL),y)
-QT5BASE_CONFIGURE_OPTS += -kms -gbm
+QT5BASE_CONFIGURE_OPTS += -gbm
 QT5BASE_DEPENDENCIES += mesa3d
 else
-QT5BASE_CONFIGURE_OPTS += -no-kms
+QT5BASE_CONFIGURE_OPTS += -no-gbm
 endif
 
 ifeq ($(BR2_ENABLE_DEBUG),y)
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH v3] qt5base: Qt KMS support does not depend on opengl
  2018-02-13 16:46 [Buildroot] [PATCH v3] qt5base: Qt KMS support does not depend on opengl Joshua Henderson
@ 2018-03-15 16:45 ` Joshua Henderson
  2018-10-21 23:18 ` Arnout Vandecappelle
  1 sibling, 0 replies; 5+ messages in thread
From: Joshua Henderson @ 2018-03-15 16:45 UTC (permalink / raw)
  To: buildroot

Thomas,

On 02/13/2018 09:46 AM, Joshua Henderson wrote:
> Qt KMS support should not explicitly depend on the availability of opengl.
> Don't explicitly disable KMS if opengl is not available and fallback to
> detecting if libdrm is available before disabling kms.
> 
> The scenario where this is necessary involves using the Qt linuxfb backend
> "dumb buffer" support via the DRM API.  This is new in Qt 5.9 [1] and only
> requires KMS, but not opengl.
> 
> [1] http://doc.qt.io/qt-5/embedded-linux.html#linuxfb
> 
> Cc: Peter Seiderer <ps.report@gmx.net>
> Cc: Julien Corjon <corjon.j@ecagroup.com>
> Signed-off-by: Joshua Henderson <joshua.henderson@microchip.com>
> 
> ---
> 
> v3:
> - Reorganize libdrm/egl make condition to be more clear.
> 
> v2:
> - If libdrm is configured, make it an explicit dependency.
> ---
>  package/qt5/qt5base/qt5base.mk | 11 +++++++++--
>  1 file changed, 9 insertions(+), 2 deletions(-)
> 
> diff --git a/package/qt5/qt5base/qt5base.mk b/package/qt5/qt5base/qt5base.mk
> index b3f9c79..644852d 100644
> --- a/package/qt5/qt5base/qt5base.mk
> +++ b/package/qt5/qt5base/qt5base.mk
> @@ -35,12 +35,19 @@ endif
>  
>  QT5BASE_CONFIGURE_OPTS += $(call qstrip,$(BR2_PACKAGE_QT5BASE_CUSTOM_CONF_OPTS))
>  
> +ifeq ($(BR2_PACKAGE_LIBDRM),y)
> +QT5BASE_CONFIGURE_OPTS += -kms
> +QT5BASE_DEPENDENCIES += libdrm
> +else
> +QT5BASE_CONFIGURE_OPTS += -no-kms
> +endif
> +
>  # Uses libgbm from mesa3d
>  ifeq ($(BR2_PACKAGE_MESA3D_OPENGL_EGL),y)
> -QT5BASE_CONFIGURE_OPTS += -kms -gbm
> +QT5BASE_CONFIGURE_OPTS += -gbm
>  QT5BASE_DEPENDENCIES += mesa3d
>  else
> -QT5BASE_CONFIGURE_OPTS += -no-kms
> +QT5BASE_CONFIGURE_OPTS += -no-gbm
>  endif
>  
>  ifeq ($(BR2_ENABLE_DEBUG),y)
> 

Ping.  Have you had a chance to review this latest version in response to your
feedback?  What are the chances this can make it into a rev of 2018.02?

Josh

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH v3] qt5base: Qt KMS support does not depend on opengl
  2018-02-13 16:46 [Buildroot] [PATCH v3] qt5base: Qt KMS support does not depend on opengl Joshua Henderson
  2018-03-15 16:45 ` Joshua Henderson
@ 2018-10-21 23:18 ` Arnout Vandecappelle
  2018-10-24 15:54   ` Peter Korsgaard
  2018-10-30 21:41   ` Joshua Henderson
  1 sibling, 2 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2018-10-21 23:18 UTC (permalink / raw)
  To: buildroot


On 13/02/2018 16:46, Joshua Henderson wrote:
> Qt KMS support should not explicitly depend on the availability of opengl.
> Don't explicitly disable KMS if opengl is not available and fallback to
> detecting if libdrm is available before disabling kms.
>
> The scenario where this is necessary involves using the Qt linuxfb backend
> "dumb buffer" support via the DRM API. This is new in Qt 5.9 [1] and only
> requires KMS, but not opengl.

?This sounds like we should handle the Qt 5.6 case specially.

?However, on Qt 5.6, it builds fine with the -kms option, it just ends up not
being used. That means we have a redundant dependency on libdrm, but that
doesn't matter that much. Handling the Qt 5.6 case differently would make the
code quite a bit more complicated.

?Therefore, I explained the above in the commit log an applied to master, thanks.

?Sorry it took so long.


?Regards,
?Arnout


>
> [1] http://doc.qt.io/qt-5/embedded-linux.html#linuxfb
>
> Cc: Peter Seiderer <ps.report@gmx.net>
> Cc: Julien Corjon <corjon.j@ecagroup.com>
> Signed-off-by: Joshua Henderson <joshua.henderson@microchip.com>
>
> ---
>
> v3:
> - Reorganize libdrm/egl make condition to be more clear.
>
> v2:
> - If libdrm is configured, make it an explicit dependency.
> ---
> package/qt5/qt5base/qt5base.mk | 11 +++++++++--
> 1 file changed, 9 insertions(+), 2 deletions(-)
>
> diff --git a/package/qt5/qt5base/qt5base.mk b/package/qt5/qt5base/qt5base.mk
> index b3f9c79..644852d 100644
> --- a/package/qt5/qt5base/qt5base.mk
> +++ b/package/qt5/qt5base/qt5base.mk
> @@ -35,12 +35,19 @@ endif
> QT5BASE_CONFIGURE_OPTS += $(call qstrip,$(BR2_PACKAGE_QT5BASE_CUSTOM_CONF_OPTS))
> +ifeq ($(BR2_PACKAGE_LIBDRM),y)
> +QT5BASE_CONFIGURE_OPTS += -kms
> +QT5BASE_DEPENDENCIES += libdrm
> +else
> +QT5BASE_CONFIGURE_OPTS += -no-kms
> +endif
> +
> # Uses libgbm from mesa3d
> ifeq ($(BR2_PACKAGE_MESA3D_OPENGL_EGL),y)
> -QT5BASE_CONFIGURE_OPTS += -kms -gbm
> +QT5BASE_CONFIGURE_OPTS += -gbm
> QT5BASE_DEPENDENCIES += mesa3d
> else
> -QT5BASE_CONFIGURE_OPTS += -no-kms
> +QT5BASE_CONFIGURE_OPTS += -no-gbm
> endif
> ifeq ($(BR2_ENABLE_DEBUG),y)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH v3] qt5base: Qt KMS support does not depend on opengl
  2018-10-21 23:18 ` Arnout Vandecappelle
@ 2018-10-24 15:54   ` Peter Korsgaard
  2018-10-30 21:41   ` Joshua Henderson
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2018-10-24 15:54 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:

 > On 13/02/2018 16:46, Joshua Henderson wrote:
 >> Qt KMS support should not explicitly depend on the availability of opengl.
 >> Don't explicitly disable KMS if opengl is not available and fallback to
 >> detecting if libdrm is available before disabling kms.
 >> 
 >> The scenario where this is necessary involves using the Qt linuxfb backend
 >> "dumb buffer" support via the DRM API. This is new in Qt 5.9 [1] and only
 >> requires KMS, but not opengl.

 > ?This sounds like we should handle the Qt 5.6 case specially.

 > ?However, on Qt 5.6, it builds fine with the -kms option, it just ends up not
 > being used. That means we have a redundant dependency on libdrm, but that
 > doesn't matter that much. Handling the Qt 5.6 case differently would make the
 > code quite a bit more complicated.

 > ?Therefore, I explained the above in the commit log an applied to master, thanks.

 > ?Sorry it took so long.

Committed to 2018.02.x and 2018.08.x with the extended commit message,
thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH v3] qt5base: Qt KMS support does not depend on opengl
  2018-10-21 23:18 ` Arnout Vandecappelle
  2018-10-24 15:54   ` Peter Korsgaard
@ 2018-10-30 21:41   ` Joshua Henderson
  1 sibling, 0 replies; 5+ messages in thread
From: Joshua Henderson @ 2018-10-30 21:41 UTC (permalink / raw)
  To: buildroot

Arnout,

On 10/21/2018 04:18 PM, Arnout Vandecappelle wrote:
> 
> On 13/02/2018 16:46, Joshua Henderson wrote:
>> Qt KMS support should not explicitly depend on the availability of opengl.
>> Don't explicitly disable KMS if opengl is not available and fallback to
>> detecting if libdrm is available before disabling kms.
>>
>> The scenario where this is necessary involves using the Qt linuxfb backend
>> "dumb buffer" support via the DRM API. This is new in Qt 5.9 [1] and only
>> requires KMS, but not opengl.
> 
> ?This sounds like we should handle the Qt 5.6 case specially.
> 
> ?However, on Qt 5.6, it builds fine with the -kms option, it just ends up not
> being used. That means we have a redundant dependency on libdrm, but that
> doesn't matter that much. Handling the Qt 5.6 case differently would make the
> code quite a bit more complicated.
> 
> ?Therefore, I explained the above in the commit log an applied to master, thanks.
> 
> ?Sorry it took so long.

No problem.  Thanks Arnout.

Josh

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-10-30 21:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-13 16:46 [Buildroot] [PATCH v3] qt5base: Qt KMS support does not depend on opengl Joshua Henderson
2018-03-15 16:45 ` Joshua Henderson
2018-10-21 23:18 ` Arnout Vandecappelle
2018-10-24 15:54   ` Peter Korsgaard
2018-10-30 21:41   ` Joshua Henderson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.