
Hi Tom,
here are some fixes for sama5d2 and a new sama5d2 board for 2016.05.
The following changes since commit 58abb988ce24525474f0d515d2a36c1b3acf893f:
mx6ul_evk: Remove CONFIG_SUPPORT_EMMC_BOOT (2016-05-02 21:04:36 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-atmel.git master
for you to fetch changes up to 0b5940e2b24043a7f4c07cca4b11a13522063e02:
ARM: sama5d2: Implement boot device autodetection (2016-05-03 13:31:28 +0200)
---------------------------------------------------------------- Marek Vasut (2): ARM: atmel: Enable FIT image support for SAMA5Dx ARM: sama5d2: Implement boot device autodetection
Wenyou Yang (6): ARM: at91: sama5d2: add macro & field definitions board: atmel: add SAMA5D2 PTC Engineering board board: atmel: sama5d2_xplained: fix the missing pin config of SDMMC0 ARM: at91: clock: fix the GCK's clock source ARM: at91: clock: complete the GCK's clock sources board: sama5d2_xplained: change SDHCI GCK's clock source to UPLL
arch/arm/mach-at91/Kconfig | 6 + arch/arm/mach-at91/Makefile | 2 +- arch/arm/mach-at91/armv7/clock.c | 11 + arch/arm/mach-at91/bootparams_atmel.S | 18 ++ arch/arm/mach-at91/include/mach/clk.h | 2 + arch/arm/mach-at91/include/mach/sama5_sfr.h | 24 ++ arch/arm/mach-at91/include/mach/sama5d2.h | 17 ++ arch/arm/mach-at91/spl.c | 36 +++ board/atmel/sama5d2_ptc/Kconfig | 15 ++ board/atmel/sama5d2_ptc/MAINTAINERS | 7 + board/atmel/sama5d2_ptc/Makefile | 8 + board/atmel/sama5d2_ptc/sama5d2_ptc.c | 285 ++++++++++++++++++++++++ board/atmel/sama5d2_xplained/sama5d2_xplained.c | 5 +- configs/sama5d2_ptc_nandflash_defconfig | 12 + configs/sama5d2_ptc_spiflash_defconfig | 12 + configs/sama5d2_xplained_mmc_defconfig | 1 + configs/sama5d2_xplained_spiflash_defconfig | 1 + configs/sama5d3_xplained_mmc_defconfig | 1 + configs/sama5d3_xplained_nandflash_defconfig | 1 + configs/sama5d3xek_mmc_defconfig | 1 + configs/sama5d3xek_nandflash_defconfig | 1 + configs/sama5d3xek_spiflash_defconfig | 1 + configs/sama5d4_xplained_mmc_defconfig | 1 + configs/sama5d4_xplained_nandflash_defconfig | 1 + configs/sama5d4_xplained_spiflash_defconfig | 1 + configs/sama5d4ek_mmc_defconfig | 1 + configs/sama5d4ek_nandflash_defconfig | 1 + configs/sama5d4ek_spiflash_defconfig | 1 + include/configs/sama5d2_ptc.h | 155 +++++++++++++ 29 files changed, 625 insertions(+), 3 deletions(-) create mode 100644 arch/arm/mach-at91/bootparams_atmel.S create mode 100644 board/atmel/sama5d2_ptc/Kconfig create mode 100644 board/atmel/sama5d2_ptc/MAINTAINERS create mode 100644 board/atmel/sama5d2_ptc/Makefile create mode 100644 board/atmel/sama5d2_ptc/sama5d2_ptc.c create mode 100644 configs/sama5d2_ptc_nandflash_defconfig create mode 100644 configs/sama5d2_ptc_spiflash_defconfig create mode 100644 include/configs/sama5d2_ptc.h
Regards,
Andreas