lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <593ea165-c3d0-e247-b6fc-d9266673858b@quicinc.com>
Date: Thu, 24 Oct 2024 11:20:10 +0530
From: Dikshita Agarwal <quic_dikshita@...cinc.com>
To: Hans Verkuil <hverkuil@...all.nl>,
        Vikash Garodia
	<quic_vgarodia@...cinc.com>,
        Abhinav Kumar <quic_abhinavk@...cinc.com>,
        "Mauro Carvalho Chehab" <mchehab@...nel.org>,
        Rob Herring <robh@...nel.org>,
        Krzysztof Kozlowski <krzk+dt@...nel.org>,
        Conor Dooley <conor+dt@...nel.org>,
        Philipp Zabel <p.zabel@...gutronix.de>
CC: Sebastian Fricke <sebastian.fricke@...labora.com>,
        <linux-arm-msm@...r.kernel.org>, <linux-media@...r.kernel.org>,
        <devicetree@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
        Vedang Nagar
	<quic_vnagar@...cinc.com>
Subject: Re: [PATCH v4 15/28] media: iris: implement query_cap, query_ctrl and
 query_menu ioctls



On 10/23/2024 4:35 PM, Hans Verkuil wrote:
> On 14/10/2024 11:07, Dikshita Agarwal wrote:
>> From: Vedang Nagar <quic_vnagar@...cinc.com>
>>
>> Implement query_cap, query_ctrl and query_menu ioctls
>> with necessary hooks.
>>
>> Signed-off-by: Vedang Nagar <quic_vnagar@...cinc.com>
>> Signed-off-by: Dikshita Agarwal <quic_dikshita@...cinc.com>
>> ---
>>  drivers/media/platform/qcom/iris/iris_vidc.c | 52 ++++++++++++++++++++++++++++
>>  1 file changed, 52 insertions(+)
>>
>> diff --git a/drivers/media/platform/qcom/iris/iris_vidc.c b/drivers/media/platform/qcom/iris/iris_vidc.c
>> index 93d2be118a81..60ee05b67f86 100644
>> --- a/drivers/media/platform/qcom/iris/iris_vidc.c
>> +++ b/drivers/media/platform/qcom/iris/iris_vidc.c
>> @@ -300,6 +300,55 @@ static int iris_enum_framesizes(struct file *filp, void *fh,
>>  	return 0;
>>  }
>>  
>> +static int iris_querycap(struct file *filp, void *fh, struct v4l2_capability *cap)
>> +{
>> +	strscpy(cap->driver, IRIS_DRV_NAME, sizeof(cap->driver));
>> +	strscpy(cap->bus_info, IRIS_BUS_NAME, sizeof(cap->bus_info));
> 
> Filled in automatically, just drop this.
Sure, will do.
> 
>> +	memset(cap->reserved, 0, sizeof(cap->reserved));
> 
> The core zeroes this already, just drop this.
> 
Sure, will do.
>> +	strscpy(cap->card, "iris_decoder", sizeof(cap->card));
>> +
>> +	return 0;
>> +}
>> +
>> +static int iris_queryctrl(struct file *filp, void *fh, struct v4l2_queryctrl *q_ctrl)
>> +{
>> +	struct v4l2_ctrl *ctrl;
>> +	struct iris_inst *inst = iris_get_inst(filp, NULL);
>> +
>> +	ctrl = v4l2_ctrl_find(&inst->ctrl_handler, q_ctrl->id);
>> +	if (!ctrl)
>> +		return -EINVAL;
>> +
>> +	q_ctrl->minimum = ctrl->minimum;
>> +	q_ctrl->maximum = ctrl->maximum;
>> +	q_ctrl->default_value = ctrl->default_value;
>> +	q_ctrl->flags = 0;
>> +	q_ctrl->step = ctrl->step;
>> +
>> +	return 0;
>> +}
> 
> Huh???
> 
>> +
>> +static int iris_querymenu(struct file *filp, void *fh, struct v4l2_querymenu *qmenu)
>> +{
>> +	struct iris_inst *inst = iris_get_inst(filp, NULL);
>> +	struct v4l2_ctrl *ctrl;
>> +
>> +	ctrl = v4l2_ctrl_find(&inst->ctrl_handler, qmenu->id);
>> +	if (!ctrl)
>> +		return -EINVAL;
>> +
>> +	if (ctrl->type != V4L2_CTRL_TYPE_MENU)
>> +		return -EINVAL;
>> +
>> +	if (qmenu->index < ctrl->minimum || qmenu->index > ctrl->maximum)
>> +		return -EINVAL;
>> +
>> +	if (ctrl->menu_skip_mask & (1 << qmenu->index))
>> +		return -EINVAL;
>> +
>> +	return 0;
>> +}
> 
> Huh??
> 
>> +
>>  static int iris_g_selection(struct file *filp, void *fh, struct v4l2_selection *s)
>>  {
>>  	struct iris_inst *inst = iris_get_inst(filp, NULL);
>> @@ -366,6 +415,9 @@ static const struct v4l2_ioctl_ops iris_v4l2_ioctl_ops = {
>>  	.vidioc_g_fmt_vid_out_mplane    = iris_g_fmt_vid_mplane,
>>  	.vidioc_enum_framesizes         = iris_enum_framesizes,
>>  	.vidioc_reqbufs                 = v4l2_m2m_ioctl_reqbufs,
>> +	.vidioc_querycap                = iris_querycap,
>> +	.vidioc_queryctrl               = iris_queryctrl,
>> +	.vidioc_querymenu               = iris_querymenu,
> 
> queryctrl/menu are handled by the core if you set ctrl_handler in the v4l2_fh struct.
> 
> If you use the control handler, then this should never be used.Right, make sense, will remove these.

Thanks,
Dikshita
> 
>>  	.vidioc_g_selection             = iris_g_selection,
>>  	.vidioc_subscribe_event         = iris_subscribe_event,
>>  	.vidioc_unsubscribe_event       = iris_unsubscribe_event,
>>
> 
> Regards,
> 
> 	Hans

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