Kconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. if ARCH_ZYNQ
  2. config SPL_FS_FAT
  3. default y
  4. config SPL_LIBCOMMON_SUPPORT
  5. default y
  6. config SPL_LIBDISK_SUPPORT
  7. default y
  8. config SPL_LIBGENERIC_SUPPORT
  9. default y
  10. config SPL_MMC
  11. default y if MMC_SDHCI_ZYNQ
  12. config SPL_SERIAL
  13. default y
  14. config SPL_SPI_FLASH_SUPPORT
  15. default y if ZYNQ_QSPI
  16. config SPL_SPI
  17. default y if ZYNQ_QSPI
  18. config ZYNQ_DDRC_INIT
  19. bool "Zynq DDRC initialization"
  20. default y
  21. help
  22. This option used to perform DDR specific initialization
  23. if required. There might be cases like ddr less where we
  24. want to skip ddr init and this option is useful for it.
  25. config SYS_BOARD
  26. string "Board name"
  27. default "zynq"
  28. config SYS_VENDOR
  29. string "Vendor name"
  30. default "xilinx"
  31. config SYS_SOC
  32. default "zynq"
  33. config SYS_CONFIG_NAME
  34. string "Board configuration name"
  35. default "zynq-common"
  36. help
  37. This option contains information about board configuration name.
  38. Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
  39. will be used for board configuration.
  40. config SYS_MALLOC_F_LEN
  41. default 0x800
  42. config SYS_MALLOC_LEN
  43. default 0x1400000
  44. config BOOT_INIT_FILE
  45. string "boot.bin init register filename"
  46. default ""
  47. help
  48. Add register writes to boot.bin format (max 256 pairs).
  49. Expect a table of register-value pairs, e.g. "0x12345678 0x4321"
  50. config ZYNQ_SDHCI_MAX_FREQ
  51. default 52000000
  52. source "board/xilinx/Kconfig"
  53. source "board/xilinx/zynq/Kconfig"
  54. endif