Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. menuconfig ARC_PLAT_FPGA_LEGACY
  9. bool "\"Legacy\" ARC FPGA dev Boards"
  10. select ISS_SMP_EXTN if SMP
  11. help
  12. Support for ARC development boards, provided by Synopsys.
  13. These are based on FPGA or ISS. e.g.
  14. - ARCAngel4
  15. - ML509
  16. - MetaWare ISS
  17. if ARC_PLAT_FPGA_LEGACY
  18. config ARC_BOARD_ANGEL4
  19. bool "ARC Angel4"
  20. default y
  21. help
  22. ARC Angel4 FPGA Ref Platform (Xilinx Virtex Based)
  23. config ARC_BOARD_ML509
  24. bool "ML509"
  25. help
  26. ARC ML509 FPGA Ref Platform (Xilinx Virtex-5 Based)
  27. config ISS_SMP_EXTN
  28. bool "ARC SMP Extensions (ISS Models only)"
  29. default n
  30. depends on SMP
  31. help
  32. SMP Extensions to ARC700, in a "simulation only" Model, supported in
  33. ARC ISS (Instruction Set Simulator).
  34. The SMP extensions include:
  35. -IDU (Interrupt Distribution Unit)
  36. -XTL (To enable CPU start/stop/set-PC for another CPU)
  37. It doesn't provide coherent Caches and/or Atomic Ops (LLOCK/SCOND)
  38. config ARC_SERIAL_BAUD
  39. int "UART Baud rate"
  40. default "115200"
  41. depends on SERIAL_ARC || SERIAL_ARC_CONSOLE
  42. help
  43. Baud rate for the ARC UART
  44. endif