diff mbox

[RFC,1/2,media] v4l2: add V4L2_INPUT_TYPE_DEFAULT

Message ID 1490889738-30009-1-git-send-email-helen.koike@collabora.com (mailing list archive)
State New, archived
Headers show

Commit Message

Helen Koike March 30, 2017, 4:02 p.m. UTC
Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
used when no inputs are available in the device

Signed-off-by: Helen Koike <helen.koike@collabora.com>
---
 drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
 include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
 include/uapi/linux/videodev2.h       |  1 +
 3 files changed, 54 insertions(+)

Comments

Laurent Pinchart March 30, 2017, 7:56 p.m. UTC | #1
Hi Helen,

Thank you for the patch.

On Thursday 30 Mar 2017 13:02:17 Helen Koike wrote:
> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
> used when no inputs are available in the device
> 
> Signed-off-by: Helen Koike <helen.koike@collabora.com>
> ---
>  drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
>  include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
>  include/uapi/linux/videodev2.h       |  1 +
>  3 files changed, 54 insertions(+)
> 
> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
> b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct video_device
> *vdev, unsigned cmd) return vdev->lock;
>  }
> 
> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> +				  struct v4l2_input *i)
> +{
> +	if (i->index > 0)
> +		return -EINVAL;
> +
> +	memset(i, 0, sizeof(*i));
> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
> +	strlcpy(i->name, "Default", sizeof(i->name));
> +
> +	return 0;
> +}
> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);

V4L2 tends to use EXPORT_SYMBOL_GPL.

What would you think about calling those default functions directly from the 
core when the input ioctl handlers are not set ? You wouldn't need to modify 
drivers.

> +
> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int
> *i) +{
> +	*i = 0;
> +	return 0;
> +}
> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
> +
> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int
> i) +{
> +	return i ? -EINVAL : 0;
> +}
> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
> +
>  /* Common ioctl debug function. This function can be used by
>     external ioctl messages as well as internal V4L ioctl */
>  void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
> index 6cd94e5..accc470 100644
> --- a/include/media/v4l2-ioctl.h
> +++ b/include/media/v4l2-ioctl.h
> @@ -652,6 +652,32 @@ struct video_device;
>   */
>  struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned int
> cmd);
> 
> +
> +/**
> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for VIDIOC_ENUM_INPUT
> ioctl + *
> + * Plug this function in vidioc_enum_input field of the struct
> v4l2_ioctl_ops to + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
> + */
> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> +				  struct v4l2_input *i);
> +
> +/**
> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT ioctl
> + *
> + * Plug this function in vidioc_g_input field of the struct v4l2_ioctl_ops
> + * when using v4l2_ioctl_enum_input_default
> + */
> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int
> *i); +
> +/**
> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT ioctl
> + *
> + * Plug this function in vidioc_s_input field of the struct v4l2_ioctl_ops
> + * when using v4l2_ioctl_enum_input_default
> + */
> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int
> i); +
>  /* names for fancy debug output */
>  extern const char *v4l2_field_names[];
>  extern const char *v4l2_type_names[];
> diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h
> index 316be62..c10bbde 100644
> --- a/include/uapi/linux/videodev2.h
> +++ b/include/uapi/linux/videodev2.h
> @@ -1477,6 +1477,7 @@ struct v4l2_input {
>  };
> 
>  /*  Values for the 'type' field */
> +#define V4L2_INPUT_TYPE_DEFAULT		0
>  #define V4L2_INPUT_TYPE_TUNER		1
>  #define V4L2_INPUT_TYPE_CAMERA		2
>  #define V4L2_INPUT_TYPE_TOUCH		3
Helen Koike March 31, 2017, 2:39 a.m. UTC | #2
Hi Laurent,

Thanks for reviewing

On 2017-03-30 04:56 PM, Laurent Pinchart wrote:
> Hi Helen,
>
> Thank you for the patch.
>
> On Thursday 30 Mar 2017 13:02:17 Helen Koike wrote:
>> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
>> used when no inputs are available in the device
>>
>> Signed-off-by: Helen Koike <helen.koike@collabora.com>
>> ---
>>  drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
>>  include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
>>  include/uapi/linux/videodev2.h       |  1 +
>>  3 files changed, 54 insertions(+)
>>
>> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
>> b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
>> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
>> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
>> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct video_device
>> *vdev, unsigned cmd) return vdev->lock;
>>  }
>>
>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>> +				  struct v4l2_input *i)
>> +{
>> +	if (i->index > 0)
>> +		return -EINVAL;
>> +
>> +	memset(i, 0, sizeof(*i));
>> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
>> +	strlcpy(i->name, "Default", sizeof(i->name));
>> +
>> +	return 0;
>> +}
>> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
>
> V4L2 tends to use EXPORT_SYMBOL_GPL.

The whole v4l2-ioctl.c file is using EXPORT_SYMBOL instead of 
EXPORT_SYMBOL_GPL, should we change it all to EXPORT_SYMBOL_GPL then (in 
another patch) ?

>
> What would you think about calling those default functions directly from the
> core when the input ioctl handlers are not set ? You wouldn't need to modify
> drivers.

Sure, I'll add them in ops inside __video_register_device when it 
validates the ioctls

>
>> +
>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int
>> *i) +{
>> +	*i = 0;
>> +	return 0;
>> +}
>> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
>> +
>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int
>> i) +{
>> +	return i ? -EINVAL : 0;
>> +}
>> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
>> +
>>  /* Common ioctl debug function. This function can be used by
>>     external ioctl messages as well as internal V4L ioctl */
>>  void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
>> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
>> index 6cd94e5..accc470 100644
>> --- a/include/media/v4l2-ioctl.h
>> +++ b/include/media/v4l2-ioctl.h
>> @@ -652,6 +652,32 @@ struct video_device;
>>   */
>>  struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned int
>> cmd);
>>
>> +
>> +/**
>> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for VIDIOC_ENUM_INPUT
>> ioctl + *
>> + * Plug this function in vidioc_enum_input field of the struct
>> v4l2_ioctl_ops to + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
>> + */
>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>> +				  struct v4l2_input *i);
>> +
>> +/**
>> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT ioctl
>> + *
>> + * Plug this function in vidioc_g_input field of the struct v4l2_ioctl_ops
>> + * when using v4l2_ioctl_enum_input_default
>> + */
>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int
>> *i); +
>> +/**
>> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT ioctl
>> + *
>> + * Plug this function in vidioc_s_input field of the struct v4l2_ioctl_ops
>> + * when using v4l2_ioctl_enum_input_default
>> + */
>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int
>> i); +
>>  /* names for fancy debug output */
>>  extern const char *v4l2_field_names[];
>>  extern const char *v4l2_type_names[];
>> diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h
>> index 316be62..c10bbde 100644
>> --- a/include/uapi/linux/videodev2.h
>> +++ b/include/uapi/linux/videodev2.h
>> @@ -1477,6 +1477,7 @@ struct v4l2_input {
>>  };
>>
>>  /*  Values for the 'type' field */
>> +#define V4L2_INPUT_TYPE_DEFAULT		0
>>  #define V4L2_INPUT_TYPE_TUNER		1
>>  #define V4L2_INPUT_TYPE_CAMERA		2
>>  #define V4L2_INPUT_TYPE_TOUCH		3
>

Helen
Helen Koike March 31, 2017, 3:55 a.m. UTC | #3
On 2017-03-30 11:39 PM, Helen Koike wrote:
> Hi Laurent,
>
> Thanks for reviewing
>
> On 2017-03-30 04:56 PM, Laurent Pinchart wrote:
>> Hi Helen,
>>
>> Thank you for the patch.
>>
>> On Thursday 30 Mar 2017 13:02:17 Helen Koike wrote:
>>> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
>>> used when no inputs are available in the device
>>>
>>> Signed-off-by: Helen Koike <helen.koike@collabora.com>
>>> ---
>>>  drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
>>>  include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
>>>  include/uapi/linux/videodev2.h       |  1 +
>>>  3 files changed, 54 insertions(+)
>>>
>>> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
>>> b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
>>> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
>>> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
>>> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct
>>> video_device
>>> *vdev, unsigned cmd) return vdev->lock;
>>>  }
>>>
>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>> +                  struct v4l2_input *i)
>>> +{
>>> +    if (i->index > 0)
>>> +        return -EINVAL;
>>> +
>>> +    memset(i, 0, sizeof(*i));
>>> +    i->type = V4L2_INPUT_TYPE_DEFAULT;
>>> +    strlcpy(i->name, "Default", sizeof(i->name));
>>> +
>>> +    return 0;
>>> +}
>>> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
>>
>> V4L2 tends to use EXPORT_SYMBOL_GPL.
>
> The whole v4l2-ioctl.c file is using EXPORT_SYMBOL instead of
> EXPORT_SYMBOL_GPL, should we change it all to EXPORT_SYMBOL_GPL then (in
> another patch) ?
>
>>
>> What would you think about calling those default functions directly
>> from the
>> core when the input ioctl handlers are not set ? You wouldn't need to
>> modify
>> drivers.
>
> Sure, I'll add them in ops inside __video_register_device when it
> validates the ioctls

I just realize I can not simply override struct v4l2_ioctl_ops as it is 
declared as a const inside strut video_device. I'll call those default 
functions only when the ioctls are handled to not modify vdev->ops.

>
>>
>>> +
>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
>>> unsigned int
>>> *i) +{
>>> +    *i = 0;
>>> +    return 0;
>>> +}
>>> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
>>> +
>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
>>> unsigned int
>>> i) +{
>>> +    return i ? -EINVAL : 0;
>>> +}
>>> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
>>> +
>>>  /* Common ioctl debug function. This function can be used by
>>>     external ioctl messages as well as internal V4L ioctl */
>>>  void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
>>> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
>>> index 6cd94e5..accc470 100644
>>> --- a/include/media/v4l2-ioctl.h
>>> +++ b/include/media/v4l2-ioctl.h
>>> @@ -652,6 +652,32 @@ struct video_device;
>>>   */
>>>  struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev,
>>> unsigned int
>>> cmd);
>>>
>>> +
>>> +/**
>>> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for
>>> VIDIOC_ENUM_INPUT
>>> ioctl + *
>>> + * Plug this function in vidioc_enum_input field of the struct
>>> v4l2_ioctl_ops to + * enumerate a single input as
>>> V4L2_INPUT_TYPE_DEFAULT
>>> + */
>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>> +                  struct v4l2_input *i);
>>> +
>>> +/**
>>> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT
>>> ioctl
>>> + *
>>> + * Plug this function in vidioc_g_input field of the struct
>>> v4l2_ioctl_ops
>>> + * when using v4l2_ioctl_enum_input_default
>>> + */
>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
>>> unsigned int
>>> *i); +
>>> +/**
>>> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT
>>> ioctl
>>> + *
>>> + * Plug this function in vidioc_s_input field of the struct
>>> v4l2_ioctl_ops
>>> + * when using v4l2_ioctl_enum_input_default
>>> + */
>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
>>> unsigned int
>>> i); +
>>>  /* names for fancy debug output */
>>>  extern const char *v4l2_field_names[];
>>>  extern const char *v4l2_type_names[];
>>> diff --git a/include/uapi/linux/videodev2.h
>>> b/include/uapi/linux/videodev2.h
>>> index 316be62..c10bbde 100644
>>> --- a/include/uapi/linux/videodev2.h
>>> +++ b/include/uapi/linux/videodev2.h
>>> @@ -1477,6 +1477,7 @@ struct v4l2_input {
>>>  };
>>>
>>>  /*  Values for the 'type' field */
>>> +#define V4L2_INPUT_TYPE_DEFAULT        0
>>>  #define V4L2_INPUT_TYPE_TUNER        1
>>>  #define V4L2_INPUT_TYPE_CAMERA        2
>>>  #define V4L2_INPUT_TYPE_TOUCH        3
>>
>
> Helen

Helen
Hans Verkuil March 31, 2017, 8:29 a.m. UTC | #4
On 30/03/17 18:02, Helen Koike wrote:
> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
> used when no inputs are available in the device
> 
> Signed-off-by: Helen Koike <helen.koike@collabora.com>
> ---
>  drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
>  include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
>  include/uapi/linux/videodev2.h       |  1 +
>  3 files changed, 54 insertions(+)
> 
> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c b/drivers/media/v4l2-core/v4l2-ioctl.c
> index 0c3f238..ccaf04b 100644
> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned cmd)
>  	return vdev->lock;
>  }
>  
> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> +				  struct v4l2_input *i)
> +{
> +	if (i->index > 0)
> +		return -EINVAL;
> +
> +	memset(i, 0, sizeof(*i));
> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
> +	strlcpy(i->name, "Default", sizeof(i->name));
> +
> +	return 0;
> +}
> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
> +
> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i)
> +{
> +	*i = 0;
> +	return 0;
> +}
> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
> +
> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i)
> +{
> +	return i ? -EINVAL : 0;
> +}
> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
> +
>  /* Common ioctl debug function. This function can be used by
>     external ioctl messages as well as internal V4L ioctl */
>  void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
> index 6cd94e5..accc470 100644
> --- a/include/media/v4l2-ioctl.h
> +++ b/include/media/v4l2-ioctl.h
> @@ -652,6 +652,32 @@ struct video_device;
>   */
>  struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned int cmd);
>  
> +
> +/**
> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for VIDIOC_ENUM_INPUT ioctl
> + *
> + * Plug this function in vidioc_enum_input field of the struct v4l2_ioctl_ops to
> + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
> + */
> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> +				  struct v4l2_input *i);
> +
> +/**
> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT ioctl
> + *
> + * Plug this function in vidioc_g_input field of the struct v4l2_ioctl_ops
> + * when using v4l2_ioctl_enum_input_default
> + */
> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i);
> +
> +/**
> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT ioctl
> + *
> + * Plug this function in vidioc_s_input field of the struct v4l2_ioctl_ops
> + * when using v4l2_ioctl_enum_input_default
> + */
> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i);
> +
>  /* names for fancy debug output */
>  extern const char *v4l2_field_names[];
>  extern const char *v4l2_type_names[];
> diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h
> index 316be62..c10bbde 100644
> --- a/include/uapi/linux/videodev2.h
> +++ b/include/uapi/linux/videodev2.h
> @@ -1477,6 +1477,7 @@ struct v4l2_input {
>  };
>  
>  /*  Values for the 'type' field */
> +#define V4L2_INPUT_TYPE_DEFAULT		0

I don't think we should add a new type here. The whole point of this exercise is to
allow existing apps to work, and existing apps expect a TYPE_CAMERA.

BTW, don't read to much in the term 'CAMERA': it's really a catch all for any video
stream, whether it is from a sensor, composite input, HDMI, etc.

The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly out of date :-(

Rather than creating a new type I would add a new V4L2_IN_CAP_MC capability that
indicates that this input is controlled via the media controller. That makes much
more sense and it wouldn't potentially break applications.

Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC and use
V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible outdated name and the
spec is again out of date).

Regarding the name: should we use the name stored in struct video_device instead?
That might be more descriptive. Alternatively use something like "Media Controller Input".

More helpful (perhaps) than just "Default" or "Unknown".

I'll make a patch to update the input/output type description in the spec.

Regards,

	Hans

>  #define V4L2_INPUT_TYPE_TUNER		1
>  #define V4L2_INPUT_TYPE_CAMERA		2
>  #define V4L2_INPUT_TYPE_TOUCH		3
>
Laurent Pinchart March 31, 2017, 8:41 a.m. UTC | #5
Hi Hans,

