blob: 900aa4ecd617990c8ce0caf1c46fb2993c8233b5 [file] [log] [blame]
Jaya Kumar60b59be2007-05-08 00:37:37 -07001/*
2 * linux/drivers/video/fb_defio.c
3 *
4 * Copyright (C) 2006 Jaya Kumar
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
Jaya Kumarde7c6d12008-03-19 17:01:10 -07007 * License. See the file COPYING in the main directory of this archive
Jaya Kumar60b59be2007-05-08 00:37:37 -07008 * for more details.
9 */
10
11#include <linux/module.h>
12#include <linux/kernel.h>
13#include <linux/errno.h>
14#include <linux/string.h>
15#include <linux/mm.h>
Jaya Kumar60b59be2007-05-08 00:37:37 -070016#include <linux/vmalloc.h>
17#include <linux/delay.h>
18#include <linux/interrupt.h>
19#include <linux/fb.h>
20#include <linux/list.h>
Jaya Kumar60b59be2007-05-08 00:37:37 -070021
22/* to support deferred IO */
23#include <linux/rmap.h>
24#include <linux/pagemap.h>
25
H Hartley Sweeten43b1aee2012-05-02 17:23:40 -070026static struct page *fb_deferred_io_page(struct fb_info *info, unsigned long offs)
Magnus Damm37b48372008-12-19 15:34:32 +090027{
28 void *screen_base = (void __force *) info->screen_base;
29 struct page *page;
30
31 if (is_vmalloc_addr(screen_base + offs))
32 page = vmalloc_to_page(screen_base + offs);
33 else
34 page = pfn_to_page((info->fix.smem_start + offs) >> PAGE_SHIFT);
35
36 return page;
37}
38
Jaya Kumar60b59be2007-05-08 00:37:37 -070039/* this is to find and return the vmalloc-ed fb pages */
Nick Piggin529e55b2008-02-06 01:39:10 -080040static int fb_deferred_io_fault(struct vm_area_struct *vma,
41 struct vm_fault *vmf)
Jaya Kumar60b59be2007-05-08 00:37:37 -070042{
43 unsigned long offset;
44 struct page *page;
45 struct fb_info *info = vma->vm_private_data;
46
Nick Piggin529e55b2008-02-06 01:39:10 -080047 offset = vmf->pgoff << PAGE_SHIFT;
Jaya Kumar60b59be2007-05-08 00:37:37 -070048 if (offset >= info->fix.smem_len)
Nick Piggin529e55b2008-02-06 01:39:10 -080049 return VM_FAULT_SIGBUS;
Jaya Kumar60b59be2007-05-08 00:37:37 -070050
Magnus Damm37b48372008-12-19 15:34:32 +090051 page = fb_deferred_io_page(info, offset);
Jaya Kumar60b59be2007-05-08 00:37:37 -070052 if (!page)
Nick Piggin529e55b2008-02-06 01:39:10 -080053 return VM_FAULT_SIGBUS;
Jaya Kumar60b59be2007-05-08 00:37:37 -070054
55 get_page(page);
Jaya Kumarde7c6d12008-03-19 17:01:10 -070056
57 if (vma->vm_file)
58 page->mapping = vma->vm_file->f_mapping;
59 else
60 printk(KERN_ERR "no mapping available\n");
61
62 BUG_ON(!page->mapping);
63 page->index = vmf->pgoff;
64
Nick Piggin529e55b2008-02-06 01:39:10 -080065 vmf->page = page;
66 return 0;
Jaya Kumar60b59be2007-05-08 00:37:37 -070067}
68
Josef Bacik02c24a82011-07-16 20:44:56 -040069int fb_deferred_io_fsync(struct file *file, loff_t start, loff_t end, int datasync)
Paul Mundt5e841b82007-05-08 00:37:41 -070070{
71 struct fb_info *info = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -050072 struct inode *inode = file_inode(file);
Josef Bacik02c24a82011-07-16 20:44:56 -040073 int err = filemap_write_and_wait_range(inode->i_mapping, start, end);
74 if (err)
75 return err;
Paul Mundt5e841b82007-05-08 00:37:41 -070076
Thadeu Lima de Souza Cascardo94e2bd62009-10-16 15:20:49 +020077 /* Skip if deferred io is compiled-in but disabled on this fbdev */
Magnus Damm87884bd2008-12-19 15:34:09 +090078 if (!info->fbdefio)
79 return 0;
80
Josef Bacik02c24a82011-07-16 20:44:56 -040081 mutex_lock(&inode->i_mutex);
Paul Mundt5e841b82007-05-08 00:37:41 -070082 /* Kill off the delayed work */
Tejun Heoafe2c512010-12-14 16:21:17 +010083 cancel_delayed_work_sync(&info->deferred_work);
Paul Mundt5e841b82007-05-08 00:37:41 -070084
85 /* Run it immediately */
Josef Bacik02c24a82011-07-16 20:44:56 -040086 err = schedule_delayed_work(&info->deferred_work, 0);
87 mutex_unlock(&inode->i_mutex);
88 return err;
Paul Mundt5e841b82007-05-08 00:37:41 -070089}
90EXPORT_SYMBOL_GPL(fb_deferred_io_fsync);
91
Jaya Kumar60b59be2007-05-08 00:37:37 -070092/* vm_ops->page_mkwrite handler */
Adrian Bunk7bf1ea32007-05-08 00:37:38 -070093static int fb_deferred_io_mkwrite(struct vm_area_struct *vma,
Nick Pigginc2ec1752009-03-31 15:23:21 -070094 struct vm_fault *vmf)
Jaya Kumar60b59be2007-05-08 00:37:37 -070095{
Nick Pigginc2ec1752009-03-31 15:23:21 -070096 struct page *page = vmf->page;
Jaya Kumar60b59be2007-05-08 00:37:37 -070097 struct fb_info *info = vma->vm_private_data;
98 struct fb_deferred_io *fbdefio = info->fbdefio;
Jaya Kumarf31ad922008-07-12 13:47:51 -070099 struct page *cur;
Jaya Kumar60b59be2007-05-08 00:37:37 -0700100
101 /* this is a callback we get when userspace first tries to
102 write to the page. we schedule a workqueue. that workqueue
103 will eventually mkclean the touched pages and execute the
104 deferred framebuffer IO. then if userspace touches a page
105 again, we repeat the same scheme */
106
Jan Kara183fef92012-06-12 16:20:22 +0200107 file_update_time(vma->vm_file);
108
Jaya Kumar60b59be2007-05-08 00:37:37 -0700109 /* protect against the workqueue changing the page list */
110 mutex_lock(&fbdefio->lock);
Jaya Kumarf31ad922008-07-12 13:47:51 -0700111
Heiko Stübner1f45f9d2012-04-28 12:19:10 +0200112 /* first write in this cycle, notify the driver */
113 if (fbdefio->first_io && list_empty(&fbdefio->pagelist))
114 fbdefio->first_io(info);
115
Albert Herranzd6d03f92010-06-04 14:14:57 -0700116 /*
117 * We want the page to remain locked from ->page_mkwrite until
118 * the PTE is marked dirty to avoid page_mkclean() being called
119 * before the PTE is updated, which would leave the page ignored
120 * by defio.
121 * Do this by locking the page here and informing the caller
122 * about it with VM_FAULT_LOCKED.
123 */
124 lock_page(page);
125
Jaya Kumarf31ad922008-07-12 13:47:51 -0700126 /* we loop through the pagelist before adding in order
127 to keep the pagelist sorted */
128 list_for_each_entry(cur, &fbdefio->pagelist, lru) {
129 /* this check is to catch the case where a new
130 process could start writing to the same page
131 through a new pte. this new access can cause the
132 mkwrite even when the original ps's pte is marked
133 writable */
134 if (unlikely(cur == page))
135 goto page_already_added;
136 else if (cur->index > page->index)
137 break;
138 }
139
140 list_add_tail(&page->lru, &cur->lru);
141
142page_already_added:
Jaya Kumar60b59be2007-05-08 00:37:37 -0700143 mutex_unlock(&fbdefio->lock);
144
145 /* come back after delay to process the deferred IO */
146 schedule_delayed_work(&info->deferred_work, fbdefio->delay);
Albert Herranzd6d03f92010-06-04 14:14:57 -0700147 return VM_FAULT_LOCKED;
Jaya Kumar60b59be2007-05-08 00:37:37 -0700148}
149
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400150static const struct vm_operations_struct fb_deferred_io_vm_ops = {
Nick Piggin529e55b2008-02-06 01:39:10 -0800151 .fault = fb_deferred_io_fault,
Jaya Kumar60b59be2007-05-08 00:37:37 -0700152 .page_mkwrite = fb_deferred_io_mkwrite,
153};
154
Ian Campbelld8474712008-08-20 14:09:23 -0700155static int fb_deferred_io_set_page_dirty(struct page *page)
156{
157 if (!PageDirty(page))
158 SetPageDirty(page);
159 return 0;
160}
161
162static const struct address_space_operations fb_deferred_io_aops = {
163 .set_page_dirty = fb_deferred_io_set_page_dirty,
164};
165
Jaya Kumar60b59be2007-05-08 00:37:37 -0700166static int fb_deferred_io_mmap(struct fb_info *info, struct vm_area_struct *vma)
167{
168 vma->vm_ops = &fb_deferred_io_vm_ops;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -0700169 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Konrad Rzeszutek Wilk7164bb42009-12-03 10:31:56 -0500170 if (!(info->flags & FBINFO_VIRTFB))
171 vma->vm_flags |= VM_IO;
Jaya Kumar60b59be2007-05-08 00:37:37 -0700172 vma->vm_private_data = info;
173 return 0;
174}
175
176/* workqueue callback */
177static void fb_deferred_io_work(struct work_struct *work)
178{
179 struct fb_info *info = container_of(work, struct fb_info,
180 deferred_work.work);
Albert Herranz3f505ca2010-06-04 14:14:56 -0700181 struct list_head *node, *next;
182 struct page *cur;
Jaya Kumar60b59be2007-05-08 00:37:37 -0700183 struct fb_deferred_io *fbdefio = info->fbdefio;
184
185 /* here we mkclean the pages, then do all deferred IO */
186 mutex_lock(&fbdefio->lock);
Albert Herranz3f505ca2010-06-04 14:14:56 -0700187 list_for_each_entry(cur, &fbdefio->pagelist, lru) {
188 lock_page(cur);
189 page_mkclean(cur);
190 unlock_page(cur);
Jaya Kumar60b59be2007-05-08 00:37:37 -0700191 }
192
193 /* driver's callback with pagelist */
194 fbdefio->deferred_io(info, &fbdefio->pagelist);
195
Albert Herranz3f505ca2010-06-04 14:14:56 -0700196 /* clear the list */
197 list_for_each_safe(node, next, &fbdefio->pagelist) {
Jaya Kumar60b59be2007-05-08 00:37:37 -0700198 list_del(node);
199 }
200 mutex_unlock(&fbdefio->lock);
201}
202
203void fb_deferred_io_init(struct fb_info *info)
204{
205 struct fb_deferred_io *fbdefio = info->fbdefio;
206
207 BUG_ON(!fbdefio);
208 mutex_init(&fbdefio->lock);
209 info->fbops->fb_mmap = fb_deferred_io_mmap;
210 INIT_DELAYED_WORK(&info->deferred_work, fb_deferred_io_work);
211 INIT_LIST_HEAD(&fbdefio->pagelist);
212 if (fbdefio->delay == 0) /* set a default of 1 s */
213 fbdefio->delay = HZ;
214}
215EXPORT_SYMBOL_GPL(fb_deferred_io_init);
216
Ian Campbelld8474712008-08-20 14:09:23 -0700217void fb_deferred_io_open(struct fb_info *info,
218 struct inode *inode,
219 struct file *file)
220{
221 file->f_mapping->a_ops = &fb_deferred_io_aops;
222}
223EXPORT_SYMBOL_GPL(fb_deferred_io_open);
224
Jaya Kumar60b59be2007-05-08 00:37:37 -0700225void fb_deferred_io_cleanup(struct fb_info *info)
226{
227 struct fb_deferred_io *fbdefio = info->fbdefio;
Jaya Kumarde7c6d12008-03-19 17:01:10 -0700228 struct page *page;
229 int i;
Jaya Kumar60b59be2007-05-08 00:37:37 -0700230
231 BUG_ON(!fbdefio);
Tejun Heo181b74e2011-06-15 16:57:21 +0200232 cancel_delayed_work_sync(&info->deferred_work);
Jaya Kumarde7c6d12008-03-19 17:01:10 -0700233
234 /* clear out the mapping that we setup */
235 for (i = 0 ; i < info->fix.smem_len; i += PAGE_SIZE) {
Magnus Damm37b48372008-12-19 15:34:32 +0900236 page = fb_deferred_io_page(info, i);
Jaya Kumarde7c6d12008-03-19 17:01:10 -0700237 page->mapping = NULL;
238 }
Magnus Damm6e1038a2008-12-19 15:34:23 +0900239
240 info->fbops->fb_mmap = NULL;
241 mutex_destroy(&fbdefio->lock);
Jaya Kumar60b59be2007-05-08 00:37:37 -0700242}
243EXPORT_SYMBOL_GPL(fb_deferred_io_cleanup);
244
245MODULE_LICENSE("GPL");