-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
Copy pathbcm2708_fb.c
791 lines (680 loc) · 21.8 KB
/
bcm2708_fb.c
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
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
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
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
/*
* linux/drivers/video/bcm2708_fb.c
*
* Copyright (C) 2010 Broadcom
*
* 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.
*
* Broadcom simple framebuffer driver
*
* This file is derived from cirrusfb.c
* Copyright 1999-2001 Jeff Garzik <jgarzik@pobox.com>
*
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/slab.h>
#include <linux/mm.h>
#include <linux/fb.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/list.h>
#include <linux/platform_device.h>
#include <linux/clk.h>
#include <linux/printk.h>
#include <linux/console.h>
#include <linux/debugfs.h>
#include <mach/dma.h>
#include <mach/platform.h>
#include <mach/vcio.h>
#include <asm/sizes.h>
#include <linux/io.h>
#include <linux/dma-mapping.h>
#ifdef BCM2708_FB_DEBUG
#define print_debug(fmt,...) pr_debug("%s:%s:%d: "fmt, MODULE_NAME, __func__, __LINE__, ##__VA_ARGS__)
#else
#define print_debug(fmt,...)
#endif
/* This is limited to 16 characters when displayed by X startup */
static const char *bcm2708_name = "BCM2708 FB";
#define DRIVER_NAME "bcm2708_fb"
static int fbwidth = 800; /* module parameter */
static int fbheight = 480; /* module parameter */
static int fbdepth = 16; /* module parameter */
static int fbswap = 0; /* module parameter */
static u32 dma_busy_wait_threshold = 1<<15;
module_param(dma_busy_wait_threshold, int, 0644);
MODULE_PARM_DESC(dma_busy_wait_threshold, "Busy-wait for DMA completion below this area");
#include <mach/vcio.h>
struct fbinfo_s {
u32 xres, yres, xres_virtual, yres_virtual;
u32 pitch, bpp;
u32 xoffset, yoffset;
u32 base;
u32 screen_size;
u16 cmap[256];
};
struct bcm2708_fb_stats {
struct debugfs_regset32 regset;
u32 dma_copies;
u32 dma_irqs;
};
struct bcm2708_fb {
struct fb_info fb;
struct platform_device *dev;
struct fbinfo_s *info;
dma_addr_t dma;
u32 cmap[16];
int dma_chan;
int dma_irq;
void __iomem *dma_chan_base;
void *cb_base; /* DMA control blocks */
dma_addr_t cb_handle;
struct dentry *debugfs_dir;
wait_queue_head_t dma_waitq;
struct bcm2708_fb_stats stats;
unsigned long fb_bus_address;
};
#define to_bcm2708(info) container_of(info, struct bcm2708_fb, fb)
static void bcm2708_fb_debugfs_deinit(struct bcm2708_fb *fb)
{
debugfs_remove_recursive(fb->debugfs_dir);
fb->debugfs_dir = NULL;
}
static int bcm2708_fb_debugfs_init(struct bcm2708_fb *fb)
{
static struct debugfs_reg32 stats_registers[] = {
{
"dma_copies",
offsetof(struct bcm2708_fb_stats, dma_copies)
},
{
"dma_irqs",
offsetof(struct bcm2708_fb_stats, dma_irqs)
},
};
fb->debugfs_dir = debugfs_create_dir(DRIVER_NAME, NULL);
if (!fb->debugfs_dir) {
pr_warn("%s: could not create debugfs entry\n",
__func__);
return -EFAULT;
}
fb->stats.regset.regs = stats_registers;
fb->stats.regset.nregs = ARRAY_SIZE(stats_registers);
fb->stats.regset.base = &fb->stats;
if (!debugfs_create_regset32(
"stats", 0444, fb->debugfs_dir, &fb->stats.regset)) {
pr_warn("%s: could not create statistics registers\n",
__func__);
goto fail;
}
return 0;
fail:
bcm2708_fb_debugfs_deinit(fb);
return -EFAULT;
}
static int bcm2708_fb_set_bitfields(struct fb_var_screeninfo *var)
{
int ret = 0;
memset(&var->transp, 0, sizeof(var->transp));
var->red.msb_right = 0;
var->green.msb_right = 0;
var->blue.msb_right = 0;
switch (var->bits_per_pixel) {
case 1:
case 2:
case 4:
case 8:
var->red.length = var->bits_per_pixel;
var->red.offset = 0;
var->green.length = var->bits_per_pixel;
var->green.offset = 0;
var->blue.length = var->bits_per_pixel;
var->blue.offset = 0;
break;
case 16:
var->red.length = 5;
var->blue.length = 5;
/*
* Green length can be 5 or 6 depending whether
* we're operating in RGB555 or RGB565 mode.
*/
if (var->green.length != 5 && var->green.length != 6)
var->green.length = 6;
break;
case 24:
var->red.length = 8;
var->blue.length = 8;
var->green.length = 8;
break;
case 32:
var->red.length = 8;
var->green.length = 8;
var->blue.length = 8;
var->transp.length = 8;
break;
default:
ret = -EINVAL;
break;
}
/*
* >= 16bpp displays have separate colour component bitfields
* encoded in the pixel data. Calculate their position from
* the bitfield length defined above.
*/
if (ret == 0 && var->bits_per_pixel >= 24 && fbswap) {
var->blue.offset = 0;
var->green.offset = var->blue.offset + var->blue.length;
var->red.offset = var->green.offset + var->green.length;
var->transp.offset = var->red.offset + var->red.length;
} else if (ret == 0 && var->bits_per_pixel >= 24) {
var->red.offset = 0;
var->green.offset = var->red.offset + var->red.length;
var->blue.offset = var->green.offset + var->green.length;
var->transp.offset = var->blue.offset + var->blue.length;
} else if (ret == 0 && var->bits_per_pixel >= 16) {
var->blue.offset = 0;
var->green.offset = var->blue.offset + var->blue.length;
var->red.offset = var->green.offset + var->green.length;
var->transp.offset = var->red.offset + var->red.length;
}
return ret;
}
static int bcm2708_fb_check_var(struct fb_var_screeninfo *var,
struct fb_info *info)
{
/* info input, var output */
int yres;
/* info input, var output */
print_debug("bcm2708_fb_check_var info(%p) %dx%d (%dx%d), %d, %d\n", info,
info->var.xres, info->var.yres, info->var.xres_virtual,
info->var.yres_virtual, (int)info->screen_size,
info->var.bits_per_pixel);
print_debug("bcm2708_fb_check_var var(%p) %dx%d (%dx%d), %d\n", var,
var->xres, var->yres, var->xres_virtual, var->yres_virtual,
var->bits_per_pixel);
if (!var->bits_per_pixel)
var->bits_per_pixel = 16;
if (bcm2708_fb_set_bitfields(var) != 0) {
pr_err("bcm2708_fb_check_var: invalid bits_per_pixel %d\n",
var->bits_per_pixel);
return -EINVAL;
}
if (var->xres_virtual < var->xres)
var->xres_virtual = var->xres;
/* use highest possible virtual resolution */
if (var->yres_virtual == -1) {
var->yres_virtual = 480;
pr_err
("bcm2708_fb_check_var: virtual resolution set to maximum of %dx%d\n",
var->xres_virtual, var->yres_virtual);
}
if (var->yres_virtual < var->yres)
var->yres_virtual = var->yres;
if (var->xoffset < 0)
var->xoffset = 0;
if (var->yoffset < 0)
var->yoffset = 0;
/* truncate xoffset and yoffset to maximum if too high */
if (var->xoffset > var->xres_virtual - var->xres)
var->xoffset = var->xres_virtual - var->xres - 1;
if (var->yoffset > var->yres_virtual - var->yres)
var->yoffset = var->yres_virtual - var->yres - 1;
yres = var->yres;
if (var->vmode & FB_VMODE_DOUBLE)
yres *= 2;
else if (var->vmode & FB_VMODE_INTERLACED)
yres = (yres + 1) / 2;
if (var->xres * yres > 1920 * 1200) {
pr_err("bcm2708_fb_check_var: ERROR: Pixel size >= 1920x1200; "
"special treatment required! (TODO)\n");
return -EINVAL;
}
return 0;
}
static int bcm2708_fb_set_par(struct fb_info *info)
{
uint32_t val = 0;
struct bcm2708_fb *fb = to_bcm2708(info);
volatile struct fbinfo_s *fbinfo = fb->info;
fbinfo->xres = info->var.xres;
fbinfo->yres = info->var.yres;
fbinfo->xres_virtual = info->var.xres_virtual;
fbinfo->yres_virtual = info->var.yres_virtual;
fbinfo->bpp = info->var.bits_per_pixel;
fbinfo->xoffset = info->var.xoffset;
fbinfo->yoffset = info->var.yoffset;
fbinfo->base = 0; /* filled in by VC */
fbinfo->pitch = 0; /* filled in by VC */
print_debug("bcm2708_fb_set_par info(%p) %dx%d (%dx%d), %d, %d\n", info,
info->var.xres, info->var.yres, info->var.xres_virtual,
info->var.yres_virtual, (int)info->screen_size,
info->var.bits_per_pixel);
/* ensure last write to fbinfo is visible to GPU */
wmb();
/* inform vc about new framebuffer */
bcm_mailbox_write(MBOX_CHAN_FB, fb->dma);
/* TODO: replace fb driver with vchiq version */
/* wait for response */
bcm_mailbox_read(MBOX_CHAN_FB, &val);
/* ensure GPU writes are visible to us */
rmb();
if (val == 0) {
fb->fb.fix.line_length = fbinfo->pitch;
if (info->var.bits_per_pixel <= 8)
fb->fb.fix.visual = FB_VISUAL_PSEUDOCOLOR;
else
fb->fb.fix.visual = FB_VISUAL_TRUECOLOR;
fb->fb_bus_address = fbinfo->base;
fbinfo->base &= ~0xc0000000;
fb->fb.fix.smem_start = fbinfo->base;
fb->fb.fix.smem_len = fbinfo->pitch * fbinfo->yres_virtual;
fb->fb.screen_size = fbinfo->screen_size;
if (fb->fb.screen_base)
iounmap(fb->fb.screen_base);
fb->fb.screen_base =
(void *)ioremap_wc(fbinfo->base, fb->fb.screen_size);
if (!fb->fb.screen_base) {
/* the console may currently be locked */
console_trylock();
console_unlock();
BUG(); /* what can we do here */
}
}
print_debug
("BCM2708FB: start = %p,%p width=%d, height=%d, bpp=%d, pitch=%d size=%d success=%d\n",
(void *)fb->fb.screen_base, (void *)fb->fb_bus_address,
fbinfo->xres, fbinfo->yres, fbinfo->bpp,
fbinfo->pitch, (int)fb->fb.screen_size, val);
return val;
}
static inline u32 convert_bitfield(int val, struct fb_bitfield *bf)
{
unsigned int mask = (1 << bf->length) - 1;
return (val >> (16 - bf->length) & mask) << bf->offset;
}
static int bcm2708_fb_setcolreg(unsigned int regno, unsigned int red,
unsigned int green, unsigned int blue,
unsigned int transp, struct fb_info *info)
{
struct bcm2708_fb *fb = to_bcm2708(info);
/*print_debug("BCM2708FB: setcolreg %d:(%02x,%02x,%02x,%02x) %x\n", regno, red, green, blue, transp, fb->fb.fix.visual);*/
if (fb->fb.var.bits_per_pixel <= 8) {
if (regno < 256) {
/* blue [0:4], green [5:10], red [11:15] */
fb->info->cmap[regno] = ((red >> (16-5)) & 0x1f) << 11 |
((green >> (16-6)) & 0x3f) << 5 |
((blue >> (16-5)) & 0x1f) << 0;
}
/* Hack: we need to tell GPU the palette has changed, but currently bcm2708_fb_set_par takes noticable time when called for every (256) colour */
/* So just call it for what looks like the last colour in a list for now. */
if (regno == 15 || regno == 255)
bcm2708_fb_set_par(info);
} else if (regno < 16) {
fb->cmap[regno] = convert_bitfield(transp, &fb->fb.var.transp) |
convert_bitfield(blue, &fb->fb.var.blue) |
convert_bitfield(green, &fb->fb.var.green) |
convert_bitfield(red, &fb->fb.var.red);
}
return regno > 255;
}
/* tag part of the message */
struct vc_msg_tag {
uint32_t tag_id; /* the message id */
uint32_t buffer_size; /* size of the buffer (which in this case is always 4 bytes) */
uint32_t data_size; /* amount of data being sent or received */
uint32_t blank_mode; /* the ID of the clock/voltage to get or set */
uint32_t reserved; /* the value (e.g. rate (in Hz)) to set */
};
/* message structure to be sent to videocore */
struct vc_msg {
uint32_t size; /* simply, sizeof(struct vc_msg) */
uint32_t unused; /* unused in the blankscreen message */
struct vc_msg_tag tag; /* the tag structure above to make */
uint32_t end_tag; /* an end identifier, should be set to NULL */
};
static int bcm2708_fb_blank(int blank_mode, struct fb_info *info)
{
int result;
struct vc_msg msg;
pr_info("bcm2708_fb_blank blank_mode=%d\n",blank_mode);
memset(&msg, 0, sizeof msg);
msg.tag.tag_id = VCMSG_SET_BLANK_SCREEN;
msg.size = sizeof msg;
msg.tag.buffer_size = 4;
msg.tag.data_size = 4;
msg.tag.blank_mode = blank_mode ;
// send the message
result = bcm_mailbox_property(&msg, sizeof msg);
pr_info("bcm2708_fb_blank result=%d msg.tag.blank_mode=%d\n",result,msg.tag.blank_mode);
return result;
}
static void bcm2708_fb_fillrect(struct fb_info *info,
const struct fb_fillrect *rect)
{
/* (is called) print_debug("bcm2708_fb_fillrect\n"); */
cfb_fillrect(info, rect);
}
/* A helper function for configuring dma control block */
static void set_dma_cb(struct bcm2708_dma_cb *cb,
int burst_size,
dma_addr_t dst,
int dst_stride,
dma_addr_t src,
int src_stride,
int w,
int h)
{
cb->info = BCM2708_DMA_BURST(burst_size) | BCM2708_DMA_S_WIDTH |
BCM2708_DMA_S_INC | BCM2708_DMA_D_WIDTH |
BCM2708_DMA_D_INC | BCM2708_DMA_TDMODE;
cb->dst = dst;
cb->src = src;
/*
* This is not really obvious from the DMA documentation,
* but the top 16 bits must be programmmed to "height -1"
* and not "height" in 2D mode.
*/
cb->length = ((h - 1) << 16) | w;
cb->stride = ((dst_stride - w) << 16) | (u16)(src_stride - w);
cb->pad[0] = 0;
cb->pad[1] = 0;
}
static void bcm2708_fb_copyarea(struct fb_info *info,
const struct fb_copyarea *region)
{
struct bcm2708_fb *fb = to_bcm2708(info);
struct bcm2708_dma_cb *cb = fb->cb_base;
int bytes_per_pixel = (info->var.bits_per_pixel + 7) >> 3;
/* Channel 0 supports larger bursts and is a bit faster */
int burst_size = (fb->dma_chan == 0) ? 8 : 2;
int pixels = region->width * region->height;
/* Fallback to cfb_copyarea() if we don't like something */
if (bytes_per_pixel > 4 ||
info->var.xres * info->var.yres > 1920 * 1200 ||
region->width <= 0 || region->width > info->var.xres ||
region->height <= 0 || region->height > info->var.yres ||
region->sx < 0 || region->sx >= info->var.xres ||
region->sy < 0 || region->sy >= info->var.yres ||
region->dx < 0 || region->dx >= info->var.xres ||
region->dy < 0 || region->dy >= info->var.yres ||
region->sx + region->width > info->var.xres ||
region->dx + region->width > info->var.xres ||
region->sy + region->height > info->var.yres ||
region->dy + region->height > info->var.yres) {
cfb_copyarea(info, region);
return;
}
if (region->dy == region->sy && region->dx > region->sx) {
/*
* A difficult case of overlapped copy. Because DMA can't
* copy individual scanlines in backwards direction, we need
* two-pass processing. We do it by programming a chain of dma
* control blocks in the first 16K part of the buffer and use
* the remaining 48K as the intermediate temporary scratch
* buffer. The buffer size is sufficient to handle up to
* 1920x1200 resolution at 32bpp pixel depth.
*/
int y;
dma_addr_t control_block_pa = fb->cb_handle;
dma_addr_t scratchbuf = fb->cb_handle + 16 * 1024;
int scanline_size = bytes_per_pixel * region->width;
int scanlines_per_cb = (64 * 1024 - 16 * 1024) / scanline_size;
for (y = 0; y < region->height; y += scanlines_per_cb) {
dma_addr_t src =
fb->fb_bus_address +
bytes_per_pixel * region->sx +
(region->sy + y) * fb->fb.fix.line_length;
dma_addr_t dst =
fb->fb_bus_address +
bytes_per_pixel * region->dx +
(region->dy + y) * fb->fb.fix.line_length;
if (region->height - y < scanlines_per_cb)
scanlines_per_cb = region->height - y;
set_dma_cb(cb, burst_size, scratchbuf, scanline_size,
src, fb->fb.fix.line_length,
scanline_size, scanlines_per_cb);
control_block_pa += sizeof(struct bcm2708_dma_cb);
cb->next = control_block_pa;
cb++;
set_dma_cb(cb, burst_size, dst, fb->fb.fix.line_length,
scratchbuf, scanline_size,
scanline_size, scanlines_per_cb);
control_block_pa += sizeof(struct bcm2708_dma_cb);
cb->next = control_block_pa;
cb++;
}
/* move the pointer back to the last dma control block */
cb--;
} else {
/* A single dma control block is enough. */
int sy, dy, stride;
if (region->dy <= region->sy) {
/* processing from top to bottom */
dy = region->dy;
sy = region->sy;
stride = fb->fb.fix.line_length;
} else {
/* processing from bottom to top */
dy = region->dy + region->height - 1;
sy = region->sy + region->height - 1;
stride = -fb->fb.fix.line_length;
}
set_dma_cb(cb, burst_size,
fb->fb_bus_address + dy * fb->fb.fix.line_length +
bytes_per_pixel * region->dx,
stride,
fb->fb_bus_address + sy * fb->fb.fix.line_length +
bytes_per_pixel * region->sx,
stride,
region->width * bytes_per_pixel,
region->height);
}
/* end of dma control blocks chain */
cb->next = 0;
if (pixels < dma_busy_wait_threshold) {
bcm_dma_start(fb->dma_chan_base, fb->cb_handle);
bcm_dma_wait_idle(fb->dma_chan_base);
} else {
void __iomem *dma_chan = fb->dma_chan_base;
cb->info |= BCM2708_DMA_INT_EN;
bcm_dma_start(fb->dma_chan_base, fb->cb_handle);
while (bcm_dma_is_busy(dma_chan)) {
wait_event_interruptible(
fb->dma_waitq,
!bcm_dma_is_busy(dma_chan));
}
fb->stats.dma_irqs++;
}
fb->stats.dma_copies++;
}
static void bcm2708_fb_imageblit(struct fb_info *info,
const struct fb_image *image)
{
/* (is called) print_debug("bcm2708_fb_imageblit\n"); */
cfb_imageblit(info, image);
}
static irqreturn_t bcm2708_fb_dma_irq(int irq, void *cxt)
{
struct bcm2708_fb *fb = cxt;
/* FIXME: should read status register to check if this is
* actually interrupting us or not, in case this interrupt
* ever becomes shared amongst several DMA channels
*
* readl(dma_chan_base + BCM2708_DMA_CS) & BCM2708_DMA_IRQ;
*/
/* acknowledge the interrupt */
writel(BCM2708_DMA_INT, fb->dma_chan_base + BCM2708_DMA_CS);
wake_up(&fb->dma_waitq);
return IRQ_HANDLED;
}
static struct fb_ops bcm2708_fb_ops = {
.owner = THIS_MODULE,
.fb_check_var = bcm2708_fb_check_var,
.fb_set_par = bcm2708_fb_set_par,
.fb_setcolreg = bcm2708_fb_setcolreg,
.fb_blank = bcm2708_fb_blank,
.fb_fillrect = bcm2708_fb_fillrect,
.fb_copyarea = bcm2708_fb_copyarea,
.fb_imageblit = bcm2708_fb_imageblit,
};
static int bcm2708_fb_register(struct bcm2708_fb *fb)
{
int ret;
dma_addr_t dma;
void *mem;
mem =
dma_alloc_coherent(NULL, PAGE_ALIGN(sizeof(*fb->info)), &dma,
GFP_KERNEL);
if (NULL == mem) {
pr_err(": unable to allocate fbinfo buffer\n");
ret = -ENOMEM;
} else {
fb->info = (struct fbinfo_s *)mem;
fb->dma = dma;
}
fb->fb.fbops = &bcm2708_fb_ops;
fb->fb.flags = FBINFO_FLAG_DEFAULT | FBINFO_HWACCEL_COPYAREA;
fb->fb.pseudo_palette = fb->cmap;
strncpy(fb->fb.fix.id, bcm2708_name, sizeof(fb->fb.fix.id));
fb->fb.fix.type = FB_TYPE_PACKED_PIXELS;
fb->fb.fix.type_aux = 0;
fb->fb.fix.xpanstep = 0;
fb->fb.fix.ypanstep = 0;
fb->fb.fix.ywrapstep = 0;
fb->fb.fix.accel = FB_ACCEL_NONE;
fb->fb.var.xres = fbwidth;
fb->fb.var.yres = fbheight;
fb->fb.var.xres_virtual = fbwidth;
fb->fb.var.yres_virtual = fbheight;
fb->fb.var.bits_per_pixel = fbdepth;
fb->fb.var.vmode = FB_VMODE_NONINTERLACED;
fb->fb.var.activate = FB_ACTIVATE_NOW;
fb->fb.var.nonstd = 0;
fb->fb.var.height = -1; /* height of picture in mm */
fb->fb.var.width = -1; /* width of picture in mm */
fb->fb.var.accel_flags = 0;
fb->fb.monspecs.hfmin = 0;
fb->fb.monspecs.hfmax = 100000;
fb->fb.monspecs.vfmin = 0;
fb->fb.monspecs.vfmax = 400;
fb->fb.monspecs.dclkmin = 1000000;
fb->fb.monspecs.dclkmax = 100000000;
bcm2708_fb_set_bitfields(&fb->fb.var);
init_waitqueue_head(&fb->dma_waitq);
/*
* Allocate colourmap.
*/
fb_set_var(&fb->fb, &fb->fb.var);
print_debug("BCM2708FB: registering framebuffer (%dx%d@%d) (%d)\n", fbwidth
fbheight, fbdepth, fbswap);
ret = register_framebuffer(&fb->fb);
print_debug("BCM2708FB: register framebuffer (%d)\n", ret);
if (ret == 0)
goto out;
print_debug("BCM2708FB: cannot register framebuffer (%d)\n", ret);
out:
return ret;
}
static int bcm2708_fb_probe(struct platform_device *dev)
{
struct bcm2708_fb *fb;
int ret;
fb = kzalloc(sizeof(struct bcm2708_fb), GFP_KERNEL);
if (!fb) {
dev_err(&dev->dev,
"could not allocate new bcm2708_fb struct\n");
ret = -ENOMEM;
goto free_region;
}
bcm2708_fb_debugfs_init(fb);
fb->cb_base = dma_alloc_writecombine(&dev->dev, SZ_64K,
&fb->cb_handle, GFP_KERNEL);
if (!fb->cb_base) {
dev_err(&dev->dev, "cannot allocate DMA CBs\n");
ret = -ENOMEM;
goto free_fb;
}
pr_info("BCM2708FB: allocated DMA memory %08x\n",
fb->cb_handle);
ret = bcm_dma_chan_alloc(BCM_DMA_FEATURE_BULK,
&fb->dma_chan_base, &fb->dma_irq);
if (ret < 0) {
dev_err(&dev->dev, "couldn't allocate a DMA channel\n");
goto free_cb;
}
fb->dma_chan = ret;
ret = request_irq(fb->dma_irq, bcm2708_fb_dma_irq,
0, "bcm2708_fb dma", fb);
if (ret) {
pr_err("%s: failed to request DMA irq\n", __func__);
goto free_dma_chan;
}
pr_info("BCM2708FB: allocated DMA channel %d @ %p\n",
fb->dma_chan, fb->dma_chan_base);
fb->dev = dev;
ret = bcm2708_fb_register(fb);
if (ret == 0) {
platform_set_drvdata(dev, fb);
goto out;
}
free_dma_chan:
bcm_dma_chan_free(fb->dma_chan);
free_cb:
dma_free_writecombine(&dev->dev, SZ_64K, fb->cb_base, fb->cb_handle);
free_fb:
kfree(fb);
free_region:
dev_err(&dev->dev, "probe failed, err %d\n", ret);
out:
return ret;
}
static int bcm2708_fb_remove(struct platform_device *dev)
{
struct bcm2708_fb *fb = platform_get_drvdata(dev);
platform_set_drvdata(dev, NULL);
if (fb->fb.screen_base)
iounmap(fb->fb.screen_base);
unregister_framebuffer(&fb->fb);
dma_free_writecombine(&dev->dev, SZ_64K, fb->cb_base, fb->cb_handle);
bcm_dma_chan_free(fb->dma_chan);
dma_free_coherent(NULL, PAGE_ALIGN(sizeof(*fb->info)), (void *)fb->info,
fb->dma);
bcm2708_fb_debugfs_deinit(fb);
free_irq(fb->dma_irq, fb);
kfree(fb);
return 0;
}
static struct platform_driver bcm2708_fb_driver = {
.probe = bcm2708_fb_probe,
.remove = bcm2708_fb_remove,
.driver = {
.name = DRIVER_NAME,
.owner = THIS_MODULE,
},
};
static int __init bcm2708_fb_init(void)
{
return platform_driver_register(&bcm2708_fb_driver);
}
module_init(bcm2708_fb_init);
static void __exit bcm2708_fb_exit(void)
{
platform_driver_unregister(&bcm2708_fb_driver);
}
module_exit(bcm2708_fb_exit);
module_param(fbwidth, int, 0644);
module_param(fbheight, int, 0644);
module_param(fbdepth, int, 0644);
module_param(fbswap, int, 0644);
MODULE_DESCRIPTION("BCM2708 framebuffer driver");
MODULE_LICENSE("GPL");
MODULE_PARM_DESC(fbwidth, "Width of ARM Framebuffer");
MODULE_PARM_DESC(fbheight, "Height of ARM Framebuffer");
MODULE_PARM_DESC(fbdepth, "Bit depth of ARM Framebuffer");
MODULE_PARM_DESC(fbswap, "Swap order of red and blue in 24 and 32 bit modes");