Kconfig 906 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. if TARGET_MICROBLAZE_GENERIC
  2. config SYS_BOARD
  3. default "microblaze-generic"
  4. config SYS_VENDOR
  5. default "xilinx"
  6. config SYS_CONFIG_NAME
  7. string "Board configuration name"
  8. default "microblaze-generic"
  9. help
  10. This option contains information about board configuration name.
  11. Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
  12. will be used for board configuration.
  13. config XILINX_MICROBLAZE0_USE_MSR_INSTR
  14. int "USE_MSR_INSTR range (0:1)"
  15. default 0
  16. config XILINX_MICROBLAZE0_USE_PCMP_INSTR
  17. int "USE_PCMP_INSTR range (0:1)"
  18. default 0
  19. config XILINX_MICROBLAZE0_USE_BARREL
  20. int "USE_BARREL range (0:1)"
  21. default 0
  22. config XILINX_MICROBLAZE0_USE_DIV
  23. int "USE_DIV range (0:1)"
  24. default 0
  25. config XILINX_MICROBLAZE0_USE_HW_MUL
  26. int "USE_HW_MUL values (0=NONE, 1=MUL32, 2=MUL64)"
  27. default 0
  28. config XILINX_MICROBLAZE0_HW_VER
  29. string "Core version number"
  30. default "7.10.d"
  31. endif