On Friday 31 Mar 2017 10:29:04 Hans Verkuil wrote:
> On 30/03/17 18:02, Helen Koike wrote:
> > Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
> > used when no inputs are available in the device
> > 
> > Signed-off-by: Helen Koike <helen.koike@collabora.com>
> > ---
> > 
> >  drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
> >  include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
> >  include/uapi/linux/videodev2.h       |  1 +
> >  3 files changed, 54 insertions(+)
> > 
> > diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
> > b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
> > --- a/drivers/media/v4l2-core/v4l2-ioctl.c
> > +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
> > @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct
> > video_device *vdev, unsigned cmd)> 
> >  	return vdev->lock;
> >  
> >  }
> > 
> > +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> > +				  struct v4l2_input *i)
> > +{
> > +	if (i->index > 0)
> > +		return -EINVAL;
> > +
> > +	memset(i, 0, sizeof(*i));
> > +	i->type = V4L2_INPUT_TYPE_DEFAULT;
> > +	strlcpy(i->name, "Default", sizeof(i->name));
> > +
> > +	return 0;
> > +}
> > +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
> > +
> > +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned
> > int *i)
> > +{
> > +	*i = 0;
> > +	return 0;
> > +}
> > +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
> > +
> > +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned
> > int i)
> > +{
> > +	return i ? -EINVAL : 0;
> > +}
> > +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
> > +
> >  /* Common ioctl debug function. This function can be used by
> >     external ioctl messages as well as internal V4L ioctl */
> >  void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
> > diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
> > index 6cd94e5..accc470 100644
> > --- a/include/media/v4l2-ioctl.h
> > +++ b/include/media/v4l2-ioctl.h
> > @@ -652,6 +652,32 @@ struct video_device;
> >   */
> >  
> >  struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned int
> >  cmd);
> > +
> > +/**
> > + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for
> > VIDIOC_ENUM_INPUT ioctl + *
> > + * Plug this function in vidioc_enum_input field of the struct
> > v4l2_ioctl_ops to + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
> > + */
> > +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> > +				  struct v4l2_input *i);
> > +
> > +/**
> > + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT
> > ioctl
> > + *
> > + * Plug this function in vidioc_g_input field of the struct
> > v4l2_ioctl_ops
> > + * when using v4l2_ioctl_enum_input_default
> > + */
> > +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned
> > int *i); +
> > +/**
> > + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT
> > ioctl
> > + *
> > + * Plug this function in vidioc_s_input field of the struct
> > v4l2_ioctl_ops
> > + * when using v4l2_ioctl_enum_input_default
> > + */
> > +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned
> > int i); +
> > 
> >  /* names for fancy debug output */
> >  extern const char *v4l2_field_names[];
> >  extern const char *v4l2_type_names[];
> > 
> > diff --git a/include/uapi/linux/videodev2.h
> > b/include/uapi/linux/videodev2.h index 316be62..c10bbde 100644
> > --- a/include/uapi/linux/videodev2.h
> > +++ b/include/uapi/linux/videodev2.h
> > @@ -1477,6 +1477,7 @@ struct v4l2_input {
> > 
> >  };
> >  
> >  /*  Values for the 'type' field */
> > 
> > +#define V4L2_INPUT_TYPE_DEFAULT		0
> 
> I don't think we should add a new type here. The whole point of this
> exercise is to allow existing apps to work, and existing apps expect a
> TYPE_CAMERA.
> 
> BTW, don't read to much in the term 'CAMERA': it's really a catch all for
> any video stream, whether it is from a sensor, composite input, HDMI, etc.
> 
> The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly out of
> date :-(
> 
> Rather than creating a new type I would add a new V4L2_IN_CAP_MC capability
> that indicates that this input is controlled via the media controller. That
> makes much more sense and it wouldn't potentially break applications.
> 
> Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC and
> use V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible outdated
> name and the spec is again out of date).

What would those capabilities be used for ? Applications can already know 
whether the MC API is used by a driver. Furthermore, if we really need such a 
flag, I wouldn't add it at the input/output level but as a video node 
capability flag.

> Regarding the name: should we use the name stored in struct video_device
> instead? That might be more descriptive. Alternatively use something like
> "Media Controller Input".
> 
> More helpful (perhaps) than just "Default" or "Unknown".

If the purpose of the name field is to be displayed as-is to the end-user, 
then "Media Controller Input" is as useless as "Unknown". "Default" would be 
slightly better.

> I'll make a patch to update the input/output type description in the spec.
> 
> >  #define V4L2_INPUT_TYPE_TUNER		1
> >  #define V4L2_INPUT_TYPE_CAMERA		2
> >  #define V4L2_INPUT_TYPE_TOUCH		3
Laurent Pinchart March 31, 2017, 8:41 a.m. UTC | #6
Hi Helen,

On Thursday 30 Mar 2017 23:39:01 Helen Koike wrote:
> On 2017-03-30 04:56 PM, Laurent Pinchart wrote:
> > On Thursday 30 Mar 2017 13:02:17 Helen Koike wrote:
> >> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
> >> used when no inputs are available in the device
> >> 
> >> Signed-off-by: Helen Koike <helen.koike@collabora.com>
> >> ---
> >> 
> >>  drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
> >>  include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
> >>  include/uapi/linux/videodev2.h       |  1 +
> >>  3 files changed, 54 insertions(+)
> >> 
> >> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
> >> b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
> >> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
> >> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
> >> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct
> >> video_device *vdev, unsigned cmd) return vdev->lock;
> >> 
> >>  }
> >> 
> >> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> >> +				  struct v4l2_input *i)
> >> +{
> >> +	if (i->index > 0)
> >> +		return -EINVAL;
> >> +
> >> +	memset(i, 0, sizeof(*i));
> >> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
> >> +	strlcpy(i->name, "Default", sizeof(i->name));
> >> +
> >> +	return 0;
> >> +}
> >> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
> > 
> > V4L2 tends to use EXPORT_SYMBOL_GPL.
> 
> The whole v4l2-ioctl.c file is using EXPORT_SYMBOL instead of
> EXPORT_SYMBOL_GPL, should we change it all to EXPORT_SYMBOL_GPL then (in
> another patch) ?

You're right, let's leave it as-is then.

> > What would you think about calling those default functions directly from
> > the core when the input ioctl handlers are not set ? You wouldn't need to
> > modify drivers.
> 
> Sure, I'll add them in ops inside __video_register_device when it
> validates the ioctls
> 
> >> +
> >> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned
> >> int
> >> *i) +{
> >> +	*i = 0;
> >> +	return 0;
> >> +}
> >> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
> >> +
> >> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned
> >> int
> >> i) +{
> >> +	return i ? -EINVAL : 0;
> >> +}
> >> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
> >> +
> >> 
> >>  /* Common ioctl debug function. This function can be used by
> >>  
> >>     external ioctl messages as well as internal V4L ioctl */
> >>  
> >>  void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
> >> 
> >> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
> >> index 6cd94e5..accc470 100644
> >> --- a/include/media/v4l2-ioctl.h
> >> +++ b/include/media/v4l2-ioctl.h
> >> @@ -652,6 +652,32 @@ struct video_device;
> >> 
> >>   */
> >>  
> >>  struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned
> >>  int
> >> 
> >> cmd);
> >> 
> >> +
> >> +/**
> >> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for
> >> VIDIOC_ENUM_INPUT
> >> ioctl + *
> >> + * Plug this function in vidioc_enum_input field of the struct
> >> v4l2_ioctl_ops to + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
> >> + */
> >> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> >> +				  struct v4l2_input *i);
> >> +
> >> +/**
> >> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT
> >> ioctl
> >> + *
> >> + * Plug this function in vidioc_g_input field of the struct
> >> v4l2_ioctl_ops
> >> + * when using v4l2_ioctl_enum_input_default
> >> + */
> >> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned
> >> int
> >> *i); +
> >> +/**
> >> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT
> >> ioctl
> >> + *
> >> + * Plug this function in vidioc_s_input field of the struct
> >> v4l2_ioctl_ops
> >> + * when using v4l2_ioctl_enum_input_default
> >> + */
> >> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned
> >> int
> >> i); +
> >> 
> >>  /* names for fancy debug output */
> >>  extern const char *v4l2_field_names[];
> >>  extern const char *v4l2_type_names[];
> >> 
> >> diff --git a/include/uapi/linux/videodev2.h
> >> b/include/uapi/linux/videodev2.h index 316be62..c10bbde 100644
> >> --- a/include/uapi/linux/videodev2.h
> >> +++ b/include/uapi/linux/videodev2.h
> >> @@ -1477,6 +1477,7 @@ struct v4l2_input {
> >> 
> >>  };
> >>  
> >>  /*  Values for the 'type' field */
> >> 
> >> +#define V4L2_INPUT_TYPE_DEFAULT		0
> >> 
> >>  #define V4L2_INPUT_TYPE_TUNER		1
> >>  #define V4L2_INPUT_TYPE_CAMERA		2
> >>  #define V4L2_INPUT_TYPE_TOUCH		3
> 
> Helen
Hans Verkuil March 31, 2017, 9:08 a.m. UTC | #7
On 31/03/17 10:41, Laurent Pinchart wrote:
> Hi Hans,
> 
> On Friday 31 Mar 2017 10:29:04 Hans Verkuil wrote:
>> On 30/03/17 18:02, Helen Koike wrote:
>>> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
>>> used when no inputs are available in the device
>>>
>>> Signed-off-by: Helen Koike <helen.koike@collabora.com>
>>> ---
>>>
>>>  drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
>>>  include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
>>>  include/uapi/linux/videodev2.h       |  1 +
>>>  3 files changed, 54 insertions(+)
>>>
>>> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
>>> b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
>>> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
>>> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
>>> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct
>>> video_device *vdev, unsigned cmd)> 
>>>  	return vdev->lock;
>>>  
>>>  }
>>>
>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>> +				  struct v4l2_input *i)
>>> +{
>>> +	if (i->index > 0)
>>> +		return -EINVAL;
>>> +
>>> +	memset(i, 0, sizeof(*i));
>>> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
>>> +	strlcpy(i->name, "Default", sizeof(i->name));
>>> +
>>> +	return 0;
>>> +}
>>> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
>>> +
>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned
>>> int *i)
>>> +{
>>> +	*i = 0;
>>> +	return 0;
>>> +}
>>> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
>>> +
>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned
>>> int i)
>>> +{
>>> +	return i ? -EINVAL : 0;
>>> +}
>>> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
>>> +
>>>  /* Common ioctl debug function. This function can be used by
>>>     external ioctl messages as well as internal V4L ioctl */
>>>  void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
>>> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
>>> index 6cd94e5..accc470 100644
>>> --- a/include/media/v4l2-ioctl.h
>>> +++ b/include/media/v4l2-ioctl.h
>>> @@ -652,6 +652,32 @@ struct video_device;
>>>   */
>>>  
>>>  struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned int
>>>  cmd);
>>> +
>>> +/**
>>> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for
>>> VIDIOC_ENUM_INPUT ioctl + *
>>> + * Plug this function in vidioc_enum_input field of the struct
>>> v4l2_ioctl_ops to + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
>>> + */
>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>> +				  struct v4l2_input *i);
>>> +
>>> +/**
>>> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT
>>> ioctl
>>> + *
>>> + * Plug this function in vidioc_g_input field of the struct
>>> v4l2_ioctl_ops
>>> + * when using v4l2_ioctl_enum_input_default
>>> + */
>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned
>>> int *i); +
>>> +/**
>>> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT
>>> ioctl
>>> + *
>>> + * Plug this function in vidioc_s_input field of the struct
>>> v4l2_ioctl_ops
>>> + * when using v4l2_ioctl_enum_input_default
>>> + */
>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned
>>> int i); +
>>>
>>>  /* names for fancy debug output */
>>>  extern const char *v4l2_field_names[];
>>>  extern const char *v4l2_type_names[];
>>>
>>> diff --git a/include/uapi/linux/videodev2.h
>>> b/include/uapi/linux/videodev2.h index 316be62..c10bbde 100644
>>> --- a/include/uapi/linux/videodev2.h
>>> +++ b/include/uapi/linux/videodev2.h
>>> @@ -1477,6 +1477,7 @@ struct v4l2_input {
>>>
>>>  };
>>>  
>>>  /*  Values for the 'type' field */
>>>
>>> +#define V4L2_INPUT_TYPE_DEFAULT		0
>>
>> I don't think we should add a new type here. The whole point of this
>> exercise is to allow existing apps to work, and existing apps expect a
>> TYPE_CAMERA.
>>
>> BTW, don't read to much in the term 'CAMERA': it's really a catch all for
>> any video stream, whether it is from a sensor, composite input, HDMI, etc.
>>
>> The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly out of
>> date :-(
>>
>> Rather than creating a new type I would add a new V4L2_IN_CAP_MC capability
>> that indicates that this input is controlled via the media controller. That
>> makes much more sense and it wouldn't potentially break applications.
>>
>> Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC and
>> use V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible outdated
>> name and the spec is again out of date).
> 
> What would those capabilities be used for ? Applications can already know 
> whether the MC API is used by a driver. Furthermore, if we really need such a 
> flag, I wouldn't add it at the input/output level but as a video node 
> capability flag.

I have no objection to adding a V4L2_CAP_MC capability instead. In fact, I
think that would be a good idea and better than adding IN/OUT_CAP_MC.

>> Regarding the name: should we use the name stored in struct video_device
>> instead? That might be more descriptive. Alternatively use something like
>> "Media Controller Input".
>>
>> More helpful (perhaps) than just "Default" or "Unknown".
> 
> If the purpose of the name field is to be displayed as-is to the end-user, 
> then "Media Controller Input" is as useless as "Unknown". "Default" would be 
> slightly better.

I would like to have something that indicates to the user that this input is
controlled via the MC. "Default" doesn't do that. I'm honestly not certain
what would be a good description. Frankly, I think that copying the video_device
name might be the better solution here. At least that way the name can actually
map to something sensible.

Regards,

	Hans

> 
>> I'll make a patch to update the input/output type description in the spec.
>>
>>>  #define V4L2_INPUT_TYPE_TUNER		1
>>>  #define V4L2_INPUT_TYPE_CAMERA		2
>>>  #define V4L2_INPUT_TYPE_TOUCH		3
>
Mauro Carvalho Chehab March 31, 2017, 9:33 a.m. UTC | #8
Em Fri, 31 Mar 2017 11:41:51 +0300
Laurent Pinchart <laurent.pinchart@ideasonboard.com> escreveu:

> Hi Helen,
> 
> On Thursday 30 Mar 2017 23:39:01 Helen Koike wrote:
> > On 2017-03-30 04:56 PM, Laurent Pinchart wrote:  
> > > On Thursday 30 Mar 2017 13:02:17 Helen Koike wrote:  
> > >> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
> > >> used when no inputs are available in the device
> > >> 
> > >> Signed-off-by: Helen Koike <helen.koike@collabora.com>
> > >> ---
> > >> 
> > >>  drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
> > >>  include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
> > >>  include/uapi/linux/videodev2.h       |  1 +
> > >>  3 files changed, 54 insertions(+)
> > >> 
> > >> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
> > >> b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
> > >> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
> > >> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
> > >> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct
> > >> video_device *vdev, unsigned cmd) return vdev->lock;
> > >> 
> > >>  }
> > >> 
> > >> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> > >> +				  struct v4l2_input *i)
> > >> +{
> > >> +	if (i->index > 0)
> > >> +		return -EINVAL;
> > >> +
> > >> +	memset(i, 0, sizeof(*i));
> > >> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
> > >> +	strlcpy(i->name, "Default", sizeof(i->name));
> > >> +
> > >> +	return 0;
> > >> +}
> > >> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);  
> > > 
> > > V4L2 tends to use EXPORT_SYMBOL_GPL.  
> > 
> > The whole v4l2-ioctl.c file is using EXPORT_SYMBOL instead of
> > EXPORT_SYMBOL_GPL, should we change it all to EXPORT_SYMBOL_GPL then (in
> > another patch) ?  
> 
> You're right, let's leave it as-is then.

At the time V4L2 was written, there was no EXPORT_SYMBOL_GPL(). That's
why there are some parts that aren't explicit about the symbol usage
license.

For newer symbols, we're using EXPORT_SYMBOL_GPL(), in order to let
clear about the licensing for the code.

Thanks,
Mauro
Mauro Carvalho Chehab March 31, 2017, 9:42 a.m. UTC | #9
Em Fri, 31 Mar 2017 00:55:12 -0300
Helen Koike <helen.koike@collabora.com> escreveu:

> On 2017-03-30 11:39 PM, Helen Koike wrote:
> > Hi Laurent,
> >
> > Thanks for reviewing
> >
> > On 2017-03-30 04:56 PM, Laurent Pinchart wrote:  
> >> Hi Helen,
> >>
> >> Thank you for the patch.
> >>
> >> On Thursday 30 Mar 2017 13:02:17 Helen Koike wrote:  
> >>> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
> >>> used when no inputs are available in the device
> >>>
> >>> Signed-off-by: Helen Koike <helen.koike@collabora.com>
> >>> ---
> >>>  drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
> >>>  include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
> >>>  include/uapi/linux/videodev2.h       |  1 +
> >>>  3 files changed, 54 insertions(+)
> >>>
> >>> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
> >>> b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
> >>> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
> >>> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
> >>> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct
> >>> video_device
> >>> *vdev, unsigned cmd) return vdev->lock;
> >>>  }
> >>>
> >>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> >>> +                  struct v4l2_input *i)
> >>> +{
> >>> +    if (i->index > 0)
> >>> +        return -EINVAL;
> >>> +
> >>> +    memset(i, 0, sizeof(*i));
> >>> +    i->type = V4L2_INPUT_TYPE_DEFAULT;
> >>> +    strlcpy(i->name, "Default", sizeof(i->name));
> >>> +
> >>> +    return 0;
> >>> +}
> >>> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);  
> >>
> >> V4L2 tends to use EXPORT_SYMBOL_GPL.  
> >
> > The whole v4l2-ioctl.c file is using EXPORT_SYMBOL instead of
> > EXPORT_SYMBOL_GPL, should we change it all to EXPORT_SYMBOL_GPL then (in
> > another patch) ?
> >  
> >>
> >> What would you think about calling those default functions directly
> >> from the
> >> core when the input ioctl handlers are not set ? You wouldn't need to
> >> modify
> >> drivers.  
> >
> > Sure, I'll add them in ops inside __video_register_device when it
> > validates the ioctls  
> 
> I just realize I can not simply override struct v4l2_ioctl_ops as it is 
> declared as a const inside strut video_device. I'll call those default 
> functions only when the ioctls are handled to not modify vdev->ops.

