summaryrefslogtreecommitdiffstats
path: root/drivers/video/tx3912fb.c
blob: 1686852b323624d620549c23baf3d5748d2f2a18 (plain)
1
2
3
4
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
41
42
43
44
45
46
47
48
49
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
81
82
83
84
85
86
87
88
89
90
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
216
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
/*
 * linux/drivers/video/tx3912fb.c
 *
 * Copyright (C) 1999 Harald Koerfgen
 * Copyright (C) 2001 Steven Hill (sjhill@realitydiluted.com)
 *
 * 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.
 *
 * Framebuffer for LCD controller in TMPR3912/05 and PR31700 processors
 */
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/tty.h>
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/init.h>
#include <linux/pm.h>
#include <linux/fb.h>
#include <asm/bootinfo.h>
#include <asm/uaccess.h>
#include <video/fbcon.h>
#include <video/fbcon-mfb.h>
#include <video/fbcon-cfb2.h>
#include <video/fbcon-cfb4.h>
#include <video/fbcon-cfb8.h>
#include "tx3912fb.h"

/*
 * Frame buffer, palette and console structures
 */
static struct fb_info fb_info;
static struct { u_char red, green, blue, pad; } palette[256];
static struct display global_disp;
static int currcon = 0;

/*
 * Interface used by the world
 */
static int tx3912fb_get_fix(struct fb_fix_screeninfo *fix, int con,
				struct fb_info *info);
static int tx3912fb_get_var(struct fb_var_screeninfo *var, int con,
				struct fb_info *info);
static int tx3912fb_set_var(struct fb_var_screeninfo *var, int con,
				struct fb_info *info);
static int tx3912fb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
				struct fb_info *info);
static int tx3912fb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
				struct fb_info *info);
static int tx3912fb_ioctl(struct inode *inode, struct file *file, u_int cmd,
				u_long arg, int con, struct fb_info *info);

/*
 * Interface used by console driver
 */
int tx3912fb_init(void);
static int tx3912fbcon_switch(int con, struct fb_info *info);
static int tx3912fbcon_updatevar(int con, struct fb_info *info);
static void tx3912fbcon_blank(int blank, struct fb_info *info);

/*
 * Macros
 */
#define get_line_length(xres_virtual, bpp) \
		(u_long) (((int) xres_virtual * (int) bpp + 7) >> 3)

/*
 * Internal routines
 */
static int tx3912fb_getcolreg(u_int regno, u_int *red, u_int *green,
			u_int *blue, u_int *transp, struct fb_info *info);
static int tx3912fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
			u_int transp, struct fb_info *info);
static void tx3912fb_install_cmap(int con, struct fb_info *info);


/*
 * Frame buffer operations structure used by console driver
 */
static struct fb_ops tx3912fb_ops = {
	owner: THIS_MODULE,
	fb_get_fix: tx3912fb_get_fix,
	fb_get_var: tx3912fb_get_var,
	fb_set_var: tx3912fb_set_var,
	fb_get_cmap: tx3912fb_get_cmap,
	fb_set_cmap: tx3912fb_set_cmap,
	fb_ioctl: tx3912fb_ioctl,
};


/*
 *  Get fixed display data
 */
static int tx3912fb_get_fix(struct fb_fix_screeninfo *fix, int con,
				struct fb_info *info)
{
	struct display *display;

	memset(fix, 0, sizeof(struct fb_fix_screeninfo));
	strcpy(fix->id, TX3912FB_NAME);

	if (con == -1)
		display = &global_disp;
	else
		display = &fb_display[con];

	fix->smem_start		= tx3912fb_vaddr;
	fix->smem_len		= tx3912fb_size;
	fix->type		= display->type;
	fix->type_aux		= display->type_aux;
	fix->xpanstep		= 0;
	fix->ypanstep		= display->ypanstep;
	fix->ywrapstep		= display->ywrapstep;
	fix->visual		= display->visual;
	fix->line_length	= display->line_length;
	fix->accel		= FB_ACCEL_NONE;

