All of lore.kernel.org
 help / color / mirror / Atom feed
From: "André Apitzsch" <git@apitzsch.eu>
To: Ricardo Ribalda <ribalda@kernel.org>,
	Sakari Ailus <sakari.ailus@linux.intel.com>,
	Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org,
	~postmarketos/upstreaming@lists.sr.ht,
	"André Apitzsch" <git@apitzsch.eu>
Subject: [PATCH 3/4] media: i2c: imx214: Read orientation and rotation from system firmware
Date: Mon, 23 Oct 2023 23:47:52 +0200	[thread overview]
Message-ID: <20231023-imx214-v1-3-b33f1bbd1fcf@apitzsch.eu> (raw)
In-Reply-To: <20231023-imx214-v1-0-b33f1bbd1fcf@apitzsch.eu>

Obtain rotation and orientation information from system firmware and
register the appropriate controls.

Signed-off-by: André Apitzsch <git@apitzsch.eu>
---
 drivers/media/i2c/imx214.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/media/i2c/imx214.c b/drivers/media/i2c/imx214.c
index 554fc4733128..bef8dc36e2d0 100644
--- a/drivers/media/i2c/imx214.c
+++ b/drivers/media/i2c/imx214.c
@@ -704,9 +704,14 @@ static int imx214_ctrls_init(struct imx214 *imx214)
 		.width = 1120,
 		.height = 1120,
 	};
+	struct v4l2_fwnode_device_properties props;
 	struct v4l2_ctrl_handler *ctrl_hdlr;
 	int ret;
 
+	ret = v4l2_fwnode_device_parse(imx214->dev, &props);
+	if (ret < 0)
+		return ret;
+
 	ctrl_hdlr = &imx214->ctrls;
 	ret = v4l2_ctrl_handler_init(&imx214->ctrls, 3);
 	if (ret)
@@ -746,6 +751,8 @@ static int imx214_ctrls_init(struct imx214 *imx214)
 				V4L2_CID_UNIT_CELL_SIZE,
 				v4l2_ctrl_ptr_create((void *)&unit_size));
 
+	v4l2_ctrl_new_fwnode_properties(ctrl_hdlr, &imx214_ctrl_ops, &props);
+
 	ret = ctrl_hdlr->error;
 	if (ret) {
 		v4l2_ctrl_handler_free(ctrl_hdlr);

-- 
2.42.0


  parent reply	other threads:[~2023-10-23 21:49 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-23 21:47 [PATCH 0/4] media: i2c: imx214: Extend with sensor size and firmware information André Apitzsch
2023-10-23 21:47 ` [PATCH 1/4] media: i2c: imx214: Explain some magic numbers André Apitzsch
2023-10-23 22:44   ` Kieran Bingham
2023-10-24  7:30     ` André Apitzsch
2023-10-24 12:52       ` Kieran Bingham
2023-10-25 21:40         ` André Apitzsch
2023-10-27 12:19   ` Ricardo Ribalda Delgado
2023-10-23 21:47 ` [PATCH 2/4] media: i2c: imx214: Move controls init to separate function André Apitzsch
2023-10-24  7:22   ` Jacopo Mondi
2023-10-25 19:43     ` André Apitzsch
2023-10-27 12:25   ` Ricardo Ribalda Delgado
2023-10-27 21:23     ` André Apitzsch
2023-10-28  6:44       ` Ricardo Ribalda Delgado
2023-10-23 21:47 ` André Apitzsch [this message]
2023-10-24  7:25   ` [PATCH 3/4] media: i2c: imx214: Read orientation and rotation from system firmware Jacopo Mondi
2023-10-23 21:47 ` [PATCH 4/4] media: i2c: imx214: Add sensor's pixel matrix size André Apitzsch
2023-10-24  7:52   ` Jacopo Mondi
2023-10-25 21:26     ` André Apitzsch
2023-10-27  8:57       ` Jacopo Mondi
2023-10-27 10:29         ` Dave Stevenson
2023-10-27 11:12           ` 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=20231023-imx214-v1-3-b33f1bbd1fcf@apitzsch.eu \
    --to=git@apitzsch.eu \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=ribalda@kernel.org \
    --cc=sakari.ailus@linux.intel.com \
    --cc=~postmarketos/upstreaming@lists.sr.ht \
    /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.