Commit 776c5d00 authored by Laurent Pinchart's avatar Laurent Pinchart

drm: rcar-du: Add HDMI outputs to R8A7796 device description

Update the device description with the HDMI output.
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Reviewed-by: default avatarKieran Bingham <kieran.bingham+renesas@ideasonboard.com>
parent 66088749
...@@ -186,19 +186,24 @@ static const struct rcar_du_device_info rcar_du_r8a7796_info = { ...@@ -186,19 +186,24 @@ static const struct rcar_du_device_info rcar_du_r8a7796_info = {
.num_crtcs = 3, .num_crtcs = 3,
.routes = { .routes = {
/* /*
* R8A7796 has one RGB output, one LVDS output and one * R8A7796 has one RGB output, one LVDS output and one HDMI
* (currently unsupported) HDMI output. * output.
*/ */
[RCAR_DU_OUTPUT_DPAD0] = { [RCAR_DU_OUTPUT_DPAD0] = {
.possible_crtcs = BIT(2), .possible_crtcs = BIT(2),
.port = 0, .port = 0,
}, },
[RCAR_DU_OUTPUT_HDMI0] = {
.possible_crtcs = BIT(1),
.port = 1,
},
[RCAR_DU_OUTPUT_LVDS0] = { [RCAR_DU_OUTPUT_LVDS0] = {
.possible_crtcs = BIT(0), .possible_crtcs = BIT(0),
.port = 2, .port = 2,
}, },
}, },
.num_lvds = 1, .num_lvds = 1,
.dpll_ch = BIT(1),
}; };
static const struct of_device_id rcar_du_of_table[] = { static const struct of_device_id rcar_du_of_table[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment