All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] Pull request, u-boot-tegra/master
@ 2019-06-05 20:50 Tom Warren
  2019-06-07  1:31 ` Tom Rini
  2019-06-11  1:31 ` Tom Rini
  0 siblings, 2 replies; 102+ messages in thread
From: Tom Warren @ 2019-06-05 20:50 UTC (permalink / raw)
  To: u-boot

 Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit 6d93d245c148f10f15724601650fab3a665f102c:

  Merge git://git.denx.de/u-boot-riscv (2019-06-05 10:07:31 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 879a3bc1c2f3e2aadd6f05e6427cf4d97a272f9a:

  ARM: tegra: Mark built-in Ethernet as default on Jetson TX2 (2019-06-05
09:16:35 -0700)

----------------------------------------------------------------
Thierry Reding (26):
      fdtdec: Add fdtdec_set_ethernet_mac_address()
      lib: Implement strndup()
      ARM: tegra: Fix mux type for disp1 and disp2 clocks on Tegra210
      ARM: tegra: Remove disp1 clock initialization on Tegra210
      ARM: tegra: Use common header for PMU declarations
      ARM: tegra: Guard clock code with a Kconfig symbol
      ARM: tegra: Guard GP pad control code with a Kconfig symbol
      ARM: tegra: Guard memory controller code with a Kconfig symbol
      ARM: tegra: Guard pin controller code with a Kconfig symbol
      ARM: tegra: Guard powergate code with a Kconfig symbol
      ARM: tegra: Fix save_boot_params() prototype
      ARM: tegra: Allow boards to override boot target devices
      ARM: tegra: Support TZ-only access to PMC
      ARM: tegra: Workaround UDC boot issues only if necessary
      ARM: tegra: Restore DRAM bank count
      ARM: tegra: Unify Tegra186 builds
      ARM: tegra: Implement cboot_save_boot_params() in C
      ARM: tegra: Implement cboot_get_ethaddr()
      ARM: tegra: Import cbootargs value from cboot DTB
      ARM: tegra: Enable position independent build for 64-bit
      p2371-2180: Pass Ethernet MAC to the kernel
      p2771-0000: Pass Ethernet MAC to the kernel
      p2371-2180: Add support for framebuffer carveouts
      p2771-0000: Add support for framebuffer carveouts
      ARM: tegra: Rename pcie-controller to pcie
      ARM: tegra: Mark built-in Ethernet as default on Jetson TX2

 arch/arm/dts/tegra124-apalis.dts                   |   2 +-
 arch/arm/dts/tegra124-cei-tk1-som.dts              |   2 +-
 arch/arm/dts/tegra124-jetson-tk1.dts               |   2 +-
 arch/arm/dts/tegra124.dtsi                         |   2 +-
 arch/arm/dts/tegra186-p2771-0000-000.dts           |   2 +-
 arch/arm/dts/tegra186-p2771-0000-500.dts           |   2 +-
 arch/arm/dts/tegra186-p2771-0000.dtsi              |   2 +
 arch/arm/dts/tegra186.dtsi                         |   2 +-
 arch/arm/dts/tegra20-harmony.dts                   |   2 +-
 arch/arm/dts/tegra20-trimslice.dts                 |   2 +-
 arch/arm/dts/tegra20.dtsi                          |   2 +-
 arch/arm/dts/tegra210-p2371-2180.dts               |   2 +-
 arch/arm/dts/tegra210.dtsi                         |   2 +-
 arch/arm/dts/tegra30-apalis.dts                    |   2 +-
 arch/arm/dts/tegra30-beaver.dts                    |   2 +-
 arch/arm/dts/tegra30-cardhu.dts                    |   2 +-
 arch/arm/dts/tegra30.dtsi                          |   2 +-
 arch/arm/include/asm/arch-tegra/cboot.h            |  45 ++
 arch/arm/include/asm/arch-tegra/pmc.h              |  20 +-
 .../include/asm/{arch-tegra20 => arch-tegra}/pmu.h |   6 +-
 arch/arm/include/asm/arch-tegra/tegra.h            |   6 +
 arch/arm/include/asm/arch-tegra114/pmu.h           |  12 -
 arch/arm/include/asm/arch-tegra124/pmu.h           |  13 -
 arch/arm/include/asm/arch-tegra210/pmu.h           |  13 -
 arch/arm/include/asm/arch-tegra30/pmu.h            |  12 -
 arch/arm/mach-tegra/Kconfig                        |  32 ++
 arch/arm/mach-tegra/Makefile                       |  16 +-
 arch/arm/mach-tegra/board.c                        |  41 +-
 arch/arm/mach-tegra/board186.c                     |  32 --
 arch/arm/mach-tegra/board2.c                       |  37 +-
 arch/arm/mach-tegra/cache.c                        |   2 +
 arch/arm/mach-tegra/cboot.c                        | 620
+++++++++++++++++++++
 arch/arm/mach-tegra/clock.c                        |  13 +-
 arch/arm/mach-tegra/cmd_enterrcm.c                 |   6 +-
 arch/arm/mach-tegra/cpu.c                          |  20 +-
 arch/arm/mach-tegra/emc.c                          |   2 +-
 arch/arm/mach-tegra/lowlevel_init.S                |  39 --
 arch/arm/mach-tegra/pmc.c                          |  92 +++
 arch/arm/mach-tegra/powergate.c                    |  11 +-
 arch/arm/mach-tegra/tegra186/Makefile              |   4 -
 arch/arm/mach-tegra/tegra186/nvtboot_board.c       | 332 -----------
 arch/arm/mach-tegra/tegra186/nvtboot_ll.S          |  20 -
 arch/arm/mach-tegra/tegra186/nvtboot_mem.c         | 172 ------
 arch/arm/mach-tegra/tegra210/clock.c               |  11 +-
 board/nvidia/p2371-2180/p2371-2180.c               |  97 ++++
 board/nvidia/p2771-0000/p2771-0000.c               | 111 +++-
 configs/e2220-1170_defconfig                       |   2 +-
 configs/p2371-0000_defconfig                       |   2 +-
 configs/p2371-2180_defconfig                       |   3 +-
 configs/p2571_defconfig                            |   2 +-
 configs/p2771-0000-000_defconfig                   |   3 +-
 configs/p2771-0000-500_defconfig                   |   3 +-
 include/configs/tegra-common-post.h                |   2 +
 include/fdtdec.h                                   |  24 +
 include/linux/string.h                             |   1 +
 lib/fdtdec.c                                       |  29 +
 lib/string.c                                       |  23 +
 57 files changed, 1242 insertions(+), 723 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-tegra/cboot.h
 rename arch/arm/include/asm/{arch-tegra20 => arch-tegra}/pmu.h (73%)
 delete mode 100644 arch/arm/include/asm/arch-tegra114/pmu.h
 delete mode 100644 arch/arm/include/asm/arch-tegra124/pmu.h
 delete mode 100644 arch/arm/include/asm/arch-tegra210/pmu.h
 delete mode 100644 arch/arm/include/asm/arch-tegra30/pmu.h
 delete mode 100644 arch/arm/mach-tegra/board186.c
 create mode 100644 arch/arm/mach-tegra/cboot.c
 delete mode 100644 arch/arm/mach-tegra/lowlevel_init.S
 create mode 100644 arch/arm/mach-tegra/pmc.c
 delete mode 100644 arch/arm/mach-tegra/tegra186/nvtboot_board.c
 delete mode 100644 arch/arm/mach-tegra/tegra186/nvtboot_ll.S
 delete mode 100644 arch/arm/mach-tegra/tegra186/nvtboot_mem.c

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2019-08-09 17:21 Tom Warren
  2019-08-11  1:13 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2019-08-09 17:21 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK on my system, and Igor has verified the Apalis
patches.

The following changes since commit 163bc1e4da425015000dd3f8f128aec994da9586:

  Merge tag 'mmc-8-9' of https://gitlab.denx.de/u-boot/custodians/u-boot-mmc
