From patchwork Thu Jan 13 06:40:20 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefano Babic X-Patchwork-Id: 78665 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 4A62AB70E2 for ; Thu, 13 Jan 2011 17:40:31 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B49CA28087; Thu, 13 Jan 2011 07:40:28 +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 z0OoVoy3u6mw; Thu, 13 Jan 2011 07:40:28 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B435F2808A; Thu, 13 Jan 2011 07:40:26 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1509A2808A for ; Thu, 13 Jan 2011 07:40:25 +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 knas4oYFISz3 for ; Thu, 13 Jan 2011 07:40:23 +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 smtpi4.ngi.it (smtpi4.ngi.it [88.149.128.104]) by theia.denx.de (Postfix) with ESMTP id 06AB128087 for ; Thu, 13 Jan 2011 07:40:21 +0100 (CET) Received: from paperina.lan (unknown [88.149.182.160]) by smtpi4.ngi.it (Postfix) with ESMTP id 24CFE4215A; Thu, 13 Jan 2011 07:40:21 +0100 (CET) Received: from [192.168.2.245] (papero.lan [192.168.2.245]) by paperina.lan (Postfix) with ESMTP id 8F4AD140A17C; Thu, 13 Jan 2011 07:40:20 +0100 (CET) Message-ID: <4D2E9E54.6040704@denx.de> Date: Thu, 13 Jan 2011 07:40:20 +0100 From: Stefano Babic User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.13) Gecko/20101208 Lightning/1.0b2 Thunderbird/3.1.7 MIME-Version: 1.0 To: Wolfgang Denk , "u-boot@lists.denx.de" X-Enigmail-Version: 1.1.2 Subject: [U-Boot] [GIT PULL] Pull request: u-boot-imx X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 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 Hi Wolfgang, The following changes since commit cdc51c294ad33879c4e57edf4c9d2155381b1d59: Merge branch 'next' of ../next (2010-12-22 21:16:17 +0100) are available in the git repository at: git://www.denx.de/git/u-boot-imx.git master Liu Hui-R64343 (9): MX51EVK: UART does not print out the early information MX5: Add initial support for MX53 processor fec_mxc: add support for MX53 processor serial_mxc: add support for MX53 processor mxc_gpio: add support for MX53 processor mxc_i2c: add support for MX53 processor fsl_pmic: add I2C interface support imximage: Add MX53 boot image support MX5:MX53: add initial support for MX53EVK board MAINTAINERS | 4 + arch/arm/cpu/armv7/mx5/iomux.c | 30 ++- arch/arm/cpu/armv7/mx5/lowlevel_init.S | 91 +++--- arch/arm/cpu/armv7/mx5/soc.c | 22 +- arch/arm/include/asm/arch-mx5/asm-offsets.h | 5 + arch/arm/include/asm/arch-mx5/imx-regs.h | 82 ++--- arch/arm/include/asm/arch-mx5/iomux.h | 102 ------ arch/arm/include/asm/arch-mx5/mx5x_pins.h | 469 ++++++++++++++++++++++++++- board/freescale/mx51evk/mx51evk.c | 11 +- board/freescale/mx53evk/Makefile | 48 +++ board/freescale/mx53evk/config.mk | 24 ++ board/freescale/mx53evk/imximage.cfg | 112 +++++++ board/freescale/mx53evk/mx53evk.c | 397 +++++++++++++++++++++++ boards.cfg | 1 + doc/README.imximage | 12 +- drivers/gpio/mxc_gpio.c | 9 +- drivers/i2c/mxc_i2c.c | 21 +- drivers/misc/fsl_pmic.c | 45 +++- drivers/net/fec_mxc.c | 2 +- drivers/net/fec_mxc.h | 4 +- drivers/serial/serial_mxc.c | 6 + include/configs/mx51evk.h | 5 +- include/configs/mx53evk.h | 193 +++++++++++ include/configs/vision2.h | 3 +- include/mc13892.h | 5 + tools/imximage.c | 421 +++++++++++++++++++----- tools/imximage.h | 110 +++++-- 27 files changed, 1900 insertions(+), 334 deletions(-) mode change 100644 => 100755 arch/arm/cpu/armv7/mx5/iomux.c mode change 100644 => 100755 arch/arm/cpu/armv7/mx5/lowlevel_init.S mode change 100644 => 100755 arch/arm/include/asm/arch-mx5/imx-regs.h mode change 100644 => 100755 arch/arm/include/asm/arch-mx5/mx5x_pins.h create mode 100755 board/freescale/mx53evk/Makefile create mode 100755 board/freescale/mx53evk/config.mk create mode 100644 board/freescale/mx53evk/imximage.cfg create mode 100755 board/freescale/mx53evk/mx53evk.c mode change 100644 => 100755 drivers/i2c/mxc_i2c.c mode change 100644 => 100755 include/configs/mx51evk.h create mode 100755 include/configs/mx53evk.h