Hi Tom, please pull the first part of the sunxi pull request for this cycle:
For once this adds USB support for two SoCs: the H616 and the F1C100s series. The rest is support for LPDDR3 DRAM chips on H616 boards. Gitlab CI passed, and I booted that briefly on an H616 and an F1C200s board. I don't have an H616 board with LPDDR3 DRAM, but reportedly that works for Mikhail, and doesn't regress on my DDR3 boards. Thanks, Andre ========================================================= The following changes since commit 0274eb61e1f2a8e053fb028b6c668c67c0b75b9c: Merge tag 'efi-2023-10-rc1-2' of https://source.denx.de/u-boot/custodians/u-boot-efi (2023-07-20 10:19:04 -0400) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-sunxi.git master for you to fetch changes up to ecb896cec75e98d6e5f9bcbf0a87976119443985: sunxi: H616: add LPDDR3 DRAM support (2023-07-21 00:54:19 +0100) ---------------------------------------------------------------- Andre Przywara (10): phy: sun4i-usb: Fix of_xlate() argument check phy: sun4i-usb: add Allwinner F1C100s support sunxi: Kconfig: rework PHY_USB_SUN4I selection phy: sun4i-usb: Replace types with explicit quirk flags phy: sun4i-usb: Add H616 USB PHY quirk support phy: sun4i: Add H616 USB PHY support sunxi: H616: enable USB support for H616 boards sunxi: dram: make MBUS configuration functions static sunxi: H616: dram: const-ify DRAM function parameters sunxi: H616: dram: split struct dram_para Mikhail Kalashnikov (2): sunxi: H616: add DRAM type selection sunxi: H616: add LPDDR3 DRAM support arch/arm/include/asm/arch-sunxi/dram_sun50i_h616.h | 12 +- arch/arm/mach-sunxi/Kconfig | 29 +- arch/arm/mach-sunxi/dram_sun50i_h6.c | 3 +- arch/arm/mach-sunxi/dram_sun50i_h616.c | 383 +++++++++++++-------- arch/arm/mach-sunxi/dram_sunxi_dw.c | 18 +- arch/arm/mach-sunxi/dram_timings/Makefile | 4 +- arch/arm/mach-sunxi/dram_timings/h616_ddr3_1333.c | 2 +- arch/arm/mach-sunxi/dram_timings/h616_lpddr3.c | 95 +++++ configs/orangepi_zero2_defconfig | 4 + configs/x96_mate_defconfig | 3 + drivers/phy/allwinner/Kconfig | 5 +- drivers/phy/allwinner/phy-sun4i-usb.c | 111 ++++-- drivers/usb/musb-new/Kconfig | 1 + 13 files changed, 461 insertions(+), 209 deletions(-) create mode 100644 arch/arm/mach-sunxi/dram_timings/h616_lpddr3.c