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
Date: Thu, 29 Mar 2012 08:13:44 +0200	[thread overview]
Message-ID: <4F73FD98.1050004@aribaud.net> (raw)
In-Reply-To: <5FBF8E85CA34454794F0F7ECBA79798F37977BF683@HQMAIL04.nvidia.com>

Hi Tom,

Le 28/03/2012 23:48, Tom Warren a ?crit :
> Albert,
>
> Please pull u-boot-tegra/master into arm master. Thanks!
>
> The following changes since commit 4a3ea216414ad762b3718775a65437c13f0accbc:
>
>    ARM: highbank: setup env from boot source register (2012-03-28 23:34:27 +0200)
>
> are available in the git repository at:
>    git://git.denx.de/u-boot-tegra master
>
> Simon Glass (32):
>        fdt: Add fdtdec_find_aliases() to deal with alias nodes
>        fdt: Add tests for fdtdec
>        fdt: Tidy up a few fdtdec problems
>        fdt: Add functions to access phandles, arrays and bools
>        fdt: Add basic support for decoding GPIO definitions
>        arm: fdt: Add skeleton device tree file from kernel
>        tegra: fdt: Add Tegra2x device tree file from kernel
>        tegra: fdt: Add device tree file for Tegra2 Seaboard from kernel
>        fdt: Add staging area for device tree binding documentation
>        fdt: Add tegra-usb bindings file from linux
>        tegra: fdt: Add additional USB binding
>        tegra: fdt: Add clock bindings
>        tegra: fdt: Add clock bindings for Tegra2 Seaboard
>        tegra: usb: fdt: Add additional device tree definitions for USB ports
>        tegra: usb: fdt: Add USB definitions for Tegra2 Seaboard
>        usb: Add support for txfifo threshold
>        tegra: fdt: Add function to return peripheral/clock ID
>        tegra: usb: Add support for Tegra USB peripheral
>        fdt: Avoid early panic() when there is no FDT present
>        arm: Check for valid FDT after console is up
>        tegra: usb: Add USB support to nvidia boards
>        tegra: usb: Add common USB defines for tegra2 boards
>        tegra: usb: Enable USB on Seaboard
>        tegra: fdt: Enable FDT support for Seaboard
>        tegra: Rename NV_PA_PMC_BASE to TEGRA2_PMC_BASE
>        fdt: Add function to allow aliases to refer to multiple nodes
>        tegra: Enhance clock support to handle 16-bit clock divisors
>        tegra: i2c: Initialise I2C on Nvidia boards
>        tegra: i2c: Select number of controllers for Tegra2 boards
>        tegra: i2c: Enable I2C on Seaboard
>        tegra: i2c: Select I2C ordering for Seaboard
>        tegra: fdt: i2c: Add extra I2C bindings for U-Boot
>
> Tom Warren (2):
>        arm: Tegra2: Fix ELDK42 gcc failure with inline asm stack pointer load
>        tegra: fdt: Enable FDT support for Ventana
>
> Yen Lin (1):
>        tegra: i2c: Add I2C driver
>
> README                                             |    3 +
> arch/arm/cpu/armv7/tegra2/Makefile                 |    4 +-
> arch/arm/cpu/armv7/tegra2/ap20.c                   |   20 +-
> arch/arm/cpu/armv7/tegra2/board.c                  |    2 +-
> arch/arm/cpu/armv7/tegra2/clock.c                  |  121 ++++-
> arch/arm/cpu/armv7/tegra2/config.mk                |    2 +
> arch/arm/cpu/armv7/tegra2/usb.c                    |  460 ++++++++++++++++
> arch/arm/dts/skeleton.dtsi                         |   13 +
> arch/arm/dts/tegra20.dtsi                          |  196 +++++++
> arch/arm/include/asm/arch-tegra2/clk_rst.h         |   10 +-
> arch/arm/include/asm/arch-tegra2/clock.h           |   13 +
> arch/arm/include/asm/arch-tegra2/tegra2.h          |    6 +-
> arch/arm/include/asm/arch-tegra2/tegra_i2c.h       |  157 ++++++
> arch/arm/include/asm/arch-tegra2/usb.h             |  252 +++++++++
> arch/arm/lib/board.c                               |    8 +
> board/nvidia/common/board.c                        |   19 +
> board/nvidia/common/board.h                        |    6 +
> board/nvidia/dts/tegra2-seaboard.dts               |   92 ++++
> board/nvidia/seaboard/seaboard.c                   |    6 +
> doc/device-tree-bindings/README                    |   17 +
> .../clock/nvidia,tegra20-car.txt                   |  207 +++++++
> doc/device-tree-bindings/i2c/tegra20-i2c.txt       |   23 +
> doc/device-tree-bindings/usb/tegra-usb.txt         |   25 +
> drivers/i2c/Makefile                               |    1 +
> drivers/i2c/tegra_i2c.c                            |  569 ++++++++++++++++++++
> drivers/usb/host/Makefile                          |    1 +
> drivers/usb/host/ehci-hcd.c                        |    7 +
> drivers/usb/host/ehci-tegra.c                      |   62 +++
> drivers/usb/host/ehci.h                            |    6 +-
> include/configs/seaboard.h                         |   20 +
> include/configs/tegra2-common.h                    |   13 +
> include/configs/ventana.h                          |    5 +
> include/fdtdec.h                                   |  197 +++++++-
> lib/Makefile                                       |    1 +
> lib/fdtdec.c                                       |  323 +++++++++++-
> lib/fdtdec_test.c                                  |  226 ++++++++
> 36 files changed, 3038 insertions(+), 55 deletions(-)
> create mode 100644 arch/arm/cpu/armv7/tegra2/usb.c
> create mode 100644 arch/arm/dts/skeleton.dtsi
> create mode 100644 arch/arm/dts/tegra20.dtsi
> create mode 100644 arch/arm/include/asm/arch-tegra2/tegra_i2c.h
> create mode 100644 arch/arm/include/asm/arch-tegra2/usb.h
> create mode 100644 board/nvidia/dts/tegra2-seaboard.dts
> create mode 100644 doc/device-tree-bindings/README
> create mode 100644 doc/device-tree-bindings/clock/nvidia,tegra20-car.txt
> create mode 100644 doc/device-tree-bindings/i2c/tegra20-i2c.txt
> create mode 100644 doc/device-tree-bindings/usb/tegra-usb.txt
> create mode 100644 drivers/i2c/tegra_i2c.c
> create mode 100644 drivers/usb/host/ehci-tegra.c
> create mode 100644 lib/fdtdec_test.c

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

