
-----Original Message----- From: Nico Becker n.becker@ic-automation.de Sent: Friday, September 11, 2020 3:03 PM To: u-boot@lists.denx.de; marex@denx.de; Tan, Ley Foon ley.foon.tan@intel.com; simon.k.r.goldschmidt@gmail.com Cc: Nico Becker n.becker@ic-automation.de Subject: [RESEND PATCH v5 9/11] ARM: socfpga: Add initial support for ic- automation Moritz III
Add initial support for ic-automation Moritz III, which is an Cyclone V SOM with ethernet, usb, uart. Booting via sd-card or flash is supported.
Changes for v5: - fixed random ethaddr at failure - fixed comments
Changes for v4: - re-sort list alphabetically - c style comments
Changes for v3: - Resend via git send-email
Changes for v2: - Coding Style cleanup
Signed-off-by: Nico Becker n.becker@ic-automation.de
arch/arm/dts/Makefile | 1 + ...ocfpga_cyclone5_ica_moritz_iii-u-boot.dtsi | 45 ++ .../dts/socfpga_cyclone5_ica_moritz_iii.dts | 123 ++++ arch/arm/mach-socfpga/Kconfig | 8 + board/ic-automation/moritz_iii/MAINTAINERS | 8 + board/ic-automation/moritz_iii/Makefile | 8 + .../moritz_iii/moritz_iii_board.c | 127 ++++ .../moritz_iii/qts/iocsr_config.h | 658 ++++++++++++++++++ .../moritz_iii/qts/pinmux_config.h | 218 ++++++ .../ic-automation/moritz_iii/qts/pll_config.h | 83 +++ .../moritz_iii/qts/sdram_config.h | 344 +++++++++ board/ic-automation/moritz_iii/socfpga.c | 5 + configs/socfpga_moritz_iii_defconfig | 75 ++ include/configs/socfpga_ica_moritz_iii.h | 46 ++ 14 files changed, 1749 insertions(+) create mode 100644 arch/arm/dts/socfpga_cyclone5_ica_moritz_iii-u- boot.dtsi create mode 100644 arch/arm/dts/socfpga_cyclone5_ica_moritz_iii.dts create mode 100644 board/ic-automation/moritz_iii/MAINTAINERS create mode 100644 board/ic-automation/moritz_iii/Makefile create mode 100644 board/ic-automation/moritz_iii/moritz_iii_board.c create mode 100644 board/ic-automation/moritz_iii/qts/iocsr_config.h create mode 100644 board/ic-automation/moritz_iii/qts/pinmux_config.h create mode 100644 board/ic-automation/moritz_iii/qts/pll_config.h create mode 100644 board/ic-automation/moritz_iii/qts/sdram_config.h create mode 100644 board/ic-automation/moritz_iii/socfpga.c create mode 100644 configs/socfpga_moritz_iii_defconfig create mode 100644 include/configs/socfpga_ica_moritz_iii.h
What is different from patch https://patchwork.ozlabs.org/project/uboot/patch/20200909120223.10174-1-n.be... ? This is patch 9/11?
Regards Ley Foon