All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tom Warren <tomcwarren3959@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Pull request, u-boot-tegra/master
Date: Wed, 5 Jun 2019 13:50:59 -0700	[thread overview]
Message-ID: <CACih+8UnRfUq=biZBbGXQXw3kZm4f_OW_kG9cM5pLdfAaFdfYQ@mail.gmail.com> (raw)

 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

             reply	other threads:[~2019-06-05 20:50 UTC|newest]

Thread overview: 102+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-05 20:50 Tom Warren [this message]
2019-06-07  1:31 ` [U-Boot] Pull request, u-boot-tegra/master 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

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to='CACih+8UnRfUq=biZBbGXQXw3kZm4f_OW_kG9cM5pLdfAaFdfYQ@mail.gmail.com' \
    --to=tomcwarren3959@gmail.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

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

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