All of lore.kernel.org
 help / color / mirror / Atom feed
* libdrm/exynos: fix usage of removed ioctls
@ 2015-01-16 22:57 Tobias Jakobi
  2015-01-16 22:57 ` [PATCH 1/2] exynos: Don't use DRM_EXYNOS_GEM_{MAP_OFFSET/MMAP} ioctls Tobias Jakobi
  2015-01-16 22:57 ` [PATCH 2/2] exynos: remove " Tobias Jakobi
  0 siblings, 2 replies; 9+ messages in thread
From: Tobias Jakobi @ 2015-01-16 22:57 UTC (permalink / raw)
  To: dri-devel; +Cc: linux-samsung-soc

Hello,

these two patches are needed for the exynos component of libdrm to
properly work again. With the current stable 3.18.x the 'exynos_bo_map'
call is broken, making it impossible to get data from userspace into
a DRM buffer.

The patches were sent by Hyungwon Hwang some while ago, but the first
one was very much broken, so I fixed it up. I've put the changelog
into the commit message itself.

Please apply so that the exynos component is useable again.

With best wishes,
Tobias

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PATCH 1/2] exynos: Don't use DRM_EXYNOS_GEM_{MAP_OFFSET/MMAP} ioctls
@ 2014-10-31  1:28 Hyungwon Hwang
  2014-11-19  2:02 ` Inki Dae
  0 siblings, 1 reply; 9+ messages in thread
From: Hyungwon Hwang @ 2014-10-31  1:28 UTC (permalink / raw)
  To: dri-devel, inki.dae, jy0922.shim; +Cc: Hyungwon Hwang

The ioctl DRM_EXYNOS_GEM_MAP_OFFSET and DRM_EXYNOS_GEM_MMAP are removed from
the linux kernel. This patch modifies libdrm and libkms to use drm generic
ioctls instead of the removed ioctls.

Signed-off-by: Hyungwon Hwang <human.hwang@samsung.com>
---
 exynos/exynos_drm.c | 24 +++++++++++++-----------
 libkms/exynos.c     |  7 ++++---
 2 files changed, 17 insertions(+), 14 deletions(-)

diff --git a/exynos/exynos_drm.c b/exynos/exynos_drm.c
index 4c7dd13..4cb6a6d 100644
--- a/exynos/exynos_drm.c
+++ b/exynos/exynos_drm.c
@@ -283,20 +283,22 @@ drm_public void *exynos_bo_map(struct exynos_bo *bo)
 {
 	if (!bo->vaddr) {
 		struct exynos_device *dev = bo->dev;
-		struct drm_exynos_gem_mmap req = {
-			.handle = bo->handle,
-			.size	= bo->size,
-		};
+		struct drm_mode_map_dumb arg;
+		void *map = NULL;
 		int ret;
 
-		ret = drmIoctl(dev->fd, DRM_IOCTL_EXYNOS_GEM_MMAP, &req);
-		if (ret) {
-			fprintf(stderr, "failed to mmap[%s].\n",
-				strerror(errno));
-			return NULL;
-		}
+		memset(&arg, 0, sizeof(arg));
+		arg.handle = bo->handle;
+
+		ret = drmIoctl(dev->fd, DRM_IOCTL_MODE_MAP_DUMB, &arg);
+		if (ret)
+			return ret;
 
-		bo->vaddr = (void *)(uintptr_t)req.mapped;
+		map = drm_mmap(0, bo->size, PROT_READ | PROT_WRITE, MAP_SHARED,
+				dev->fd, arg.offset);
+
+		if (map == MAP_FAILED)
+			return NULL;
 	}
 
 	return bo->vaddr;
diff --git a/libkms/exynos.c b/libkms/exynos.c
index 92e329c..1123482 100644
--- a/libkms/exynos.c
+++ b/libkms/exynos.c
@@ -25,6 +25,7 @@
 #include <sys/ioctl.h>
 #include "xf86drm.h"
 
+#include "libdrm.h"
 #include "exynos_drm.h"
 
 struct exynos_bo
@@ -124,7 +125,7 @@ static int
 exynos_bo_map(struct kms_bo *_bo, void **out)
 {
 	struct exynos_bo *bo = (struct exynos_bo *)_bo;
-	struct drm_exynos_gem_map_off arg;
+	struct drm_mode_map_dumb arg;
 	void *map = NULL;
 	int ret;
 
@@ -137,11 +138,11 @@ exynos_bo_map(struct kms_bo *_bo, void **out)
 	memset(&arg, 0, sizeof(arg));
 	arg.handle = bo->base.handle;
 
-	ret = drmCommandWriteRead(bo->base.kms->fd, DRM_EXYNOS_GEM_MAP_OFFSET, &arg, sizeof(arg));
+	ret = drmIoctl(bo->base.kms->fd, DRM_IOCTL_MODE_MAP_DUMB, &arg);
 	if (ret)
 		return ret;
 
-	map = mmap(0, bo->base.size, PROT_READ | PROT_WRITE, MAP_SHARED, bo->base.kms->fd, arg.offset);
+	map = drm_mmap(0, bo->base.size, PROT_READ | PROT_WRITE, MAP_SHARED, bo->base.kms->fd, arg.offset);
 	if (map == MAP_FAILED)
 		return -errno;
 
-- 
1.8.3.2

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2015-01-27  2:56 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-16 22:57 libdrm/exynos: fix usage of removed ioctls Tobias Jakobi
2015-01-16 22:57 ` [PATCH 1/2] exynos: Don't use DRM_EXYNOS_GEM_{MAP_OFFSET/MMAP} ioctls Tobias Jakobi
2015-01-26  1:42   ` Hyungwon Hwang
2015-01-26 19:05     ` Emil Velikov
2015-01-27  1:05       ` Hyungwon Hwang
2015-01-27  2:56         ` Emil Velikov
2015-01-16 22:57 ` [PATCH 2/2] exynos: remove " Tobias Jakobi
  -- strict thread matches above, loose matches on Subject: below --
2014-10-31  1:28 [PATCH 1/2] exynos: Don't use " Hyungwon Hwang
2014-11-19  2:02 ` Inki Dae

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.