You should not override it, anyway. What you should do, instead, is
something like:

static int v4l_ginput(const struct v4l2_ioctl_ops *ops, ...)
{
	if (ops->vidioc_ginput)
		return ops->vidioc_ginput(...);

	/* default code */
}

You should also make sure that the ioctls are alway valid, e. g. by
calling SET_VALID_IOCTL()

Thanks,
Mauro
Hans Verkuil March 31, 2017, 9:51 a.m. UTC | #10
On 31/03/17 11:42, Mauro Carvalho Chehab wrote:
> Em Fri, 31 Mar 2017 00:55:12 -0300
> Helen Koike <helen.koike@collabora.com> escreveu:
> 
>> On 2017-03-30 11:39 PM, Helen Koike wrote:
>>> Hi Laurent,
>>>
>>> Thanks for reviewing
>>>
>>> On 2017-03-30 04:56 PM, Laurent Pinchart wrote:  
>>>> Hi Helen,
>>>>
>>>> Thank you for the patch.
>>>>
>>>> On Thursday 30 Mar 2017 13:02:17 Helen Koike wrote:  
>>>>> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
>>>>> used when no inputs are available in the device
>>>>>
>>>>> Signed-off-by: Helen Koike <helen.koike@collabora.com>
>>>>> ---
>>>>>  drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
>>>>>  include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
>>>>>  include/uapi/linux/videodev2.h       |  1 +
>>>>>  3 files changed, 54 insertions(+)
>>>>>
>>>>> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>> b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
>>>>> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct
>>>>> video_device
>>>>> *vdev, unsigned cmd) return vdev->lock;
>>>>>  }
>>>>>
>>>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>>>> +                  struct v4l2_input *i)
>>>>> +{
>>>>> +    if (i->index > 0)
>>>>> +        return -EINVAL;
>>>>> +
>>>>> +    memset(i, 0, sizeof(*i));
>>>>> +    i->type = V4L2_INPUT_TYPE_DEFAULT;
>>>>> +    strlcpy(i->name, "Default", sizeof(i->name));
>>>>> +
>>>>> +    return 0;
>>>>> +}
>>>>> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);  
>>>>
>>>> V4L2 tends to use EXPORT_SYMBOL_GPL.  
>>>
>>> The whole v4l2-ioctl.c file is using EXPORT_SYMBOL instead of
>>> EXPORT_SYMBOL_GPL, should we change it all to EXPORT_SYMBOL_GPL then (in
>>> another patch) ?
>>>  
>>>>
>>>> What would you think about calling those default functions directly
>>>> from the
>>>> core when the input ioctl handlers are not set ? You wouldn't need to
>>>> modify
>>>> drivers.  
>>>
>>> Sure, I'll add them in ops inside __video_register_device when it
>>> validates the ioctls  
>>
>> I just realize I can not simply override struct v4l2_ioctl_ops as it is 
>> declared as a const inside strut video_device. I'll call those default 
>> functions only when the ioctls are handled to not modify vdev->ops.
> 
> You should not override it, anyway. What you should do, instead, is
> something like:
> 
> static int v4l_ginput(const struct v4l2_ioctl_ops *ops, ...)
> {
> 	if (ops->vidioc_ginput)
> 		return ops->vidioc_ginput(...);
> 
> 	/* default code */
> }
> 
> You should also make sure that the ioctls are alway valid, e. g. by
> calling SET_VALID_IOCTL()

Helen, FYI:

The input ioctls are compulsory for:

V4L2_CAP_VIDEO_CAPTURE
V4L2_CAP_VBI_CAPTURE
V4L2_CAP_VIDEO_CAPTURE_MPLANE
V4L2_CAP_SLICED_VBI_CAPTURE

The output ioctls are compulsory for:

V4L2_CAP_VIDEO_OUTPUT
V4L2_CAP_VBI_OUTPUT
V4L2_CAP_VIDEO_OUTPUT_MPLANE
V4L2_CAP_SLICED_VBI_OUTPUT

If none of these caps are set, then we shouldn't provide these stubs.

Regards,

	Hans

> 
> Thanks,
> Mauro
>
Mauro Carvalho Chehab March 31, 2017, 9:57 a.m. UTC | #11
Em Fri, 31 Mar 2017 10:29:04 +0200
Hans Verkuil <hverkuil@xs4all.nl> escreveu:

> On 30/03/17 18:02, Helen Koike wrote:
> > Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
> > used when no inputs are available in the device
> > 
> > Signed-off-by: Helen Koike <helen.koike@collabora.com>
> > ---
> >  drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
> >  include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
> >  include/uapi/linux/videodev2.h       |  1 +
> >  3 files changed, 54 insertions(+)
> > 
> > diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c b/drivers/media/v4l2-core/v4l2-ioctl.c
> > index 0c3f238..ccaf04b 100644
> > --- a/drivers/media/v4l2-core/v4l2-ioctl.c
> > +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
> > @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned cmd)
> >  	return vdev->lock;
> >  }
> >  
> > +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> > +				  struct v4l2_input *i)
> > +{
> > +	if (i->index > 0)
> > +		return -EINVAL;
> > +
> > +	memset(i, 0, sizeof(*i));
> > +	i->type = V4L2_INPUT_TYPE_DEFAULT;
> > +	strlcpy(i->name, "Default", sizeof(i->name));
> > +
> > +	return 0;
> > +}
> > +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
> > +
> > +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i)
> > +{
> > +	*i = 0;
> > +	return 0;
> > +}
> > +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
> > +
> > +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i)
> > +{
> > +	return i ? -EINVAL : 0;
> > +}
> > +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
> > +
> >  /* Common ioctl debug function. This function can be used by
> >     external ioctl messages as well as internal V4L ioctl */
> >  void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
> > diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
> > index 6cd94e5..accc470 100644
> > --- a/include/media/v4l2-ioctl.h
> > +++ b/include/media/v4l2-ioctl.h
> > @@ -652,6 +652,32 @@ struct video_device;
> >   */
> >  struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned int cmd);
> >  
> > +
> > +/**
> > + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for VIDIOC_ENUM_INPUT ioctl
> > + *
> > + * Plug this function in vidioc_enum_input field of the struct v4l2_ioctl_ops to
> > + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
> > + */
> > +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> > +				  struct v4l2_input *i);
> > +
> > +/**
> > + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT ioctl
> > + *
> > + * Plug this function in vidioc_g_input field of the struct v4l2_ioctl_ops
> > + * when using v4l2_ioctl_enum_input_default
> > + */
> > +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i);
> > +
> > +/**
> > + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT ioctl
> > + *
> > + * Plug this function in vidioc_s_input field of the struct v4l2_ioctl_ops
> > + * when using v4l2_ioctl_enum_input_default
> > + */
> > +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i);
> > +
> >  /* names for fancy debug output */
> >  extern const char *v4l2_field_names[];
> >  extern const char *v4l2_type_names[];
> > diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h
> > index 316be62..c10bbde 100644
> > --- a/include/uapi/linux/videodev2.h
> > +++ b/include/uapi/linux/videodev2.h
> > @@ -1477,6 +1477,7 @@ struct v4l2_input {
> >  };
> >  
> >  /*  Values for the 'type' field */
> > +#define V4L2_INPUT_TYPE_DEFAULT		0  
> 
> I don't think we should add a new type here.

I second that. Just replied the same thing on a comment from Sakari to
patch 2/2.

> The whole point of this exercise is to
> allow existing apps to work, and existing apps expect a TYPE_CAMERA.
> 
> BTW, don't read to much in the term 'CAMERA': it's really a catch all for any video
> stream, whether it is from a sensor, composite input, HDMI, etc.
> 
> The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly out of date :-(

Yeah, we always used "CAMERA" to mean NOT_TUNER.

> Rather than creating a new type I would add a new V4L2_IN_CAP_MC capability that
> indicates that this input is controlled via the media controller. That makes much
> more sense and it wouldn't potentially break applications.
> 
> Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC and use
> V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible outdated name and the
> spec is again out of date).

I don't see any sense on distinguishing IN and OUT for MC. I mean: should
we ever allow that any driver to have their inputs controlled via V4L2 API, 
and their outputs controlled via MC (or vice-versa)? I don't think so.

Either all device inputs/outputs are controlled via V4L2 or via MC. So,
let's call it just V4L2_CAP_MC.

> Regarding the name: should we use the name stored in struct video_device instead?
> That might be more descriptive.

Makes sense to me.

> Alternatively use something like "Media Controller Input".

Yeah, we could do that, if V4L2_CAP_MC. if not, we can use the name
stored at video_device.

> More helpful (perhaps) than just "Default" or "Unknown".
> 
> I'll make a patch to update the input/output type description in the spec.

Thanks!

> 
> Regards,
> 
> 	Hans
> 
> >  #define V4L2_INPUT_TYPE_TUNER		1
> >  #define V4L2_INPUT_TYPE_CAMERA		2
> >  #define V4L2_INPUT_TYPE_TOUCH		3
> >   
> 



Thanks,
Mauro
Helen Koike April 3, 2017, 3:11 p.m. UTC | #12
Hi,

On 2017-03-31 06:57 AM, Mauro Carvalho Chehab wrote:
> Em Fri, 31 Mar 2017 10:29:04 +0200
> Hans Verkuil <hverkuil@xs4all.nl> escreveu:
>
>> On 30/03/17 18:02, Helen Koike wrote:
>>> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
>>> used when no inputs are available in the device
>>>
>>> Signed-off-by: Helen Koike <helen.koike@collabora.com>
>>> ---
>>>  drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
>>>  include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
>>>  include/uapi/linux/videodev2.h       |  1 +
>>>  3 files changed, 54 insertions(+)
>>>
>>> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c b/drivers/media/v4l2-core/v4l2-ioctl.c
>>> index 0c3f238..ccaf04b 100644
>>> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
>>> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
>>> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned cmd)
>>>  	return vdev->lock;
>>>  }
>>>
>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>> +				  struct v4l2_input *i)
>>> +{
>>> +	if (i->index > 0)
>>> +		return -EINVAL;
>>> +
>>> +	memset(i, 0, sizeof(*i));
>>> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
>>> +	strlcpy(i->name, "Default", sizeof(i->name));
>>> +
>>> +	return 0;
>>> +}
>>> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
>>> +
>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i)
>>> +{
>>> +	*i = 0;
>>> +	return 0;
>>> +}
>>> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
>>> +
>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i)
>>> +{
>>> +	return i ? -EINVAL : 0;
>>> +}
>>> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
>>> +
>>>  /* Common ioctl debug function. This function can be used by
>>>     external ioctl messages as well as internal V4L ioctl */
>>>  void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
>>> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
>>> index 6cd94e5..accc470 100644
>>> --- a/include/media/v4l2-ioctl.h
>>> +++ b/include/media/v4l2-ioctl.h
>>> @@ -652,6 +652,32 @@ struct video_device;
>>>   */
>>>  struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned int cmd);
>>>
>>> +
>>> +/**
>>> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for VIDIOC_ENUM_INPUT ioctl
>>> + *
>>> + * Plug this function in vidioc_enum_input field of the struct v4l2_ioctl_ops to
>>> + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
>>> + */
>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>> +				  struct v4l2_input *i);
>>> +
>>> +/**
>>> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT ioctl
>>> + *
>>> + * Plug this function in vidioc_g_input field of the struct v4l2_ioctl_ops
>>> + * when using v4l2_ioctl_enum_input_default
>>> + */
>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i);
>>> +
>>> +/**
>>> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT ioctl
>>> + *
>>> + * Plug this function in vidioc_s_input field of the struct v4l2_ioctl_ops
>>> + * when using v4l2_ioctl_enum_input_default
>>> + */
>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i);
>>> +
>>>  /* names for fancy debug output */
>>>  extern const char *v4l2_field_names[];
>>>  extern const char *v4l2_type_names[];
>>> diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h
>>> index 316be62..c10bbde 100644
>>> --- a/include/uapi/linux/videodev2.h
>>> +++ b/include/uapi/linux/videodev2.h
>>> @@ -1477,6 +1477,7 @@ struct v4l2_input {
>>>  };
>>>
>>>  /*  Values for the 'type' field */
>>> +#define V4L2_INPUT_TYPE_DEFAULT		0
>>
>> I don't think we should add a new type here.
>
> I second that. Just replied the same thing on a comment from Sakari to
> patch 2/2.
>
>> The whole point of this exercise is to
>> allow existing apps to work, and existing apps expect a TYPE_CAMERA.
>>
>> BTW, don't read to much in the term 'CAMERA': it's really a catch all for any video
>> stream, whether it is from a sensor, composite input, HDMI, etc.
>>
>> The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly out of date :-(
>
> Yeah, we always used "CAMERA" to mean NOT_TUNER.
>
>> Rather than creating a new type I would add a new V4L2_IN_CAP_MC capability that
>> indicates that this input is controlled via the media controller. That makes much
>> more sense and it wouldn't potentially break applications.
>>
>> Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC and use
>> V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible outdated name and the
>> spec is again out of date).
>
> I don't see any sense on distinguishing IN and OUT for MC. I mean: should
> we ever allow that any driver to have their inputs controlled via V4L2 API,
> and their outputs controlled via MC (or vice-versa)? I don't think so.
>
> Either all device inputs/outputs are controlled via V4L2 or via MC. So,
> let's call it just V4L2_CAP_MC.
>
>> Regarding the name: should we use the name stored in struct video_device instead?
>> That might be more descriptive.
>
> Makes sense to me.
>
>> Alternatively use something like "Media Controller Input".
>
> Yeah, we could do that, if V4L2_CAP_MC. if not, we can use the name
> stored at video_device.

Just to clarify: the V4L2_CAP_MC would indicated that the media 
controller is enabled in general? Or just for inputs and outputs?
If it is the first case, not necessarily the inputs/outputs are 
controlled via MC (we can still have a MC capable driver, but 
inputs/outputs controlled via V4L2 no? When the driver doesn't offer the 
necessary link controls via MC), then checking if V4L2_CAP_MC then use 
the name "Media Controller Input" is not enough.
If it is the second case, then wouldn't it be better to name it 
V4L2_CAP_MC_IO ?

Thanks

Helen

>
>> More helpful (perhaps) than just "Default" or "Unknown".
>>
>> I'll make a patch to update the input/output type description in the spec.
>
> Thanks!
>
>>
>> Regards,
>>
>> 	Hans
>>
>>>  #define V4L2_INPUT_TYPE_TUNER		1
>>>  #define V4L2_INPUT_TYPE_CAMERA		2
>>>  #define V4L2_INPUT_TYPE_TOUCH		3
>>>
>>
>
>
>
> Thanks,
> Mauro
>
Sakari Ailus April 4, 2017, 1:22 p.m. UTC | #13
Hi Helen,