	return 0;
}

/*
 * Get user display data
 */
static int tx3912fb_get_var(struct fb_var_screeninfo *var, int con,
				struct fb_info *info)
{
	if (con == -1)
		*var = tx3912fb_info;
	else
		*var = fb_display[con].var;

	return 0;
}

/*
 *  Set user display data
 */
static int tx3912fb_set_var(struct fb_var_screeninfo *var, int con,
				struct fb_info *info)
{
	int err, activate = var->activate;
	int oldxres, oldyres, oldvxres, oldvyres, oldbpp;
	u_long line_length;
	struct display *display;

	if (con == -1)
		display = &global_disp;
	else
		display = &fb_display[con];

	/*
	 * FB_VMODE_CONUPDATE and FB_VMODE_SMOOTH_XPAN are equal
	 * as FB_VMODE_SMOOTH_XPAN is only used internally
	 */
	if (var->vmode & FB_VMODE_CONUPDATE) {
		var->xoffset = display->var.xoffset;
		var->yoffset = display->var.yoffset;
		var->vmode |= FB_VMODE_YWRAP;
	}

	/*
	 * Make sure values are in range
	 */
	if (!var->xres)
		var->xres = 1;
	if (!var->yres)
		var->yres = 1;
	if (var->xres > var->xres_virtual)
		var->xres_virtual = var->xres;
	if (var->yres > var->yres_virtual)
		var->yres_virtual = var->yres;
	if (var->bits_per_pixel <= 1)
		var->bits_per_pixel = 1;
	else if (var->bits_per_pixel <= 2)
		var->bits_per_pixel = 2;
	else if (var->bits_per_pixel <= 4)
		var->bits_per_pixel = 4;
	else if (var->bits_per_pixel <= 8)
		var->bits_per_pixel = 8;
	else
		return -EINVAL;

	/*
	 * Memory limit
	 */
	line_length = get_line_length(var->xres_virtual, var->bits_per_pixel);
	if ((line_length * var->yres_virtual) > tx3912fb_size)
		return -ENOMEM;

	/*
	 * This is only for color and we only support 8-bit color
	 */
	if (var->bits_per_pixel) {
		/* RGB 332 */
		var->red.offset = 5;
		var->red.length = 3;
		var->green.offset = 2;
		var->green.length = 3;
		var->blue.offset = 0;
		var->blue.length = 2;
		var->transp.offset = 0;
		var->transp.length = 0;
	}
	var->red.msb_right = 0;
	var->green.msb_right = 0;
	var->blue.msb_right = 0;
	var->transp.msb_right = 0;

