Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. config DRM_AMDGPU_SI
  2. bool "Enable amdgpu support for SI parts"
  3. depends on DRM_AMDGPU
  4. help
  5. Choose this option if you want to enable experimental support
  6. for SI asics.
  7. SI is already supported in radeon. Experimental support for SI
  8. in amdgpu will be disabled by default and is still provided by
  9. radeon. Use module options to override this:
  10. radeon.si_support=0 amdgpu.si_support=1
  11. config DRM_AMDGPU_CIK
  12. bool "Enable amdgpu support for CIK parts"
  13. depends on DRM_AMDGPU
  14. help
  15. Choose this option if you want to enable support for CIK asics.
  16. CIK is already supported in radeon. Support for CIK in amdgpu
  17. will be disabled by default and is still provided by radeon.
  18. Use module options to override this:
  19. radeon.cik_support=0 amdgpu.cik_support=1
  20. config DRM_AMDGPU_USERPTR
  21. bool "Always enable userptr write support"
  22. depends on DRM_AMDGPU
  23. select MMU_NOTIFIER
  24. help
  25. This option selects CONFIG_MMU_NOTIFIER if it isn't already
  26. selected to enabled full userptr support.
  27. config DRM_AMDGPU_GART_DEBUGFS
  28. bool "Allow GART access through debugfs"
  29. depends on DRM_AMDGPU
  30. depends on DEBUG_FS
  31. default n
  32. help
  33. Selecting this option creates a debugfs file to inspect the mapped
  34. pages. Uses more memory for housekeeping, enable only for debugging.
  35. source "drivers/gpu/drm/amd/acp/Kconfig"
  36. source "drivers/gpu/drm/amd/display/Kconfig"