[Xf86-video-armsoc] [PATCH] Add Hisilicon Kirin drmmode driver
Xinliang Liu
xinliang.liu at linaro.org
Mon Feb 29 02:42:52 UTC 2016
From: "xinliang.liu" <xinliang.liu at linaro.org>
This patch add support for Hisilicon kirin DRM driver.
And it has been tested on HiKey 96boards.
Add kirin drmmode driver.
Add support for dynamically detect drmmode driver.
Let pitch 8 bytes align.
Signed-off-by: Xinliang Liu <xinliang.liu at linaro.org>
---
src/Makefile.am | 3 +-
src/armsoc_driver.c | 1 +
src/drmmode_driver.h | 1 +
src/drmmode_kirin/drmmode_kirin.c | 81 +++++++++++++++++++++++++++++++++++++++
4 files changed, 85 insertions(+), 1 deletion(-)
create mode 100644 src/drmmode_kirin/drmmode_kirin.c
diff --git a/src/Makefile.am b/src/Makefile.am
index e5bfe8b1bf83..07cd626f672e 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -41,7 +41,8 @@ armsoc_drv_la_LDFLAGS = -module -avoid-version -no-undefined
armsoc_drv_la_LIBADD = @XORG_LIBS@
armsoc_drv_ladir = @moduledir@/drivers
DRMMODE_SRCS = drmmode_exynos/drmmode_exynos.c \
- drmmode_pl111/drmmode_pl111.c
+ drmmode_pl111/drmmode_pl111.c \
+ drmmode_kirin/drmmode_kirin.c
armsoc_drv_la_SOURCES = \
diff --git a/src/armsoc_driver.c b/src/armsoc_driver.c
index f21d8efbce10..0bf2b21bf32a 100644
--- a/src/armsoc_driver.c
+++ b/src/armsoc_driver.c
@@ -735,6 +735,7 @@ static struct drmmode_interface *get_drmmode_implementation(int drm_fd)
struct drmmode_interface *ifaces[] = {
&exynos_interface,
&pl111_interface,
+ &kirin_interface,
};
int i;
diff --git a/src/drmmode_driver.h b/src/drmmode_driver.h
index 55c8b8a50549..edc87c7a0c56 100644
--- a/src/drmmode_driver.h
+++ b/src/drmmode_driver.h
@@ -104,6 +104,7 @@ struct drmmode_interface {
extern struct drmmode_interface exynos_interface;
extern struct drmmode_interface pl111_interface;
+extern struct drmmode_interface kirin_interface;
#endif
diff --git a/src/drmmode_kirin/drmmode_kirin.c b/src/drmmode_kirin/drmmode_kirin.c
new file mode 100644
index 000000000000..f1316d44c2f7
--- /dev/null
+++ b/src/drmmode_kirin/drmmode_kirin.c
@@ -0,0 +1,81 @@
+/*
+ * Copyright © 2016 Linaro Limited.
+ * Copyright © 2016 Hisilicon Limited.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ */
+
+#include <xf86drm.h>
+#include "../drmmode_driver.h"
+
+/* Cursor dimensions
+ * Technically we probably don't have any size limit.. since we
+ * are just using an overlay... but xserver will always create
+ * cursor images in the max size, so don't use width/height values
+ * that are too big
+ */
+/* width */
+#define CURSORW (64)
+/* height */
+#define CURSORH (64)
+/* Padding added down each side of cursor image */
+#define CURSORPAD (0)
+
+#define ALIGN(val, align) (((val) + (align) - 1) & ~((align) - 1))
+
+static int create_custom_gem(int fd, struct armsoc_create_gem *create_gem)
+{
+ struct drm_mode_create_dumb arg;
+ unsigned int pitch;
+ int ret;
+
+ /* For 32bpp mali 450GPU needs pitch 8 bytes alignment */
+ pitch = ALIGN(create_gem->width * ((create_gem->bpp + 7) / 8), 8);
+ memset(&arg, 0, sizeof(arg));
+ arg.width = create_gem->width;
+ arg.height = create_gem->height;
+ arg.bpp = create_gem->bpp;
+ arg.pitch = pitch;
+ arg.size = pitch * create_gem->height;
+
+ ret = drmIoctl(fd, DRM_IOCTL_MODE_CREATE_DUMB, &arg);
+ if (ret)
+ return ret;
+
+ create_gem->handle = arg.handle;
+ create_gem->pitch = arg.pitch;
+ create_gem->size = arg.size;
+
+ return 0;
+}
+
+struct drmmode_interface kirin_interface = {
+ "kirin" /* name of drm driver */,
+ 1 /* use_page_flip_events */,
+ 1 /* use_early_display */,
+ CURSORW /* cursor width */,
+ CURSORH /* cursor_height */,
+ CURSORPAD /* cursor padding */,
+ HWCURSOR_API_NONE /* software cursor */,
+ NULL /* no plane for cursor */,
+ 0 /* vblank_query_supported */,
+ create_custom_gem /* create_custom_gem */,
+};
--
2.7.1
More information about the Xf86-video-armsoc
mailing list