Hi Tom, Please find the pull request for v2020.10-rc1 containing TI specific changes.
Travis-CI build: https://travis-ci.org/github/lokeshvutla/u-boot/builds/707679753 The following changes since commit 497c7598c4e713eb9ad88fd7963e57b21b8b35e1: Merge branch 'master' of https://gitlab.denx.de/u-boot/custodians/u-boot-spi (2020-07-11 17:40:00 -0400) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-ti.git tags/ti-v2020.10-rc1 for you to fetch changes up to 865fdfddce467f446b64f2aa7ba77f9dd0a48a6b: arm: k3: use correct weak function name spl_board_prepare_for_linux (2020-07-13 20:58:34 +0530) ---------------------------------------------------------------- Below are the major changes in this PR: - Sync DMA and CPSW DT bindings for K3 devices - Other minor fixes for mmc and other TI devices ---------------------------------------------------------------- Adam Ford (2): README: davinci: Clarify when SPL is used and the target devices. ARM: da850-evm: Unify config options with Kconfig Jan Kiszka (1): arm: k3: Consolidate and silence k3_fit_atf.sh call Pali Rohár (1): mmc: omap_hsmmc: Set 3.3V for IO voltage on all places Patrick Delaunay (1): arm: k3: use correct weak function name spl_board_prepare_for_linux Tom Rini (1): omap3_beagle: Finish current outstanding DM migrations Vignesh Raghavendra (14): dma: ti: Add static PSIL endpoint information dma: ti: k3-udma: Update driver to use static endpoint Data arm: dts: k3-am65/j721e: Sync DMA DT bindings from Kernel DT soc: ti: k3-ringacc: Move state tracking variables under a struct soc: ti: k3-ringacc: Add an API to request pair of rings soc: ti: k3-ringacc: Separate soc specific initialization dma: ti: k3-udma: Introduce udma_chan_config struct dma: ti: k3-udma: Move RX descriptor ring entries to rflow struct dma: ti: k3-udma: Switch to k3_ringacc_request_rings_pair net: ti: am65-cpsw-nuss: Remove dead code net: ti: am65-cpsw-nuss: Set ALE default thread enable net: ti: am65-cpsw-nuss: Update driver to use kernel DT arm: dts: k3-j721e: Sync CPSW DT node from kernel arm: dts: k3-am65: Sync CPSW DT node from kernel arch/arm/dts/k3-am65-mcu.dtsi | 128 +++++++ arch/arm/dts/k3-am654-base-board-u-boot.dtsi | 155 +------- .../arm/dts/k3-j721e-common-proc-board-u-boot.dtsi | 174 +-------- arch/arm/dts/k3-j721e-mcu-wakeup.dtsi | 117 ++++++ arch/arm/mach-k3/common.c | 2 +- arch/arm/mach-k3/config.mk | 17 +- board/davinci/da8xxevm/da850evm.c | 6 +- board/ti/beagle/beagle.c | 70 ---- configs/da850evm_direct_nor_defconfig | 1 - configs/omap3_beagle_defconfig | 3 + doc/README.davinci | 10 +- drivers/dma/ti/Kconfig | 4 + drivers/dma/ti/Makefile | 4 + drivers/dma/ti/k3-psil-am654.c | 89 +++++ drivers/dma/ti/k3-psil-j721e.c | 47 +++ drivers/dma/ti/k3-psil-priv.h | 43 +++ drivers/dma/ti/k3-psil.c | 42 +++ drivers/dma/ti/k3-psil.h | 67 ++++ drivers/dma/ti/k3-udma.c | 402 ++++++++++++--------- drivers/mmc/omap_hsmmc.c | 2 +- drivers/net/ti/am65-cpsw-nuss.c | 15 +- drivers/soc/ti/k3-navss-ringacc.c | 161 ++++++--- include/configs/da850evm.h | 23 +- include/dt-bindings/dma/k3-udma.h | 31 -- include/linux/soc/ti/k3-navss-ringacc.h | 4 + scripts/config_whitelist.txt | 2 - 26 files changed, 929 insertions(+), 690 deletions(-) create mode 100644 drivers/dma/ti/k3-psil-am654.c create mode 100644 drivers/dma/ti/k3-psil-j721e.c create mode 100644 drivers/dma/ti/k3-psil-priv.h create mode 100644 drivers/dma/ti/k3-psil.c create mode 100644 drivers/dma/ti/k3-psil.h delete mode 100644 include/dt-bindings/dma/k3-udma.h -- 2.23.0