[Xf86-video-armsoc] [PATCH] add sti driver support

Benjamin Gaignard benjamin.gaignard at linaro.org
Tue May 17 11:34:49 UTC 2016


looping david and marico

2016-05-13 10:36 GMT+02:00 Benjamin Gaignard <benjamin.gaignard at linaro.org>:
> Signed-off-by: Benjamin Gaignard <benjamin.gaignard at linaro.org>
> ---
>  README                        |  1 +
>  src/Makefile.am               |  4 +-
>  src/armsoc_driver.c           |  1 +
>  src/drmmode_driver.h          |  2 +-
>  src/drmmode_sti/drmmode_sti.c | 85 +++++++++++++++++++++++++++++++++++++++++++
>  5 files changed, 90 insertions(+), 3 deletions(-)
>  create mode 100644 src/drmmode_sti/drmmode_sti.c
>
> diff --git a/README b/README
> index 36b9782..707356a 100644
> --- a/README
> +++ b/README
> @@ -12,6 +12,7 @@ The currently supported DRM drivers are:
>  - pl111
>  - exynos
>  - kirin
> +- sti
>
>  For other drivers, you will need to implement this support yourself. A template implementation is
>  provided in src/drmmode_template.
> diff --git a/src/Makefile.am b/src/Makefile.am
> index 07cd626..32bd296 100644
> --- a/src/Makefile.am
> +++ b/src/Makefile.am
> @@ -42,8 +42,8 @@ armsoc_drv_la_LIBADD = @XORG_LIBS@
>  armsoc_drv_ladir = @moduledir@/drivers
>  DRMMODE_SRCS = drmmode_exynos/drmmode_exynos.c \
>         drmmode_pl111/drmmode_pl111.c \
> -       drmmode_kirin/drmmode_kirin.c
> -
> +       drmmode_kirin/drmmode_kirin.c \
> +       drmmode_sti/drmmode_sti.c
>
>  armsoc_drv_la_SOURCES = \
>           drmmode_display.c \
> diff --git a/src/armsoc_driver.c b/src/armsoc_driver.c
> index 0bf2b21..83e74a7 100644
> --- a/src/armsoc_driver.c
> +++ b/src/armsoc_driver.c
> @@ -736,6 +736,7 @@ static struct drmmode_interface *get_drmmode_implementation(int drm_fd)
>                 &exynos_interface,
>                 &pl111_interface,
>                 &kirin_interface,
> +               &sti_interface,
>         };
>         int i;
>
> diff --git a/src/drmmode_driver.h b/src/drmmode_driver.h
> index edc87c7..12c88ea 100644
> --- a/src/drmmode_driver.h
> +++ b/src/drmmode_driver.h
> @@ -105,6 +105,6 @@ struct drmmode_interface {
>  extern struct drmmode_interface exynos_interface;
>  extern struct drmmode_interface pl111_interface;
>  extern struct drmmode_interface kirin_interface;
> -
> +extern struct drmmode_interface sti_interface;
>
>  #endif
> diff --git a/src/drmmode_sti/drmmode_sti.c b/src/drmmode_sti/drmmode_sti.c
> new file mode 100644
> index 0000000..cba4f3e
> --- /dev/null
> +++ b/src/drmmode_sti/drmmode_sti.c
> @@ -0,0 +1,85 @@
> +/*
> + * Copyright © 2013 ARM 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 "../drmmode_driver.h"
> +#include <stddef.h>
> +#include <xf86drmMode.h>
> +#include <xf86drm.h>
> +#include <sys/ioctl.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
> + */
> +#define CURSORW  (64)
> +#define CURSORH  (64)
> +
> +/*
> + * Padding added down each side of cursor image. This is a workaround for a bug
> + * causing corruption when the cursor reaches the screen edges.
> + */
> +#define CURSORPAD (16)
> +
> +/* Optional function */
> +static int init_plane_for_cursor(int drm_fd, uint32_t plane_id)
> +{
> +       return 0;
> +}
> +
> +static int create_custom_gem(int fd, struct armsoc_create_gem *create_gem)
> +{
> +       struct drm_mode_create_dumb create_arg;
> +       int ret;
> +
> +       memset (&create_arg, 0, sizeof (create_arg));
> +       create_arg.bpp = create_gem->bpp;
> +       create_arg.width = create_gem->width;
> +       create_arg.height = create_gem->height;
> +
> +       ret = ioctl (fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_arg);
> +       if (ret)
> +               return ret;
> +
> +       /* Convert custom create_exynos to generic create_gem */
> +       create_gem->handle = create_arg.handle;
> +       create_gem->pitch = create_arg.pitch;
> +       create_gem->size = create_gem->height * create_arg.pitch;
> +
> +       return 0;
> +}
> +
> +struct drmmode_interface sti_interface = {
> +       "sti"                 /* name of drm driver */,
> +       1                     /* use_page_flip_events */,
> +       1                     /* use_early_display */,
> +       CURSORW               /* cursor width */,
> +       CURSORH               /* cursor_height */,
> +       CURSORPAD             /* cursor padding */,
> +       HWCURSOR_API_STANDARD /* cursor_api */,
> +       init_plane_for_cursor /* init_plane_for_cursor */,
> +       0                     /* vblank_query_supported */,
> +       create_custom_gem     /* create_custom_gem */,
> +};
> --
> 1.9.1
>



-- 
Benjamin Gaignard

Graphic Working Group

Linaro.org │ Open source software for ARM SoCs

Follow Linaro: Facebook | Twitter | Blog


More information about the Xf86-video-armsoc mailing list