From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from 1.mo2.mail-out.ovh.net ([46.105.63.121] helo=mo2.mail-out.ovh.net) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TzQJX-0003Lt-2z for barebox@lists.infradead.org; Sun, 27 Jan 2013 11:22:28 +0000 Received: from mail195.ha.ovh.net (b6.ovh.net [213.186.33.56]) by mo2.mail-out.ovh.net (Postfix) with SMTP id A9E59DC0C79 for ; Sun, 27 Jan 2013 12:32:06 +0100 (CET) From: Jean-Christophe PLAGNIOL-VILLARD Date: Sun, 27 Jan 2013 12:20:42 +0100 Message-Id: <1359285649-18717-1-git-send-email-plagnioj@jcrosoft.com> In-Reply-To: <20130127110714.GL26329@game.jcrosoft.org> References: <20130127110714.GL26329@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/8] 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 | 507 +++++++++++++++++++++++++++++++ include/video/atmel_lcdc.h | 206 +++++++++++++ 5 files changed, 722 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 b0afcf9..83404cc 100644 --- a/arch/arm/mach-at91/include/mach/board.h +++ b/arch/arm/mach-at91/include/mach/board.h @@ -24,6 +24,8 @@ #include #include #include +#include +#include