The SAMA5D27-SOM1-EK board embeds a SAMA5D27 SOM1 module, which includes a SAMA5D27-SiP chip and QSPI flash, Phy and MAC EEPROM. The SAMA5D27 SiP integrates the SAMA5D2 with 1Gbit DDR2-SDRAM in a single package.
Changes in v6: - Add function comments for at91_mck_init_down(). - Add the Reviewed-by tags. - Rebase the u-boot/master (ba39608147c797cf). Changes in v5: - Rebase the u-boot/master (8a33cb8b6bd). - Drop the applied patches. Changes in v4: - Rebase the uboot/master (84a4206). - Remove the default config file for the spiflash. - Integrate the following patches into this patch series. 1./ [PATCH v2 0/3] board: atmel: Set the ethernet mac address from eeprom 2./ [PATCH 1/7] lib: at91: Add logo files used by API from DM_VIDEO 3./ [PATCH 2/7] atmel: common: Add function to display via DM_VIDEO's API 4./ [PATCH] board: sama5d2_xplained: Make SPL work on spiflash - Remove the dependency on [PATCH 0/5] configs: at91: Remove value of CONFIG_SYS_EXTRA_OPTIONS option. Changes in v3: - Rebase on the PATCH: Atmel PIT timer driver and Remove CONFIG_SYS_EXTRA_OPTIONS. - Use the new Atmel PIT timer driver. - Remove "SAMA5D2" from CONFIG_SYS_EXTRA_OPTIONS options. - Move CONFIG_ENV_IS_IN_FAT to Kconfig. Changes in v2: - Add the reviewed-by tag. - Add the help in Kconfig to describe the board and peripherals. - Add the code to display the company's logo and board information. - Replace the code to set the ethernet mac address with the common code from the board/atmel/common folder. Wenyou Yang (9): lib: at91: Add logo files used via API of DM_VIDEO atmel: common: Add function to display via DM_VIDEO's API ARM: at91: spl: Adjust switching to oscillator for SAMA5D2 ARM: at91: spl: Add mck function to lower rate while switching board: sama5d2_xplained: Make SPL work on spiflash ARM: at91: spl: Add boot device for boot from QSPI ARM: at91: mach: Add missing defines of MPDDRC ARM: at91: Get the Chip ID of SAMA5D2 SiP board: atmel: Add SAMA5D27 SOM1 EK board arch/arm/dts/Makefile | 3 + arch/arm/dts/at91-sama5d27_som1_ek.dts | 215 ++++ arch/arm/dts/sama5d2.dtsi | 20 + arch/arm/dts/sama5d27_som1.dtsi | 159 +++ arch/arm/mach-at91/Kconfig | 14 + arch/arm/mach-at91/armv7/clock.c | 42 + arch/arm/mach-at91/armv7/sama5d2_devices.c | 26 +- arch/arm/mach-at91/include/mach/at91_common.h | 2 + arch/arm/mach-at91/include/mach/at91_pmc.h | 2 + arch/arm/mach-at91/include/mach/atmel_mpddrc.h | 4 + arch/arm/mach-at91/include/mach/sama5d2.h | 7 +- arch/arm/mach-at91/spl.c | 2 + arch/arm/mach-at91/spl_atmel.c | 18 +- board/atmel/common/Makefile | 1 + board/atmel/common/video_display.c | 72 ++ board/atmel/sama5d27_som1_ek/Kconfig | 15 + board/atmel/sama5d27_som1_ek/MAINTAINERS | 6 + board/atmel/sama5d27_som1_ek/Makefile | 8 + board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c | 189 ++++ board/atmel/sama5d2_xplained/sama5d2_xplained.c | 10 + configs/sama5d27_som1_ek_mmc_defconfig | 88 ++ include/atmel_lcd.h | 9 + include/configs/sama5d27_som1_ek.h | 92 ++ include/configs/sama5d2_xplained.h | 2 +- lib/Makefile | 1 + lib/at91/Makefile | 8 + lib/at91/at91.c | 30 + lib/at91/atmel_logo_8bpp.h | 1310 +++++++++++++++++++++++ lib/at91/microchip_logo_8bpp.h | 1082 +++++++++++++++++++ tools/logos/microchip.bmp | Bin 0 -> 12726 bytes 30 files changed, 3432 insertions(+), 5 deletions(-) create mode 100644 arch/arm/dts/at91-sama5d27_som1_ek.dts create mode 100644 arch/arm/dts/sama5d27_som1.dtsi create mode 100644 board/atmel/common/video_display.c create mode 100644 board/atmel/sama5d27_som1_ek/Kconfig create mode 100644 board/atmel/sama5d27_som1_ek/MAINTAINERS create mode 100644 board/atmel/sama5d27_som1_ek/Makefile create mode 100644 board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c create mode 100644 configs/sama5d27_som1_ek_mmc_defconfig create mode 100644 include/configs/sama5d27_som1_ek.h create mode 100644 lib/at91/Makefile create mode 100644 lib/at91/at91.c create mode 100644 lib/at91/atmel_logo_8bpp.h create mode 100644 lib/at91/microchip_logo_8bpp.h create mode 100644 tools/logos/microchip.bmp -- 2.13.0 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot