All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jacopo Mondi <jacopo+renesas@jmondi.org>
To: niklas.soderlund@ragnatech.se, laurent.pinchart@ideasonboard.com
Cc: Jacopo Mondi <jacopo+renesas@jmondi.org>,
	mchehab@kernel.org, linux-media@vger.kernel.org,
	linux-renesas-soc@vger.kernel.org
Subject: [PATCH v6 10/10] media: rcar-vin: Add support for R-Car R8A77995 SoC
Date: Tue, 12 Jun 2018 11:43:32 +0200	[thread overview]
Message-ID: <1528796612-7387-11-git-send-email-jacopo+renesas@jmondi.org> (raw)
In-Reply-To: <1528796612-7387-1-git-send-email-jacopo+renesas@jmondi.org>

Add R-Car R8A77995 SoC to the rcar-vin supported ones.

Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org>
Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 drivers/media/platform/rcar-vin/rcar-core.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/drivers/media/platform/rcar-vin/rcar-core.c b/drivers/media/platform/rcar-vin/rcar-core.c
index a2d166f..bd99d56 100644
--- a/drivers/media/platform/rcar-vin/rcar-core.c
+++ b/drivers/media/platform/rcar-vin/rcar-core.c
@@ -1045,6 +1045,18 @@ static const struct rvin_info rcar_info_r8a77970 = {
 	.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[] = {
 	{
 		.compatible = "renesas,vin-r8a7778",
@@ -1086,6 +1098,10 @@ static const struct of_device_id rvin_of_id_table[] = {
 		.compatible = "renesas,vin-r8a77970",
 		.data = &rcar_info_r8a77970,
 	},
+	{
+		.compatible = "renesas,vin-r8a77995",
+		.data = &rcar_info_r8a77995,
+	},
 	{ /* Sentinel */ },
 };
 MODULE_DEVICE_TABLE(of, rvin_of_id_table);
-- 
2.7.4

  parent reply	other threads:[~2018-06-12  9:43 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-12  9:43 [PATCH v6 0/10] rcar-vin: Add support for parallel input on Gen3 Jacopo Mondi
2018-06-12  9:43 ` [PATCH v6 01/10] media: rcar-vin: Rename 'digital' to 'parallel' Jacopo Mondi
2018-06-12  9:43 ` [PATCH v6 02/10] media: rcar-vin: Remove two empty lines Jacopo Mondi
2018-06-12  9:43 ` [PATCH v6 03/10] media: rcar-vin: Create a group notifier Jacopo Mondi
2018-07-02 18:07   ` Niklas Söderlund
2018-07-02 18:07     ` Niklas Söderlund
2018-06-12  9:43 ` [PATCH v6 04/10] media: rcar-vin: Cleanup notifier in error path Jacopo Mondi
2018-06-12  9:43 ` [PATCH v6 05/10] media: rcar-vin: Cache the mbus configuration flags Jacopo Mondi
2018-06-12  9:43 ` [PATCH v6 06/10] media: rcar-vin: Parse parallel input on Gen3 Jacopo Mondi
2018-07-02 18:08   ` Niklas Söderlund
2018-07-02 18:08     ` Niklas Söderlund
2018-06-12  9:43 ` [PATCH v6 07/10] media: rcar-vin: Link parallel input media entities Jacopo Mondi
2018-06-12  9:43 ` [PATCH v6 08/10] media: rcar-vin: Handle parallel subdev in link_notify Jacopo Mondi
2018-06-12  9:43 ` [PATCH v6 09/10] media: rcar-vin: Rename _rcar_info to rcar_info Jacopo Mondi
2018-06-12  9:43 ` Jacopo Mondi [this message]
2018-07-04  7:36   ` [PATCH v6 10/10] media: rcar-vin: Add support for R-Car R8A77995 SoC Hans Verkuil
2018-07-04  7:49     ` jacopo mondi
2018-07-04  8:00       ` Geert Uytterhoeven
2018-07-04  8:08         ` jacopo mondi
2018-07-04  8:15           ` Hans Verkuil
2018-07-04  8:35             ` jacopo mondi
2018-07-02 18:11 ` [PATCH v6 0/10] rcar-vin: Add support for parallel input on Gen3 Niklas Söderlund
2018-07-02 18:11   ` Niklas Söderlund
2018-07-03 18:02   ` jacopo mondi
2018-07-04  6:08     ` Niklas Söderlund
2018-07-04  6:08       ` Niklas Söderlund
2018-07-17 13:00     ` Hans Verkuil
2018-07-17 13:07       ` jacopo mondi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1528796612-7387-11-git-send-email-jacopo+renesas@jmondi.org \
    --to=jacopo+renesas@jmondi.org \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=niklas.soderlund@ragnatech.se \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.