Kconfig 960 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #
  2. # MEN Chameleon Bus (MCB) support
  3. #
  4. menuconfig MCB
  5. tristate "MCB support"
  6. default n
  7. depends on HAS_IOMEM
  8. help
  9. The MCB (MEN Chameleon Bus) is a Bus specific to MEN Mikroelektronik
  10. FPGA based devices. It is used to identify MCB based IP-Cores within
  11. an FPGA and provide the necessary framework for instantiating drivers
  12. for these devices.
  13. If build as a module, the module is called mcb.ko
  14. if MCB
  15. config MCB_PCI
  16. tristate "PCI based MCB carrier"
  17. default n
  18. depends on PCI
  19. help
  20. This is a MCB carrier on a PCI device. Both PCI attached on-board
  21. FPGAs as well as CompactPCI attached MCB FPGAs are supported with
  22. this driver.
  23. If build as a module, the module is called mcb-pci.ko
  24. config MCB_LPC
  25. tristate "LPC (non PCI) based MCB carrier"
  26. default n
  27. help
  28. This is a MCB carrier on a LPC or non PCI device.
  29. If build as a module, the module is called mcb-lpc.ko
  30. endif # MCB