]> code.ossystems Code Review - meta-freescale.git/commitdiff
linux-fslc-imx-rt: Add patch to support external imx-gpu-viv driver
authorDominic Sacré <dominic.sacre@gmx.de>
Mon, 21 Nov 2016 15:53:25 +0000 (16:53 +0100)
committerOtavio Salvador <otavio@ossystems.com.br>
Wed, 23 Nov 2016 10:09:34 +0000 (08:09 -0200)
Export functions swait_prepare_locked() and swait_finish_locked() to
make them available to the external imx-gpu-viv driver module.

Remove the check whether MACHINE_USES_VIVANTE_KERNEL_DRIVER_MODULE is
set; both the built-in driver and the external module now work with the
RT kernel.

Signed-off-by: Dominic Sacré <dominic.sacre@gmx.de>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
recipes-kernel/linux/linux-fslc-imx-rt/0004-export-swait-locked-functions.patch [new file with mode: 0644]
recipes-kernel/linux/linux-fslc-imx-rt_4.1-2.0.x.bb

diff --git a/recipes-kernel/linux/linux-fslc-imx-rt/0004-export-swait-locked-functions.patch b/recipes-kernel/linux/linux-fslc-imx-rt/0004-export-swait-locked-functions.patch
new file mode 100644 (file)
index 0000000..1a616aa
--- /dev/null
@@ -0,0 +1,31 @@
+From 2460dd985b0cf477f74396de92d1bc5df496abdc Mon Sep 17 00:00:00 2001
+From: Julio Cruz <jcsistemas2001@gmail.com>
+Date: Wed, 20 Jan 2016 19:26:44 +0800
+Subject: [PATCH] Export symbols for iMX-GPU-VIV module
+
+---
+ kernel/sched/wait-simple.c | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/kernel/sched/wait-simple.c b/kernel/sched/wait-simple.c
+index 7dfa86d..a3776ee 100644
+--- a/kernel/sched/wait-simple.c
++++ b/kernel/sched/wait-simple.c
+@@ -40,6 +40,7 @@ void swait_prepare_locked(struct swait_head *head, struct swaiter *w)
+       if (list_empty(&w->node))
+               __swait_enqueue(head, w);
+ }
++EXPORT_SYMBOL(swait_prepare_locked);
+ void swait_prepare(struct swait_head *head, struct swaiter *w, int state)
+ {
+@@ -58,6 +59,7 @@ void swait_finish_locked(struct swait_head *head, struct swaiter *w)
+       if (w->task)
+               __swait_dequeue(w);
+ }
++EXPORT_SYMBOL(swait_finish_locked);
+ void swait_finish(struct swait_head *head, struct swaiter *w)
+ {
+-- 
+2.1.0
index fbb32d8128db6a288bf2ffc6425beea55d097771..10610a5a9a168e20ee9c28470e2302b0c3686765 100644 (file)
@@ -16,16 +16,11 @@ SRC_URI += " \
     file://0001-fix-build.patch \
     file://0002-no-split-ptlocks.patch \
     file://0003-Work-around-CPU-stalls-in-the-imx-sdma-driver.patch \
+    file://0004-export-swait-locked-functions.patch \
 "
 
 SRC_URI[rt-patch.md5sum] = "6dd1193203cdf6a1a4758fc8baf07a4a"
 SRC_URI[rt-patch.sha256sum] = "427e736022e59f83c9489eda889559fcd4fe4abb5646570ade32f2128f2fa725"
 
-python () {
-    using_builtin_driver = (d.getVar("MACHINE_USES_VIVANTE_KERNEL_DRIVER_MODULE", True) or "") != "1"
-    if not using_builtin_driver:
-        raise bb.parse.SkipPackage('You must use the builtin driver with the Linux RT patch as the external module does not yet include support for it. Set "MACHINE_USES_VIVANTE_KERNEL_DRIVER_MODULE" accordingly.')
-}
-
 
 COMPATIBLE_MACHINE = "(mx6|mx7)"