Kconfig 957 B

1234567891011121314151617181920212223242526272829303132
  1. menuconfig AXI
  2. bool "AXI bus drivers"
  3. help
  4. Support AXI (Advanced eXtensible Interface) busses, a on-chip
  5. interconnect specification for managing functional blocks in SoC
  6. designs, which is also often used in designs involving FPGAs (e.g.
  7. communication with IP cores in Xilinx FPGAs).
  8. These types of busses expose a virtual address space that can be
  9. accessed using different address widths (8, 16, and 32 are supported
  10. for now).
  11. Other similar bus architectures may be compatible as well.
  12. if AXI
  13. config IHS_AXI
  14. bool "Enable IHS AXI driver"
  15. depends on DM
  16. help
  17. Support for gdsys Integrated Hardware Systems Advanced eXtensible
  18. Interface (IHS AXI) bus on a gdsys IHS FPGA used to communicate with
  19. IP cores in the FPGA (e.g. video transmitter cores).
  20. config AXI_SANDBOX
  21. bool "Enable AXI sandbox driver"
  22. depends on DM
  23. help
  24. Support AXI (Advanced eXtensible Interface) emulation for the sandbox
  25. environment.
  26. endif