Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Compute Acceleration device configuration
  4. #
  5. # This framework provides support for compute acceleration devices, such
  6. # as, but not limited to, Machine-Learning and Deep-Learning acceleration
  7. # devices
  8. #
  9. if DRM
  10. menuconfig DRM_ACCEL
  11. bool "Compute Acceleration Framework"
  12. help
  13. Framework for device drivers of compute acceleration devices, such
  14. as, but not limited to, Machine-Learning and Deep-Learning
  15. acceleration devices.
  16. If you say Y here, you need to select the module that's right for
  17. your acceleration device from the list below.
  18. This framework is integrated with the DRM subsystem as compute
  19. accelerators and GPUs share a lot in common and can use almost the
  20. same infrastructure code.
  21. Having said that, acceleration devices will have a different
  22. major number than GPUs, and will be exposed to user-space using
  23. different device files, called accel/accel* (in /dev, sysfs
  24. and debugfs).
  25. source "drivers/accel/habanalabs/Kconfig"
  26. source "drivers/accel/ivpu/Kconfig"
  27. source "drivers/accel/qaic/Kconfig"
  28. endif