Blame view

drivers/video/arcfb.c 16.5 KB
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
1
2
3
4
  /*
   * linux/drivers/video/arcfb.c -- FB driver for Arc monochrome LCD board
   *
   * Copyright (C) 2005, Jaya Kumar <jayalk@intworks.biz>
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License. See the file COPYING in the main directory of this archive for
   * more details.
   *
   * Layout is based on skeletonfb.c by James Simmons and Geert Uytterhoeven.
   *
   * This driver was written to be used with the Arc LCD board. Arc uses a
   * set of KS108 chips that control individual 64x64 LCD matrices. The board
   * can be paneled in a variety of setups such as 2x1=128x64, 4x4=256x256 and
   * so on. The interface between the board and the host is TTL based GPIO. The
   * GPIO requirements are 8 writable data lines and 4+n lines for control. On a
   * GPIO-less system, the board can be tested by connecting the respective sigs
   * up to a parallel port connector. The driver requires the IO addresses for
   * data and control GPIO at load time. It is unable to probe for the
   * existence of the LCD so it must be told at load time whether it should
   * be enabled or not.
   *
   * Todo:
   * - testing with 4x4
   * - testing with interrupt hw
   *
   * General notes:
   * - User must set tuhold. It's in microseconds. According to the 108 spec,
   *   the hold time is supposed to be at least 1 microsecond.
   * - User must set num_cols=x num_rows=y, eg: x=2 means 128
   * - User must set arcfb_enable=1 to enable it
   * - User must set dio_addr=0xIOADDR cio_addr=0xIOADDR
   *
   */
  
  #include <linux/module.h>
  #include <linux/kernel.h>
  #include <linux/errno.h>
  #include <linux/string.h>
  #include <linux/mm.h>
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
41
42
43
44
45
46
  #include <linux/vmalloc.h>
  #include <linux/delay.h>
  #include <linux/interrupt.h>
  #include <linux/fb.h>
  #include <linux/init.h>
  #include <linux/arcfb.h>
d052d1bef   Russell King   Create platform_d...
47
  #include <linux/platform_device.h>
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
48

84902b7af   Krzysztof Helt   fbdev: change asm...
49
  #include <linux/uaccess.h>
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
  
  #define floor8(a) (a&(~0x07))
  #define floorXres(a,xres) (a&(~(xres - 1)))
  #define iceil8(a) (((int)((a+7)/8))*8)
  #define ceil64(a) (a|0x3F)
  #define ceilXres(a,xres) (a|(xres - 1))
  
  /* ks108 chipset specific defines and code */
  
  #define KS_SET_DPY_START_LINE 	0xC0
  #define KS_SET_PAGE_NUM 	0xB8
  #define KS_SET_X 		0x40
  #define KS_CEHI 		0x01
  #define KS_CELO 		0x00
  #define KS_SEL_CMD 		0x08
  #define KS_SEL_DATA 		0x00
  #define KS_DPY_ON 		0x3F
  #define KS_DPY_OFF 		0x3E
  #define KS_INTACK 		0x40
  #define KS_CLRINT		0x02
  
  struct arcfb_par {
  	unsigned long dio_addr;
  	unsigned long cio_addr;
  	unsigned long c2io_addr;
  	atomic_t ref_count;
  	unsigned char cslut[9];
  	struct fb_info *info;
  	unsigned int irq;
  	spinlock_t lock;
  };
bd9b5caf8   Henrik Kretzschmar   fbdev: section cl...
81
  static struct fb_fix_screeninfo arcfb_fix __devinitdata = {
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
82
83
84
85
86
87
88
89
  	.id =		"arcfb",
  	.type =		FB_TYPE_PACKED_PIXELS,
  	.visual =	FB_VISUAL_MONO01,
  	.xpanstep =	0,
  	.ypanstep =	1,
  	.ywrapstep =	0,
  	.accel =	FB_ACCEL_NONE,
  };
