From: Mikhail Rudenko <mike.rudenko@gmail.com>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org,
Sakari Ailus <sakari.ailus@linux.intel.com>,
Jacopo Mondi <jacopo@jmondi.org>,
Tommaso Merciai <tomm.merciai@gmail.com>,
Christophe JAILLET <christophe.jaillet@wanadoo.fr>,
Dave Stevenson <dave.stevenson@raspberrypi.com>,
Mauro Carvalho Chehab <mchehab@kernel.org>
Subject: Re: [PATCH v3 19/20] media: i2c: ov4689: Refactor ov4689_s_stream
Date: Tue, 05 Mar 2024 00:48:14 +0300 [thread overview]
Message-ID: <87wmqhfz0f.fsf@gmail.com> (raw)
In-Reply-To: <20240304213103.GA3239@pendragon.ideasonboard.com>
Hi Laurent,
and thanks for the review.
On 2024-03-04 at 23:31 +02, Laurent Pinchart <laurent.pinchart@ideasonboard.com> wrote:
> Hi Mikhail,
>
> Thank you for the patch.
>
> On Thu, Feb 29, 2024 at 07:53:32PM +0300, Mikhail Rudenko wrote:
>> Split ov4689_s_stream into __ov4689_stream_on and __ov4689_stream_off
>> functions. Also remove repetitive pm_runtime_put calls and call
>> pm_runtime_put once at the end of the __ov4689_stream_off function if
>> any error occurred.
>>
>> Signed-off-by: Mikhail Rudenko <mike.rudenko@gmail.com>
>> ---
>> drivers/media/i2c/ov4689.c | 100 ++++++++++++++++++++-----------------
>> 1 file changed, 53 insertions(+), 47 deletions(-)
>>
>> diff --git a/drivers/media/i2c/ov4689.c b/drivers/media/i2c/ov4689.c
>> index 2496067b90a0..5cea9b5ba201 100644
>> --- a/drivers/media/i2c/ov4689.c
>> +++ b/drivers/media/i2c/ov4689.c
>> @@ -537,61 +537,67 @@ static int ov4689_setup_blc_anchors(struct ov4689 *ov4689,
>> return ret;
>> }
>>
>> +static int __ov4689_stream_on(struct ov4689 *ov4689,
>
> No need for the __ prefix. Same for __ov4689_stream_off().
Will remove the prefix in v4.
>> + struct v4l2_subdev_state *sd_state)
>> +{
>> + int ret;
>> +
>> + ret = pm_runtime_resume_and_get(ov4689->dev);
>> + if (ret < 0)
>> + return ret;
>> +
>> + ret = cci_multi_reg_write(ov4689->regmap, ov4689_common_regs,
>> + ARRAY_SIZE(ov4689_common_regs), NULL);
>> + if (ret)
>> + goto cleanup_pm;
>> +
>> + ret = ov4689_setup_timings(ov4689, sd_state);
>> + if (ret)
>> + goto cleanup_pm;
>> +
>> + ret = ov4689_setup_blc_anchors(ov4689, sd_state);
>> + if (ret)
>> + goto cleanup_pm;
>> +
>> + ret = __v4l2_ctrl_handler_setup(&ov4689->ctrl_handler);
>> + if (ret)
>> + goto cleanup_pm;
>> +
>> + ret = cci_write(ov4689->regmap, OV4689_REG_CTRL_MODE,
>> + OV4689_MODE_STREAMING, NULL);
>> + if (ret)
>> + goto cleanup_pm;
>> +
>> + return 0;
>> +
>> + cleanup_pm:
>
> No space before the label. I would also name it just "error".
Thanks for the suggestion, will do so in v4.
> With those small changes,
>
> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
>
>> + pm_runtime_put(ov4689->dev);
>> + return ret;
>> +}
>> +
>> +static int __ov4689_stream_off(struct ov4689 *ov4689)
>> +{
>> + cci_write(ov4689->regmap, OV4689_REG_CTRL_MODE, OV4689_MODE_SW_STANDBY,
>> + NULL);
>> + pm_runtime_mark_last_busy(ov4689->dev);
>> + pm_runtime_put_autosuspend(ov4689->dev);
>> +
>> + return 0;
>> +}
>> +
>> static int ov4689_s_stream(struct v4l2_subdev *sd, int on)
>> {
>> struct ov4689 *ov4689 = to_ov4689(sd);
>> struct v4l2_subdev_state *sd_state;
>> - struct device *dev = ov4689->dev;
>> - int ret = 0;
>> + int ret;
>>
>> sd_state = v4l2_subdev_lock_and_get_active_state(&ov4689->subdev);
>>
>> - if (on) {
>> - ret = pm_runtime_resume_and_get(dev);
>> - if (ret < 0)
>> - goto unlock_and_return;
>> -
>> - ret = cci_multi_reg_write(ov4689->regmap,
>> - ov4689_common_regs,
>> - ARRAY_SIZE(ov4689_common_regs),
>> - NULL);
>> - if (ret) {
>> - pm_runtime_put(dev);
>> - goto unlock_and_return;
>> - }
>> -
>> - ret = ov4689_setup_timings(ov4689, sd_state);
>> - if (ret) {
>> - pm_runtime_put(dev);
>> - goto unlock_and_return;
>> - }
>> -
>> - ret = ov4689_setup_blc_anchors(ov4689, sd_state);
>> - if (ret) {
>> - pm_runtime_put(dev);
>> - goto unlock_and_return;
>> - }
>> -
>> - ret = __v4l2_ctrl_handler_setup(&ov4689->ctrl_handler);
>> - if (ret) {
>> - pm_runtime_put(dev);
>> - goto unlock_and_return;
>> - }
>> -
>> - ret = cci_write(ov4689->regmap, OV4689_REG_CTRL_MODE,
>> - OV4689_MODE_STREAMING, NULL);
>> - if (ret) {
>> - pm_runtime_put(dev);
>> - goto unlock_and_return;
>> - }
>> - } else {
>> - cci_write(ov4689->regmap, OV4689_REG_CTRL_MODE,
>> - OV4689_MODE_SW_STANDBY, NULL);
>> - pm_runtime_mark_last_busy(dev);
>> - pm_runtime_put_autosuspend(dev);
>> - }
>> + if (on)
>> + ret = __ov4689_stream_on(ov4689, sd_state);
>> + else
>> + ret = __ov4689_stream_off(ov4689);
>>
>> -unlock_and_return:
>> v4l2_subdev_unlock_state(sd_state);
>>
>> return ret;
--
Best regards,
Mikhail Rudenko
next prev parent reply other threads:[~2024-03-04 21:49 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-29 16:53 [PATCH v3 00/20] Omnivision OV4689 refactoring and improvements Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 01/20] media: i2c: ov4689: Clean up and annotate the register table Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 02/20] media: i2c: ov4689: Sort register definitions by address Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 03/20] media: i2c: ov4689: Fix typo in a comment Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 04/20] media: i2c: ov4689: CCI conversion Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 05/20] media: i2c: ov4689: Remove i2c_client from ov4689 struct Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 06/20] media: i2c: ov4689: Refactor ov4689_set_ctrl Mikhail Rudenko
2024-03-04 16:49 ` Kieran Bingham
2024-03-04 20:17 ` Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 07/20] media: i2c: ov4689: Use sub-device active state Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 08/20] media: i2c: ov4689: Enable runtime PM before registering sub-device Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 09/20] media: i2c: ov4689: Use runtime PM autosuspend Mikhail Rudenko
2024-03-04 20:45 ` Laurent Pinchart
2024-02-29 16:53 ` [PATCH v3 10/20] media: i2c: ov4689: Remove max_fps field from struct ov4689_mode Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 11/20] media: i2c: ov4689: Make horizontal blanking configurable Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 12/20] media: i2c: ov4689: Implement vflip/hflip controls Mikhail Rudenko
2024-03-04 16:54 ` Kieran Bingham
2024-03-04 20:19 ` Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 13/20] media: i2c: ov4689: Implement digital gain control Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 14/20] media: i2c: ov4689: Implement manual color balance controls Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 15/20] media: i2c: ov4689: Move pixel array size out of struct ov4689_mode Mikhail Rudenko
2024-03-04 17:01 ` Kieran Bingham
2024-02-29 16:53 ` [PATCH v3 16/20] media: i2c: ov4689: Set timing registers programmatically Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 17/20] media: i2c: ov4689: Configurable analogue crop Mikhail Rudenko
2024-03-05 14:27 ` Kieran Bingham
2024-03-05 14:35 ` Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 18/20] media: i2c: ov4689: Eliminate struct ov4689_mode Mikhail Rudenko
2024-02-29 16:53 ` [PATCH v3 19/20] media: i2c: ov4689: Refactor ov4689_s_stream Mikhail Rudenko
2024-03-04 21:31 ` Laurent Pinchart
2024-03-04 21:48 ` Mikhail Rudenko [this message]
2024-02-29 16:53 ` [PATCH v3 20/20] media: i2c: ov4689: Implement 2x2 binning Mikhail Rudenko
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=87wmqhfz0f.fsf@gmail.com \
--to=mike.rudenko@gmail.com \
--cc=christophe.jaillet@wanadoo.fr \
--cc=dave.stevenson@raspberrypi.com \
--cc=jacopo@jmondi.org \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=sakari.ailus@linux.intel.com \
--cc=tomm.merciai@gmail.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).