forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
staging: drm/imx: Add i.MX drm core support
This patch adds the i.MX glue stuff between i.MX and drm. Signed-off-by: Sascha Hauer <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
- Loading branch information
1 parent
f34170c
commit e692da4
Showing
8 changed files
with
1,087 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
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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
config DRM_IMX | ||
tristate "DRM Support for Freescale i.MX" | ||
select DRM_KMS_HELPER | ||
select DRM_GEM_CMA_HELPER | ||
select DRM_KMS_CMA_HELPER | ||
depends on DRM && ARCH_MXC | ||
help | ||
enable i.MX graphics support | ||
|
||
config DRM_IMX_FB_HELPER | ||
tristate "provide legacy framebuffer /dev/fb0" | ||
select DRM_KMS_CMA_HELPER | ||
depends on DRM_IMX | ||
help | ||
The DRM framework can provide a legacy /dev/fb0 framebuffer | ||
for your device. This is necessary to get a framebuffer console | ||
and also for appplications using the legacy framebuffer API |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
imxdrm-objs := imx-drm-core.o imx-fb.o | ||
|
||
obj-$(CONFIG_DRM_IMX) += imxdrm.o | ||
|
||
obj-$(CONFIG_DRM_IMX_FB_HELPER) += imx-fbdev.o |
Oops, something went wrong.