[GIT PULL] TI changes for v2020.10 next

Hi Tom, Please find the pull request for v2020.10 next containing TI specific changes.
Travis-CI build: https://travis-ci.org/github/lokeshvutla/u-boot/builds/698883325
The following changes since commit be79009f3b9bbdbce283e67a865121e576d790ea:
Merge tag 'u-boot-imx-20200609' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx (2020-06-09 09:17:24 -0400)
are available in the Git repository at:
https://gitlab.denx.de/u-boot/custodians/u-boot-ti.git tags/ti-v2020.10-next
for you to fetch changes up to c0a8d6e1e67cc7feee5c9e6c7e8c13bb953734f1:
ARM: da850-evm: Remove SPI from SPL when booting from NAND (2020-06-16 17:00:50 +0530)
---------------------------------------------------------------- Below are the major changes in this PR: - DM conversion for OMAP4, OMAP5 platforms. - Other minor fixes for Nokia RX51, am33, am57, am654. ---------------------------------------------------------------- Adam Ford (1): ARM: da850-evm: Remove SPI from SPL when booting from NAND
Andrew F. Davis (3): tools: k3_gen_x509_cert: Allow selecting early JTAG debug value tools: k3_gen_x509_cert: Set default early HS JTAG access to disabled board: ti: am654: Disable SA2UL node for HS devices
Bin Liu (1): phy: omap-usb2-phy: disable phy charger detect
Faiz Abbas (1): mmc: davinci_mmc: Cleanup to use dt in U-boot and static platdata in SPL
Luca Ceresoli (2): board: ti: am57xx: use GPIO_TO_PIN() to define GPIO number board: ti: use positive logic to detect idk boards
Pali Rohár (2): Nokia RX-51: Add link for u-boot-gen-combined script to README file Nokia RX-51: Fix checking if serial console was enabled
Peter Ujfalusi (2): omap4: Copy device tree from Linux 5.7.y for SDP4430 omap4: sdp: convert to device model
Tero Kristo (4): omap4: Copy device tree from Linux 5.7.y omap4: panda: convert to device model omap5: Copy device tree from linux 5.7.y omap5: uevm: convert to device model
Tom Rini (5): board: ti: common: Fix pointer-bool-conversion warnings board: ti: am335x_evm: Remove duplicate setting of bd_ram_ofs member gpio: omap_gpio: Fix unused function warning in non-DM case mmc: omap_hsmmc: Add guards around omap_hsmmc_get_cfg() net: cpsw: Add __maybe_unused to generated inlines
arch/arm/dts/Makefile | 11 + arch/arm/dts/elpida_ecb240abacn.dtsi | 68 + arch/arm/dts/omap4-l4-abe.dtsi | 488 +++++ arch/arm/dts/omap4-l4.dtsi | 2473 +++++++++++++++++++++++ arch/arm/dts/omap4-mcpdm.dtsi | 44 + arch/arm/dts/omap4-panda-common.dtsi | 573 ++++++ arch/arm/dts/omap4-panda-es.dts | 82 + arch/arm/dts/omap4-panda.dts | 13 + arch/arm/dts/omap4-sdp-es23plus.dts | 14 + arch/arm/dts/omap4-sdp.dts | 713 +++++++ arch/arm/dts/omap4-u-boot.dtsi | 39 + arch/arm/dts/omap4.dtsi | 657 ++++++ arch/arm/dts/omap443x-clocks.dtsi | 15 + arch/arm/dts/omap443x.dtsi | 76 + arch/arm/dts/omap4460.dtsi | 131 ++ arch/arm/dts/omap446x-clocks.dtsi | 24 + arch/arm/dts/omap44xx-clocks.dtsi | 1324 ++++++++++++ arch/arm/dts/omap5-board-common.dtsi | 762 +++++++ arch/arm/dts/omap5-l4-abe.dtsi | 449 ++++ arch/arm/dts/omap5-l4.dtsi | 2437 ++++++++++++++++++++++ arch/arm/dts/omap5-u-boot.dtsi | 42 + arch/arm/dts/omap5-uevm.dts | 200 ++ arch/arm/dts/omap5.dtsi | 583 ++++++ arch/arm/dts/omap54xx-clocks.dtsi | 1208 +++++++++++ arch/arm/dts/twl6030.dtsi | 105 + arch/arm/dts/twl6030_omap4.dtsi | 35 + arch/arm/mach-davinci/include/mach/sdmmc_defs.h | 7 + board/davinci/da8xxevm/omapl138_lcdk.c | 12 + board/nokia/rx51/rx51.c | 2 +- board/ti/am335x/board.c | 1 - board/ti/am57xx/board.c | 9 +- board/ti/am65x/evm.c | 6 +- board/ti/common/board_detect.c | 14 +- board/ti/omap5_uevm/evm.c | 78 +- board/ti/panda/panda.c | 50 +- board/ti/sdp4430/sdp.c | 12 + configs/da850evm_nand_defconfig | 4 - configs/omap4_panda_defconfig | 12 +- configs/omap4_sdp4430_defconfig | 12 +- configs/omap5_uevm_defconfig | 13 +- configs/omapl138_lcdk_defconfig | 4 - doc/README.nokia_rx51 | 5 + drivers/gpio/omap_gpio.c | 9 +- drivers/mmc/davinci_mmc.c | 63 +- drivers/mmc/omap_hsmmc.c | 3 + drivers/net/ti/cpsw.c | 5 +- drivers/phy/omap-usb2-phy.c | 33 +- include/dt-bindings/clock/omap4.h | 149 ++ include/dt-bindings/clock/omap5.h | 129 ++ tools/k3_gen_x509_cert.sh | 14 +- 50 files changed, 13022 insertions(+), 190 deletions(-) create mode 100644 arch/arm/dts/elpida_ecb240abacn.dtsi create mode 100644 arch/arm/dts/omap4-l4-abe.dtsi create mode 100644 arch/arm/dts/omap4-l4.dtsi create mode 100644 arch/arm/dts/omap4-mcpdm.dtsi create mode 100644 arch/arm/dts/omap4-panda-common.dtsi create mode 100644 arch/arm/dts/omap4-panda-es.dts create mode 100644 arch/arm/dts/omap4-panda.dts create mode 100644 arch/arm/dts/omap4-sdp-es23plus.dts create mode 100644 arch/arm/dts/omap4-sdp.dts create mode 100644 arch/arm/dts/omap4-u-boot.dtsi create mode 100644 arch/arm/dts/omap4.dtsi create mode 100644 arch/arm/dts/omap443x-clocks.dtsi create mode 100644 arch/arm/dts/omap443x.dtsi create mode 100644 arch/arm/dts/omap4460.dtsi create mode 100644 arch/arm/dts/omap446x-clocks.dtsi create mode 100644 arch/arm/dts/omap44xx-clocks.dtsi create mode 100644 arch/arm/dts/omap5-board-common.dtsi create mode 100644 arch/arm/dts/omap5-l4-abe.dtsi create mode 100644 arch/arm/dts/omap5-l4.dtsi create mode 100644 arch/arm/dts/omap5-uevm.dts create mode 100644 arch/arm/dts/omap5.dtsi create mode 100644 arch/arm/dts/omap54xx-clocks.dtsi create mode 100644 arch/arm/dts/twl6030.dtsi create mode 100644 arch/arm/dts/twl6030_omap4.dtsi create mode 100644 include/dt-bindings/clock/omap4.h create mode 100644 include/dt-bindings/clock/omap5.h