bd9b5caf8   Henrik Kretzschmar   fbdev: section cl...
90
  static struct fb_var_screeninfo arcfb_var __devinitdata = {
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
  	.xres		= 128,
  	.yres		= 64,
  	.xres_virtual	= 128,
  	.yres_virtual	= 64,
  	.bits_per_pixel	= 1,
  	.nonstd		= 1,
  };
  
  static unsigned long num_cols;
  static unsigned long num_rows;
  static unsigned long dio_addr;
  static unsigned long cio_addr;
  static unsigned long c2io_addr;
  static unsigned long splashval;
  static unsigned long tuhold;
  static unsigned int nosplash;
  static unsigned int arcfb_enable;
  static unsigned int irq;
  
  static DECLARE_WAIT_QUEUE_HEAD(arcfb_waitq);
  
  static void ks108_writeb_ctl(struct arcfb_par *par,
  				unsigned int chipindex, unsigned char value)
  {
  	unsigned char chipselval = par->cslut[chipindex];
  
  	outb(chipselval|KS_CEHI|KS_SEL_CMD, par->cio_addr);
  	outb(value, par->dio_addr);
  	udelay(tuhold);
  	outb(chipselval|KS_CELO|KS_SEL_CMD, par->cio_addr);
  }
  
  static void ks108_writeb_mainctl(struct arcfb_par *par, unsigned char value)
  {
  
  	outb(value, par->cio_addr);
  	udelay(tuhold);
  }
  
  static unsigned char ks108_readb_ctl2(struct arcfb_par *par)
  {
  	return inb(par->c2io_addr);
  }
  
  static void ks108_writeb_data(struct arcfb_par *par,
  				unsigned int chipindex, unsigned char value)
  {
  	unsigned char chipselval = par->cslut[chipindex];
  
  	outb(chipselval|KS_CEHI|KS_SEL_DATA, par->cio_addr);
  	outb(value, par->dio_addr);
  	udelay(tuhold);
  	outb(chipselval|KS_CELO|KS_SEL_DATA, par->cio_addr);
  }
  
  static void ks108_set_start_line(struct arcfb_par *par,
  				unsigned int chipindex, unsigned char y)
  {
  	ks108_writeb_ctl(par, chipindex, KS_SET_DPY_START_LINE|y);
  }
  
  static void ks108_set_yaddr(struct arcfb_par *par,
  				unsigned int chipindex, unsigned char y)
  {
  	ks108_writeb_ctl(par, chipindex, KS_SET_PAGE_NUM|y);
  }
  
  static void ks108_set_xaddr(struct arcfb_par *par,
  				unsigned int chipindex, unsigned char x)
  {
  	ks108_writeb_ctl(par, chipindex, KS_SET_X|x);
  }
  
  static void ks108_clear_lcd(struct arcfb_par *par, unsigned int chipindex)
  {
  	int i,j;
  
  	for (i = 0; i <= 8; i++) {
  		ks108_set_yaddr(par, chipindex, i);
  		ks108_set_xaddr(par, chipindex, 0);
  		for (j = 0; j < 64; j++) {
  			ks108_writeb_data(par, chipindex,
  				(unsigned char) splashval);
  		}
  	}
  }
  
  /* main arcfb functions */
  
  static int arcfb_open(struct fb_info *info, int user)
  {
  	struct arcfb_par *par = info->par;
  
  	atomic_inc(&par->ref_count);
  	return 0;
  }
  
  static int arcfb_release(struct fb_info *info, int user)
  {
  	struct arcfb_par *par = info->par;
  	int count = atomic_read(&par->ref_count);
  
  	if (!count)
  		return -EINVAL;
  	atomic_dec(&par->ref_count);
  	return 0;
  }
  
  static int arcfb_pan_display(struct fb_var_screeninfo *var,
  				struct fb_info *info)
  {
  	int i;
  	struct arcfb_par *par = info->par;
  
  	if ((var->vmode & FB_VMODE_YWRAP) && (var->yoffset < 64)
  		&& (info->var.yres <= 64)) {
  		for (i = 0; i < num_cols; i++) {
  			ks108_set_start_line(par, i, var->yoffset);
  		}
  		info->var.yoffset = var->yoffset;
  		return 0;
  	}
  
  	return -EINVAL;
  }
