Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. config PPC_PS3
  2. bool "Sony PS3 (incomplete)"
  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. help
  11. This option enables support for the Sony PS3 game console
  12. and other platforms using the PS3 hypervisor.
  13. Support for this platform is not yet complete, so
  14. enabling this will not result in a bootable kernel on a
  15. PS3 system.
  16. menu "PS3 Platform Options"
  17. depends on PPC_PS3
  18. config PS3_ADVANCED
  19. depends on PPC_PS3
  20. bool "PS3 Advanced configuration options"
  21. help
  22. This gives you access to some advanced options for the PS3. The
  23. defaults should be fine for most users, but these options may make
  24. it possible to better control the kernel configuration if you know
  25. what you are doing.
  26. Note that the answer to this question won't directly affect the
  27. kernel: saying N will just cause the configurator to skip all
  28. the questions about these options.
  29. Most users should say N to this question.
  30. config PS3_HTAB_SIZE
  31. depends on PPC_PS3
  32. int "PS3 Platform pagetable size" if PS3_ADVANCED
  33. range 18 20
  34. default 20
  35. help
  36. This option is only for experts who may have the desire to fine
  37. tune the pagetable size on their system. The value here is
  38. expressed as the log2 of the page table size. Valid values are
  39. 18, 19, and 20, corresponding to 256KB, 512KB and 1MB respectively.
  40. If unsure, choose the default (20) with the confidence that your
  41. system will have optimal runtime performance.
  42. config PS3_DYNAMIC_DMA
  43. depends on PPC_PS3 && EXPERIMENTAL
  44. bool "PS3 Platform dynamic DMA page table management"
  45. default n
  46. help
  47. This option will enable kernel support to take advantage of the
  48. per device dynamic DMA page table management provided by the Cell
  49. processor's IO Controller. This support incurs some runtime
  50. overhead and also slightly increases kernel memory usage. The
  51. current implementation should be considered experimental.
  52. This support is mainly for Linux kernel development. If unsure,
  53. say N.
  54. config PS3_USE_LPAR_ADDR
  55. depends on PPC_PS3 && EXPERIMENTAL
  56. bool "PS3 use lpar address space"
  57. default y
  58. help
  59. This option is solely for experimentation by experts. Disables
  60. translation of lpar addresses. SPE support currently won't work
  61. without this set to y.
  62. If you have any doubt, choose the default y.
  63. config PS3_VUART
  64. depends on PPC_PS3
  65. bool "PS3 Virtual UART support" if PS3_ADVANCED
  66. default y
  67. help
  68. Include support for the PS3 Virtual UART.
  69. This support is required for several system services
  70. including the System Manager and AV Settings. In
  71. general, all users will say Y.
  72. config PS3_PS3AV
  73. tristate "PS3 AV settings driver" if PS3_ADVANCED
  74. depends on PS3_VUART
  75. default y
  76. help
  77. Include support for the PS3 AV Settings driver.
  78. This support is required for graphics and sound. In
  79. general, all users will say Y or M.
  80. config PS3_SYS_MANAGER
  81. bool "PS3 System Manager driver" if PS3_ADVANCED
  82. depends on PS3_VUART
  83. default y
  84. help
  85. Include support for the PS3 System Manager.
  86. This support is required for system control. In
  87. general, all users will say Y.
  88. endmenu