Kconfig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. menuconfig ARC_HAS_BVCI_LAT_UNIT
  45. bool "BVCI Bus Latency Unit"
  46. depends on ARC_BOARD_ML509 || ARC_BOARD_ANGEL4
  47. help
  48. IP to add artificial latency to BVCI Bus Based FPGA builds.
  49. The default latency (even worst case) for FPGA is non-realistic
  50. (~10 SDRAM, ~5 SSRAM).
  51. config BVCI_LAT_UNITS
  52. hex "Latency Unit(s) Bitmap"
  53. default "0x0"
  54. depends on ARC_HAS_BVCI_LAT_UNIT
  55. help
  56. There are multiple Latency Units corresponding to the many
  57. interfaces of the system bus arbiter (both CPU side as well as
  58. the peripheral side).
  59. To add latency to ALL memory transaction, choose Unit 0, otherwise
  60. for finer grainer - interface wise latency, specify a bitmap (1 bit
  61. per unit) of all units. e.g. 1,2,12 will be 0x1003
  62. Unit 0 - System Arb and Mem Controller
  63. Unit 1 - I$ and System Bus
  64. Unit 2 - D$ and System Bus
  65. ..
  66. Unit 12 - IDE Disk controller and System Bus
  67. config BVCI_LAT_CYCLES
  68. int "Latency Value in cycles"
  69. range 0 63
  70. default "30"
  71. depends on ARC_HAS_BVCI_LAT_UNIT
  72. endif