Kconfig 4.2 KB

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