7d12e780e   David Howells   IRQ: Maintain reg...
216
  static irqreturn_t arcfb_interrupt(int vec, void *dev_instance)
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
  {
  	struct fb_info *info = dev_instance;
  	unsigned char ctl2status;
  	struct arcfb_par *par = info->par;
  
  	ctl2status = ks108_readb_ctl2(par);
  
  	if (!(ctl2status & KS_INTACK)) /* not arc generated interrupt */
  		return IRQ_NONE;
  
  	ks108_writeb_mainctl(par, KS_CLRINT);
  
  	spin_lock(&par->lock);
          if (waitqueue_active(&arcfb_waitq)) {
                  wake_up(&arcfb_waitq);
          }
  	spin_unlock(&par->lock);
  
  	return IRQ_HANDLED;
  }
  
  /*
   * here we handle a specific page on the lcd. the complexity comes from
   * the fact that the fb is laidout in 8xX vertical columns. we extract
   * each write of 8 vertical pixels. then we shift out as we move along
   * X. That's what rightshift does. bitmask selects the desired input bit.
   */
  static void arcfb_lcd_update_page(struct arcfb_par *par, unsigned int upper,
  		unsigned int left, unsigned int right, unsigned int distance)
  {
  	unsigned char *src;
  	unsigned int xindex, yindex, chipindex, linesize;
604cc999f   Antonino A. Daplas   [PATCH] arcfb: Fi...
249
  	int i;
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
250
251
252
253
254
255
256
257
258
259
  	unsigned char val;
  	unsigned char bitmask, rightshift;
  
  	xindex = left >> 6;
  	yindex = upper >> 6;
  	chipindex = (xindex + (yindex*num_cols));
  
  	ks108_set_yaddr(par, chipindex, upper/8);
  
  	linesize = par->info->var.xres/8;
d2e8d369c   Antonino A. Daplas   arcfb: kill spars...
260
261
  	src = (unsigned char __force *) par->info->screen_base + (left/8) +
  		(upper * linesize);
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
  	ks108_set_xaddr(par, chipindex, left);
  
  	bitmask=1;
  	rightshift=0;
  	while (left <= right) {
  		val = 0;
  		for (i = 0; i < 8; i++) {
  			if ( i > rightshift) {
  				val |= (*(src + (i*linesize)) & bitmask)
  						<< (i - rightshift);
  			} else {
  				val |= (*(src + (i*linesize)) & bitmask)
  						 >> (rightshift - i);
  			}
  		}
  		ks108_writeb_data(par, chipindex, val);
  		left++;
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
  		if (bitmask == 0x80) {
  			bitmask = 1;
  			src++;
  			rightshift=0;
  		} else {
  			bitmask <<= 1;
  			rightshift++;
  		}
  	}
  }
  
  /*
   * here we handle the entire vertical page of the update. we write across
   * lcd chips. update_page uses the upper/left values to decide which
   * chip to select for the right. upper is needed for setting the page
   * desired for the write.
   */
  static void arcfb_lcd_update_vert(struct arcfb_par *par, unsigned int top,
  		unsigned int bottom, unsigned int left, unsigned int right)
  {
  	unsigned int distance, upper, lower;
  
  	distance = (bottom - top) + 1;
  	upper = top;
  	lower = top + 7;
  
  	while (distance > 0) {
  		distance -= 8;
  		arcfb_lcd_update_page(par, upper, left, right, 8);
  		upper = lower + 1;
  		lower = upper + 7;
  	}
  }
  
  /*
   * here we handle horizontal blocks for the update. update_vert will
   * handle spaning multiple pages. we break out each horizontal
   * block in to individual blocks no taller than 64 pixels.
   */
  static void arcfb_lcd_update_horiz(struct arcfb_par *par, unsigned int left,
  			unsigned int right, unsigned int top, unsigned int h)
  {
  	unsigned int distance, upper, lower;
  
  	distance = h;
  	upper = floor8(top);
  	lower = min(upper + distance - 1, ceil64(upper));
  
  	while (distance > 0) {
  		distance -= ((lower - upper) + 1 );
  		arcfb_lcd_update_vert(par, upper, lower, left, right);
  		upper = lower + 1;
  		lower = min(upper + distance - 1, ceil64(upper));
  	}
  }
  
  /*
   * here we start the process of spliting out the fb update into
   * individual blocks of pixels. we end up spliting into 64x64 blocks
   * and finally down to 64x8 pages.
   */
  static void arcfb_lcd_update(struct arcfb_par *par, unsigned int dx,
  			unsigned int dy, unsigned int w, unsigned int h)
  {
  	unsigned int left, right, distance, y;
  
  	/* align the request first */
  	y = floor8(dy);
  	h += dy - y;
  	h = iceil8(h);
  
  	distance = w;
  	left = dx;
  	right = min(left + w - 1, ceil64(left));
  
  	while (distance > 0) {
  		arcfb_lcd_update_horiz(par, left, right, y, h);
  		distance -= ((right - left) + 1);
  		left = right + 1;
  		right = min(left + distance - 1, ceil64(left));
  	}
  }
