aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ubicom32/files/drivers/video/ubicom32vfb.c
blob: 8478273d4c7139ea689afcf9958bf0d4314590b3 (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
528
529
530
531
532
533
534
535
536
537
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
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
/*
 * drivers/video/ubicom32vfb.c
 *	Ubicom32 virtual frame buffer driver
 *
 * (C) Copyright 2009, Ubicom, Inc.
 *
 * This file is part of the Ubicom32 Linux Kernel Port.
 *
 * The Ubicom32 Linux Kernel Port is free software: you can redistribute
 * it and/or modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation, either version 2 of the
 * License, or (at your option) any later version.
 *
 * The Ubicom32 Linux Kernel Port is distributed in the hope that it
 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
 * the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with the Ubicom32 Linux Kernel Port.  If not,
 * see <http://www.gnu.org/licenses/>.
 */

/*
 * This driver was based on skeletonfb.c, Skeleton for a frame buffer device by
 * Geert Uytterhoeven.
 */

#include <linux/device.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/version.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/fb.h>
#include <linux/init.h>
#include <linux/dma-mapping.h>
#include <linux/platform_device.h>
#include <linux/device.h>
#include <linux/uaccess.h>

#define DRIVER_NAME		"ubicom32vfb"
#define DRIVER_DESCRIPTION	"Ubicom32 virtual frame buffer driver"

#define PALETTE_ENTRIES_NO	16

/*
 * Option variables
 *
 * vram_size:	VRAM size in kilobytes, subject to alignment
 */
static int vram_size = 0;
module_param(vram_size, int, 0);
MODULE_PARM_DESC(vram_size, "VRAM size, in kilobytes to allocate, should be at least the size of one screen, subject to alignment");

static int xres = 320;
module_param(xres, int, 0);
MODULE_PARM_DESC(xres, "x (horizontal) resolution");

static int yres = 240;
module_param(yres, int, 0);
MODULE_PARM_DESC(yres, "y (vertical) resolution");

static int bgr = 0;
module_param(bgr, int, 0);
MODULE_PARM_DESC(bgr, "display is BGR (Blue is MSB)");

#define BITS_PER_PIXEL	16

/*
 * Buffer alignment, must not be 0
 */
#define UBICOM32VFB_ALIGNMENT 4

/*
 * fb_fix_screeninfo defines the non-changeable properties of the VDC, depending on what mode it is in.
 */
static struct fb_fix_screeninfo ubicom32vfb_fix = {
	.id =		"Ubicom32",
	.type =		FB_TYPE_PACKED_PIXELS,
	.visual =	FB_VISUAL_TRUECOLOR,
	.accel =	FB_ACCEL_UBICOM32_VFB,
};

/*
 * Filled in at probe time when we find out what the hardware supports
 */
static struct fb_var_screeninfo ubicom32vfb_var;

/*
 * Private data structure
 */
struct ubicom32vfb_drvdata {
	struct fb_info			*fbinfo;
	bool				cmap_alloc;

	/*
	 * The address of the framebuffer in memory
	 */
	void				*fb;
	void				*fb_aligned;

	/*
	 * Total size of vram including alignment allowance
	 */
	u32				total_vram_size;

	/*
	 * Fake palette of 16 colors
	 */
	u32				pseudo_palette[PALETTE_ENTRIES_NO];
};

static struct platform_device *ubicom32vfb_platform_device;

/*
 * ubicom32vfb_pan_display
 *	Pans the display to a given location.  Supports only y direction panning.
 */
static int ubicom32vfb_pan_display(struct fb_var_screeninfo *var, struct fb_info *fbi)
{
	struct ubicom32vfb_drvdata *ud = (struct ubicom32vfb_drvdata *)fbi->par;
	void *new_addr;

	/*
	 * Get the last y line that would be displayed.  Since we don't support YWRAP,
	 * it must be less than our virtual y size.
	 */
	u32 lasty = var->yoffset + var->yres;
	if (lasty > fbi->var.yres_virtual) {
		/*
		 * We would fall off the end of our frame buffer if we panned here.
		 */
		return -EINVAL;
	}

	if (var->xoffset) {
		/*
		 * We don't support panning in the x direction
		 */
		return -EINVAL;
	}

	/*
	 * Everything looks sane, go ahead and pan
	 *
	 * We have to calculate a new address for the VDC to look at
	 */
	new_addr = ud->fb_aligned + (var->yoffset * fbi->fix.line_length);

	return 0;
}

/*
 * ubicom32vfb_setcolreg
 *	Sets a color in our virtual palette
 */
static int ubicom32vfb_setcolreg(unsigned regno, unsigned red, unsigned green, unsigned blue, unsigned transp, struct fb_info *fbi)
{
	u32 *palette = fbi->pseudo_palette;

	if (regno >= PALETTE_ENTRIES_NO) {
		return -EINVAL;
	}

	/*
	 * We only use 8 bits from each color
	 */
	red >>= 8;
	green >>= 8;
	blue >>= 8;

	/*
	 * Convert any grayscale values
	 */
	if (fbi->var.grayscale) {
		u16 gray = red + green + blue;
		gray += (gray >> 2) + (gray >> 3) - (gray >> 7);
		gray >>= 2;
		if (gray > 255) {
			gray = 255;
		}
		red = gray;
		blue = gray;
		green = gray;
	}

	palette[regno] = (red << fbi->var.red.offset) | (green << fbi->var.green.offset) |
			 (blue << fbi->var.blue.offset);

	return 0;
}

/*
 * ubicom32vfb_mmap
 */
static int ubicom32vfb_mmap(struct fb_info *info, struct vm_area_struct *vma)
{
	struct ubicom32vfb_drvdata *ud = (struct ubicom32vfb_drvdata *)info->par;

	vma->vm_start = (unsigned long)(ud->fb_aligned);

	vma->vm_end = vma->vm_start + info->fix.smem_len;

	/* For those who don't understand how mmap works, go read
	 *   Documentation/nommu-mmap.txt.
	 * For those that do, you will know that the VM_MAYSHARE flag
	 * must be set in the vma->vm_flags structure on noMMU
	 *   Other flags can be set, and are documented in
	 *   include/linux/mm.h
	 */

	vma->vm_flags |=  VM_MAYSHARE | VM_SHARED;

	return 0;
}

/*
 * ubicom32vfb_check_var
 *	Check the var, tweak it but don't change operational parameters.
 */
static int ubicom32vfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
{
	struct ubicom32vfb_drvdata *ud = (struct ubicom32vfb_drvdata *)info->par;
	u32 line_size = var->xres * (BITS_PER_PIXEL / 8);

	/*
	 * See if we can handle this bpp
	 */
	if (var->bits_per_pixel > BITS_PER_PIXEL) {
		return -EINVAL;
	}
	var->bits_per_pixel = BITS_PER_PIXEL;

	/*
	 * See if we have enough memory to handle this resolution
	 */
	if ((line_size * var->yres * BITS_PER_PIXEL / 8) > ud->total_vram_size) {
		return -EINVAL;
	}

	var->xres_virtual = var->xres;
	var->yres_virtual = ud->total_vram_size / line_size;

	var->red.length = 5;
	var->green.length = 6;
	var->green.offset = 5;
	var->blue.length = 5;
	var->transp.offset = var->transp.length = 0;

	if (bgr) {
		var->red.offset = 0;
		var->blue.offset = 11;
	} else {
		var->red.offset = 11;
		var->blue.offset = 0;
	}

	var->nonstd = 0;
	var->height = -1;
	var->width = -1;
	var->vmode = FB_VMODE_NONINTERLACED;
	var->sync = 0;

	return 0;
}

/*
 * ubicom32vfb_set_par
 *	Set the video mode according to info->var
 */
static int ubicom32vfb_set_par(struct fb_info *info)
{
	/*
	 * Anything changed?
	 */
	if ((xres == info->var.xres) && (yres == info->var.yres)) {
		return 0;
	}

	/*
	 * Implement changes
	 */
	xres = info->var.xres;
	yres = info->var.yres;
	info->fix.visual = FB_VISUAL_TRUECOLOR;
	info->fix.xpanstep = 0;
	info->fix.ypanstep = 1;
	info->fix.line_length = xres * (BITS_PER_PIXEL / 8);

	return 0;
}

/*
 * ubicom32vfb_ops
 *	List of supported operations
 */
static struct fb_ops ubicom32vfb_ops =
{
	.owner			= THIS_MODULE,
	.fb_pan_display		= ubicom32vfb_pan_display,
	.fb_setcolreg		= ubicom32vfb_setcolreg,
	.fb_mmap		= ubicom32vfb_mmap,
	.fb_check_var		= ubicom32vfb_check_var,
	.fb_set_par		= ubicom32vfb_set_par,
	.fb_fillrect		= cfb_fillrect,
	.fb_copyarea		= cfb_copyarea,
	.fb_imageblit		= cfb_imageblit,
};

/*
 * ubicom32vfb_release
 */
static int ubicom32vfb_release(struct device *dev)
{
	struct ubicom32vfb_drvdata *ud = dev_get_drvdata(dev);

	unregister_framebuffer(ud->fbinfo);

	if (ud->cmap_alloc) {
		fb_dealloc_cmap(&ud->fbinfo->cmap);
	}

	if (ud->fb) {
		kfree(ud->fb);
	}

	framebuffer_release(ud->fbinfo);
	dev_set_drvdata(dev, NULL);

	return 0;
}

/*
 * ubicom32vfb_platform_probe
 */
static int __init ubicom32vfb_platform_probe(struct platform_device *pdev)
{
	struct ubicom32vfb_drvdata *ud;
	struct fb_info *fbinfo;
	int rc;
	size_t fbsize;
	struct device *dev = &pdev->dev;
	int offset;

	/*
	 * This is the minimum VRAM size
	 */
	fbsize = xres * yres * 2;
	if (!vram_size) {
		vram_size = (fbsize + 1023) / 1024;
	} else {
		if (fbsize > (vram_size * 1024)) {
			dev_err(dev, "Not enough VRAM for display, need >= %u bytes\n", fbsize);
			return -ENOMEM; // should be ebadparam?
		}
	}

	/*
	 * Allocate the framebuffer instance + our private data
	 */
	fbinfo = framebuffer_alloc(sizeof(struct ubicom32vfb_drvdata), &pdev->dev);
	if (!fbinfo) {
		dev_err(dev, "Not enough memory to allocate instance.\n");
		return -ENOMEM;
	}

	/*
	 * Fill in our private data.
	 */
	ud = (struct ubicom32vfb_drvdata *)fbinfo->par;
	ud->fbinfo = fbinfo;
	dev_set_drvdata(dev, ud);

	/*
	 * Allocate and align the requested amount of VRAM
	 */
	ud->total_vram_size = (vram_size * 1024) + UBICOM32VFB_ALIGNMENT;
	ud->fb = kmalloc(ud->total_vram_size, GFP_KERNEL);
	if (ud->fb == NULL) {
		dev_err(dev, "Couldn't allocate VRAM\n");
		rc = -ENOMEM;
		goto fail;
	}

	offset = (u32_t)ud->fb & (UBICOM32VFB_ALIGNMENT - 1);
	if (!offset) {
		ud->fb_aligned = ud->fb;
	} else {
		offset =  UBICOM32VFB_ALIGNMENT - offset;
		ud->fb_aligned = ud->fb + offset;
	}

	/*
	 * Clear the entire frame buffer
	 */
	memset(ud->fb_aligned, 0, vram_size * 1024);

	/*
	 * Fill in the fb_var_screeninfo structure
	 */
	memset(&ubicom32vfb_var, 0, sizeof(ubicom32vfb_var));
	ubicom32vfb_var.bits_per_pixel = BITS_PER_PIXEL;
	ubicom32vfb_var.red.length = 5;
	ubicom32vfb_var.green.length = 6;
	ubicom32vfb_var.green.offset = 5;
	ubicom32vfb_var.blue.length = 5;
	ubicom32vfb_var.activate = FB_ACTIVATE_NOW;

	if (bgr) {
		ubicom32vfb_var.red.offset = 0;
		ubicom32vfb_var.blue.offset = 11;
	} else {
		ubicom32vfb_var.red.offset = 11;
		ubicom32vfb_var.blue.offset = 0;
	}

	/*
	 * Fill in the fb_info structure
	 */
	ud->fbinfo->device = dev;
	ud->fbinfo->screen_base = (void *)ud->fb_aligned;
	ud->fbinfo->fbops = &ubicom32vfb_ops;
	ud->fbinfo->fix = ubicom32vfb_fix;
	ud->fbinfo->fix.smem_start = (u32)ud->fb_aligned;
	ud->fbinfo->fix.smem_len = vram_size * 1024;
	ud->fbinfo->fix.line_length = xres * 2;
	ud->fbinfo->fix.mmio_start = (u32)ud;
	ud->fbinfo->fix.mmio_len = sizeof(struct ubicom32vfb_drvdata);

	/*
	 * We support panning in the y direction only
	 */
	ud->fbinfo->fix.xpanstep = 0;
	ud->fbinfo->fix.ypanstep = 1;

	ud->fbinfo->pseudo_palette = ud->pseudo_palette;
	ud->fbinfo->flags = FBINFO_DEFAULT;
	ud->fbinfo->var = ubicom32vfb_var;
	ud->fbinfo->var.xres = xres;
	ud->fbinfo->var.yres = yres;

	/*
	 * We cannot pan in the X direction, so xres_virtual is xres
	 * We can pan in the Y direction, so yres_virtual is vram_size / ud->fbinfo->fix.line_length
	 */
	ud->fbinfo->var.xres_virtual = xres;
	ud->fbinfo->var.yres_virtual = (vram_size * 1024) / ud->fbinfo->fix.line_length;

	/*
	 * Allocate a color map
	 */
	rc = fb_alloc_cmap(&ud->fbinfo->cmap, PALETTE_ENTRIES_NO, 0);
	if (rc) {
		dev_err(dev, "Fail to allocate colormap (%d entries)\n",
			PALETTE_ENTRIES_NO);
		goto fail;
	}
	ud->cmap_alloc = true;

	/*
	 * Register new frame buffer
	 */
	rc = register_framebuffer(ud->fbinfo);
	if (rc) {
		dev_err(dev, "Could not register frame buffer\n");
		goto fail;
	}

	/*
	 * Tell the log we are here
	 */
	dev_info(dev, "fbaddr=%p align=%p, size=%uKB screen(%ux%u) virt(%ux%u)\n",
		ud->fb, ud->fb_aligned, vram_size, ud->fbinfo->var.xres, ud->fbinfo->var.yres,
		ud->fbinfo->var.xres_virtual, ud->fbinfo->var.yres_virtual);

	/*
	 * Success
	 */
	return 0;

fail:
	ubicom32vfb_release(dev);
	return rc;
}

/*
 * ubicom32vfb_platform_remove
 */
static int ubicom32vfb_platform_remove(struct platform_device *pdev)
{
	dev_info(&(pdev->dev), "Ubicom32 FB Driver Remove\n");
	return ubicom32vfb_release(&pdev->dev);
}

static struct platform_driver ubicom32vfb_platform_driver = {
	.probe		= ubicom32vfb_platform_probe,
	.remove		= ubicom32vfb_platform_remove,
	.driver = {
		.name = DRIVER_NAME,
		.owner = THIS_MODULE,
	},
};

#ifndef MODULE
/*
 * ubicom32vfb_setup
 *	Process kernel boot options
 */
static int __init ubicom32vfb_setup(char *options)
{
	char *this_opt;

	if (!options || !*options) {
		return 0;
	}

	while ((this_opt = strsep(&options, ",")) != NULL) {
		if (!*this_opt) {
			continue;
		}

		if (!strncmp(this_opt, "vram_size=", 10)) {
			vram_size = simple_strtoul(this_opt + 10, NULL, 0);
			continue;
		}

		if (!strncmp(this_opt, "bgr=", 4)) {
			bgr = simple_strtoul(this_opt + 4, NULL, 0);
			continue;
		}

		if (!strncmp(this_opt, "xres=", 5)) {
			xres = simple_strtoul(this_opt + 5, NULL, 0);
			continue;
		}

		if (!strncmp(this_opt, "yres=", 5)) {
			yres = simple_strtoul(this_opt + 5, NULL, 0);
			continue;
		}
	}
	return 0;
}
#endif /* MODULE */

/*
 * ubicom32vfb_init
 */
static int __devinit ubicom32vfb_init(void)
{
	int ret;

#ifndef MODULE
	/*
	 * Get kernel boot options (in 'video=ubicom32vfb:<options>')
	 */
	char *option = NULL;

	if (fb_get_options(DRIVER_NAME, &option)) {
		return -ENODEV;
	}
	ubicom32vfb_setup(option);
#endif /* MODULE */

	ret = platform_driver_register(&ubicom32vfb_platform_driver);

#ifdef CONFIG_FB_UBICOM32_VIRTUAL_NOAUTO
	return ret;
#else
	if (!ret) {
		ubicom32vfb_platform_device = platform_device_alloc(DRIVER_NAME, 0);

		if (ubicom32vfb_platform_device)
			ret = platform_device_add(ubicom32vfb_platform_device);
		else
			ret = -ENOMEM;

		if (ret) {
			platform_device_put(ubicom32vfb_platform_device);
			platform_driver_unregister(&ubicom32vfb_platform_driver);
		}
	}

	return ret;
#endif
}
module_init(ubicom32vfb_init);

/*
 * ubicom32vfb_exit
 */
static void __exit ubicom32vfb_exit(void)
{
	platform_device_unregister(ubicom32vfb_platform_device);
	platform_driver_unregister(&ubicom32vfb_platform_driver);
}
module_exit(ubicom32vfb_exit);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Patrick Tjin <@ubicom.com>");
MODULE_DESCRIPTION(DRIVER_DESCRIPTION);