public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Pull request: u-boot-tegra/master, take 2
@ 2011-12-08 16:48 Tom Warren
  2011-12-09 16:39 ` Albert ARIBAUD
  0 siblings, 1 reply; 2+ messages in thread
From: Tom Warren @ 2011-12-08 16:48 UTC (permalink / raw)
  To: u-boot

Albert,

Here's my rebased pull request. Thanks for your patience!

The following changes since commit 15422043c4a213dc5d7d59a337be1ab34c9b2e7f:

  davinci: Remove unwanted memsize.c from hawkboard's nand spl build (2011-12-06 23:59:41 +0100)

are available in the git repository at:
  git://git.denx.de/u-boot-tegra.git ..BRANCH.NOT.VERIFIED..

Simon Glass (9):
      tegra2: Add arch_cpu_init() to fire up Cortex-A9
      tegra2: Simplify tegra_start() boot path
      arm: Move CP15 init out of cpu_init_crit()
      tegra2: Enable instruction cache
      tegra2: Remove unneeded boot code
      tegra2: Remove unneeded config option
      tegra2: Remove unused low-level Tegra2 UART code
      tegra2: Remove unneeded 'dynamic ram size' message
      tegra2: Don't use board pointer before it is set up

Stephen Warren (4):
      tegra2: Move board_mmc_init into board files
      tegra2: Modify MMC driver to handle power and cd GPIOs
      tegra2: Add support for Ventana
      tegra2: Use new GPIO APIs in gpio_config_uart()

MAINTAINERS                                        |    5 +
arch/arm/cpu/armv7/start.S                         |   36 +++---
arch/arm/cpu/armv7/tegra2/Makefile                 |    5 +
arch/arm/cpu/armv7/tegra2/ap20.c                   |   54 +++++----
arch/arm/cpu/armv7/tegra2/ap20.h                   |   10 +-
arch/arm/cpu/armv7/tegra2/board.c                  |   35 +++---
arch/arm/cpu/armv7/tegra2/config.mk                |    7 +-
arch/arm/cpu/armv7/tegra2/lowlevel_init.S          |  118 --------------------
arch/arm/include/asm/u-boot-arm.h                  |    3 +
board/nvidia/common/board.c                        |   58 +---------
board/nvidia/common/board.h                        |    4 +-
board/nvidia/harmony/harmony.c                     |   57 ++++++++--
board/nvidia/seaboard/seaboard.c                   |   81 ++++++++------
board/nvidia/ventana/Makefile                      |   49 ++++++++
boards.cfg                                         |    1 +
drivers/gpio/tegra2_gpio.c                         |    6 +-
drivers/mmc/tegra2_mmc.c                           |   42 ++++++-
drivers/mmc/tegra2_mmc.h                           |    4 +-
drivers/serial/Makefile                            |    1 -
drivers/serial/serial_tegra2.c                     |   77 -------------
include/configs/tegra2-common.h                    |    3 +-
.../serial_tegra2.h => include/configs/ventana.h   |   34 +++++-
22 files changed, 308 insertions(+), 382 deletions(-)
create mode 100644 board/nvidia/ventana/Makefile
delete mode 100644 drivers/serial/serial_tegra2.c
rename drivers/serial/serial_tegra2.h => include/configs/ventana.h (51%)

-----------------------------------------------------------------------------------
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.
-----------------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [U-Boot] Pull request: u-boot-tegra/master, take 2
  2011-12-08 16:48 [U-Boot] Pull request: u-boot-tegra/master, take 2 Tom Warren
@ 2011-12-09 16:39 ` Albert ARIBAUD
  0 siblings, 0 replies; 2+ messages in thread
From: Albert ARIBAUD @ 2011-12-09 16:39 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Le 08/12/2011 17:48, Tom Warren a ?crit :
> Albert,
>
> Here's my rebased pull request. Thanks for your patience!
>
> The following changes since commit 15422043c4a213dc5d7d59a337be1ab34c9b2e7f:
>
>    davinci: Remove unwanted memsize.c from hawkboard's nand spl build (2011-12-06 23:59:41 +0100)
>
> are available in the git repository at:
>    git://git.denx.de/u-boot-tegra.git ..BRANCH.NOT.VERIFIED..
>
> Simon Glass (9):
>        tegra2: Add arch_cpu_init() to fire up Cortex-A9
>        tegra2: Simplify tegra_start() boot path
>        arm: Move CP15 init out of cpu_init_crit()
>        tegra2: Enable instruction cache
>        tegra2: Remove unneeded boot code
>        tegra2: Remove unneeded config option
>        tegra2: Remove unused low-level Tegra2 UART code
>        tegra2: Remove unneeded 'dynamic ram size' message
>        tegra2: Don't use board pointer before it is set up
>
> Stephen Warren (4):
>        tegra2: Move board_mmc_init into board files
>        tegra2: Modify MMC driver to handle power and cd GPIOs
>        tegra2: Add support for Ventana
>        tegra2: Use new GPIO APIs in gpio_config_uart()
>
> MAINTAINERS                                        |    5 +
> arch/arm/cpu/armv7/start.S                         |   36 +++---
> arch/arm/cpu/armv7/tegra2/Makefile                 |    5 +
> arch/arm/cpu/armv7/tegra2/ap20.c                   |   54 +++++----
> arch/arm/cpu/armv7/tegra2/ap20.h                   |   10 +-
> arch/arm/cpu/armv7/tegra2/board.c                  |   35 +++---
> arch/arm/cpu/armv7/tegra2/config.mk                |    7 +-
> arch/arm/cpu/armv7/tegra2/lowlevel_init.S          |  118 --------------------
> arch/arm/include/asm/u-boot-arm.h                  |    3 +
> board/nvidia/common/board.c                        |   58 +---------
> board/nvidia/common/board.h                        |    4 +-
> board/nvidia/harmony/harmony.c                     |   57 ++++++++--
> board/nvidia/seaboard/seaboard.c                   |   81 ++++++++------
> board/nvidia/ventana/Makefile                      |   49 ++++++++
> boards.cfg                                         |    1 +
> drivers/gpio/tegra2_gpio.c                         |    6 +-
> drivers/mmc/tegra2_mmc.c                           |   42 ++++++-
> drivers/mmc/tegra2_mmc.h                           |    4 +-
> drivers/serial/Makefile                            |    1 -
> drivers/serial/serial_tegra2.c                     |   77 -------------
> include/configs/tegra2-common.h                    |    3 +-
> .../serial_tegra2.h =>  include/configs/ventana.h   |   34 +++++-
> 22 files changed, 308 insertions(+), 382 deletions(-)
> create mode 100644 board/nvidia/ventana/Makefile
> delete mode 100644 drivers/serial/serial_tegra2.c
> rename drivers/serial/serial_tegra2.h =>  include/configs/ventana.h (51%)

Applied to u-boot-arm/master, thanks!

Amicalement,
-- 
Albert.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-12-09 16:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-08 16:48 [U-Boot] Pull request: u-boot-tegra/master, take 2 Tom Warren
2011-12-09 16:39 ` Albert ARIBAUD

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox