From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from 12.mo5.mail-out.ovh.net ([46.105.39.65] helo=mo5.mail-out.ovh.net) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TFUS8-00081O-0n for barebox@lists.infradead.org; Sat, 22 Sep 2012 18:29:22 +0000 Received: from mail404.ha.ovh.net (b9.ovh.net [213.186.33.59]) by mo5.mail-out.ovh.net (Postfix) with SMTP id 5EE5CFF9FA9 for ; Sat, 22 Sep 2012 20:35:14 +0200 (CEST) From: Jean-Christophe PLAGNIOL-VILLARD Date: Sat, 22 Sep 2012 20:26:44 +0200 Message-Id: <1348338408-26737-1-git-send-email-plagnioj@jcrosoft.com> In-Reply-To: <20120922175346.GX26553@game.jcrosoft.org> References: <20120922175346.GX26553@game.jcrosoft.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: barebox-bounces@lists.infradead.org Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH 1/5] video: add atmel lcdc frambuffer support To: barebox@lists.infradead.org Cc: Nicolas Ferre This IP is present on the at91sam9 until the sam9g45, on the sam9x5 we use a new IP. This driver is based on the linux one. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD Cc: Nicolas Ferre --- arch/arm/mach-at91/include/mach/board.h | 4 + drivers/video/Kconfig | 4 + drivers/video/Makefile | 1 + drivers/video/atmel_lcdfb.c | 480 +++++++++++++++++++++++++++++++ include/video/atmel_lcdc.h | 211 ++++++++++++++ 5 files changed, 700 insertions(+) create mode 100644 drivers/video/atmel_lcdfb.c create mode 100644 include/video/atmel_lcdc.h diff --git a/arch/arm/mach-at91/include/mach/board.h b/arch/arm/mach-at91/include/mach/board.h index 670c73d..dccc37a 100644 --- a/arch/arm/mach-at91/include/mach/board.h +++ b/arch/arm/mach-at91/include/mach/board.h @@ -23,6 +23,8 @@ #include #include #include +#include +#include