Amicalement,
-- 
Albert.

  reply	other threads:[~2012-03-29  6:13 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-28 21:48 [U-Boot] pull request for u-boot-tegra/master Tom Warren
2012-03-29  6:13 ` Albert ARIBAUD [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-08-31 21:28 Tom Warren
2012-09-01  6:56 ` Albert ARIBAUD
2012-08-17 23:25 Tom Warren
     [not found] ` <20120818212141.3e4f5a3a@lilith>
     [not found]   ` <CA+m5__J7O=YYWEwTGqTBqiagTL+YU3BR-TyE5M2W_xdesVWqmA@mail.gmail.com>
     [not found]     ` <5032684A.2040703@ti.com>
     [not found]       ` <CA+m5__+prjk_GgvK5uZf1m23t3nsSiYu-nYRcci4my59q7T6-w@mail.gmail.com>
     [not found]         ` <CA+m5__Kiq0-ZYjarTXZRFZTC71wWV=c0fmzCJW=-Dt5fgK+dxA@mail.gmail.com>
     [not found]           ` <20120825103410.7fc86952@lilith>
     [not found]             ` <20120828165448.GD9587@nvidia.com>
     [not found]               ` <20120830083325.031e31d4@lilith>
     [not found]                 ` <CA+m5__+gNxyB1nVSe-8DTE=seqBvOQTz2NsPTh=h3kTOCY9rCw@mail.gmail.com>
     [not found]                   ` <20120830224742.678423bc@lilith>
     [not found]                     ` <5FBF8E85CA34454794F0F7ECBA79798F379E005FB3@HQMAIL04.nvidia.com>
     [not found]                       ` <20120830234733.1aea4c7e@lilith>
     [not found]                         ` <5FBF8E85CA34454794F0F7ECBA79798F379E006051@HQMAIL04.nvidia.com>
2012-08-31  6:32                           ` Albert ARIBAUD
2012-07-30 20:07 Tom Warren
2012-08-03 23:35 ` Tom Warren
2012-08-05 19:46   ` Albert ARIBAUD
2012-08-05 20:01     ` Albert ARIBAUD
2012-08-06 15:53       ` Tom Warren
2012-08-06 17:37         ` Allen Martin
2012-08-06 22:46         ` Allen Martin
2012-08-07  6:53           ` Albert ARIBAUD
2012-08-07 16:03             ` Tom Warren
2012-08-07 17:15             ` Allen Martin
2012-08-06 15:18     ` Tom Warren
2012-08-07 16:27 ` Tom Warren
2012-07-09 17:49 Tom Warren
2012-07-09 20:42 ` Albert ARIBAUD
2012-05-31 16:47 Tom Warren
2012-06-07 16:02 ` Tom Warren
2012-06-08 19:36   ` Albert ARIBAUD
2012-06-08 19:41 ` Albert ARIBAUD
2012-06-08 21:44 ` Albert ARIBAUD
2012-06-08 22:00   ` Stephen Warren
2012-06-08 22:36     ` Stephen Warren
2012-06-08 22:52       ` Stephen Warren
2012-06-09  1:53         ` Simon Glass
2012-06-11 21:59           ` Stephen Warren
2012-06-10  8:22 ` Albert ARIBAUD
2012-05-03 15:56 Tom Warren
2012-05-04  7:30 ` Albert ARIBAUD
2012-05-04 15:36   ` Tom Warren
2012-04-26 21:14 Tom Warren
2012-03-09 22:39 Tom Warren
2012-03-10  8:25 ` Wolfgang Denk
2012-03-10 19:34   ` Simon Glass
2012-03-12 19:30     ` Tom Warren
2012-03-12 20:24       ` Simon Glass

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=4F73FD98.1050004@aribaud.net \
    --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.