
Hi Tom,
this is a resend of the pull request send late in release cycle for 2016.05.
The following changes since commit d7d000311285e4b8d11e089ca13ea456a01be3b8:
Merge branch 'master' of git://git.denx.de/u-boot-mips (2016-05-23 11:51:37 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-atmel.git master
for you to fetch changes up to bb0c63a5f3b05770e8cb6171be57ca69995bd447:
ARM: sama5d2: Implement boot device autodetection (2016-05-24 08:08:37 +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