Kconfig 5.1 KB

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