On Mon, Apr 03, 2017 at 12:11:54PM -0300, Helen Koike wrote:
> Hi,
> 
> On 2017-03-31 06:57 AM, Mauro Carvalho Chehab wrote:
> >Em Fri, 31 Mar 2017 10:29:04 +0200
> >Hans Verkuil <hverkuil@xs4all.nl> escreveu:
> >
> >>On 30/03/17 18:02, Helen Koike wrote:
> >>>Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
> >>>used when no inputs are available in the device
> >>>
> >>>Signed-off-by: Helen Koike <helen.koike@collabora.com>
> >>>---
> >>> drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
> >>> include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
> >>> include/uapi/linux/videodev2.h       |  1 +
> >>> 3 files changed, 54 insertions(+)
> >>>
> >>>diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c b/drivers/media/v4l2-core/v4l2-ioctl.c
> >>>index 0c3f238..ccaf04b 100644
> >>>--- a/drivers/media/v4l2-core/v4l2-ioctl.c
> >>>+++ b/drivers/media/v4l2-core/v4l2-ioctl.c
> >>>@@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned cmd)
> >>> 	return vdev->lock;
> >>> }
> >>>
> >>>+int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> >>>+				  struct v4l2_input *i)
> >>>+{
> >>>+	if (i->index > 0)
> >>>+		return -EINVAL;
> >>>+
> >>>+	memset(i, 0, sizeof(*i));
> >>>+	i->type = V4L2_INPUT_TYPE_DEFAULT;
> >>>+	strlcpy(i->name, "Default", sizeof(i->name));
> >>>+
> >>>+	return 0;
> >>>+}
> >>>+EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
> >>>+
> >>>+int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i)
> >>>+{
> >>>+	*i = 0;
> >>>+	return 0;
> >>>+}
> >>>+EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
> >>>+
> >>>+int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i)
> >>>+{
> >>>+	return i ? -EINVAL : 0;
> >>>+}
> >>>+EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
> >>>+
> >>> /* Common ioctl debug function. This function can be used by
> >>>    external ioctl messages as well as internal V4L ioctl */
> >>> void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
> >>>diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
> >>>index 6cd94e5..accc470 100644
> >>>--- a/include/media/v4l2-ioctl.h
> >>>+++ b/include/media/v4l2-ioctl.h
> >>>@@ -652,6 +652,32 @@ struct video_device;
> >>>  */
> >>> struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned int cmd);
> >>>
> >>>+
> >>>+/**
> >>>+ * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for VIDIOC_ENUM_INPUT ioctl
> >>>+ *
> >>>+ * Plug this function in vidioc_enum_input field of the struct v4l2_ioctl_ops to
> >>>+ * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
> >>>+ */
> >>>+int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> >>>+				  struct v4l2_input *i);
> >>>+
> >>>+/**
> >>>+ * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT ioctl
> >>>+ *
> >>>+ * Plug this function in vidioc_g_input field of the struct v4l2_ioctl_ops
> >>>+ * when using v4l2_ioctl_enum_input_default
> >>>+ */
> >>>+int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i);
> >>>+
> >>>+/**
> >>>+ * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT ioctl
> >>>+ *
> >>>+ * Plug this function in vidioc_s_input field of the struct v4l2_ioctl_ops
> >>>+ * when using v4l2_ioctl_enum_input_default
> >>>+ */
> >>>+int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i);
> >>>+
> >>> /* names for fancy debug output */
> >>> extern const char *v4l2_field_names[];
> >>> extern const char *v4l2_type_names[];
> >>>diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h
> >>>index 316be62..c10bbde 100644
> >>>--- a/include/uapi/linux/videodev2.h
> >>>+++ b/include/uapi/linux/videodev2.h
> >>>@@ -1477,6 +1477,7 @@ struct v4l2_input {
> >>> };
> >>>
> >>> /*  Values for the 'type' field */
> >>>+#define V4L2_INPUT_TYPE_DEFAULT		0
> >>
> >>I don't think we should add a new type here.
> >
> >I second that. Just replied the same thing on a comment from Sakari to
> >patch 2/2.
> >
> >>The whole point of this exercise is to
> >>allow existing apps to work, and existing apps expect a TYPE_CAMERA.
> >>
> >>BTW, don't read to much in the term 'CAMERA': it's really a catch all for any video
> >>stream, whether it is from a sensor, composite input, HDMI, etc.
> >>
> >>The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly out of date :-(
> >
> >Yeah, we always used "CAMERA" to mean NOT_TUNER.
> >
> >>Rather than creating a new type I would add a new V4L2_IN_CAP_MC capability that
> >>indicates that this input is controlled via the media controller. That makes much
> >>more sense and it wouldn't potentially break applications.
> >>
> >>Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC and use
> >>V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible outdated name and the
> >>spec is again out of date).
> >
> >I don't see any sense on distinguishing IN and OUT for MC. I mean: should
> >we ever allow that any driver to have their inputs controlled via V4L2 API,
> >and their outputs controlled via MC (or vice-versa)? I don't think so.
> >
> >Either all device inputs/outputs are controlled via V4L2 or via MC. So,
> >let's call it just V4L2_CAP_MC.
> >
> >>Regarding the name: should we use the name stored in struct video_device instead?
> >>That might be more descriptive.
> >
> >Makes sense to me.
> >
> >>Alternatively use something like "Media Controller Input".
> >
> >Yeah, we could do that, if V4L2_CAP_MC. if not, we can use the name
> >stored at video_device.
> 
> Just to clarify: the V4L2_CAP_MC would indicated that the media controller
> is enabled in general? Or just for inputs and outputs?

I let Mauro and Hans to comment on their own behalf, but I think whatever is
communicated through the input IOCTLs should be applicable to inputs only.

The fact that the video device is a part of an MC graph could be conveyed
using a capability flag. Or by providing information on the media device
node, something that has been proposed earlier on. Either is out of the
scope of this patchset IMO, but should be addressed separately.

> If it is the first case, not necessarily the inputs/outputs are controlled
> via MC (we can still have a MC capable driver, but inputs/outputs controlled
> via V4L2 no? When the driver doesn't offer the necessary link controls via
> MC), then checking if V4L2_CAP_MC then use the name "Media Controller Input"
> is not enough.
> If it is the second case, then wouldn't it be better to name it
> V4L2_CAP_MC_IO ?
Hans Verkuil April 7, 2017, 9:36 a.m. UTC | #14
On 03/31/2017 11:57 AM, Mauro Carvalho Chehab wrote:
> Em Fri, 31 Mar 2017 10:29:04 +0200
> Hans Verkuil <hverkuil@xs4all.nl> escreveu:
> 
>> On 30/03/17 18:02, Helen Koike wrote:
>>> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
>>> used when no inputs are available in the device
>>>
>>> Signed-off-by: Helen Koike <helen.koike@collabora.com>
>>> ---
>>>  drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
>>>  include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
>>>  include/uapi/linux/videodev2.h       |  1 +
>>>  3 files changed, 54 insertions(+)
>>>
>>> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c b/drivers/media/v4l2-core/v4l2-ioctl.c
>>> index 0c3f238..ccaf04b 100644
>>> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
>>> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
>>> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned cmd)
>>>  	return vdev->lock;
>>>  }
>>>  
>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>> +				  struct v4l2_input *i)
>>> +{
>>> +	if (i->index > 0)
>>> +		return -EINVAL;
>>> +
>>> +	memset(i, 0, sizeof(*i));
>>> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
>>> +	strlcpy(i->name, "Default", sizeof(i->name));
>>> +
>>> +	return 0;
>>> +}
>>> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
>>> +
>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i)
>>> +{
>>> +	*i = 0;
>>> +	return 0;
>>> +}
>>> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
>>> +
>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i)
>>> +{
>>> +	return i ? -EINVAL : 0;
>>> +}
>>> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
>>> +
>>>  /* Common ioctl debug function. This function can be used by
>>>     external ioctl messages as well as internal V4L ioctl */
>>>  void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
>>> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
>>> index 6cd94e5..accc470 100644
>>> --- a/include/media/v4l2-ioctl.h
>>> +++ b/include/media/v4l2-ioctl.h
>>> @@ -652,6 +652,32 @@ struct video_device;
>>>   */
>>>  struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned int cmd);
>>>  
>>> +
>>> +/**
>>> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for VIDIOC_ENUM_INPUT ioctl
>>> + *
>>> + * Plug this function in vidioc_enum_input field of the struct v4l2_ioctl_ops to
>>> + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
>>> + */
>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>> +				  struct v4l2_input *i);
>>> +
>>> +/**
>>> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT ioctl
>>> + *
>>> + * Plug this function in vidioc_g_input field of the struct v4l2_ioctl_ops
>>> + * when using v4l2_ioctl_enum_input_default
>>> + */
>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i);
>>> +
>>> +/**
>>> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT ioctl
>>> + *
>>> + * Plug this function in vidioc_s_input field of the struct v4l2_ioctl_ops
>>> + * when using v4l2_ioctl_enum_input_default
>>> + */
>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i);
>>> +
>>>  /* names for fancy debug output */
>>>  extern const char *v4l2_field_names[];
>>>  extern const char *v4l2_type_names[];
>>> diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h
>>> index 316be62..c10bbde 100644
>>> --- a/include/uapi/linux/videodev2.h
>>> +++ b/include/uapi/linux/videodev2.h
>>> @@ -1477,6 +1477,7 @@ struct v4l2_input {
>>>  };
>>>  
>>>  /*  Values for the 'type' field */
>>> +#define V4L2_INPUT_TYPE_DEFAULT		0  
>>
>> I don't think we should add a new type here.
> 
> I second that. Just replied the same thing on a comment from Sakari to
> patch 2/2.
> 
>> The whole point of this exercise is to
>> allow existing apps to work, and existing apps expect a TYPE_CAMERA.
>>
>> BTW, don't read to much in the term 'CAMERA': it's really a catch all for any video
>> stream, whether it is from a sensor, composite input, HDMI, etc.
>>
>> The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly out of date :-(
> 
> Yeah, we always used "CAMERA" to mean NOT_TUNER.
> 
>> Rather than creating a new type I would add a new V4L2_IN_CAP_MC capability that
>> indicates that this input is controlled via the media controller. That makes much
>> more sense and it wouldn't potentially break applications.
>>
>> Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC and use
>> V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible outdated name and the
>> spec is again out of date).
> 
> I don't see any sense on distinguishing IN and OUT for MC. I mean: should
> we ever allow that any driver to have their inputs controlled via V4L2 API, 
> and their outputs controlled via MC (or vice-versa)? I don't think so.

It's historical: the V4L2_OUT_CAP_ defines are aliases of the V4L2_IN_CAP_ defines.

Regards,

	Hans

> 
> Either all device inputs/outputs are controlled via V4L2 or via MC. So,
> let's call it just V4L2_CAP_MC.
> 
>> Regarding the name: should we use the name stored in struct video_device instead?
>> That might be more descriptive.
> 
> Makes sense to me.
> 
>> Alternatively use something like "Media Controller Input".
> 
> Yeah, we could do that, if V4L2_CAP_MC. if not, we can use the name
> stored at video_device.
> 
>> More helpful (perhaps) than just "Default" or "Unknown".
>>
>> I'll make a patch to update the input/output type description in the spec.
> 
> Thanks!
> 
>>
>> Regards,
>>
>> 	Hans
>>
>>>  #define V4L2_INPUT_TYPE_TUNER		1
>>>  #define V4L2_INPUT_TYPE_CAMERA		2
>>>  #define V4L2_INPUT_TYPE_TOUCH		3
>>>   
>>
> 
> 
> 
> Thanks,
> Mauro
>
Hans Verkuil April 7, 2017, 9:46 a.m. UTC | #15
On 04/04/2017 03:22 PM, Sakari Ailus wrote:
> Hi Helen,
> 
> On Mon, Apr 03, 2017 at 12:11:54PM -0300, Helen Koike wrote:
>> Hi,
>>
>> On 2017-03-31 06:57 AM, Mauro Carvalho Chehab wrote:
>>> Em Fri, 31 Mar 2017 10:29:04 +0200
>>> Hans Verkuil <hverkuil@xs4all.nl> escreveu:
>>>
>>>> On 30/03/17 18:02, Helen Koike wrote:
>>>>> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to be
>>>>> used when no inputs are available in the device
>>>>>
>>>>> Signed-off-by: Helen Koike <helen.koike@collabora.com>
>>>>> ---
>>>>> drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
>>>>> include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
>>>>> include/uapi/linux/videodev2.h       |  1 +
>>>>> 3 files changed, 54 insertions(+)
>>>>>
>>>>> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c b/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>> index 0c3f238..ccaf04b 100644
>>>>> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned cmd)
>>>>> 	return vdev->lock;
>>>>> }
>>>>>
>>>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>>>> +				  struct v4l2_input *i)
>>>>> +{
>>>>> +	if (i->index > 0)
>>>>> +		return -EINVAL;
>>>>> +
>>>>> +	memset(i, 0, sizeof(*i));
>>>>> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
>>>>> +	strlcpy(i->name, "Default", sizeof(i->name));
>>>>> +
>>>>> +	return 0;
>>>>> +}
>>>>> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
>>>>> +
>>>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i)
>>>>> +{
>>>>> +	*i = 0;
>>>>> +	return 0;
>>>>> +}
>>>>> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
>>>>> +
>>>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i)
>>>>> +{
>>>>> +	return i ? -EINVAL : 0;
>>>>> +}
>>>>> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
>>>>> +
>>>>> /* Common ioctl debug function. This function can be used by
>>>>>    external ioctl messages as well as internal V4L ioctl */
>>>>> void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
>>>>> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
>>>>> index 6cd94e5..accc470 100644
>>>>> --- a/include/media/v4l2-ioctl.h
>>>>> +++ b/include/media/v4l2-ioctl.h
>>>>> @@ -652,6 +652,32 @@ struct video_device;
>>>>>  */
>>>>> struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned int cmd);
>>>>>
>>>>> +
>>>>> +/**
>>>>> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for VIDIOC_ENUM_INPUT ioctl
>>>>> + *
>>>>> + * Plug this function in vidioc_enum_input field of the struct v4l2_ioctl_ops to
>>>>> + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
>>>>> + */
>>>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>>>> +				  struct v4l2_input *i);
>>>>> +
>>>>> +/**
>>>>> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT ioctl
>>>>> + *
>>>>> + * Plug this function in vidioc_g_input field of the struct v4l2_ioctl_ops
>>>>> + * when using v4l2_ioctl_enum_input_default
>>>>> + */
>>>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i);
>>>>> +
>>>>> +/**
>>>>> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT ioctl
>>>>> + *
>>>>> + * Plug this function in vidioc_s_input field of the struct v4l2_ioctl_ops
>>>>> + * when using v4l2_ioctl_enum_input_default
>>>>> + */
>>>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i);
>>>>> +
>>>>> /* names for fancy debug output */
>>>>> extern const char *v4l2_field_names[];
>>>>> extern const char *v4l2_type_names[];
>>>>> diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h
>>>>> index 316be62..c10bbde 100644
>>>>> --- a/include/uapi/linux/videodev2.h
>>>>> +++ b/include/uapi/linux/videodev2.h
>>>>> @@ -1477,6 +1477,7 @@ struct v4l2_input {
>>>>> };
>>>>>
>>>>> /*  Values for the 'type' field */
>>>>> +#define V4L2_INPUT_TYPE_DEFAULT		0
>>>>
>>>> I don't think we should add a new type here.
>>>
>>> I second that. Just replied the same thing on a comment from Sakari to
>>> patch 2/2.
>>>
>>>> The whole point of this exercise is to
>>>> allow existing apps to work, and existing apps expect a TYPE_CAMERA.
>>>>
>>>> BTW, don't read to much in the term 'CAMERA': it's really a catch all for any video
>>>> stream, whether it is from a sensor, composite input, HDMI, etc.
>>>>
>>>> The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly out of date :-(
>>>
>>> Yeah, we always used "CAMERA" to mean NOT_TUNER.
>>>
>>>> Rather than creating a new type I would add a new V4L2_IN_CAP_MC capability that
>>>> indicates that this input is controlled via the media controller. That makes much
>>>> more sense and it wouldn't potentially break applications.
>>>>
>>>> Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC and use
>>>> V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible outdated name and the
>>>> spec is again out of date).
>>>
>>> I don't see any sense on distinguishing IN and OUT for MC. I mean: should
>>> we ever allow that any driver to have their inputs controlled via V4L2 API,
>>> and their outputs controlled via MC (or vice-versa)? I don't think so.
>>>
>>> Either all device inputs/outputs are controlled via V4L2 or via MC. So,
>>> let's call it just V4L2_CAP_MC.
>>>
>>>> Regarding the name: should we use the name stored in struct video_device instead?
>>>> That might be more descriptive.
>>>
>>> Makes sense to me.
>>>
>>>> Alternatively use something like "Media Controller Input".
>>>
>>> Yeah, we could do that, if V4L2_CAP_MC. if not, we can use the name
>>> stored at video_device.
>>
>> Just to clarify: the V4L2_CAP_MC would indicated that the media controller
>> is enabled in general? Or just for inputs and outputs?
> 
> I let Mauro and Hans to comment on their own behalf, but I think whatever is
> communicated through the input IOCTLs should be applicable to inputs only.
> 
> The fact that the video device is a part of an MC graph could be conveyed
> using a capability flag. Or by providing information on the media device
> node, something that has been proposed earlier on. Either is out of the
> scope of this patchset IMO, but should be addressed separately.
> 
>> If it is the first case, not necessarily the inputs/outputs are controlled
>> via MC (we can still have a MC capable driver, but inputs/outputs controlled
>> via V4L2 no? When the driver doesn't offer the necessary link controls via
>> MC), then checking if V4L2_CAP_MC then use the name "Media Controller Input"
>> is not enough.
>> If it is the second case, then wouldn't it be better to name it
>> V4L2_CAP_MC_IO ?
> 

It's the second case. I would probably name it V4L2_CAP_IO_MC. But I also feel
that we need a V4L2_IN/OUT_CAP_MC as well. Because the existing V4L2_IN/OUT_CAP
flags make no sense in this case.

In v4l2-ioctl.c we can just check V4L2_CAP_IO_MC in video_device->device_caps,
and, if present, implement dummy s/g/enum_in/output ioctls. The enum ioctl would
set V4L2_IN/OUT_CAP_MC and use video_device->name as the description.

Regards,

	Hans
