Kconfig 681 B

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # Copyright (C) 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License version 2 as
  6. # published by the Free Software Foundation.
  7. #
  8. if ARC_PLAT_FPGA_LEGACY
  9. choice
  10. prompt "FPGA Board"
  11. config ARC_BOARD_ANGEL4
  12. bool "ARC Angel4"
  13. help
  14. ARC Angel4 FPGA Ref Platform (Xilinx Virtex Based)
  15. config ARC_BOARD_ML509
  16. bool "ML509"
  17. help
  18. ARC ML509 FPGA Ref Platform (Xilinx Virtex-5 Based)
  19. endchoice
  20. config ARC_SERIAL_BAUD
  21. int "UART Baud rate"
  22. default "115200"
  23. depends on SERIAL_ARC || SERIAL_ARC_CONSOLE
  24. help
  25. Baud rate for the ARC UART
  26. endif