On Thu, Jun 18, 2020 at 07:25:43PM +0530, Lokesh Vutla wrote:
Hi Tom, Please find the pull request for v2020.10 next containing TI specific changes.
Travis-CI build: https://travis-ci.org/github/lokeshvutla/u-boot/builds/698883325
The following changes since commit be79009f3b9bbdbce283e67a865121e576d790ea:
Merge tag 'u-boot-imx-20200609' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx (2020-06-09 09:17:24 -0400)
are available in the Git repository at:
https://gitlab.denx.de/u-boot/custodians/u-boot-ti.git tags/ti-v2020.10-next
for you to fetch changes up to c0a8d6e1e67cc7feee5c9e6c7e8c13bb953734f1:
ARM: da850-evm: Remove SPI from SPL when booting from NAND (2020-06-16 17:00:50 +0530)
This breaks my j6eco: U-Boot SPL 2020.07-rc4-00098-g83fdb4388253-dirty (Jun 18 2020 - 11:44:19 -0400) DRA752-GP ES1.1 Trying to boot from MMC1 no pinctrl state for default mode MMC: no card present spl: mmc init failed with error: -123 SPL: failed to boot from all boot devices ### ERROR ### Please RESET the board ###

On 18/06/20 9:15 pm, Tom Rini wrote:
On Thu, Jun 18, 2020 at 07:25:43PM +0530, Lokesh Vutla wrote:
Hi Tom, Please find the pull request for v2020.10 next containing TI specific changes.
Travis-CI build: https://travis-ci.org/github/lokeshvutla/u-boot/builds/698883325
The following changes since commit be79009f3b9bbdbce283e67a865121e576d790ea:
Merge tag 'u-boot-imx-20200609' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx (2020-06-09 09:17:24 -0400)
are available in the Git repository at:
https://gitlab.denx.de/u-boot/custodians/u-boot-ti.git tags/ti-v2020.10-next
for you to fetch changes up to c0a8d6e1e67cc7feee5c9e6c7e8c13bb953734f1:
ARM: da850-evm: Remove SPI from SPL when booting from NAND (2020-06-16 17:00:50 +0530)
This breaks my j6eco: U-Boot SPL 2020.07-rc4-00098-g83fdb4388253-dirty (Jun 18 2020 - 11:44:19 -0400) DRA752-GP ES1.1
This is J6. And I see dirty in the in SPL version. Are there any changes on top of this PR?
The only patches that can cause this issue are the below patches. Let me see if these are causing any troubles.
board: ti: common: Fix pointer-bool-conversion warnings mmc: omap_hsmmc: Add guards around omap_hsmmc_get_cfg()
Thanks and regards, Lokesh
Trying to boot from MMC1 no pinctrl state for default mode MMC: no card present spl: mmc init failed with error: -123 SPL: failed to boot from all boot devices ### ERROR ### Please RESET the board ###

