File tree Expand file tree Collapse file tree 8 files changed +1087
-0
lines changed Expand file tree Collapse file tree 8 files changed +1087
-0
lines changed Original file line number Diff line number Diff line change @@ -140,4 +140,6 @@ source "drivers/staging/silicom/Kconfig"
140
140
141
141
source "drivers/staging/ced1401/Kconfig"
142
142
143
+ source "drivers/staging/imx-drm/Kconfig"
144
+
143
145
endif # STAGING
Original file line number Diff line number Diff line change @@ -62,3 +62,4 @@ obj-$(CONFIG_OMAP_BANDGAP) += omap-thermal/
62
62
obj-$(CONFIG_ZCACHE2) += ramster/
63
63
obj-$(CONFIG_NET_VENDOR_SILICOM) += silicom/
64
64
obj-$(CONFIG_CED1401) += ced1401/
65
+ obj-$(CONFIG_DRM_IMX) += imx-drm/
Original file line number Diff line number Diff line change
1
+ config DRM_IMX
2
+ tristate "DRM Support for Freescale i.MX"
3
+ select DRM_KMS_HELPER
4
+ select DRM_GEM_CMA_HELPER
5
+ select DRM_KMS_CMA_HELPER
6
+ depends on DRM && ARCH_MXC
7
+ help
8
+ enable i.MX graphics support
9
+
10
+ config DRM_IMX_FB_HELPER
11
+ tristate "provide legacy framebuffer /dev/fb0"
12
+ select DRM_KMS_CMA_HELPER
13
+ depends on DRM_IMX
14
+ help
15
+ The DRM framework can provide a legacy /dev/fb0 framebuffer
16
+ for your device. This is necessary to get a framebuffer console
17
+ and also for appplications using the legacy framebuffer API
Original file line number Diff line number Diff line change
1
+
2
+ imxdrm-objs := imx-drm-core.o imx-fb.o
3
+
4
+ obj-$(CONFIG_DRM_IMX) += imxdrm.o
5
+
6
+ obj-$(CONFIG_DRM_IMX_FB_HELPER) += imx-fbdev.o
You can’t perform that action at this time.
0 commit comments