-
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: Renesas R-Car Display Unit DRM driver
The R-Car Display Unit (DU) DRM driver supports both superposition processors and all eight planes in RGB and YUV formats with alpha blending. Only VGA and LVDS encoders and connectors are currently supported. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
- Loading branch information
Laurent Pinchart
authored and
Dave Airlie
committed
Jun 27, 2013
1 parent
0ab3691
commit 4bf8e19
Showing
18 changed files
with
2,846 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,9 @@ | ||
config DRM_RCAR_DU | ||
tristate "DRM Support for R-Car Display Unit" | ||
depends on DRM && ARM | ||
select DRM_KMS_HELPER | ||
select DRM_KMS_CMA_HELPER | ||
select DRM_GEM_CMA_HELPER | ||
help | ||
Choose this option if you have an R-Car chipset. | ||
If M is selected the module will be called rcar-du-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,8 @@ | ||
rcar-du-drm-y := rcar_du_crtc.o \ | ||
rcar_du_drv.o \ | ||
rcar_du_kms.o \ | ||
rcar_du_lvds.o \ | ||
rcar_du_plane.o \ | ||
rcar_du_vga.o | ||
|
||
obj-$(CONFIG_DRM_RCAR_DU) += rcar-du-drm.o |
Oops, something went wrong.