(2019-08-09 07:29:54 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to bd20266d1923f1230ed15020fbb12aa56f3f46b7:

  apalis-tk1: configs: remove legacy usbboot command (2019-08-09 10:01:35
-0700)

----------------------------------------------------------------
Dominik Sliwa (2):
      apalis-tk1/t30: colibri_t30: display reset reason
      apalis-tk1: remove non-essential power rails on boot

Igor Opaniuk (7):
      colibri/apalis tegra: drop DFU support
      apalis-tk1: set apalis gpio 8 aka fan_en
      apalis-tk1: provide proper USB vendor id
      apalis-tk1: enable user debug by default
      apalis-tk1: add pcie_aspm=off to defargs
      apalis-tk1: switch to zImage
      apalis-tk1: configs: remove legacy usbboot command

Marcel Ziswiler (3):
      apalis-tk1: do not explicitly release reset_moci#
      apalis-tk1: remove default vesa vga mode from vidargs
      apalis-tk1: support v1.2 hardware revision

Simon Glass (3):
      sound: snow: Add the binding file for snow
      sound: tegra: Add the binding file for tegra-audio
      sound: Add codec enable to the sound bindings

Trent Piepho (1):
      mmc: Move tegra loopback disable option to be under tegra

 arch/arm/dts/tegra124-apalis.dts                   | 89
++++++++++++----------
 arch/arm/mach-tegra/sys_info.c                     | 32 +++++---
 arch/arm/mach-tegra/tegra124/cpu.c                 | 45 +++++++++++
 board/toradex/apalis-tk1/apalis-tk1.c              | 47 ++++++++++++
 board/toradex/apalis-tk1/as3722_init.c             | 23 ++++++
 .../toradex/apalis-tk1/pinmux-config-apalis-tk1.h  | 21 +++--
 configs/apalis-tk1_defconfig                       |  7 +-
 configs/apalis_t30_defconfig                       |  3 -
 configs/colibri_t20_defconfig                      |  3 -
 configs/colibri_t30_defconfig                      |  3 -
 doc/device-tree-bindings/sound/intel-hda.txt       |  1 +
 .../sound/nvidia,tegra-audio-max98090.txt          | 54 +++++++++++++
 doc/device-tree-bindings/sound/snow.txt            | 32 ++++++++
 drivers/mmc/Kconfig                                | 22 +++---
 include/configs/apalis-tk1.h                       | 44 ++++-------
 15 files changed, 310 insertions(+), 116 deletions(-)
 create mode 100644
doc/device-tree-bindings/sound/nvidia,tegra-audio-max98090.txt
 create mode 100644 doc/device-tree-bindings/sound/snow.txt

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2019-05-28 16:01 Tom Warren
  2019-05-29 17:18 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2019-05-28 16:01 UTC (permalink / raw)
  To: u-boot

 Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit 40920bdecc4e1b7096de6f546d7b5c2185554ba6:

  Merge tag 'dm-pull-22may19' of git://git.denx.de/u-boot-dm (2019-05-22
12:58:58 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 430cfc861be2e5aada26cd96d97f3b9911782b16:

  tegra: nyan-big: Enable sound (2019-05-24 10:14:22 -0700)

----------------------------------------------------------------
Simon Glass (7):
      tegra: Correct tegra124 clock name
      tegra: Add a delay in clock_start_periph_pll()
      tegra: sound: Add an audio hub driver
      tegra: sound: Add an I2S driver
      sound: tegra: Add a sound driver
      tegra: nyan: Add a README
      tegra: nyan-big: Enable sound

 arch/arm/include/asm/arch-tegra/tegra_ahub.h | 475
+++++++++++++++++++++++++++
 arch/arm/include/asm/arch-tegra/tegra_i2s.h  | 206 ++++++++++++
 arch/arm/mach-tegra/clock.c                  |   1 +
 arch/arm/mach-tegra/tegra124/clock.c         |   2 +-
 board/nvidia/nyan-big/README                 |  18 +
 board/nvidia/nyan-big/nyan-big.c             |   2 +-
 configs/nyan-big_defconfig                   |   7 +
 drivers/sound/Kconfig                        |   9 +
 drivers/sound/Makefile                       |   1 +
 drivers/sound/tegra_ahub.c                   | 256 +++++++++++++++
 drivers/sound/tegra_i2s.c                    | 123 +++++++
 drivers/sound/tegra_i2s_priv.h               |  29 ++
 drivers/sound/tegra_sound.c                  | 100 ++++++
 13 files changed, 1227 insertions(+), 2 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-tegra/tegra_ahub.h
 create mode 100644 arch/arm/include/asm/arch-tegra/tegra_i2s.h
 create mode 100644 board/nvidia/nyan-big/README
 create mode 100644 drivers/sound/tegra_ahub.c
 create mode 100644 drivers/sound/tegra_i2s.c
 create mode 100644 drivers/sound/tegra_i2s_priv.h
 create mode 100644 drivers/sound/tegra_sound.c

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2019-02-20 16:34 Tom Warren
  2019-02-21 23:10 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2019-02-20 16:34 UTC (permalink / raw)
  To: u-boot

 Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

NOTE: This PR should supersede the previous one, sent yesterday. Thanks.

The following changes since commit 97f9830849c64d60d0cf2fd69e87dfe4557d02a4:

  Merge branch '2019-02-19-master-imports' (2019-02-19 20:48:11 -0500)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to a3c9021771608f5b514c75874fa0d8fbee2873d6:

  board: toradex: turn off lcd backlight before OS handover (2019-02-20
09:01:45 -0700)

----------------------------------------------------------------
Gerard Salvatella (1):
      board: toradex: turn off lcd backlight before OS handover

Jonathan Hunter (1):
      ARM: tegra: Reserve 32MB for the Linux kernel

Peter Robinson (6):
      tegra: cleanup dangling comments in include/configs
      tegra20: common: fix USB_EHCI_TXFIFO_THRESH value
      Kconfig: tegra: Migrate SYS_I2C_TEGRA
      Kconfig: tegra: Migrate USB_EHCI_TEGRA
      Kconfig: tegra: Migrate TEGRA_KEYBOARD
      nyan-big: drop CONFIG_KEYBOARD

Tristan Bastian (3):
      nyan-big: change spi delay
      nyan-big: add padding to its file
      ARM: tegra: enable ums on nyan boards

 arch/arm/dts/tegra124-nyan-big-u-boot.dtsi |  2 +-
 arch/arm/dts/tegra124-nyan.dtsi            |  1 +
 board/toradex/apalis-tk1/apalis-tk1.c      |  9 +++++++++
 board/toradex/apalis_imx6/apalis_imx6.c    |  9 +++++++++
 board/toradex/apalis_t30/apalis_t30.c      |  9 +++++++++
 board/toradex/colibri_imx6/colibri_imx6.c  |  9 +++++++++
 board/toradex/colibri_imx7/colibri_imx7.c  |  9 +++++++++
 board/toradex/colibri_t20/colibri_t20.c    |  9 +++++++++
 board/toradex/colibri_t30/colibri_t30.c    |  9 +++++++++
 board/toradex/colibri_vf/colibri_vf.c      | 12 +++++++++++-
 configs/apalis-tk1_defconfig               |  2 ++
 configs/apalis_t30_defconfig               |  2 ++
 configs/beaver_defconfig                   |  2 ++
 configs/cardhu_defconfig                   |  2 ++
 configs/cei-tk1-som_defconfig              |  2 ++
 configs/colibri_t20_defconfig              |  2 ++
 configs/colibri_t30_defconfig              |  2 ++
 configs/dalmore_defconfig                  |  2 ++
 configs/e2220-1170_defconfig               |  2 ++
 configs/harmony_defconfig                  |  1 +
 configs/jetson-tk1_defconfig               |  2 ++
 configs/medcom-wide_defconfig              |  1 +
 configs/nyan-big_defconfig                 |  2 ++
 configs/p2371-0000_defconfig               |  2 ++
 configs/p2371-2180_defconfig               |  2 ++
 configs/p2571_defconfig                    |  2 ++
 configs/p2771-0000-000_defconfig           |  1 +
 configs/p2771-0000-500_defconfig           |  1 +
 configs/paz00_defconfig                    |  1 +
 configs/plutux_defconfig                   |  1 +
 configs/seaboard_defconfig                 |  3 +++
 configs/tec-ng_defconfig                   |  2 ++
 configs/tec_defconfig                      |  1 +
 configs/trimslice_defconfig                |  2 ++
 configs/venice2_defconfig                  |  2 ++
 configs/ventana_defconfig                  |  1 +
 doc/chromium/nyan-big.its                  |  2 +-
 drivers/i2c/Kconfig                        |  6 ++++++
 drivers/input/Kconfig                      |  6 ++++++
 drivers/usb/host/Kconfig                   |  6 ++++++
 include/configs/apalis-tk1.h               |  8 --------
 include/configs/apalis_t30.h               | 10 ----------
 include/configs/beaver.h                   | 12 ------------
 include/configs/cardhu.h                   | 12 ------------
 include/configs/cei-tk1-som.h              | 12 ------------
 include/configs/colibri_t20.h              | 13 -------------
 include/configs/colibri_t30.h              |  8 --------
 include/configs/dalmore.h                  | 10 ----------
 include/configs/e2220-1170.h               | 10 ----------
 include/configs/harmony.h                  |  7 -------
 include/configs/jetson-tk1.h               | 12 ------------
 include/configs/medcom-wide.h              |  5 -----
 include/configs/nyan-big.h                 | 12 ------------
 include/configs/p2371-0000.h               | 10 ----------
 include/configs/p2371-2180.h               | 12 ------------
 include/configs/p2571.h                    | 10 ----------
 include/configs/p2771-0000.h               |  5 -----
 include/configs/paz00.h                    |  5 -----
 include/configs/plutux.h                   |  7 -------
 include/configs/seaboard.h                 | 12 ------------
 include/configs/tec-ng.h                   | 10 ----------
 include/configs/tec.h                      |  5 -----
 include/configs/tegra-common.h             |  6 ------
 include/configs/tegra114-common.h          | 14 +++++++-------
 include/configs/tegra124-common.h          | 14 +++++++-------
 include/configs/tegra20-common.h           | 16 ++++++++--------
 include/configs/tegra210-common.h          |  4 ----
 include/configs/tegra30-common.h           | 18 +++++++-----------
 include/configs/trimslice.h                | 12 ------------
 include/configs/venice2.h                  | 10 ----------
 include/configs/ventana.h                  |  5 -----
 scripts/config_whitelist.txt               |  2 --
 72 files changed, 169 insertions(+), 282 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2019-02-19 22:44 Tom Warren
  0 siblings, 0 replies; 102+ messages in thread
From: Tom Warren @ 2019-02-19 22:44 UTC (permalink / raw)
  To: u-boot

 Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit f14de0014c56093feecf42ca38b8ae5b3878f176:

  Prepare v2019.04-rc2 (2019-02-18 21:36:39 -0500)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 283573fe7b93430e70d9f42f104a91738ea9eb60:

  ARM: tegra: Reserve 32MB for the Linux kernel (2019-02-19 14:38:08 -0800)

----------------------------------------------------------------
Jonathan Hunter (1):
      ARM: tegra: Reserve 32MB for the Linux kernel

Peter Robinson (2):
      tegra: cleanup dangling comments in include/configs
      tegra20: common: fix USB_EHCI_TXFIFO_THRESH value

Tristan Bastian (3):
      nyan-big: change spi delay
      nyan-big: add padding to its file
      ARM: tegra: enable ums on nyan boards

 arch/arm/dts/tegra124-nyan-big-u-boot.dtsi |  2 +-
 arch/arm/dts/tegra124-nyan.dtsi            |  1 +
 doc/chromium/nyan-big.its                  |  2 +-
 include/configs/apalis-tk1.h               |  2 --
 include/configs/apalis_t30.h               |  4 ----
 include/configs/beaver.h                   |  6 ------
 include/configs/cardhu.h                   |  6 ------
 include/configs/cei-tk1-som.h              |  6 ------
 include/configs/colibri_t20.h              |  6 ------
 include/configs/colibri_t30.h              |  2 --
 include/configs/dalmore.h                  |  4 ----
 include/configs/e2220-1170.h               |  4 ----
 include/configs/harmony.h                  |  4 ----
 include/configs/jetson-tk1.h               |  6 ------
 include/configs/medcom-wide.h              |  2 --
 include/configs/nyan-big.h                 |  4 ----
 include/configs/p2371-0000.h               |  4 ----
 include/configs/p2371-2180.h               |  6 ------
 include/configs/p2571.h                    |  4 ----
 include/configs/p2771-0000.h               |  2 --
 include/configs/paz00.h                    |  2 --
 include/configs/plutux.h                   |  4 ----
 include/configs/seaboard.h                 |  2 --
 include/configs/tec-ng.h                   |  4 ----
 include/configs/tec.h                      |  2 --
 include/configs/tegra-common.h             |  6 ------
 include/configs/tegra114-common.h          | 14 +++++++-------
 include/configs/tegra124-common.h          | 14 +++++++-------
 include/configs/tegra20-common.h           | 16 ++++++++--------
 include/configs/tegra210-common.h          |  4 ----
 include/configs/tegra30-common.h           | 18 +++++++-----------
 include/configs/trimslice.h                |  6 ------
 include/configs/venice2.h                  |  4 ----
 include/configs/ventana.h                  |  2 --
 34 files changed, 32 insertions(+), 143 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2018-08-21 17:27 Tom Warren
  2018-08-23 13:59 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2018-08-21 17:27 UTC (permalink / raw)
  To: u-boot

 Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit b71d9e8b3805305ea4116733f515061710ad7081:

  Merge branch 'master' of git://git.denx.de/u-boot-sunxi (2018-08-20
13:41:56 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 3d186cf3f3ab5c18ede0f0a4ff85ffe99839bc7b:

  ARM: tegra: avoid more operations in non-secure world (2018-08-21
08:41:00 -0700)

----------------------------------------------------------------
Nicolas Chauvet (1):
      arm: tegra: Restore host1x/dc dm-pre-reloc properties

Stephen Warren (1):
      ARM: tegra: avoid more operations in non-secure world

 arch/arm/dts/tegra20-u-boot.dtsi | 10 ++++++++++
 arch/arm/mach-tegra/ap.c         |  9 +++++++--
 arch/arm/mach-tegra/gpu.c        | 18 ++++++++++++------
 3 files changed, 29 insertions(+), 8 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2018-07-26 21:08 Tom Warren
  2018-07-27 17:08 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2018-07-26 21:08 UTC (permalink / raw)
  To: u-boot

 Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit 2547e91dc15e5203e15d4ebde9172174743b14a7:

  tegra: Indicate that binman makes all three output files (2018-07-26
15:49:40 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 2eea1269166fd3dccc319629e612edddcd650803:

  tegra: beaver/apalis: Fix DTC warning (2018-07-26 13:15:31 -0700)

----------------------------------------------------------------
Bibek Basu (1):
      ARM: tegra: implement RAM repair

Stephen Warren (5):
      Revert "tegra: Introduce SRAM repair on tegra124"
      ARM: define MON_MODE
      ARM: PSCI: Support PSCI v0.2
      ARM: PSCI: Enable the PSCI node
      ARM: tegra: avoid using secure carveout RAM

Tom Warren (1):
      tegra: beaver/apalis: Fix DTC warning

 arch/arm/dts/tegra30-apalis.dts           |  3 ---
 arch/arm/dts/tegra30-beaver.dts           |  3 ---
 arch/arm/include/asm/arch-tegra124/flow.h | 10 +++-----
 arch/arm/include/asm/proc-armv/ptrace.h   |  1 +
 arch/arm/lib/psci-dt.c                    |  6 +++++
 arch/arm/mach-tegra/board2.c              |  4 +++
 arch/arm/mach-tegra/powergate.c           | 20 +--------------
 arch/arm/mach-tegra/tegra124/cpu.c        | 42
+++++++++++++++++++++++++++++--
 scripts/config_whitelist.txt              |  1 +
 9 files changed, 57 insertions(+), 33 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2018-07-06 20:11 Tom Warren
  2018-07-06 22:04 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2018-07-06 20:11 UTC (permalink / raw)
  To: u-boot

 Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit 4ac5df4b41ba46d7e635bdd8d500721c642b0a0d:

  Merge branch 'master' of git://git.denx.de/u-boot-sunxi (2018-07-03
23:09:34 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 84996795c2f81cbfac210b6f2c168c5fb06a7a20:

  tegra: nyan-big: Update CONFIG_SYS_TEXT to the default in README.chromium
(2018-07-06 09:12:39 -0700)

----------------------------------------------------------------
Peter Robinson (1):
      tegra: nyan-big: Update CONFIG_SYS_TEXT to the default in
README.chromium

 configs/nyan-big_defconfig |  2 +-
 doc/README.chromium        | 27 +++++++--------------------
 2 files changed, 8 insertions(+), 21 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2018-05-11 19:19 Tom Warren
  2018-05-12  1:49 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2018-05-11 19:19 UTC (permalink / raw)
  To: u-boot

 Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit da342f06b30399fbbebbb53aadfc018713c65c24:

  Merge git://git.denx.de/u-boot-ubi (2018-05-10 07:17:14 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 71cb3d7c7897cd02ca731f4c510fff49705b84b7:

  apalis_t30: fix optional pcie port reset for reliable pcie operation
(2018-05-10 16:34:30 -0700)

----------------------------------------------------------------
Marcel Ziswiler (11):
      mtd: nand: tegra: convert to driver model and live tree
      configs: harmony: enable live tree, mtd and ubi
      configs: colibri_t20: enable mtd
      apalis-tk1: add missing as3722 gpio0 configuration
      power: as3722: fix ldo_get/set_enable for ldo index bigger than 7
      pci: tegra: introduce weak tegra_pcie_board_port_reset() function
      power: as3722: add as3722_ldo_set_voltage signature to header file
      apalis-tk1: fix pcie reset for reliable gigabit ethernet operation
      apalis_t30: describe pcie ports
      apalis_t30: fix pcie port 0 and 1 pin muxing
      apalis_t30: fix optional pcie port reset for reliable pcie operation

Sanchayan Maity (1):
      configs: apalis-tk1: fix boot failure using ext4 rootfs

 arch/arm/dts/tegra124-apalis.dts                   |   6 +-
 arch/arm/dts/tegra30-apalis.dts                    |   3 +
 board/toradex/apalis-tk1/Kconfig                   |   8 +
 board/toradex/apalis-tk1/apalis-tk1.c              | 252
+++++++++++++--------
 board/toradex/apalis_t30/Kconfig                   |   9 +
 board/toradex/apalis_t30/apalis_t30.c              |  57 ++++-
 .../toradex/apalis_t30/pinmux-config-apalis_t30.h  |  16 +-
 configs/colibri_t20_defconfig                      |   1 +
 configs/harmony_defconfig                          |   6 +
 drivers/mtd/nand/tegra_nand.c                      |  98 ++++----
 drivers/pci/pci_tegra.c                            |  17 +-
 drivers/power/regulator/as3722_regulator.c         |  18 +-
 include/configs/apalis-tk1.h                       |   4 +-
 include/configs/harmony.h                          |   4 +
 include/pci_tegra.h                                |  10 +
 include/power/as3722.h                             |   4 +-
 16 files changed, 356 insertions(+), 157 deletions(-)
 create mode 100644 include/pci_tegra.h

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2018-01-12 17:37 Tom Warren
  2018-01-15 13:53 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2018-01-12 17:37 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit 373b9003410b44a1133060c2e63483b278fb476b:

  Merge git://git.denx.de/u-boot-sunxi (2018-01-11 14:14:19 -0500)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 5fed97af20da955625cc06563a725b49cebb99eb:

  Makefile: ensure DTB doesn't overflow into initial stack (2018-01-12
10:12:32 -0700)

----------------------------------------------------------------
Stephen Warren (14):
      ARM: tegra: don't use CONFIG_SPL_TEXT_BASE when no SPL
      ARM: tegra: remove SPL config for non-SPL SoCs
      ARMv8: Allow dynamic early stack pointer
      ARM: tegra: use CONFIG_SYS_INIT_SP_BSS_OFFSET
      ARMv8: add optional Linux kernel image header
      ARM: tegra: use LINUX_KERNEL_IMAGE_HEADER
      ARM: Tegra186: mem parsing fixes from downstream
      ARM: bootm: don't assume sp is in DRAM bank 0
      ARM: Tegra186: search for best RAM bank
      ARM: tegra: p2771-000: increase max DRAM bank count
      ARM: Tegra186: don't map memory not in RAM banks
      ARM: Tegra186: calculate load addresses at boot
      ARM: Tegra: p2771-0000: use calculate env var feature
      Makefile: ensure DTB doesn't overflow into initial stack

 Makefile                                           |  31 +++
 arch/arm/Kconfig                                   |  30 +++
 .../arm/cpu/armv8/linux-kernel-image-header-vars.h |  86 +++++++
 arch/arm/cpu/armv8/start.S                         |   4 +-
 arch/arm/cpu/armv8/u-boot.lds                      |   4 +
 arch/arm/dts/tegra-u-boot.dtsi                     |  15 +-
 arch/arm/include/asm/boot0-linux-kernel-header.h   |  49 ++++
 arch/arm/lib/bootm.c                               |  15 +-
 arch/arm/lib/crt0_64.S                             |   3 +
 arch/arm/mach-tegra/Kconfig                        |   6 +
 arch/arm/mach-tegra/arm64-mmu.c                    |   3 +-
 arch/arm/mach-tegra/tegra186/Kconfig               |   3 +
 arch/arm/mach-tegra/tegra186/nvtboot_board.c       | 265
++++++++++++++++++++-
 arch/arm/mach-tegra/tegra186/nvtboot_mem.c         | 144 ++++++++---
 arch/arm/mach-tegra/tegra210/Kconfig               |   3 +
 include/configs/p2771-0000.h                       |  23 ++
 include/configs/tegra-common.h                     |   4 +
 include/configs/tegra186-common.h                  |  10 -
 include/configs/tegra210-common.h                  |  10 -
 19 files changed, 646 insertions(+), 62 deletions(-)
 create mode 100644 arch/arm/cpu/armv8/linux-kernel-image-header-vars.h
 create mode 100644 arch/arm/include/asm/boot0-linux-kernel-header.h

Thanks,

Tom

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2017-08-16 15:30 Tom Warren
  2017-08-17  1:17 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2017-08-16 15:30 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit 2d3c4ae350fe8c196698681ab9410733bf9017e0:

  Prepare v2017.09-rc2 (2017-08-14 20:02:11 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 33848eb53e00156bb6bade1955b09d12daeffdc6:

  apalis_t30/tk1, colibri_t20/t30: fix i2c bus frequencies (2017-08-15
14:51:18 -0700)

----------------------------------------------------------------
Marcel Ziswiler (4):
      apalis_t30: fix usb otg power enable
      dm: tegra: move apalis t30/tk1, colibri t20/t30 to livetree
      apalis-tk1: remove duplicate hdmi_ddc device tree node
      apalis_t30/tk1, colibri_t20/t30: fix i2c bus frequencies

 arch/arm/dts/tegra124-apalis.dts                    | 10 +++-------
 arch/arm/dts/tegra20-colibri.dts                    |  4 ++--
 arch/arm/dts/tegra30-apalis.dts                     |  6 +++---
 arch/arm/dts/tegra30-colibri.dts                    |  4 ++--
 board/toradex/apalis_t30/pinmux-config-apalis_t30.h |  4 ++--
 configs/apalis-tk1_defconfig                        |  4 ++++
 configs/apalis_t30_defconfig                        |  1 +
 configs/colibri_t20_defconfig                       |  1 +
 configs/colibri_t30_defconfig                       |  1 +
 9 files changed, 19 insertions(+), 16 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2017-06-20 19:04 Tom Warren
  2017-06-21 23:05 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2017-06-20 19:04 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.
This is a bug fix, so please try to get it in to the next RC. Thanks.

The following changes since commit e2351d5cf1e97408b4c52bafeaa85e0ca85c920c:

  Prepare v2017.07--rc2 (2017-06-19 20:41:27 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 542b5f85674b297f0d9aee7e6e50801f6c24bb45:

  tegra: mmc: Set the bus width correctly (2017-06-20 09:47:59 -0700)

----------------------------------------------------------------
Simon Glass (1):
      tegra: mmc: Set the bus width correctly

 drivers/mmc/tegra_mmc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2017-06-12 23:32 Tom Warren
  2017-06-15 13:01 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2017-06-12 23:32 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit 8cb3ce64f936f5dedbcfc1935c5caf31bb682474:

  Merge git://git.denx.de/u-boot-dm (2017-06-10 18:01:22 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 2eb3e28b2c69261d274bc22321f688c193985e7b:

  ARM: tegra: remove Whistler support (2017-06-12 13:03:50 -0700)

----------------------------------------------------------------
Stephen Warren (1):
      ARM: tegra: remove Whistler support

 arch/arm/dts/Makefile               |  1 -
 arch/arm/dts/tegra20-whistler.dts   | 77
-----------------------------------
 arch/arm/mach-tegra/tegra20/Kconfig |  5 ---
 board/nvidia/whistler/Kconfig       | 12 ------
 board/nvidia/whistler/MAINTAINERS   |  7 ----
 board/nvidia/whistler/Makefile      |  8 ----
 board/nvidia/whistler/whistler.c    | 80
-------------------------------------
 configs/whistler_defconfig          | 29 --------------
 include/configs/whistler.h          | 49 -----------------------
 9 files changed, 268 deletions(-)
 delete mode 100644 arch/arm/dts/tegra20-whistler.dts
 delete mode 100644 board/nvidia/whistler/Kconfig
 delete mode 100644 board/nvidia/whistler/MAINTAINERS
 delete mode 100644 board/nvidia/whistler/Makefile
 delete mode 100644 board/nvidia/whistler/whistler.c
 delete mode 100644 configs/whistler_defconfig
 delete mode 100644 include/configs/whistler.h

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2017-04-04 17:56 Tom Warren
  2017-04-05  1:13 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2017-04-04 17:56 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit 5cf618ee60a752d058a767372ca1ecb8d9c09b16:

  Merge git://git.denx.de/u-boot-arc (2017-03-24 08:19:30 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to ee92194acd3b2b8a6b2a096ec9588e9a7f326e95:

  apalis-tk1: disable external clock loopback on SDMMC3 (2017-04-01
15:45:04 -0700)

----------------------------------------------------------------
Marcel Ziswiler (3):
      arm: tegra: initial support for apalis tk1
      mmc: tegra: allow disabling external clock loopback
      apalis-tk1: disable external clock loopback on SDMMC3

 arch/arm/dts/Makefile                              |    1 +
 arch/arm/dts/tegra124-apalis.dts                   | 2203
++++++++++++++++++++
 arch/arm/include/asm/arch-tegra/tegra_mmc.h        |    2 +
 arch/arm/mach-tegra/tegra124/Kconfig               |    7 +
 board/toradex/apalis-tk1/Kconfig                   |   30 +
 board/toradex/apalis-tk1/MAINTAINERS               |    7 +
 board/toradex/apalis-tk1/Makefile                  |    5 +
 board/toradex/apalis-tk1/apalis-tk1.c              |  175 ++
 board/toradex/apalis-tk1/as3722_init.c             |  117 ++
 board/toradex/apalis-tk1/as3722_init.h             |   41 +
 .../toradex/apalis-tk1/pinmux-config-apalis-tk1.h  |  287 +++
 configs/apalis-tk1_defconfig                       |   47 +
 drivers/mmc/Kconfig                                |   11 +
 drivers/mmc/tegra_mmc.c                            |   16 +
 include/configs/apalis-tk1.h                       |  176 ++
 15 files changed, 3125 insertions(+)
 create mode 100644 arch/arm/dts/tegra124-apalis.dts
 create mode 100644 board/toradex/apalis-tk1/Kconfig
 create mode 100644 board/toradex/apalis-tk1/MAINTAINERS
 create mode 100644 board/toradex/apalis-tk1/Makefile
 create mode 100644 board/toradex/apalis-tk1/apalis-tk1.c
 create mode 100644 board/toradex/apalis-tk1/as3722_init.c
 create mode 100644 board/toradex/apalis-tk1/as3722_init.h
 create mode 100644 board/toradex/apalis-tk1/pinmux-config-apalis-tk1.h
 create mode 100644 configs/apalis-tk1_defconfig
 create mode 100644 include/configs/apalis-tk1.h

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2017-01-04 17:05 Tom Warren
  2017-01-05 13:28 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2017-01-04 17:05 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit 87f5f5417fc897df0b05826b408f0f4b7d2ee388:

  Prepare v2017.01-rc3 (2017-01-02 20:00:55 -0500)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 7298b3052f74327748071f0a1f0ad9a0af254ca9:

  ARM: dts: tegra: Sync paz00 with Linux 4.8 (2017-01-03 10:34:13 -0700)

----------------------------------------------------------------
Marcel Ziswiler (4):
      video: tegra: fix spelling in comment
      pci: kconfig: fix spelling in description
      apalis_t30: comment about disabled pcie nodes
      colibri_t20: fix ulpi reset polarity

Misha Komarovskiy (1):
      ARM: dts: tegra: Sync paz00 with Linux 4.8

Stephen Warren (1):
      ARM: tegra: allow passing cboot DTB to the kernel

 arch/arm/dts/tegra20-colibri.dts             |   6 +-
 arch/arm/dts/tegra20-paz00.dts               | 597
+++++++++++++++++++++++++--
 arch/arm/dts/tegra30-apalis.dts              |   2 +
 arch/arm/mach-tegra/tegra186/nvtboot_board.c |  18 +
 drivers/pci/Kconfig                          |   2 +-
 drivers/video/tegra124/display.c             |   2 +-
 6 files changed, 594 insertions(+), 33 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-11-08 15:34 Tom Warren
  2016-11-08 20:53 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-11-08 15:34 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit 4b6035da482cccda06aeb419634f99937c9fc783:

  mx6sabresd: Make Ethernet functional again (2016-11-06 06:59:27 -0500)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to a8d0526133e542ea93a741fd18833e571e817775:

  ARM: tegra186: call secure monitor for all cache-wide ops (2016-11-07
14:36:29 -0800)

----------------------------------------------------------------
Stephen Warren (4):
      ARM: tegra: ensure nvtboot_boot_x0 alignment
      ARM: tegra: translate __asm_flush_l3_cache to assembly
      armv8: add hooks for all cache-wide operations
      ARM: tegra186: call secure monitor for all cache-wide ops

 arch/arm/cpu/armv8/cache.S                   | 18 ++++++++++--
 arch/arm/cpu/armv8/cache_v8.c                |  8 ++++--
 arch/arm/cpu/armv8/fsl-layerscape/lowlevel.S |  4 +--
 arch/arm/include/asm/system.h                |  4 ++-
 arch/arm/mach-tegra/tegra186/cache.S         | 43
++++++++++++++++++++++++++++
 arch/arm/mach-tegra/tegra186/cache.c         | 23 ---------------
 arch/arm/mach-tegra/tegra186/nvtboot_ll.S    |  1 +
 7 files changed, 69 insertions(+), 32 deletions(-)
 create mode 100644 arch/arm/mach-tegra/tegra186/cache.S
 delete mode 100644 arch/arm/mach-tegra/tegra186/cache.c

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-10-10 20:55 Tom Warren
  2016-10-13  0:48 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-10-10 20:55 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit f5fd45ff64e28a73499548358e3d1ceda0de7daf:

  Merge branch 'master' of git://www.denx.de/git/u-boot-imx (2016-10-08
09:33:37 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to d40d69ee350b62af90c2b522e05cbb3eb5f27112:

  ARM: tegra: reduce DRAM size mapped into MMU on ARM64 (2016-10-10
11:00:03 -0700)

----------------------------------------------------------------
Marcel Ziswiler (5):
      tegra: usb gadget: fix ci udc operation if not hostpc capable
      simple panel: fix spelling of debug message
      regulator: fixed: honour optionality of enable gpio
      colibri_t20: fix display configuration
      colibri_t20: fix usb operation and controller order

Stephen Warren (1):
      ARM: tegra: reduce DRAM size mapped into MMU on ARM64

 arch/arm/dts/tegra20-colibri.dts          | 117
+++++++++++++++++++-----------
 arch/arm/mach-tegra/arm64-mmu.c           |   2 +-
 drivers/power/regulator/fixed.c           |  21 ++++--
 drivers/video/simple_panel.c              |   2 +-
 include/configs/tegra-common-usb-gadget.h |   2 +
 5 files changed, 94 insertions(+), 50 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-09-27 16:16 Tom Warren
  2016-09-27 21:34 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-09-27 16:16 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit cbe7706ab8aab06c18edaa9b120371f9c8012728:

  Merge git://git.denx.de/u-boot-fsl-qoriq (2016-09-26 17:10:56 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 8e5d804f890b32959cc9d9f9349ccd2ff4a744a0:

  ARM: tegra: flush caches via SMC call (2016-09-27 09:11:03 -0700)

----------------------------------------------------------------
Bryan Wu (1):
      ARM: tegra: increase console buffer size and sys args num

Stephen Warren (24):
      mmc: tegra: use correct alias for SDHCI/MMC nodes
      mmc: tegra: move pad_init_mmc() into MMC driver
      mmc: tegra: don't use periph_id in pad_init_mmc()
      mmc: tegra: priv struct and naming cleanup
      ARM: tegra: set MMC pin mux in board_init()
      ARM: tegra: remove "0, " from DT unit addresses
      ARM: tegra: pull Tegra20 SoC DT from Linux v4.7
      ARM: tegra: pull Tegra30 SoC DT from Linux v4.7
      ARM: tegra: pull Tegra114 SoC DT from Linux v4.7
      ARM: tegra: pull Tegra124 SoC DT from Linux v4.7
      ARM: tegra: pull Tegra210 SoC DT from Linux v4.7
      ARM: tegra: add peripheral clock init table
      ARM: tegra: add APIs the clock uclass driver will need
      misc: implement Tegra CAR core driver
      reset: implement a driver for the Tegra CAR
      clock: implement a driver for the Tegra CAR
      ARM: tegra: fix clock_get_periph_rate() for UART clocks
      ARM: tegra: enable standard clock/reset APIs everywhere
      mmc: tegra: only use new clock/reset APIs
      i2c: tegra: only use new clock/reset APIs
      ARM: tegra: fix USB ULPI PHY reset signal inversion confusion
      ARM: tegra: fix USB controller aliases
      ARM: tegra: fix ULPI PHY on Ventana and Seaboard
      ARM: tegra: flush caches via SMC call

Tom Warren (2):
      ARM: tegra: fdt: Add 'non-removable' property to all eMMC nodes
      mmc: tegra: Add DM_MMC support to Tegra MMC driver

 arch/arm/dts/tegra114-dalmore.dts               |  18 +-
 arch/arm/dts/tegra114.dtsi                      | 743 +++++++++++++++++----
 arch/arm/dts/tegra124-cei-tk1-som.dts           |   4 +-
 arch/arm/dts/tegra124-jetson-tk1.dts            |   5 +-
 arch/arm/dts/tegra124-nyan-big.dts              |  12 +-
 arch/arm/dts/tegra124-nyan.dtsi                 |   6 +-
 arch/arm/dts/tegra124-venice2.dts               |   5 +-
 arch/arm/dts/tegra124.dtsi                      |  59 +-
 arch/arm/dts/tegra186-p2771-0000.dtsi           |   5 +-
 arch/arm/dts/tegra20-colibri.dts                |   5 +-
 arch/arm/dts/tegra20-harmony.dts                |  10 +-
 arch/arm/dts/tegra20-medcom-wide.dts            |   2 +-
 arch/arm/dts/tegra20-paz00.dts                  |   5 +-
 arch/arm/dts/tegra20-plutux.dts                 |   2 +-
 arch/arm/dts/tegra20-seaboard.dts               |  11 +-
 arch/arm/dts/tegra20-tec.dts                    |   2 +-
 arch/arm/dts/tegra20-trimslice.dts              |   7 +-
 arch/arm/dts/tegra20-ventana.dts                |   8 +-
 arch/arm/dts/tegra20-whistler.dts               |   5 +-
 arch/arm/dts/tegra20.dtsi                       |   4 +-
 arch/arm/dts/tegra210-e2220-1170.dts            |  17 +-
 arch/arm/dts/tegra210-p2371-0000.dts            |  17 +-
 arch/arm/dts/tegra210-p2371-2180.dts            |  21 +-
 arch/arm/dts/tegra210-p2571.dts                 |  49 +-
 arch/arm/dts/tegra210.dtsi                      | 731 ++++++++++++++++++---
 arch/arm/dts/tegra30-apalis.dts                 |  27 +-
 arch/arm/dts/tegra30-beaver.dts                 |  18 +-
 arch/arm/dts/tegra30-cardhu.dts                 |  18 +-
 arch/arm/dts/tegra30-colibri.dts                |  18 +-
 arch/arm/dts/tegra30-tamonten.dtsi              |  19 +-
 arch/arm/dts/tegra30.dtsi                       | 828
++++++++++++++++++++----
 arch/arm/include/asm/arch-tegra/clock.h         |  46 ++
 arch/arm/include/asm/arch-tegra/mmc.h           |  11 -
 arch/arm/include/asm/arch-tegra/tegra_mmc.h     |  21 -
 arch/arm/mach-tegra/Kconfig                     |  15 +-
 arch/arm/mach-tegra/board186.c                  |  13 -
 arch/arm/mach-tegra/board2.c                    |  57 +-
 arch/arm/mach-tegra/clock.c                     |  90 ++-
 arch/arm/mach-tegra/tegra114/clock.c            |  87 ++-
 arch/arm/mach-tegra/tegra124/clock.c            |  87 ++-
 arch/arm/mach-tegra/tegra186/Makefile           |   1 +
 arch/arm/mach-tegra/tegra186/cache.c            |  23 +
 arch/arm/mach-tegra/tegra20/clock.c             |  97 ++-
 arch/arm/mach-tegra/tegra210/clock.c            |  87 ++-
 arch/arm/mach-tegra/tegra30/clock.c             |  87 ++-
 board/nvidia/seaboard/seaboard.c                |   8 +-
 configs/seaboard_defconfig                      |   2 +
 configs/ventana_defconfig                       |   2 +
 drivers/clk/tegra/Kconfig                       |   7 +
 drivers/clk/tegra/Makefile                      |   1 +
 drivers/clk/tegra/tegra-car-clk.c               | 103 +++
 drivers/i2c/tegra_i2c.c                         |  68 +-
 drivers/misc/Kconfig                            |   7 +
 drivers/misc/Makefile                           |   1 +
 drivers/misc/tegra_car.c                        |  68 ++
 drivers/mmc/tegra_mmc.c                         | 522 ++++++---------
 drivers/reset/Kconfig                           |   7 +
 drivers/reset/Makefile                          |   1 +
 drivers/reset/tegra-car-reset.c                 |  72 +++
 drivers/usb/host/ehci-tegra.c                   |  13 +-
 include/configs/tegra-common.h                  |   5 +-
 include/dt-bindings/clock/tegra114-car.h        |   5 +-
 include/dt-bindings/clock/tegra20-car.h         |   4 +-
 include/dt-bindings/clock/tegra210-car.h        | 403 +++++++-----
 include/dt-bindings/clock/tegra30-car.h         |   2 +-
 include/dt-bindings/memory/tegra114-mc.h        |  25 +
 include/dt-bindings/memory/tegra210-mc.h        |  36 ++
 include/dt-bindings/memory/tegra30-mc.h         |  24 +
 include/dt-bindings/thermal/tegra124-soctherm.h |   1 +
 69 files changed, 3555 insertions(+), 1235 deletions(-)
 delete mode 100644 arch/arm/include/asm/arch-tegra/mmc.h
 create mode 100644 arch/arm/mach-tegra/tegra186/cache.c
 create mode 100644 drivers/clk/tegra/tegra-car-clk.c
 create mode 100644 drivers/misc/tegra_car.c
 create mode 100644 drivers/reset/tegra-car-reset.c
 create mode 100644 include/dt-bindings/memory/tegra114-mc.h
 create mode 100644 include/dt-bindings/memory/tegra210-mc.h
 create mode 100644 include/dt-bindings/memory/tegra30-mc.h

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-09-01 17:32 Tom Warren
  2016-09-02 14:53 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-09-01 17:32 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit cb1cbdd96962931de2ac948a184874e2672f3f96:

  x86: qemu: efi: Add two boards for EFI 32-bit and 64-bit payload
(2016-08-30 09:26:05 +0800)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to b615267633996a9410a88b54a55965d8b021f6f8:

  ARM: tegra: Add support for TK1-SOM board from Colorado Engineering
(2016-09-01 09:24:30 -0700)

----------------------------------------------------------------
Peter Chubb (1):
      ARM: tegra: Add support for TK1-SOM board from Colorado Engineering

Stephen Warren (1):
      ARM: tegra: use numeric versioning for p2771-0000

 arch/arm/dts/Makefile                              |   5 +-
 arch/arm/dts/tegra124-cei-tk1-som.dts              | 477
+++++++++++++++++++++
 ...71-0000-a02.dts => tegra186-p2771-0000-000.dts} |   4 +-
 ...71-0000-b00.dts => tegra186-p2771-0000-500.dts} |   4 +-
 arch/arm/mach-tegra/tegra124/Kconfig               |  12 +
 board/cei/cei-tk1-som/Kconfig                      |  12 +
 board/cei/cei-tk1-som/MAINTAINERS                  |   6 +
 board/cei/cei-tk1-som/Makefile                     |   9 +
 board/cei/cei-tk1-som/cei-tk1-som.c                |  65 +++
 board/cei/cei-tk1-som/pinmux-config-cei-tk1-som.h  | 301 +++++++++++++
 board/nvidia/venice2/as3722_init.h                 |   8 +-
 configs/cei-tk1-som_defconfig                      |  47 ++
 ...0000-a02_defconfig => p2771-0000-000_defconfig} |   4 +-
 ...0000-b00_defconfig => p2771-0000-500_defconfig} |   4 +-
 include/configs/cei-tk1-som.h                      |  73 ++++
 15 files changed, 1017 insertions(+), 14 deletions(-)
 create mode 100644 arch/arm/dts/tegra124-cei-tk1-som.dts
 rename arch/arm/dts/{tegra186-p2771-0000-a02.dts =>
tegra186-p2771-0000-000.dts} (82%)
 rename arch/arm/dts/{tegra186-p2771-0000-b00.dts =>
tegra186-p2771-0000-500.dts} (83%)
 create mode 100644 board/cei/cei-tk1-som/Kconfig
 create mode 100644 board/cei/cei-tk1-som/MAINTAINERS
 create mode 100644 board/cei/cei-tk1-som/Makefile
 create mode 100644 board/cei/cei-tk1-som/cei-tk1-som.c
 create mode 100644 board/cei/cei-tk1-som/pinmux-config-cei-tk1-som.h
 create mode 100644 configs/cei-tk1-som_defconfig
 rename configs/{p2771-0000-a02_defconfig => p2771-0000-000_defconfig} (87%)
 rename configs/{p2771-0000-b00_defconfig => p2771-0000-500_defconfig} (87%)
 create mode 100644 include/configs/cei-tk1-som.h

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-08-25 23:42 Tom Warren
  2016-08-26 14:52 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-08-25 23:42 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit 46fe9eb08812cc27a0d5cd97d97373c14d578fe9:

  Merge branch 'master' of git://git.denx.de/u-boot-net (2016-08-23