Laurent Pinchart April 7, 2017, 9:53 a.m. UTC | #16
Hi Hans,

On Friday 07 Apr 2017 11:46:48 Hans Verkuil wrote:
> On 04/04/2017 03:22 PM, Sakari Ailus wrote:
> > On Mon, Apr 03, 2017 at 12:11:54PM -0300, Helen Koike wrote:
> >> On 2017-03-31 06:57 AM, Mauro Carvalho Chehab wrote:
> >>> Em Fri, 31 Mar 2017 10:29:04 +0200 Hans Verkuil escreveu:
> >>>> On 30/03/17 18:02, Helen Koike wrote:
> >>>>> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to
> >>>>> be used when no inputs are available in the device
> >>>>> 
> >>>>> Signed-off-by: Helen Koike <helen.koike@collabora.com>
> >>>>> ---
> >>>>> drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
> >>>>> include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
> >>>>> include/uapi/linux/videodev2.h       |  1 +
> >>>>> 3 files changed, 54 insertions(+)
> >>>>> 
> >>>>> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
> >>>>> b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
> >>>>> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
> >>>>> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
> >>>>> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct
> >>>>> video_device *vdev, unsigned cmd)
> >>>>> 	return vdev->lock;
> >>>>> }
> >>>>> 
> >>>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> >>>>> +				  struct v4l2_input *i)
> >>>>> +{
> >>>>> +	if (i->index > 0)
> >>>>> +		return -EINVAL;
> >>>>> +
> >>>>> +	memset(i, 0, sizeof(*i));
> >>>>> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
> >>>>> +	strlcpy(i->name, "Default", sizeof(i->name));
> >>>>> +
> >>>>> +	return 0;
> >>>>> +}
> >>>>> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
> >>>>> +
> >>>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
> >>>>> unsigned int *i)
> >>>>> +{
> >>>>> +	*i = 0;
> >>>>> +	return 0;
> >>>>> +}
> >>>>> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
> >>>>> +
> >>>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
> >>>>> unsigned int i)
> >>>>> +{
> >>>>> +	return i ? -EINVAL : 0;
> >>>>> +}
> >>>>> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
> >>>>> +
> >>>>> /* Common ioctl debug function. This function can be used by
> >>>>>    external ioctl messages as well as internal V4L ioctl */
> >>>>> 
> >>>>> void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
> >>>>> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
> >>>>> index 6cd94e5..accc470 100644
> >>>>> --- a/include/media/v4l2-ioctl.h
> >>>>> +++ b/include/media/v4l2-ioctl.h
> >>>>> @@ -652,6 +652,32 @@ struct video_device;
> >>>>>  */
> >>>>> 
> >>>>> struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned
> >>>>> int cmd);
> >>>>> +
> >>>>> +/**
> >>>>> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for
> >>>>> VIDIOC_ENUM_INPUT ioctl
> >>>>> + *
> >>>>> + * Plug this function in vidioc_enum_input field of the struct
> >>>>> v4l2_ioctl_ops to
> >>>>> + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
> >>>>> + */
> >>>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> >>>>> +				  struct v4l2_input *i);
> >>>>> +
> >>>>> +/**
> >>>>> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT
> >>>>> ioctl
> >>>>> + *
> >>>>> + * Plug this function in vidioc_g_input field of the struct
> >>>>> v4l2_ioctl_ops
> >>>>> + * when using v4l2_ioctl_enum_input_default
> >>>>> + */
> >>>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
> >>>>> unsigned int *i);
> >>>>> +
> >>>>> +/**
> >>>>> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT
> >>>>> ioctl
> >>>>> + *
> >>>>> + * Plug this function in vidioc_s_input field of the struct
> >>>>> v4l2_ioctl_ops
> >>>>> + * when using v4l2_ioctl_enum_input_default
> >>>>> + */
> >>>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
> >>>>> unsigned int i);
> >>>>> +
> >>>>> /* names for fancy debug output */
> >>>>> extern const char *v4l2_field_names[];
> >>>>> extern const char *v4l2_type_names[];
> >>>>> diff --git a/include/uapi/linux/videodev2.h
> >>>>> b/include/uapi/linux/videodev2.h index 316be62..c10bbde 100644
> >>>>> --- a/include/uapi/linux/videodev2.h
> >>>>> +++ b/include/uapi/linux/videodev2.h
> >>>>> @@ -1477,6 +1477,7 @@ struct v4l2_input {
> >>>>> };
> >>>>> 
> >>>>> /*  Values for the 'type' field */
> >>>>> +#define V4L2_INPUT_TYPE_DEFAULT		0
> >>>> 
> >>>> I don't think we should add a new type here.
> >>> 
> >>> I second that. Just replied the same thing on a comment from Sakari to
> >>> patch 2/2.
> >>> 
> >>>> The whole point of this exercise is to
> >>>> allow existing apps to work, and existing apps expect a TYPE_CAMERA.
> >>>> 
> >>>> BTW, don't read to much in the term 'CAMERA': it's really a catch all
> >>>> for any video stream, whether it is from a sensor, composite input,
> >>>> HDMI, etc.
> >>>> 
> >>>> The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly
> >>>> out of date :-(
> >>>
> >>> Yeah, we always used "CAMERA" to mean NOT_TUNER.
> >>> 
> >>>> Rather than creating a new type I would add a new V4L2_IN_CAP_MC
> >>>> capability that indicates that this input is controlled via the media
> >>>> controller. That makes much more sense and it wouldn't potentially
> >>>> break applications.
> >>>> 
> >>>> Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC
> >>>> and use V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible
> >>>> outdated name and the spec is again out of date).
> >>> 
> >>> I don't see any sense on distinguishing IN and OUT for MC. I mean:
> >>> should
> >>> we ever allow that any driver to have their inputs controlled via V4L2
> >>> API,
> >>> and their outputs controlled via MC (or vice-versa)? I don't think so.
> >>> 
> >>> Either all device inputs/outputs are controlled via V4L2 or via MC. So,
> >>> let's call it just V4L2_CAP_MC.
> >>> 
> >>>> Regarding the name: should we use the name stored in struct
> >>>> video_device instead? That might be more descriptive.
> >>> 
> >>> Makes sense to me.
> >>> 
> >>>> Alternatively use something like "Media Controller Input".
> >>> 
> >>> Yeah, we could do that, if V4L2_CAP_MC. if not, we can use the name
> >>> stored at video_device.
> >> 
> >> Just to clarify: the V4L2_CAP_MC would indicated that the media
> >> controller
> >> is enabled in general? Or just for inputs and outputs?
> > 
> > I let Mauro and Hans to comment on their own behalf, but I think whatever
> > is communicated through the input IOCTLs should be applicable to inputs
> > only.
> > 
> > The fact that the video device is a part of an MC graph could be conveyed
> > using a capability flag. Or by providing information on the media device
> > node, something that has been proposed earlier on. Either is out of the
> > scope of this patchset IMO, but should be addressed separately.
> > 
> >> If it is the first case, not necessarily the inputs/outputs are
> >> controlled
> >> via MC (we can still have a MC capable driver, but inputs/outputs
> >> controlled via V4L2 no? When the driver doesn't offer the necessary link
> >> controls via MC), then checking if V4L2_CAP_MC then use the name "Media
> >> Controller Input" is not enough.
> >> If it is the second case, then wouldn't it be better to name it
> >> V4L2_CAP_MC_IO ?
> 
> It's the second case. I would probably name it V4L2_CAP_IO_MC. But I also
> feel that we need a V4L2_IN/OUT_CAP_MC as well. Because the existing
> V4L2_IN/OUT_CAP flags make no sense in this case.

I'm not sure to see any use for V4L2_IN/OUT_CAP_MC from an application point 
of view. I'd rather avoid adding flags unless there's a real use for them.

> In v4l2-ioctl.c we can just check V4L2_CAP_IO_MC in
> video_device->device_caps, and, if present, implement dummy
> s/g/enum_in/output ioctls. The enum ioctl would set V4L2_IN/OUT_CAP_MC and
> use video_device->name as the description.

We still haven't agreed on what the description should be used for. If it is 
to be presented to a user through an input/output selection UI, video_device-
>name doesn't seem very useful.
Helen Koike June 6, 2017, 4:22 p.m. UTC | #17
Hi All,

Just reviving this discussion

On 2017-04-07 06:53 AM, Laurent Pinchart wrote:
> Hi Hans,
>
> On Friday 07 Apr 2017 11:46:48 Hans Verkuil wrote:
>> On 04/04/2017 03:22 PM, Sakari Ailus wrote:
>>> On Mon, Apr 03, 2017 at 12:11:54PM -0300, Helen Koike wrote:
>>>> On 2017-03-31 06:57 AM, Mauro Carvalho Chehab wrote:
>>>>> Em Fri, 31 Mar 2017 10:29:04 +0200 Hans Verkuil escreveu:
>>>>>> On 30/03/17 18:02, Helen Koike wrote:
>>>>>>> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to
>>>>>>> be used when no inputs are available in the device
>>>>>>>
>>>>>>> Signed-off-by: Helen Koike <helen.koike@collabora.com>
>>>>>>> ---
>>>>>>> drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
>>>>>>> include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
>>>>>>> include/uapi/linux/videodev2.h       |  1 +
>>>>>>> 3 files changed, 54 insertions(+)
>>>>>>>
>>>>>>> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>>>> b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
>>>>>>> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>>>> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>>>> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct
>>>>>>> video_device *vdev, unsigned cmd)
>>>>>>> 	return vdev->lock;
>>>>>>> }
>>>>>>>
>>>>>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>>>>>> +				  struct v4l2_input *i)
>>>>>>> +{
>>>>>>> +	if (i->index > 0)
>>>>>>> +		return -EINVAL;
>>>>>>> +
>>>>>>> +	memset(i, 0, sizeof(*i));
>>>>>>> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
>>>>>>> +	strlcpy(i->name, "Default", sizeof(i->name));
>>>>>>> +
>>>>>>> +	return 0;
>>>>>>> +}
>>>>>>> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
>>>>>>> +
>>>>>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
>>>>>>> unsigned int *i)
>>>>>>> +{
>>>>>>> +	*i = 0;
>>>>>>> +	return 0;
>>>>>>> +}
>>>>>>> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
>>>>>>> +
>>>>>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
>>>>>>> unsigned int i)
>>>>>>> +{
>>>>>>> +	return i ? -EINVAL : 0;
>>>>>>> +}
>>>>>>> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
>>>>>>> +
>>>>>>> /* Common ioctl debug function. This function can be used by
>>>>>>>    external ioctl messages as well as internal V4L ioctl */
>>>>>>>
>>>>>>> void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
>>>>>>> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
>>>>>>> index 6cd94e5..accc470 100644
>>>>>>> --- a/include/media/v4l2-ioctl.h
>>>>>>> +++ b/include/media/v4l2-ioctl.h
>>>>>>> @@ -652,6 +652,32 @@ struct video_device;
>>>>>>>  */
>>>>>>>
>>>>>>> struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned
>>>>>>> int cmd);
>>>>>>> +
>>>>>>> +/**
>>>>>>> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for
>>>>>>> VIDIOC_ENUM_INPUT ioctl
>>>>>>> + *
>>>>>>> + * Plug this function in vidioc_enum_input field of the struct
>>>>>>> v4l2_ioctl_ops to
>>>>>>> + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
>>>>>>> + */
>>>>>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>>>>>> +				  struct v4l2_input *i);
>>>>>>> +
>>>>>>> +/**
>>>>>>> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT
>>>>>>> ioctl
>>>>>>> + *
>>>>>>> + * Plug this function in vidioc_g_input field of the struct
>>>>>>> v4l2_ioctl_ops
>>>>>>> + * when using v4l2_ioctl_enum_input_default
>>>>>>> + */
>>>>>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
>>>>>>> unsigned int *i);
>>>>>>> +
>>>>>>> +/**
>>>>>>> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT
>>>>>>> ioctl
>>>>>>> + *
>>>>>>> + * Plug this function in vidioc_s_input field of the struct
>>>>>>> v4l2_ioctl_ops
>>>>>>> + * when using v4l2_ioctl_enum_input_default
>>>>>>> + */
>>>>>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
>>>>>>> unsigned int i);
>>>>>>> +
>>>>>>> /* names for fancy debug output */
>>>>>>> extern const char *v4l2_field_names[];
>>>>>>> extern const char *v4l2_type_names[];
>>>>>>> diff --git a/include/uapi/linux/videodev2.h
>>>>>>> b/include/uapi/linux/videodev2.h index 316be62..c10bbde 100644
>>>>>>> --- a/include/uapi/linux/videodev2.h
>>>>>>> +++ b/include/uapi/linux/videodev2.h
>>>>>>> @@ -1477,6 +1477,7 @@ struct v4l2_input {
>>>>>>> };
>>>>>>>
>>>>>>> /*  Values for the 'type' field */
>>>>>>> +#define V4L2_INPUT_TYPE_DEFAULT		0
>>>>>>
>>>>>> I don't think we should add a new type here.
>>>>>
>>>>> I second that. Just replied the same thing on a comment from Sakari to
>>>>> patch 2/2.
>>>>>
>>>>>> The whole point of this exercise is to
>>>>>> allow existing apps to work, and existing apps expect a TYPE_CAMERA.
>>>>>>
>>>>>> BTW, don't read to much in the term 'CAMERA': it's really a catch all
>>>>>> for any video stream, whether it is from a sensor, composite input,
>>>>>> HDMI, etc.
>>>>>>
>>>>>> The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly
>>>>>> out of date :-(
>>>>>
>>>>> Yeah, we always used "CAMERA" to mean NOT_TUNER.
>>>>>
>>>>>> Rather than creating a new type I would add a new V4L2_IN_CAP_MC
>>>>>> capability that indicates that this input is controlled via the media
>>>>>> controller. That makes much more sense and it wouldn't potentially
>>>>>> break applications.
>>>>>>
>>>>>> Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC
>>>>>> and use V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible
>>>>>> outdated name and the spec is again out of date).
>>>>>
>>>>> I don't see any sense on distinguishing IN and OUT for MC. I mean:
>>>>> should
>>>>> we ever allow that any driver to have their inputs controlled via V4L2
>>>>> API,
>>>>> and their outputs controlled via MC (or vice-versa)? I don't think so.
>>>>>
>>>>> Either all device inputs/outputs are controlled via V4L2 or via MC. So,
>>>>> let's call it just V4L2_CAP_MC.
>>>>>
>>>>>> Regarding the name: should we use the name stored in struct
>>>>>> video_device instead? That might be more descriptive.
>>>>>
>>>>> Makes sense to me.
>>>>>
>>>>>> Alternatively use something like "Media Controller Input".
>>>>>
>>>>> Yeah, we could do that, if V4L2_CAP_MC. if not, we can use the name
>>>>> stored at video_device.
>>>>
>>>> Just to clarify: the V4L2_CAP_MC would indicated that the media
>>>> controller
>>>> is enabled in general? Or just for inputs and outputs?
>>>
>>> I let Mauro and Hans to comment on their own behalf, but I think whatever
>>> is communicated through the input IOCTLs should be applicable to inputs
>>> only.
>>>
>>> The fact that the video device is a part of an MC graph could be conveyed
>>> using a capability flag. Or by providing information on the media device
>>> node, something that has been proposed earlier on. Either is out of the
>>> scope of this patchset IMO, but should be addressed separately.
>>>
>>>> If it is the first case, not necessarily the inputs/outputs are
>>>> controlled
>>>> via MC (we can still have a MC capable driver, but inputs/outputs
>>>> controlled via V4L2 no? When the driver doesn't offer the necessary link
>>>> controls via MC), then checking if V4L2_CAP_MC then use the name "Media
>>>> Controller Input" is not enough.
>>>> If it is the second case, then wouldn't it be better to name it
>>>> V4L2_CAP_MC_IO ?
>>
>> It's the second case. I would probably name it V4L2_CAP_IO_MC. But I also
>> feel that we need a V4L2_IN/OUT_CAP_MC as well. Because the existing
>> V4L2_IN/OUT_CAP flags make no sense in this case.
>
> I'm not sure to see any use for V4L2_IN/OUT_CAP_MC from an application point
> of view. I'd rather avoid adding flags unless there's a real use for them.


Just to clarify, should this capability flag be set in struct 
v4l2_input/struct v4l2_output through VIDIOC_ENUMINPUT/, 
VIDIOC_ENUMOUTPUT?  Or should it be set in struct v4l2_capability 
through VIDIOC_QUERYCAP ?
Because if it is the first case, the I feel we should have two flags 
V4L2_IN/OUT_CAP_MC in the API to follow the current convention, but this 
kinda implies that we could have a driver that allows both flags to be 
set differently.
Setting a V4L2_IO_CAP_MC at struct v4l2_capability would avoid this 
interpretation.


