
Hi Tom,
Please pull tag u-boot-atmel-2021.04-b , the second set of new atmel features for 2021.04 cycle.
This feature set includes macb updates for all interfaces and new sama7g5 variant support; micrel ksz9031 DLL support; a new board from Giant based on Adafruit feather form factor which contains a SAMA5D27 SoC; several fixes regarding the NAND flash PMECC block; and pincontrol drive strength support for pio4 controller.
Thanks, Eugen
The following changes since commit ae3d8b6c403218e68b56bce962ba7737161cc6f4:
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-sh (2021-01-18 12:38:22 -0500)
are available in the Git repository at:
https://gitlab.denx.de/u-boot/custodians/u-boot-atmel.git tags/u-boot-atmel-2021.04-b
for you to fetch changes up to 786f35b619ddbfb88e4532d11a56413f5dab473f:
ARM: at91: spl: add spl_early_init for sama5d2 platforms (2021-01-22 15:09:59 +0200)
---------------------------------------------------------------- Second set of u-boot-atmel features for 2021.04 cycle
---------------------------------------------------------------- Claudiu Beznea (7): net: phy: micrel: add support for DLL setup on ksz9131 net: phy: micrel: fix typo net: macb: add user io config data structure net: macb: check clk_set_rate return value to be negative net: macb: add support for sama7g5 gmac net: macb: add support for sama7g5 emac net: macb: take into account all RGMII interface types
Eugen Hristev (4): dt-bindings: pinctrl: at91-pio4: update license to SPDX style dt-bindings: pinctrl: at91-pio4: add property for drive strength pinctrl: at91-pio4: convert to dev_read_prop pinctrl: at91-pio4: implement drive strength support
Greg Gallagher (3): board: atmel: Add SAMA5D27 giant board configs: sama5d27_som1_ek: Set FDT filename based on defconfig ARM: at91: spl: add spl_early_init for sama5d2 platforms
Kai Stuhlemmer (ebee Engineering) (1): sam9x60.h: Fix Galois Field Table offsets
Tudor Ambarus (3): configs: at91: Fix the involuntarily disablement of NAND PMECC configs: at91: Fix wrong definitions for CONFIG_PMECC_CAP sama5d3: Fix Galois Field Table offsets
arch/arm/dts/Makefile | 3 +- arch/arm/dts/at91-sama5d27_giantboard.dts | 128 +++++++++++++++++++++ arch/arm/mach-at91/include/mach/atmel_pio4.h | 1 + arch/arm/mach-at91/include/mach/sam9x60.h | 4 +- arch/arm/mach-at91/include/mach/sama5d3.h | 4 +- arch/arm/mach-at91/spl_atmel.c | 7 ++ board/atmel/sama5d27_som1_ek/MAINTAINERS | 6 + configs/at91sam9n12ek_mmc_defconfig | 1 + configs/at91sam9n12ek_spiflash_defconfig | 1 + configs/at91sam9x5ek_mmc_defconfig | 1 + configs/at91sam9x5ek_spiflash_defconfig | 1 + configs/sama5d27_giantboard_defconfig | 97 ++++++++++++++++ configs/sama5d36ek_cmp_mmc_defconfig | 2 + configs/sama5d36ek_cmp_nandflash_defconfig | 1 + configs/sama5d36ek_cmp_spiflash_defconfig | 2 + configs/sama5d3_xplained_mmc_defconfig | 2 + configs/sama5d3xek_mmc_defconfig | 2 + configs/sama5d3xek_spiflash_defconfig | 2 + configs/sama5d4_xplained_spiflash_defconfig | 2 + configs/sama5d4ek_mmc_defconfig | 2 + configs/sama5d4ek_spiflash_defconfig | 2 + .../pinctrl/atmel,at91-pio4-pinctrl.txt | 2 + drivers/net/macb.c | 100 +++++++++++++--- drivers/net/phy/micrel_ksz90x1.c | 65 ++++++++++- drivers/pinctrl/pinctrl-at91-pio4.c | 14 ++- include/configs/sama5d27_som1_ek.h | 7 +- include/dt-bindings/pinctrl/at91.h | 7 +- 27 files changed, 436 insertions(+), 30 deletions(-) create mode 100644 arch/arm/dts/at91-sama5d27_giantboard.dts create mode 100644 configs/sama5d27_giantboard_defconfig