diff options
| author | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-15 17:14:27 -0300 |
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-16 15:01:29 -0300 |
| commit | f8517afc7a5ada4538b3b7d397fa32586d57ffe5 (patch) | |
| tree | 79349f091306d1760fd4687e62336ffa8fb8c721 /recipes-graphics/drm | |
| parent | c92b415d653afc55f33b6b93fb9248193bfd4fa0 (diff) | |
| download | meta-freescale-f8517afc7a5ada4538b3b7d397fa32586d57ffe5.tar.gz | |
Move meta-fsl-arm content to layer root
The meta-fsl-arm is going to be used as the base for this layer. It
contains a clean history and allowing a more granullar set of changes.
This commit is just a rename of all contents of meta-fsl-arm
subdirectory to this layer's root, subsequent changes are based on top
of that.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-graphics/drm')
| -rw-r--r-- | recipes-graphics/drm/libdrm/mx6/drm-update-arm.patch | 35 | ||||
| -rw-r--r-- | recipes-graphics/drm/libdrm_%.bbappend | 5 |
2 files changed, 40 insertions, 0 deletions
diff --git a/recipes-graphics/drm/libdrm/mx6/drm-update-arm.patch b/recipes-graphics/drm/libdrm/mx6/drm-update-arm.patch new file mode 100644 index 000000000..1160cd10a --- /dev/null +++ b/recipes-graphics/drm/libdrm/mx6/drm-update-arm.patch | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | Add ARM support into xf86arm.h. This provides support for Xorg interface. | ||
| 2 | Without this the vivante samples will hang during close requiring a reboot | ||
| 3 | |||
| 4 | Upstream-Status: Pending | ||
| 5 | |||
| 6 | Signed-off-by: Lauren Post <lauren.post@freescale.com> | ||
| 7 | Signed-off-by: Evan Kotara <evan.kotara@freescale.com> | ||
| 8 | |||
| 9 | diff --git a/xf86drm.h b/xf86drm.h | ||
| 10 | --- a/xf86drm.h | ||
| 11 | +++ b/xf86drm.h | ||
| 12 | @@ -461,6 +461,23 @@ do { register unsigned int __old __asm(" | ||
| 13 | : "cr0", "memory"); \ | ||
| 14 | } while (0) | ||
| 15 | |||
| 16 | +#elif defined(__arm__) | ||
| 17 | + #undef DRM_DEV_MODE | ||
| 18 | + #define DRM_DEV_MODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH) | ||
| 19 | + | ||
| 20 | + #define DRM_CAS(lock,old,new,__ret) \ | ||
| 21 | + do { \ | ||
| 22 | + __asm__ __volatile__ ( \ | ||
| 23 | + "1: ldrex %0, [%1]\n" \ | ||
| 24 | + " teq %0, %2\n" \ | ||
| 25 | + " ite eq\n" \ | ||
| 26 | + " strexeq %0, %3, [%1]\n" \ | ||
| 27 | + " movne %0, #1\n" \ | ||
| 28 | + : "=&r" (__ret) \ | ||
| 29 | + : "r" (lock), "r" (old), "r" (new) \ | ||
| 30 | + : "cc","memory"); \ | ||
| 31 | + } while (0) | ||
| 32 | + | ||
| 33 | #endif /* architecture */ | ||
| 34 | #endif /* __GNUC__ >= 2 */ | ||
| 35 | |||
diff --git a/recipes-graphics/drm/libdrm_%.bbappend b/recipes-graphics/drm/libdrm_%.bbappend new file mode 100644 index 000000000..6bd7968d9 --- /dev/null +++ b/recipes-graphics/drm/libdrm_%.bbappend | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | ||
| 2 | |||
| 3 | SRC_URI_append_mx6 = " file://drm-update-arm.patch" | ||
| 4 | |||
| 5 | PACKAGE_ARCH_mx6 = "${MACHINE_SOCARCH}" | ||
