Kconfig 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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_USE_LPAR_ADDR
  56. depends on PPC_PS3 && EXPERIMENTAL
  57. bool "PS3 use lpar address space"
  58. default y
  59. help
  60. This option is solely for experimentation by experts. Disables
  61. translation of lpar addresses. SPE support currently won't work
  62. without this set to y.
  63. If you have any doubt, choose the default y.
  64. config PS3_VUART
  65. depends on PPC_PS3
  66. tristate
  67. config PS3_PS3AV
  68. depends on PPC_PS3
  69. tristate "PS3 AV settings driver" if PS3_ADVANCED
  70. select PS3_VUART
  71. default y
  72. help
  73. Include support for the PS3 AV Settings driver.
  74. This support is required for graphics and sound. In
  75. general, all users will say Y or M.
  76. config PS3_SYS_MANAGER
  77. depends on PPC_PS3
  78. tristate "PS3 System Manager driver" if PS3_ADVANCED
  79. select PS3_VUART
  80. default m
  81. help
  82. Include support for the PS3 System Manager.
  83. This support is required for system control. In
  84. general, all users will say Y or M.
  85. config PS3_STORAGE
  86. depends on PPC_PS3
  87. tristate
  88. config PS3_DISK
  89. tristate "PS3 Disk Storage Driver"
  90. depends on PPC_PS3 && BLOCK
  91. select PS3_STORAGE
  92. help
  93. Include support for the PS3 Disk Storage.
  94. This support is required to access the PS3 hard disk.
  95. In general, all users will say Y or M.
  96. config PS3_ROM
  97. tristate "PS3 BD/DVD/CD-ROM Storage Driver"
  98. depends on PPC_PS3 && SCSI
  99. select PS3_STORAGE
  100. help
  101. Include support for the PS3 ROM Storage.
  102. This support is required to access the PS3 BD/DVD/CD-ROM drive.
  103. In general, all users will say Y or M.
  104. Also make sure to say Y or M to "SCSI CDROM support" later.
  105. config PS3_FLASH
  106. tristate "PS3 FLASH ROM Storage Driver"
  107. depends on PPC_PS3
  108. select PS3_STORAGE
  109. help
  110. Include support for the PS3 FLASH ROM Storage.
  111. This support is required to access the PS3 FLASH ROM, which
  112. contains the boot loader and some boot options.
  113. In general, all users will say Y or M.
  114. As this driver needs a fixed buffer of 256 KiB of memory, it can
  115. be disabled on the kernel command line using "ps3flash=off", to
  116. not allocate this fixed buffer.
  117. endmenu