07:20:36 -0400)

are available in the git repository at:


  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 4832c7f5f79feebf8549f33c7257dec47c336470:

  spi: tegra: fix hang in set_mode() (2016-08-25 15:35:03 -0700)

----------------------------------------------------------------
Stephen Warren (4):
      ARM: tegra: fix Tegra186 I2C clock name
      ARM: tegra: fix Tegra186 SDHCI clock/reset names
      ARM: tegra: remove stale nvidia, bpmp I2C DT property
      spi: tegra: fix hang in set_mode()

 arch/arm/dts/tegra186.dtsi      | 23 ++++++++++-------------
 drivers/i2c/tegra186_bpmp_i2c.c | 10 ----------
 drivers/i2c/tegra_i2c.c         |  2 +-
 drivers/mmc/tegra_mmc.c         |  6 +++---
 drivers/spi/tegra20_sflash.c    |  4 ++++
 drivers/spi/tegra20_slink.c     |  4 ++++
 drivers/spi/tegra210_qspi.c     |  3 +++
 7 files changed, 25 insertions(+), 27 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-08-15 19:38 Tom Warren
  2016-08-16  1:09 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-08-15 19:38 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit f4b0df1823921ad3bc39820466e9c5201cef6210:

  Merge git://git.denx.de/u-boot-dm (2016-08-12 16:00:50 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to b064c9124acddbcdc70843f62fda13a2d7d7a392:

  ARM: tegra: set vdd_core for Jetson TK1 (2016-08-15 10:26:14 -0700)

