| Submitter | Stefano Babic |
|---|---|
| Date | Jan. 21, 2011, 9:24 a.m. |
| Message ID | <4D3950CB.2020802@denx.de> |
| Download | mbox |
| Permalink | /patch/79817/ |
| State | Superseded |
| Headers | show |
Pull-request
git://www.denx.de/git/u-boot-imx.git masterComments
Le 21/01/2011 10:24, Stefano Babic a écrit : > Hi Albert, > > The following changes since commit d6a5e6d531e357dd8016141f73d370d02886a7eb: > > Cleanup .boards.depend when using an objtree (2011-01-21 08:56:50 +0100) > > are available in the git repository at: > git://www.denx.de/git/u-boot-imx.git master Pulled into u-boot-arm, thanks. Amicalement,
Hi Albert, The following changes since commit d6a5e6d531e357dd8016141f73d370d02886a7eb: Cleanup .boards.depend when using an objtree (2011-01-21 08:56:50 +0100) are available in the git repository at: git://www.denx.de/git/u-boot-imx.git master Liu Hui-R64343 (8): 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 MX5:MX53: add initial support for MX53EVK board Marek Vasut (1): BLOCK: Add freescale IMX51 PATA driver Stefano Babic (1): mxc_nand: add support for i.MX35 processor 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 + drivers/block/Makefile | 1 + drivers/block/mxc_ata.c | 149 +++++++++ drivers/gpio/mxc_gpio.c | 9 +- drivers/i2c/mxc_i2c.c | 21 +- drivers/misc/fsl_pmic.c | 45 +++- drivers/mtd/nand/mxc_nand.c | 6 +- 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 + 27 files changed, 1620 insertions(+), 227 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 create mode 100644 drivers/block/mxc_ata.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