From patchwork Wed Nov 14 13:56:49 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anatolij Gustschin X-Patchwork-Id: 198917 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 1659A2C0080 for ; Thu, 15 Nov 2012 00:57:07 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 54FD34A139; Wed, 14 Nov 2012 14:57:04 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Pw79CM-3x788; Wed, 14 Nov 2012 14:57:04 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 9681C4A13A; Wed, 14 Nov 2012 14:57:02 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D78FB4A13A for ; Wed, 14 Nov 2012 14:57:01 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6-8-aL7Gdbwc for ; Wed, 14 Nov 2012 14:56:58 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.9]) by theia.denx.de (Postfix) with ESMTPS id 314734A139 for ; Wed, 14 Nov 2012 14:56:57 +0100 (CET) Received: from frontend1.mail.m-online.net (unknown [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 3Y1nLw64LGz4KK7P; Wed, 14 Nov 2012 14:56:56 +0100 (CET) X-Auth-Info: NHTbqc9Z8MpJP8AD7Ry02DTfHwKrXzxITkNRkB7jgeY= Received: from wker (p4FC4640E.dip.t-dialin.net [79.196.100.14]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA id 3Y1nLw4sQmzbblw; Wed, 14 Nov 2012 14:56:56 +0100 (CET) Date: Wed, 14 Nov 2012 14:56:49 +0100 From: Anatolij Gustschin To: Tom Rini Message-ID: <20121114145649.235b5ef2@wker> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.22.0; x86_64-pc-linux-gnu) Mime-Version: 1.0 Cc: u-boot Subject: [U-Boot] Pull request: u-boot-video/master X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Hello Tom, The following changes since commit 1cc619be8b73abbee2fd6faf2cd4ade27b516531: Merge branch 'master' of git://git.denx.de/u-boot-avr32 (2012-11-05 09:46:45 -0700) are available in the git repository at: git://git.denx.de/u-boot-video.git master Bo Shen (1): video: atmel: implement lcd_setcolreg function Jens Scharsig (BuS Elektronik) (1): Video: fix compiler warnings in bus_vcxk Liu Ying (1): ipu common: reset ipuv3 correctly Stefan Reinauer (2): video: Provide an API to access video parameters video: Implement additional video API functions in cfb_console Tom Wai-Hong Tam (2): lcd: Fix BMP decode bug that skips the wrong padded row lcd: Implement RLE8 bitmap decoding Vadim Bendebury (2): lcd: Provide an API to access LCD parameters video: Skip bitmaps which do not fit into the screen in cfb_console Vikram Narayanan (2): mx51evk: Fix build error when CONFIG_VIDEO is disabled mx53loco: Fix build error when CONFIG_VIDEO is disabled README | 5 + arch/arm/include/asm/imx-common/mx5_video.h | 21 +++ board/freescale/mx51evk/Makefile | 4 +- board/freescale/mx51evk/mx51evk.c | 57 +-------- board/freescale/mx51evk/mx51evk_video.c | 81 ++++++++++++ board/freescale/mx53loco/Makefile | 4 +- board/freescale/mx53loco/mx53loco.c | 66 +---------- board/freescale/mx53loco/mx53loco_video.c | 94 ++++++++++++++ common/cmd_bmp.c | 5 +- common/lcd.c | 178 ++++++++++++++++++++++++++- drivers/video/atmel_hlcdfb.c | 12 ++ drivers/video/bus_vcxk.c | 2 +- drivers/video/cfb_console.c | 49 ++++++++ drivers/video/ipu_common.c | 10 ++ include/atmel_hlcdc.h | 7 + include/lcd.h | 36 ++++++ include/video.h | 48 +++++++ 17 files changed, 550 insertions(+), 129 deletions(-) create mode 100644 arch/arm/include/asm/imx-common/mx5_video.h create mode 100644 board/freescale/mx51evk/mx51evk_video.c create mode 100644 board/freescale/mx53loco/mx53loco_video.c Please pull. Thanks! Anatolij