Skip to content

Commit 4593b68

Browse files
committed
bcm2708 framebuffer driver
Signed-off-by: popcornmix <[email protected]>
1 parent ed8c2d7 commit 4593b68

File tree

4 files changed

+1336
-1602
lines changed

4 files changed

+1336
-1602
lines changed

drivers/video/Kconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,20 @@ config FB_PM2_FIFO_DISCONNECT
303303
help
304304
Support the Permedia2 FIFO disconnect feature.
305305

306+
config FB_BCM2708
307+
tristate "BCM2708 framebuffer support"
308+
depends on FB && ARM
309+
select FB_CFB_FILLRECT
310+
select FB_CFB_COPYAREA
311+
select FB_CFB_IMAGEBLIT
312+
help
313+
This framebuffer device driver is for the BCM2708 framebuffer.
314+
315+
If you want to compile this as a module (=code which can be
316+
inserted into and removed from the running kernel), say M
317+
here and read <file:Documentation/kbuild/modules.txt>. The module
318+
will be called bcm2708_fb.
319+
306320
config FB_ARMCLCD
307321
tristate "ARM PrimeCell PL110 support"
308322
depends on FB && ARM && ARM_AMBA

drivers/video/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ obj-$(CONFIG_FB_ATMEL) += atmel_lcdfb.o
9595
obj-$(CONFIG_FB_PVR2) += pvr2fb.o
9696
obj-$(CONFIG_FB_VOODOO1) += sstfb.o
9797
obj-$(CONFIG_FB_ARMCLCD) += amba-clcd.o
98+
obj-$(CONFIG_FB_BCM2708) += bcm2708_fb.o
9899
obj-$(CONFIG_FB_68328) += 68328fb.o
99100
obj-$(CONFIG_FB_GBE) += gbefb.o
100101
obj-$(CONFIG_FB_CIRRUS) += cirrusfb.o

0 commit comments

Comments
 (0)