Kconfig 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. config PPC_CELL
  2. bool
  3. default n
  4. config PPC_CELL_COMMON
  5. bool
  6. select PPC_CELL
  7. select PPC_DCR_MMIO
  8. select PPC_INDIRECT_IO
  9. select PPC_NATIVE
  10. select PPC_RTAS
  11. select IRQ_EDGE_EOI_HANDLER
  12. config PPC_CELL_NATIVE
  13. bool
  14. select PPC_CELL_COMMON
  15. select MPIC
  16. select IBM_NEW_EMAC_EMAC4
  17. select IBM_NEW_EMAC_RGMII
  18. select IBM_NEW_EMAC_ZMII #test only
  19. select IBM_NEW_EMAC_TAH #test only
  20. default n
  21. config PPC_IBM_CELL_BLADE
  22. bool "IBM Cell Blade"
  23. depends on PPC64 && PPC_BOOK3S
  24. select PPC_CELL_NATIVE
  25. select PPC_OF_PLATFORM_PCI
  26. select PCI
  27. select MMIO_NVRAM
  28. select PPC_UDBG_16550
  29. select UDBG_RTAS_CONSOLE
  30. config PPC_CELLEB
  31. bool "Toshiba's Cell Reference Set 'Celleb' Architecture"
  32. depends on PPC64 && PPC_BOOK3S
  33. select PPC_CELL_NATIVE
  34. select PPC_OF_PLATFORM_PCI
  35. select PCI
  36. select HAS_TXX9_SERIAL
  37. select PPC_UDBG_BEAT
  38. select USB_OHCI_BIG_ENDIAN_MMIO
  39. select USB_EHCI_BIG_ENDIAN_MMIO
  40. config PPC_CELL_QPACE
  41. bool "IBM Cell - QPACE"
  42. depends on PPC64 && PPC_BOOK3S
  43. select PPC_CELL_COMMON
  44. config AXON_MSI
  45. bool
  46. depends on PPC_IBM_CELL_BLADE && PCI_MSI
  47. default y
  48. menu "Cell Broadband Engine options"
  49. depends on PPC_CELL
  50. config SPU_FS
  51. tristate "SPU file system"
  52. default m
  53. depends on PPC_CELL
  54. select SPU_BASE
  55. select MEMORY_HOTPLUG
  56. help
  57. The SPU file system is used to access Synergistic Processing
  58. Units on machines implementing the Broadband Processor
  59. Architecture.
  60. config SPU_FS_64K_LS
  61. bool "Use 64K pages to map SPE local store"
  62. # we depend on PPC_MM_SLICES for now rather than selecting
  63. # it because we depend on hugetlbfs hooks being present. We
  64. # will fix that when the generic code has been improved to
  65. # not require hijacking hugetlbfs hooks.
  66. depends on SPU_FS && PPC_MM_SLICES && !PPC_64K_PAGES
  67. default y
  68. select PPC_HAS_HASH_64K
  69. help
  70. This option causes SPE local stores to be mapped in process
  71. address spaces using 64K pages while the rest of the kernel
  72. uses 4K pages. This can improve performances of applications
  73. using multiple SPEs by lowering the TLB pressure on them.
  74. config SPU_BASE
  75. bool
  76. default n
  77. config CBE_RAS
  78. bool "RAS features for bare metal Cell BE"
  79. depends on PPC_CELL_NATIVE
  80. default y
  81. config PPC_IBM_CELL_RESETBUTTON
  82. bool "IBM Cell Blade Pinhole reset button"
  83. depends on CBE_RAS && PPC_IBM_CELL_BLADE
  84. default y
  85. help
  86. Support Pinhole Resetbutton on IBM Cell blades.
  87. This adds a method to trigger system reset via front panel pinhole button.
  88. config PPC_IBM_CELL_POWERBUTTON
  89. tristate "IBM Cell Blade power button"
  90. depends on PPC_IBM_CELL_BLADE && INPUT_EVDEV
  91. default y
  92. help
  93. Support Powerbutton on IBM Cell blades.
  94. This will enable the powerbutton as an input device.
  95. config CBE_THERM
  96. tristate "CBE thermal support"
  97. default m
  98. depends on CBE_RAS && SPU_BASE
  99. config CBE_CPUFREQ
  100. tristate "CBE frequency scaling"
  101. depends on CBE_RAS && CPU_FREQ
  102. default m
  103. help
  104. This adds the cpufreq driver for Cell BE processors.
  105. For details, take a look at <file:Documentation/cpu-freq/>.
  106. If you don't have such processor, say N
  107. config CBE_CPUFREQ_PMI_ENABLE
  108. bool "CBE frequency scaling using PMI interface"
  109. depends on CBE_CPUFREQ && EXPERIMENTAL
  110. default n
  111. help
  112. Select this, if you want to use the PMI interface
  113. to switch frequencies. Using PMI, the
  114. processor will not only be able to run at lower speed,
  115. but also at lower core voltage.
  116. config CBE_CPUFREQ_PMI
  117. tristate
  118. depends on CBE_CPUFREQ_PMI_ENABLE
  119. default CBE_CPUFREQ
  120. config PPC_PMI
  121. tristate
  122. default y
  123. depends on CBE_CPUFREQ_PMI || PPC_IBM_CELL_POWERBUTTON
  124. help
  125. PMI (Platform Management Interrupt) is a way to
  126. communicate with the BMC (Baseboard Management Controller).
  127. It is used in some IBM Cell blades.
  128. config CBE_CPUFREQ_SPU_GOVERNOR
  129. tristate "CBE frequency scaling based on SPU usage"
  130. depends on SPU_FS && CPU_FREQ
  131. default m
  132. help
  133. This governor checks for spu usage to adjust the cpu frequency.
  134. If no spu is running on a given cpu, that cpu will be throttled to
  135. the minimal possible frequency.
  136. endmenu
  137. config OPROFILE_CELL
  138. def_bool y
  139. depends on PPC_CELL_NATIVE && (OPROFILE = m || OPROFILE = y) && SPU_BASE