32 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Compute Acceleration device configuration4#5# This framework provides support for compute acceleration devices, such6# as, but not limited to, Machine-Learning and Deep-Learning acceleration7# devices8#9if DRM10 11menuconfig DRM_ACCEL12 bool "Compute Acceleration Framework"13 help14 Framework for device drivers of compute acceleration devices, such15 as, but not limited to, Machine-Learning and Deep-Learning16 acceleration devices.17 If you say Y here, you need to select the module that's right for18 your acceleration device from the list below.19 This framework is integrated with the DRM subsystem as compute20 accelerators and GPUs share a lot in common and can use almost the21 same infrastructure code.22 Having said that, acceleration devices will have a different23 major number than GPUs, and will be exposed to user-space using24 different device files, called accel/accel* (in /dev, sysfs25 and debugfs).26 27source "drivers/accel/habanalabs/Kconfig"28source "drivers/accel/ivpu/Kconfig"29source "drivers/accel/qaic/Kconfig"30 31endif32