Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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_SFLASH
  40. bool
  41. depends on BCMA_DRIVER_MIPS && BROKEN
  42. default y
  43. config BCMA_NFLASH
  44. bool
  45. depends on BCMA_DRIVER_MIPS && BROKEN
  46. default y
  47. config BCMA_DRIVER_GMAC_CMN
  48. bool "BCMA Broadcom GBIT MAC COMMON core driver"
  49. depends on BCMA
  50. help
  51. Driver for the Broadcom GBIT MAC COMMON core attached to Broadcom
  52. specific Advanced Microcontroller Bus.
  53. If unsure, say N
  54. config BCMA_DEBUG
  55. bool "BCMA debugging"
  56. depends on BCMA
  57. help
  58. This turns on additional debugging messages.
  59. If unsure, say N
  60. endmenu