a0aa7d063   Adrian Bunk   [PATCH] drivers/v...
361
362
  static void arcfb_fillrect(struct fb_info *info,
  			   const struct fb_fillrect *rect)
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
363
364
  {
  	struct arcfb_par *par = info->par;
922e6f9af   Antonino A. Daplas   arcfb: use sys in...
365
  	sys_fillrect(info, rect);
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
366
367
368
369
  
  	/* update the physical lcd */
  	arcfb_lcd_update(par, rect->dx, rect->dy, rect->width, rect->height);
  }
a0aa7d063   Adrian Bunk   [PATCH] drivers/v...
370
371
  static void arcfb_copyarea(struct fb_info *info,
  			   const struct fb_copyarea *area)
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
372
373
  {
  	struct arcfb_par *par = info->par;
922e6f9af   Antonino A. Daplas   arcfb: use sys in...
374
  	sys_copyarea(info, area);
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
375
376
377
378
  
  	/* update the physical lcd */
  	arcfb_lcd_update(par, area->dx, area->dy, area->width, area->height);
  }
a0aa7d063   Adrian Bunk   [PATCH] drivers/v...
379
  static void arcfb_imageblit(struct fb_info *info, const struct fb_image *image)
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
380
381
  {
  	struct arcfb_par *par = info->par;
922e6f9af   Antonino A. Daplas   arcfb: use sys in...
382
  	sys_imageblit(info, image);
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
383
384
385
386
387
  
  	/* update the physical lcd */
  	arcfb_lcd_update(par, image->dx, image->dy, image->width,
  				image->height);
  }
67a6680d6   Christoph Hellwig   [PATCH] fbdev: Sa...
388
389
  static int arcfb_ioctl(struct fb_info *info,
  			  unsigned int cmd, unsigned long arg)
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
  {
  	void __user *argp = (void __user *)arg;
  	struct arcfb_par *par = info->par;
  	unsigned long flags;
  
  	switch (cmd) {
  		case FBIO_WAITEVENT:
  		{
  			DEFINE_WAIT(wait);
  			/* illegal to wait on arc if no irq will occur */
  			if (!par->irq)
  				return -EINVAL;
  
  			/* wait until the Arc has generated an interrupt
  			 * which will wake us up */
  			spin_lock_irqsave(&par->lock, flags);
  			prepare_to_wait(&arcfb_waitq, &wait,
  					TASK_INTERRUPTIBLE);
  			spin_unlock_irqrestore(&par->lock, flags);
  			schedule();
  			finish_wait(&arcfb_waitq, &wait);
  		}
  		case FBIO_GETCONTROL2:
  		{
  			unsigned char ctl2;
  
  			ctl2 = ks108_readb_ctl2(info->par);
  			if (copy_to_user(argp, &ctl2, sizeof(ctl2)))
  				return -EFAULT;
  			return 0;
  		}
  		default:
  			return -EINVAL;
  	}
  }
  
  /*
   * this is the access path from userspace. they can seek and write to
   * the fb. it's inefficient for them to do anything less than 64*8
   * writes since we update the lcd in each write() anyway.
   */
3f9b0880e   Antonino A. Daplas   fbdev: pass struc...
431
432
  static ssize_t arcfb_write(struct fb_info *info, const char __user *buf,
  			   size_t count, loff_t *ppos)
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
433
434
  {
  	/* modded from epson 1355 */
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
435
436
437
438
439
440
441
  	unsigned long p;
  	int err=-EINVAL;
  	unsigned int fbmemlength,x,y,w,h, bitppos, startpos, endpos, bitcount;
  	struct arcfb_par *par;
  	unsigned int xres;
  
  	p = *ppos;
939205b27   Antonino A. Daplas   [PATCH] arcfb: Fi...
442
  	par = info->par;
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
443
444
445
446
447
448
449
450
451
452
453
454
455
456
  	xres = info->var.xres;
  	fbmemlength = (xres * info->var.yres)/8;
  
  	if (p > fbmemlength)
  		return -ENOSPC;
  
  	err = 0;
  	if ((count + p) > fbmemlength) {
  		count = fbmemlength - p;
  		err = -ENOSPC;
  	}
  
  	if (count) {
  		char *base_addr;
d2e8d369c   Antonino A. Daplas   arcfb: kill spars...
457
  		base_addr = (char __force *)info->screen_base;
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
  		count -= copy_from_user(base_addr + p, buf, count);
  		*ppos += count;
  		err = -EFAULT;
  	}
  
  
  	bitppos = p*8;
  	startpos = floorXres(bitppos, xres);
  	endpos = ceilXres((bitppos + (count*8)), xres);
  	bitcount = endpos - startpos;
  
  	x = startpos % xres;
  	y = startpos / xres;
  	w = xres;
  	h = bitcount / xres;
  	arcfb_lcd_update(par, x, y, w, h);
  
  	if (count)
  		return count;
  	return err;
  }
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
479
480
481
  static struct fb_ops arcfb_ops = {
  	.owner		= THIS_MODULE,
  	.fb_open	= arcfb_open,
d9a05f18e   Antonino A. Daplas   arcfb: use fb_sys...
482
  	.fb_read        = fb_sys_read,
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
483
484
485
486
487
488
  	.fb_write	= arcfb_write,
  	.fb_release	= arcfb_release,
  	.fb_pan_display	= arcfb_pan_display,
  	.fb_fillrect	= arcfb_fillrect,
  	.fb_copyarea	= arcfb_copyarea,
  	.fb_imageblit	= arcfb_imageblit,
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
489
490
  	.fb_ioctl 	= arcfb_ioctl,
  };
