From: Anatolij Gustschin <agust@denx.de>
To: linux-fbdev@vger.kernel.org
Subject: [PATCH 2/2] sm501fb.c: support mmap on PPC440SPe/PPC440EPx
Date: Wed, 26 May 2010 09:57:43 +0000 [thread overview]
Message-ID: <1274867863-4238-2-git-send-email-agust@denx.de> (raw)
Add driver specific mmap function to be able to mmap
frame buffer on PPC440SPe/PPC440EPx platforms. This
is needed because mmaping of the 36-bit physical
address of the frame buffer or MMIO is not supported
in generic fb_mmap().
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Cc: Ben Dooks <ben@simtec.co.uk>
Cc: Simtec Linux Team <linux@simtec.co.uk>
---
drivers/video/sm501fb.c | 52 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 52 insertions(+), 0 deletions(-)
diff --git a/drivers/video/sm501fb.c b/drivers/video/sm501fb.c
index 0b59112..9cdc298 100644
--- a/drivers/video/sm501fb.c
+++ b/drivers/video/sm501fb.c
@@ -1426,6 +1426,52 @@ static void sm501fb_fillrect(struct fb_info *info, const struct fb_fillrect *rec
writel(0x800100cc, fbi->regs2d + SM501_2D_CONTROL);
}
+#if defined(CONFIG_440EPX) || defined(CONFIG_440SPe)
+static int sm501fb_mmap(struct fb_info *info,
+ struct vm_area_struct *vma)
+{
+ struct sm501fb_par *par = info->par;
+ struct sm501fb_info *fbi = par->info;
+ unsigned long long start;
+ unsigned long len, off, map_off;
+
+ off = vma->vm_pgoff << PAGE_SHIFT;
+ /*
+ * Get 36-bit base address of the frame buffer memory.
+ * Since it was previously truncated while assigning to
+ * fix.smem_start, we retrieve correct address here.
+ */
+ start = (fbi->fbmem_res->start & 0xf00000000ULL) +
+ info->fix.smem_start;
+ len = PAGE_ALIGN((start & ~PAGE_MASK) + info->fix.smem_len);
+
+ if (off >= len) {
+ /* memory mapped io */
+ off -= len;
+ if (info->var.accel_flags)
+ return -EINVAL;
+ start = fbi->regs_res->start;
+ len = PAGE_ALIGN((start & ~PAGE_MASK) +
+ resource_size(fbi->regs_res));
+ }
+
+ start &= PAGE_MASK;
+ if ((vma->vm_end - vma->vm_start + off) > len)
+ return -EINVAL;
+
+ map_off = (unsigned long)((off + start) >> PAGE_SHIFT);
+ vma->vm_pgoff = map_off;
+
+ vma->vm_flags |= VM_IO | VM_RESERVED;
+ vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
+ if (io_remap_pfn_range(vma, vma->vm_start, map_off,
+ vma->vm_end - vma->vm_start,
+ vma->vm_page_prot))
+ return -EAGAIN;
+
+ return 0;
+}
+#endif
static struct fb_ops sm501fb_ops_crt = {
.owner = THIS_MODULE,
@@ -1439,6 +1485,9 @@ static struct fb_ops sm501fb_ops_crt = {
.fb_copyarea = sm501fb_copyarea,
.fb_imageblit = cfb_imageblit,
.fb_sync = sm501fb_sync,
+#if defined(CONFIG_440EPX) || defined(CONFIG_440SPe)
+ .fb_mmap = sm501fb_mmap,
+#endif
};
static struct fb_ops sm501fb_ops_pnl = {
@@ -1453,6 +1502,9 @@ static struct fb_ops sm501fb_ops_pnl = {
.fb_copyarea = sm501fb_copyarea,
.fb_imageblit = cfb_imageblit,
.fb_sync = sm501fb_sync,
+#if defined(CONFIG_440EPX) || defined(CONFIG_440SPe)
+ .fb_mmap = sm501fb_mmap,
+#endif
};
/* sm501_init_cursor
--
1.6.2.5
next reply other threads:[~2010-05-26 9:57 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-26 9:57 Anatolij Gustschin [this message]
2010-05-26 11:13 ` [PATCH 2/2] sm501fb.c: support mmap on PPC440SPe/PPC440EPx Ben Dooks
2010-05-26 13:50 ` Anatolij Gustschin
2010-05-28 23:48 ` Andrew Morton
2010-05-30 6:01 ` Ben Dooks
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=1274867863-4238-2-git-send-email-agust@denx.de \
--to=agust@denx.de \
--cc=linux-fbdev@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).