]>
Commit | Line | Data |
---|---|---|
aad09e51 | 1 | /* |
0e27aa3d | 2 | * linux/drivers/video/hecubafb.c -- FB driver for Hecuba/Apollo controller |
aad09e51 JK |
3 | * |
4 | * Copyright (C) 2006, Jaya Kumar | |
5 | * This work was sponsored by CIS(M) Sdn Bhd | |
6 | * | |
7 | * This file is subject to the terms and conditions of the GNU General Public | |
8 | * License. See the file COPYING in the main directory of this archive for | |
9 | * more details. | |
10 | * | |
11 | * Layout is based on skeletonfb.c by James Simmons and Geert Uytterhoeven. | |
12 | * This work was possible because of apollo display code from E-Ink's website | |
13 | * http://support.eink.com/community | |
14 | * All information used to write this code is from public material made | |
15 | * available by E-Ink on its support site. Some commands such as 0xA4 | |
16 | * were found by looping through cmd=0x00 thru 0xFF and supplying random | |
17 | * values. There are other commands that the display is capable of, | |
18 | * beyond the 5 used here but they are more complex. | |
19 | * | |
0e27aa3d JK |
20 | * This driver is written to be used with the Hecuba display architecture. |
21 | * The actual display chip is called Apollo and the interface electronics | |
22 | * it needs is called Hecuba. | |
aad09e51 | 23 | * |
0e27aa3d JK |
24 | * It is intended to be architecture independent. A board specific driver |
25 | * must be used to perform all the physical IO interactions. An example | |
26 | * is provided as n411.c | |
aad09e51 JK |
27 | * |
28 | */ | |
29 | ||
30 | #include <linux/module.h> | |
31 | #include <linux/kernel.h> | |
32 | #include <linux/errno.h> | |
33 | #include <linux/string.h> | |
34 | #include <linux/mm.h> | |
aad09e51 JK |
35 | #include <linux/vmalloc.h> |
36 | #include <linux/delay.h> | |
37 | #include <linux/interrupt.h> | |
38 | #include <linux/fb.h> | |
39 | #include <linux/init.h> | |
40 | #include <linux/platform_device.h> | |
41 | #include <linux/list.h> | |
84902b7a | 42 | #include <linux/uaccess.h> |
aad09e51 | 43 | |
0e27aa3d | 44 | #include <video/hecubafb.h> |
aad09e51 JK |
45 | |
46 | /* Display specific information */ | |
47 | #define DPY_W 600 | |
48 | #define DPY_H 800 | |
49 | ||
aad09e51 JK |
50 | static struct fb_fix_screeninfo hecubafb_fix __devinitdata = { |
51 | .id = "hecubafb", | |
52 | .type = FB_TYPE_PACKED_PIXELS, | |
53 | .visual = FB_VISUAL_MONO01, | |
54 | .xpanstep = 0, | |
55 | .ypanstep = 0, | |
56 | .ywrapstep = 0, | |
0e27aa3d | 57 | .line_length = DPY_W, |
aad09e51 JK |
58 | .accel = FB_ACCEL_NONE, |
59 | }; | |
60 | ||
61 | static struct fb_var_screeninfo hecubafb_var __devinitdata = { | |
62 | .xres = DPY_W, | |
63 | .yres = DPY_H, | |
64 | .xres_virtual = DPY_W, | |
65 | .yres_virtual = DPY_H, | |
66 | .bits_per_pixel = 1, | |
67 | .nonstd = 1, | |
68 | }; | |
69 | ||
0e27aa3d | 70 | /* main hecubafb functions */ |
aad09e51 | 71 | |
9a268a62 | 72 | static void apollo_send_data(struct hecubafb_par *par, unsigned char data) |
aad09e51 JK |
73 | { |
74 | /* set data */ | |
0e27aa3d | 75 | par->board->set_data(par, data); |
aad09e51 JK |
76 | |
77 | /* set DS low */ | |
0e27aa3d | 78 | par->board->set_ctl(par, HCB_DS_BIT, 0); |
aad09e51 | 79 | |
0e27aa3d JK |
80 | /* wait for ack */ |
81 | par->board->wait_for_ack(par, 0); | |
aad09e51 JK |
82 | |
83 | /* set DS hi */ | |
0e27aa3d | 84 | par->board->set_ctl(par, HCB_DS_BIT, 1); |
aad09e51 | 85 | |
0e27aa3d JK |
86 | /* wait for ack to clear */ |
87 | par->board->wait_for_ack(par, 1); | |
aad09e51 JK |
88 | } |
89 | ||
9a268a62 | 90 | static void apollo_send_command(struct hecubafb_par *par, unsigned char data) |
aad09e51 JK |
91 | { |
92 | /* command so set CD to high */ | |
0e27aa3d | 93 | par->board->set_ctl(par, HCB_CD_BIT, 1); |
aad09e51 JK |
94 | |
95 | /* actually strobe with command */ | |
96 | apollo_send_data(par, data); | |
97 | ||
98 | /* clear CD back to low */ | |
0e27aa3d | 99 | par->board->set_ctl(par, HCB_CD_BIT, 0); |
aad09e51 JK |
100 | } |
101 | ||
aad09e51 JK |
102 | static void hecubafb_dpy_update(struct hecubafb_par *par) |
103 | { | |
104 | int i; | |
28cdf76b | 105 | unsigned char *buf = (unsigned char __force *)par->info->screen_base; |
aad09e51 | 106 | |
0e27aa3d | 107 | apollo_send_command(par, APOLLO_START_NEW_IMG); |
aad09e51 JK |
108 | |
109 | for (i=0; i < (DPY_W*DPY_H/8); i++) { | |
110 | apollo_send_data(par, *(buf++)); | |
111 | } | |
112 | ||
0e27aa3d JK |
113 | apollo_send_command(par, APOLLO_STOP_IMG_DATA); |
114 | apollo_send_command(par, APOLLO_DISPLAY_IMG); | |
aad09e51 JK |
115 | } |
116 | ||
117 | /* this is called back from the deferred io workqueue */ | |
118 | static void hecubafb_dpy_deferred_io(struct fb_info *info, | |
119 | struct list_head *pagelist) | |
120 | { | |
121 | hecubafb_dpy_update(info->par); | |
122 | } | |
123 | ||
124 | static void hecubafb_fillrect(struct fb_info *info, | |
125 | const struct fb_fillrect *rect) | |
126 | { | |
127 | struct hecubafb_par *par = info->par; | |
128 | ||
d6774935 | 129 | sys_fillrect(info, rect); |
aad09e51 JK |
130 | |
131 | hecubafb_dpy_update(par); | |
132 | } | |
133 | ||
134 | static void hecubafb_copyarea(struct fb_info *info, | |
135 | const struct fb_copyarea *area) | |
136 | { | |
137 | struct hecubafb_par *par = info->par; | |
138 | ||
d6774935 | 139 | sys_copyarea(info, area); |
aad09e51 JK |
140 | |
141 | hecubafb_dpy_update(par); | |
142 | } | |
143 | ||
144 | static void hecubafb_imageblit(struct fb_info *info, | |
145 | const struct fb_image *image) | |
146 | { | |
147 | struct hecubafb_par *par = info->par; | |
148 | ||
d6774935 | 149 | sys_imageblit(info, image); |
aad09e51 JK |
150 | |
151 | hecubafb_dpy_update(par); | |
152 | } | |
153 | ||
154 | /* | |
155 | * this is the slow path from userspace. they can seek and write to | |
156 | * the fb. it's inefficient to do anything less than a full screen draw | |
157 | */ | |
3f9b0880 | 158 | static ssize_t hecubafb_write(struct fb_info *info, const char __user *buf, |
aad09e51 JK |
159 | size_t count, loff_t *ppos) |
160 | { | |
963654a9 JK |
161 | struct hecubafb_par *par = info->par; |
162 | unsigned long p = *ppos; | |
163 | void *dst; | |
164 | int err = 0; | |
165 | unsigned long total_size; | |
166 | ||
167 | if (info->state != FBINFO_STATE_RUNNING) | |
168 | return -EPERM; | |
aad09e51 | 169 | |
963654a9 | 170 | total_size = info->fix.smem_len; |
aad09e51 | 171 | |
963654a9 JK |
172 | if (p > total_size) |
173 | return -EFBIG; | |
aad09e51 | 174 | |
963654a9 JK |
175 | if (count > total_size) { |
176 | err = -EFBIG; | |
177 | count = total_size; | |
aad09e51 JK |
178 | } |
179 | ||
963654a9 JK |
180 | if (count + p > total_size) { |
181 | if (!err) | |
182 | err = -ENOSPC; | |
aad09e51 | 183 | |
963654a9 | 184 | count = total_size - p; |
aad09e51 JK |
185 | } |
186 | ||
963654a9 | 187 | dst = (void __force *) (info->screen_base + p); |
aad09e51 | 188 | |
963654a9 JK |
189 | if (copy_from_user(dst, buf, count)) |
190 | err = -EFAULT; | |
191 | ||
192 | if (!err) | |
193 | *ppos += count; | |
194 | ||
195 | hecubafb_dpy_update(par); | |
aad09e51 | 196 | |
963654a9 | 197 | return (err) ? err : count; |
aad09e51 JK |
198 | } |
199 | ||
200 | static struct fb_ops hecubafb_ops = { | |
201 | .owner = THIS_MODULE, | |
28d4564b | 202 | .fb_read = fb_sys_read, |
aad09e51 JK |
203 | .fb_write = hecubafb_write, |
204 | .fb_fillrect = hecubafb_fillrect, | |
205 | .fb_copyarea = hecubafb_copyarea, | |
206 | .fb_imageblit = hecubafb_imageblit, | |
207 | }; | |
208 | ||
209 | static struct fb_deferred_io hecubafb_defio = { | |
210 | .delay = HZ, | |
211 | .deferred_io = hecubafb_dpy_deferred_io, | |
212 | }; | |
213 | ||
214 | static int __devinit hecubafb_probe(struct platform_device *dev) | |
215 | { | |
216 | struct fb_info *info; | |
0e27aa3d | 217 | struct hecuba_board *board; |
aad09e51 JK |
218 | int retval = -ENOMEM; |
219 | int videomemorysize; | |
220 | unsigned char *videomemory; | |
221 | struct hecubafb_par *par; | |
222 | ||
0e27aa3d JK |
223 | /* pick up board specific routines */ |
224 | board = dev->dev.platform_data; | |
225 | if (!board) | |
226 | return -EINVAL; | |
227 | ||
228 | /* try to count device specific driver, if can't, platform recalls */ | |
229 | if (!try_module_get(board->owner)) | |
230 | return -ENODEV; | |
231 | ||
aad09e51 JK |
232 | videomemorysize = (DPY_W*DPY_H)/8; |
233 | ||
234 | if (!(videomemory = vmalloc(videomemorysize))) | |
235 | return retval; | |
236 | ||
237 | memset(videomemory, 0, videomemorysize); | |
238 | ||
239 | info = framebuffer_alloc(sizeof(struct hecubafb_par), &dev->dev); | |
240 | if (!info) | |
0e27aa3d | 241 | goto err_fballoc; |
aad09e51 | 242 | |
0e27aa3d | 243 | info->screen_base = (char __force __iomem *)videomemory; |
aad09e51 JK |
244 | info->fbops = &hecubafb_ops; |
245 | ||
246 | info->var = hecubafb_var; | |
247 | info->fix = hecubafb_fix; | |
248 | info->fix.smem_len = videomemorysize; | |
249 | par = info->par; | |
250 | par->info = info; | |
0e27aa3d JK |
251 | par->board = board; |
252 | par->send_command = apollo_send_command; | |
253 | par->send_data = apollo_send_data; | |
aad09e51 | 254 | |
a9b5ff99 | 255 | info->flags = FBINFO_FLAG_DEFAULT | FBINFO_VIRTFB; |
aad09e51 JK |
256 | |
257 | info->fbdefio = &hecubafb_defio; | |
258 | fb_deferred_io_init(info); | |
259 | ||
260 | retval = register_framebuffer(info); | |
261 | if (retval < 0) | |
0e27aa3d | 262 | goto err_fbreg; |
aad09e51 JK |
263 | platform_set_drvdata(dev, info); |
264 | ||
265 | printk(KERN_INFO | |
266 | "fb%d: Hecuba frame buffer device, using %dK of video memory\n", | |
267 | info->node, videomemorysize >> 10); | |
268 | ||
269 | /* this inits the dpy */ | |
0e27aa3d JK |
270 | retval = par->board->init(par); |
271 | if (retval < 0) | |
272 | goto err_fbreg; | |
aad09e51 JK |
273 | |
274 | return 0; | |
0e27aa3d | 275 | err_fbreg: |
aad09e51 | 276 | framebuffer_release(info); |
0e27aa3d | 277 | err_fballoc: |
aad09e51 | 278 | vfree(videomemory); |
0e27aa3d | 279 | module_put(board->owner); |
aad09e51 JK |
280 | return retval; |
281 | } | |
282 | ||
283 | static int __devexit hecubafb_remove(struct platform_device *dev) | |
284 | { | |
285 | struct fb_info *info = platform_get_drvdata(dev); | |
286 | ||
287 | if (info) { | |
0e27aa3d | 288 | struct hecubafb_par *par = info->par; |
aad09e51 JK |
289 | fb_deferred_io_cleanup(info); |
290 | unregister_framebuffer(info); | |
28cdf76b | 291 | vfree((void __force *)info->screen_base); |
0e27aa3d JK |
292 | if (par->board->remove) |
293 | par->board->remove(par); | |
294 | module_put(par->board->owner); | |
aad09e51 JK |
295 | framebuffer_release(info); |
296 | } | |
297 | return 0; | |
298 | } | |
299 | ||
300 | static struct platform_driver hecubafb_driver = { | |
301 | .probe = hecubafb_probe, | |
302 | .remove = hecubafb_remove, | |
303 | .driver = { | |
0e27aa3d | 304 | .owner = THIS_MODULE, |
aad09e51 JK |
305 | .name = "hecubafb", |
306 | }, | |
307 | }; | |
308 | ||
aad09e51 JK |
309 | static int __init hecubafb_init(void) |
310 | { | |
0e27aa3d | 311 | return platform_driver_register(&hecubafb_driver); |
aad09e51 JK |
312 | } |
313 | ||
314 | static void __exit hecubafb_exit(void) | |
315 | { | |
aad09e51 JK |
316 | platform_driver_unregister(&hecubafb_driver); |
317 | } | |
318 | ||
aad09e51 JK |
319 | module_init(hecubafb_init); |
320 | module_exit(hecubafb_exit); | |
321 | ||
0e27aa3d | 322 | MODULE_DESCRIPTION("fbdev driver for Hecuba/Apollo controller"); |
aad09e51 JK |
323 | MODULE_AUTHOR("Jaya Kumar"); |
324 | MODULE_LICENSE("GPL"); |