c2e13037e   Uwe Kleine-König   platform-drivers:...
491
  static int __devinit arcfb_probe(struct platform_device *dev)
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
492
  {
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
493
494
495
496
497
498
499
500
501
502
503
  	struct fb_info *info;
  	int retval = -ENOMEM;
  	int videomemorysize;
  	unsigned char *videomemory;
  	struct arcfb_par *par;
  	int i;
  
  	videomemorysize = (((64*64)*num_cols)*num_rows)/8;
  
  	/* We need a flat backing store for the Arc's
  	   less-flat actual paged framebuffer */
1b86d775d   Joe Perches   video: Convert vm...
504
505
  	videomemory = vzalloc(videomemorysize);
  	if (!videomemory)
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
506
  		return retval;
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
  	info = framebuffer_alloc(sizeof(struct arcfb_par), &dev->dev);
  	if (!info)
  		goto err;
  
  	info->screen_base = (char __iomem *)videomemory;
  	info->fbops = &arcfb_ops;
  
  	info->var = arcfb_var;
  	info->fix = arcfb_fix;
  	par = info->par;
  	par->info = info;
  
  	if (!dio_addr || !cio_addr || !c2io_addr) {
  		printk(KERN_WARNING "no IO addresses supplied
  ");
  		goto err1;
  	}
  	par->dio_addr = dio_addr;
  	par->cio_addr = cio_addr;
  	par->c2io_addr = c2io_addr;
  	par->cslut[0] = 0x00;
  	par->cslut[1] = 0x06;
  	info->flags = FBINFO_FLAG_DEFAULT;
  	spin_lock_init(&par->lock);
  	retval = register_framebuffer(info);
  	if (retval < 0)
  		goto err1;
3ae5eaec1   Russell King   [DRIVER MODEL] Co...
534
  	platform_set_drvdata(dev, info);
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
535
536
  	if (irq) {
  		par->irq = irq;
63a43399d   Thomas Gleixner   [PATCH] irq-flags...
537
  		if (request_irq(par->irq, &arcfb_interrupt, IRQF_SHARED,
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
  				"arcfb", info)) {
  			printk(KERN_INFO
  				"arcfb: Failed req IRQ %d
  ", par->irq);
  			goto err1;
  		}
  	}
  	printk(KERN_INFO
  	       "fb%d: Arc frame buffer device, using %dK of video memory
  ",
  	       info->node, videomemorysize >> 10);
  
  	/* this inits the lcd but doesn't clear dirty pixels */
  	for (i = 0; i < num_cols * num_rows; i++) {
  		ks108_writeb_ctl(par, i, KS_DPY_OFF);
  		ks108_set_start_line(par, i, 0);
  		ks108_set_yaddr(par, i, 0);
  		ks108_set_xaddr(par, i, 0);
  		ks108_writeb_ctl(par, i, KS_DPY_ON);
  	}
  
  	/* if we were told to splash the screen, we just clear it */
  	if (!nosplash) {
  		for (i = 0; i < num_cols * num_rows; i++) {
  			printk(KERN_INFO "fb%d: splashing lcd %d
  ",
  				info->node, i);
  			ks108_set_start_line(par, i, 0);
  			ks108_clear_lcd(par, i);
  		}
  	}
  
  	return 0;
  err1:
  	framebuffer_release(info);
  err:
  	vfree(videomemory);
  	return retval;
  }
bd9b5caf8   Henrik Kretzschmar   fbdev: section cl...
577
  static int __devexit arcfb_remove(struct platform_device *dev)
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
578
  {
3ae5eaec1   Russell King   [DRIVER MODEL] Co...
579
  	struct fb_info *info = platform_get_drvdata(dev);
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
580
581
582
  
  	if (info) {
  		unregister_framebuffer(info);
d2e8d369c   Antonino A. Daplas   arcfb: kill spars...
583
  		vfree((void __force *)info->screen_base);
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
584
585
586
587
  		framebuffer_release(info);
  	}
  	return 0;
  }
3ae5eaec1   Russell King   [DRIVER MODEL] Co...
588
  static struct platform_driver arcfb_driver = {
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
589
  	.probe	= arcfb_probe,
bd9b5caf8   Henrik Kretzschmar   fbdev: section cl...
590
  	.remove = __devexit_p(arcfb_remove),
3ae5eaec1   Russell King   [DRIVER MODEL] Co...
591
592
593
  	.driver	= {
  		.name	= "arcfb",
  	},
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
594
  };
8d972a962   Russell King   [DRIVER MODEL] Fi...
595
  static struct platform_device *arcfb_device;
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
596
597
598
599
600
601
602
  
  static int __init arcfb_init(void)
  {
  	int ret;
  
  	if (!arcfb_enable)
  		return -ENXIO;
3ae5eaec1   Russell King   [DRIVER MODEL] Co...
603
  	ret = platform_driver_register(&arcfb_driver);
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
604
  	if (!ret) {
8d972a962   Russell King   [DRIVER MODEL] Fi...
605
606
607
608
609
610
611
612
  		arcfb_device = platform_device_alloc("arcfb", 0);
  		if (arcfb_device) {
  			ret = platform_device_add(arcfb_device);
  		} else {
  			ret = -ENOMEM;
  		}
  		if (ret) {
  			platform_device_put(arcfb_device);
3ae5eaec1   Russell King   [DRIVER MODEL] Co...
613
  			platform_driver_unregister(&arcfb_driver);
8d972a962   Russell King   [DRIVER MODEL] Fi...
614
  		}
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
615
616
617
618
619
620
621
  	}
  	return ret;
  
  }
  
  static void __exit arcfb_exit(void)
  {
8d972a962   Russell King   [DRIVER MODEL] Fi...
622
  	platform_device_unregister(arcfb_device);
3ae5eaec1   Russell King   [DRIVER MODEL] Co...
623
  	platform_driver_unregister(&arcfb_driver);
1154ea7dc   Jaya Kumar   [PATCH] Framebuff...
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
  }
  
  module_param(num_cols, ulong, 0);
  MODULE_PARM_DESC(num_cols, "Num horiz panels, eg: 2 = 128 bit wide");
  module_param(num_rows, ulong, 0);
  MODULE_PARM_DESC(num_rows, "Num vert panels, eg: 1 = 64 bit high");
  module_param(nosplash, uint, 0);
  MODULE_PARM_DESC(nosplash, "Disable doing the splash screen");
  module_param(arcfb_enable, uint, 0);
  MODULE_PARM_DESC(arcfb_enable, "Enable communication with Arc board");
  module_param(dio_addr, ulong, 0);
  MODULE_PARM_DESC(dio_addr, "IO address for data, eg: 0x480");
  module_param(cio_addr, ulong, 0);
  MODULE_PARM_DESC(cio_addr, "IO address for control, eg: 0x400");
  module_param(c2io_addr, ulong, 0);
  MODULE_PARM_DESC(c2io_addr, "IO address for secondary control, eg: 0x408");
  module_param(splashval, ulong, 0);
  MODULE_PARM_DESC(splashval, "Splash pattern: 0xFF is black, 0x00 is green");
  module_param(tuhold, ulong, 0);
  MODULE_PARM_DESC(tuhold, "Time to hold between strobing data to Arc board");
  module_param(irq, uint, 0);
  MODULE_PARM_DESC(irq, "IRQ for the Arc board");
  
  module_init(arcfb_init);
  module_exit(arcfb_exit);
  
  MODULE_DESCRIPTION("fbdev driver for Arc monochrome LCD board");
  MODULE_AUTHOR("Jaya Kumar");
  MODULE_LICENSE("GPL");