Kconfig 597 B

12345678910111213141516171819202122232425262728293031323334
  1. config BCMA_POSSIBLE
  2. bool
  3. depends on HAS_IOMEM && HAS_DMA
  4. default y
  5. menu "Broadcom specific AMBA"
  6. depends on BCMA_POSSIBLE
  7. config BCMA
  8. tristate "BCMA support"
  9. depends on BCMA_POSSIBLE
  10. help
  11. Bus driver for Broadcom specific Advanced Microcontroller Bus
  12. Architecture.
  13. config BCMA_HOST_PCI_POSSIBLE
  14. bool
  15. depends on BCMA && PCI = y
  16. default y
  17. config BCMA_HOST_PCI
  18. bool "Support for BCMA on PCI-host bus"
  19. depends on BCMA_HOST_PCI_POSSIBLE
  20. config BCMA_DEBUG
  21. bool "BCMA debugging"
  22. depends on BCMA
  23. help
  24. This turns on additional debugging messages.
  25. If unsure, say N
  26. endmenu