Commit aa2446ef authored by Jacopo Mondi's avatar Jacopo Mondi Committed by Mauro Carvalho Chehab

media: rcar-vin: Add support for R-Car R8A77995 SoC

Add R-Car R8A77995 SoC to the rcar-vin supported ones.
Signed-off-by: default avatarJacopo Mondi <jacopo+renesas@jmondi.org>
Reviewed-by: default avatarNiklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 5cda0fca
...@@ -1089,6 +1089,18 @@ static const struct rvin_info rcar_info_r8a77970 = { ...@@ -1089,6 +1089,18 @@ static const struct rvin_info rcar_info_r8a77970 = {
.routes = rcar_info_r8a77970_routes, .routes = rcar_info_r8a77970_routes,
}; };
static const struct rvin_group_route rcar_info_r8a77995_routes[] = {
{ /* Sentinel */ }
};
static const struct rvin_info rcar_info_r8a77995 = {
.model = RCAR_GEN3,
.use_mc = true,
.max_width = 4096,
.max_height = 4096,
.routes = rcar_info_r8a77995_routes,
};
static const struct of_device_id rvin_of_id_table[] = { static const struct of_device_id rvin_of_id_table[] = {
{ {
.compatible = "renesas,vin-r8a7778", .compatible = "renesas,vin-r8a7778",
...@@ -1134,6 +1146,10 @@ static const struct of_device_id rvin_of_id_table[] = { ...@@ -1134,6 +1146,10 @@ static const struct of_device_id rvin_of_id_table[] = {
.compatible = "renesas,vin-r8a77970", .compatible = "renesas,vin-r8a77970",
.data = &rcar_info_r8a77970, .data = &rcar_info_r8a77970,
}, },
{
.compatible = "renesas,vin-r8a77995",
.data = &rcar_info_r8a77995,
},
{ /* Sentinel */ }, { /* Sentinel */ },
}; };
MODULE_DEVICE_TABLE(of, rvin_of_id_table); MODULE_DEVICE_TABLE(of, rvin_of_id_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