----------------------------------------------------------------
Bibek Basu (1):
      ARM: tegra: set vdd_core for Jetson TK1

Bryan Wu (3):
      i2c: tegra: add standardized clk/reset API support
      ARM: tegra: enable I2C buses for P2771-0000
      ARM: tegra: reduce CSITE clock from 204M to 136M

Stephen Warren (11):
      misc: add Tegra BPMP driver
      clock: add Tegra186 clock driver
      reset: add Tegra186 reset driver
      power domain: add Tegra186 driver
      i2c: add Tegra186 BPMP driver
      mmc: tegra: port to standard clock/reset APIs
      pci: tegra: port to standard clock/reset/pwr domain APIs
      ARM: tegra: enable SD card on p2771-0000
      ARM: tegra: enable PCIe controller on p2771-0000
      ARM: tegra: move ft_system_setup()
      ARM: tegra: fix trimslice environment location

 arch/arm/dts/tegra186-p2771-0000-a02.dts     |   24 +
 arch/arm/dts/tegra186-p2771-0000-b00.dts     |   24 +
 arch/arm/dts/tegra186-p2771-0000.dtsi        |   49 +
 arch/arm/include/asm/arch-tegra/bpmp_abi.h   | 1591
++++++++++++++++++++++++++
 arch/arm/include/asm/arch-tegra/tegra_mmc.h  |    8 +-
 arch/arm/mach-tegra/Kconfig                  |    6 +
 arch/arm/mach-tegra/Makefile                 |    1 +
 arch/arm/mach-tegra/board186.c               |    5 -
 arch/arm/mach-tegra/board2.c                 |   26 -
 arch/arm/mach-tegra/cpu.h                    |    2 +-
 arch/arm/mach-tegra/dt-setup.c               |   34 +
 board/nvidia/p2771-0000/p2771-0000.c         |   48 +
 board/nvidia/venice2/as3722_init.c           |   13 +-
 board/nvidia/venice2/as3722_init.h           |    4 +-
 configs/p2771-0000-a02_defconfig             |    6 +
 configs/p2771-0000-b00_defconfig             |    6 +
 drivers/clk/Kconfig                          |    1 +
 drivers/clk/Makefile                         |    2 +
 drivers/clk/tegra/Kconfig                    |    6 +
 drivers/clk/tegra/Makefile                   |    5 +
 drivers/clk/tegra/tegra186-clk.c             |  104 ++
 drivers/i2c/Kconfig                          |   10 +
 drivers/i2c/Makefile                         |    1 +
 drivers/i2c/tegra186_bpmp_i2c.c              |  129 +++
 drivers/i2c/tegra_i2c.c                      |   89 +-
 drivers/misc/Kconfig                         |   12 +
 drivers/misc/Makefile                        |    1 +
 drivers/misc/tegra186_bpmp.c                 |  257 +++++
 drivers/mmc/tegra_mmc.c                      |   64 +-
 drivers/pci/Kconfig                          |    1 +
 drivers/pci/pci_tegra.c                      |  163 ++-
 drivers/power/domain/Kconfig                 |    7 +
 drivers/power/domain/Makefile                |    1 +
 drivers/power/domain/tegra186-power-domain.c |   92 ++
 drivers/reset/Kconfig                        |    7 +
 drivers/reset/Makefile                       |    1 +
 drivers/reset/tegra186-reset.c               |   81 ++
 include/configs/p2771-0000.h                 |    8 +
 include/configs/trimslice.h                  |    3 +-
 39 files changed, 2838 insertions(+), 54 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-tegra/bpmp_abi.h
 create mode 100644 arch/arm/mach-tegra/dt-setup.c
 create mode 100644 drivers/clk/tegra/Kconfig
 create mode 100644 drivers/clk/tegra/Makefile
 create mode 100644 drivers/clk/tegra/tegra186-clk.c
 create mode 100644 drivers/i2c/tegra186_bpmp_i2c.c
 create mode 100644 drivers/misc/tegra186_bpmp.c
 create mode 100644 drivers/power/domain/tegra186-power-domain.c
 create mode 100644 drivers/reset/tegra186-reset.c

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-08-05 17:26 Tom Warren
  2016-08-06  0:57 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-08-05 17:26 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit e1efe43c710bec8d951c25f163cc8b0c5eb92294:

  powerpc/86xx: Increase boot map size to 256 MiB (2016-08-03 18:02:29
-0700)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to cb0ff4ccc039435bef627883ade3e3911805cec5:

  ARM: tegra: call tegra_board_init on Tegra186 (2016-08-04 13:36:59 -0700)

----------------------------------------------------------------
Bryan Wu (1):
      ARM: tegra: add I2C controllers to Tegra186 DT

Stephen Warren (8):
      ARM: tegra: adapt to latest HSP DT binding
      ARM: tegra: add BPMP DT bindings
      dt-bindings: allow child nodes inside the Tegra BPMP
      dt-bindings: add Tegra186 BPMP I2C binding
      ARM: tegra: add BPMP and dependencies to Tegra186 DT
      ARM: tegra: add BPMP I2C to Tegra186 device tree
      ARM: tegra: add PCIe controller to Tegra186 SoC DT
      ARM: tegra: call tegra_board_init on Tegra186

 arch/arm/dts/tegra186.dtsi                         | 270 +++++-
 arch/arm/mach-tegra/board186.c                     |   7 +-
 .../firmware/nvidia,tegra186-bpmp.txt              | 104 +++
 .../i2c/nvidia,tegra186-bpmp-i2c.txt               |  42 +
 .../mailbox/nvidia,tegra186-hsp.txt                |  52 ++
 drivers/mailbox/tegra-hsp.c                        |  47 +-
 include/dt-bindings/clock/tegra186-clock.h         | 940
+++++++++++++++++++++
 include/dt-bindings/mailbox/tegra-hsp.h            |  14 -
 include/dt-bindings/mailbox/tegra186-hsp.h         |  19 +
 include/dt-bindings/power/tegra186-powergate.h     |  29 +
 include/dt-bindings/reset/tegra186-reset.h         | 206 +++++
 11 files changed, 1698 insertions(+), 32 deletions(-)
 create mode 100644
doc/device-tree-bindings/firmware/nvidia,tegra186-bpmp.txt
 create mode 100644
doc/device-tree-bindings/i2c/nvidia,tegra186-bpmp-i2c.txt
 create mode 100644 doc/device-tree-bindings/mailbox/nvidia,tegra186-hsp.txt
 create mode 100644 include/dt-bindings/clock/tegra186-clock.h
 delete mode 100644 include/dt-bindings/mailbox/tegra-hsp.h
 create mode 100644 include/dt-bindings/mailbox/tegra186-hsp.h
 create mode 100644 include/dt-bindings/power/tegra186-powergate.h
 create mode 100644 include/dt-bindings/reset/tegra186-reset.h

Thanks!

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-07-21 20:17 Tom Warren
  2016-07-23  0:10 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-07-21 20:17 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass, except for a sandbox issue (also in mainline) that he's
sent a patch for.

The following changes since commit ff87b0810753cfaec0e3094aa9fda8b12d6ca569:

  image: fix IH_ARCH_... values for uImage compatibility (2016-07-21
10:47:03 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 2a5f7f20747637cd1f94d4accfd7caa99a7c6035:

  ARM: tegra: pick up actual memory size (2016-07-21 09:31:30 -0700)

----------------------------------------------------------------
Stephen Warren (7):
      ARM: tegra: fix Tegra186 DT GPIO binding header
      ARM: tegra: split p2771-0000 build
      ARM: tegra: unify Tegra186 Makefile a bit
      ARM: tegra: add IVC protocol implementation
      ARM: tegra: p2371-2180: A03 board PMIC config update
      ARM: Add save_boot_params for ARMv8
      ARM: tegra: pick up actual memory size

 arch/arm/cpu/armv8/start.S                         |   9 +
 arch/arm/dts/Makefile                              |   3 +-
 arch/arm/dts/tegra186-p2771-0000-a02.dts           |   8 +
 arch/arm/dts/tegra186-p2771-0000-b00.dts           |   8 +
 ...186-p2771-0000.dts => tegra186-p2771-0000.dtsi} |   2 -
 arch/arm/dts/tegra186.dtsi                         |   2 +-
 arch/arm/include/asm/arch-tegra/ivc.h              | 179 +++++++
 arch/arm/mach-tegra/Kconfig                        |   9 +
 arch/arm/mach-tegra/Makefile                       |  13 +-
 arch/arm/mach-tegra/board186.c                     |  12 -
 arch/arm/mach-tegra/ivc.c                          | 553
+++++++++++++++++++++
 arch/arm/mach-tegra/tegra186/Makefile              |   5 +-
 arch/arm/mach-tegra/tegra186/nvtboot_ll.S          |  20 +
 arch/arm/mach-tegra/tegra186/nvtboot_mem.c         |  88 ++++
 board/nvidia/p2371-2180/p2371-2180.c               |  22 +
 board/nvidia/p2571/max77620_init.h                 |   2 +
 ...771-0000_defconfig => p2771-0000-a02_defconfig} |   4 +-
 configs/p2771-0000-b00_defconfig                   |  31 ++
 18 files changed, 943 insertions(+), 27 deletions(-)
 create mode 100644 arch/arm/dts/tegra186-p2771-0000-a02.dts
 create mode 100644 arch/arm/dts/tegra186-p2771-0000-b00.dts
 rename arch/arm/dts/{tegra186-p2771-0000.dts => tegra186-p2771-0000.dtsi}
(96%)
 create mode 100644 arch/arm/include/asm/arch-tegra/ivc.h
 create mode 100644 arch/arm/mach-tegra/ivc.c
 create mode 100644 arch/arm/mach-tegra/tegra186/nvtboot_ll.S
 create mode 100644 arch/arm/mach-tegra/tegra186/nvtboot_mem.c
 rename configs/{p2771-0000_defconfig => p2771-0000-a02_defconfig} (85%)
 create mode 100644 configs/p2771-0000-b00_defconfig

Tom

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-07-06 17:32 Tom Warren
  2016-07-08  2:51 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-07-06 17:32 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit e8009beff6d5c55c1bf1ae8184791f167e6378b0:

  Merge git://git.denx.de/u-boot-arc (2016-07-04 11:46:21 -0400)

are available in the git repository at:


  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 703aaf76c2c06109fc36266767b2d1dcfce6f3ba:

  fdt: Drop some unused compatible strings (2016-07-05 13:23:04 -0700)

----------------------------------------------------------------
Simon Glass (6):
      errno: Add copyright header and header guard
      errno: Allow errno_str() to be used without CONFIG_ERRNO_STR
      tegra: dts: Sync tegra20 device tree files with Linux
      video: tegra: Move to using simple-panel and pwm-backlight
      tegra: video: Always use write-through cache on LCD
      fdt: Drop some unused compatible strings

Stephen Warren (2):
      pci: tegra: correctly program PADS_REFCLK registers
      pci: tegra: actually program REFCLK_CFG* on recent SoCs

 arch/arm/dts/tegra20-harmony.dts  | 751 ++++++++++++++++++++++++++++--
 arch/arm/dts/tegra20-seaboard.dts | 934
++++++++++++++++++++++++++++++++++----
 arch/arm/dts/tegra20-ventana.dts  | 685 ++++++++++++++++++++++++++--
 configs/colibri_t20_defconfig     |   3 +
 configs/harmony_defconfig         |   3 +
 configs/medcom-wide_defconfig     |   3 +
 configs/paz00_defconfig           |   3 +
 configs/seaboard_defconfig        |   3 +
 configs/tec_defconfig             |   3 +
 configs/ventana_defconfig         |   3 +
 drivers/pci/pci_tegra.c           |  37 +-
 drivers/video/tegra.c             | 333 +++-----------
 include/errno.h                   |  12 +
 include/fdtdec.h                  |   4 -
 lib/fdtdec.c                      |   4 -
 15 files changed, 2329 insertions(+), 452 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-06-03 16:00 Tom Warren
  2016-06-06 11:15 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-06-03 16:00 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All Tegra builds are OK, and Stephen's automated test system reports that
all tests pass.

The following changes since commit da6e2fab5db000e31187aa4c9495c244011792c1:

  Merge branch 'master' of git://git.denx.de/u-boot-mips (2016-05-31
10:26:14 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 10a03382f0f8e774e58df7143e1a8ea52903ae1f:

  ARM: tegra: add p2771-0000 board support (2016-05-31 11:22:59 -0700)

----------------------------------------------------------------
Stephen Warren (7):
      ARM: tegra: use DT bindings for GPIO naming
      ARM: tegra: fix naming in GPIO DT binding header
      ARM: tegra: convert CONFIG_TEGRA_GPIO to Kconfig
      gpio: add Tegra186 GPIO driver
      mmc: tegra: add basic Tegra186 support
      ARM: tegra: add core Tegra186 support
      ARM: tegra: add p2771-0000 board support

 arch/arm/dts/Makefile                              |   1 +
 arch/arm/dts/tegra186-p2771-0000.dts               |  25 ++
 arch/arm/dts/tegra186.dtsi                         |  56 ++++
 arch/arm/include/asm/arch-tegra/gpio.h             |   2 +
 arch/arm/include/asm/arch-tegra/tegra_mmc.h        |   2 +
 arch/arm/include/asm/arch-tegra124/gpio.h          | 259 ------------------
 arch/arm/include/asm/arch-tegra186/gpio.h          |  10 +
 arch/arm/include/asm/arch-tegra186/tegra.h         |  16 ++
 arch/arm/include/asm/arch-tegra20/gpio.h           | 227 ----------------
 arch/arm/include/asm/arch-tegra210/gpio.h          | 259 ------------------
 arch/arm/include/asm/arch-tegra30/gpio.h           | 251 ------------------
 arch/arm/mach-tegra/Kconfig                        |   8 +
 arch/arm/mach-tegra/Makefile                       |   3 +
 arch/arm/mach-tegra/board186.c                     |  55 ++++
 arch/arm/mach-tegra/tegra186/Kconfig               |  25 ++
 arch/arm/mach-tegra/tegra186/Makefile              |   8 +
 board/avionic-design/common/tamonten-ng.c          |  12 +-
 board/avionic-design/common/tamonten.c             |   4 +-
 board/nvidia/cardhu/cardhu.c                       |   4 +-
 board/nvidia/e2220-1170/pinmux-config-e2220-1170.h | 120 ++++-----
 board/nvidia/jetson-tk1/pinmux-config-jetson-tk1.h | 104 ++++----
 board/nvidia/nyan-big/nyan-big.c                   |   5 +-
 board/nvidia/nyan-big/pinmux-config-nyan-big.h     |  96 +++----
 board/nvidia/p2371-0000/pinmux-config-p2371-0000.h | 102 ++++----
 board/nvidia/p2371-2180/pinmux-config-p2371-2180.h | 124 ++++-----
 board/nvidia/p2571/p2571.c                         |   4 +-
 board/nvidia/p2571/pinmux-config-p2571.h           |  52 ++--
 board/nvidia/p2771-0000/Kconfig                    |  16 ++
 board/nvidia/p2771-0000/MAINTAINERS                |   6 +
 board/nvidia/p2771-0000/Makefile                   |   5 +
 board/nvidia/p2771-0000/p2771-0000.c               |   7 +
 board/nvidia/seaboard/seaboard.c                   |   4 +-
 board/nvidia/venice2/pinmux-config-venice2.h       | 118 ++++-----
 board/toradex/colibri_t20/colibri_t20.c            |   6 +-
 board/toradex/colibri_t30/colibri_t30.c            |   6 +-
 configs/p2771-0000_defconfig                       |  31 +++
 .../gpio/nvidia,tegra186-gpio.txt                  | 161 ++++++++++++
 drivers/gpio/Kconfig                               |  15 ++
 drivers/gpio/Makefile                              |   1 +
 drivers/gpio/rk_gpio.c                             |   1 -
 drivers/gpio/tegra186_gpio.c                       | 288