>
>> In v4l2-ioctl.c we can just check V4L2_CAP_IO_MC in
>> video_device->device_caps, and, if present, implement dummy
>> s/g/enum_in/output ioctls. The enum ioctl would set V4L2_IN/OUT_CAP_MC and
>> use video_device->name as the description.
>
> We still haven't agreed on what the description should be used for. If it is
> to be presented to a user through an input/output selection UI, video_device-
>> name doesn't seem very useful.
>

video_device->name doesn't seems to let it clear that this input is 
controlled by the Media framework as it will be a different name for 
each driver, shouldn't this be a fixed name?


LN Koike
Hans Verkuil June 12, 2017, 9:26 a.m. UTC | #18
On 06/06/2017 06:22 PM, Helen Koike wrote:
> Hi All,
> 
> Just reviving this discussion
> 
> On 2017-04-07 06:53 AM, Laurent Pinchart wrote:
>> Hi Hans,
>>
>> On Friday 07 Apr 2017 11:46:48 Hans Verkuil wrote:
>>> On 04/04/2017 03:22 PM, Sakari Ailus wrote:
>>>> On Mon, Apr 03, 2017 at 12:11:54PM -0300, Helen Koike wrote:
>>>>> On 2017-03-31 06:57 AM, Mauro Carvalho Chehab wrote:
>>>>>> Em Fri, 31 Mar 2017 10:29:04 +0200 Hans Verkuil escreveu:
>>>>>>> On 30/03/17 18:02, Helen Koike wrote:
>>>>>>>> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to
>>>>>>>> be used when no inputs are available in the device
>>>>>>>>
>>>>>>>> Signed-off-by: Helen Koike <helen.koike@collabora.com>
>>>>>>>> ---
>>>>>>>> drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
>>>>>>>> include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
>>>>>>>> include/uapi/linux/videodev2.h       |  1 +
>>>>>>>> 3 files changed, 54 insertions(+)
>>>>>>>>
>>>>>>>> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>>>>> b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
>>>>>>>> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>>>>> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>>>>> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct
>>>>>>>> video_device *vdev, unsigned cmd)
>>>>>>>> 	return vdev->lock;
>>>>>>>> }
>>>>>>>>
>>>>>>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>>>>>>> +				  struct v4l2_input *i)
>>>>>>>> +{
>>>>>>>> +	if (i->index > 0)
>>>>>>>> +		return -EINVAL;
>>>>>>>> +
>>>>>>>> +	memset(i, 0, sizeof(*i));
>>>>>>>> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
>>>>>>>> +	strlcpy(i->name, "Default", sizeof(i->name));
>>>>>>>> +
>>>>>>>> +	return 0;
>>>>>>>> +}
>>>>>>>> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
>>>>>>>> +
>>>>>>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
>>>>>>>> unsigned int *i)
>>>>>>>> +{
>>>>>>>> +	*i = 0;
>>>>>>>> +	return 0;
>>>>>>>> +}
>>>>>>>> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
>>>>>>>> +
>>>>>>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
>>>>>>>> unsigned int i)
>>>>>>>> +{
>>>>>>>> +	return i ? -EINVAL : 0;
>>>>>>>> +}
>>>>>>>> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
>>>>>>>> +
>>>>>>>> /* Common ioctl debug function. This function can be used by
>>>>>>>>     external ioctl messages as well as internal V4L ioctl */
>>>>>>>>
>>>>>>>> void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
>>>>>>>> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
>>>>>>>> index 6cd94e5..accc470 100644
>>>>>>>> --- a/include/media/v4l2-ioctl.h
>>>>>>>> +++ b/include/media/v4l2-ioctl.h
>>>>>>>> @@ -652,6 +652,32 @@ struct video_device;
>>>>>>>>   */
>>>>>>>>
>>>>>>>> struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned
>>>>>>>> int cmd);
>>>>>>>> +
>>>>>>>> +/**
>>>>>>>> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for
>>>>>>>> VIDIOC_ENUM_INPUT ioctl
>>>>>>>> + *
>>>>>>>> + * Plug this function in vidioc_enum_input field of the struct
>>>>>>>> v4l2_ioctl_ops to
>>>>>>>> + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
>>>>>>>> + */
>>>>>>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>>>>>>> +				  struct v4l2_input *i);
>>>>>>>> +
>>>>>>>> +/**
>>>>>>>> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT
>>>>>>>> ioctl
>>>>>>>> + *
>>>>>>>> + * Plug this function in vidioc_g_input field of the struct
>>>>>>>> v4l2_ioctl_ops
>>>>>>>> + * when using v4l2_ioctl_enum_input_default
>>>>>>>> + */
>>>>>>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
>>>>>>>> unsigned int *i);
>>>>>>>> +
>>>>>>>> +/**
>>>>>>>> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT
>>>>>>>> ioctl
>>>>>>>> + *
>>>>>>>> + * Plug this function in vidioc_s_input field of the struct
>>>>>>>> v4l2_ioctl_ops
>>>>>>>> + * when using v4l2_ioctl_enum_input_default
>>>>>>>> + */
>>>>>>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
>>>>>>>> unsigned int i);
>>>>>>>> +
>>>>>>>> /* names for fancy debug output */
>>>>>>>> extern const char *v4l2_field_names[];
>>>>>>>> extern const char *v4l2_type_names[];
>>>>>>>> diff --git a/include/uapi/linux/videodev2.h
>>>>>>>> b/include/uapi/linux/videodev2.h index 316be62..c10bbde 100644
>>>>>>>> --- a/include/uapi/linux/videodev2.h
>>>>>>>> +++ b/include/uapi/linux/videodev2.h
>>>>>>>> @@ -1477,6 +1477,7 @@ struct v4l2_input {
>>>>>>>> };
>>>>>>>>
>>>>>>>> /*  Values for the 'type' field */
>>>>>>>> +#define V4L2_INPUT_TYPE_DEFAULT		0
>>>>>>>
>>>>>>> I don't think we should add a new type here.
>>>>>>
>>>>>> I second that. Just replied the same thing on a comment from Sakari to
>>>>>> patch 2/2.
>>>>>>
>>>>>>> The whole point of this exercise is to
>>>>>>> allow existing apps to work, and existing apps expect a TYPE_CAMERA.
>>>>>>>
>>>>>>> BTW, don't read to much in the term 'CAMERA': it's really a catch all
>>>>>>> for any video stream, whether it is from a sensor, composite input,
>>>>>>> HDMI, etc.
>>>>>>>
>>>>>>> The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly
>>>>>>> out of date :-(
>>>>>>
>>>>>> Yeah, we always used "CAMERA" to mean NOT_TUNER.
>>>>>>
>>>>>>> Rather than creating a new type I would add a new V4L2_IN_CAP_MC
>>>>>>> capability that indicates that this input is controlled via the media
>>>>>>> controller. That makes much more sense and it wouldn't potentially
>>>>>>> break applications.
>>>>>>>
>>>>>>> Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC
>>>>>>> and use V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible
>>>>>>> outdated name and the spec is again out of date).
>>>>>>
>>>>>> I don't see any sense on distinguishing IN and OUT for MC. I mean:
>>>>>> should
>>>>>> we ever allow that any driver to have their inputs controlled via V4L2
>>>>>> API,
>>>>>> and their outputs controlled via MC (or vice-versa)? I don't think so.
>>>>>>
>>>>>> Either all device inputs/outputs are controlled via V4L2 or via MC. So,
>>>>>> let's call it just V4L2_CAP_MC.
>>>>>>
>>>>>>> Regarding the name: should we use the name stored in struct
>>>>>>> video_device instead? That might be more descriptive.
>>>>>>
>>>>>> Makes sense to me.
>>>>>>
>>>>>>> Alternatively use something like "Media Controller Input".
>>>>>>
>>>>>> Yeah, we could do that, if V4L2_CAP_MC. if not, we can use the name
>>>>>> stored at video_device.
>>>>>
>>>>> Just to clarify: the V4L2_CAP_MC would indicated that the media
>>>>> controller
>>>>> is enabled in general? Or just for inputs and outputs?
>>>>
>>>> I let Mauro and Hans to comment on their own behalf, but I think whatever
>>>> is communicated through the input IOCTLs should be applicable to inputs
>>>> only.
>>>>
>>>> The fact that the video device is a part of an MC graph could be conveyed
>>>> using a capability flag. Or by providing information on the media device
>>>> node, something that has been proposed earlier on. Either is out of the
>>>> scope of this patchset IMO, but should be addressed separately.
>>>>
>>>>> If it is the first case, not necessarily the inputs/outputs are
>>>>> controlled
>>>>> via MC (we can still have a MC capable driver, but inputs/outputs
>>>>> controlled via V4L2 no? When the driver doesn't offer the necessary link
>>>>> controls via MC), then checking if V4L2_CAP_MC then use the name "Media
>>>>> Controller Input" is not enough.
>>>>> If it is the second case, then wouldn't it be better to name it
>>>>> V4L2_CAP_MC_IO ?
>>>
>>> It's the second case. I would probably name it V4L2_CAP_IO_MC. But I also
>>> feel that we need a V4L2_IN/OUT_CAP_MC as well. Because the existing
>>> V4L2_IN/OUT_CAP flags make no sense in this case.
>>
>> I'm not sure to see any use for V4L2_IN/OUT_CAP_MC from an application point
>> of view. I'd rather avoid adding flags unless there's a real use for them.
> 
> 
> Just to clarify, should this capability flag be set in struct
> v4l2_input/struct v4l2_output through VIDIOC_ENUMINPUT/,
> VIDIOC_ENUMOUTPUT?  Or should it be set in struct v4l2_capability
> through VIDIOC_QUERYCAP ?
> Because if it is the first case, the I feel we should have two flags
> V4L2_IN/OUT_CAP_MC in the API to follow the current convention, but this
> kinda implies that we could have a driver that allows both flags to be
> set differently.
> Setting a V4L2_IO_CAP_MC at struct v4l2_capability would avoid this
> interpretation.

There are two different capability flags being discussed here.

The first is V4L2_CAP_IO_MC for struct v4l2_capability: if set, then the
inputs and outputs are controlled by the media controller and not through
the video device.

I think everyone agrees with that capability flag.

The second capability flag was for struct v4l2_input/output, but not everyone
agreed with that, so let's just drop that.

> 
> 
>>
>>> In v4l2-ioctl.c we can just check V4L2_CAP_IO_MC in
>>> video_device->device_caps, and, if present, implement dummy
>>> s/g/enum_in/output ioctls. The enum ioctl would set V4L2_IN/OUT_CAP_MC and
>>> use video_device->name as the description.
>>
>> We still haven't agreed on what the description should be used for. If it is
>> to be presented to a user through an input/output selection UI, video_device-
>>> name doesn't seem very useful.
>>
> 
> video_device->name doesn't seems to let it clear that this input is
> controlled by the Media framework as it will be a different name for
> each driver, shouldn't this be a fixed name?

If you have multiple video input nodes, then they would all have an input called
"Media Controller Input", which to me seems very uninformative. The new V4L2_CAP_IO_MC
already communicates that you need the MC, and applications can use that to put up
some proper explanation. Let's be honest: for the average user "Media Controller Input"
is gibberish anyway. And since all video input devices use the same input description
it is even more confusing.

If everyone prefers this to using the video_device name, then I won't block it. But
I think it is a bad idea :-)

Regards,

	Hans
Sakari Ailus June 30, 2017, 11:03 a.m. UTC | #19
Hi Hans and others,

On Mon, Jun 12, 2017 at 11:26:12AM +0200, Hans Verkuil wrote:
> On 06/06/2017 06:22 PM, Helen Koike wrote:
> > Hi All,
> > 
> > Just reviving this discussion
> > 
> > On 2017-04-07 06:53 AM, Laurent Pinchart wrote:
> > > Hi Hans,
> > > 
> > > On Friday 07 Apr 2017 11:46:48 Hans Verkuil wrote:
> > > > On 04/04/2017 03:22 PM, Sakari Ailus wrote:
> > > > > On Mon, Apr 03, 2017 at 12:11:54PM -0300, Helen Koike wrote:
> > > > > > On 2017-03-31 06:57 AM, Mauro Carvalho Chehab wrote:
> > > > > > > Em Fri, 31 Mar 2017 10:29:04 +0200 Hans Verkuil escreveu:
> > > > > > > > On 30/03/17 18:02, Helen Koike wrote:
> > > > > > > > > Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to
> > > > > > > > > be used when no inputs are available in the device
> > > > > > > > > 
> > > > > > > > > Signed-off-by: Helen Koike <helen.koike@collabora.com>
> > > > > > > > > ---
> > > > > > > > > drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
> > > > > > > > > include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
> > > > > > > > > include/uapi/linux/videodev2.h       |  1 +
> > > > > > > > > 3 files changed, 54 insertions(+)
> > > > > > > > > 
> > > > > > > > > diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
> > > > > > > > > b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
> > > > > > > > > --- a/drivers/media/v4l2-core/v4l2-ioctl.c
> > > > > > > > > +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
> > > > > > > > > @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct
> > > > > > > > > video_device *vdev, unsigned cmd)
> > > > > > > > > 	return vdev->lock;
> > > > > > > > > }
> > > > > > > > > 
> > > > > > > > > +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> > > > > > > > > +				  struct v4l2_input *i)
> > > > > > > > > +{
> > > > > > > > > +	if (i->index > 0)
> > > > > > > > > +		return -EINVAL;
> > > > > > > > > +
> > > > > > > > > +	memset(i, 0, sizeof(*i));
> > > > > > > > > +	i->type = V4L2_INPUT_TYPE_DEFAULT;
> > > > > > > > > +	strlcpy(i->name, "Default", sizeof(i->name));
> > > > > > > > > +
> > > > > > > > > +	return 0;
> > > > > > > > > +}
> > > > > > > > > +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
> > > > > > > > > +
> > > > > > > > > +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
> > > > > > > > > unsigned int *i)
> > > > > > > > > +{
> > > > > > > > > +	*i = 0;
> > > > > > > > > +	return 0;
> > > > > > > > > +}
> > > > > > > > > +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
> > > > > > > > > +
> > > > > > > > > +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
> > > > > > > > > unsigned int i)
> > > > > > > > > +{
> > > > > > > > > +	return i ? -EINVAL : 0;
> > > > > > > > > +}
> > > > > > > > > +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
> > > > > > > > > +
> > > > > > > > > /* Common ioctl debug function. This function can be used by
> > > > > > > > >     external ioctl messages as well as internal V4L ioctl */
> > > > > > > > > 
> > > > > > > > > void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
> > > > > > > > > diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
> > > > > > > > > index 6cd94e5..accc470 100644
> > > > > > > > > --- a/include/media/v4l2-ioctl.h
> > > > > > > > > +++ b/include/media/v4l2-ioctl.h
> > > > > > > > > @@ -652,6 +652,32 @@ struct video_device;
> > > > > > > > >   */
> > > > > > > > > 
> > > > > > > > > struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned
> > > > > > > > > int cmd);
> > > > > > > > > +
> > > > > > > > > +/**
> > > > > > > > > + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for
> > > > > > > > > VIDIOC_ENUM_INPUT ioctl
> > > > > > > > > + *
> > > > > > > > > + * Plug this function in vidioc_enum_input field of the struct
> > > > > > > > > v4l2_ioctl_ops to
> > > > > > > > > + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
> > > > > > > > > + */
> > > > > > > > > +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> > > > > > > > > +				  struct v4l2_input *i);
> > > > > > > > > +
> > > > > > > > > +/**
> > > > > > > > > + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT
> > > > > > > > > ioctl
> > > > > > > > > + *
> > > > > > > > > + * Plug this function in vidioc_g_input field of the struct
> > > > > > > > > v4l2_ioctl_ops
> > > > > > > > > + * when using v4l2_ioctl_enum_input_default
> > > > > > > > > + */
> > > > > > > > > +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
> > > > > > > > > unsigned int *i);
> > > > > > > > > +
> > > > > > > > > +/**
> > > > > > > > > + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT
> > > > > > > > > ioctl
> > > > > > > > > + *
> > > > > > > > > + * Plug this function in vidioc_s_input field of the struct
> > > > > > > > > v4l2_ioctl_ops
> > > > > > > > > + * when using v4l2_ioctl_enum_input_default
> > > > > > > > > + */
> > > > > > > > > +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
> > > > > > > > > unsigned int i);
> > > > > > > > > +
> > > > > > > > > /* names for fancy debug output */
> > > > > > > > > extern const char *v4l2_field_names[];
> > > > > > > > > extern const char *v4l2_type_names[];
> > > > > > > > > diff --git a/include/uapi/linux/videodev2.h
> > > > > > > > > b/include/uapi/linux/videodev2.h index 316be62..c10bbde 100644
> > > > > > > > > --- a/include/uapi/linux/videodev2.h
> > > > > > > > > +++ b/include/uapi/linux/videodev2.h
> > > > > > > > > @@ -1477,6 +1477,7 @@ struct v4l2_input {
> > > > > > > > > };
> > > > > > > > > 
> > > > > > > > > /*  Values for the 'type' field */
> > > > > > > > > +#define V4L2_INPUT_TYPE_DEFAULT		0
> > > > > > > > 
> > > > > > > > I don't think we should add a new type here.
> > > > > > > 
> > > > > > > I second that. Just replied the same thing on a comment from Sakari to
> > > > > > > patch 2/2.
> > > > > > > 
> > > > > > > > The whole point of this exercise is to
> > > > > > > > allow existing apps to work, and existing apps expect a TYPE_CAMERA.
> > > > > > > > 
> > > > > > > > BTW, don't read to much in the term 'CAMERA': it's really a catch all
> > > > > > > > for any video stream, whether it is from a sensor, composite input,
> > > > > > > > HDMI, etc.
> > > > > > > > 
> > > > > > > > The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly
> > > > > > > > out of date :-(
> > > > > > > 
> > > > > > > Yeah, we always used "CAMERA" to mean NOT_TUNER.
> > > > > > > 
> > > > > > > > Rather than creating a new type I would add a new V4L2_IN_CAP_MC
> > > > > > > > capability that indicates that this input is controlled via the media
> > > > > > > > controller. That makes much more sense and it wouldn't potentially
> > > > > > > > break applications.
> > > > > > > > 
> > > > > > > > Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC
> > > > > > > > and use V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible
> > > > > > > > outdated name and the spec is again out of date).
> > > > > > > 
> > > > > > > I don't see any sense on distinguishing IN and OUT for MC. I mean:
> > > > > > > should
> > > > > > > we ever allow that any driver to have their inputs controlled via V4L2
> > > > > > > API,
> > > > > > > and their outputs controlled via MC (or vice-versa)? I don't think so.
> > > > > > > 
> > > > > > > Either all device inputs/outputs are controlled via V4L2 or via MC. So,
> > > > > > > let's call it just V4L2_CAP_MC.
> > > > > > > 
> > > > > > > > Regarding the name: should we use the name stored in struct
> > > > > > > > video_device instead? That might be more descriptive.
> > > > > > > 
> > > > > > > Makes sense to me.
> > > > > > > 
> > > > > > > > Alternatively use something like "Media Controller Input".
> > > > > > > 
> > > > > > > Yeah, we could do that, if V4L2_CAP_MC. if not, we can use the name
> > > > > > > stored at video_device.
> > > > > > 
> > > > > > Just to clarify: the V4L2_CAP_MC would indicated that the media
> > > > > > controller
> > > > > > is enabled in general? Or just for inputs and outputs?
> > > > > 
> > > > > I let Mauro and Hans to comment on their own behalf, but I think whatever
> > > > > is communicated through the input IOCTLs should be applicable to inputs
> > > > > only.
> > > > > 
> > > > > The fact that the video device is a part of an MC graph could be conveyed
> > > > > using a capability flag. Or by providing information on the media device
> > > > > node, something that has been proposed earlier on. Either is out of the
> > > > > scope of this patchset IMO, but should be addressed separately.
> > > > > 
> > > > > > If it is the first case, not necessarily the inputs/outputs are
> > > > > > controlled
> > > > > > via MC (we can still have a MC capable driver, but inputs/outputs
> > > > > > controlled via V4L2 no? When the driver doesn't offer the necessary link
> > > > > > controls via MC), then checking if V4L2_CAP_MC then use the name "Media
> > > > > > Controller Input" is not enough.
> > > > > > If it is the second case, then wouldn't it be better to name it
> > > > > > V4L2_CAP_MC_IO ?
> > > > 
> > > > It's the second case. I would probably name it V4L2_CAP_IO_MC. But I also
> > > > feel that we need a V4L2_IN/OUT_CAP_MC as well. Because the existing
> > > > V4L2_IN/OUT_CAP flags make no sense in this case.
> > > 
> > > I'm not sure to see any use for V4L2_IN/OUT_CAP_MC from an application point
> > > of view. I'd rather avoid adding flags unless there's a real use for them.
> > 
> > 
> > Just to clarify, should this capability flag be set in struct
> > v4l2_input/struct v4l2_output through VIDIOC_ENUMINPUT/,
> > VIDIOC_ENUMOUTPUT?  Or should it be set in struct v4l2_capability
> > through VIDIOC_QUERYCAP ?
> > Because if it is the first case, the I feel we should have two flags
> > V4L2_IN/OUT_CAP_MC in the API to follow the current convention, but this
> > kinda implies that we could have a driver that allows both flags to be
> > set differently.
> > Setting a V4L2_IO_CAP_MC at struct v4l2_capability would avoid this
> > interpretation.
> 
> There are two different capability flags being discussed here.
> 
> The first is V4L2_CAP_IO_MC for struct v4l2_capability: if set, then the
> inputs and outputs are controlled by the media controller and not through
> the video device.
> 
> I think everyone agrees with that capability flag.

