Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions drivers/gpu/drm/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,8 @@ source "drivers/gpu/drm/phytium/Kconfig"

source "drivers/gpu/drm/arise/Kconfig"

source "drivers/gpu/drm/inspur/Kconfig"

config DRM_HYPERV
tristate "DRM Support for Hyper-V synthetic video device"
depends on DRM && PCI && MMU && HYPERV
Expand Down
1 change: 1 addition & 0 deletions drivers/gpu/drm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -202,3 +202,4 @@ obj-y += loongson/
obj-$(CONFIG_DRM_PHYTIUM) += phytium/
obj-$(CONFIG_DRM_CIX) += cix/
obj-$(CONFIG_DRM_ARISE) += arise/
obj-$(CONFIG_DRM_INSPUR) += inspur/
5 changes: 5 additions & 0 deletions drivers/gpu/drm/inspur/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# License: GPL-2.0
#
# inspur drm device configuration.

source "drivers/gpu/drm/inspur/inspur-drm/Kconfig"
4 changes: 4 additions & 0 deletions drivers/gpu/drm/inspur/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#
# Makefile for inspur drm drivers.

obj-$(CONFIG_DRM_INSPUR) += inspur-drm/
8 changes: 8 additions & 0 deletions drivers/gpu/drm/inspur/inspur-drm/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
config DRM_INSPUR
tristate "DRM Support for Inspur BMC"
depends on DRM && PCI && MMU
select DRM_KMS_HELPER
select DRM_VRAM_HELPER
help
Choose this option if you have a Inspur soc chipset.If M is selected the
module will be called inspur - drm.
3 changes: 3 additions & 0 deletions drivers/gpu/drm/inspur/inspur-drm/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
inspur-drm-y := inspur_drm_drv.o inspur_drm_de.o inspur_drm_vdac.o inspur_ttm.o

obj-$(CONFIG_DRM_INSPUR) += inspur-drm.o
Loading
Loading