Kconfig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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
  32. depends on BCMA_DRIVER_MIPS
  33. config BCMA_DRIVER_MIPS
  34. bool "BCMA Broadcom MIPS core driver"
  35. depends on BCMA && MIPS
  36. help
  37. Driver for the Broadcom MIPS core attached to Broadcom specific
  38. Advanced Microcontroller Bus.
  39. If unsure, say N
  40. config BCMA_SFLASH
  41. bool
  42. depends on BCMA_DRIVER_MIPS
  43. default y
  44. config BCMA_NFLASH
  45. bool
  46. depends on BCMA_DRIVER_MIPS
  47. default y
  48. config BCMA_DRIVER_GMAC_CMN
  49. bool "BCMA Broadcom GBIT MAC COMMON core driver"
  50. depends on BCMA
  51. help
  52. Driver for the Broadcom GBIT MAC COMMON core attached to Broadcom
  53. specific Advanced Microcontroller Bus.
  54. If unsure, say N
  55. config BCMA_DRIVER_GPIO
  56. bool "BCMA GPIO driver"
  57. depends on BCMA && GPIOLIB
  58. help
  59. Driver to provide access to the GPIO pins of the bcma bus.
  60. If unsure, say N
  61. config BCMA_DEBUG
  62. bool "BCMA debugging"
  63. depends on BCMA
  64. help
  65. This turns on additional debugging messages.
  66. If unsure, say N
  67. endmenu