Hi Niklas,

Thank you for the patch.

On Friday, 8 December 2017 03:08:34 EET Niklas Söderlund wrote:
> When running in media controller mode a media pad is needed, register
> one. Also set the media bus format to CSI-2.

This sounds a bit unclear to me. We don't need a pad for the sake of it, what 
we need to do is to initialize the entity of the device device. I'd rephrase 
the commit message accordingly.

> Signed-off-by: Niklas Söderlund <niklas.soderlund+rene...@ragnatech.se>
> Reviewed-by: Hans Verkuil <hans.verk...@cisco.com>
> ---
>  drivers/media/platform/rcar-vin/rcar-core.c | 24 ++++++++++++++++++++++--
>  drivers/media/platform/rcar-vin/rcar-vin.h  |  4 ++++
>  2 files changed, 26 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/media/platform/rcar-vin/rcar-core.c
> b/drivers/media/platform/rcar-vin/rcar-core.c index
> 61f48ecc1ab815ec..45de4079fd835759 100644
> --- a/drivers/media/platform/rcar-vin/rcar-core.c
> +++ b/drivers/media/platform/rcar-vin/rcar-core.c
> @@ -46,6 +46,10 @@ static int rvin_find_pad(struct v4l2_subdev *sd, int
> direction) return -EINVAL;
>  }
> 
> +/* ------------------------------------------------------------------------
> + * Digital async notifier
> + */
> +
>  static int rvin_digital_notify_complete(struct v4l2_async_notifier
> *notifier) {
>       struct rvin_dev *vin = notifier_to_vin(notifier);
> @@ -226,6 +230,20 @@ static int rvin_digital_graph_init(struct rvin_dev
> *vin) return 0;
>  }
> 
> +/* ------------------------------------------------------------------------
> + * Group async notifier

The function below isn't related to async notifiers. This might change in 
latter patches, but I'd make the section name consistent with the 
implementation here, and change it later if needed.

> + */
> +
> +static int rvin_group_init(struct rvin_dev *vin)
> +{
> +     /* All our sources are CSI-2 */
> +     vin->mbus_cfg.type = V4L2_MBUS_CSI2;
> +     vin->mbus_cfg.flags = 0;
> +
> +     vin->pad.flags = MEDIA_PAD_FL_SINK;
> +     return media_entity_pads_init(&vin->vdev.entity, 1, &vin->pad);
> +}
> +
>  /* ------------------------------------------------------------------------
>   * Platform Device Driver
>   */
> @@ -314,8 +332,10 @@ static int rcar_vin_probe(struct platform_device *pdev)
> return ret;
> 
>       platform_set_drvdata(pdev, vin);
> -
> -     ret = rvin_digital_graph_init(vin);
> +     if (vin->info->use_mc)
> +             ret = rvin_group_init(vin);
> +     else
> +             ret = rvin_digital_graph_init(vin);
>       if (ret < 0)
>               goto error;
> 
> diff --git a/drivers/media/platform/rcar-vin/rcar-vin.h
> b/drivers/media/platform/rcar-vin/rcar-vin.h index
> fd3cd781be0ab1cf..07d270a976893cdb 100644
> --- a/drivers/media/platform/rcar-vin/rcar-vin.h
> +++ b/drivers/media/platform/rcar-vin/rcar-vin.h
> @@ -103,6 +103,8 @@ struct rvin_info {
>   * @notifier:                V4L2 asynchronous subdevs notifier
>   * @digital:         entity in the DT for local digital subdevice
>   *
> + * @pad:             pad for media controller

I'd rephrase this too based on the comment I made regarding the commit 
message.

>   * @lock:            protects @queue
>   * @queue:           vb2 buffers queue
>   *
> @@ -132,6 +134,8 @@ struct rvin_dev {
>       struct v4l2_async_notifier notifier;
>       struct rvin_graph_entity *digital;
> 
> +     struct media_pad pad;
> +
>       struct mutex lock;
>       struct vb2_queue queue;

-- 
Regards,

Laurent Pinchart

Reply via email to