On Thu, Jun 18, 2020 at 09:41:22PM +0530, Lokesh Vutla wrote:
On 18/06/20 9:15 pm, Tom Rini wrote:
On Thu, Jun 18, 2020 at 07:25:43PM +0530, Lokesh Vutla wrote:
Hi Tom, Please find the pull request for v2020.10 next containing TI specific changes.
Travis-CI build: https://travis-ci.org/github/lokeshvutla/u-boot/builds/698883325
The following changes since commit be79009f3b9bbdbce283e67a865121e576d790ea:
Merge tag 'u-boot-imx-20200609' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx (2020-06-09 09:17:24 -0400)
are available in the Git repository at:
https://gitlab.denx.de/u-boot/custodians/u-boot-ti.git tags/ti-v2020.10-next
for you to fetch changes up to c0a8d6e1e67cc7feee5c9e6c7e8c13bb953734f1:
ARM: da850-evm: Remove SPI from SPL when booting from NAND (2020-06-16 17:00:50 +0530)
This breaks my j6eco: U-Boot SPL 2020.07-rc4-00098-g83fdb4388253-dirty (Jun 18 2020 - 11:44:19 -0400) DRA752-GP ES1.1
This is J6. And I see dirty in the in SPL version. Are there any changes on top of this PR?
Sorry for the noise, local error, the SD card got disturbed and needed an eject/re-insert.

On Thu, Jun 18, 2020 at 07:25:43PM +0530, Lokesh Vutla wrote:
Hi Tom, Please find the pull request for v2020.10 next containing TI specific changes.
Travis-CI build: https://travis-ci.org/github/lokeshvutla/u-boot/builds/698883325
The following changes since commit be79009f3b9bbdbce283e67a865121e576d790ea:
Merge tag 'u-boot-imx-20200609' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx (2020-06-09 09:17:24 -0400)
are available in the Git repository at:
https://gitlab.denx.de/u-boot/custodians/u-boot-ti.git tags/ti-v2020.10-next
for you to fetch changes up to c0a8d6e1e67cc7feee5c9e6c7e8c13bb953734f1:
ARM: da850-evm: Remove SPI from SPL when booting from NAND (2020-06-16 17:00:50 +0530)
Applied to u-boot/next, thanks!
participants (2)
-
Lokesh Vutla
-
Tom Rini