Commit 74255e71 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev
Browse files

updated binaries

parent 9239e759
Loading
Loading
Loading
Loading

images/elphel393/boot.bin

100755 → 100644
+0 −0

File changed.File mode changed from 100755 to 100644.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+80 KiB (498 KiB)

File changed.

No diff preview for this file type.

+53 −36
Original line number Diff line number Diff line
if ARCH_ZYNQ

config ZYNQ_CUSTOM_INIT
	bool "Use custom ps7_init provided by Xilinx tool"
	help
	  U-Boot includes ps7_init_gpl.[ch] for some Zynq board variants.
	  If you want to override them with customized ones
	  or ps7_init code for your board is missing, please say Y here
	  and add ones into board/xilinx/zynq/custom_hw_platform/ directory.
config TARGET_ELPHEL393
    bool "Elphel 10393 Zynq Board"
    default y

choice
	prompt "Xilinx Zynq board select"
	default TARGET_ZYNQ_ZC702
config SPL_LDSCRIPT
	default "arch/arm/mach-zynq/u-boot-spl.lds"

config TARGET_ZYNQ_ZED
	bool "Zynq ZedBoard"
config SPL_FAT_SUPPORT
	default y

config TARGET_ZYNQ_MICROZED
	bool "Zynq MicroZed"
config SPL_LIBCOMMON_SUPPORT
	default y

config TARGET_ZYNQ_PICOZED
	bool "Zynq PicoZed"
config SPL_LIBDISK_SUPPORT
	default y

config TARGET_ZYNQ_ZC702
	bool "Zynq ZC702 Board"
config SPL_LIBGENERIC_SUPPORT
	default y

config TARGET_ZYNQ_ZC706
	bool "Zynq ZC706 Board"
config SPL_MMC_SUPPORT
	default y if MMC_SDHCI_ZYNQ

config TARGET_ZYNQ_ZC770
	bool "Zynq ZC770 Board"
	select ZYNQ_CUSTOM_INIT
config SPL_SERIAL_SUPPORT
	default y

config TARGET_ZYNQ_ZYBO
	bool "Zynq Zybo Board"
config SPL_SPI_FLASH_SUPPORT
	default y if ZYNQ_QSPI

config TARGET_ELPHEL393
        bool "Zynq Elphel 10393 Board"
config SPL_SPI_SUPPORT
	default y if ZYNQ_QSPI

endchoice
config ZYNQ_DDRC_INIT
	bool "Zynq DDRC initialization"
	default y
	help
	  This option used to perform DDR specific initialization
	  if required. There might be cases like ddr less where we
	  want to skip ddr init and this option is useful for it.

config SYS_BOARD
	string "Board name"
	default "elphel393" if TARGET_ELPHEL393
	default "zynq"

config SYS_VENDOR
	string "Vendor name"
	default "elphel" if TARGET_ELPHEL393
	default "xilinx"

@@ -51,13 +53,28 @@ config SYS_SOC
	default "zynq"

config SYS_CONFIG_NAME
	default "zynq_zed" if TARGET_ZYNQ_ZED
	default "zynq_microzed" if TARGET_ZYNQ_MICROZED
	default "zynq_picozed" if TARGET_ZYNQ_PICOZED
	default "zynq_zc70x" if TARGET_ZYNQ_ZC702
	default "zynq_zc706" if TARGET_ZYNQ_ZC706
	default "zynq_zc770" if TARGET_ZYNQ_ZC770
	default "zynq_zybo" if TARGET_ZYNQ_ZYBO
	string "Board configuration name"
	default "elphel393" if TARGET_ELPHEL393
	default "zynq-common"
	help
	  This option contains information about board configuration name.
	  Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
	  will be used for board configuration.

config SYS_MALLOC_F_LEN
	default 0x600

config SYS_MALLOC_LEN
	default 0x1400000

config BOOT_INIT_FILE
	string "boot.bin init register filename"
	default ""
	help
	  Add register writes to boot.bin format (max 256 pairs).
	  Expect a table of register-value pairs, e.g. "0x12345678 0x4321"

config ZYNQ_SDHCI_MAX_FREQ
	default 52000000

endif