Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. menu "PS3 Platform Options"
  2. depends on PPC_PS3
  3. config PS3_HTAB_SIZE
  4. depends on PPC_PS3
  5. int "PS3 Platform pagetable size"
  6. range 18 20
  7. default 20
  8. help
  9. This option is only for experts who may have the desire to fine
  10. tune the pagetable size on their system. The value here is
  11. expressed as the log2 of the page table size. Valid values are
  12. 18, 19, and 20, corresponding to 256KB, 512KB and 1MB respectively.
  13. If unsure, choose the default (20) with the confidence that your
  14. system will have optimal runtime performance.
  15. config PS3_DYNAMIC_DMA
  16. depends on PPC_PS3 && EXPERIMENTAL
  17. bool "PS3 Platform dynamic DMA page table management"
  18. default n
  19. help
  20. This option will enable kernel support to take advantage of the
  21. per device dynamic DMA page table management provided by the Cell
  22. processor's IO Controller. This support incurs some runtime
  23. overhead and also slightly increases kernel memory usage. The
  24. current implementation should be considered experimental.
  25. This support is mainly for Linux kernel development. If unsure,
  26. say N.
  27. config PS3_USE_LPAR_ADDR
  28. depends on PPC_PS3 && EXPERIMENTAL
  29. bool "PS3 use lpar address space"
  30. default y
  31. help
  32. This option is solely for experimentation by experts. Disables
  33. translation of lpar addresses. SPE support currently won't work
  34. without this set to y.
  35. If you have any doubt, choose the default y.
  36. config PS3_VUART
  37. depends on PPC_PS3
  38. bool "PS3 Virtual UART support"
  39. default y
  40. help
  41. Include support for the PS3 Virtual UART.
  42. This support is required for several system services
  43. including the System Manager and AV Settings. In
  44. general, all users will say Y.
  45. endmenu