+++++++++++++++++++++
 drivers/gpio/tegra186_gpio_priv.h                  |  61 +++++
 drivers/mmc/tegra_mmc.c                            |  32 ++-
 include/configs/p2771-0000.h                       |  33 +++
 include/configs/tegra-common.h                     |   1 -
 include/configs/tegra186-common.h                  |  71 +++++
 include/dt-bindings/gpio/tegra-gpio.h              |  68 ++---
 include/dt-bindings/gpio/tegra186-gpio.h           |  60 +++++
 include/fdtdec.h                                   |   1 +
 lib/fdtdec.c                                       |   1 +
 50 files changed, 1414 insertions(+), 1413 deletions(-)
 create mode 100644 arch/arm/dts/tegra186-p2771-0000.dts
 create mode 100644 arch/arm/dts/tegra186.dtsi
 create mode 100644 arch/arm/include/asm/arch-tegra186/gpio.h
 create mode 100644 arch/arm/include/asm/arch-tegra186/tegra.h
 create mode 100644 arch/arm/mach-tegra/board186.c
 create mode 100644 arch/arm/mach-tegra/tegra186/Kconfig
 create mode 100644 arch/arm/mach-tegra/tegra186/Makefile
 create mode 100644 board/nvidia/p2771-0000/Kconfig
 create mode 100644 board/nvidia/p2771-0000/MAINTAINERS
 create mode 100644 board/nvidia/p2771-0000/Makefile
 create mode 100644 board/nvidia/p2771-0000/p2771-0000.c
 create mode 100644 configs/p2771-0000_defconfig
 create mode 100644 doc/device-tree-bindings/gpio/nvidia,tegra186-gpio.txt
 create mode 100644 drivers/gpio/tegra186_gpio.c
 create mode 100644 drivers/gpio/tegra186_gpio_priv.h
 create mode 100644 include/configs/p2771-0000.h
 create mode 100644 include/configs/tegra186-common.h
 create mode 100644 include/dt-bindings/gpio/tegra186-gpio.h

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-05-04 21:36 Tom Warren
  2016-05-04 22:12 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-05-04 21:36 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All tegra builds are OK (32-bit and 64-bit), and Stephen reports that tests
of u-boot-tegra/master all pass.

The following changes since commit b38eaec53570821043c94ad44eabcb23747d9969:

  include/configs: Numerous typo fixes: "controler" -> "controller".
