Kconfig 1012 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. if ARCH_ZYNQ
  2. config SPL_FAT_SUPPORT
  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_SUPPORT
  11. default y if ZYNQ_SDHCI
  12. config SPL_SERIAL_SUPPORT
  13. default y
  14. config SPL_SPI_FLASH_SUPPORT
  15. default y if ZYNQ_QSPI
  16. config SPL_SPI_SUPPORT
  17. default y if ZYNQ_QSPI
  18. config SYS_BOARD
  19. default "zynq"
  20. config SYS_VENDOR
  21. string "Vendor name"
  22. default "xilinx"
  23. config SYS_SOC
  24. default "zynq"
  25. config SYS_CONFIG_NAME
  26. string "Board configuration name"
  27. default "zynq-common"
  28. help
  29. This option contains information about board configuration name.
  30. Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
  31. will be used for board configuration.
  32. config SYS_MALLOC_F_LEN
  33. default 0x600
  34. config BOOT_INIT_FILE
  35. string "boot.bin init register filename"
  36. default ""
  37. help
  38. Add register writes to boot.bin format (max 256 pairs).
  39. Expect a table of register-value pairs, e.g. "0x12345678 0x4321"
  40. endif