2 * linux/drivers/video/fb_defio.c
4 * Copyright (C) 2006 Jaya Kumar
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive
11 #include <linux/module.h>
12 #include <linux/kernel.h>
13 #include <linux/errno.h>
14 #include <linux/string.h>
16 #include <linux/vmalloc.h>
17 #include <linux/delay.h>
18 #include <linux/interrupt.h>
20 #include <linux/list.h>
22 /* to support deferred IO */
23 #include <linux/rmap.h>
24 #include <linux/pagemap.h>
26 struct page
*fb_deferred_io_page(struct fb_info
*info
, unsigned long offs
)
28 void *screen_base
= (void __force
*) info
->screen_base
;
31 if (is_vmalloc_addr(screen_base
+ offs
))
32 page
= vmalloc_to_page(screen_base
+ offs
);
34 page
= pfn_to_page((info
->fix
.smem_start
+ offs
) >> PAGE_SHIFT
);
39 /* this is to find and return the vmalloc-ed fb pages */
40 static int fb_deferred_io_fault(struct vm_area_struct
*vma
,
45 struct fb_info
*info
= vma
->vm_private_data
;
47 offset
= vmf
->pgoff
<< PAGE_SHIFT
;
48 if (offset
>= info
->fix
.smem_len
)
49 return VM_FAULT_SIGBUS
;
51 page
= fb_deferred_io_page(info
, offset
);
53 return VM_FAULT_SIGBUS
;
58 page
->mapping
= vma
->vm_file
->f_mapping
;
60 printk(KERN_ERR
"no mapping available\n");
62 BUG_ON(!page
->mapping
);
63 page
->index
= vmf
->pgoff
;
69 int fb_deferred_io_fsync(struct file
*file
, struct dentry
*dentry
, int datasync
)
71 struct fb_info
*info
= file
->private_data
;
73 /* Skip if deferred io is compiled-in but disabled on this fbdev */
77 /* Kill off the delayed work */
78 cancel_rearming_delayed_work(&info
->deferred_work
);
80 /* Run it immediately */
81 return schedule_delayed_work(&info
->deferred_work
, 0);
83 EXPORT_SYMBOL_GPL(fb_deferred_io_fsync
);
85 /* vm_ops->page_mkwrite handler */
86 static int fb_deferred_io_mkwrite(struct vm_area_struct
*vma
,
89 struct page
*page
= vmf
->page
;
90 struct fb_info
*info
= vma
->vm_private_data
;
91 struct fb_deferred_io
*fbdefio
= info
->fbdefio
;
94 /* this is a callback we get when userspace first tries to
95 write to the page. we schedule a workqueue. that workqueue
96 will eventually mkclean the touched pages and execute the
97 deferred framebuffer IO. then if userspace touches a page
98 again, we repeat the same scheme */
100 /* protect against the workqueue changing the page list */
101 mutex_lock(&fbdefio
->lock
);
103 /* we loop through the pagelist before adding in order
104 to keep the pagelist sorted */
105 list_for_each_entry(cur
, &fbdefio
->pagelist
, lru
) {
106 /* this check is to catch the case where a new
107 process could start writing to the same page
108 through a new pte. this new access can cause the
109 mkwrite even when the original ps's pte is marked
111 if (unlikely(cur
== page
))
112 goto page_already_added
;
113 else if (cur
->index
> page
->index
)
117 list_add_tail(&page
->lru
, &cur
->lru
);
120 mutex_unlock(&fbdefio
->lock
);
122 /* come back after delay to process the deferred IO */
123 schedule_delayed_work(&info
->deferred_work
, fbdefio
->delay
);
127 static const struct vm_operations_struct fb_deferred_io_vm_ops
= {
128 .fault
= fb_deferred_io_fault
,
129 .page_mkwrite
= fb_deferred_io_mkwrite
,
132 static int fb_deferred_io_set_page_dirty(struct page
*page
)
134 if (!PageDirty(page
))
139 static const struct address_space_operations fb_deferred_io_aops
= {
140 .set_page_dirty
= fb_deferred_io_set_page_dirty
,
143 static int fb_deferred_io_mmap(struct fb_info
*info
, struct vm_area_struct
*vma
)
145 vma
->vm_ops
= &fb_deferred_io_vm_ops
;
146 vma
->vm_flags
|= ( VM_RESERVED
| VM_DONTEXPAND
);
147 if (!(info
->flags
& FBINFO_VIRTFB
))
148 vma
->vm_flags
|= VM_IO
;
149 vma
->vm_private_data
= info
;
153 /* workqueue callback */
154 static void fb_deferred_io_work(struct work_struct
*work
)
156 struct fb_info
*info
= container_of(work
, struct fb_info
,
158 struct fb_deferred_io
*fbdefio
= info
->fbdefio
;
159 struct page
*page
, *tmp_page
;
160 struct list_head
*node
, *tmp_node
;
161 struct list_head non_dirty
;
163 INIT_LIST_HEAD(&non_dirty
);
165 /* here we mkclean the pages, then do all deferred IO */
166 mutex_lock(&fbdefio
->lock
);
167 list_for_each_entry_safe(page
, tmp_page
, &fbdefio
->pagelist
, lru
) {
170 * The workqueue callback can be triggered after a
171 * ->page_mkwrite() call but before the PTE has been marked
172 * dirty. In this case page_mkclean() won't "rearm" the page.
174 * To avoid this, remove those "non-dirty" pages from the
175 * pagelist before calling the driver's callback, then add
176 * them back to get processed on the next work iteration.
177 * At that time, their PTEs will hopefully be dirty for real.
179 if (!page_mkclean(page
))
180 list_move_tail(&page
->lru
, &non_dirty
);
184 /* driver's callback with pagelist */
185 fbdefio
->deferred_io(info
, &fbdefio
->pagelist
);
187 /* clear the list... */
188 list_for_each_safe(node
, tmp_node
, &fbdefio
->pagelist
) {
191 /* ... and add back the "non-dirty" pages to the list */
192 list_splice_tail(&non_dirty
, &fbdefio
->pagelist
);
193 mutex_unlock(&fbdefio
->lock
);
196 void fb_deferred_io_init(struct fb_info
*info
)
198 struct fb_deferred_io
*fbdefio
= info
->fbdefio
;
201 mutex_init(&fbdefio
->lock
);
202 info
->fbops
->fb_mmap
= fb_deferred_io_mmap
;
203 INIT_DELAYED_WORK(&info
->deferred_work
, fb_deferred_io_work
);
204 INIT_LIST_HEAD(&fbdefio
->pagelist
);
205 if (fbdefio
->delay
== 0) /* set a default of 1 s */
208 EXPORT_SYMBOL_GPL(fb_deferred_io_init
);
210 void fb_deferred_io_open(struct fb_info
*info
,
214 file
->f_mapping
->a_ops
= &fb_deferred_io_aops
;
216 EXPORT_SYMBOL_GPL(fb_deferred_io_open
);
218 void fb_deferred_io_cleanup(struct fb_info
*info
)
220 struct fb_deferred_io
*fbdefio
= info
->fbdefio
;
221 struct list_head
*node
, *tmp_node
;
226 cancel_delayed_work(&info
->deferred_work
);
227 flush_scheduled_work();
229 /* the list may have still some non-dirty pages at this point */
230 mutex_lock(&fbdefio
->lock
);
231 list_for_each_safe(node
, tmp_node
, &fbdefio
->pagelist
) {
234 mutex_unlock(&fbdefio
->lock
);
236 /* clear out the mapping that we setup */
237 for (i
= 0 ; i
< info
->fix
.smem_len
; i
+= PAGE_SIZE
) {
238 page
= fb_deferred_io_page(info
, i
);
239 page
->mapping
= NULL
;
242 info
->fbops
->fb_mmap
= NULL
;
243 mutex_destroy(&fbdefio
->lock
);
245 EXPORT_SYMBOL_GPL(fb_deferred_io_cleanup
);
247 MODULE_LICENSE("GPL");