(2016-05-03 21:36:13 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to bbca7108db79076d3a9a9c112792d7c4608a665c:

  ARM: tegra: import latest Jetson TK1 spreadsheet (2016-05-04 13:31:04
-0700)

----------------------------------------------------------------
Stephen Warren (3):
      ARM: tegra: enable GPU node by compatible value
      pci: tegra: fix DM conversion issues on Tegra20
      ARM: tegra: import latest Jetson TK1 spreadsheet

 arch/arm/include/asm/arch-tegra/gpu.h              |  2 +-
 arch/arm/mach-tegra/board2.c                       | 20
+++++++++++++-------
 arch/arm/mach-tegra/gpu.c                          | 15 ++++++++-------
 board/nvidia/jetson-tk1/jetson-tk1.c               |  3 +++
 board/nvidia/jetson-tk1/pinmux-config-jetson-tk1.h | 12 +++++++++++-
 drivers/pci/pci_tegra.c                            | 21
++++++++++-----------
 6 files changed, 46 insertions(+), 27 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-03-29 17:24 Tom Warren
  2016-03-29 22:06 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-03-29 17:24 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All tegra builds are OK (32-bit and 64-bit), and Stephen reports that tests
of u-boot-tegra/master all pass.


The following changes since commit f3c2cab87878d2ecd5bd796ee940dff814aa3255:

Revert "pxa_lcd: make driver cache-aware" (2016-03-27 20:58:08 -0400)

are available in the git repository at:

git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 8f83759fac57cb25e23f6f75c001fe23aea47ee1:

ARM: tegra210: set PLLE_PTS bit when enabling PLLE (2016-03-29 09:57:57
-0700)

----------------------------------------------------------------

Stephen Warren (1):

ARM: tegra210: set PLLE_PTS bit when enabling PLLE

arch/arm/mach-tegra/tegra210/clock.c | 2 ++

1 file changed, 2 insertions(+)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-02-18 19:53 Tom Warren
  2016-02-20  0:54 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-02-18 19:53 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All tegra builds are OK (32-bit and 64-bit).

The following changes since commit 727a25b2418031e1b94ba603e0eb61657024091b:

  Prepare v2016.03-rc2 (2016-02-15 21:44:30 +0000)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 5589bc2770a7d7fe346f5972596f26d1ddf57bba:

  ARM: tegra: enable USB device mode port on Dalmore (2016-02-18 10:02:19
-0700)

----------------------------------------------------------------
Simon Glass (24):
      tegra: keyboard: Fix the init order
      dm: video: Flush the cache after a puts()
      tegra: mmc: Fix comments in the MMC driver init
      tegra: dts: Sync up the tegra124 device tree files with Linux
      tegra: dts: Sync up nyan-big files with Linux
      tegra: gpio: Show the GPIO value for outputs
      tegra: pwm: Add a driver for the tegra PWM
      tegra: lcd: Merge tegra124-lcd.c into display.c
      tegra: Allow driver model to be used for the PWM
      tegra: Allow CONFIG_DM_VIDEO to be used as well as CONFIG_LCD
      tegra: nyan-big: Move the LCD driver to driver model
      tegra: video: Rename CONFIG_VIDEO_TEGRA to CONFIG_VIDEO_TEGRA20
      tegra: dts: Sync tegra20.dtsi with Linux v4.4
      tegra: video: Merge the display driver into one file
      tegra: video: Move the check for CONFIG_OF_CONTROL to Kconfig
      tegra: video: Merge the two config structures together
      tegra: video: Convert tegra20 LCD driver to driver model
      tegra: video: Remove the static variables
      tegra: video: Move LCD enums into the driver
      tegra: video: Move all fdt-decoding into a single function
      tegra: Convert CONFIG_PWM_TEGRA to Kconfig
      tegra: video: Move LCD driver to use the DM PWM driver
      tegra: video: Clean up the old LCD/PWM driver code
      video: tegra: Correct a Kconfig warning with VIDCONSOLE_AS_LCD

Stephen Warren (2):
      ARM: tegra: don't set CONFIG_USB_MAX_CONTROLLER_COUNT
      ARM: tegra: enable USB device mode port on Dalmore

 arch/arm/dts/tegra114-dalmore.dts               |    9 +-
 arch/arm/dts/tegra124-jetson-tk1.dts            |   13 +
 arch/arm/dts/tegra124-nyan-big.dts              | 1676
++++++++++++++++++-----
 arch/arm/dts/tegra124-nyan.dtsi                 |  718 ++++++++++
 arch/arm/dts/tegra124-venice2.dts               |   14 +
 arch/arm/dts/tegra124.dtsi                      |  693 ++++++++--
 arch/arm/dts/tegra20-colibri.dts                |   22 +-
 arch/arm/dts/tegra20-harmony.dts                |   44 +-
 arch/arm/dts/tegra20-medcom-wide.dts            |   26 +-
 arch/arm/dts/tegra20-paz00.dts                  |   43 +-
 arch/arm/dts/tegra20-plutux.dts                 |    8 -
 arch/arm/dts/tegra20-seaboard.dts               |   36 +-
 arch/arm/dts/tegra20-tamonten.dtsi              |   15 +-
 arch/arm/dts/tegra20-tec.dts                    |   10 +-
 arch/arm/dts/tegra20-trimslice.dts              |   34 +-
 arch/arm/dts/tegra20-ventana.dts                |   43 +-
 arch/arm/dts/tegra20-whistler.dts               |   35 +-
 arch/arm/dts/tegra20.dtsi                       |  541 ++++++--
 arch/arm/include/asm/arch-tegra/dc.h            |    5 -
 arch/arm/include/asm/arch-tegra/pwm.h           |   30 -
 arch/arm/include/asm/arch-tegra20/display.h     |  108 --
 arch/arm/mach-tegra/Kconfig                     |    3 +-
 arch/arm/mach-tegra/Makefile                    |    1 -
 arch/arm/mach-tegra/board2.c                    |   24 +-
 arch/arm/mach-tegra/pwm.c                       |   89 --
 arch/arm/mach-tegra/tegra20/Makefile            |    2 -
 arch/arm/mach-tegra/tegra20/display.c           |  378 -----
 board/compal/paz00/paz00.c                      |    2 +-
 board/toradex/colibri_t20/colibri_t20.c         |    2 +-
 configs/colibri_t20_defconfig                   |    6 +
 configs/harmony_defconfig                       |    6 +
 configs/medcom-wide_defconfig                   |    6 +
 configs/nyan-big_defconfig                      |   10 +
 configs/paz00_defconfig                         |    6 +
 configs/seaboard_defconfig                      |    6 +
 configs/tec_defconfig                           |    6 +
 configs/ventana_defconfig                       |    6 +
 drivers/gpio/tegra_gpio.c                       |    5 +-
 drivers/input/tegra-kbc.c                       |    2 +-
 drivers/mmc/tegra_mmc.c                         |    4 +-
 drivers/pwm/Kconfig                             |    9 +
 drivers/pwm/Makefile                            |    3 +
 drivers/pwm/tegra_pwm.c                         |   85 ++
 drivers/video/Kconfig                           |   10 +
 drivers/video/Makefile                          |    2 +-
 drivers/video/simple_panel.c                    |    1 +
 drivers/video/tegra.c                           |  658 +++++++--
 drivers/video/tegra124/Makefile                 |    1 -
 drivers/video/tegra124/display.c                |  184 ++-
 drivers/video/tegra124/dp.c                     |   53 +-
 drivers/video/tegra124/sor.c                    |  162 ++-
 drivers/video/tegra124/sor.h                    |   45 +-
 drivers/video/tegra124/tegra124-lcd.c           |   95 --
 drivers/video/vidconsole-uclass.c               |    1 +
 include/configs/apalis_t30.h                    |    1 -
 include/configs/beaver.h                        |    1 -
 include/configs/colibri_t20.h                   |    5 -
 include/configs/colibri_t30.h                   |    1 -
 include/configs/dalmore.h                       |    1 +
 include/configs/e2220-1170.h                    |    1 -
 include/configs/harmony.h                       |    5 -
 include/configs/jetson-tk1.h                    |    1 -
 include/configs/medcom-wide.h                   |    4 -
 include/configs/nyan-big.h                      |    4 -
 include/configs/p2371-0000.h                    |    1 -
 include/configs/p2371-2180.h                    |    1 -
 include/configs/p2571.h                         |    1 -
 include/configs/paz00.h                         |    4 -
 include/configs/seaboard.h                      |    5 -
 include/configs/tec.h                           |    4 -
 include/configs/tegra-common-post.h             |   10 +-
 include/configs/trimslice.h                     |    1 -
 include/configs/venice2.h                       |    1 -
 include/configs/ventana.h                       |    4 -
 include/dt-bindings/clock/tegra124-car-common.h |  345 +++++
 include/dt-bindings/clock/tegra124-car.h        |  341 +----
 include/dt-bindings/memory/tegra124-mc.h        |   31 +
 include/dt-bindings/reset/tegra124-car.h        |   12 +
 include/dt-bindings/thermal/tegra124-soctherm.h |   13 +
 include/fdtdec.h                                |    1 -
 lib/fdtdec.c                                    |    1 -
 81 files changed, 4606 insertions(+), 2190 deletions(-)
 create mode 100644 arch/arm/dts/tegra124-nyan.dtsi
 delete mode 100644 arch/arm/mach-tegra/pwm.c
 create mode 100644 drivers/pwm/tegra_pwm.c
 delete mode 100644 drivers/video/tegra124/tegra124-lcd.c
 create mode 100644 include/dt-bindings/clock/tegra124-car-common.h
 create mode 100644 include/dt-bindings/memory/tegra124-mc.h
 create mode 100644 include/dt-bindings/reset/tegra124-car.h
 create mode 100644 include/dt-bindings/thermal/tegra124-soctherm.h

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2016-01-28 17:46 Tom Warren
  2016-01-28 23:18 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2016-01-28 17:46 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All tegra builds are OK (32-bit and 64-bit).

The following changes since commit b20c38a973a51bf3f663bd298c63ad1b8e0de445:

  arm: mvebu: Add support for the Armada XP theadorable board (2016-01-27
07:45:43 +0100)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 7fb82986be6252acf5aa05ac1ba7225548134a18:

  ARM: tegra: rm Jetson TK1 PMIC GPIO programming (2016-01-28 10:32:31
-0700)

----------------------------------------------------------------
Stephen Warren (1):
      ARM: tegra: rm Jetson TK1 PMIC GPIO programming

 board/nvidia/jetson-tk1/jetson-tk1.c | 13 -------------
 1 file changed, 13 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2015-11-12 20:53 Tom Warren
  2015-11-13  1:26 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2015-11-12 20:53 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All tegra builds are OK (32-bit and 64-bit), and P2571 T210 64-bit boots to
cmd prompt OK.

The following changes since commit 038be18fd95aa6283eafb85ceabc0b880976424b:

  nios2: add 3c120 and 10m50 devboards MAINTAINERS (2015-11-12 08:26:59
+0800)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to e1cf5278024eb5c72abd69d6bda266ffc5832941:

  ARM: tegra: note that p2371-2180 is Jetson TX1 (2015-11-12 09:27:16 -0700)

----------------------------------------------------------------
Alexandre Courbot (3):
      ARM: tegra: remove vpr_configured() function
      ARM: tegra: simplify GPU setup
      ARM: tegra: rename GPU functions

Stephen Warren (16):
      ARM: tegra210: implement PLLE init procedure from TRM
      pci: tegra: clip RAM size to 32-bits
      pci: tegra: use #address-/size-cells from DT
      pci: tegra: implement PCA enable workaround
      pci: tegra: call tegra_pcie_board_init() earlier
      pci: tegra: add/enable support for Tegra210
      ARM: tegra: add PCI to Tegra210 SoC DT
      ARM: tegra: enable PCI support of p2371-2180
      ARM: tegra: rename dummy XUSB padctl implementation
      ARM: tegra: clean up XUSB padctl error() calls
      ARM: tegra: create common XUSB padctl driver file
      ARM: tegra: parameterize common XUSB code
      ARM: tegra: switch Tegra210 to common XUSB padctl
      ARM: tegra: add lane tables to Tegra210 XUSB padctl
      ARM: tegra: error check Tegra210 XUSB padctl waits
      ARM: tegra: note that p2371-2180 is Jetson TX1

Tom Warren (1):
      Tegra: T210: Add QSPI driver

 arch/arm/dts/tegra210-p2371-2180.dts               |  50 +++
 arch/arm/dts/tegra210.dtsi                         |  66 ++++
 arch/arm/include/asm/arch-tegra/gpu.h              |  14 +-
 arch/arm/mach-tegra/Makefile                       |   2 +-
 arch/arm/mach-tegra/board2.c                       |  22 +-
 arch/arm/mach-tegra/gpu.c                          |  11 +-
 arch/arm/mach-tegra/tegra124/Makefile              |   1 +
 arch/arm/mach-tegra/tegra124/xusb-padctl.c         | 431
++-------------------
 arch/arm/mach-tegra/tegra210/Kconfig               |  10 +-
 arch/arm/mach-tegra/tegra210/Makefile              |   1 +
 arch/arm/mach-tegra/tegra210/clock.c               | 179 ++++++---
 arch/arm/mach-tegra/tegra210/xusb-padctl.c         | 248 +++++-------
 arch/arm/mach-tegra/xusb-padctl-common.c           | 305 +++++++++++++++
 arch/arm/mach-tegra/xusb-padctl-common.h           | 101 +++++
 .../{xusb-padctl.c => xusb-padctl-dummy.c}         |   0
 board/nvidia/jetson-tk1/jetson-tk1.c               |   8 -
 board/nvidia/p2371-2180/p2371-2180.c               |  30 ++
 board/nvidia/p2571/p2571.c                         |   7 -
 board/nvidia/venice2/venice2.c                     |   8 -
 drivers/pci/pci_tegra.c                            |  83 +++-
 drivers/spi/Kconfig                                |   7 +
 drivers/spi/Makefile                               |   1 +
 drivers/spi/tegra210_qspi.c                        | 417
++++++++++++++++++++
 include/configs/jetson-tk1.h                       |   2 -
 include/configs/p2371-2180.h                       |  10 +
 include/configs/p2571.h                            |   2 -
 include/configs/tegra-common.h                     |   2 +
 include/configs/venice2.h                          |   2 -
 include/fdtdec.h                                   |   1 +
 lib/fdtdec.c                                       |   1 +
 30 files changed, 1353 insertions(+), 669 deletions(-)
 create mode 100644 arch/arm/mach-tegra/xusb-padctl-common.c
 create mode 100644 arch/arm/mach-tegra/xusb-padctl-common.h
 rename arch/arm/mach-tegra/{xusb-padctl.c => xusb-padctl-dummy.c} (100%)
 create mode 100644 drivers/spi/tegra210_qspi.c

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2015-10-02 18:15 Tom Warren
  2015-10-03  0:51 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2015-10-02 18:15 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All tegra builds are OK (32-bit and 64-bit), and P2571 T210 64-bit boots to
cmd prompt OK.

The following changes since commit 1f8836396de8215b7f460616926052b32597bb29:

  Prepare v2015.10-rc4 (2015-09-28 16:57:42 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to fe82857c4b1667fff8108eab77340ae76016215a:

  gpio: tegra: use named constants (2015-10-02 11:05:56 -0700)

----------------------------------------------------------------
Stephen Warren (6):
      ARM: tegra: p2371-2180: import latest pinmux
      ARM: tegra: fix GPIO init table programming
      ARM: tegra: don't enable GPIOs until direction is set
      ARM: tegra: expand all SPL sizes to be consistent
      gpio: tegra: remove unused type
      gpio: tegra: use named constants

 board/nvidia/p2371-2180/pinmux-config-p2371-2180.h | 56
+++++++++++++--------
 drivers/gpio/tegra_gpio.c                          | 58
++++++++++------------
 include/configs/tegra114-common.h                  |  2 +-
 include/configs/tegra20-common.h                   |  2 +-
 include/configs/tegra210-common.h                  |  2 +-
 include/configs/tegra30-common.h                   |  2 +-
 6 files changed, 65 insertions(+), 57 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2015-09-16 23:27 Tom Warren
  2015-09-17  1:06 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2015-09-16 23:27 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

All tegra builds are OK (32-bit and 64-bit), and P2571 T210 64-bit boots to
cmd prompt OK.

The following changes since commit fa43ce842c3026c2abf19d4234d02cd4c62eeec0:

  Merge git://git.denx.de/u-boot-fdt (2015-09-16 09:53:37 -0400)

are available in the git repository at:


  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 8e1601d994e2fa8b8c7826470c3d923a684492a4:

  ARM: tegra114: Clear IDDQ when enabling PLLC (2015-09-16 16:11:31 -0700)

----------------------------------------------------------------
Axel Lin (1):
      tegra: Remove tegra_spl_gpio_direction_output declaration from header
file

Mirza Krak (1):
      ARM: tegra: Add Tegra20 SPI device nodes

Stephen Warren (4):
      ARM: tegra: Add p2371-2180 board
      ARM: tegra: fix COUNTER_FREQUENCY for T210
      ARM: tegra: fix PLLP frequency calc on T210
      ARM: tegra: replace V_PROMPT define with kconfig

Thierry Reding (8):
      armv8: Make COUNTER_FREQUENCY optional
      ARM: tegra: Implement clk_m
      ARM: tegra: clk_m is the architected timer source clock
      e2220-1170: Remove hard-coded counter frequency
      p2371: Remove hard-coded counter frequency
      p2571: Remove hard-coded counter frequency
      ARM: tegra124: Clear IDDQ when enabling PLLC
      ARM: tegra114: Clear IDDQ when enabling PLLC

 arch/arm/cpu/armv8/start.S                         |   2 +
 arch/arm/dts/Makefile                              |   1 +
 arch/arm/dts/tegra20.dtsi                          |  57 +++++
 arch/arm/dts/tegra210-p2371-2180.dts               |  60 +++++
 arch/arm/include/asm/arch-tegra/clock.h            |   7 +-
 arch/arm/include/asm/arch-tegra/gpio.h             |   9 -
 arch/arm/include/asm/arch-tegra114/clock-tables.h  |   1 +
 arch/arm/include/asm/arch-tegra114/clock.h         |   3 +
 arch/arm/include/asm/arch-tegra124/clock-tables.h  |   1 +
 arch/arm/include/asm/arch-tegra124/clock.h         |   3 +
 arch/arm/include/asm/arch-tegra20/clock-tables.h   |   1 +
 arch/arm/include/asm/arch-tegra210/clock-tables.h  |   1 +
 arch/arm/include/asm/arch-tegra30/clock-tables.h   |   1 +
 arch/arm/mach-tegra/clock.c                        |  21 +-
 arch/arm/mach-tegra/tegra114/clock.c               |   9 +-
 arch/arm/mach-tegra/tegra124/clock.c               |   9 +-
 arch/arm/mach-tegra/tegra210/Kconfig               |   9 +
 arch/arm/mach-tegra/tegra210/clock.c               |  21 +-
 board/nvidia/p2371-2180/Kconfig                    |  12 +
 board/nvidia/p2371-2180/MAINTAINERS                |   6 +
 board/nvidia/p2371-2180/Makefile                   |   8 +
 board/nvidia/p2371-2180/p2371-2180.c               |  51 ++++
 board/nvidia/p2371-2180/pinmux-config-p2371-2180.h | 265
+++++++++++++++++++++
 configs/e2220-1170_defconfig                       |   1 +
 configs/p2371-0000_defconfig                       |   1 +
 configs/p2371-2180_defconfig                       |  18 ++
 configs/p2571_defconfig                            |   1 +
 include/configs/e2220-1170.h                       |   3 -
 include/configs/p2371-0000.h                       |   3 -
 include/configs/p2371-2180.h                       |  65 +++++
 include/configs/p2571.h                            |   2 -
 31 files changed, 622 insertions(+), 30 deletions(-)
 create mode 100644 arch/arm/dts/tegra210-p2371-2180.dts
 create mode 100644 board/nvidia/p2371-2180/Kconfig
 create mode 100644 board/nvidia/p2371-2180/MAINTAINERS
 create mode 100644 board/nvidia/p2371-2180/Makefile
 create mode 100644 board/nvidia/p2371-2180/p2371-2180.c
 create mode 100644 board/nvidia/p2371-2180/pinmux-config-p2371-2180.h
 create mode 100644 configs/p2371-2180_defconfig
 create mode 100644 include/configs/p2371-2180.h

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2015-08-13 20:26 Tom Warren
  2015-08-13 21:55 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2015-08-13 20:26 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

./MAKEALL -s tegra is OK (all 32-bit builds), and ./MAKEALL -a aarch64 is
OK (includes Tegra210 builds)

The following changes since commit 0741701acf00749672f75f4c196dabd8b235f741:

  Merge branch 'master' of git://git.denx.de/u-boot-mmc (2015-08-13
07:20:44 -0400)

are available in the git repository at:


  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to bbc1b99e8b8a1b87c2d0d959a1fcd1990abe82dd:

  ARM: tegra: represent RAM in 1 or 2 banks (2015-08-13 13:06:04 -0700)

----------------------------------------------------------------
Marcel Ziswiler (15):
      ARM: tegra: allow custom usb manufacturer/product/vendor ids/strings
      ARM: tegra: allow reading recovery mode boot type
      apalis/colibri_t20/t30: integrate recovery mode detection
      colibri_t20: fix device-tree compatible node
      colibri_t20: add lcd display support
      colibri_t20: add i2c support
      colibri_t20: disable PMIC sleep mode on low supply voltage
      tegra: nand: fix read_byte required for proper onfi detection
      mtd/nand/tegra: alignment workaround
      colibri_t20: enable mtdparts support
      colibri_t20: enable ubi/ubifs support
      apalis/colibri_t20/30: clean-up
      colibri_t20: fix reset out pin
      apalis/colibri_t30: fix usb dm regression
      tegra: nand: disable subpage writes

Max Krummenacher (1):
      apalis/colibri_t20/t30: increase tftp blocksize

Simon Glass (1):
      tegra: Correct logic for reading pll_misc in clock_start_pll()

Stephen Warren (3):
      ARM: tegra: move kernel_addr_r on T210
      ARM: tegra: query_sdram_size() cleanup
      ARM: tegra: represent RAM in 1 or 2 banks

Thierry Reding (1):
      ARM: tegra: Make pinmux.h standalone includible

 arch/arm/dts/tegra20-colibri.dts          |  63 ++++++++++++++-
 arch/arm/dts/tegra30-apalis.dts           |   2 +-
 arch/arm/dts/tegra30-colibri.dts          |   4 +-
 arch/arm/include/asm/arch-tegra/pinmux.h  |   2 +
 arch/arm/include/asm/arch-tegra/tegra.h   |   2 +
 arch/arm/mach-tegra/board.c               |  14 +++-
 arch/arm/mach-tegra/board2.c              | 120
++++++++++++++++++++++++----
 arch/arm/mach-tegra/clock.c               |  33 +++++---
 arch/arm/mach-tegra/tegra124/clock.c      |   4 +-
 arch/arm/mach-tegra/tegra210/clock.c      |   7 ++
 board/toradex/apalis_t30/apalis_t30.c     |  15 +++-
 board/toradex/colibri_t20/colibri_t20.c   |  68 ++++++++++++++++
 board/toradex/colibri_t30/colibri_t30.c   |  18 ++++-
 drivers/mtd/nand/tegra_nand.c             | 128
+++++++++++-------------------
 include/configs/apalis_t30.h              |  13 ++-
 include/configs/colibri_t20.h             |  53 +++++++++++--
 include/configs/colibri_t30.h             |  13 ++-
 include/configs/tegra-common-usb-gadget.h |   6 ++
 include/configs/tegra-common.h            |   2 +-
 include/configs/tegra210-common.h         |   2 +-
 20 files changed, 434 insertions(+), 135 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request, u-boot-tegra/master
@ 2015-08-06 20:39 Tom Warren
  2015-08-11 17:44 ` Tom Warren
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2015-08-06 20:39 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

./MAKEALL -s tegra is OK (all 32-bit builds), and ./MAKEALL -a aarch64 is
OK (includes p2571, P2371 and E220).

The following changes since commit a5325cd5e91f77a2214e80198ae31c1d8b7e7c3c:

  configs: Remove CONFIG_SERIAL_MULTI (2015-08-05 14:12:42 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to f05fa6781ae1122f348e66b5b26acbfe552f6602:

  ARM: tegra: Add p2371-0000 board (2015-08-06 10:50:04 -0700)

----------------------------------------------------------------
Alexandre Courbot (2):
      ARM: tegra: move VPR configuration to a later stage
      ARM: tegra: enable GPU DT node when appropriate

Stephen Warren (5):
      ARM: tegra: restrict usable RAM size further
      ARM: tegra: add comment re: autogeneration to pinmux headers
      ARM: tegra: p2571: remove another unused define
      ARM: tegra: Add e2220-1170 board
      ARM: tegra: Add p2371-0000 board

Tom Warren (7):
      T210: P2571: Enable SD-card power via PMIC LDO2
      T210: P2571: Restore USB gadget mode (ums)
      T210: P2571: Turn CPU fan on
      Tegra: clocks: Add 38.4MHz OSC support for T210 use
      Tegra: PLL: use per-SoC pllinfo table instead of PLL_DIVM/N/P, etc.
      Tegra: spi: Move TEGRA114_SPI switch to defconfigs
      Tegra: P2571: Clean up config file

 arch/arm/dts/Makefile                              |   2 +
 arch/arm/dts/tegra210-e2220-1170.dts               |  58 +++++
 arch/arm/dts/tegra210-p2371-0000.dts               |  59 +++++
 arch/arm/include/asm/arch-tegra/ap.h               |   9 -
 arch/arm/include/asm/arch-tegra/clk_rst.h          |  32 +--
 arch/arm/include/asm/arch-tegra/clock.h            |  23 ++
 arch/arm/include/asm/arch-tegra/gpu.h              |  42 ++++
 arch/arm/include/asm/arch-tegra210/clock-tables.h  |   1 +
 arch/arm/mach-tegra/Makefile                       |   4 +-
 arch/arm/mach-tegra/ap.c                           |   3 -
 arch/arm/mach-tegra/board2.c                       |  19 +-
 arch/arm/mach-tegra/clock.c                        | 121 ++++-----
 arch/arm/mach-tegra/cpu.c                          |  30 ++-
 arch/arm/mach-tegra/{vpr.c => gpu.c}               |  37 ++-
 arch/arm/mach-tegra/tegra114/clock.c               |  57 +++--
 arch/arm/mach-tegra/tegra114/cpu.c                 |  39 ++-
 arch/arm/mach-tegra/tegra124/clock.c               |  44 +++-
 arch/arm/mach-tegra/tegra124/cpu.c                 |  31 ++-
 arch/arm/mach-tegra/tegra20/clock.c                |  32 +++
 arch/arm/mach-tegra/tegra210/Kconfig               |  17 ++
 arch/arm/mach-tegra/tegra210/clock.c               |  39 ++-
 arch/arm/mach-tegra/tegra30/clock.c                |  45 +++-
 board/nvidia/e2220-1170/Kconfig                    |  12 +
 board/nvidia/e2220-1170/MAINTAINERS                |   6 +
 board/nvidia/e2220-1170/Makefile                   |   8 +
 board/nvidia/e2220-1170/e2220-1170.c               |  51 ++++
 board/nvidia/e2220-1170/pinmux-config-e2220-1170.h | 277
+++++++++++++++++++++
 board/nvidia/jetson-tk1/jetson-tk1.c               |   8 +
 board/nvidia/jetson-tk1/pinmux-config-jetson-tk1.h |   8 +
 board/nvidia/nyan-big/pinmux-config-nyan-big.h     |   8 +
 board/nvidia/p2371-0000/Kconfig                    |  12 +
 board/nvidia/p2371-0000/MAINTAINERS                |   6 +
 board/nvidia/p2371-0000/Makefile                   |   8 +
 board/nvidia/p2371-0000/p2371-0000.c               |  51 ++++
 board/nvidia/p2371-0000/pinmux-config-p2371-0000.h | 268
++++++++++++++++++++
 board/nvidia/p2571/Makefile                        |   1 -
 board/nvidia/p2571/max77620_init.c                 |  85 -------
 board/nvidia/p2571/max77620_init.h                 |   3 +-
 board/nvidia/p2571/p2571.c                         |  41 +++
 board/nvidia/p2571/pinmux-config-p2571.h           |   8 +
 board/nvidia/venice2/pinmux-config-venice2.h       |   8 +
 board/nvidia/venice2/venice2.c                     |   8 +
 configs/dalmore_defconfig                          |   1 +
 configs/e2220-1170_defconfig                       |  17 ++
 configs/jetson-tk1_defconfig                       |   1 +
 configs/nyan-big_defconfig                         |   1 +
 configs/p2371-0000_defconfig                       |  17 ++
 configs/p2571_defconfig                            |   1 +
 configs/venice2_defconfig                          |   1 +
 drivers/usb/host/ehci-tegra.c                      |  18 +-
 include/configs/dalmore.h                          |   2 -
 include/configs/e2220-1170.h                       |  65 +++++
 include/configs/jetson-tk1.h                       |   4 +-
 include/configs/nyan-big.h                         |   2 -
 include/configs/p2371-0000.h                       |  65 +++++
 include/configs/p2571.h                            |  14 +-
 include/configs/tegra124-common.h                  |   3 +
 include/configs/tegra210-common.h                  |   3 +
 include/configs/venice2.h                          |   4 +-
 59 files changed, 1529 insertions(+), 311 deletions(-)
 create mode 100644 arch/arm/dts/tegra210-e2220-1170.dts
 create mode 100644 arch/arm/dts/tegra210-p2371-0000.dts
 create mode 100644 arch/arm/include/asm/arch-tegra/gpu.h
 rename arch/arm/mach-tegra/{vpr.c => gpu.c} (65%)
 create mode 100644 board/nvidia/e2220-1170/Kconfig
 create mode 100644 board/nvidia/e2220-1170/MAINTAINERS
 create mode 100644 board/nvidia/e2220-1170/Makefile
 create mode 100644 board/nvidia/e2220-1170/e2220-1170.c
 create mode 100644 board/nvidia/e2220-1170/pinmux-config-e2220-1170.h
 create mode 100644 board/nvidia/p2371-0000/Kconfig
 create mode 100644 board/nvidia/p2371-0000/MAINTAINERS
 create mode 100644 board/nvidia/p2371-0000/Makefile
 create mode 100644 board/nvidia/p2371-0000/p2371-0000.c
 create mode 100644 board/nvidia/p2371-0000/pinmux-config-p2371-0000.h
 delete mode 100644 board/nvidia/p2571/max77620_init.c
 create mode 100644 configs/e2220-1170_defconfig
 create mode 100644 configs/p2371-0000_defconfig
 create mode 100644 include/configs/e2220-1170.h
 create mode 100644 include/configs/p2371-0000.h

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request: u-boot-tegra/master
@ 2015-07-28 15:31 Tom Warren
  2015-07-28 15:51 ` Stephen Warren
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2015-07-28 15:31 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

./MAKEALL -s tegra is OK (all 32-bit builds), and ./MAKEALL -a aarch64 is
OK (includes p2571)

The following changes since commit 26473945ad6667183296e7edee2a65edf31bb6f7:

  Merge branch 'master' of http://git.denx.de/u-boot-sunxi (2015-07-25
09:04:18 -0400)