What exactly would that capability flag tell?

That the driver implements Media controller support? Or that any pipeline
configuration works through Media controller?

We've discussed device profiles in the past. Should this capability flag
tell about a device profile? We haven't documented the profiles, but in
practice the V4L2 video nodes are a data interface only on MC-enabled
drivers. That suggests that if there is input selection to be done, that
would take place on a control interface, i.e. on a V4L2 sub-device node.

I think it'd be good to have a single flag for this rather than small hints
here and there of what kind of an interface the user is dealing with.
Hans Verkuil June 30, 2017, 11:13 a.m. UTC | #20
On 30/06/17 13:03, Sakari Ailus wrote:
> Hi Hans and others,
> 
> On Mon, Jun 12, 2017 at 11:26:12AM +0200, Hans Verkuil wrote:
>> On 06/06/2017 06:22 PM, Helen Koike wrote:
>>> Hi All,
>>>
>>> Just reviving this discussion
>>>
>>> On 2017-04-07 06:53 AM, Laurent Pinchart wrote:
>>>> Hi Hans,
>>>>
>>>> On Friday 07 Apr 2017 11:46:48 Hans Verkuil wrote:
>>>>> On 04/04/2017 03:22 PM, Sakari Ailus wrote:
>>>>>> On Mon, Apr 03, 2017 at 12:11:54PM -0300, Helen Koike wrote:
>>>>>>> On 2017-03-31 06:57 AM, Mauro Carvalho Chehab wrote:
>>>>>>>> Em Fri, 31 Mar 2017 10:29:04 +0200 Hans Verkuil escreveu:
>>>>>>>>> On 30/03/17 18:02, Helen Koike wrote:
>>>>>>>>>> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to
>>>>>>>>>> be used when no inputs are available in the device
>>>>>>>>>>
>>>>>>>>>> Signed-off-by: Helen Koike <helen.koike@collabora.com>
>>>>>>>>>> ---
>>>>>>>>>> drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
>>>>>>>>>> include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
>>>>>>>>>> include/uapi/linux/videodev2.h       |  1 +
>>>>>>>>>> 3 files changed, 54 insertions(+)
>>>>>>>>>>
>>>>>>>>>> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>>>>>>> b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
>>>>>>>>>> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>>>>>>> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
>>>>>>>>>> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct
>>>>>>>>>> video_device *vdev, unsigned cmd)
>>>>>>>>>> 	return vdev->lock;
>>>>>>>>>> }
>>>>>>>>>>
>>>>>>>>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>>>>>>>>> +				  struct v4l2_input *i)
>>>>>>>>>> +{
>>>>>>>>>> +	if (i->index > 0)
>>>>>>>>>> +		return -EINVAL;
>>>>>>>>>> +
>>>>>>>>>> +	memset(i, 0, sizeof(*i));
>>>>>>>>>> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
>>>>>>>>>> +	strlcpy(i->name, "Default", sizeof(i->name));
>>>>>>>>>> +
>>>>>>>>>> +	return 0;
>>>>>>>>>> +}
>>>>>>>>>> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
>>>>>>>>>> +
>>>>>>>>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
>>>>>>>>>> unsigned int *i)
>>>>>>>>>> +{
>>>>>>>>>> +	*i = 0;
>>>>>>>>>> +	return 0;
>>>>>>>>>> +}
>>>>>>>>>> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
>>>>>>>>>> +
>>>>>>>>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
>>>>>>>>>> unsigned int i)
>>>>>>>>>> +{
>>>>>>>>>> +	return i ? -EINVAL : 0;
>>>>>>>>>> +}
>>>>>>>>>> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
>>>>>>>>>> +
>>>>>>>>>> /* Common ioctl debug function. This function can be used by
>>>>>>>>>>     external ioctl messages as well as internal V4L ioctl */
>>>>>>>>>>
>>>>>>>>>> void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
>>>>>>>>>> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
>>>>>>>>>> index 6cd94e5..accc470 100644
>>>>>>>>>> --- a/include/media/v4l2-ioctl.h
>>>>>>>>>> +++ b/include/media/v4l2-ioctl.h
>>>>>>>>>> @@ -652,6 +652,32 @@ struct video_device;
>>>>>>>>>>   */
>>>>>>>>>>
>>>>>>>>>> struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned
>>>>>>>>>> int cmd);
>>>>>>>>>> +
>>>>>>>>>> +/**
>>>>>>>>>> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for
>>>>>>>>>> VIDIOC_ENUM_INPUT ioctl
>>>>>>>>>> + *
>>>>>>>>>> + * Plug this function in vidioc_enum_input field of the struct
>>>>>>>>>> v4l2_ioctl_ops to
>>>>>>>>>> + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
>>>>>>>>>> + */
>>>>>>>>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
>>>>>>>>>> +				  struct v4l2_input *i);
>>>>>>>>>> +
>>>>>>>>>> +/**
>>>>>>>>>> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT
>>>>>>>>>> ioctl
>>>>>>>>>> + *
>>>>>>>>>> + * Plug this function in vidioc_g_input field of the struct
>>>>>>>>>> v4l2_ioctl_ops
>>>>>>>>>> + * when using v4l2_ioctl_enum_input_default
>>>>>>>>>> + */
>>>>>>>>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
>>>>>>>>>> unsigned int *i);
>>>>>>>>>> +
>>>>>>>>>> +/**
>>>>>>>>>> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT
>>>>>>>>>> ioctl
>>>>>>>>>> + *
>>>>>>>>>> + * Plug this function in vidioc_s_input field of the struct
>>>>>>>>>> v4l2_ioctl_ops
>>>>>>>>>> + * when using v4l2_ioctl_enum_input_default
>>>>>>>>>> + */
>>>>>>>>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
>>>>>>>>>> unsigned int i);
>>>>>>>>>> +
>>>>>>>>>> /* names for fancy debug output */
>>>>>>>>>> extern const char *v4l2_field_names[];
>>>>>>>>>> extern const char *v4l2_type_names[];
>>>>>>>>>> diff --git a/include/uapi/linux/videodev2.h
>>>>>>>>>> b/include/uapi/linux/videodev2.h index 316be62..c10bbde 100644
>>>>>>>>>> --- a/include/uapi/linux/videodev2.h
>>>>>>>>>> +++ b/include/uapi/linux/videodev2.h
>>>>>>>>>> @@ -1477,6 +1477,7 @@ struct v4l2_input {
>>>>>>>>>> };
>>>>>>>>>>
>>>>>>>>>> /*  Values for the 'type' field */
>>>>>>>>>> +#define V4L2_INPUT_TYPE_DEFAULT		0
>>>>>>>>>
>>>>>>>>> I don't think we should add a new type here.
>>>>>>>>
>>>>>>>> I second that. Just replied the same thing on a comment from Sakari to
>>>>>>>> patch 2/2.
>>>>>>>>
>>>>>>>>> The whole point of this exercise is to
>>>>>>>>> allow existing apps to work, and existing apps expect a TYPE_CAMERA.
>>>>>>>>>
>>>>>>>>> BTW, don't read to much in the term 'CAMERA': it's really a catch all
>>>>>>>>> for any video stream, whether it is from a sensor, composite input,
>>>>>>>>> HDMI, etc.
>>>>>>>>>
>>>>>>>>> The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly
>>>>>>>>> out of date :-(
>>>>>>>>
>>>>>>>> Yeah, we always used "CAMERA" to mean NOT_TUNER.
>>>>>>>>
>>>>>>>>> Rather than creating a new type I would add a new V4L2_IN_CAP_MC
>>>>>>>>> capability that indicates that this input is controlled via the media
>>>>>>>>> controller. That makes much more sense and it wouldn't potentially
>>>>>>>>> break applications.
>>>>>>>>>
>>>>>>>>> Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC
>>>>>>>>> and use V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible
>>>>>>>>> outdated name and the spec is again out of date).
>>>>>>>>
>>>>>>>> I don't see any sense on distinguishing IN and OUT for MC. I mean:
>>>>>>>> should
>>>>>>>> we ever allow that any driver to have their inputs controlled via V4L2
>>>>>>>> API,
>>>>>>>> and their outputs controlled via MC (or vice-versa)? I don't think so.
>>>>>>>>
>>>>>>>> Either all device inputs/outputs are controlled via V4L2 or via MC. So,
>>>>>>>> let's call it just V4L2_CAP_MC.
>>>>>>>>
>>>>>>>>> Regarding the name: should we use the name stored in struct
>>>>>>>>> video_device instead? That might be more descriptive.
>>>>>>>>
>>>>>>>> Makes sense to me.
>>>>>>>>
>>>>>>>>> Alternatively use something like "Media Controller Input".
>>>>>>>>
>>>>>>>> Yeah, we could do that, if V4L2_CAP_MC. if not, we can use the name
>>>>>>>> stored at video_device.
>>>>>>>
>>>>>>> Just to clarify: the V4L2_CAP_MC would indicated that the media
>>>>>>> controller
>>>>>>> is enabled in general? Or just for inputs and outputs?
>>>>>>
>>>>>> I let Mauro and Hans to comment on their own behalf, but I think whatever
>>>>>> is communicated through the input IOCTLs should be applicable to inputs
>>>>>> only.
>>>>>>
>>>>>> The fact that the video device is a part of an MC graph could be conveyed
>>>>>> using a capability flag. Or by providing information on the media device
>>>>>> node, something that has been proposed earlier on. Either is out of the
>>>>>> scope of this patchset IMO, but should be addressed separately.
>>>>>>
>>>>>>> If it is the first case, not necessarily the inputs/outputs are
>>>>>>> controlled
>>>>>>> via MC (we can still have a MC capable driver, but inputs/outputs
>>>>>>> controlled via V4L2 no? When the driver doesn't offer the necessary link
>>>>>>> controls via MC), then checking if V4L2_CAP_MC then use the name "Media
>>>>>>> Controller Input" is not enough.
>>>>>>> If it is the second case, then wouldn't it be better to name it
>>>>>>> V4L2_CAP_MC_IO ?
>>>>>
>>>>> It's the second case. I would probably name it V4L2_CAP_IO_MC. But I also
>>>>> feel that we need a V4L2_IN/OUT_CAP_MC as well. Because the existing
>>>>> V4L2_IN/OUT_CAP flags make no sense in this case.
>>>>
>>>> I'm not sure to see any use for V4L2_IN/OUT_CAP_MC from an application point
>>>> of view. I'd rather avoid adding flags unless there's a real use for them.
>>>
>>>
>>> Just to clarify, should this capability flag be set in struct
>>> v4l2_input/struct v4l2_output through VIDIOC_ENUMINPUT/,
>>> VIDIOC_ENUMOUTPUT?  Or should it be set in struct v4l2_capability
>>> through VIDIOC_QUERYCAP ?
>>> Because if it is the first case, the I feel we should have two flags
>>> V4L2_IN/OUT_CAP_MC in the API to follow the current convention, but this
>>> kinda implies that we could have a driver that allows both flags to be
>>> set differently.
>>> Setting a V4L2_IO_CAP_MC at struct v4l2_capability would avoid this
>>> interpretation.
>>
>> There are two different capability flags being discussed here.
>>
>> The first is V4L2_CAP_IO_MC for struct v4l2_capability: if set, then the
>> inputs and outputs are controlled by the media controller and not through
>> the video device.
>>
>> I think everyone agrees with that capability flag.
> 
> What exactly would that capability flag tell?
> 
> That the driver implements Media controller support? Or that any pipeline
> configuration works through Media controller?

The second. Otherwise the capability flag would be V4L2_CAP_MC :-)

Note that a driver can implement the MC, but not need it to setup the
pipeline. I.e. adding the MC to bttv would make no change to how you select
an input.

> We've discussed device profiles in the past. Should this capability flag
> tell about a device profile? We haven't documented the profiles, but in
> practice the V4L2 video nodes are a data interface only on MC-enabled
> drivers. That suggests that if there is input selection to be done, that
> would take place on a control interface, i.e. on a V4L2 sub-device node.
> 
> I think it'd be good to have a single flag for this rather than small hints
> here and there of what kind of an interface the user is dealing with.
> 

