All of lore.kernel.org
 help / color / mirror / Atom feed
From: Albert ARIBAUD <albert.u.boot@aribaud.net>
To: u-boot@lists.denx.de
Subject: [U-Boot] pull request for u-boot-tegra/master into ARM/master
Date: Tue, 26 Mar 2013 11:12:18 +0100	[thread overview]
Message-ID: <20130326111218.24d5d36a@lilith> (raw)
In-Reply-To: <CA+m5__LoRik=c9Xv4rgOZy3wt64WhBiSd-LEFntauK384OUS_Q@mail.gmail.com>

Hi Tom,

On Mon, 25 Mar 2013 10:43:22 -0700, Tom Warren
<twarren.nvidia@gmail.com> wrote:

> Albert,
> 
> Please pull u-boot-tegra/master into ARM/master. Thanks!
> 
> ./MAKEALL for all the Tegra boards is OK, running a ./MAKEALL -a arm
> now. Checkpatch.pl is clean.
> 
> The following changes since commit b6379e15a70cc2e22486e5962927d9de374d877b:
> 
>   Merge branch 'u-boot-ti/master' into 'u-boot-arm/master' (2013-03-24
> 17:52:22 +0100)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-tegra master
> 
> for you to fetch changes up to f789be6086f3e6302fe4b163fa9b7bd6b358c4ce:
> 
>   Tegra114: MMC: Enable DT MMC driver support for Tegra114 Dalmore boards
> (2013-03-25 09:56:08 -0700)
> 
> ----------------------------------------------------------------
> Allen Martin (13):
>       tegra: remove support for UART SPI switch
>       tegra: spi: rename tegra SPI drivers
>       tegra: spi: remove non fdt support
>       tegra: spi: pull register structs out of headers
>       tegra20: spi: move fdt probe to spi_init
>       spi: add common fdt SPI driver interface
>       sf: winbond: add W25Q32DW
>       tegra114: fdt: add compatible string for tegra114 SPI ctrl
>       tegra114: fdt: add apbdma block
>       tegra114: fdt: add SPI blocks
>       tegra114: dalmore: fdt: enable dalmore SPI controller
>       tegra114: add SPI driver
>       tegra114: dalmore: config: enable SPI
> 
> Tom Warren (4):
>       Tegra114: fdt: Add SDMMC (sdhci) nodes for T114 boards (Dalmore for
> now)
>       Tegra114: Dalmore: Add SDIO3 pad config to pinctrl_config table
>       Tegra114: MMC: Add SD bus power-rail init routine
>       Tegra114: MMC: Enable DT MMC driver support for Tegra114 Dalmore
> boards
> 
>  arch/arm/dts/tegra114.dtsi                         | 141 +++++++
>  arch/arm/include/asm/arch-tegra/board.h            |   3 +-
>  arch/arm/include/asm/arch-tegra/tegra_slink.h      |  84 -----
>  arch/arm/include/asm/arch-tegra/tegra_spi.h        |  75 ----
>  arch/arm/include/asm/arch-tegra114/gp_padctrl.h    |   6 +
>  arch/arm/include/asm/arch-tegra114/tegra114_spi.h  |  41 +++
>  arch/arm/include/asm/arch-tegra20/tegra20_sflash.h |  41 +++
>  arch/arm/include/asm/arch-tegra20/tegra20_slink.h  |  41 +++
>  .../arm/include/asm/arch-tegra20/uart-spi-switch.h |  46 ---
>  board/nvidia/common/board.c                        |   5 +-
>  board/nvidia/common/common.mk                      |   1 -
>  board/nvidia/common/uart-spi-switch.c              | 125 -------
>  board/nvidia/dalmore/dalmore.c                     |  66 ++++
>  board/nvidia/dalmore/pinmux-config-dalmore.h       |   6 +
>  board/nvidia/dts/tegra114-dalmore.dts              |  18 +
>  board/nvidia/seaboard/seaboard.c                   |   2 +-
>  drivers/mtd/spi/winbond.c                          |   5 +
>  drivers/spi/Makefile                               |   6 +-
>  drivers/spi/fdt_spi.c                              | 186 ++++++++++
>  drivers/spi/tegra114_spi.c                         | 405
> +++++++++++++++++++++
>  drivers/spi/{tegra_spi.c => tegra20_sflash.c}      | 215 ++++++-----
>  drivers/spi/{tegra_slink.c => tegra20_slink.c}     | 128 ++++---
>  include/configs/cardhu.h                           |   2 +-
>  include/configs/dalmore.h                          |  23 +-
>  include/configs/tegra-common-post.h                |   4 +
>  include/configs/trimslice.h                        |   2 +-
>  include/fdtdec.h                                   |   1 +
>  lib/fdtdec.c                                       |   1 +
>  28 files changed, 1188 insertions(+), 491 deletions(-)
>  delete mode 100644 arch/arm/include/asm/arch-tegra/tegra_slink.h
>  delete mode 100644 arch/arm/include/asm/arch-tegra/tegra_spi.h
>  create mode 100644 arch/arm/include/asm/arch-tegra114/tegra114_spi.h
>  create mode 100644 arch/arm/include/asm/arch-tegra20/tegra20_sflash.h
>  create mode 100644 arch/arm/include/asm/arch-tegra20/tegra20_slink.h
>  delete mode 100644 arch/arm/include/asm/arch-tegra20/uart-spi-switch.h
>  delete mode 100644 board/nvidia/common/uart-spi-switch.c
>  create mode 100644 drivers/spi/fdt_spi.c
>  create mode 100644 drivers/spi/tegra114_spi.c
>  rename drivers/spi/{tegra_spi.c => tegra20_sflash.c} (57%)
>  rename drivers/spi/{tegra_slink.c => tegra20_slink.c} (72%)
> 
>  

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