	/*
	 * Make changes if necessary
	 */
	if ((activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) {

		oldxres = display->var.xres;
		oldyres = display->var.yres;
		oldvxres = display->var.xres_virtual;
		oldvyres = display->var.yres_virtual;
		oldbpp = display->var.bits_per_pixel;
		display->var = *var;

		if (oldxres != var->xres || oldyres != var->yres ||
		    oldvxres != var->xres_virtual ||
		    oldvyres != var->yres_virtual ||
		    oldbpp != var->bits_per_pixel) {

			display->screen_base = (u_char *) tx3912fb_vaddr;

			switch (var->bits_per_pixel) {
			case 1:
				display->visual = FB_VISUAL_MONO10;
				break;
			case 2:
				display->visual = FB_VISUAL_PSEUDOCOLOR;
			case 4:
			case 8:
				display->visual = FB_VISUAL_TRUECOLOR;
				break;
			}

			display->type = FB_TYPE_PACKED_PIXELS;
			display->type_aux = 0;
			display->ypanstep = 0;
			display->ywrapstep = 0;
			display->next_line =
			display->line_length =
				get_line_length(var->xres_virtual,
					var->bits_per_pixel);
			display->can_soft_blank = 0;
			display->inverse = FB_IS_INVERSE;

			switch (var->bits_per_pixel) {
#ifdef CONFIG_FBCON_MFB
			case 1:
				display->dispsw = &fbcon_mfb;
				break;
#endif
#ifdef CONFIG_FBCON_CFB2
			case 2:
				display->dispsw = &fbcon_cfb2;
				break;
#endif
#ifdef CONFIG_FBCON_CFB4
			case 4:
				display->dispsw = &fbcon_cfb4;
				break;
#endif
#ifdef CONFIG_FBCON_CFB8
			case 8:
				display->dispsw = &fbcon_cfb8;
				display->dispsw_data = fbcon_cmap.cfb8;
				break;
#endif
			default:
				display->dispsw = &fbcon_dummy;
				break;
	    		}

			if (fb_info.changevar)
				(*fb_info.changevar)(con);
		}

		if (oldbpp != var->bits_per_pixel) {
			if ((err = fb_alloc_cmap(&display->cmap, 0, 0)))
				return err;
			tx3912fb_install_cmap(con, info);
		}
	}

	return 0;
}

/*
 *  Get the colormap
 */
static int tx3912fb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
			struct fb_info *info)
{
	if (con == currcon)
		return fb_get_cmap(cmap, kspc, tx3912fb_getcolreg, info);
	else if (fb_display[con].cmap.len) /* non default colormap? */
		fb_copy_cmap(&fb_display[con].cmap, cmap, kspc ? 0 : 2);
	else
		fb_copy_cmap(fb_default_cmap(1<<fb_display[con].var.bits_per_pixel), cmap, kspc ? 0 : 2);

	return 0;
}

/*
 *  Set the Colormap
 */
static int tx3912fb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
			struct fb_info *info)
{
	int err;

	if (!fb_display[con].cmap.len)
		if ((err = fb_alloc_cmap(&fb_display[con].cmap,
				1<<fb_display[con].var.bits_per_pixel, 0)))
			return err;

	if (con == currcon)
		return fb_set_cmap(cmap, kspc, tx3912fb_setcolreg, info);
	else
		fb_copy_cmap(cmap, &fb_display[con].cmap, kspc ? 0 : 1);

	return 0;
}

/*
 *  Framebuffer ioctl
 */
static int tx3912fb_ioctl(struct inode *inode, struct file *file, u_int cmd,
				u_long arg, int con, struct fb_info *info)
{
	return -EINVAL;
}

/*
 * Initialization of the framebuffer
 */
int __init tx3912fb_init(void)
{
	/* Stop the video logic when frame completes */
	VidCtrl1 |= ENFREEZEFRAME;
	IntClear1 |= INT1_LCDINT;
	while (!(IntStatus1 & INT1_LCDINT));

	/* Disable the video logic */
	VidCtrl1 &= ~(ENVID | DISPON);
	udelay(200);

	/* Set start address for DMA transfer */
	VidCtrl3 = tx3912fb_paddr &
		(TX3912_VIDCTRL3_VIDBANK_MASK | TX3912_VIDCTRL3_VIDBASEHI_MASK);

	/* Set end address for DMA transfer */
	VidCtrl4 = (tx3912fb_paddr + tx3912fb_size + 1) &
		TX3912_VIDCTRL4_VIDBASELO_MASK;

	/* Set the pixel depth */
	switch (tx3912fb_info.bits_per_pixel) {
	case 1:
		/* Monochrome */
		VidCtrl1 &= ~TX3912_VIDCTRL1_BITSEL_MASK;
		break;
	case 4:
		/* 4-bit gray */
		VidCtrl1 &= ~TX3912_VIDCTRL1_BITSEL_MASK;
		VidCtrl1 |= TX3912_VIDCTRL1_4BIT_GRAY;
		break;
	case 8:
		/* 8-bit color */
		VidCtrl1 &= ~TX3912_VIDCTRL1_BITSEL_MASK;
		VidCtrl1 |= TX3912_VIDCTRL1_8BIT_COLOR;
		break;
	case 2:
	default:
		/* 2-bit gray */
		VidCtrl1 &= ~TX3912_VIDCTRL1_BITSEL_MASK;
		VidCtrl1 |= TX3912_VIDCTRL1_2BIT_GRAY;
		break;
	}

	/* Unfreeze video logic and enable DF toggle */
	VidCtrl1 &= ~(ENFREEZEFRAME | DFMODE);
	udelay(200);

	/* Clear the framebuffer */
	memset((void *) tx3912fb_vaddr, 0xff, tx3912fb_size);
	udelay(200);

	/* Enable the video logic */
	VidCtrl1 |= (DISPON | ENVID);

	strcpy(fb_info.modename, TX3912FB_NAME);
	fb_info.changevar = NULL;
	fb_info.node = -1;
	fb_info.fbops = &tx3912fb_ops;
	fb_info.disp = &global_disp;
	fb_info.switch_con = &tx3912fbcon_switch;
	fb_info.updatevar = &tx3912fbcon_updatevar;
	fb_info.blank = &tx3912fbcon_blank;
	fb_info.flags = FBINFO_FLAG_DEFAULT;

	tx3912fb_set_var(&tx3912fb_info, -1, &fb_info);

	if (register_framebuffer(&fb_info) < 0)
		return -1;

	printk (KERN_INFO "fb%d: TX3912 frame buffer using %uKB.\n",
		GET_FB_IDX(fb_info.node), (u_int) (tx3912fb_size >> 10));

	return 0;
}

/*
 * Switch the console to be the framebuffer
 */
static int tx3912fbcon_switch(int con, struct fb_info *info)
{
	/* Save off the color map if needed */
	if (fb_display[currcon].cmap.len)
		fb_get_cmap(&fb_display[currcon].cmap, 1,
			tx3912fb_getcolreg, info);

	/* Make the switch */
	currcon = con;

	/* Install new colormap */
	tx3912fb_install_cmap(con, info);

	return 0;
}

/*
 * Update variable structure
 */
static int tx3912fbcon_updatevar(int con, struct fb_info *info)
{
	/* Nothing */
	return 0;
}

/*
 * Blank the display
 */
static void tx3912fbcon_blank(int blank, struct fb_info *info)
{
	/* FIXME */
	printk("tx3912fbcon_blank\n");
}

/*
 * Read a single color register
 */
static int tx3912fb_getcolreg(u_int regno, u_int *red, u_int *green,
			u_int *blue, u_int *transp, struct fb_info *info)
{
	if (regno > 255)
		return 1;

#if FB_IS_GREY
	{
		u_int grey;
            
		grey = regno * 255 / 15;

#if FB_IS_INVERSE
		grey ^= 255;
#endif
		grey |= grey << 8;
		*red = grey;
		*green = grey;
		*blue = grey;
	}
#else
	*red = (palette[regno].red<<8) | palette[regno].red;
	*green = (palette[regno].green<<8) | palette[regno].green;
	*blue = (palette[regno].blue<<8) | palette[regno].blue;
#endif
	*transp = 0;

	return 0;
}

/*
 * Set a single color register
 */
static int tx3912fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
				u_int transp, struct fb_info *info)
{
	if (regno > 255)
		return 1;

#ifdef FBCON_HAS_CFB8
	if( regno < 16 )
		fbcon_cmap.cfb8[regno] = ((red & 0xe000) >> 8)
					| ((green & 0xe000) >> 11)
					| ((blue & 0xc000) >> 14);
#endif 

	red >>= 8;
	green >>= 8;
	blue >>= 8;
	palette[regno].red = red;
	palette[regno].green = green;
	palette[regno].blue = blue;

	return 0;
}

/*
 * Install the color map
 */
static void tx3912fb_install_cmap(int con, struct fb_info *info)
{
	if (con != currcon)
		return;

	if (fb_display[con].cmap.len)
		fb_set_cmap(&fb_display[con].cmap, 1, tx3912fb_setcolreg, info);
	else
		fb_set_cmap(fb_default_cmap(1 << fb_display[con].var.bits_per_pixel), 1, tx3912fb_setcolreg, info);
}