Re: [PATCH 1/2] v4l-utils: do not query capabilities of sub-devices.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 19/10/17 16:53, Sakari Ailus wrote:
> Hi Harald and Hans,
> 
> On Thu, Oct 19, 2017 at 03:09:15PM +0200, Harald Dankworth wrote:
>> Find the major and minor numbers of the device. Check if the
>> file /dev/dev/char/major:minor/uevent contains "DEVNAME=v4l-subdev".
>> If so, the device is a sub-device.
>>
>> Signed-off-by: Harald Dankworth <hardankw@xxxxxxxxx>
>> Reviewed-by: Hans Verkuil <hansverk@xxxxxxxxx>
> 
> I wonder if this is the best way to obtain the information. I thought there
> was an intent to add something to sysfs that wasn't based on device names.
> This also hardcodes the sysfs path.

This is what we discussed on irc some time ago. And if /sys is mounted somewhere
else, then you have bigger problems :-)

The device name in /sys comes from the driver and isn't changed by udev rules.
So we can use it to determine if it is a subdev or not.

> Would udev provide anything useful in this respect?

Not all embedded systems use udev. I'd rather not depend on it, at least not for
this utility.

The alternative to this is to add a QUERYCAP-like ioctl for subdevs, but my
proposal for that has been repeatedly shot down.

In the meantime we need *something* so you can use v4l2-ctl to query/get/set
controls and the EDID for HDMI receivers (Tim Harvey needs this).

I would like to merge this soon. It can always be changed if we switch to another
better method.

Regards,

	Hans

> 
> yavta would likely benefit from something similar.
> 
>> ---
>>  utils/v4l2-ctl/v4l2-ctl.cpp | 56 ++++++++++++++++++++++++++++++++++++++++++++-
>>  1 file changed, 55 insertions(+), 1 deletion(-)
>>
>> diff --git a/utils/v4l2-ctl/v4l2-ctl.cpp b/utils/v4l2-ctl/v4l2-ctl.cpp
>> index 5c67bf0..e02dc75 100644
>> --- a/utils/v4l2-ctl/v4l2-ctl.cpp
>> +++ b/utils/v4l2-ctl/v4l2-ctl.cpp
>> @@ -46,6 +46,7 @@
>>  #include <vector>
>>  #include <map>
>>  #include <algorithm>
>> +#include <fstream>
>>  
>>  char options[OptLast];
>>  
>> @@ -1142,6 +1143,59 @@ __u32 find_pixel_format(int fd, unsigned index, bool output, bool mplane)
>>  	return fmt.pixelformat;
>>  }
>>  
>> +static bool is_subdevice(int fd)
>> +{
>> +	struct stat sb;
>> +	if (fstat(fd, &sb) == -1) {
>> +		fprintf(stderr, "failed to stat file\n");
>> +		exit(1);
>> +	}
>> +
>> +	char uevent_path[100];
>> +	if (snprintf(uevent_path, sizeof(uevent_path), "/sys/dev/char/%d:%d/uevent",
>> +		     major(sb.st_rdev), minor(sb.st_rdev)) == -1) {
>> +		fprintf(stderr, "failed to create uevent file path\n");
>> +		exit(1);
>> +	}
>> +
>> +	std::ifstream uevent_file(uevent_path);
>> +	if (uevent_file.fail()) {
>> +		fprintf(stderr, "failed to open %s\n", uevent_path);
>> +		exit(1);
>> +	}
>> +
>> +	std::string line;
>> +
>> +	while (std::getline(uevent_file, line)) {
>> +		if (line.compare(0, 8, "DEVNAME="))
>> +			continue;
>> +
>> +		static const char * devnames[] = {
>> +			"v4l-subdev",
>> +			"video",
>> +			"vbi",
>> +			"radio",
>> +			"swradio",
>> +			"v4l-touch",
>> +			NULL
>> +		};
>> +
>> +		for (size_t i = 0; devnames[i]; i++) {
>> +			size_t len = strlen(devnames[i]);
>> +
>> +			if (!line.compare(8, len, devnames[i]) && isdigit(line[8+len])) {
>> +				uevent_file.close();
>> +				return i == 0;
>> +			}
>> +		}
>> +	}
>> +
>> +	uevent_file.close();
>> +
>> +	fprintf(stderr, "unknown device name\n");
>> +	exit(1);
>> +}
>> +
>>  int main(int argc, char **argv)
>>  {
>>  	int i;
>> @@ -1310,7 +1364,7 @@ int main(int argc, char **argv)
>>  	}
>>  
>>  	verbose = options[OptVerbose];
>> -	if (doioctl(fd, VIDIOC_QUERYCAP, &vcap)) {
>> +	if (!is_subdevice(fd) && doioctl(fd, VIDIOC_QUERYCAP, &vcap)) {
>>  		fprintf(stderr, "%s: not a v4l2 node\n", device);
>>  		exit(1);
>>  	}
>> -- 
>> 2.7.4
>>
> 




[Index of Archives]     [Linux Input]     [Video for Linux]     [Gstreamer Embedded]     [Mplayer Users]     [Linux USB Devel]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Yosemite Backpacking]
  Powered by Linux