From mboxrd@z Thu Jan 1 00:00:00 1970 From: Albert ARIBAUD Date: Thu, 22 Dec 2011 22:07:53 +0100 Subject: [U-Boot] Pull request: u-boot-tegra/next In-Reply-To: <7E91C59574E9954FA075F8D8CCDF78DB3A2037F1EB@HQMAIL04.nvidia.com> References: <7E91C59574E9954FA075F8D8CCDF78DB3A2037F1EB@HQMAIL04.nvidia.com> Message-ID: <4EF39C29.3040409@aribaud.net> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Le 22/12/2011 21:59, Tom Warren a ?crit : > Albert, > > Please pull u-boot-tegra/next. Thanks. Happy holidays! When I get such a request to 'pull .../next', I am never completely sure which branch of u-boot-arm I should be pulling into: is this supposed to be pulled into next or master? It *looks* like it is for next, but I want to be sure. In such cases, I tend to try and find out based on the u-boot-arm or u-boot branch the changes are based upon, but here: > The following changes since commit 953209bf5ef0889a1baa02aa0ed5324f53ff8fda: > > arm: add __aeabi_unwind_cpp_pr1() function to avoid linker complaints (2011-12-11 13:56:57 +0100) This commit corresponds to no branch of u-boot-arm or u-boot at the moment. What repo and branch was u-boot-tegra rebased onto before the pull request? > are available in the git repository at: > git://git.denx.de/u-boot-tegra.git next > > Simon Glass (14): > tegra2: Tidy UART selection > tegra2: Add UARTB support > tegra2: config: Enable SPI flash on Seaboard > tegra2: Enable SPI environment on Seaboard > tegra2: Implement SPI / UART GPIO switch > tegra2: spi: Support SPI / UART switch > tegra2: Plumb in SPI/UART switch code > tegra: Fix build error in plutux, medcom > tegra: Move cpu_init_cp15() to arch_cpu_init() > tegra: Move clock_early_init() to arch_cpu_init() > tegra: add clock_ll_start_uart() to enable UART prior to reloc > tegra: Add a function mux feature > tegra: Add support for UART init in cpu board.c > tegra: Move boards over to use arch-level board UART function > > Stephen Warren (1): > tegra2: Enable CONFIG_SYS_RELATIVE_IMAGES > > Thierry Reding (7): > tegra2: Always build with USE_PRIVATE_LIBGCC=yes. > tegra2: Change CONFIG_SYS_TEXT_BASE to 0x00108000. > tegra2: Move tegra2_mmc_init() prototype to public header. > tegra2: Add common Avionic Design Tamonten support. > tegra2: Add Avionic Design Plutux support. > tegra2: Add Avionic Design Medcom support. > tegra2: Optimize out-of-tree build for Ventana. > > Tom Warren (2): > tegra2: spi: Add SPI driver for Tegra2 SOC > arm: Tegra: Fix Harmony and Ventana builds in u-boot-tegra/master > > MAINTAINERS | 5 + > arch/arm/cpu/armv7/tegra2/Makefile | 2 +- > arch/arm/cpu/armv7/tegra2/board.c | 58 ++++ > arch/arm/cpu/armv7/tegra2/clock.c | 14 + > arch/arm/cpu/armv7/tegra2/config.mk | 2 + > arch/arm/cpu/armv7/tegra2/funcmux.c | 58 ++++ > arch/arm/include/asm/arch-tegra2/board.h | 30 ++ > arch/arm/include/asm/arch-tegra2/clock.h | 11 + > arch/arm/include/asm/arch-tegra2/funcmux.h | 41 +++ > arch/arm/include/asm/arch-tegra2/mmc.h | 27 ++ > arch/arm/include/asm/arch-tegra2/tegra2.h | 1 + > arch/arm/include/asm/arch-tegra2/tegra2_spi.h | 76 ++++++ > arch/arm/include/asm/arch-tegra2/uart-spi-switch.h | 46 ++++ > board/avionic-design/common/tamonten.c | 116 ++++++++ > board/avionic-design/common/tamonten.h | 32 +++ > board/avionic-design/medcom/Makefile | 50 ++++ > board/avionic-design/medcom/medcom.c | 45 ++++ > board/avionic-design/plutux/Makefile | 50 ++++ > board/avionic-design/plutux/plutux.c | 45 ++++ > board/nvidia/common/Makefile | 47 ++++ > board/nvidia/common/board.c | 73 +---- > board/nvidia/common/board.h | 2 +- > board/nvidia/common/uart-spi-switch.c | 138 ++++++++++ > board/nvidia/harmony/Makefile | 1 - > board/nvidia/harmony/harmony.c | 2 +- > board/nvidia/seaboard/Makefile | 1 - > board/nvidia/seaboard/seaboard.c | 5 +- > board/nvidia/ventana/Makefile | 5 +- > boards.cfg | 2 + > drivers/mmc/tegra2_mmc.h | 2 - > drivers/spi/Makefile | 1 + > drivers/spi/tegra2_spi.c | 279 ++++++++++++++++++++ > include/configs/harmony.h | 3 + > include/configs/medcom.h | 64 +++++ > include/configs/plutux.h | 64 +++++ > include/configs/seaboard.h | 20 ++ > include/configs/tegra2-common.h | 7 +- > include/configs/ventana.h | 3 + > 38 files changed, 1355 insertions(+), 73 deletions(-) > create mode 100644 arch/arm/cpu/armv7/tegra2/funcmux.c > create mode 100644 arch/arm/include/asm/arch-tegra2/board.h > create mode 100644 arch/arm/include/asm/arch-tegra2/funcmux.h > create mode 100644 arch/arm/include/asm/arch-tegra2/mmc.h > create mode 100644 arch/arm/include/asm/arch-tegra2/tegra2_spi.h > create mode 100644 arch/arm/include/asm/arch-tegra2/uart-spi-switch.h > create mode 100644 board/avionic-design/common/tamonten.c > create mode 100644 board/avionic-design/common/tamonten.h > create mode 100644 board/avionic-design/medcom/Makefile > create mode 100644 board/avionic-design/medcom/medcom.c > create mode 100644 board/avionic-design/plutux/Makefile > create mode 100644 board/avionic-design/plutux/plutux.c > create mode 100644 board/nvidia/common/Makefile > create mode 100644 board/nvidia/common/uart-spi-switch.c > create mode 100644 drivers/spi/tegra2_spi.c > create mode 100644 include/configs/medcom.h > create mode 100644 include/configs/plutux.h And then: > ----------------------------------------------------------------------------------- > This email message is for the sole use of the intended recipient(s) and may contain > confidential information. Any unauthorized review, use, disclosure or distribution > is prohibited. If you are not the intended recipient, please contact the sender by > reply email and destroy all copies of the original message. > ----------------------------------------------------------------------------------- Please remove this from messages on the list. Amicalement, -- Albert.