-
Notifications
You must be signed in to change notification settings - Fork 19.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -454,6 +454,37 @@ endef | |
|
||
$(eval $(call KernelPackage,drm-imx-ldb)) | ||
|
||
define KernelPackage/drm-lima | ||
SUBMENU:=$(VIDEO_MENU) | ||
TITLE:=DRM support for ARM Mali 400/450 GPU | ||
DEPENDS:=@(TARGET_rockchip||TARGET_sunxi) +kmod-drm-sched | ||
KCONFIG:=CONFIG_DRM_LIMA | ||
FILES:=$(LINUX_DIR)/drivers/gpu/drm/lima/lima.ko | ||
AUTOLOAD:=$(call AutoProbe,lima) | ||
endef | ||
|
||
define KernelPackage/drm-lima/description | ||
DRM driver for ARM Mali 400/450 GPUs | ||
endef | ||
|
||
$(eval $(call KernelPackage,drm-lima)) | ||
|
||
define KernelPackage/drm-panfrost | ||
SUBMENU:=$(VIDEO_MENU) | ||
TITLE:=DRM support for ARM Mali Midgard/Bifrost GPUs | ||
DEPENDS:=@(TARGET_rockchip||TARGET_sunxi) +kmod-drm-sched | ||
KCONFIG:=CONFIG_DRM_PANFROST | ||
FILES:=$(LINUX_DIR)/drivers/gpu/drm/panfrost/panfrost.ko | ||
AUTOLOAD:=$(call AutoProbe,panfrost) | ||
endef | ||
|
||
define KernelPackage/drm-panfrost/description | ||
DRM driver for ARM Mali Midgard (T6xx, T7xx, T8xx) and | ||
Bifrost (G3x, G5x, G7x) GPUs | ||
endef | ||
|
||
$(eval $(call KernelPackage,drm-panfrost)) | ||
|
||
define KernelPackage/drm-radeon | ||
SUBMENU:=$(VIDEO_MENU) | ||
TITLE:=Radeon DRM support | ||
|
@@ -470,6 +501,20 @@ endef | |
|
||
$(eval $(call KernelPackage,drm-radeon)) | ||
|
||
define KernelPackage/drm-sched | ||
SUBMENU:=$(VIDEO_MENU) | ||
TITLE:=DRM helper for ARM GPUs | ||
DEPENDS:=+kmod-drm | ||
HIDDEN:=1 | ||
KCONFIG:=CONFIG_DRM_SCHED | ||
FILES:= \ | ||
$(LINUX_DIR)/drivers/gpu/drm/[email protected] \ | ||
$(LINUX_DIR)/drivers/gpu/drm/scheduler/gpu-sched.ko | ||
AUTOLOAD:=$(call AutoProbe,gpu-sched) | ||
endef | ||
|
||
$(eval $(call KernelPackage,drm-sched)) | ||
|
||
define KernelPackage/drm-nouveau | ||
SUBMENU:=$(VIDEO_MENU) | ||
TITLE:=nouveau DRM support | ||
|