Amicalement,
-- 
Albert.

  reply	other threads:[~2013-03-26 10:12 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-25 17:43 [U-Boot] pull request for u-boot-tegra/master into ARM/master Tom Warren
2013-03-26 10:12 ` Albert ARIBAUD [this message]
  -- strict thread matches above, loose matches on Subject: below --
2014-08-20 16:12 Tom Warren
2014-08-29 17:48 ` Tom Rini
2014-06-19 17:53 Tom Warren
2014-07-01 16:58 ` Albert ARIBAUD
2014-06-06 15:53 Tom Warren
2014-06-08  7:13 ` Albert ARIBAUD
2014-05-13 21:14 Tom Warren
2014-05-15 16:15 ` Albert ARIBAUD
2014-04-17 16:08 Tom Warren
2014-04-21 19:00 ` Albert ARIBAUD
2014-03-06 15:39 Tom Warren
2014-03-07 14:30 ` Albert ARIBAUD
2014-02-04 23:19 Tom Warren
2014-02-11 16:42 ` Stephen Warren
2014-02-11 16:48   ` Albert ARIBAUD
2014-02-11 16:59     ` Stephen Warren
2014-02-11 17:48       ` Albert ARIBAUD
2014-02-12 17:12 ` Albert ARIBAUD
2013-12-18 20:06 Tom Warren
2013-12-18 21:18 ` Albert ARIBAUD
2013-12-18 22:28   ` Tom Warren
2013-08-19 22:57 Tom Warren
2013-09-04  9:49 ` Albert ARIBAUD
2013-07-11 22:00 Tom Warren
2013-07-12  7:51 ` Albert ARIBAUD
2013-06-06 16:30 Tom Warren
2013-06-07  8:06 ` Albert ARIBAUD
2013-05-28 21:16 Tom Warren
2013-05-29 16:16 ` Albert ARIBAUD
2013-04-15 23:28 Tom Warren
2013-04-16 17:17 ` Albert ARIBAUD
2013-04-16 19:55   ` Stephen Warren
2013-04-16 20:02     ` Tom Warren
2013-04-17  6:56     ` Albert ARIBAUD
2013-04-16 20:55 ` Albert ARIBAUD
2013-03-15 15:25 Tom Warren
2013-03-15 20:46 ` Albert ARIBAUD
2013-01-18 16:00 Tom Warren
2013-01-18 16:06 ` Albert ARIBAUD
2012-11-16 17:14 Tom Warren
2012-11-16 21:27 ` Albert ARIBAUD
2012-11-16 21:45   ` Tom Warren
2012-11-16 23:33     ` Albert ARIBAUD
2012-11-16 23:42       ` Tom Warren
2012-11-17  0:12         ` Albert ARIBAUD
2012-11-19 15:39           ` Tom Warren
2012-11-19 17:12             ` Tom Warren
2012-11-20  6:21               ` Albert ARIBAUD
2012-10-29 23:49 Tom Warren
2012-11-03  9:03 ` Albert ARIBAUD

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130326111218.24d5d36a@lilith \
    --to=albert.u.boot@aribaud.net \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.