Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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_PIO
  9. select PPC_INDIRECT_MMIO
  10. select PPC_NATIVE
  11. select PPC_RTAS
  12. select IRQ_EDGE_EOI_HANDLER
  13. config PPC_CELL_NATIVE
  14. bool
  15. select PPC_CELL_COMMON
  16. select MPIC
  17. select PPC_IO_WORKAROUNDS
  18. select IBM_EMAC_EMAC4
  19. select IBM_EMAC_RGMII
  20. select IBM_EMAC_ZMII #test only
  21. select IBM_EMAC_TAH #test only
  22. default n
  23. config PPC_IBM_CELL_BLADE
  24. bool "IBM Cell Blade"
  25. depends on PPC64 && PPC_BOOK3S
  26. select PPC_CELL_NATIVE
  27. select PPC_OF_PLATFORM_PCI
  28. select PCI
  29. select MMIO_NVRAM
  30. select PPC_UDBG_16550
  31. select UDBG_RTAS_CONSOLE
  32. config PPC_CELL_QPACE
  33. bool "IBM Cell - QPACE"
  34. depends on PPC64 && PPC_BOOK3S
  35. select PPC_CELL_COMMON
  36. config AXON_MSI
  37. bool
  38. depends on PPC_IBM_CELL_BLADE && PCI_MSI
  39. default y
  40. menu "Cell Broadband Engine options"
  41. depends on PPC_CELL
  42. config SPU_FS
  43. tristate "SPU file system"
  44. default m
  45. depends on PPC_CELL
  46. select SPU_BASE
  47. select MEMORY_HOTPLUG
  48. help
  49. The SPU file system is used to access Synergistic Processing
  50. Units on machines implementing the Broadband Processor
  51. Architecture.
  52. config SPU_FS_64K_LS
  53. bool "Use 64K pages to map SPE local store"
  54. # we depend on PPC_MM_SLICES for now rather than selecting
  55. # it because we depend on hugetlbfs hooks being present. We
  56. # will fix that when the generic code has been improved to
  57. # not require hijacking hugetlbfs hooks.
  58. depends on SPU_FS && PPC_MM_SLICES && !PPC_64K_PAGES
  59. default y
  60. select PPC_HAS_HASH_64K
  61. help
  62. This option causes SPE local stores to be mapped in process
  63. address spaces using 64K pages while the rest of the kernel
  64. uses 4K pages. This can improve performances of applications
  65. using multiple SPEs by lowering the TLB pressure on them.
  66. config SPU_BASE
  67. bool
  68. default n
  69. select PPC_COPRO_BASE
  70. config CBE_RAS
  71. bool "RAS features for bare metal Cell BE"
  72. depends on PPC_CELL_NATIVE
  73. default y
  74. config PPC_IBM_CELL_RESETBUTTON
  75. bool "IBM Cell Blade Pinhole reset button"
  76. depends on CBE_RAS && PPC_IBM_CELL_BLADE
  77. default y
  78. help
  79. Support Pinhole Resetbutton on IBM Cell blades.
  80. This adds a method to trigger system reset via front panel pinhole button.
  81. config PPC_IBM_CELL_POWERBUTTON
  82. tristate "IBM Cell Blade power button"
  83. depends on PPC_IBM_CELL_BLADE && INPUT_EVDEV
  84. default y
  85. help
  86. Support Powerbutton on IBM Cell blades.
  87. This will enable the powerbutton as an input device.
  88. config CBE_THERM
  89. tristate "CBE thermal support"
  90. default m
  91. depends on CBE_RAS && SPU_BASE
  92. config PPC_PMI
  93. tristate
  94. default y
  95. depends on CPU_FREQ_CBE_PMI || PPC_IBM_CELL_POWERBUTTON
  96. help
  97. PMI (Platform Management Interrupt) is a way to
  98. communicate with the BMC (Baseboard Management Controller).
  99. It is used in some IBM Cell blades.
  100. config CBE_CPUFREQ_SPU_GOVERNOR
  101. tristate "CBE frequency scaling based on SPU usage"
  102. depends on SPU_FS && CPU_FREQ
  103. default m
  104. help
  105. This governor checks for spu usage to adjust the cpu frequency.
  106. If no spu is running on a given cpu, that cpu will be throttled to
  107. the minimal possible frequency.
  108. endmenu
  109. config OPROFILE_CELL
  110. def_bool y
  111. depends on PPC_CELL_NATIVE && (OPROFILE = m || OPROFILE = y) && SPU_BASE