Well, the device profile here is that you need to use the MC to configure
the pipeline for this input as opposed to being able to just use S_INPUT.

Regards,

	Hans
Sakari Ailus June 30, 2017, 1:49 p.m. UTC | #21
On Fri, Jun 30, 2017 at 01:13:40PM +0200, Hans Verkuil wrote:
> On 30/06/17 13:03, Sakari Ailus wrote:
> > Hi Hans and others,
> > 
> > On Mon, Jun 12, 2017 at 11:26:12AM +0200, Hans Verkuil wrote:
> >> On 06/06/2017 06:22 PM, Helen Koike wrote:
> >>> Hi All,
> >>>
> >>> Just reviving this discussion
> >>>
> >>> On 2017-04-07 06:53 AM, Laurent Pinchart wrote:
> >>>> Hi Hans,
> >>>>
> >>>> On Friday 07 Apr 2017 11:46:48 Hans Verkuil wrote:
> >>>>> On 04/04/2017 03:22 PM, Sakari Ailus wrote:
> >>>>>> On Mon, Apr 03, 2017 at 12:11:54PM -0300, Helen Koike wrote:
> >>>>>>> On 2017-03-31 06:57 AM, Mauro Carvalho Chehab wrote:
> >>>>>>>> Em Fri, 31 Mar 2017 10:29:04 +0200 Hans Verkuil escreveu:
> >>>>>>>>> On 30/03/17 18:02, Helen Koike wrote:
> >>>>>>>>>> Add V4L2_INPUT_TYPE_DEFAULT and helpers functions for input ioctls to
> >>>>>>>>>> be used when no inputs are available in the device
> >>>>>>>>>>
> >>>>>>>>>> Signed-off-by: Helen Koike <helen.koike@collabora.com>
> >>>>>>>>>> ---
> >>>>>>>>>> drivers/media/v4l2-core/v4l2-ioctl.c | 27 +++++++++++++++++++++++++++
> >>>>>>>>>> include/media/v4l2-ioctl.h           | 26 ++++++++++++++++++++++++++
> >>>>>>>>>> include/uapi/linux/videodev2.h       |  1 +
> >>>>>>>>>> 3 files changed, 54 insertions(+)
> >>>>>>>>>>
> >>>>>>>>>> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
> >>>>>>>>>> b/drivers/media/v4l2-core/v4l2-ioctl.c index 0c3f238..ccaf04b 100644
> >>>>>>>>>> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
> >>>>>>>>>> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
> >>>>>>>>>> @@ -2573,6 +2573,33 @@ struct mutex *v4l2_ioctl_get_lock(struct
> >>>>>>>>>> video_device *vdev, unsigned cmd)
> >>>>>>>>>> 	return vdev->lock;
> >>>>>>>>>> }
> >>>>>>>>>>
> >>>>>>>>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> >>>>>>>>>> +				  struct v4l2_input *i)
> >>>>>>>>>> +{
> >>>>>>>>>> +	if (i->index > 0)
> >>>>>>>>>> +		return -EINVAL;
> >>>>>>>>>> +
> >>>>>>>>>> +	memset(i, 0, sizeof(*i));
> >>>>>>>>>> +	i->type = V4L2_INPUT_TYPE_DEFAULT;
> >>>>>>>>>> +	strlcpy(i->name, "Default", sizeof(i->name));
> >>>>>>>>>> +
> >>>>>>>>>> +	return 0;
> >>>>>>>>>> +}
> >>>>>>>>>> +EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
> >>>>>>>>>> +
> >>>>>>>>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
> >>>>>>>>>> unsigned int *i)
> >>>>>>>>>> +{
> >>>>>>>>>> +	*i = 0;
> >>>>>>>>>> +	return 0;
> >>>>>>>>>> +}
> >>>>>>>>>> +EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
> >>>>>>>>>> +
> >>>>>>>>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
> >>>>>>>>>> unsigned int i)
> >>>>>>>>>> +{
> >>>>>>>>>> +	return i ? -EINVAL : 0;
> >>>>>>>>>> +}
> >>>>>>>>>> +EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
> >>>>>>>>>> +
> >>>>>>>>>> /* Common ioctl debug function. This function can be used by
> >>>>>>>>>>     external ioctl messages as well as internal V4L ioctl */
> >>>>>>>>>>
> >>>>>>>>>> void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
> >>>>>>>>>> diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
> >>>>>>>>>> index 6cd94e5..accc470 100644
> >>>>>>>>>> --- a/include/media/v4l2-ioctl.h
> >>>>>>>>>> +++ b/include/media/v4l2-ioctl.h
> >>>>>>>>>> @@ -652,6 +652,32 @@ struct video_device;
> >>>>>>>>>>   */
> >>>>>>>>>>
> >>>>>>>>>> struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned
> >>>>>>>>>> int cmd);
> >>>>>>>>>> +
> >>>>>>>>>> +/**
> >>>>>>>>>> + * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for
> >>>>>>>>>> VIDIOC_ENUM_INPUT ioctl
> >>>>>>>>>> + *
> >>>>>>>>>> + * Plug this function in vidioc_enum_input field of the struct
> >>>>>>>>>> v4l2_ioctl_ops to
> >>>>>>>>>> + * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
> >>>>>>>>>> + */
> >>>>>>>>>> +int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
> >>>>>>>>>> +				  struct v4l2_input *i);
> >>>>>>>>>> +
> >>>>>>>>>> +/**
> >>>>>>>>>> + * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT
> >>>>>>>>>> ioctl
> >>>>>>>>>> + *
> >>>>>>>>>> + * Plug this function in vidioc_g_input field of the struct
> >>>>>>>>>> v4l2_ioctl_ops
> >>>>>>>>>> + * when using v4l2_ioctl_enum_input_default
> >>>>>>>>>> + */
> >>>>>>>>>> +int v4l2_ioctl_g_input_default(struct file *file, void *priv,
> >>>>>>>>>> unsigned int *i);
> >>>>>>>>>> +
> >>>>>>>>>> +/**
> >>>>>>>>>> + * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT
> >>>>>>>>>> ioctl
> >>>>>>>>>> + *
> >>>>>>>>>> + * Plug this function in vidioc_s_input field of the struct
> >>>>>>>>>> v4l2_ioctl_ops
> >>>>>>>>>> + * when using v4l2_ioctl_enum_input_default
> >>>>>>>>>> + */
> >>>>>>>>>> +int v4l2_ioctl_s_input_default(struct file *file, void *priv,
> >>>>>>>>>> unsigned int i);
> >>>>>>>>>> +
> >>>>>>>>>> /* names for fancy debug output */
> >>>>>>>>>> extern const char *v4l2_field_names[];
> >>>>>>>>>> extern const char *v4l2_type_names[];
> >>>>>>>>>> diff --git a/include/uapi/linux/videodev2.h
> >>>>>>>>>> b/include/uapi/linux/videodev2.h index 316be62..c10bbde 100644
> >>>>>>>>>> --- a/include/uapi/linux/videodev2.h
> >>>>>>>>>> +++ b/include/uapi/linux/videodev2.h
> >>>>>>>>>> @@ -1477,6 +1477,7 @@ struct v4l2_input {
> >>>>>>>>>> };
> >>>>>>>>>>
> >>>>>>>>>> /*  Values for the 'type' field */
> >>>>>>>>>> +#define V4L2_INPUT_TYPE_DEFAULT		0
> >>>>>>>>>
> >>>>>>>>> I don't think we should add a new type here.
> >>>>>>>>
> >>>>>>>> I second that. Just replied the same thing on a comment from Sakari to
> >>>>>>>> patch 2/2.
> >>>>>>>>
> >>>>>>>>> The whole point of this exercise is to
> >>>>>>>>> allow existing apps to work, and existing apps expect a TYPE_CAMERA.
> >>>>>>>>>
> >>>>>>>>> BTW, don't read to much in the term 'CAMERA': it's really a catch all
> >>>>>>>>> for any video stream, whether it is from a sensor, composite input,
> >>>>>>>>> HDMI, etc.
> >>>>>>>>>
> >>>>>>>>> The description for V4L2_INPUT_TYPE_CAMERA in the spec is hopelessly
> >>>>>>>>> out of date :-(
> >>>>>>>>
> >>>>>>>> Yeah, we always used "CAMERA" to mean NOT_TUNER.
> >>>>>>>>
> >>>>>>>>> Rather than creating a new type I would add a new V4L2_IN_CAP_MC
> >>>>>>>>> capability that indicates that this input is controlled via the media
> >>>>>>>>> controller. That makes much more sense and it wouldn't potentially
> >>>>>>>>> break applications.
> >>>>>>>>>
> >>>>>>>>> Exactly the same can be done for outputs as well: add V4L2_OUT_CAP_MC
> >>>>>>>>> and use V4L2_OUTPUT_TYPE_ANALOG as the output type (again, a horrible
> >>>>>>>>> outdated name and the spec is again out of date).
> >>>>>>>>
> >>>>>>>> I don't see any sense on distinguishing IN and OUT for MC. I mean:
> >>>>>>>> should
> >>>>>>>> we ever allow that any driver to have their inputs controlled via V4L2
> >>>>>>>> API,
> >>>>>>>> and their outputs controlled via MC (or vice-versa)? I don't think so.
> >>>>>>>>
> >>>>>>>> Either all device inputs/outputs are controlled via V4L2 or via MC. So,
> >>>>>>>> let's call it just V4L2_CAP_MC.
> >>>>>>>>
> >>>>>>>>> Regarding the name: should we use the name stored in struct
> >>>>>>>>> video_device instead? That might be more descriptive.
> >>>>>>>>
> >>>>>>>> Makes sense to me.
> >>>>>>>>
> >>>>>>>>> Alternatively use something like "Media Controller Input".
> >>>>>>>>
> >>>>>>>> Yeah, we could do that, if V4L2_CAP_MC. if not, we can use the name
> >>>>>>>> stored at video_device.
> >>>>>>>
> >>>>>>> Just to clarify: the V4L2_CAP_MC would indicated that the media
> >>>>>>> controller
> >>>>>>> is enabled in general? Or just for inputs and outputs?
> >>>>>>
> >>>>>> I let Mauro and Hans to comment on their own behalf, but I think whatever
> >>>>>> is communicated through the input IOCTLs should be applicable to inputs
> >>>>>> only.
> >>>>>>
> >>>>>> The fact that the video device is a part of an MC graph could be conveyed
> >>>>>> using a capability flag. Or by providing information on the media device
> >>>>>> node, something that has been proposed earlier on. Either is out of the
> >>>>>> scope of this patchset IMO, but should be addressed separately.
> >>>>>>
> >>>>>>> If it is the first case, not necessarily the inputs/outputs are
> >>>>>>> controlled
> >>>>>>> via MC (we can still have a MC capable driver, but inputs/outputs
> >>>>>>> controlled via V4L2 no? When the driver doesn't offer the necessary link
> >>>>>>> controls via MC), then checking if V4L2_CAP_MC then use the name "Media
> >>>>>>> Controller Input" is not enough.
> >>>>>>> If it is the second case, then wouldn't it be better to name it
> >>>>>>> V4L2_CAP_MC_IO ?
> >>>>>
> >>>>> It's the second case. I would probably name it V4L2_CAP_IO_MC. But I also
> >>>>> feel that we need a V4L2_IN/OUT_CAP_MC as well. Because the existing
> >>>>> V4L2_IN/OUT_CAP flags make no sense in this case.
> >>>>
> >>>> I'm not sure to see any use for V4L2_IN/OUT_CAP_MC from an application point
> >>>> of view. I'd rather avoid adding flags unless there's a real use for them.
> >>>
> >>>
> >>> Just to clarify, should this capability flag be set in struct
> >>> v4l2_input/struct v4l2_output through VIDIOC_ENUMINPUT/,
> >>> VIDIOC_ENUMOUTPUT?  Or should it be set in struct v4l2_capability
> >>> through VIDIOC_QUERYCAP ?
> >>> Because if it is the first case, the I feel we should have two flags
> >>> V4L2_IN/OUT_CAP_MC in the API to follow the current convention, but this
> >>> kinda implies that we could have a driver that allows both flags to be
> >>> set differently.
> >>> Setting a V4L2_IO_CAP_MC at struct v4l2_capability would avoid this
> >>> interpretation.
> >>
> >> There are two different capability flags being discussed here.
> >>
> >> The first is V4L2_CAP_IO_MC for struct v4l2_capability: if set, then the
> >> inputs and outputs are controlled by the media controller and not through
> >> the video device.
> >>
> >> I think everyone agrees with that capability flag.
> > 
> > What exactly would that capability flag tell?
> > 
> > That the driver implements Media controller support? Or that any pipeline
> > configuration works through Media controller?
> 
> The second. Otherwise the capability flag would be V4L2_CAP_MC :-)
> 
> Note that a driver can implement the MC, but not need it to setup the
> pipeline. I.e. adding the MC to bttv would make no change to how you select
> an input.
> 
> > We've discussed device profiles in the past. Should this capability flag
> > tell about a device profile? We haven't documented the profiles, but in
> > practice the V4L2 video nodes are a data interface only on MC-enabled
> > drivers. That suggests that if there is input selection to be done, that
> > would take place on a control interface, i.e. on a V4L2 sub-device node.
> > 
> > I think it'd be good to have a single flag for this rather than small hints
> > here and there of what kind of an interface the user is dealing with.
> > 
> 
> Well, the device profile here is that you need to use the MC to configure
> the pipeline for this input as opposed to being able to just use S_INPUT.

Ack. Sounds fine to me.
diff mbox

Patch

diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c b/drivers/media/v4l2-core/v4l2-ioctl.c
index 0c3f238..ccaf04b 100644
--- a/drivers/media/v4l2-core/v4l2-ioctl.c
+++ b/drivers/media/v4l2-core/v4l2-ioctl.c
@@ -2573,6 +2573,33 @@  struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned cmd)
 	return vdev->lock;
 }
 
+int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
+				  struct v4l2_input *i)
+{
+	if (i->index > 0)
+		return -EINVAL;
+
+	memset(i, 0, sizeof(*i));
+	i->type = V4L2_INPUT_TYPE_DEFAULT;
+	strlcpy(i->name, "Default", sizeof(i->name));
+
+	return 0;
+}
+EXPORT_SYMBOL(v4l2_ioctl_enum_input_default);
+
+int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i)
+{
+	*i = 0;
+	return 0;
+}
+EXPORT_SYMBOL(v4l2_ioctl_g_input_default);
+
+int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i)
+{
+	return i ? -EINVAL : 0;
+}
+EXPORT_SYMBOL(v4l2_ioctl_s_input_default);
+
 /* Common ioctl debug function. This function can be used by
    external ioctl messages as well as internal V4L ioctl */
 void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
index 6cd94e5..accc470 100644
--- a/include/media/v4l2-ioctl.h
+++ b/include/media/v4l2-ioctl.h
@@ -652,6 +652,32 @@  struct video_device;
  */
 struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev, unsigned int cmd);
 
+
+/**
+ * v4l2_ioctl_enum_input_default - v4l2 ioctl helper for VIDIOC_ENUM_INPUT ioctl
+ *
+ * Plug this function in vidioc_enum_input field of the struct v4l2_ioctl_ops to
+ * enumerate a single input as V4L2_INPUT_TYPE_DEFAULT
+ */
+int v4l2_ioctl_enum_input_default(struct file *file, void *priv,
+				  struct v4l2_input *i);
+
+/**
+ * v4l2_ioctl_g_input_default - v4l2 ioctl helper for VIDIOC_G_INPUT ioctl
+ *
+ * Plug this function in vidioc_g_input field of the struct v4l2_ioctl_ops
+ * when using v4l2_ioctl_enum_input_default
+ */
+int v4l2_ioctl_g_input_default(struct file *file, void *priv, unsigned int *i);
+
+/**
+ * v4l2_ioctl_s_input_default - v4l2 ioctl helper for VIDIOC_S_INPUT ioctl
+ *
+ * Plug this function in vidioc_s_input field of the struct v4l2_ioctl_ops
+ * when using v4l2_ioctl_enum_input_default
+ */
+int v4l2_ioctl_s_input_default(struct file *file, void *priv, unsigned int i);
+
 /* names for fancy debug output */
 extern const char *v4l2_field_names[];
 extern const char *v4l2_type_names[];
diff --git a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h
index 316be62..c10bbde 100644
--- a/include/uapi/linux/videodev2.h
+++ b/include/uapi/linux/videodev2.h
@@ -1477,6 +1477,7 @@  struct v4l2_input {
 };
 
 /*  Values for the 'type' field */
+#define V4L2_INPUT_TYPE_DEFAULT		0
 #define V4L2_INPUT_TYPE_TUNER		1
 #define V4L2_INPUT_TYPE_CAMERA		2
 #define V4L2_INPUT_TYPE_TOUCH		3