-
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.
drm: Add Allwinner A10 Display Engine support
The Allwinner A10 and subsequent SoCs share the same display pipeline, with variations in the number of controllers (1 or 2), or the presence or not of some output (HDMI, TV, VGA) or not. Add a driver with a limited set of features for now, and we will hopefully support all of them eventually Reviewed-by: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
- Loading branch information
Maxime Ripard
committed
Apr 28, 2016
1 parent
21a454f
commit 9026e0d
Showing
18 changed files
with
2,202 additions
and
1 deletion.
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,14 @@ | ||
config DRM_SUN4I | ||
tristate "DRM Support for Allwinner A10 Display Engine" | ||
depends on DRM && ARM | ||
depends on ARCH_SUNXI || COMPILE_TEST | ||
select DRM_GEM_CMA_HELPER | ||
select DRM_KMS_HELPER | ||
select DRM_KMS_CMA_HELPER | ||
select DRM_PANEL | ||
select REGMAP_MMIO | ||
select VIDEOMODE_HELPERS | ||
help | ||
Choose this option if you have an Allwinner SoC with a | ||
Display Engine. If M is selected the module will be called | ||
sun4i-drm. |
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,10 @@ | ||
sun4i-drm-y += sun4i_crtc.o | ||
sun4i-drm-y += sun4i_drv.o | ||
sun4i-drm-y += sun4i_framebuffer.o | ||
sun4i-drm-y += sun4i_layer.o | ||
|
||
sun4i-tcon-y += sun4i_tcon.o | ||
sun4i-tcon-y += sun4i_dotclock.o | ||
|
||
obj-$(CONFIG_DRM_SUN4I) += sun4i-drm.o sun4i-tcon.o | ||
obj-$(CONFIG_DRM_SUN4I) += sun4i_backend.o |
Oops, something went wrong.