Re: [PATCH v3] video: add OpenCores VGA/LCD framebuffer driver
From: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
Date: 2013-11-26 06:56:47
Also in:
lkml
On Sun, Nov 24, 2013 at 03:12:11PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
On 06:34 Fri 22 Nov , Stefan Kristiansson wrote:quoted
This adds support for the VGA/LCD core available from OpenCores: http://opencores.org/project,vga_lcd The driver have been tested together with both OpenRISC and ARM (socfpga) processors. Signed-off-by: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>Tomi hold on this one I need check fee stuff on itquoted
--- Changes in v2: - Add Microblaze as an example user and fix a typo in Xilinx Zynq Changes in v3: - Use devm_kzalloc instead of kzalloc - Remove superflous MODULE #ifdef --- drivers/video/Kconfig | 17 ++ drivers/video/Makefile | 1 + drivers/video/ocfb.c | 471 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 489 insertions(+) create mode 100644 drivers/video/ocfb.cdiff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 84b685f..3b3f31e 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig@@ -979,6 +979,23 @@ config FB_PVR2 (<file:drivers/video/pvr2fb.c>). Please see the file <file:Documentation/fb/pvr2fb.txt>. +config FB_OPENCORES + tristate "OpenCores VGA/LCD core 2.0 framebuffer support" + depends on FB + select FB_CFB_FILLRECT + select FB_CFB_COPYAREA + select FB_CFB_IMAGEBLIT + default nnon need
Ok, let's get rid of that then. I'll hold on to v4 for a while, since it sounded you potentially had some additional comments coming up? Stefan