From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Benjamin Gaignard <benjamin.gaignard@linaro.org>
Cc: linaro-kernel@lists.linaro.org, philippe.cornu@st.com,
dri-devel@lists.freedesktop.org, yannick.fertre@st.com,
airlied@redhat.com
Subject: Re: [RFC v2 1/1] drm: allow to use mmuless SoC
Date: Wed, 30 Nov 2016 15:27:50 +0200 [thread overview]
Message-ID: <2769998.5VYBadpHjt@avalon> (raw)
In-Reply-To: <1480511958-10266-1-git-send-email-benjamin.gaignard@linaro.org>
Hi Benjamin,
Thank you for the patch.
On Wednesday 30 Nov 2016 14:19:18 Benjamin Gaignard wrote:
> Some SoC without MMU have display driver where a drm/kms driver
> could be implemented.
> Before doing such kind of thing drm/kms must allow to use mmuless
> devices.
> This patch propose to remove MMU configuration flag and add some
> cma helpers functions to help implementing mmuless display driver
>
> version 2:
> - define get_fb_unmapped_area() in drivers/video/fbdev/core/fbmem.c
> if HAVE_ARCH_FB_UNMAPPED_AREA is set and get_fb_unmapped_area not
> already defined in the architecture
>
> Signed-off-by: Benjamin Gaignard <benjamin.gaignard@linaro.org>
> ---
> drivers/gpu/drm/Kconfig | 4 +--
> drivers/gpu/drm/drm_fb_cma_helper.c | 4 +++
> drivers/gpu/drm/drm_gem_cma_helper.c | 62 +++++++++++++++++++++++++++++++++
> drivers/gpu/drm/drm_vm.c | 4 +++
> drivers/video/fbdev/core/fbmem.c | 15 +++++++++
> include/drm/drm_gem_cma_helper.h | 6 ++++
> 6 files changed, 93 insertions(+), 2 deletions(-)
[snip]
> diff --git a/drivers/video/fbdev/core/fbmem.c
> b/drivers/video/fbdev/core/fbmem.c index 76c1ad9..54488ee 100644
> --- a/drivers/video/fbdev/core/fbmem.c
> +++ b/drivers/video/fbdev/core/fbmem.c
> @@ -1492,6 +1492,21 @@ static long fb_compat_ioctl(struct file *file,
> unsigned int cmd, return 0;
> }
>
> +#if defined(HAVE_ARCH_FB_UNMAPPED_AREA) && !defined(get_fb_unmapped_area)
Only blackfin and sparc define HAVE_ARCH_FB_UNMAPPED_AREA, and both of them
provide an implementation of get_fb_unmapped_area().
> +unsigned long get_fb_unmapped_area(struct file *filp,
> + unsigned long addr, unsigned long len,
> + unsigned long pgoff, unsigned long flags)
> +{
> + struct fb_info * const info = filp->private_data;
> + unsigned long fb_size = PAGE_ALIGN(info->fix.smem_len);
> +
> + if (pgoff > fb_size || len > fb_size - pgoff)
> + return -EINVAL;
> +
> + return (unsigned long)info->screen_base + pgoff;
> +}
> +#endif
> +
> static const struct file_operations fb_fops = {
> .owner = THIS_MODULE,
> .read = fb_read,
[snip]
--
Regards,
Laurent Pinchart
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2016-11-30 13:27 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-30 13:19 [RFC v2 1/1] drm: allow to use mmuless SoC Benjamin Gaignard
2016-11-30 13:27 ` Laurent Pinchart [this message]
2016-12-01 6:56 ` Daniel Vetter
2016-12-01 7:03 ` Benjamin Gaignard
2016-12-01 7:21 ` Benjamin Gaignard
2016-12-01 8:21 ` Daniel Vetter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2769998.5VYBadpHjt@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=airlied@redhat.com \
--cc=benjamin.gaignard@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=linaro-kernel@lists.linaro.org \
--cc=philippe.cornu@st.com \
--cc=yannick.fertre@st.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.