[GIT PULL] TI changes for v2020.04-rc2

Lokesh Vutla lokeshvutla at ti.com
Tue Feb 4 04:58:38 CET 2020


Hi Tom,

Please find the pull request for v2020.04-rc2 containing TI specific changes.
This PR is a re spin of previous PR[0] without mmc changes and fetched
few dt changes and watchdog fixes.

[0] https://patchwork.ozlabs.org/patch/1230709/ 

Travis-CI build: https://travis-ci.org/lokeshvutla/u-boot/builds/645566110

Thanks and regards,
Lokesh

The following changes since commit 31a790bee939e227dfc7e6a6a323b2b13180707f:

  Merge branch 'master' of git://git.denx.de/u-boot-usb (2020-02-02 15:26:53 -0500)

are available in the Git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-ti.git tags/ti-v2020.04-rc2

for you to fetch changes up to 4dd05933989f01bb38813f4a5f043b7dfa24e218:

  watchdog: omap_wdt: Fix WDT coding style (2020-02-04 09:07:25 +0530)

----------------------------------------------------------------
Below are the major changes in this PR:
- DFU boot support for J721e
- I2C support for J721e
- GPIO support for J721e
- Android boot image updates on AM57XX
- OMAP watchdog fixes
----------------------------------------------------------------
Faiz Abbas (3):
      configs: j721e_evm_a72: Fix redundant environment offset
      arm: dts: k3-j721e-main: Add Support for gpio0
      configs: j721e_evm_a72: Add GPIO support

Marek Vasut (3):
      watchdog: omap_wdt: Fix WDT timeout configuration
      watchdog: omap_wdt: Fix WDT reloading
      watchdog: omap_wdt: Fix WDT coding style

Sam Protsenko (10):
      image: android: Add functions for handling dtb field
      image: android: Add routine to get dtbo params
      cmd: abootimg: Add abootimg command
      doc: android: Add documentation for Android Boot Image
      doc: android: Convert to Sphinx format
      test/py: android: Add test for abootimg
      configs: am57xx_evm: Enable Android commands
      env: ti: boot: Respect slot_suffix in AVB commands
      env: ti: boot: Boot Android with dynamic partitions
      arm: ti: boot: Use correct dtb and dtbo on Android boot

Vignesh Raghavendra (14):
      arm: mach-k3: j721e: Rename BOOT_DEVICE_USB to BOOT_DEVICE_DFU
      arm: mach-k3: sysfw-loader: Add support to download SYSFW via DFU
      arm: dts: k3-j721e-common-proc-board: Enable USB0 in peripheral mode
      configs: j721e_evm: Add DFU related variables
      configs: j721e_evm_r5_defconfig: Increase early malloc size
      configs: j721e_evm_r5/a72_defconfig: Enable USB Gadget related configs
      configs: j721e_evm_r5/a72_defconfig: Enable DFU related configs
      gpio: pca953x_gpio: Add support for 24 bit IO expander
      arm: dts: k3-j721e: Add I2C nodes
      arm: dts: k3-j721e-common-proc-board: Add I2C GPIO expander
      arm: dts: k3-j721e-common-proc-board: Enable I2C expander for SPL
      configs: j721e_evm_defconfig: Enable PCA953x IO expander
      gpio: da8xx_gpio: Fix compiler warning
      gpio: da8xx_gpio: Add "ti,keystone-gpio" compatible

 MAINTAINERS                                        |   4 +-
 .../arm/dts/k3-j721e-common-proc-board-u-boot.dtsi |  12 +
 arch/arm/dts/k3-j721e-common-proc-board.dts        |  27 ++
 arch/arm/dts/k3-j721e-main.dtsi                    |  99 ++++++++
 arch/arm/dts/k3-j721e-mcu-wakeup.dtsi              |  22 ++
 arch/arm/dts/k3-j721e-r5-common-proc-board.dts     |  45 ++++
 arch/arm/dts/k3-j721e.dtsi                         |  10 +
 arch/arm/mach-k3/include/mach/j721e_spl.h          |   2 +-
 arch/arm/mach-k3/sysfw-loader.c                    |  30 +++
 cmd/Kconfig                                        |  12 +-
 cmd/Makefile                                       |   1 +
 cmd/abootimg.c                                     | 258 +++++++++++++++++++
 common/Makefile                                    |   2 +-
 common/image-android.c                             | 282 +++++++++++++++++++++
 configs/am57xx_evm_defconfig                       |   6 +
 configs/am57xx_hs_evm_defconfig                    |   6 +
 configs/am57xx_hs_evm_usb_defconfig                |   6 +
 configs/j721e_evm_a72_defconfig                    |  13 +-
 configs/j721e_evm_r5_defconfig                     |  18 +-
 configs/sandbox_defconfig                          |   1 +
 doc/android/{ab.txt => ab.rst}                     |  39 +--
 doc/android/avb2.rst                               | 133 ++++++++++
 doc/android/avb2.txt                               | 115 ---------
 doc/android/bcb.rst                                | 100 ++++++++
 doc/android/bcb.txt                                |  89 -------
 doc/android/boot-image.rst                         | 154 +++++++++++
 ...fastboot-protocol.txt => fastboot-protocol.rst} |  45 ++--
 doc/android/{fastboot.txt => fastboot.rst}         |  92 +++----
 doc/android/index.rst                              |  14 +
 doc/index.rst                                      |  12 +
 drivers/gpio/da8xx_gpio.c                          |   3 +-
 drivers/gpio/pca953x_gpio.c                        |  11 +-
 drivers/watchdog/omap_wdt.c                        |  56 ++--
 include/configs/j721e_evm.h                        |   4 +
 include/configs/ti_armv7_common.h                  |   7 +
 include/environment/ti/boot.h                      | 154 ++++++-----
 include/image.h                                    |   6 +
 test/py/tests/test_android/test_abootimg.py        | 159 ++++++++++++
 test/py/tests/test_android/test_avb.py             |   2 +-
 39 files changed, 1658 insertions(+), 393 deletions(-)
 create mode 100644 cmd/abootimg.c
 rename doc/android/{ab.txt => ab.rst} (52%)
 create mode 100644 doc/android/avb2.rst
 delete mode 100644 doc/android/avb2.txt
 create mode 100644 doc/android/bcb.rst
 delete mode 100644 doc/android/bcb.txt
 create mode 100644 doc/android/boot-image.rst
 rename doc/android/{fastboot-protocol.txt => fastboot-protocol.rst} (82%)
 rename doc/android/{fastboot.txt => fastboot.rst} (79%)
 create mode 100644 doc/android/index.rst
 create mode 100644 test/py/tests/test_android/test_abootimg.py
-- 
2.23.0



More information about the U-Boot mailing list