Kconfig 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. #
  2. # Bus Devices
  3. #
  4. menu "Bus devices"
  5. config ARM_CCI
  6. bool
  7. config ARM_CCI_PMU
  8. bool
  9. select ARM_CCI
  10. config ARM_CCI400_COMMON
  11. bool
  12. select ARM_CCI
  13. config ARM_CCI400_PMU
  14. bool "ARM CCI400 PMU support"
  15. depends on (ARM && CPU_V7) || ARM64
  16. depends on PERF_EVENTS
  17. select ARM_CCI400_COMMON
  18. select ARM_CCI_PMU
  19. help
  20. Support for PMU events monitoring on the ARM CCI-400 (cache coherent
  21. interconnect). CCI-400 supports counting events related to the
  22. connected slave/master interfaces.
  23. config ARM_CCI400_PORT_CTRL
  24. bool
  25. depends on ARM && OF && CPU_V7
  26. select ARM_CCI400_COMMON
  27. help
  28. Low level power management driver for CCI400 cache coherent
  29. interconnect for ARM platforms.
  30. config ARM_CCI500_PMU
  31. bool "ARM CCI500 PMU support"
  32. depends on (ARM && CPU_V7) || ARM64
  33. depends on PERF_EVENTS
  34. select ARM_CCI_PMU
  35. help
  36. Support for PMU events monitoring on the ARM CCI-500 cache coherent
  37. interconnect. CCI-500 provides 8 independent event counters, which
  38. can count events pertaining to the slave/master interfaces as well
  39. as the internal events to the CCI.
  40. If unsure, say Y
  41. config ARM_CCN
  42. bool "ARM CCN driver support"
  43. depends on ARM || ARM64
  44. depends on PERF_EVENTS
  45. help
  46. PMU (perf) driver supporting the ARM CCN (Cache Coherent Network)
  47. interconnect.
  48. config BRCMSTB_GISB_ARB
  49. bool "Broadcom STB GISB bus arbiter"
  50. depends on ARM || MIPS
  51. help
  52. Driver for the Broadcom Set Top Box System-on-a-chip internal bus
  53. arbiter. This driver provides timeout and target abort error handling
  54. and internal bus master decoding.
  55. config IMX_WEIM
  56. bool "Freescale EIM DRIVER"
  57. depends on ARCH_MXC
  58. help
  59. Driver for i.MX WEIM controller.
  60. The WEIM(Wireless External Interface Module) works like a bus.
  61. You can attach many different devices on it, such as NOR, onenand.
  62. config MIPS_CDMM
  63. bool "MIPS Common Device Memory Map (CDMM) Driver"
  64. depends on CPU_MIPSR2
  65. help
  66. Driver needed for the MIPS Common Device Memory Map bus in MIPS
  67. cores. This bus is for per-CPU tightly coupled devices such as the
  68. Fast Debug Channel (FDC).
  69. For this to work, either your bootloader needs to enable the CDMM
  70. region at an unused physical address on the boot CPU, or else your
  71. platform code needs to implement mips_cdmm_phys_base() (see
  72. asm/cdmm.h).
  73. config MVEBU_MBUS
  74. bool
  75. depends on PLAT_ORION
  76. help
  77. Driver needed for the MBus configuration on Marvell EBU SoCs
  78. (Kirkwood, Dove, Orion5x, MV78XX0 and Armada 370/XP).
  79. config OMAP_INTERCONNECT
  80. tristate "OMAP INTERCONNECT DRIVER"
  81. depends on ARCH_OMAP2PLUS
  82. help
  83. Driver to enable OMAP interconnect error handling driver.
  84. config OMAP_OCP2SCP
  85. tristate "OMAP OCP2SCP DRIVER"
  86. depends on ARCH_OMAP2PLUS
  87. help
  88. Driver to enable ocp2scp module which transforms ocp interface
  89. protocol to scp protocol. In OMAP4, USB PHY is connected via
  90. OCP2SCP and in OMAP5, both USB PHY and SATA PHY is connected via
  91. OCP2SCP.
  92. config SIMPLE_PM_BUS
  93. bool "Simple Power-Managed Bus Driver"
  94. depends on OF && PM
  95. depends on ARCH_SHMOBILE || COMPILE_TEST
  96. help
  97. Driver for transparent busses that don't need a real driver, but
  98. where the bus controller is part of a PM domain, or under the control
  99. of a functional clock, and thus relies on runtime PM for managing
  100. this PM domain and/or clock.
  101. An example of such a bus controller is the Renesas Bus State
  102. Controller (BSC, sometimes called "LBSC within Bus Bridge", or
  103. "External Bus Interface") as found on several Renesas ARM SoCs.
  104. config SUNXI_RSB
  105. tristate "Allwinner sunXi Reduced Serial Bus Driver"
  106. default MACH_SUN8I || MACH_SUN9I
  107. depends on ARCH_SUNXI
  108. select REGMAP
  109. help
  110. Say y here to enable support for Allwinner's Reduced Serial Bus
  111. (RSB) support. This controller is responsible for communicating
  112. with various RSB based devices, such as AXP223, AXP8XX PMICs,
  113. and AC100/AC200 ICs.
  114. config VEXPRESS_CONFIG
  115. bool "Versatile Express configuration bus"
  116. default y if ARCH_VEXPRESS
  117. depends on ARM || ARM64
  118. depends on OF
  119. select REGMAP
  120. help
  121. Platform configuration infrastructure for the ARM Ltd.
  122. Versatile Express.
  123. endmenu