are available in the git repository at:


  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to e3ab4e38ef7f4df76896be415a47cc8f7de64f8a:

  T210: Add support for 64-bit T210-based P2571 board (2015-07-27 15:55:55
-0700)

----------------------------------------------------------------
Simon Glass (3):
      tegra124: Implement spl_was_boot_source()
      tegra: nyan-big: Allow TPM on I2C
      tegra124: Expand SPL space by 8KB

Stephen Warren (2):
      pxe: add AArch64 image support
      dfu: fix 64-bit compile warnings

Thierry Reding (10):
      i2c: tegra: Build warning fixes for 64-bit
      mmc: tegra: Build warning fixes for 64-bit
      ARM: tegra: Build warning fixes for 64-bit
      arm64: Handle arbitrary CONFIG_SYS_MALLOC_F_LEN values
      armv8: Allow SoCs to override the generic timer
      armv8/cache: Fix page table creation
      fdt: Fix fdtdec_get_addr_size() for 64-bit
      ARM: tegra: Restrict usable RAM to 32-bit on 64-bit SoCs
      ARM: tegra: Use standard cache enable for 64-bit
      ARM: tegra: Disable SPL and non-cached memory on 64-bit

Tom Warren (6):
      Tegra210: Fix 64-bit build warning about save_boot_params_ret()
      Tegra: Rework KConfig options to allow 64-bit builds (T210)
      ARM: Tegra210: Add SoC code/include files for T210
      ARM: Tegra210: Add support to common Tegra source/config files
      P2571: dts: Add DT file for Tegra210 P2571 board
      T210: Add support for 64-bit T210-based P2571 board

 arch/arm/Kconfig                                  |   11 -
 arch/arm/cpu/armv8/cache_v8.c                     |    4 +-
 arch/arm/cpu/armv8/generic_timer.c                |    2 +
 arch/arm/dts/Makefile                             |    3 +-
 arch/arm/dts/tegra210-p2571.dts                   |  106 ++
 arch/arm/dts/tegra210.dtsi                        |  283 ++++++
 arch/arm/include/asm/arch-tegra/ap.h              |    6 +-
 arch/arm/include/asm/arch-tegra/clk_rst.h         |   36 +-
 arch/arm/include/asm/arch-tegra/gp_padctrl.h      |    3 +-
 arch/arm/include/asm/arch-tegra/pmc.h             |    7 +-
 arch/arm/include/asm/arch-tegra/tegra.h           |    4 +-
 arch/arm/include/asm/arch-tegra/usb.h             |    3 +
 arch/arm/include/asm/arch-tegra210/ahb.h          |   91 ++
 arch/arm/include/asm/arch-tegra210/clock-tables.h |  566 +++++++++++
 arch/arm/include/asm/arch-tegra210/clock.h        |   27 +
 arch/arm/include/asm/arch-tegra210/flow.h         |   45 +
 arch/arm/include/asm/arch-tegra210/funcmux.h      |   23 +
 arch/arm/include/asm/arch-tegra210/gp_padctrl.h   |   74 ++
 arch/arm/include/asm/arch-tegra210/gpio.h         |  303 ++++++
 arch/arm/include/asm/arch-tegra210/mc.h           |   72 ++
 arch/arm/include/asm/arch-tegra210/pmu.h          |   14 +
 arch/arm/include/asm/arch-tegra210/powergate.h    |   12 +
 arch/arm/include/asm/arch-tegra210/sysctr.h       |   26 +
 arch/arm/include/asm/arch-tegra210/tegra.h        |   32 +
 arch/arm/lib/crt0_64.S                            |    3 +-
 arch/arm/mach-tegra/Kconfig                       |   30 +
 arch/arm/mach-tegra/Makefile                      |    5 +-
 arch/arm/mach-tegra/ap.c                          |   15 +-
 arch/arm/mach-tegra/board.c                       |   30 +-
 arch/arm/mach-tegra/board2.c                      |   16 +
 arch/arm/mach-tegra/cache.c                       |    2 +
 arch/arm/mach-tegra/clock.c                       |   30 +-
 arch/arm/mach-tegra/cpu.c                         |   55 +-
 arch/arm/mach-tegra/cpu.h                         |   10 +-
 arch/arm/mach-tegra/lowlevel_init.S               |   15 +
 arch/arm/mach-tegra/pinmux-common.c               |    2 +-
 arch/arm/mach-tegra/tegra210/Kconfig              |   18 +
 arch/arm/mach-tegra/tegra210/Makefile             |   11 +
 arch/arm/mach-tegra/tegra210/clock.c              | 1091
+++++++++++++++++++++
 arch/arm/mach-tegra/tegra210/funcmux.c            |   40 +
 arch/arm/mach-tegra/tegra210/xusb-padctl.c        |  495 ++++++++++
 board/nvidia/nyan-big/pinmux-config-nyan-big.h    |    8 +-
 board/nvidia/p2571/Kconfig                        |   12 +
 board/nvidia/p2571/MAINTAINERS                    |    6 +
 board/nvidia/p2571/Makefile                       |    9 +
 board/nvidia/p2571/max77620_init.c                |   85 ++
 board/nvidia/p2571/max77620_init.h                |   67 ++
 board/nvidia/p2571/p2571.c                        |   29 +
 board/nvidia/p2571/pinmux-config-p2571.h          |  235 +++++
 common/cmd_pxe.c                                  |    8 +-
 configs/p2571_defconfig                           |   16 +
 drivers/dfu/dfu.c                                 |    4 +-
 drivers/dfu/dfu_mmc.c                             |    2 +-
 drivers/i2c/tegra_i2c.c                           |    4 +-
 drivers/mmc/tegra_mmc.c                           |   18 +-
 drivers/usb/host/ehci-tegra.c                     |   31 +-
 include/command.h                                 |    2 +
 include/configs/p2571.h                           |   75 ++
 include/configs/tegra-common-post.h               |   12 +-
 include/configs/tegra-common.h                    |    4 +
 include/configs/tegra124-common.h                 |    2 +-
 include/configs/tegra210-common.h                 |   76 ++
 include/dt-bindings/clock/tegra210-car.h          |  342 +++++++
 include/fdtdec.h                                  |    3 +
 lib/fdtdec.c                                      |   58 +-
 65 files changed, 4632 insertions(+), 97 deletions(-)
 create mode 100644 arch/arm/dts/tegra210-p2571.dts
 create mode 100644 arch/arm/dts/tegra210.dtsi
 create mode 100644 arch/arm/include/asm/arch-tegra210/ahb.h
 create mode 100644 arch/arm/include/asm/arch-tegra210/clock-tables.h
 create mode 100644 arch/arm/include/asm/arch-tegra210/clock.h
 create mode 100644 arch/arm/include/asm/arch-tegra210/flow.h
 create mode 100644 arch/arm/include/asm/arch-tegra210/funcmux.h
 create mode 100644 arch/arm/include/asm/arch-tegra210/gp_padctrl.h
 create mode 100644 arch/arm/include/asm/arch-tegra210/gpio.h
 create mode 100644 arch/arm/include/asm/arch-tegra210/mc.h
 create mode 100644 arch/arm/include/asm/arch-tegra210/pmu.h
 create mode 100644 arch/arm/include/asm/arch-tegra210/powergate.h
 create mode 100644 arch/arm/include/asm/arch-tegra210/sysctr.h
 create mode 100644 arch/arm/include/asm/arch-tegra210/tegra.h
 create mode 100644 arch/arm/mach-tegra/tegra210/Kconfig
 create mode 100644 arch/arm/mach-tegra/tegra210/Makefile
 create mode 100644 arch/arm/mach-tegra/tegra210/clock.c
 create mode 100644 arch/arm/mach-tegra/tegra210/funcmux.c
 create mode 100644 arch/arm/mach-tegra/tegra210/xusb-padctl.c
 create mode 100644 board/nvidia/p2571/Kconfig
 create mode 100644 board/nvidia/p2571/MAINTAINERS
 create mode 100644 board/nvidia/p2571/Makefile
 create mode 100644 board/nvidia/p2571/max77620_init.c
 create mode 100644 board/nvidia/p2571/max77620_init.h
 create mode 100644 board/nvidia/p2571/p2571.c
 create mode 100644 board/nvidia/p2571/pinmux-config-p2571.h
 create mode 100644 configs/p2571_defconfig
 create mode 100644 include/configs/p2571.h
 create mode 100644 include/configs/tegra210-common.h
 create mode 100644 include/dt-bindings/clock/tegra210-car.h

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request: u-boot-tegra/master
@ 2015-06-09 17:06 Tom Warren
  2015-06-10 14:37 ` Tom Rini
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2015-06-09 17:06 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into U-Boot/master. Thanks!

./MAKEALL -s tegra is OK, nyan-big verified by Simon.

The following changes since commit 3d0158ae18bef2ac89979f4c90419d3add436c71:

  Prepare v2015.07-rc2 (2015-06-08 17:48:33 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to b7160fabf11f423e879ee9cdcf8f7d0de7964509:

  tegra: config: nyan-big: Add options required by Chrome OS boot
(2015-06-09 09:56:16 -0700)

----------------------------------------------------------------
Simon Glass (15):
      tegra: cros_ec: Add tegra support for Chrome OS EC
      tegra: spi: Drop the claim_bus() method to correct delays
      dm: tegra: cros_ec: Enable Chrome OS EC on Nyan-big
      tegra: spi: Support slow SPI rates
      tegra: clock: Support enabling external clocks
      tegra: clock: Adjust PLL access to avoid a warning
      tegra: Introduce SRAM repair on tegra124
      tegra: Add missing tegra124 peripherals
      tegra: Increase maximum arguments to 32
      tegra: lcd: Tidy up clock init
      tegra: Allow board-specific init
      tegra: nyan-big: Add additional clock and kernel init
      tegra: config: Allow Chrome OS environment settings to be included
      tegra: Replace 'Norrin' with 'Nyan-big' and fix typo
      tegra: config: nyan-big: Add options required by Chrome OS boot

 arch/arm/dts/tegra124-nyan-big.dts                |  3 +
 arch/arm/include/asm/arch-tegra/clock.h           |  8 +++
 arch/arm/include/asm/arch-tegra/sys_proto.h       |  7 +++
 arch/arm/include/asm/arch-tegra124/clock-tables.h | 12 ++--
 arch/arm/include/asm/arch-tegra124/flow.h         | 12 ++++
 arch/arm/mach-tegra/board2.c                      |  8 ++-
 arch/arm/mach-tegra/clock.c                       | 24 +++++++-
 arch/arm/mach-tegra/powergate.c                   | 20 ++++++-
 arch/arm/mach-tegra/tegra124/Kconfig              |  2 +-
 arch/arm/mach-tegra/tegra124/clock.c              |  2 +-
 board/nvidia/nyan-big/MAINTAINERS                 |  2 +-
 board/nvidia/nyan-big/nyan-big.c                  | 69
+++++++++++++++++++++++
 configs/nyan-big_defconfig                        |  5 ++
 drivers/spi/tegra114_spi.c                        | 40 +++++++------
 drivers/video/tegra124/tegra124-lcd.c             |  4 +-
 include/configs/nyan-big.h                        |  7 +++
 include/configs/tegra-common-post.h               | 15 ++++-
 include/configs/tegra-common.h                    |  2 +-
 18 files changed, 204 insertions(+), 38 deletions(-)

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] Pull request: u-boot-tegra/master
@ 2015-05-12 21:49 Tom Warren
  2015-05-13  1:45 ` Masahiro Yamada
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2015-05-12 21:49 UTC (permalink / raw)
  To: u-boot

Tom,

Please pull u-boot-tegra/master into u-boot/master. ./MAKEALL -s tegra is
clean. Thanks.

The following changes since commit b939689c7b87773c44275a578ffc8674a867e39d:

  Merge branch 'u-boot/master' into 'u-boot-arm/master' (2015-05-05
10:09:06 +0200)

are available in the git repository at:


  git://git.denx.de/u-boot-tegra.git master

for you to fetch changes up to 5168604f3b7e5b8ea077a69fe9acb7c14a36adf7:

  jetson-tk1: Add PSCI configuration options and reserve secure code
(2015-05-11 08:35:13 -0700)

----------------------------------------------------------------
Ian Campbell (3):
      tegra124: Add more registers to struct mc_ctlr
      tegra124: Reserve secure RAM using MC_SECURITY_CFG{0, 1}_0
      jetson-tk1: Add PSCI configuration options and reserve secure code

Jan Kiszka (13):
      ARM: Clean up CONFIG_ARMV7_NONSEC/VIRT/PSCI conditions
      sun7i: Remove duplicate call to psci_arch_init
      ARM: Factor out common psci_get_cpu_id
      ARM: Factor out reusable psci_cpu_off_common
      ARM: Factor out reusable psci_cpu_entry
      ARM: Factor out reusable psci_get_cpu_stack_top
      ARM: Put target PC for PSCI CPU_ON on per-CPU stack
      virt-dt: Allow reservation of secure region when in a RAM carveout
      tegra: Make tegra_powergate_power_on public
      ARM: Add board-specific initialization hook for PSCI
      tegra124: Add PSCI support for Tegra124
      tegra: Set CNTFRQ for secondary CPUs
      tegra: Boot in non-secure mode by default

Simon Glass (26):
      dm: core: Sort the uclasses
      dm: gpio: Add error handling and a function to claim vector GPIOs
      fdt: Add binding decode function for display-timings
      tegra: Move the pwm into tegra-common
      tegra: pwm: Allow the clock rate to be left as is
      tegra: Move checkboard() into the board code
      tegra: Add a board ID function
      power: Export register access functions from as3722
      tegra: Provide a function to allow LCD PMIC setup
      tegra: Add support for setting up a as3722 PMIC
      tegra: nyan-big: Add LCD PMIC init and board ID
      tegra124: dts: Add host1x node to provide display information
      tegra: config: Use CONFIG_LCD to detect LCD presence
      tegra: clock: Add checking for invalid clock IDs
      tegra: clock: Split the clock source code into a separate function
      tegra124: clock: Add display clocks and functions
      tegra: Move display controller header into common
      video: Add drm_dp_helper.h
      edid: Add a function to read detailed monitor timings
      dm: video: Add a uclass for display port
      tegra: dts: nyan-big: Add definitions for eDP display
      tegra: video: Support serial output resource (SOR) on tegra124
      tegra: video: Add Embedded DisplayPort driver
      tegra: video: support eDP displays on Tegra124 devices
      tegra: config: nyan-big: Enable LCD
      tegra124: video: Add full link training for eDP

Stephen Warren (2):
      ARM: tegra: CONFIG_{SYS_, }LOAD{_, }ADDR rationalization
      ARM: tegra: enable STDIO deregistration

