Kconfig 1004 B

1234567891011121314151617181920212223242526272829303132333435
  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. config DRM_AMDGPU_CIK
  8. bool "Enable amdgpu support for CIK parts"
  9. depends on DRM_AMDGPU
  10. help
  11. Choose this option if you want to enable experimental support
  12. for CIK asics.
  13. CIK is already supported in radeon. CIK support in amdgpu
  14. is for experimentation and testing.
  15. config DRM_AMDGPU_USERPTR
  16. bool "Always enable userptr write support"
  17. depends on DRM_AMDGPU
  18. select MMU_NOTIFIER
  19. help
  20. This option selects CONFIG_MMU_NOTIFIER if it isn't already
  21. selected to enabled full userptr support.
  22. config DRM_AMDGPU_GART_DEBUGFS
  23. bool "Allow GART access through debugfs"
  24. depends on DRM_AMDGPU
  25. depends on DEBUG_FS
  26. default n
  27. help
  28. Selecting this option creates a debugfs file to inspect the mapped
  29. pages. Uses more memory for housekeeping, enable only for debugging.
  30. source "drivers/gpu/drm/amd/acp/Kconfig"