Kconfig 668 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. if TARGET_XTFPGA
  2. choice
  3. prompt "XTFPGA board type select"
  4. config XTFPGA_LX60
  5. bool "Support Avnet LX60"
  6. config XTFPGA_LX110
  7. bool "Support Avnet LX110"
  8. config XTFPGA_LX200
  9. bool "Support Avnet LX200"
  10. config XTFPGA_ML605
  11. bool "Support Xilinx ML605"
  12. config XTFPGA_KC705
  13. bool "Support Xilinx KC705"
  14. endchoice
  15. config SYS_BOARD
  16. string
  17. default "xtfpga"
  18. config SYS_VENDOR
  19. string
  20. default "cadence"
  21. config SYS_CONFIG_NAME
  22. string
  23. default "xtfpga"
  24. config BOARD_SDRAM_SIZE
  25. hex
  26. default 0x04000000 if XTFPGA_LX60
  27. default 0x03000000 if XTFPGA_LX110
  28. default 0x06000000 if XTFPGA_LX200
  29. default 0x18000000 if XTFPGA_ML605
  30. default 0x38000000 if XTFPGA_KC705
  31. endif