Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 && BCMA_HOST_PCI
  27. help
  28. PCI core hostmode operation (external PCI bus).
  29. config BCMA_HOST_SOC
  30. bool
  31. depends on BCMA_DRIVER_MIPS
  32. config BCMA_DRIVER_MIPS
  33. bool "BCMA Broadcom MIPS core driver"
  34. depends on BCMA && MIPS
  35. help
  36. Driver for the Broadcom MIPS core attached to Broadcom specific
  37. Advanced Microcontroller Bus.
  38. If unsure, say N
  39. config BCMA_DEBUG
  40. bool "BCMA debugging"
  41. depends on BCMA
  42. help
  43. This turns on additional debugging messages.
  44. If unsure, say N
  45. endmenu