summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Elste <thomas.elste@imms.de>2014-06-13 15:46:26 +0200
committerOtavio Salvador <otavio@ossystems.com.br>2014-06-30 09:17:26 -0300
commitbb2a2bad4da8b8b3c0b7c8956fd5ddb5ba027c3a (patch)
treeec7eb93a7bd398142e4daef39536b51126ca01a5
parentb3cf9ce918cd4fcbc5c39ade47d384414ea590ed (diff)
downloadmeta-fsl-arm-bb2a2bad4da8b8b3c0b7c8956fd5ddb5ba027c3a.tar.gz
libdrm: Add ite instruction to mx6 ARM patch
Building with Angstrom toolchain fails on inline assembler added by drm-update-arm.patch because of missing ite instruction. Insert instruction to make the inline assembler block Thumb2 compatible. Signed-off-by: Thomas Elste <thomas.elste@imms.de> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--recipes-graphics/drm/libdrm/mx6/drm-update-arm.patch3
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes-graphics/drm/libdrm/mx6/drm-update-arm.patch b/recipes-graphics/drm/libdrm/mx6/drm-update-arm.patch
index 4389fe4..1160cd1 100644
--- a/recipes-graphics/drm/libdrm/mx6/drm-update-arm.patch
+++ b/recipes-graphics/drm/libdrm/mx6/drm-update-arm.patch
@@ -9,7 +9,7 @@ Signed-off-by: Evan Kotara <evan.kotara@freescale.com>
9diff --git a/xf86drm.h b/xf86drm.h 9diff --git a/xf86drm.h b/xf86drm.h
10--- a/xf86drm.h 10--- a/xf86drm.h
11+++ b/xf86drm.h 11+++ b/xf86drm.h
12@@ -455,6 +455,22 @@ do { register unsigned int __old __asm("o0"); \ 12@@ -461,6 +461,23 @@ do { register unsigned int __old __asm("
13 : "cr0", "memory"); \ 13 : "cr0", "memory"); \
14 } while (0) 14 } while (0)
15 15
@@ -22,6 +22,7 @@ diff --git a/xf86drm.h b/xf86drm.h
22+ __asm__ __volatile__ ( \ 22+ __asm__ __volatile__ ( \
23+ "1: ldrex %0, [%1]\n" \ 23+ "1: ldrex %0, [%1]\n" \
24+ " teq %0, %2\n" \ 24+ " teq %0, %2\n" \
25+ " ite eq\n" \
25+ " strexeq %0, %3, [%1]\n" \ 26+ " strexeq %0, %3, [%1]\n" \
26+ " movne %0, #1\n" \ 27+ " movne %0, #1\n" \
27+ : "=&r" (__ret) \ 28+ : "=&r" (__ret) \