Thierry Reding (1):
      ARM: tegra: Enable SMMU when going non-secure

 arch/arm/cpu/armv7/Kconfig                         |    2 +-
 arch/arm/cpu/armv7/Makefile                        |    2 +-
 arch/arm/cpu/armv7/ls102xa/cpu.c                   |    2 +-
 arch/arm/cpu/armv7/psci.S                          |  121 ++
 arch/arm/cpu/armv7/sunxi/psci.S                    |  112 +-
 arch/arm/cpu/armv7/virt-dt.c                       |   31 +-
 arch/arm/cpu/armv7/virt-v7.c                       |   11 +
 arch/arm/cpu/u-boot.lds                            |    2 +-
 arch/arm/dts/tegra124-nyan-big.dts                 |   47 +
 arch/arm/dts/tegra124.dtsi                         |   84 +
 arch/arm/include/asm/arch-tegra/clk_rst.h          |   15 +-
 arch/arm/include/asm/arch-tegra/clock.h            |   14 +
 .../include/asm/{arch-tegra20 => arch-tegra}/dc.h  |   67 +-
 arch/arm/include/asm/arch-tegra/powergate.h        |    1 +
 arch/arm/include/asm/arch-tegra/pwm.h              |   60 +
 arch/arm/include/asm/arch-tegra/sys_proto.h        |   19 +-
 arch/arm/include/asm/arch-tegra124/clock-tables.h  |    3 +-
 arch/arm/include/asm/arch-tegra124/clock.h         |   21 +
 arch/arm/include/asm/arch-tegra124/display.h       |   58 +
 arch/arm/include/asm/arch-tegra124/flow.h          |    6 +
 arch/arm/include/asm/arch-tegra124/mc.h            |   37 +-
 arch/arm/include/asm/arch-tegra124/pwm.h           |   14 +
 arch/arm/include/asm/arch-tegra20/display.h        |    2 +-
 arch/arm/include/asm/arch-tegra20/pwm.h            |   54 +-
 arch/arm/include/asm/armv7.h                       |    5 +-
 arch/arm/include/asm/psci.h                        |    1 +
 arch/arm/include/asm/system.h                      |    1 +
 arch/arm/lib/bootm-fdt.c                           |    8 +-
 arch/arm/lib/bootm.c                               |    6 +-
 arch/arm/mach-tegra/Makefile                       |    5 +
 arch/arm/mach-tegra/ap.c                           |   55 +
 arch/arm/mach-tegra/board.c                        |    8 -
 arch/arm/mach-tegra/clock.c                        |   83 +-
 arch/arm/mach-tegra/powergate.c                    |    2 +-
 arch/arm/mach-tegra/psci.S                         |  114 ++
 arch/arm/mach-tegra/{tegra20 => }/pwm.c            |    7 +-
 arch/arm/mach-tegra/tegra124/Kconfig               |    2 +
 arch/arm/mach-tegra/tegra124/Makefile              |    4 +
 arch/arm/mach-tegra/tegra124/clock.c               |  141 +-
 arch/arm/mach-tegra/tegra124/psci.c                |   59 +
 arch/arm/mach-tegra/tegra20/Makefile               |    1 -
 arch/arm/mach-tegra/tegra20/display.c              |    2 +-
 board/armltd/vexpress/vexpress_common.c            |    2 +-
 board/broadcom/bcm_ep/board.c                      |    2 +-
 board/freescale/common/arm_sleep.c                 |    2 +-
 board/nvidia/common/board.c                        |   40 +-
 board/nvidia/nyan-big/nyan-big.c                   |   34 +-
 common/edid.c                                      |  105 ++
 configs/nyan-big_defconfig                         |    2 +
 .../gpu/nvidia,tegra20-host1x.txt                  |  372 +++++
 doc/device-tree-bindings/video/display-timing.txt  |  110 ++
 drivers/gpio/gpio-uclass.c                         |   38 +-
 drivers/power/as3722.c                             |   16 +-
 drivers/video/Kconfig                              |   15 +
 drivers/video/Makefile                             |    6 +
 drivers/video/dp-uclass.c                          |   34 +
 drivers/video/tegra124/Makefile                    |   10 +
 drivers/video/tegra124/display.c                   |  472 ++++++
 drivers/video/tegra124/displayport.h               |  412 +++++
 drivers/video/tegra124/dp.c                        | 1607
++++++++++++++++++++
 drivers/video/tegra124/sor.c                       | 1024 +++++++++++++
 drivers/video/tegra124/sor.h                       |  922 +++++++++++
 drivers/video/tegra124/tegra124-lcd.c              |   97 ++
 include/asm-generic/gpio.h                         |   15 +-
 include/configs/jetson-tk1.h                       |    5 +
 include/configs/nyan-big.h                         |   14 +
 include/configs/tegra-common-post.h                |    4 +-
 include/configs/tegra-common.h                     |    3 +
 include/configs/tegra114-common.h                  |    7 +-
 include/configs/tegra124-common.h                  |    7 +-
 include/configs/tegra20-common.h                   |    7 +-
 include/configs/tegra30-common.h                   |    7 +-
 include/displayport.h                              |   60 +
 include/dm/uclass-id.h                             |   29 +-
 include/edid.h                                     |   19 +
 include/fdtdec.h                                   |   80 +
 include/linux/drm_dp_helper.h                      |  406 +++++
 include/power/as3722.h                             |    3 +
 lib/fdtdec.c                                       |   95 ++
 79 files changed, 7098 insertions(+), 274 deletions(-)
 rename arch/arm/include/asm/{arch-tegra20 => arch-tegra}/dc.h (89%)
 create mode 100644 arch/arm/include/asm/arch-tegra/pwm.h
 create mode 100644 arch/arm/include/asm/arch-tegra124/display.h
 create mode 100644 arch/arm/include/asm/arch-tegra124/pwm.h
 create mode 100644 arch/arm/mach-tegra/psci.S
 rename arch/arm/mach-tegra/{tegra20 => }/pwm.c (93%)
 create mode 100644 arch/arm/mach-tegra/tegra124/psci.c
 create mode 100644 doc/device-tree-bindings/gpu/nvidia,tegra20-host1x.txt
 create mode 100644 doc/device-tree-bindings/video/display-timing.txt
 create mode 100644 drivers/video/dp-uclass.c
 create mode 100644 drivers/video/tegra124/Makefile
 create mode 100644 drivers/video/tegra124/display.c
 create mode 100644 drivers/video/tegra124/displayport.h
 create mode 100644 drivers/video/tegra124/dp.c
 create mode 100644 drivers/video/tegra124/sor.c
 create mode 100644 drivers/video/tegra124/sor.h
 create mode 100644 drivers/video/tegra124/tegra124-lcd.c
 create mode 100644 include/displayport.h
 create mode 100644 include/linux/drm_dp_helper.h

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] pull request: u-boot-tegra/master
@ 2012-03-08 20:27 Tom Warren
  0 siblings, 0 replies; 102+ messages in thread
From: Tom Warren @ 2012-03-08 20:27 UTC (permalink / raw)
  To: u-boot

Albert,

Please pull u-boot-tegra/master into arm master. Thanks!

The following changes since commit 32ec258f829808dd7cf74fd83ba999fdaaeab715:

  IXP: Fix GPIO_INT_ACT_LOW_SET() (2012-03-08 08:11:45 +0100)

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

Simon Glass (22):
      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
      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

Tom Warren (2):
      arm: Tegra2: Fix ELDK42 gcc failure with inline asm stack pointer load
      tegra: fdt: Enable FDT support for Ventana

README                                             |    3 +
arch/arm/cpu/armv7/tegra2/Makefile                 |    4 +-
arch/arm/cpu/armv7/tegra2/ap20.c                   |   10 +-
arch/arm/cpu/armv7/tegra2/clock.c                  |   58 +++
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                          |  188 ++++++++
arch/arm/include/asm/arch-tegra2/clock.h           |   13 +
arch/arm/include/asm/arch-tegra2/tegra2.h          |    2 +
arch/arm/include/asm/arch-tegra2/usb.h             |  252 +++++++++++
board/nvidia/common/board.c                        |   12 +
board/nvidia/common/board.h                        |    6 +
board/nvidia/dts/tegra2-seaboard.dts               |   74 ++++
board/nvidia/seaboard/seaboard.c                   |    6 +
doc/device-tree-bindings/README                    |   17 +
.../clock/nvidia,tegra20-car.txt                   |  207 +++++++++
doc/device-tree-bindings/usb/tegra-usb.txt         |   25 +
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                         |   12 +
include/configs/tegra2-common.h                    |   10 +
include/configs/ventana.h                          |    5 +
include/fdtdec.h                                   |  155 +++++++-
lib/Makefile                                       |    1 +
lib/fdtdec.c                                       |  285 ++++++++++++-
lib/fdtdec_test.c                                  |  226 ++++++++++
29 files changed, 2105 insertions(+), 17 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/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/usb/tegra-usb.txt
create mode 100644 drivers/usb/host/ehci-tegra.c
create mode 100644 lib/fdtdec_test.c

--

nvpublic

^ permalink raw reply	[flat|nested] 102+ messages in thread
* [U-Boot] pull request: u-boot-tegra/master
@ 2012-01-19  0:01 Tom Warren
  2012-01-21 11:07 ` Albert ARIBAUD
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2012-01-19  0:01 UTC (permalink / raw)
  To: u-boot

Albert,

Please pull u-boot-tegra/master into arm master. Thanks.

The following changes since commit 137703b811502dfea364650fb3e17f20b4c21333:

  overo: add SPL support (2012-01-16 08:40:13 +0100)

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

Simon Glass (9):
      tegra: Adjust funcmux config test to permit expansion
      tegra: Add enum to select from available funcmux configs
      tegra: Add I2C support to funcmux
      tegra: Add SDMMC support to funcmux
      tegra: Use funcmux for MMC on tamonten
      tegra: Use funcmux for MMC on harmony
      tegra: Use funcmux for MMC on seaboard
      tegra: mmc: Support operation with dcache enabled
      tegra2: Enable data cache

Stephen Warren (3):
      tegra2: Fix conflicting pinmux for UARTA
      tegra2: Fix default RAM size selection in odmdata
      tegra2: Add support for Compal Paz00 (Toshiba AC100)

MAINTAINERS                                |    1 +
arch/arm/cpu/armv7/tegra2/board.c          |   12 ++-
arch/arm/cpu/armv7/tegra2/funcmux.c        |  152 +++++++++++++++++++++++++---
arch/arm/include/asm/arch-tegra2/funcmux.h |   30 ++++++-
board/avionic-design/common/tamonten.c     |   10 +--
board/compal/paz00/Makefile                |   41 ++++++++
board/compal/paz00/paz00.c                 |   81 +++++++++++++++
board/nvidia/harmony/harmony.c             |   19 +---
board/nvidia/seaboard/seaboard.c           |   21 +---
boards.cfg                                 |    1 +
drivers/mmc/tegra2_mmc.c                   |   16 +++
include/configs/paz00.h                    |   51 +++++++++
12 files changed, 379 insertions(+), 56 deletions(-)
create mode 100644 board/compal/paz00/Makefile
create mode 100644 board/compal/paz00/paz00.c
create mode 100644 include/configs/paz00.h

-----------------------------------------------------------------------------------
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] 102+ messages in thread
* [U-Boot] Pull request: u-boot-tegra/master
@ 2011-12-07 23:35 Tom Warren
  2011-12-08  7:22 ` Albert ARIBAUD
  0 siblings, 1 reply; 102+ messages in thread
From: Tom Warren @ 2011-12-07 23:35 UTC (permalink / raw)
  To: u-boot

Albert,

This is my first pull request for u-boot-tegra. Let me know if I've screwed it up in any way!

The following changes since commit 3865b6eba83707e1ad134bd42da426fd032948f5:

  MX35: flea3: changes due to hardware revision B (2011-12-05 18:31:20 +0100)

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

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] 102+ messages in thread

end of thread, other threads:[~2019-08-11  1:13 UTC | newest]

Thread overview: 102+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-05 20:50 [U-Boot] Pull request, u-boot-tegra/master Tom Warren
2019-06-07  1:31 ` Tom Rini
2019-06-07 15:28   ` Tom Warren
2019-06-07 15:40     ` Tom Rini
2019-06-07 17:17       ` Tom Warren
2019-06-07 18:30         ` Peter Robinson
2019-06-11  1:31 ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2019-08-09 17:21 Tom Warren
2019-08-11  1:13 ` Tom Rini
2019-05-28 16:01 Tom Warren
2019-05-29 17:18 ` Tom Rini
2019-02-20 16:34 Tom Warren
2019-02-21 23:10 ` Tom Rini
2019-02-19 22:44 Tom Warren
2018-08-21 17:27 Tom Warren
2018-08-23 13:59 ` Tom Rini
2018-07-26 21:08 Tom Warren
2018-07-27 17:08 ` Tom Rini
2018-07-06 20:11 Tom Warren
2018-07-06 22:04 ` Tom Rini
2018-05-11 19:19 Tom Warren
2018-05-12  1:49 ` Tom Rini
2018-01-12 17:37 Tom Warren
2018-01-15 13:53 ` Tom Rini
2018-01-16 17:47   ` Stephen Warren
2018-01-16 18:14     ` Tom Rini
2017-08-16 15:30 Tom Warren
2017-08-17  1:17 ` Tom Rini
2017-06-20 19:04 Tom Warren
2017-06-21 23:05 ` Tom Rini
2017-06-12 23:32 Tom Warren
2017-06-15 13:01 ` Tom Rini
2017-04-04 17:56 Tom Warren
2017-04-05  1:13 ` Tom Rini
2017-01-04 17:05 Tom Warren
2017-01-05 13:28 ` Tom Rini
2016-11-08 15:34 Tom Warren
2016-11-08 20:53 ` Tom Rini
2016-10-10 20:55 Tom Warren
2016-10-13  0:48 ` Tom Rini
2016-09-27 16:16 Tom Warren
2016-09-27 21:34 ` Tom Rini
2016-09-01 17:32 Tom Warren
2016-09-02 14:53 ` Tom Rini
2016-08-25 23:42 Tom Warren
2016-08-26 14:52 ` Tom Rini
2016-08-15 19:38 Tom Warren
2016-08-16  1:09 ` Tom Rini
2016-08-05 17:26 Tom Warren
2016-08-06  0:57 ` Tom Rini
2016-07-21 20:17 Tom Warren
2016-07-23  0:10 ` Tom Rini
2016-07-23  0:17   ` Stephen Warren
2016-07-23  0:22     ` Tom Rini
2016-07-23  0:31       ` Stephen Warren
2016-07-23  0:42         ` Tom Rini
2016-07-06 17:32 Tom Warren
2016-07-08  2:51 ` Tom Rini
2016-06-03 16:00 Tom Warren
2016-06-06 11:15 ` Tom Rini
2016-05-04 21:36 Tom Warren
2016-05-04 22:12 ` Tom Rini
2016-03-29 17:24 Tom Warren
2016-03-29 22:06 ` Tom Rini
2016-02-18 19:53 Tom Warren
2016-02-20  0:54 ` Tom Rini
2016-01-28 17:46 Tom Warren
2016-01-28 23:18 ` Tom Rini
2015-11-12 20:53 Tom Warren
2015-11-13  1:26 ` Tom Rini
2015-10-02 18:15 Tom Warren
2015-10-03  0:51 ` Tom Rini
2015-09-16 23:27 Tom Warren
2015-09-17  1:06 ` Tom Rini
2015-08-13 20:26 Tom Warren
2015-08-13 21:55 ` Tom Rini
2015-08-06 20:39 Tom Warren
2015-08-11 17:44 ` Tom Warren
2015-08-11 18:04   ` Tom Rini
2015-08-11 20:54     ` Tom Warren
2015-07-28 15:31 [U-Boot] Pull request: u-boot-tegra/master Tom Warren
2015-07-28 15:51 ` Stephen Warren
2015-07-28 17:23   ` Tom Warren
2015-06-09 17:06 Tom Warren
2015-06-10 14:37 ` Tom Rini
2015-05-12 21:49 Tom Warren
2015-05-13  1:45 ` Masahiro Yamada
2015-05-13 16:38   ` Tom Warren
2015-05-13 19:23     ` Tom Warren
2015-05-14 19:14       ` Tom Rini
2012-03-08 20:27 [U-Boot] pull " Tom Warren
2012-01-19  0:01 Tom Warren
2012-01-21 11:07 ` Albert ARIBAUD
2012-01-23 15:55   ` Tom Warren
2011-12-07 23:35 [U-Boot] Pull " Tom Warren
2011-12-08  7:22 ` Albert ARIBAUD
2011-12-08 16:45   ` Stephen Warren
2011-12-09 15:36     ` Albert ARIBAUD
2011-12-09 17:10       ` Stephen Warren
2011-12-09 17:22         ` Albert ARIBAUD
2011-12-09 17:37           ` Stephen Warren
2011-12-09 17:53             ` Albert ARIBAUD

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.