Kconfig 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. default y
  25. config BCMA_DRIVER_PCI_HOSTMODE
  26. bool "Driver for PCI core working in hostmode"
  27. depends on BCMA && MIPS && BCMA_HOST_PCI
  28. help
  29. PCI core hostmode operation (external PCI bus).
  30. config BCMA_HOST_SOC
  31. bool "Support for BCMA in a SoC"
  32. depends on BCMA
  33. help
  34. Host interface for a Broadcom AIX bus directly mapped into
  35. the memory. This only works with the Broadcom SoCs from the
  36. BCM47XX line.
  37. If unsure, say N
  38. config BCMA_DRIVER_MIPS
  39. bool "BCMA Broadcom MIPS core driver"
  40. depends on BCMA && MIPS
  41. help
  42. Driver for the Broadcom MIPS core attached to Broadcom specific
  43. Advanced Microcontroller Bus.
  44. If unsure, say N
  45. config BCMA_SFLASH
  46. bool
  47. depends on BCMA_DRIVER_MIPS
  48. default y
  49. config BCMA_NFLASH
  50. bool
  51. depends on BCMA_DRIVER_MIPS
  52. default y
  53. config BCMA_DRIVER_GMAC_CMN
  54. bool "BCMA Broadcom GBIT MAC COMMON core driver"
  55. depends on BCMA
  56. help
  57. Driver for the Broadcom GBIT MAC COMMON core attached to Broadcom
  58. specific Advanced Microcontroller Bus.
  59. If unsure, say N
  60. config BCMA_DRIVER_GPIO
  61. bool "BCMA GPIO driver"
  62. depends on BCMA && GPIOLIB
  63. help
  64. Driver to provide access to the GPIO pins of the bcma bus.
  65. If unsure, say N
  66. config BCMA_DEBUG
  67. bool "BCMA debugging"
  68. depends on BCMA
  69. help
  70. This turns on additional debugging messages.
  71. If unsure, say N
  72. endmenu