Skip to content

Commit

Permalink
drm: rcar-du: Add HDMI outputs to R8A7796 device description
Browse files Browse the repository at this point in the history
Update the device description with the HDMI output.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
  • Loading branch information
Laurent Pinchart committed Aug 3, 2017
1 parent 6608874 commit 776c5d0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions drivers/gpu/drm/rcar-du/rcar_du_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,19 +186,24 @@ static const struct rcar_du_device_info rcar_du_r8a7796_info = {
.num_crtcs = 3,
.routes = {
/*
* R8A7796 has one RGB output, one LVDS output and one
* (currently unsupported) HDMI output.
* R8A7796 has one RGB output, one LVDS output and one HDMI
* output.
*/
[RCAR_DU_OUTPUT_DPAD0] = {
.possible_crtcs = BIT(2),
.port = 0,
},
[RCAR_DU_OUTPUT_HDMI0] = {
.possible_crtcs = BIT(1),
.port = 1,
},
[RCAR_DU_OUTPUT_LVDS0] = {
.possible_crtcs = BIT(0),
.port = 2,
},
},
.num_lvds = 1,
.dpll_ch = BIT(1),
};

static const struct of_device_id rcar_du_of_table[] = {
Expand Down

0 comments on commit 776c5d0

Please sign in to comment.