Kconfig 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. config PPC_PS3
  2. bool "Sony PS3"
  3. depends on PPC64 && PPC_BOOK3S
  4. select PPC_CELL
  5. select USB_ARCH_HAS_OHCI
  6. select USB_OHCI_LITTLE_ENDIAN
  7. select USB_OHCI_BIG_ENDIAN_MMIO
  8. select USB_ARCH_HAS_EHCI
  9. select USB_EHCI_BIG_ENDIAN_MMIO
  10. select MEMORY_HOTPLUG
  11. select PPC_PCI_CHOICE
  12. help
  13. This option enables support for the Sony PS3 game console
  14. and other platforms using the PS3 hypervisor. Enabling this
  15. option will allow building otheros.bld, a kernel image suitable
  16. for programming into flash memory, and vmlinux, a kernel image
  17. suitable for loading via kexec.
  18. menu "PS3 Platform Options"
  19. depends on PPC_PS3
  20. config PS3_ADVANCED
  21. depends on PPC_PS3
  22. bool "PS3 Advanced configuration options"
  23. help
  24. This gives you access to some advanced options for the PS3. The
  25. defaults should be fine for most users, but these options may make
  26. it possible to better control the kernel configuration if you know
  27. what you are doing.
  28. Note that the answer to this question won't directly affect the
  29. kernel: saying N will just cause the configurator to skip all
  30. the questions about these options.
  31. Most users should say N to this question.
  32. config PS3_HTAB_SIZE
  33. depends on PPC_PS3
  34. int "PS3 Platform pagetable size" if PS3_ADVANCED
  35. range 18 20
  36. default 20
  37. help
  38. This option is only for experts who may have the desire to fine
  39. tune the pagetable size on their system. The value here is
  40. expressed as the log2 of the page table size. Valid values are
  41. 18, 19, and 20, corresponding to 256KB, 512KB and 1MB respectively.
  42. If unsure, choose the default (20) with the confidence that your
  43. system will have optimal runtime performance.
  44. config PS3_DYNAMIC_DMA
  45. depends on PPC_PS3 && EXPERIMENTAL
  46. bool "PS3 Platform dynamic DMA page table management"
  47. default n
  48. help
  49. This option will enable kernel support to take advantage of the
  50. per device dynamic DMA page table management provided by the Cell
  51. processor's IO Controller. This support incurs some runtime
  52. overhead and also slightly increases kernel memory usage. The
  53. current implementation should be considered experimental.
  54. This support is mainly for Linux kernel development. If unsure,
  55. say N.
  56. config PS3_VUART
  57. depends on PPC_PS3
  58. tristate
  59. config PS3_PS3AV
  60. depends on PPC_PS3
  61. tristate "PS3 AV settings driver" if PS3_ADVANCED
  62. select PS3_VUART
  63. default y
  64. help
  65. Include support for the PS3 AV Settings driver.
  66. This support is required for graphics and sound. In
  67. general, all users will say Y or M.
  68. config PS3_SYS_MANAGER
  69. depends on PPC_PS3
  70. tristate "PS3 System Manager driver" if PS3_ADVANCED
  71. select PS3_VUART
  72. default y
  73. help
  74. Include support for the PS3 System Manager.
  75. This support is required for system control. In
  76. general, all users will say Y or M.
  77. config PS3_STORAGE
  78. depends on PPC_PS3
  79. tristate
  80. config PS3_DISK
  81. tristate "PS3 Disk Storage Driver"
  82. depends on PPC_PS3 && BLOCK
  83. select PS3_STORAGE
  84. help
  85. Include support for the PS3 Disk Storage.
  86. This support is required to access the PS3 hard disk.
  87. In general, all users will say Y or M.
  88. config PS3_ROM
  89. tristate "PS3 BD/DVD/CD-ROM Storage Driver"
  90. depends on PPC_PS3 && SCSI
  91. select PS3_STORAGE
  92. help
  93. Include support for the PS3 ROM Storage.
  94. This support is required to access the PS3 BD/DVD/CD-ROM drive.
  95. In general, all users will say Y or M.
  96. Also make sure to say Y or M to "SCSI CDROM support" later.
  97. config PS3_FLASH
  98. tristate "PS3 FLASH ROM Storage Driver"
  99. depends on PPC_PS3
  100. select PS3_STORAGE
  101. help
  102. Include support for the PS3 FLASH ROM Storage.
  103. This support is required to access the PS3 FLASH ROM, which
  104. contains the boot loader and some boot options.
  105. In general, all users will say Y or M.
  106. As this driver needs a fixed buffer of 256 KiB of memory, it can
  107. be disabled on the kernel command line using "ps3flash=off", to
  108. not allocate this fixed buffer.
  109. config PS3_VRAM
  110. tristate "PS3 Video RAM Storage Driver"
  111. depends on FB_PS3=y && BLOCK && m
  112. help
  113. This driver allows you to use excess PS3 video RAM as volatile
  114. storage or system swap.
  115. config PS3_LPM
  116. tristate "PS3 Logical Performance Monitor support"
  117. depends on PPC_PS3
  118. help
  119. Include support for the PS3 Logical Performance Monitor.
  120. This support is required to use the logical performance monitor
  121. of the PS3's LV1 hypervisor.
  122. If you intend to use the advanced performance monitoring and
  123. profiling support of the Cell processor with programs like
  124. oprofile and perfmon2, then say Y or M, otherwise say N.
  125. config PS3GELIC_UDBG
  126. bool "PS3 udbg output via UDP broadcasts on Ethernet"
  127. depends on PPC_PS3
  128. help
  129. Enables udbg early debugging output by sending broadcast UDP
  130. via the Ethernet port (UDP port number 18194).
  131. This driver uses a trivial implementation and is independent
  132. from the main network driver.
  133. If in doubt, say N here.
  134. endmenu