From mboxrd@z Thu Jan 1 00:00:00 1970 From: Albert ARIBAUD Date: Sat, 8 Jun 2013 15:27:19 +0200 Subject: [U-Boot] [PULL] : Please pull u-boot-imx In-Reply-To: <51B0B0F5.9080705@denx.de> References: <51B0B0F5.9080705@denx.de> Message-ID: <20130608152719.4d2bddbf@lilith> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Stefano, On Thu, 06 Jun 2013 17:55:33 +0200, Stefano Babic wrote: > Hi Albert, > > please pull from u-boot-imx, thanks. > > The following changes since commit cac423a730d3506154744485af1bbc1cd3a1e6a8: > > Merge branch 'u-boot-ti/master' into 'u-boot-arm/master' (2013-05-11 > 22:24:28 +0200) > > are available in the git repository at: > > > git://www.denx.de/git/u-boot-imx.git master > > for you to fetch changes up to 4a1c7b13ae104d4526d3176793b7f6b06694df15: > > vf610twr: Drop unneeded 'status' variable (2013-06-06 17:52:08 +0200) > > ---------------------------------------------------------------- > Alison Wang (7): > arm: vf610: Add IOMUX support for Vybrid VF610 > arm: vf610: Add Vybrid VF610 CPU support > net: fec_mxc: Add support for Vybrid VF610 > arm: vf610: Add watchdog support for Vybrid VF610 > arm: vf610: Add uart support for Vybrid VF610 > arm: vf610: Add Vybrid VF610 to mxc_ocotp document > arm: vf610: Add basic support for Vybrid VF610TWR board > > Andrew Gabbasov (1): > mx6: mx6qsabrelite/nitrogen6x: Remove incorrect setting of gpio CS > signal > > Beno?t Th?baudeau (1): > imx: spl: Merge libimx-common make rules > > Fabio Estevam (7): > mx28evk: Add splash screen support > mx23evk: Add splash screen support > video: mxsfb: Add an entry for mx23evk/mx28vk video modes > mx6slevk: Allow booting a device tree kernel > wandboard: Enable HDMI splashscreen > ARM: imx: Fix incorrect usage of CONFIG_SYS_MMC_ENV_PART > vf610twr: Drop unneeded 'status' variable > > Luka Perkov (1): > wandboard: fix typo in README > > Marek Vasut (1): > arm: mxs: Fix vectoring table crafting > > Otavio Salvador (2): > build: Use generic boot logo matching > wandboard: Add Boot Splash image with Wandboard logo > > Renato Frias (2): > mx6qsabreauto: Add i2c to mx6qsabreauto board > mx6qsabreauto: Add Port Expander reset > > SARTRE Leo (1): > Add support for Congatec Conga-QEVAl board > > MAINTAINERS | 8 + > Makefile | 2 +- > arch/arm/cpu/arm926ejs/mxs/mxs.c | 25 +- > arch/arm/cpu/armv7/vf610/Makefile | 42 +++ > arch/arm/cpu/armv7/vf610/generic.c | 324 +++++++++++++++++++ > arch/arm/cpu/armv7/vf610/timer.c | 103 ++++++ > arch/arm/imx-common/Makefile | 2 +- > arch/arm/imx-common/iomux-v3.c | 6 + > arch/arm/include/asm/arch-vf610/clock.h | 39 +++ > arch/arm/include/asm/arch-vf610/crm_regs.h | 225 +++++++++++++ > arch/arm/include/asm/arch-vf610/imx-regs.h | 419 > +++++++++++++++++++++++++ > arch/arm/include/asm/arch-vf610/iomux-vf610.h | 101 ++++++ > arch/arm/include/asm/imx-common/iomux-v3.h | 18 ++ > board/boundary/nitrogen6x/nitrogen6x.c | 1 - > board/congatec/cgtqmx6eval/Makefile | 42 +++ > board/congatec/cgtqmx6eval/README | 29 ++ > board/congatec/cgtqmx6eval/cgtqmx6eval.c | 167 ++++++++++ > board/freescale/mx23evk/mx23evk.c | 6 + > board/freescale/mx23evk/spl_boot.c | 32 ++ > board/freescale/mx28evk/iomux.c | 33 ++ > board/freescale/mx28evk/mx28evk.c | 6 + > board/freescale/mx6qsabreauto/mx6qsabreauto.c | 57 ++++ > board/freescale/mx6qsabrelite/mx6qsabrelite.c | 1 - > board/freescale/vf610twr/Makefile | 39 +++ > board/freescale/vf610twr/imximage.cfg | 33 ++ > board/freescale/vf610twr/vf610twr.c | 407 > ++++++++++++++++++++++++ > board/wandboard/README | 4 +- > board/wandboard/wandboard.c | 98 ++++++ > boards.cfg | 2 + > doc/README.mxc_ocotp | 1 + > doc/README.vf610 | 10 + > drivers/net/fec_mxc.c | 4 +- > drivers/serial/Makefile | 1 + > drivers/serial/serial_lpuart.c | 132 ++++++++ > drivers/video/mxsfb.c | 5 + > drivers/watchdog/Makefile | 2 +- > include/configs/cgtqmx6eval.h | 194 ++++++++++++ > include/configs/mx23evk.h | 17 + > include/configs/mx28evk.h | 17 + > include/configs/mx53ard.h | 3 +- > include/configs/mx6qsabre_common.h | 2 +- > include/configs/mx6qsabreauto.h | 7 +- > include/configs/mx6qsabresd.h | 1 - > include/configs/mx6slevk.h | 2 +- > include/configs/vf610twr.h | 140 +++++++++ > include/configs/wandboard.h | 20 +- > spl/Makefile | 6 +- > tools/Makefile | 27 +- > tools/logos/wandboard.bmp | Bin 0 -> 22390 bytes > 49 files changed, 2818 insertions(+), 44 deletions(-) > create mode 100644 arch/arm/cpu/armv7/vf610/Makefile > create mode 100644 arch/arm/cpu/armv7/vf610/generic.c > create mode 100644 arch/arm/cpu/armv7/vf610/timer.c > create mode 100644 arch/arm/include/asm/arch-vf610/clock.h > create mode 100644 arch/arm/include/asm/arch-vf610/crm_regs.h > create mode 100644 arch/arm/include/asm/arch-vf610/imx-regs.h > create mode 100644 arch/arm/include/asm/arch-vf610/iomux-vf610.h > create mode 100644 board/congatec/cgtqmx6eval/Makefile > create mode 100644 board/congatec/cgtqmx6eval/README > create mode 100644 board/congatec/cgtqmx6eval/cgtqmx6eval.c > create mode 100644 board/freescale/vf610twr/Makefile > create mode 100644 board/freescale/vf610twr/imximage.cfg > create mode 100644 board/freescale/vf610twr/vf610twr.c > create mode 100644 doc/README.vf610 > create mode 100644 drivers/serial/serial_lpuart.c > create mode 100644 include/configs/cgtqmx6eval.h > create mode 100644 include/configs/vf610twr.h > create mode 100644 tools/logos/wandboard.bmp > > Applied to u-boot-arm/master, thanks! Amicalement, -- Albert.