Kconfig 872 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. # Support for Block-I/O. SELECT this from the driver that needs it.
  14. config BCMA_BLOCKIO
  15. bool
  16. depends on BCMA
  17. config BCMA_HOST_PCI_POSSIBLE
  18. bool
  19. depends on BCMA && PCI = y
  20. default y
  21. config BCMA_HOST_PCI
  22. bool "Support for BCMA on PCI-host bus"
  23. depends on BCMA_HOST_PCI_POSSIBLE
  24. config BCMA_DRIVER_PCI_HOSTMODE
  25. bool "Driver for PCI core working in hostmode"
  26. depends on BCMA && MIPS
  27. help
  28. PCI core hostmode operation (external PCI bus).
  29. config BCMA_DEBUG
  30. bool "BCMA debugging"
  31. depends on BCMA
  32. help
  33. This turns on additional debugging messages.
  34. If unsure, say N
  35. endmenu