V4L2学习记录【转】

时间:2022-12-15 10:09:02

转自:http://blog.chinaunix.net/uid-30254565-id-5637600.html

  1. V4L2学习记录
  2. 这个还没有分析完,先在这放着,防止电脑坏掉丢了,以后再完善
  3. V4L2的全称是video for linux two。
  4. V4L2 驱动核心
  5. V4L2 驱动源码在 drivers/media/video目录下,主要核心代码有:
  6. v4l2-dev.c //linux版本2视频捕捉接口,主要结构体 video_device 的注册
  7. v4l2-common.c //在Linux操作系统体系采用低级别的操作一套设备structures/vectors的通用视频设备接口。
  8. v4l2-device.c //V4L2的设备支持。注册v4l2_device。
  9. v4l22-ioctl.c //处理V4L2的ioctl命令的一个通用的框架。
  10. v4l2-subdev.c //v4l2子设备
  11. v4l2-mem2mem.c //内存到内存为Linux和videobuf视频设备的框架。设备的辅助函数,使用其源和目的地videobuf缓冲区。
  12. 直接来看驱动源码的话,还是对驱动的框架没有一个感性的认识,尤其这个V4L2的框架非常复杂,我们先从内核源码中提供的虚拟视频驱动程序vivi.c来分析。内核版本3.4.2。
  13. 虚拟视频驱动程序vivi.c源码分析
  14. 16年1月18日09:35:42
  15. (1)分析一个程序从它的init入口函数开始分析:
  16. static int __init vivi_init(void)
  17. {
  18. const struct font_desc *font = find_font("VGA8x16");
  19. int ret = 0, i;
  20. if (font == NULL) {
  21. printk(KERN_ERR "vivi: could not find font\n");
  22. return -ENODEV;
  23. }
  24. font8x16 = font->data;
  25. if (n_devs <= 0)
  26. n_devs = 1;
  27. for (i = 0; i < n_devs; i++) {
  28. ret = vivi_create_instance(i);
  29. if (ret) {
  30. /* If some instantiations succeeded, keep driver */
  31. if (i)
  32. ret = 0;
  33. break;
  34. }
  35. }
  36. if (ret < 0) {
  37. printk(KERN_ERR "vivi: error %d while loading driver\n", ret);
  38. return ret;
  39. }
  40. printk(KERN_INFO "Video Technology Magazine Virtual Video "
  41. "Capture Board ver %s successfully loaded.\n",
  42. VIVI_VERSION);
  43. /* n_devs will reflect the actual number of allocated devices */
  44. n_devs = i;
  45. return ret;
  46. }
  47. static void __exit vivi_exit(void)
  48. {
  49. vivi_release();
  50. }
  51. module_init(vivi_init);
  52. module_exit(vivi_exit);
  53. 其中n_devs的定义在前面,如下所示:
  54. static unsigned n_devs = 1;
  55. module_param(n_devs, uint, 0644);
  56. MODULE_PARM_DESC(n_devs, "number of video devices to create");
  57. 写的很清楚了, n_devs表示想要创建的 video devices个数。
  58. 去掉其他的判断语句,发现重要的函数只有一个vivi_create_instance(i)函数,我们下面就来分析这个函数。
  59. (2)vivi_create_instance(i)函数:
  60. static int __init vivi_create_instance(int inst)
  61. {
  62. struct vivi_dev *dev;
  63. struct video_device *vfd;
  64. struct v4l2_ctrl_handler *hdl;
  65. struct vb2_queue *q;
  66. int ret;
  67. dev = kzalloc(sizeof(*dev), GFP_KERNEL);
  68. if (!dev)
  69. return -ENOMEM;
  70. snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name),
  71. "%s-%03d", VIVI_MODULE_NAME, inst);
  72. ret = v4l2_device_register(NULL, &dev->v4l2_dev);
  73. if (ret)
  74. goto free_dev;
  75. dev->fmt = &formats[0];
  76. dev->width = 640;
  77. dev->height = 480;
  78. hdl = &dev->ctrl_handler;
  79. v4l2_ctrl_handler_init(hdl, 11);
  80. dev->volume = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
  81. V4L2_CID_AUDIO_VOLUME, 0, 255, 1, 200);
  82. dev->brightness = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
  83. V4L2_CID_BRIGHTNESS, 0, 255, 1, 127);
  84. dev->contrast = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
  85. V4L2_CID_CONTRAST, 0, 255, 1, 16);
  86. dev->saturation = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
  87. V4L2_CID_SATURATION, 0, 255, 1, 127);
  88. dev->hue = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
  89. V4L2_CID_HUE, -128, 127, 1, 0);
  90. dev->autogain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
  91. V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
  92. dev->gain = v4l2_ctrl_new_std(hdl, &vivi_ctrl_ops,
  93. V4L2_CID_GAIN, 0, 255, 1, 100);
  94. dev->button = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_button, NULL);
  95. dev->int32 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int32, NULL);
  96. dev->int64 = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_int64, NULL);
  97. dev->boolean = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_boolean, NULL);
  98. dev->menu = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_menu, NULL);
  99. dev->string = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_string, NULL);
  100. dev->bitmask = v4l2_ctrl_new_custom(hdl, &vivi_ctrl_bitmask, NULL);
  101. if (hdl->error) {
  102. ret = hdl->error;
  103. goto unreg_dev;
  104. }
  105. v4l2_ctrl_auto_cluster(2, &dev->autogain, 0, true);
  106. dev->v4l2_dev.ctrl_handler = hdl;
  107. /* initialize locks */
  108. spin_lock_init(&dev->slock);
  109. /* initialize queue */
  110. q = &dev->vb_vidq;
  111. memset(q, 0, sizeof(dev->vb_vidq));
  112. q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  113. q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_READ;
  114. q->drv_priv = dev;
  115. q->buf_struct_size = sizeof(struct vivi_buffer);
  116. q->ops = &vivi_video_qops;
  117. q->mem_ops = &vb2_vmalloc_memops;
  118. vb2_queue_init(q);
  119. mutex_init(&dev->mutex);
  120. /* init video dma queues */
  121. INIT_LIST_HEAD(&dev->vidq.active);
  122. init_waitqueue_head(&dev->vidq.wq);
  123. ret = -ENOMEM;
  124. vfd = video_device_alloc();
  125. if (!vfd)
  126. goto unreg_dev;
  127. *vfd = vivi_template;
  128. vfd->debug = debug;
  129. vfd->v4l2_dev = &dev->v4l2_dev;
  130. set_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
  131. /*
  132. * Provide a mutex to v4l2 core. It will be used to protect
  133. * all fops and v4l2 ioctls.
  134. */
  135. vfd->lock = &dev->mutex;
  136. ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
  137. if (ret < 0)
  138. goto rel_vdev;
  139. video_set_drvdata(vfd, dev);
  140. /* Now that everything is fine, let's add it to device list */
  141. list_add_tail(&dev->vivi_devlist, &vivi_devlist);
  142. if (video_nr != -1)
  143. video_nr++;
  144. dev->vfd = vfd;
  145. v4l2_info(&dev->v4l2_dev, "V4L2 device registered as %s\n",
  146. video_device_node_name(vfd));
  147. return 0;
  148. rel_vdev:
  149. video_device_release(vfd);
  150. unreg_dev:
  151. v4l2_ctrl_handler_free(hdl);
  152. v4l2_device_unregister(&dev->v4l2_dev);
  153. free_dev:
  154. kfree(dev);
  155. return ret;
  156. }
  157. 1. 函数首先为struct vivi_dev *dev;分配内存,然后将dev->v4l2_dev.name的名字设置为“vivi-i”的形式,然后调用 v4l2_device_register这个函数来注册dev->v4l2_dev这个结构体,结构体v4l2_device如下所示,看它的名字就叫V4L2设备,它肯定就是V4L2设备的核心结构体:
  158. struct v4l2_device {
  159. /* dev->driver_data points to this struct.
  160. Note: dev might be NULL if there is no parent device
  161. as is the case with e.g. ISA devices. */
  162. struct device *dev;
  163. #if defined(CONFIG_MEDIA_CONTROLLER)
  164. struct media_device *mdev;
  165. #endif
  166. /* used to keep track of the registered subdevs */
  167. struct list_head subdevs;
  168. /* lock this struct; can be used by the driver as well if this
  169. struct is embedded into a larger struct. */
  170. spinlock_t lock;
  171. /* unique device name, by default the driver name + bus ID */
  172. char name[V4L2_DEVICE_NAME_SIZE];
  173. /* notify callback called by some sub-devices. */
  174. void (*notify)(struct v4l2_subdev *sd,
  175. unsigned int notification, void *arg);
  176. /* The control handler. May be NULL. */
  177. struct v4l2_ctrl_handler *ctrl_handler;
  178. /* Device's priority state */
  179. struct v4l2_prio_state prio;
  180. /* BKL replacement mutex. Temporary solution only. */
  181. struct mutex ioctl_lock;
  182. /* Keep track of the references to this struct. */
  183. struct kref ref;
  184. /* Release function that is called when the ref count goes to 0. */
  185. void (*release)(struct v4l2_device *v4l2_dev);
  186. };
  187. 可以看到这个结构体里面包含一个device父设备成员,一个subdevs子设备链表头,一个自旋锁,一个notify函数指针,v4l2_ctrl_handler控制句柄,prio优先级,ref引用计数,还有一个release函数指针。暂时先不对这个结构体进行具体的分析,在以后分析V4L2框架的时候再分析。
  188. 2. 它通过v4l2_device_register(NULL, &dev->v4l2_dev);函数来完成对结构体的注册,可以看出在”vivi.c”中,它的父设备为NULL, v4l2_device_register这个函数在v4l2-device.c中:
  189. int v4l2_device_register(struct device *dev, struct v4l2_device *v4l2_dev)
  190. {
  191. if (v4l2_dev == NULL)
  192. return -EINVAL;
  193. INIT_LIST_HEAD(&v4l2_dev->subdevs);
  194. spin_lock_init(&v4l2_dev->lock);
  195. mutex_init(&v4l2_dev->ioctl_lock);
  196. v4l2_prio_init(&v4l2_dev->prio);
  197. kref_init(&v4l2_dev->ref);
  198. get_device(dev);
  199. v4l2_dev->dev = dev;
  200. if (dev == NULL) {
  201. /* If dev == NULL, then name must be filled in by the caller */
  202. WARN_ON(!v4l2_dev->name[0]);
  203. return 0;
  204. }
  205. /* Set name to driver name + device name if it is empty. */
  206. if (!v4l2_dev->name[0])
  207. snprintf(v4l2_dev->name, sizeof(v4l2_dev->name), "%s %s",
  208. dev->driver->name, dev_name(dev));
  209. if (!dev_get_drvdata(dev))
  210. dev_set_drvdata(dev, v4l2_dev);
  211. return 0;
  212. }
  213. EXPORT_SYMBOL_GPL(v4l2_device_register);
  214. 这个函数完成了子设备链表的初始化,自旋锁,互斥量,优先级,引用计数的初始化,其他并没有做太多工作。
  215. 3. 继续回到vivi_create_instance(i)函数中进行分析,下一句话:dev->fmt = &formats[0];
  216. 通过向前搜索发现,vivi.c维持着一个 formats数组,它表示vivi.c支持的数据格式。关于视频的格式我们在V4L2框架中介绍,通过这行代码,我们知道了vivi.c所支持的格式为 V4L2_PIX_FMT_YUYV。
  217. struct vivi_fmt {
  218. char *name;
  219. u32 fourcc; /* v4l2 format id */
  220. int depth;
  221. };
  222. static struct vivi_fmt formats[] = {
  223. {
  224. .name = "4:2:2, packed, YUYV",
  225. .fourcc = V4L2_PIX_FMT_YUYV,
  226. .depth = 16,
  227. },
  228. {
  229. .name = "4:2:2, packed, UYVY",
  230. .fourcc = V4L2_PIX_FMT_UYVY,
  231. .depth = 16,
  232. },
  233. {
  234. .name = "RGB565 (LE)",
  235. .fourcc = V4L2_PIX_FMT_RGB565, /* gggbbbbb rrrrrggg */
  236. .depth = 16,
  237. },
  238. {
  239. .name = "RGB565 (BE)",
  240. .fourcc = V4L2_PIX_FMT_RGB565X, /* rrrrrggg gggbbbbb */
  241. .depth = 16,
  242. },
  243. {
  244. .name = "RGB555 (LE)",
  245. .fourcc = V4L2_PIX_FMT_RGB555, /* gggbbbbb arrrrrgg */
  246. .depth = 16,
  247. },
  248. {
  249. .name = "RGB555 (BE)",
  250. .fourcc = V4L2_PIX_FMT_RGB555X, /* arrrrrgg gggbbbbb */
  251. .depth = 16,
  252. },
  253. };
  254. 4.继续在vivi_create_instance(i)函数中分析 :
  255. hdl = &dev->ctrl_handler;
  256. v4l2_ctrl_handler_init(hdl, 11);
  257. v4l2_ctrl_handler结构体在v4l2-ctrls.h中定义,如下所示:
  258. struct v4l2_ctrl_handler {
  259. struct mutex lock;
  260. struct list_head ctrls;
  261. struct list_head ctrl_refs;
  262. struct v4l2_ctrl_ref *cached;
  263. struct v4l2_ctrl_ref **buckets;
  264. u16 nr_of_buckets;
  265. int error;
  266. };
  267. v4l2_ctrl_handler是用于保存子设备控制方法集的结构体,对于视频设备这些ctrls包括设置亮度、饱和度、对比度和 清晰度等,用链表的方式来保存ctrls,可以通过v4l2_ctrl_new_std函数向链表添加ctrls。在下面的代码中用到了这个函数。
  268. /* Initialize the handler */
  269. int v4l2_ctrl_handler_init(struct v4l2_ctrl_handler *hdl,
  270. unsigned nr_of_controls_hint)
  271. {
  272. mutex_init(&hdl->lock);
  273. INIT_LIST_HEAD(&hdl->ctrls);
  274. INIT_LIST_HEAD(&hdl->ctrl_refs);
  275. hdl->nr_of_buckets = 1 + nr_of_controls_hint / 8;
  276. hdl->buckets = kcalloc(hdl->nr_of_buckets, sizeof(hdl->buckets[0]),
  277. GFP_KERNEL);
  278. hdl->error = hdl->buckets ? 0 : -ENOMEM;
  279. return hdl->error;
  280. }
  281. EXPORT_SYMBOL(v4l2_ctrl_handler_init);
  282. 通过nr_of_controls_hint变量的大小,计算出nr_of_buckets,并为 buckets申请空间,并将申请结果保存在error变量中。
  283. 5. 继续在vivi_create_instance(i)函数中分析,继续设置dev结构体中的其他一些参数,对volume,brightness,contrast,
    saturation等参数设置的时候,调用了 v4l2_ctrl_new_std这个函数,以及对button, int32,
    menu,bitmask等参数的设置,调用了v4l2_ctrl_new_custom这个函数,一看就知道这两个函数是V4L2框架所提供的接口函数。
  284. struct v4l2_ctrl *v4l2_ctrl_new_std(structv4l2_ctrl_handler *hdl, conststruct v4l2_ctrl_ops *ops, u32id, s32 min, s32 max, u32 step, s32 def)
  285. hdl是初始化好的v4l2_ctrl_handler结构体;
  286. ops是v4l2_ctrl_ops结构体,包含ctrls的具体实现;
  287. id是通过IOCTL的arg参数传过来的指令,定义在v4l2-controls.h文件;
  288. min、max用来定义某操作对象的范围。如:
  289. v4l2_ctrl_new_std(hdl, ops, V4L2_CID_BRIGHTNESS,-208, 127, 1, 0);
  290. 用户空间可以通过ioctl的VIDIOC_S_CTRL指令调用到v4l2_ctrl_handler,id透过arg参数传递。
  291. 通过几个函数来完成对视频中亮度,饱和度等的设置。
  292. 6. 然后是缓冲区队列的操作,设置vb2_queue队列q的一些参数,最主要的是下面两个参数:
  293. q->ops = &vivi_video_qops;
  294. q->mem_ops = &vb2_vmalloc_memops;
  295. 可以看到:q->ops = &vivi_video_qops;中vivi_video_qops是需要vivi.c实现的一个操作函数集,它在vivi.c中定义如下:
  296. static struct vb2_ops vivi_video_qops = {
  297. .queue_setup        = queue_setup,
  298. .buf_init        = buffer_init,
  299. .buf_prepare        = buffer_prepare,
  300. .buf_finish        = buffer_finish,
  301. .buf_cleanup        = buffer_cleanup,
  302. .buf_queue        = buffer_queue,
  303. .start_streaming    = start_streaming,
  304. .stop_streaming        = stop_streaming,
  305. .wait_prepare        = vivi_unlock,
  306. .wait_finish        = vivi_lock,
  307. };
  308. 这几个函数是需要我们写驱动程序的时候自己实现的函数。
  309. 其中 vb2_ops结构体在videobuf2-core.h中定义,如下所示:
  310. struct vb2_ops {
  311. int (*queue_setup)(struct vb2_queue *q, const struct v4l2_format *fmt,
  312. unsigned int *num_buffers, unsigned int *num_planes,
  313. unsigned int sizes[], void *alloc_ctxs[]);
  314. void (*wait_prepare)(struct vb2_queue *q);
  315. void (*wait_finish)(struct vb2_queue *q);
  316. int (*buf_init)(struct vb2_buffer *vb);
  317. int (*buf_prepare)(struct vb2_buffer *vb);
  318. int (*buf_finish)(struct vb2_buffer *vb);
  319. void (*buf_cleanup)(struct vb2_buffer *vb);
  320. int (*start_streaming)(struct vb2_queue *q, unsigned int count);
  321. int (*stop_streaming)(struct vb2_queue *q);
  322. void (*buf_queue)(struct vb2_buffer *vb);
  323. };
  324. 对于 vb2_vmalloc_memops结构体,它在videobuf2-vmalloc.c中定义,如下所示:
  325. const struct vb2_mem_ops vb2_vmalloc_memops = {
  326. .alloc        = vb2_vmalloc_alloc,
  327. .put        = vb2_vmalloc_put,
  328. .get_userptr    = vb2_vmalloc_get_userptr,
  329. .put_userptr    = vb2_vmalloc_put_userptr,
  330. .vaddr        = vb2_vmalloc_vaddr,
  331. .mmap        = vb2_vmalloc_mmap,
  332. .num_users    = vb2_vmalloc_num_users,
  333. };
  334. EXPORT_SYMBOL_GPL(vb2_vmalloc_memops);
  335. 看它的名字是vb2开头的,这几个函数应该都是系统为我们提供好的函数,通过查看源码发现,它确实存在于videobuf2-vmalloc.c中。
  336. 然后调用vb2_queue_init(q);函数来初始化它,vb2_queue_init(q)函数如下所示:
  337. /**
  338. * vb2_queue_init() - initialize a videobuf2 queue
  339. * @q:        videobuf2 queue; this structure should be allocated in driver
  340. *
  341. * The vb2_queue structure should be allocated by the driver. The driver is
  342. * responsible of clearing it's content and setting initial values for some
  343. * required entries before calling this function.
  344. * q->ops, q->mem_ops, q->type and q->io_modes are mandatory. Please refer
  345. * to the struct vb2_queue description in include/media/videobuf2-core.h
  346. * for more information.
  347. */
  348. int vb2_queue_init(struct vb2_queue *q)
  349. {
  350. BUG_ON(!q);
  351. BUG_ON(!q->ops);
  352. BUG_ON(!q->mem_ops);
  353. BUG_ON(!q->type);
  354. BUG_ON(!q->io_modes);
  355. BUG_ON(!q->ops->queue_setup);
  356. BUG_ON(!q->ops->buf_queue);
  357. INIT_LIST_HEAD(&q->queued_list);
  358. INIT_LIST_HEAD(&q->done_list);
  359. spin_lock_init(&q->done_lock);
  360. init_waitqueue_head(&q->done_wq);
  361. if (q->buf_struct_size == 0)
  362. q->buf_struct_size = sizeof(struct vb2_buffer);
  363. return 0;
  364. }
  365. EXPORT_SYMBOL_GPL(vb2_queue_init);
  366. 它只是完成了一些检查判断的语句,进行了一些链表,自旋锁等的初始化。
  367. 7. /* init video dma queues */
  368. INIT_LIST_HEAD(&dev->vidq.active);
  369. init_waitqueue_head(&dev->vidq.wq);
  370. 8.下面是对video_device的操作,它算是这个函数中核心的操作:
  371. struct video_device *vfd;
  372. vfd = video_device_alloc();
  373. *vfd = vivi_template;
  374. ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
  375. video_set_drvdata(vfd, dev);
  376. 8.1先来看这个video_device结构体,它在v4l2-dev.h中定义,显示如下:
  377. struct video_device
  378. {
  379. /* device ops */
  380. const struct v4l2_file_operations *fops;
  381. /* sysfs */
  382. struct device dev;        /* v4l device */
  383. struct cdev *cdev;        /* character device */
  384. /* Set either parent or v4l2_dev if your driver uses v4l2_device */
  385. struct device *parent;        /* device parent */
  386. struct v4l2_device *v4l2_dev;    /* v4l2_device parent */
  387. /* Control handler associated with this device node. May be NULL. */
  388. struct v4l2_ctrl_handler *ctrl_handler;
  389. /* Priority state. If NULL, then v4l2_dev->prio will be used. */
  390. struct v4l2_prio_state *prio;
  391. /* device info */
  392. char name[32];
  393. int vfl_type;
  394. /* 'minor' is set to -1 if the registration failed */
  395. int minor;
  396. u16 num;
  397. /* use bitops to set/clear/test flags */
  398. unsigned long flags;
  399. /* attribute to differentiate multiple indices on one physical device */
  400. int index;
  401. /* V4L2 file handles */
  402. spinlock_t        fh_lock; /* Lock for all v4l2_fhs */
  403. struct list_head    fh_list; /* List of struct v4l2_fh */
  404. int debug;            /* Activates debug level*/
  405. /* Video standard vars */
  406. v4l2_std_id tvnorms;        /* Supported tv norms */
  407. v4l2_std_id current_norm;    /* Current tvnorm */
  408. /* callbacks */
  409. void (*release)(struct video_device *vdev);
  410. /* ioctl callbacks */
  411. const struct v4l2_ioctl_ops *ioctl_ops;
  412. /* serialization lock */
  413. struct mutex *lock;
  414. };
  415. 根据注释应该能大致了解各个成员的意义。后面有这个函数的一些初始化和注册函数,里面肯定有对这个结构体成员的设置初始化等,所以我们在后面再具体分析这些成员。
  416. 8.2 下面来看video_device_alloc函数。它在v4l2-dev.c中定义:
  417. struct video_device *video_device_alloc(void)
  418. {
  419. return kzalloc(sizeof(struct video_device), GFP_KERNEL);
  420. }
  421. EXPORT_SYMBOL(video_device_alloc);
  422. 只是分配了一段内存,然后将它置为0,并没有对video_device结构体里面的成员进行设置。
  423. 8.3 然后vivi.c中下一句是*vfd = vivi_template;在vivi.c中搜索发现,它在前面定义:
  424. static struct video_device vivi_template = {
  425. .name        = "vivi",
  426. .fops = &vivi_fops,
  427. .ioctl_ops     = &vivi_ioctl_ops,
  428. .release    = video_device_release,
  429. .tvnorms = V4L2_STD_525_60,
  430. .current_norm = V4L2_STD_NTSC_M,
  431. };
  432. 对比video_device结构体中的成员,可以确定就是在这进行赋值的。它只是对其中某些成员进行了赋。
  433. 8.3.1 video_device结构体中首先是.fops = &vivi_fops,在vivi.c中搜索如下所示:
  434. static const struct v4l2_file_operations vivi_fops = {
  435. .owner        = THIS_MODULE,
  436. .open = v4l2_fh_open,
  437. .release = vivi_close,
  438. .read = vivi_read,
  439. .poll        = vivi_poll,
  440. .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
  441. .mmap = vivi_mmap,
  442. };
  443. 先来看这几个函数的名字,其中open函数和unlocked_ioctl函数的名字与其他的不同,直觉告诉我,他俩是系统提供的,其他的函数名字都是vivi开头的,应该是这个文件里面实现的函数,我们在vivi.c中搜索就可以找到,但是我们暂时先不具体分析这几个函数。
  444. 8.3.2 video_device结构体中第二个是.ioctl_ops = &vivi_ioctl_ops,看名字也是在vivi.c中定义的:
  445. static const struct v4l2_ioctl_ops vivi_ioctl_ops = {
  446. .vidioc_querycap = vidioc_querycap,
  447. .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
  448. .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
  449. .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
  450. .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
  451. .vidioc_reqbufs = vidioc_reqbufs,
  452. .vidioc_querybuf = vidioc_querybuf,
  453. .vidioc_qbuf = vidioc_qbuf,
  454. .vidioc_dqbuf = vidioc_dqbuf,
  455. .vidioc_s_std = vidioc_s_std,
  456. .vidioc_enum_input = vidioc_enum_input,
  457. .vidioc_g_input = vidioc_g_input,
  458. .vidioc_s_input = vidioc_s_input,
  459. .vidioc_streamon = vidioc_streamon,
  460. .vidioc_streamoff = vidioc_streamoff,
  461. .vidioc_log_status = v4l2_ctrl_log_status,
  462. .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
  463. .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
  464. };
  465. 可以看到,这是一大堆的ioctl调用,大致可分为以下几类:
  466. 查询性能query capability的:vidioc_querycap;
  467. 对format的一些操作: vidioc_enum_fmt_vid_cap, vidioc_g_fmt_vid_cap, vidioc_try_fmt_vid_cap, vidioc_s_fmt_vid_cap;
  468. 对缓冲区的一些操作: vidioc_reqbufs, vidioc_querybuf, vidioc_qbuf, vidioc_dqbuf;
  469. 对标准standard的操作: vidioc_s_std;
  470. 对输入input的操作: vidioc_enum_input, vidioc_g_input, vidioc_s_input;
  471. 对流stream的操作: vidioc_streamon, vidioc_streamoff;
  472. 以上几个ioctl调用都是需要我们自己实现的,后面3个ioctl的名字是v4l2开头的,应该是系统里面实现好的函数,搜索可以发现在v4l2-ctrls.c和v4l2-event.c中定义。
  473. 8.3.3 video_device结构体中第三个是.release = video_device_release,它在v4l2-dev.c中定义,如下所示:
  474. void video_device_release(struct video_device *vdev)
  475. {
  476. kfree(vdev);
  477. }
  478. EXPORT_SYMBOL(video_device_release);
  479. 8.3.4 video_device结构体中第四,五个是:
  480. .tvnorms = V4L2_STD_525_60,
  481. .current_norm = V4L2_STD_NTSC_M,
  482. 通过看video_device结构体中的注释,
  483. /* Video standard vars */
  484. v4l2_std_id tvnorms;        /* Supported tv norms */
  485. v4l2_std_id current_norm;    /* Current tvnorm */
  486. 是指支持的tv制式以及当前的tv制式。
  487. 8.3.5 分析完了vivi_template中的成员,也即video_device结构体中的成员,还是有点迷惑的,在
  488. video_device结构体中,有一个struct
    v4l2_file_operations成员,这个成员又包含一个unlocked_ioctl,同时video_device结构体中还有一个struct
    v4l2_ioctl_ops成员,怎么有两个ioctl成员函数啊?先大致分析一些,struct v4l2_file_operations
    vivi_fops中.unlocked_ioctl = video_ioctl2,这个video_ioctl2在v4l2-ioctl.c中:
  489. long video_ioctl2(struct file *file,
  490. unsigned int cmd, unsigned long arg)
  491. {
  492. return video_usercopy(file, cmd, arg, __video_do_ioctl);
  493. }
  494. EXPORT_SYMBOL(video_ioctl2);
  495. 它又调用了__video_do_ioctl函数,也在v4l2-ioctl.c中,这个__video_do_ioctl函数是一个大的switch,case语句,根据不同的case,调用不同的函数,以 VIDIOC_QUERYCAP为例:
  496. struct video_device *vfd = video_devdata(file);
  497. const struct v4l2_ioctl_ops *ops = vfd->ioctl_ops;
  498. case VIDIOC_QUERYCAP:
  499. ret = ops->vidioc_querycap(file, fh, cap);
  500. 用在vivi.c这个例子中就是: vfd这个结构体就是vivi_template, ops就是vivi_template中的ioctl_ops成员,也就是vivi_ioctl_ops,对于 VIDIOC_QUERYCAP宏,真正调用的是vivi_ioctl_ops中的.vidioc_querycap成员,也即我们在vivi.c中自己实现的
  501. static int vidioc_querycap(struct file *file, void *priv, struct v4l2_capability *cap)函数。有点绕,我已晕@_@!~~
  502. 咱们在后面再具体分析。
  503. 8.4 继续在vivi_create_instance中分析:
  504. vfd->debug = debug;
  505. vfd->v4l2_dev = &dev->v4l2_dev;
  506. 注意这个语句,从这里可以看出在注册video_device之前必须先注册了v4l2_device。
  507. set_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
  508. vfd->lock = &dev->mutex;
  509. 进行了一些设置,然后就是大boss了:
  510. ret = video_register_device(vfd, VFL_TYPE_GRABBER, video_nr);
  511. 它在v4l2-dev.h中定义,如下所示:
  512. static inline int __must_check video_register_device_no_warn(
  513. struct video_device *vdev, int type, int nr)
  514. {
  515. return __video_register_device(vdev, type, nr, 0, vdev->fops->owner);
  516. }
  517. __video_register_device在v4l2-dev.c中定义:(就直接在代码中注释了)
  518. /**
  519. *    __video_register_device - register video4linux devices
  520. *    @vdev: video device structure we want to register
  521. *    @type: type of device to register
  522. *    @nr: which device node number (0 == /dev/video0, 1 == /dev/video1, ...
  523. * -1 == first free)
  524. *    @warn_if_nr_in_use: warn if the desired device node number
  525. *     was already in use and another number was chosen instead.
  526. *    @owner: module that owns the video device node
  527. *
  528. *    The registration code assigns minor numbers and device node numbers
  529. *    based on the requested type and registers the new device node with
  530. *    the kernel.
  531. *
  532. *    This function assumes that struct video_device was zeroed when it
  533. *    was allocated and does not contain any stale date.
  534. *
  535. *    An error is returned if no free minor or device node number could be
  536. *    found, or if the registration of the device node failed.
  537. *
  538. *    Zero is returned on success.
  539. *
  540. *    Valid types are
  541. *
  542. *    %VFL_TYPE_GRABBER - A frame grabber
  543. *
  544. *    %VFL_TYPE_VBI - Vertical blank data (undecoded)
  545. *
  546. *    %VFL_TYPE_RADIO - A radio card
  547. *
  548. *    %VFL_TYPE_SUBDEV - A subdevice
  549. */
  550. int __video_register_device(struct video_device *vdev, int type, int nr,
  551. int warn_if_nr_in_use, struct module *owner)
  552. {
  553. int i = 0;
  554. int ret;
  555. int minor_offset = 0;
  556. int minor_cnt = VIDEO_NUM_DEVICES;
  557. const char *name_base;
  558. /* A minor value of -1 marks this video device as never
  559. having been registered */
  560. vdev->minor = -1;
  561. /* the release callback MUST be present */
  562. if (WARN_ON(!vdev->release))
  563. return -EINVAL;
  564. /* 如果没有提供这个release函数的话,就直接返回错误,它就在vivi_template中提供了。 */
  565. /* v4l2_fh support */
  566. spin_lock_init(&vdev->fh_lock);
  567. INIT_LIST_HEAD(&vdev->fh_list);
  568. /* Part 1: check device type */
  569. switch (type) {
  570. case VFL_TYPE_GRABBER:
  571. name_base = "video";
  572. break;
  573. case VFL_TYPE_VBI:
  574. name_base = "vbi";
  575. break;
  576. case VFL_TYPE_RADIO:
  577. name_base = "radio";
  578. break;
  579. case VFL_TYPE_SUBDEV:
  580. name_base = "v4l-subdev";
  581. break;
  582. default:
  583. printk(KERN_ERR "%s called with unknown type: %d\n",
  584. __func__, type);
  585. return -EINVAL;
  586. }
  587. /* 根据传进来的type参数,确定设备在/dev目录下看到的名字 */
  588. vdev->vfl_type = type;
  589. vdev->cdev = NULL;
  590. if (vdev->v4l2_dev) {
  591. if (vdev->v4l2_dev->dev)
  592. vdev->parent = vdev->v4l2_dev->dev;
  593. if (vdev->ctrl_handler == NULL)
  594. vdev->ctrl_handler = vdev->v4l2_dev->ctrl_handler;
  595. /* If the prio state pointer is NULL, then use the v4l2_device
  596. prio state. */
  597. if (vdev->prio == NULL)
  598. vdev->prio = &vdev->v4l2_dev->prio;
  599. }
  600. /* 进行vdev中父设备和ctrl处理函数的初始化。*/
  601. /* Part 2: find a free minor, device node number and device index. */
  602. #ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
  603. /* Keep the ranges for the first four types for historical
  604. * reasons.
  605. * Newer devices (not yet in place) should use the range
  606. * of 128-191 and just pick the first free minor there
  607. * (new style). */
  608. switch (type) {
  609. case VFL_TYPE_GRABBER:
  610. minor_offset = 0;
  611. minor_cnt = 64;
  612. break;
  613. case VFL_TYPE_RADIO:
  614. minor_offset = 64;
  615. minor_cnt = 64;
  616. break;
  617. case VFL_TYPE_VBI:
  618. minor_offset = 224;
  619. minor_cnt = 32;
  620. break;
  621. default:
  622. minor_offset = 128;
  623. minor_cnt = 64;
  624. break;
  625. }
  626. #endif
  627. /* Pick a device node number */
  628. mutex_lock(&videodev_lock);
  629. nr = devnode_find(vdev, nr == -1 ? 0 : nr, minor_cnt);
  630. if (nr == minor_cnt)
  631. nr = devnode_find(vdev, 0, minor_cnt);
  632. if (nr == minor_cnt) {
  633. printk(KERN_ERR "could not get a free device node number\n");
  634. mutex_unlock(&videodev_lock);
  635. return -ENFILE;
  636. }
  637. #ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
  638. /* 1-on-1 mapping of device node number to minor number */
  639. i = nr;
  640. #else
  641. /* The device node number and minor numbers are independent, so
  642. we just find the first free minor number. */
  643. for (i = 0; i < VIDEO_NUM_DEVICES; i++)
  644. if (video_device[i] == NULL)
  645. break;
  646. if (i == VIDEO_NUM_DEVICES) {
  647. mutex_unlock(&videodev_lock);
  648. printk(KERN_ERR "could not get a free minor\n");
  649. return -ENFILE;
  650. }
  651. #endif
  652. vdev->minor = i + minor_offset;
  653. vdev->num = nr;
  654. devnode_set(vdev);
  655. /* Should not happen since we thought this minor was free */
  656. WARN_ON(video_device[vdev->minor] != NULL);
  657. vdev->index = get_index(vdev);
  658. mutex_unlock(&videodev_lock);
  659. /* 上面的part2就是确定设备的次设备号 */
  660. /* Part 3: Initialize the character device */
  661. vdev->cdev = cdev_alloc();
  662. if (vdev->cdev == NULL) {
  663. ret = -ENOMEM;
  664. goto cleanup;
  665. }
  666. /* 在这进行设备的注册,用cdev_alloc函数,从这我们就可以看出来,它是一个普通的字符设备驱动,然后设置它的一些参数。怎么就是字符设备驱动了???这个在后面的v4l2框架中再说。 */
  667. vdev->cdev->ops = &v4l2_fops;
  668. /* cdev结构体里面的ops指向了v4l2_fops这个结构体,这个v4l2_fops结构体也是在v4l2-dev.c这个文件中。又一个file_operations操作函数集,在vivi.c中有一个v4l2_file_operations vivi_fops,他俩又是什么关系呢? */
  669. vdev->cdev->owner = owner;
  670. ret = cdev_add(vdev->cdev, MKDEV(VIDEO_MAJOR, vdev->minor), 1);
  671. if (ret < 0) {
  672. printk(KERN_ERR "%s: cdev_add failed\n", __func__);
  673. kfree(vdev->cdev);
  674. vdev->cdev = NULL;
  675. goto cleanup;
  676. }
  677. /* Part 4: register the device with sysfs */
  678. vdev->dev.class = &video_class;
  679. vdev->dev.devt = MKDEV(VIDEO_MAJOR, vdev->minor);
  680. if (vdev->parent)
  681. vdev->dev.parent = vdev->parent;
  682. dev_set_name(&vdev->dev, "%s%d", name_base, vdev->num);
  683. ret = device_register(&vdev->dev);
  684. if (ret < 0) {
  685. printk(KERN_ERR "%s: device_register failed\n", __func__);
  686. goto cleanup;
  687. }
  688. /* Register the release callback that will be called when the last
  689. reference to the device goes away. */
  690. vdev->dev.release = v4l2_device_release;
  691. if (nr != -1 && nr != vdev->num && warn_if_nr_in_use)
  692. printk(KERN_WARNING "%s: requested %s%d, got %s\n", __func__,
  693. name_base, nr, video_device_node_name(vdev));
  694. /* Increase v4l2_device refcount */
  695. if (vdev->v4l2_dev)
  696. v4l2_device_get(vdev->v4l2_dev);
  697. /* 在sysfs中创建类,在类下创建设备结点 */
  698. #if defined(CONFIG_MEDIA_CONTROLLER)
  699. /* Part 5: Register the entity. */
  700. if (vdev->v4l2_dev && vdev->v4l2_dev->mdev &&
  701. vdev->vfl_type != VFL_TYPE_SUBDEV) {
  702. vdev->entity.type = MEDIA_ENT_T_DEVNODE_V4L;
  703. vdev->entity.name = vdev->name;
  704. vdev->entity.info.v4l.major = VIDEO_MAJOR;
  705. vdev->entity.info.v4l.minor = vdev->minor;
  706. ret = media_device_register_entity(vdev->v4l2_dev->mdev,
  707. &vdev->entity);
  708. if (ret < 0)
  709. printk(KERN_WARNING
  710. "%s: media_device_register_entity failed\n",
  711. __func__);
  712. }
  713. #endif
  714. /* 创建实体entity,这一步并不是必须的,需要配置了CONFIG_MEDIA_CONTROLLER选项后才会执行这一步,在这一步里面有一个media_entity实体结构体,在后面再分析它。 */
  715. /* Part 6: Activate this minor. The char device can now be used. */
  716. set_bit(V4L2_FL_REGISTERED, &vdev->flags);
  717. /* 设置标志位 */
  718. mutex_lock(&videodev_lock);
  719. video_device[vdev->minor] = vdev;
  720. /* 将设置好的video_device结构体vdev按照次设备号保存到video_device数组中。这个数组是在前面static struct video_device *video_device[VIDEO_NUM_DEVICES];定义的。 */
  721. mutex_unlock(&videodev_lock);
  722. return 0;
  723. cleanup:
  724. mutex_lock(&videodev_lock);
  725. if (vdev->cdev)
  726. cdev_del(vdev->cdev);
  727. devnode_clear(vdev);
  728. mutex_unlock(&videodev_lock);
  729. /* Mark this video device as never having been registered. */
  730. vdev->minor = -1;
  731. return ret;
  732. }
  733. EXPORT_SYMBOL(__video_register_device);
  734. 8.5 注册完video_device结构体后继续在vivi_create_instance中执行:
  735. video_set_drvdata(vfd, dev);
  736. /* 将vivi_dev dev添加到video_device vfd中,为什么要这样做呢?是为了以后字符设备驱动接口的使用。*/
  737. list_add_tail(&dev->vivi_devlist, &vivi_devlist);
  738. /* 添加到device list链表中 */
  739. if (video_nr != -1)
  740. video_nr++;
  741. /* 用于计数 */
  742. dev->vfd = vfd;
  743. /* 关联video_device 和vivi_dev。 */
  744. (三)到这里我们就分析完了vivi_init和vivi_create_instance函数,vivi.c中剩下的代码,基本就是以下3个结构体的具体实现代码我们暂时先不分析。
  745. static struct video_device vivi_template = {
  746. .name        = "vivi",
  747. .fops = &vivi_fops,
  748. .ioctl_ops     = &vivi_ioctl_ops,
  749. .release    = video_device_release,
  750. .tvnorms = V4L2_STD_525_60,
  751. .current_norm = V4L2_STD_NTSC_M,
  752. };
  753. static const struct v4l2_ioctl_ops vivi_ioctl_ops = {
  754. .vidioc_querycap = vidioc_querycap,
  755. .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
  756. .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
  757. .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
  758. .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
  759. .vidioc_reqbufs = vidioc_reqbufs,
  760. .vidioc_querybuf = vidioc_querybuf,
  761. .vidioc_qbuf = vidioc_qbuf,
  762. .vidioc_dqbuf = vidioc_dqbuf,
  763. .vidioc_s_std = vidioc_s_std,
  764. .vidioc_enum_input = vidioc_enum_input,
  765. .vidioc_g_input = vidioc_g_input,
  766. .vidioc_s_input = vidioc_s_input,
  767. .vidioc_streamon = vidioc_streamon,
  768. .vidioc_streamoff = vidioc_streamoff,
  769. .vidioc_log_status = v4l2_ctrl_log_status,
  770. .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
  771. .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
  772. };
  773. static const struct v4l2_file_operations vivi_fops = {
  774. .owner        = THIS_MODULE,
  775. .open = v4l2_fh_open,
  776. .release = vivi_close,
  777. .read = vivi_read,
  778. .poll        = vivi_poll,
  779. .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
  780. .mmap = vivi_mmap,
  781. };
  782. 我们首先分析这个vivi.c的目的是为了先大致看一些v4l2驱动的代码,留一些疑问,以后分析v4l2的代码框架及一些概念的时候,还会以这个vivi.c为例子来说明。等到分析完大致的框架以后,我们再来继续仔细分析vivi.c中那些具体代码的实现。
  783. V4L2框架分析
  784. 16年1月18日19:12:43
  785. (一)概述
  786. Video4Linux2是Linux内核中关于视频设备的内核驱动框架,为上层的访问底层的视频设备提供了统一的接口。凡是内核中的子系统都有抽象底层硬件的差异,为上层提供统一的接口和提取出公共代码避免代码冗余等好处。
  787. V4L2支持三类设备:GRABBER视频输入输出设备、VBI设备和RADIO设备(其实还支持更多类型的设备,暂不讨论),分别会在/dev目录下产生videoX、radioX和vbiX设备节点。我们常见的视频输入设备主要是摄像头,也是本文主要分析对象。下图V4L2在Linux系统中的结构图:
  788. Linux系统中视频输入设备主要包括以下四个部分:
  789. (1)字符设备驱动程序核心:V4L2本身就是一个字符设备,具有字符设备所有的特性,暴露接口给用户空间;
  790. (2)V4L2驱动核心:主要是构建一个内核中标准视频设备驱动的框架,为视频操作提供统一的接口函数;
  791. (3)平台V4L2设备驱动:在V4L2框架下,根据平台自身的特性实现与平台相关的V4L2驱动部分,包括注册 video_device和v4l2_dev。
  792. (4)具体的sensor驱动:主要上电、提供工作时钟、视频图像裁剪、流IO开启等,实现各种设备控制方法供上层调用并 注册v4l2_subdev 。
  793. V4L2的核心源码位于drivers/media/video中,在4.4版本的内核中位于drivers/media/v4l2-core,源码以实现的功能可以划分为四类:
  794. 核心模块实现:由v4l2-dev.c实现,主要作用申请字符主设备号、注册class和提供video_device注册注销和file_operations等相关函数;
  795. V4L2框架:由v4l2-device.c、v4l2-subdev.c、v4l2-fh.c、v4l2-ctrls.c等文件实现,构建V4L2框架;
  796. Videobuf管理:由videobuf2-core.c、videobuf2-dma-contig.c、videobuf2-dma-sg.c、videobuf2-memops.c、 videobuf2-vmalloc.c、v4l2-mem2mem.c等文件实现,完成videobuffer的分配、管理和注销。
  797. ioctl框架:由v4l2-ioctl.c文件实现,构建V4L2 ioctl的框架。
  798. (二)V4L2框架
  799. 结构体v4l2_device、video_device、v4l2_subdev和v4l2_fh是搭建框架的主要元素。下图是V4L2框架的结构 图:
  800. 从上图可以看出V4L2框架是一个标准的树形结构,v4l2_device充当了父设备,通过链表把所有注册到其下的子设备管理起来,这些设备可以是GRABBER、VBI或RADIO。v4l2_subdev是子设备,v4l2_subdev结构体包含了对设备操作的ops和ctrls,这部分代码和硬件相关,需要驱动工程师根据硬件实现,像摄像头设备需要实现控制上下电、读取ID、饱和度、对比度和视频数据流打开关闭的接口函数。video_device用于创建子设备节点,把操作设备的接口暴露给用户空间。V4l2_fh是每个子设备的文件句柄,在打开设备节点文件时设置,方便上层索引到v4l2_ctrl_handler,v4l2_ctrl_handler管理设备的ctrls,这些ctrls(摄像头设备)包括调节饱和度、对比度和白平衡等。
  801. (三)v4l2_device结构体
  802. v4l2_device在v4l2框架中充当所有v4l2_subdev的父设备,管理着注册在其下的子设备。 它在v4l2-device.h中定义,如下所示:
  803. struct v4l2_device {
  804. /* dev->driver_data points to this struct.
  805. Note: dev might be NULL if there is no parent device
  806. as is the case with e.g. ISA devices. */
  807. struct device *dev;
  808. /* used to keep track of the registered subdevs */
  809. struct list_head subdevs; //它所管理的子设备链表头
  810. /* lock this struct; can be used by the driver as well if this
  811. struct is embedded into a larger struct. */
  812. spinlock_t lock;
  813. /* unique device name, by default the driver name + bus ID */
  814. char name[V4L2_DEVICE_NAME_SIZE]; //device名字
  815. /* notify callback called by some sub-devices. */
  816. void (*notify)(struct v4l2_subdev *sd,
  817. unsigned int notification, void *arg);
  818. /* The control handler. May be NULL. */
  819. struct v4l2_ctrl_handler *ctrl_handler; //控制接口
  820. /* Device's priority state */
  821. struct v4l2_prio_state prio; //设备优先级状态
  822. /* BKL replacement mutex. Temporary solution only. */
  823. struct mutex ioctl_lock;
  824. /* Keep track of the references to this struct. */
  825. struct kref ref; //引用计数
  826. /* Release function that is called when the ref count goes to 0. */
  827. void (*release)(struct v4l2_device *v4l2_dev);
  828. };
  829. 可以看出v4l2_device的主要作用是管理注册在其下的子设备,方便系统查找引用到。
  830. V4l2_device的注册和注销:
  831. int v4l2_device_register(struct device*dev, struct v4l2_device *v4l2_dev)
  832. static void v4l2_device_release(struct kref *ref)
  833. 暂时不对这两个函数进行具体分析,再后面会详细分析这个c文件。
  834. (四)V4l2_subdev
  835. V4l2_subdev代表子设备,包含了子设备的相关属性和操作。先来看下结构体原型,在v4l2-subdev.h中:
  836. struct v4l2_subdev {
  837. #if defined(CONFIG_MEDIA_CONTROLLER)
  838. struct media_entity entity;
  839. #endif
  840. struct list_head list;
  841. struct module *owner;
  842. u32 flags;
  843. struct v4l2_device *v4l2_dev; //指向它的父设备
  844. const struct v4l2_subdev_ops *ops; //提供一些控制v4l2设备的接口
  845. /* Never call these internal ops from within a */
  846. const struct v4l2_subdev_internal_ops *internal_ops; //向V4L2框架提供的接口函数
  847. /* The control handler of this subdev. May be NULL. */
  848. struct v4l2_ctrl_handler *ctrl_handler; //subdev控制接口
  849. /* name must be unique */
  850. char name[V4L2_SUBDEV_NAME_SIZE]; //subdev名字
  851. /* can be used to group similar subdevs, value is driver-specific */
  852. u32 grp_id;
  853. /* pointer to private data */
  854. void *dev_priv;
  855. void *host_priv;
  856. /* subdev device node */
  857. struct video_device *devnode;
  858. };
  859. 每个子设备驱动都需要实现一个v4l2_subdev结构体,v4l2_subdev可以内嵌到其它结构体中,也可以独立使用。结构体中包含了对子设备操作的成员v4l2_subdev_ops和v4l2_subdev_internal_ops。
  860. v4l2_subdev_ops结构体原型如下:
  861. struct v4l2_subdev_ops {
  862. const struct v4l2_subdev_core_ops    *core;
  863. const struct v4l2_subdev_tuner_ops    *tuner;
  864. const struct v4l2_subdev_audio_ops    *audio;
  865. const struct v4l2_subdev_video_ops    *video;
  866. const struct v4l2_subdev_vbi_ops    *vbi;
  867. const struct v4l2_subdev_ir_ops        *ir;
  868. const struct v4l2_subdev_sensor_ops    *sensor;
  869. const struct v4l2_subdev_pad_ops    *pad;
  870. };
  871. 视频设备通常需要实现core和video成员,这两个ops中的操作都是可选的,但是对于视频流设备
  872. video->s_stream(开启或关闭流IO)必须要实现。
  873. v4l2_subdev_internal_ops结构体原型如下:
  874. struct v4l2_subdev_internal_ops {
  875. int (*registered)(struct v4l2_subdev *sd);
  876. void (*unregistered)(struct v4l2_subdev *sd);
  877. int (*open)(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh);
  878. int (*close)(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh);
  879. };
  880. v4l2_subdev_internal_ops是向V4L2框架提供的接口,只能被V4L2框架层调用。在注册或打开子设备时,进行一些辅助性操作。
  881. subdev的注册和注销
  882. 当我们把v4l2_subdev需要实现的成员都已经实现,就可以调用以下函数把子设备注册到V4L2核心层:
  883. int v4l2_device_register_subdev(struct v4l2_device*v4l2_dev, struct v4l2_subdev *sd)
  884. 当卸载子设备时,可以调用以下函数进行注销:
  885. void v4l2_device_unregister_subdev(struct v4l2_subdev*sd)
  886. (五)video_device
  887. 1. video_device结构体用于在/dev目录下生成设备节点文件,把操作设备的接口暴露给用户空间。所以这个结构体是我们操作的重点,它直接与用户空间相联系。
  888. struct video_device
  889. {
  890. #if defined(CONFIG_MEDIA_CONTROLLER)
  891. struct media_entity entity;
  892. #endif
  893. /* device ops */
  894. const struct v4l2_file_operations *fops; //V4L2设备操作函数集合
  895. /* sysfs */
  896. struct device dev;        /* v4l device */
  897. struct cdev *cdev;        /* character device */
  898. /* Set either parent or v4l2_dev if your driver uses v4l2_device */
  899. struct device *parent;        /* device parent */
  900. struct v4l2_device *v4l2_dev;    /* v4l2_device parent */
  901. /* Control handler associated with this device node. May be NULL. */
  902. struct v4l2_ctrl_handler *ctrl_handler;
  903. /* Priority state. If NULL, then v4l2_dev->prio will be used. */
  904. struct v4l2_prio_state *prio;
  905. /* device info */
  906. char name[32];
  907. int vfl_type;
  908. /* 'minor' is set to -1 if the registration failed */
  909. int minor;
  910. u16 num;
  911. /* use bitops to set/clear/test flags */
  912. unsigned long flags;
  913. /* attribute to differentiate multiple indices on one physical device */
  914. int index;
  915. /* V4L2 file handles */
  916. spinlock_t        fh_lock; /* Lock for all v4l2_fhs */
  917. struct list_head    fh_list; /* List of struct v4l2_fh */
  918. int debug;            /* Activates debug level*/
  919. /* Video standard vars */
  920. v4l2_std_id tvnorms;        /* Supported tv norms */
  921. v4l2_std_id current_norm;    /* Current tvnorm */
  922. /* callbacks */
  923. void (*release)(struct video_device *vdev);
  924. /* ioctl callbacks */
  925. const struct v4l2_ioctl_ops *ioctl_ops; /*ioctl回调函数集,提供                                     * file_operations中的ioctl调用 */
  926. /* serialization lock */
  927. struct mutex *lock;
  928. };
  929. 2. video_device结构体的name字段是这类设备的名字,它将出现在内核日志和 sysfs中出现。这个名字 通常与驱动名称相同。
  930. 3. vfl_type字段可以是下列5个值之一,他们在v4l2-dev.h中定义:
  931. #define VFL_TYPE_GRABBER    0
  932. #define VFL_TYPE_VBI        1
  933. #define VFL_TYPE_RADIO        2
  934. #define VFL_TYPE_SUBDEV        3
  935. #define VFL_TYPE_MAX        4
  936. 4. V4L2驱动还要初始化的一个字段是 minor,它是你想要的子设备号。通常这个值都设为-1,这样会让video4linux子系统在注册时自动分配一个空的子设备号。
  937. 5. 在video_device结构体中,一共包含三组不同的函数指针集。
  938. 5.1第一个函数指针集只包含一个函数,就是
  939. void (*release)(struct video_device *vdev);
  940. 这个函数通常只包含一个简单的kfree调用,V4L2驱动框架中v4l2-dev.c中帮我们实现了video_device_release,一般让这个函数指向video_device_release即可。
  941. 5.2 第二个函数指针集是const struct v4l2_file_operations *fops; 它与file_operations结构体大致相同,在前面我们就说了,V4L2框架它就是一个字符设备驱动,怎么体现呢?以这个vivi.c为例:
  942. 首先,它作为一个字符设备驱动,肯定有对应的file_operations结构,它就在v4l2-dev.c中定义了:
  943. static const struct file_operations v4l2_fops = {
  944. .owner = THIS_MODULE,
  945. .read = v4l2_read,
  946. .write = v4l2_write,
  947. .open = v4l2_open,
  948. .get_unmapped_area = v4l2_get_unmapped_area,
  949. .mmap = v4l2_mmap,
  950. .unlocked_ioctl = v4l2_ioctl,
  951. .release = v4l2_release,
  952. .poll = v4l2_poll,
  953. .llseek = no_llseek,
  954. };
  955. 然后,在vivi.c中,我们注册申请video_device vivi_template的时候,需要提供对应的v4l2_file_operations vivi_fops,如下所示:
  956. static struct video_device vivi_template = {
  957. .name        = "vivi",
  958. .fops = &vivi_fops,
  959. .ioctl_ops     = &vivi_ioctl_ops,
  960. .release    = video_device_release,
  961. .tvnorms = V4L2_STD_525_60,
  962. .current_norm = V4L2_STD_NTSC_M,
  963. };
  964. static const struct v4l2_file_operations vivi_fops = {
  965. .owner        = THIS_MODULE,
  966. .open = v4l2_fh_open,
  967. .release = vivi_close,
  968. .read = vivi_read,
  969. .poll        = vivi_poll,
  970. .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
  971. .mmap = vivi_mmap,
  972. };
  973. 以read为例,应用程序在调用read的时候,对应到驱动file_operations v4l2_fops中的v4l2_read函数,在函数里面通过ret = vdev->fops->read(filp, buf, sz, off);最后调用到我们在vivi.c中申请注册的video_device vivi_template 结构体里面的fops->read函数,即vivi_read函数。即V4L2框架只是提供了一个中转站的效果。再看vivi_read函数里面,
  974. return vb2_read(&dev->vb_vidq, data, count, ppos, file->f_flags & O_NONBLOCK);
  975. 它又调用了videobuf2-core.c中的vb2_read函数。确实说明了v4l2框架的中转作用。
  976. 这样相似的函数有read, write, poll, mmap, realease等,比较特别的是ioctl函数,在后面分析它。他们都是应用程序调用,通过V4L2框架中转到对应的驱动程序中,然后驱动程序根据不同的调用,选择调用videobuf或ioctl中的函数。
  977. 5.3 第三个函数指针集是const struct v4l2_ioctl_ops *ioctl_ops;在vivi.c中就是
  978. static const struct v4l2_ioctl_ops vivi_ioctl_ops = {
  979. .vidioc_querycap = vidioc_querycap,
  980. .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
  981. .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
  982. .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
  983. .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
  984. .vidioc_reqbufs = vidioc_reqbufs,
  985. .vidioc_querybuf = vidioc_querybuf,
  986. .vidioc_qbuf = vidioc_qbuf,
  987. .vidioc_dqbuf = vidioc_dqbuf,
  988. .vidioc_s_std = vidioc_s_std,
  989. .vidioc_enum_input = vidioc_enum_input,
  990. .vidioc_g_input = vidioc_g_input,
  991. .vidioc_s_input = vidioc_s_input,
  992. .vidioc_streamon = vidioc_streamon,
  993. .vidioc_streamoff = vidioc_streamoff,
  994. .vidioc_log_status = v4l2_ctrl_log_status,
  995. .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
  996. .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
  997. };
  998. 这个ioctl更麻烦,首先作为字符设备驱动,当应用程序调用ioctl的时候,就调用到了file_operations v4l2_fops中的.unlocked_ioctl = v4l2_ioctl,这个v4l2_ioctl同样通过ret = vdev->fops->ioctl(filp, cmd, arg);就调用到了vivi.c中申请注册的video_device vivi_template结构体里面的fops->ioctl函数,即v4l2_file_operations vivi_fops里面的 video_ioctl2函数,这个video_ioctl2函数又调用__video_do_ioctl函数(以上两个函数都在v4l2-ioctl.c中),根据不同的cmd宏,以VIDIOC_QUERYCAP为例,通过
  999. ret = ops->vidioc_querycap(file, fh, cap);
  1000. 其中struct video_device *vfd = video_devdata(file);
  1001. const struct v4l2_ioctl_ops *ops = vfd->ioctl_ops;
  1002. 可以看出,__video_do_ioctl函数又调用了video_device vivi_template 结构体里面的.ioctl_ops = &vivi_ioctl_ops,然后根据宏的名字来选择struct v4l2_ioctl_ops vivi_ioctl_ops中对应的函数,即vidioc_querycap函数。
  1003. 这些调用太麻烦了,我决定在后面画一张图表来表示这些调用关系。
  1004. 5.4 video_device分配和释放,用于分配和释放video_device结构体:
  1005. struct video_device *video_device_alloc(void)
  1006. void video_device_release(struct video_device *vdev)
  1007. video_device注册和注销,实现video_device结构体的相关成员后,就可以调用下面的接口进行注册:
  1008. static inline int __must_check video_register_device(struct video_device *vdev,
  1009. inttype, int nr)
  1010. void video_unregister_device(struct video_device*vdev);
  1011. vdev:需要注册和注销的video_device;
  1012. type:设备类型,包括VFL_TYPE_GRABBER、VFL_TYPE_VBI、VFL_TYPE_RADIO和VFL_TYPE_SUBDEV。
  1013. nr:设备节点名编号,如/dev/video[nr]。
  1014. (六)v4l2_fh
  1015. v4l2_fh是用来保存子设备的特有操作方法,也就是下面要分析到的v4l2_ctrl_handler,内核提供一组v4l2_fh的操作方法,通常在打开设备节点时进行v4l2_fh注册。
  1016. 初始化v4l2_fh,添加v4l2_ctrl_handler到v4l2_fh:
  1017. void v4l2_fh_init(struct v4l2_fh *fh, structvideo_device *vdev)
  1018. 添加v4l2_fh到video_device,方便核心层调用到:
  1019. void v4l2_fh_add(struct v4l2_fh *fh)
  1020. (七)v4l2_ctrl_handler
  1021. v4l2_ctrl_handler是用于保存子设备控制方法集的结构体,对于视频设备这些ctrls包括设置亮度、饱和度、对比度和 清晰度等,用链表的方式来保存ctrls,可以通过v4l2_ctrl_new_std函数向链表添加ctrls。
  1022. struct v4l2_ctrl *v4l2_ctrl_new_std(struct v4l2_ctrl_handler *hdl,
  1023. const struct v4l2_ctrl_ops *ops, u32 id, s32 min, s32 max, u32 step, s32 def)
  1024. hdl是初始化好的v4l2_ctrl_handler结构体;
  1025. ops是v4l2_ctrl_ops结构体,包含ctrls的具体实现;
  1026. id是通过IOCTL的arg参数传过来的指令,定义在v4l2-controls.h文件;
  1027. min、max用来定义某操作对象的范围。如:
  1028. v4l2_ctrl_new_std(hdl, ops, V4L2_CID_BRIGHTNESS,-208, 127, 1, 0);
  1029. 用户空间可以通过ioctl的VIDIOC_S_CTRL指令调用到v4l2_ctrl_handler,id透过arg参数传递。
  1030. (八)ioctl框架
  1031. 你可能观察到用户空间对V4L2设备的操作基本都是ioctl来实现的,V4L2设备都有大量可操作的功能(配置寄存器),所以V4L2的ioctl也是十分庞大的。它是一个怎样的框架,是怎么实现的呢?
  1032. ioctl函数在v4l2-ioctl.h中定义,一共包含79个回调函数,如果在这列举的话,就会显得太冗长了,我们会在下面用到的部分再列举,现显示部分如下所示:
  1033. struct v4l2_ioctl_ops {
  1034. /* ioctl callbacks */
  1035. /* VIDIOC_QUERYCAP handler */
  1036. int (*vidioc_querycap)(struct file *file, void *fh, struct v4l2_capability *cap);
  1037. /* Priority handling */
  1038. int (*vidioc_g_priority) (struct file *file, void *fh,
  1039. enum v4l2_priority *p);
  1040. int (*vidioc_s_priority) (struct file *file, void *fh,
  1041. enum v4l2_priority p);
  1042. ......................................
  1043. /* For other private ioctls */
  1044. long (*vidioc_default)     (struct file *file, void *fh,
  1045. bool valid_prio, int cmd, void *arg);
  1046. };
  1047. 8.1 驱动要实现的第一个回调函数可能就是:
  1048. /* VIDIOC_QUERYCAP handler */
  1049. int (*vidioc_querycap)(struct file *file, void *priv, struct v4l2_capability *cap);
  1050. 这个函数处理 VIDIOC_QUERYCAP 的 ioctl(), 只是简单问问“你是谁?你能干什么?”实现它是 V4L2 驱动的责任。和所有其他V4L2回调函数一样,这个函数中的参数 priv 是 file->private_data 域的内容,通 常的做法是在 open()的时候把它指向驱动中表示设备的内部结构体。
  1051. 驱动应该负责填充cap结构并且返回“0或负的错误码”值。如果成功返回,则V4L2层会负责把回复拷 贝到用户空间。
  1052. struct v4l2_capability定义在videodev2.h中,如下所示:
  1053. /**
  1054. * struct v4l2_capability - Describes V4L2 device caps returned by                                         VIDIOC_QUERYCAP
  1055. *
  1056. * @driver:     name of the driver module (e.g. "bttv")
  1057. * @card:     name of the card (e.g. "Hauppauge WinTV")
  1058. * @bus_info:     name of the bus (e.g. "PCI:" + pci_name(pci_dev) )
  1059. * @version:     KERNEL_VERSION
  1060. * @capabilities: capabilities of the physical device as a whole
  1061. * @device_caps: capabilities accessed via this particular device (node)
  1062. * @reserved:     reserved fields for future extensions
  1063. */
  1064. struct v4l2_capability {
  1065. __u8    driver[16]; //driver的名字
  1066. __u8    card[32]; //设备的硬件描述信息
  1067. __u8    bus_info[32];
  1068. __u32 version; //内核版本号
  1069. __u32    capabilities;
  1070. __u32    device_caps;
  1071. __u32    reserved[3];
  1072. };
  1073. 对于bus_info 成员,驱动程序一般用strlcpy(cap->bus_info, dev->v4l2_dev.name, sizeof(cap->bus_info));来填充。
  1074. capabilities 成员是一个位掩码用来描述驱动能做的不同事情,也在videodev2.h中定义:
  1075. /* Values for 'capabilities' field */
  1076. #define V4L2_CAP_VIDEO_CAPTURE        0x00000001 /* Is a video capture device */
  1077. #define V4L2_CAP_VIDEO_OUTPUT        0x00000002 /* Is a video output device */
  1078. #define V4L2_CAP_VIDEO_OVERLAY        0x00000004 /* Can do video overlay */
  1079. #define V4L2_CAP_VBI_CAPTURE        0x00000010 /* Is a raw VBI capture device */
  1080. #define V4L2_CAP_VBI_OUTPUT        0x00000020 /* Is a raw VBI output device */
  1081. #define V4L2_CAP_SLICED_VBI_CAPTURE    0x00000040 /* Is a sliced VBI capture device */
  1082. #define V4L2_CAP_SLICED_VBI_OUTPUT    0x00000080 /* Is a sliced VBI output device */
  1083. #define V4L2_CAP_RDS_CAPTURE        0x00000100 /* RDS data capture */
  1084. #define V4L2_CAP_VIDEO_OUTPUT_OVERLAY    0x00000200 /* Can do video output overlay */
  1085. #define V4L2_CAP_HW_FREQ_SEEK        0x00000400 /* Can do hardware frequency seek */
  1086. #define V4L2_CAP_RDS_OUTPUT        0x00000800 /* Is an RDS encoder */
  1087. /* Is a video capture device that supports multiplanar formats */
  1088. #define V4L2_CAP_VIDEO_CAPTURE_MPLANE    0x00001000
  1089. /* Is a video output device that supports multiplanar formats */
  1090. #define V4L2_CAP_VIDEO_OUTPUT_MPLANE    0x00002000
  1091. #define V4L2_CAP_TUNER            0x00010000 /* has a tuner */
  1092. #define V4L2_CAP_AUDIO            0x00020000 /* has audio support */
  1093. #define V4L2_CAP_RADIO            0x00040000 /* is a radio device */
  1094. #define V4L2_CAP_MODULATOR        0x00080000 /* has a modulator */
  1095. #define V4L2_CAP_READWRITE 0x01000000 /* read/write systemcalls */
  1096. #define V4L2_CAP_ASYNCIO 0x02000000 /* async I/O */
  1097. #define V4L2_CAP_STREAMING 0x04000000 /* streaming I/O ioctls */
  1098. #define V4L2_CAP_DEVICE_CAPS 0x80000000 /* sets device capabilities field */
  1099. 下面我们来看看vivi.c中对它的实现:
  1100. static int vidioc_querycap(struct file *file, void *priv,
  1101. struct v4l2_capability *cap)
  1102. {
  1103. struct vivi_dev *dev = video_drvdata(file);
  1104. strcpy(cap->driver, "vivi");
  1105. strcpy(cap->card, "vivi");
  1106. strlcpy(cap->bus_info, dev->v4l2_dev.name, sizeof(cap->bus_info));
  1107. cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
  1108. V4L2_CAP_READWRITE;
  1109. cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
  1110. return 0;
  1111. }
  1112. 它就是完成上述我们所说的事情。
  1113. 8.2 输入和输出
  1114. 8.2.1 综述
  1115. 在很多情况下,视频适配器并不能提供很多的输入输出选项。比如摄像头控制器,可能只是提供摄像 头信号输入,而没什么别的功能;然而,在一些其他的情况下,事情就变得复杂了。一个电视卡板上不同
    的接口可能对应不同的输入。他甚至可能拥有可独立发挥功能的多路调谐器。有时,那些输入会有不同的
    特性,有些调谐器可以支持比其他的更广泛的视频标准。对于输出来说,也有同样的问题。
    很明显,一个应用若想有效地利用视频适配器,它必须有能力找到可用的输入和输出,而且他必须能 找到他想操作的那一个。为此,Video4Linux2
    API提供三种不同的ioctl()调用来处理输入,相应地有三个来 处理输出。如下所示:
  1116. int (*vidioc_g_std) (struct file *file, void *fh, v4l2_std_id *norm);
  1117. int (*vidioc_s_std) (struct file *file, void *fh, v4l2_std_id *norm);
  1118. int (*vidioc_querystd) (struct file *file, void *fh, v4l2_std_id *a);
  1119. /* Input handling */
  1120. int (*vidioc_enum_input)(struct file *file, void *fh, struct v4l2_input *inp);
  1121. int (*vidioc_g_input) (struct file *file, void *fh, unsigned int *i);
  1122. int (*vidioc_s_input) (struct file *file, void *fh, unsigned int i);
  1123. /* Output handling */
  1124. int (*vidioc_enum_output) (struct file *file, void *fh, struct v4l2_output *a);
  1125. int (*vidioc_g_output) (struct file *file, void *fh, unsigned int *i);
  1126. int (*vidioc_s_output) (struct file *file, void *fh, unsigned int i);
  1127. 对于用户空间而言,V4L2提供一个ioctl()命令(VIDIOC_ENUMSTD),它允许应用查询设备实现了哪 些标准。驱动却无需直接回答查询,而是将video_device 结构体的tvnorm字段设置为它所支持的所有标准。
  1128. 然后V4L2层会向应用回复所支持的标准。VIDIOC_G_STD命令可以用来查询现在哪种标准是激活的,它 也是在V4L2层通过返回video_device结构体的current_norm字段来处理的。驱动程序应在启动时,初始化 current_norm来反映现实情况。 当某个应用想要申请某个特定标准时,会发出一个 VIDIOC_S_STD 调用,该调用传到驱动时通过调用int (*vidioc_s_std) (struct file *file, void *fh, v4l2_std_id *norm); 回调函数来实现,来看vivi.c中,
  1129. static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *i)
  1130. {
  1131. return 0;
  1132. }
  1133. 它就什么都没做,因为在设置video_device结构体的时候设置了:
  1134. static struct video_device vivi_template = {
  1135. .name        = "vivi",
  1136. .fops = &vivi_fops,
  1137. .ioctl_ops     = &vivi_ioctl_ops,
  1138. .release    = video_device_release,
  1139. .tvnorms = V4L2_STD_525_60,
  1140. .current_norm = V4L2_STD_NTSC_M,
  1141. };
  1142. 下面就简单说一些视频标准,这些标准描述的是视频如何为传输 而进行格式化---分辨率、帧率等。 现在世界上使用的 标准主要有三个:NTSC(主要是北美使用)、PAL(主要是欧洲、非洲和中国)和 SECAM(法、俄和非洲部分地 区)。
  1143. V4L2 使用v4l2_std_id 来代表视频标准,它是一个64位的掩码。每个标准变种在掩码中就是一位。所
  1144. 以 “标准”NTSC 的定义为V4L2_STD_NTSC_M, 值为 0x1000 ; 而日本的变种就是V4L2_STD_NTSC_M_JP(0x2000)。如果一个设备可以处理所有NTSC变种,它就可以设为V4L2_STD_NTSC,它将所有相关位置位。它同样在videodev2.h中定义:
  1145. /*
  1146. * A N A L O G V I D E O S T A N D A R D
  1147. */
  1148. typedef __u64 v4l2_std_id;
  1149. /* one bit for each */
  1150. #define V4L2_STD_PAL_B ((v4l2_std_id)0x00000001)
  1151. #define V4L2_STD_PAL_B1 ((v4l2_std_id)0x00000002)
  1152. #define V4L2_STD_PAL_G ((v4l2_std_id)0x00000004)
  1153. #define V4L2_STD_PAL_H ((v4l2_std_id)0x00000008)
  1154. #define V4L2_STD_PAL_I ((v4l2_std_id)0x00000010)
  1155. #define V4L2_STD_PAL_D ((v4l2_std_id)0x00000020)
  1156. #define V4L2_STD_PAL_D1 ((v4l2_std_id)0x00000040)
  1157. #define V4L2_STD_PAL_K ((v4l2_std_id)0x00000080)
  1158. #define V4L2_STD_PAL_M ((v4l2_std_id)0x00000100)
  1159. #define V4L2_STD_PAL_N ((v4l2_std_id)0x00000200)
  1160. #define V4L2_STD_PAL_Nc ((v4l2_std_id)0x00000400)
  1161. #define V4L2_STD_PAL_60 ((v4l2_std_id)0x00000800)
  1162. #define V4L2_STD_NTSC_M ((v4l2_std_id)0x00001000)    /* BTSC */
  1163. #define V4L2_STD_NTSC_M_JP ((v4l2_std_id)0x00002000)    /* EIA-J */
  1164. #define V4L2_STD_NTSC_443 ((v4l2_std_id)0x00004000)
  1165. #define V4L2_STD_NTSC_M_KR ((v4l2_std_id)0x00008000)    /* FM A2 */
  1166. #define V4L2_STD_SECAM_B ((v4l2_std_id)0x00010000)
  1167. #define V4L2_STD_SECAM_D ((v4l2_std_id)0x00020000)
  1168. #define V4L2_STD_SECAM_G ((v4l2_std_id)0x00040000)
  1169. #define V4L2_STD_SECAM_H ((v4l2_std_id)0x00080000)
  1170. #define V4L2_STD_SECAM_K ((v4l2_std_id)0x00100000)
  1171. #define V4L2_STD_SECAM_K1 ((v4l2_std_id)0x00200000)
  1172. #define V4L2_STD_SECAM_L ((v4l2_std_id)0x00400000)
  1173. #define V4L2_STD_SECAM_LC ((v4l2_std_id)0x00800000)
  1174. /* ATSC/HDTV */
  1175. #define V4L2_STD_ATSC_8_VSB ((v4l2_std_id)0x01000000)
  1176. #define V4L2_STD_ATSC_16_VSB ((v4l2_std_id)0x02000000)
  1177. /*
  1178. * "Common" NTSC/M - It should be noticed that V4L2_STD_NTSC_443 is
  1179. * Missing here.
  1180. */
  1181. #define V4L2_STD_NTSC (V4L2_STD_NTSC_M | V4L2_STD_NTSC_M_JP | V4L2_STD_NTSC_M_KR)
  1182. 8.2.2 输入
  1183. 视频捕获的应用首先要通过 VIDIOC_ENUMINPUT 命令来枚举所有可用的输入。在V4L2层,这个调
  1184. 用会转换成调用驱动中对应的回调函数:
  1185. int (*vidioc_enum_input)(struct file *file, void *priv, struct v4l2_input *inp);
  1186. 在这个调用中,file 对应要打开的视频设备。priv是驱动的私有字段。inp字段是传递的真正 信息,
  1187. 先来看看这个v4l2_input结构体,它在videodev2.h中定义:
  1188. struct v4l2_input {
  1189. __u32     index;        /* Which input */
  1190. __u8     name[32];        /* Label */
  1191. __u32     type;        /* Type of input */
  1192. __u32     audioset;        /* Associated audios (bitfield) */
  1193. __u32 tuner; /* Associated tuner */
  1194. v4l2_std_id std;
  1195. __u32     status;
  1196. __u32     capabilities;
  1197. __u32     reserved[3];
  1198. };
  1199. index:是应用关注的输入索引号; 这是惟一一个用户空间设定的字段。驱动要分配索引号给输入,从0开始,依次增加。想要知道所有可用的输入,应用会调用 VIDIOC_ENUMINPUT,索引号从0开始,并开始递增。一旦驱动返回-EINVAL,应用就知道:输入己经枚举完了。只要有输入,输入索引号0就一定存在。
  1200. name:是输入的名字,由驱动确定。
  1201. type:输入类型,只有两个值可选 : V4L2_INPUT_TYPE_TUNER 和 V4L2_INPUT_TYPE_CAMERA。
  1202. status:给出输入状态,其中设置的每一位都代表一个问题,比如说掉电,无信号等问题,定义如下:
  1203. #define V4L2_IN_ST_NO_POWER 0x00000001 /* Attached device is off */
  1204. #define V4L2_IN_ST_NO_SIGNAL 0x00000002
  1205. #define V4L2_IN_ST_NO_COLOR 0x00000004
  1206. std:描述设备支持哪个或哪些视频标准。就是上面咱们所说的视频标准。
  1207. 来看看vivi.c中是怎么实现这个函数的:
  1208. /* only one input in this sample driver */
  1209. static int vidioc_enum_input(struct file *file, void *priv,
  1210. struct v4l2_input *inp)
  1211. {
  1212. if (inp->index >= NUM_INPUTS)
  1213. return -EINVAL;
  1214. inp->type = V4L2_INPUT_TYPE_CAMERA;
  1215. inp->std = V4L2_STD_525_60;
  1216. sprintf(inp->name, "Camera %u", inp->index);
  1217. return 0;
  1218. }
  1219. 当应用想改变当前输入时,驱动会收到一个对回调函数 vidioc_s_input()的调用。
  1220. int (*vidioc_s_input) (struct file *file, void *priv, unsigned int index);
  1221. index与上面提到的相同,它用来确定哪个输入是想要的 ,驱动要对硬件操作,选择指定输
  1222. 入并返回 0。也有可能要返回-EINVAL(索引号不正确) 或-EIO(硬件故障)。即使只有一路输入,驱动也要实 现这个回调函数。
  1223. 还有另一个回调函数,指示哪一个输入处在激活状态:
  1224. int (*vidioc_g_input) (struct file *file, void *priv, unsigned int *index);
  1225. 这里驱动把*index 值设为当前激活输入的索引号。
  1226. 看看vivi.c中对这两个函数的实现:
  1227. static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
  1228. {
  1229. struct vivi_dev *dev = video_drvdata(file);
  1230. *i = dev->input;
  1231. return 0;
  1232. }
  1233. static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
  1234. {
  1235. struct vivi_dev *dev = video_drvdata(file);
  1236. if (i >= NUM_INPUTS)
  1237. return -EINVAL;
  1238. if (i == dev->input)
  1239. return 0;
  1240. dev->input = i;
  1241. precalculate_bars(dev);
  1242. precalculate_line(dev);
  1243. return 0;
  1244. }
  1245. 8.2.3 输出
  1246. 枚举和选择输出的过程与输入十分相似。
  1247. 输出枚举的回调函数是这样的:
  1248. int (*vidioc_enumoutput) (struct file *file, void *private_data, struct v4l2_output *output);
  1249. 其中v4l2_output结构体如下所示:
  1250. struct v4l2_output {
  1251. __u32     index;        /* Which output */
  1252. __u8     name[32];        /* Label */
  1253. __u32     type;        /* Type of output */
  1254. __u32     audioset;        /* Associated audios (bitfield) */
  1255. __u32     modulator; /* Associated modulator */
  1256. v4l2_std_id std;
  1257. __u32     capabilities;
  1258. __u32     reserved[3];
  1259. };
  1260. index:相关输出索引号,工作方式与输入的索引号相同。
  1261. type:输出类型,支持的类型如下:
  1262. /* Values for the 'type' field */
  1263. #define V4L2_OUTPUT_TYPE_MODULATOR         1 //用于模拟电视调制器
  1264. #define V4L2_OUTPUT_TYPE_ANALOG            2 //用于基本模拟视频输出
  1265. #define V4L2_OUTPUT_TYPE_ANALOGVGAOVERLAY     3 //用于模拟 VGA 覆盖设备
  1266. audioset:能与视频协同工作的音频集。
  1267. modulator:与此设备相关的调制器(仅对类型为 V4L2_OUTPUT_TYPE_MODULATOR 的设 备而言)。
  1268. std:描述设备支持哪个或哪些视频标准。就是上面咱们所说的视频标准。
  1269. capabilities flags:
  1270. #define V4L2_OUT_CAP_PRESETS         0x00000001 /* Supports S_DV_PRESET */
  1271. #define V4L2_OUT_CAP_CUSTOM_TIMINGS     0x00000002 /* Supports S_DV_TIMINGS */
  1272. #define V4L2_OUT_CAP_STD         0x00000004 /* Supports S_STD */
  1273. 也有用于获得和设定现行输出设置的回调函数:
  1274. int (*vidioc_g_output) (struct file *file, void *fh, unsigned int *i);
  1275. int (*vidioc_s_output) (struct file *file, void *fh, unsigned int i);
  1276. 有了这些函数之后,V4L2 应用就可以知道有哪些输入和输入,并在它们间进行选择。
  1277. 8.3 颜色与格式
  1278. 应用在视频设备可以工作之前,它必须与驱动达成一致,知道视频数据是何种格式。这种协商将是一
  1279. 个非常复杂的过程,其原因有二:
  1280. 1、 视频硬件所支持的视频格各不相同。
  1281. 2、 在内核的格式转换是令人难以接受的。
  1282. 所以应用要找出一种硬件支持的格式,并做出一种大家都可以接受的配置。 这篇文章将会讲述格式的
  1283. 基本描述方式,下篇文章则会讲述 V4L2 驱动与应用协商格式时所实现的 API。
  1284. 8.3.1 色域
  1285. 色域从广义上来讲,就是系统在描述色彩时所使用的坐标系。V4L2 规范中定义了好几个,但只有两个
  1286. 的使用最为广泛。它们是:
  1287. ● V4L2_COLORSPACE_SRGB
  1288. 多数开发者所熟悉的[red、green、blue]数组就包含在这个色域中。它为每一种颜色提供了一个简单的
  1289. 强度值,把它们混合在一起,从而产生了丰富的颜色。表示 RGB 值的方法有很多,我们在下面将会介绍。 这个色域也包含 YUV 和 YCbCr 的表示方法,这个表示方法最早是为了早期的彩色电视信号可以在黑 白电视中的播放,所以 Y(或“亮度” )值只是一个简单的亮度值,单独显示时可以产生灰度图像。U 和 V (或 Cb 和 Cr)色度值描述的是色彩中蓝色和红色的分量。绿色可以通过从亮度中减去这些分量而得到。
  1290. YUV 和 RGB 之间的转换并不那么直接,但是我们有一些公式可用。
  1291. 注意:YUV 和 YCbCr 并非完全一样,虽然有时他们的名字会替代使用。
  1292. ● V4L2_COLORSPACE_SMPTE170M
  1293. 这个是 NTSC 或 PAL 等电视信号的模拟色彩表示方法,电视调谐器通常产生的色域都属于这个色域。 还存在很多其他的色域,他们多数都是电视相关标准的变种。
  1294. 8.3.2 密集存储和平面存储
  1295. 如上所述,像素值是以数组的方式表示的,通常由 RGB 或 YUV 值组成。要把这数组组织成图像,通 常有两种常用的方法。
  1296. ● Packed 格式把一个像素的所有分量值连续存放在一起。
  1297. ● Planar 格式把每一个分量单独存储成一个阵列。例如在 YUV 格式中,所有 Y 值都连续地一起存 储在一个阵列中,U 值存储在另一个中,V 值存在第三个中。这些平面常常都存储在一个缓冲区 中,但并不一定非要这样。
  1298. 紧密型存储方式可能使用更为广泛,特别是 RGB 格式,但这两种存储方式都可以由硬件产生并由应用 程序请求。如果设备可以产生紧密型和平面型两种,那么驱动就要让两种都在用户空间可见。
  1299. 8.3.3 四字符码 (four Charactor Code : FourCC )
  1300. V4L2 API 中表示色彩格式采用的是广受好评的四字符码(fourcc)机制。这些编码都是 32 位的值,由四
  1301. 个 ASCII 码产生。 如此一来, 它就有一个优点就是, 易于传递, 对人可读。 例如, 当一个色彩格式读作“RGB4” 就没有必要去查表了。
  1302. 注意:
  1303. 四字符码在很多不同的配置中都会使用, 有些还是早于linux。 Mplayer 内部使用它们, 然而, fourcc 只是说明一种编码机制,并不说明使用何种编码。Mplayer有一个转换函数,用于在它自己的fourcc码和v4l2 用的fourcc码之间做出转换。
  1304. 8.3.4 RGB 格式:(videodev2.h中)
  1305. /* RGB formats */
  1306. #define V4L2_PIX_FMT_RGB332 v4l2_fourcc('R', 'G', 'B', '1') /* 8 RGB-3-3-2 */
  1307. #define V4L2_PIX_FMT_RGB444 v4l2_fourcc('R', '4', '4', '4') /* 16 xxxxrrrr ggggbbbb */
  1308. #define V4L2_PIX_FMT_RGB555 v4l2_fourcc('R', 'G', 'B', 'O') /* 16 RGB-5-5-5 */
  1309. #define V4L2_PIX_FMT_RGB565 v4l2_fourcc('R', 'G', 'B', 'P') /* 16 RGB-5-6-5 */
  1310. #define V4L2_PIX_FMT_RGB555X v4l2_fourcc('R', 'G', 'B', 'Q') /* 16 RGB-5-5-5 BE */
  1311. #define V4L2_PIX_FMT_RGB565X v4l2_fourcc('R', 'G', 'B', 'R') /* 16 RGB-5-6-5 BE */
  1312. #define V4L2_PIX_FMT_BGR666 v4l2_fourcc('B', 'G', 'R', 'H') /* 18 BGR-6-6-6     */
  1313. #define V4L2_PIX_FMT_BGR24 v4l2_fourcc('B', 'G', 'R', '3') /* 24 BGR-8-8-8 */
  1314. #define V4L2_PIX_FMT_RGB24 v4l2_fourcc('R', 'G', 'B', '3') /* 24 RGB-8-8-8 */
  1315. #define V4L2_PIX_FMT_BGR32 v4l2_fourcc('B', 'G', 'R', '4') /* 32 BGR-8-8-8-8 */
  1316. #define V4L2_PIX_FMT_RGB32 v4l2_fourcc('R', 'G', 'B', '4') /* 32 RGB-8-8-8-8 */
  1317. 8.3.5 YUV 格式(videodev2.h中)
  1318. /* Luminance+Chrominance formats */
  1319. #define V4L2_PIX_FMT_YVU410 v4l2_fourcc('Y', 'V', 'U', '9') /* 9 YVU 4:1:0 */
  1320. #define V4L2_PIX_FMT_YVU420 v4l2_fourcc('Y', 'V', '1', '2') /* 12 YVU 4:2:0 */
  1321. #define V4L2_PIX_FMT_YUYV v4l2_fourcc('Y', 'U', 'Y', 'V') /* 16 YUV 4:2:2 */
  1322. #define V4L2_PIX_FMT_YYUV v4l2_fourcc('Y', 'Y', 'U', 'V') /* 16 YUV 4:2:2 */
  1323. #define V4L2_PIX_FMT_YVYU v4l2_fourcc('Y', 'V', 'Y', 'U') /* 16 YVU 4:2:2 */
  1324. #define V4L2_PIX_FMT_UYVY v4l2_fourcc('U', 'Y', 'V', 'Y') /* 16 YUV 4:2:2 */
  1325. #define V4L2_PIX_FMT_VYUY v4l2_fourcc('V', 'Y', 'U', 'Y') /* 16 YUV 4:2:2 */
  1326. #define V4L2_PIX_FMT_YUV422P v4l2_fourcc('4', '2', '2', 'P') /* 16 YVU422 planar */
  1327. #define V4L2_PIX_FMT_YUV411P v4l2_fourcc('4', '1', '1', 'P') /* 16 YVU411 planar */
  1328. #define V4L2_PIX_FMT_Y41P v4l2_fourcc('Y', '4', '1', 'P') /* 12 YUV 4:1:1 */
  1329. #define V4L2_PIX_FMT_YUV444 v4l2_fourcc('Y', '4', '4', '4') /* 16 xxxxyyyy uuuuvvvv */
  1330. #define V4L2_PIX_FMT_YUV555 v4l2_fourcc('Y', 'U', 'V', 'O') /* 16 YUV-5-5-5 */
  1331. #define V4L2_PIX_FMT_YUV565 v4l2_fourcc('Y', 'U', 'V', 'P') /* 16 YUV-5-6-5 */
  1332. #define V4L2_PIX_FMT_YUV32 v4l2_fourcc('Y', 'U', 'V', '4') /* 32 YUV-8-8-8-8 */
  1333. #define V4L2_PIX_FMT_YUV410 v4l2_fourcc('Y', 'U', 'V', '9') /* 9 YUV 4:1:0 */
  1334. #define V4L2_PIX_FMT_YUV420 v4l2_fourcc('Y', 'U', '1', '2') /* 12 YUV 4:2:0 */
  1335. #define V4L2_PIX_FMT_HI240 v4l2_fourcc('H', 'I', '2', '4') /* 8 8-bit color */
  1336. #define V4L2_PIX_FMT_HM12 v4l2_fourcc('H', 'M', '1', '2') /* 8 YUV 4:2:0 16x16 macroblocks */
  1337. #define V4L2_PIX_FMT_M420 v4l2_fourcc('M', '4', '2', '0') /* 12 YUV 4:2:0 2 lines y, 1 line uv interleaved */
  1338. 8.3.6其他格式
  1339. /* compressed formats */
  1340. #define V4L2_PIX_FMT_MJPEG v4l2_fourcc('M', 'J', 'P', 'G') /* Motion-JPEG */
  1341. #define V4L2_PIX_FMT_JPEG v4l2_fourcc('J', 'P', 'E', 'G') /* JFIF JPEG */
  1342. 等等。。。。。。
  1343. 8.3.7 格式描述符,struct v4l2_pix_format,它在videodev2.h中定义:
  1344. struct v4l2_pix_format {
  1345. __u32     width;
  1346. __u32            height;
  1347. __u32            pixelformat;
  1348. enum v4l2_field     field;
  1349. __u32     bytesperline;    /* for padding, zero if unused */
  1350. __u32         sizeimage;
  1351. enum v4l2_colorspace    colorspace;
  1352. __u32            priv;        /* private data, depends on pixelformat */
  1353. };
  1354. width:图像宽度,以像素为单位
  1355. height:图像高度,以像素为单位
  1356. pixelformat:描述图像格式的四字符码
  1357. field:很多图像源会使数据交错——先传输奇数行,然后是偶数行。真正的摄像 头设备是不会做数据交错的。 V4L2 API允许应用使用多种交错方式。常用的值为 V4L2_FIELD_NONE (非交错)、 V4l2_FIELD_TOP (仅顶部交错)或 V4L2_FIELD_ANY (忽略)。具体的值可以去查看 enum v4l2_field的值,在这就不一一列举了。
  1358. bytesperline:相临扫描行之间的字节数,这包括各种设备可能会加入的填充字节。
  1359. sizeimage:存储图像所需的缓冲区的大小。
  1360. colorspace:使用的色域。同样可以查看 enum v4l2_colorspace的值:
  1361. enum v4l2_colorspace {
  1362. V4L2_COLORSPACE_SMPTE170M = 1,
  1363. V4L2_COLORSPACE_SMPTE240M = 2,
  1364. V4L2_COLORSPACE_REC709 = 3,
  1365. V4L2_COLORSPACE_BT878 = 4,
  1366. V4L2_COLORSPACE_470_SYSTEM_M = 5,
  1367. V4L2_COLORSPACE_470_SYSTEM_BG = 6,
  1368. V4L2_COLORSPACE_JPEG = 7,
  1369. V4L2_COLORSPACE_SRGB = 8,
  1370. };
  1371. 至此,对于视频数据缓冲区的描述就算完成了,驱动程序需要和应用程序协商,以使硬件设备支持的图像格式能够满足应用程序的使用。下面再来讲驱动程序和应用程序协商的过程。
  1372. 8.4 格式协商
  1373. 在存储器中表示图像的方法有很多种。 市场几乎找不到可以处理所有V4L2所理解的视频格式的设备。驱动不应支持底层硬件不理解的视频格式。实际上在内核中进行格式转换是令人难以接受的。 所以驱动必须能让应用选择一个硬件可以支持的格式。
  1374. 8.4.1 第一步就是简单的允许应用查询所支持的格式。VIDIOC_ENUM_FMT ioctl()就是为此目的而提供的。 在驱动内部,这个调用会转化为如下的回调函数(如果查询的是视频捕获设备 )。
  1375. int (*vidioc_enum_fmt_vid_cap) (struct file *file, void *fh, struct v4l2_fmtdesc *f);
  1376. 这个回调函数要求视频捕获设备描述其支持的格式,应用会传入一个v4l2_fmtdesc结构体:
  1377. struct v4l2_fmtdesc {
  1378. __u32         index; /* Format number */
  1379. enum v4l2_buf_type type; /* buffer type */
  1380. __u32 flags;
  1381. __u8         description[32]; /* Description string */
  1382. __u32         pixelformat; /* Format fourcc */
  1383. __u32         reserved[4];
  1384. };
  1385. 应用会设置index和type成员:
  1386. index:用来确定格式的一个简单整型数;与其他 V4L2 所使用的索引一样,这个也是从 0 开始递 增,至最大允许值为止。应用可以通过一直递增索引值直到返回-EINVAL 的方式枚举所有支持的 格式。
  1387. type:描述的是数据流类型,对于视频捕获设备(摄像头)来说就V4L2_BUF_TYPE_VIDEO_CAPTURE。
  1388. 如果index对就某个支持的格式,驱动应该填写结构体的其他成员:
  1389. flags:只定义了一个值,即 V4L2_FMT_FLAG_COMPRESSED,表示一个压缩的视频格式。
  1390. description:一般来说可以是对这个格式的一种简短的字符串描述。
  1391. pixelformat:描述视频表现方式的四字符码。
  1392. 对于上述这个回调函数,它其实针对的是视频捕获设备,只有当 type 值为V4L2_BUF_TYPE_VIDEO_CAPTURE 时才会调用,这是一个回调函数集, 对于其他不同的设备,会根据不同的type值调用不同的回调函数。下面列举如下:
  1393. /* VIDIOC_ENUM_FMT handlers */
  1394. int (*vidioc_enum_fmt_vid_cap) (struct file *file, void *fh, struct v4l2_fmtdesc *f);
  1395. int (*vidioc_enum_fmt_vid_overlay) (struct file *file, void *fh, struct v4l2_fmtdesc *f);
  1396. int (*vidioc_enum_fmt_vid_out) (struct file *file, void *fh, struct v4l2_fmtdesc *f);
  1397. int (*vidioc_enum_fmt_vid_cap_mplane)(struct file *file, void *fh, struct v4l2_fmtdesc *f);
  1398. int (*vidioc_enum_fmt_vid_out_mplane)(struct file *file, void *fh, struct v4l2_fmtdesc *f);
  1399. int (*vidioc_enum_fmt_type_private)(struct file *file, void *fh, struct v4l2_fmtdesc *f);
  1400. 来看看vivi.c中对于这个回调函数的实现:
  1401. static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
  1402. struct v4l2_fmtdesc *f)
  1403. {
  1404. struct vivi_fmt *fmt;
  1405. if (f->index >= ARRAY_SIZE(formats))
  1406. return -EINVAL;
  1407. fmt = &formats[f->index];
  1408. strlcpy(f->description, fmt->name, sizeof(f->description));
  1409. f->pixelformat = fmt->fourcc;
  1410. return 0;
  1411. }
  1412. 8.4.2 应用程序可以通过调用 VIDIOC_G_FMT 知道硬件现在的配置。 这种情况下传递的参数是一个v4l2_format 结构体:
  1413. struct v4l2_format {
  1414. enum v4l2_buf_type type;
  1415. union {
  1416. struct v4l2_pix_format        pix; /* V4L2_BUF_TYPE_VIDEO_CAPTURE */
  1417. struct v4l2_pix_format_mplane    pix_mp; /* V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE */
  1418. struct v4l2_window        win; /* V4L2_BUF_TYPE_VIDEO_OVERLAY */
  1419. struct v4l2_vbi_format        vbi; /* V4L2_BUF_TYPE_VBI_CAPTURE */
  1420. struct v4l2_sliced_vbi_format    sliced; /* V4L2_BUF_TYPE_SLICED_VBI_CAPTURE */
  1421. __u8    raw_data[200]; /* user-defined */
  1422. } fmt;
  1423. };
  1424. 对于视频捕获(和输出)设备,联合体中pix成员是我们关注的重点。这是我们在上面见过的v4l2_pix_format结构体,驱动应该用现在的硬件设置填充那个结构体并且返回。
  1425. 来看看vivi.c中对于这个回调函数的实现:
  1426. static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
  1427. struct v4l2_format *f)
  1428. {
  1429. struct vivi_dev *dev = video_drvdata(file);
  1430. f->fmt.pix.width = dev->width;
  1431. f->fmt.pix.height = dev->height;
  1432. f->fmt.pix.field = dev->field;
  1433. f->fmt.pix.pixelformat = dev->fmt->fourcc;
  1434. f->fmt.pix.bytesperline = (f->fmt.pix.width * dev->fmt->depth) >> 3;
  1435. f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
  1436. if (dev->fmt->fourcc == V4L2_PIX_FMT_YUYV ||
  1437. dev->fmt->fourcc == V4L2_PIX_FMT_UYVY)
  1438. f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
  1439. else
  1440. f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
  1441. return 0;
  1442. }
  1443. 8.4.3多数应用都想最终对硬件进行配置以使其为应用提供一种合适的格式。改变视频格式有两个函数接口,
  1444. 一个是 VIDIOC_TRY_FMT 调用,它在 V4L2 驱动中转化为下面的回调函数:
  1445. int (*vidioc_try_fmt_vid_cap) (struct file *file, void *fh, struct v4l2_format *f);
  1446. 要处理这个调用,驱动会查看请求的视频格式,然后断定硬件是否支持这个格式。如果应用请求的格 式是不被支持的,就会返回-EINVAL。例如,描述了一个不支持格的 fourcc 编码或者请求了一个隔行扫描 的视频,而设备只支持逐行扫描的就会失败。在另一方面,驱动可以调整 size 字段,以与硬件支持的图像 大小相适应。通常的做法是尽量将大小调小。所以一个只能处理 VGA 分辨率的设备驱动会根据情况相应地 调整 width 和 height 参数而成功返回。v4l2_format结构体会在调用后复制给用户空间,驱动应该更新这个 结构体以反映改变的参数,这样应用才可以知道它真正得到是什么。
  1447. VIDIOC_TRY_FMT这个处理对于驱动来说是可选的,但不推荐忽略这个功能。如果提供了的话,这 个函数可以在任何时候调用,甚至时设备正在工作的时候。它不可以对实质上的硬件参数做任何改变,只 是让应用知道都可以做什么的一种方式。
  1448. 如果应用要真正的改变硬件的格式,它使用 VIDIOC_S_FMT 调用,它以下面的方式到达驱动:
  1449. int (*vidioc_s_fmt_vid_cap) (struct file *file, void *fh, struct v4l2_format *f);
  1450. 与 VIDIOC_TRY_FMT 不同,这个回调是不能随时调用的。如果硬件正在工作或己经开辟了流缓冲区 (后面的文章将介绍),改变格式会带来无尽的麻烦。想想会发生什么?比如,一个新的格式比现在使的缓冲 区大的时候。所以驱动总是要保证硬件是空闲的,否则就对请求返回失败(-EBUSY)。
  1451. 格式的改变应该是原子的——它要么改变所有的参数以实现请求,要么一个也不改变。同样,驱动在 必要时是可以改变图像大小的。
  1452. 还是来看看vivi.c中对于这两个回调函数的实现:
  1453. static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
  1454. struct v4l2_format *f)
  1455. {
  1456. struct vivi_dev *dev = video_drvdata(file);
  1457. struct vivi_fmt *fmt;
  1458. enum v4l2_field field;
  1459. fmt = get_format(f);
  1460. if (!fmt) {
  1461. dprintk(dev, 1, "Fourcc format (0x%08x) invalid.\n",
  1462. f->fmt.pix.pixelformat);
  1463. return -EINVAL;
  1464. }
  1465. field = f->fmt.pix.field;
  1466. if (field == V4L2_FIELD_ANY) {
  1467. field = V4L2_FIELD_INTERLACED;
  1468. } else if (V4L2_FIELD_INTERLACED != field) {
  1469. dprintk(dev, 1, "Field type invalid.\n");
  1470. return -EINVAL;
  1471. }
  1472. f->fmt.pix.field = field;
  1473. v4l_bound_align_image(&f->fmt.pix.width, 48, MAX_WIDTH, 2,
  1474. &f->fmt.pix.height, 32, MAX_HEIGHT, 0, 0);
  1475. f->fmt.pix.bytesperline =
  1476. (f->fmt.pix.width * fmt->depth) >> 3;
  1477. f->fmt.pix.sizeimage =
  1478. f->fmt.pix.height * f->fmt.pix.bytesperline;
  1479. if (fmt->fourcc == V4L2_PIX_FMT_YUYV ||
  1480. fmt->fourcc == V4L2_PIX_FMT_UYVY)
  1481. f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
  1482. else
  1483. f->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
  1484. return 0;
  1485. }
  1486. static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
  1487. struct v4l2_format *f)
  1488. {
  1489. struct vivi_dev *dev = video_drvdata(file);
  1490. struct vb2_queue *q = &dev->vb_vidq;
  1491. int ret = vidioc_try_fmt_vid_cap(file, priv, f);
  1492. if (ret < 0)
  1493. return ret;
  1494. if (vb2_is_streaming(q)) {
  1495. dprintk(dev, 1, "%s device busy\n", __func__);
  1496. return -EBUSY;
  1497. }
  1498. dev->fmt = get_format(f);
  1499. dev->width = f->fmt.pix.width;
  1500. dev->height = f->fmt.pix.height;
  1501. dev->field = f->fmt.pix.field;
  1502. return 0;
  1503. }
  1504. 8.5 IO访问
  1505. V4L2支持三种不同IO访问方式(内核中还支持了其它的访问方式,暂不讨论):
  1506. (1)read和write,是基本帧IO访问方式,通过read读取每一帧数据,数据需要在内核和用户之间拷贝,这种方式访问速度可能会非常慢;
  1507. (2)内存映射缓冲区(V4L2_MEMORY_MMAP),是在内核空间开辟缓冲区,应用通过mmap()系统调用映射到用户地址空间。这些缓冲区可以是大而连续DMA缓冲区、通过vmalloc()创建的虚拟缓冲区,或者直接在设备的IO内存中开辟的缓冲区(如果硬件支持);
  1508. (3)用户空间缓冲区(V4L2_MEMORY_USERPTR),是用户空间的应用中开辟缓冲区,用户与内核空间之间交换缓冲区指针。很明显,在这种情况下是不需要mmap()调用的,但驱动为有效的支持用户空间缓冲区,其工作将也会更困难。
  1509. read和write方式属于帧IO访问方式,每一帧都要通过IO操作,需要用户和内核之间数据拷贝,而后两种是流IO访问方式,不需要内存拷贝,访问速度比较快。内存映射缓冲区访问方式是比较常用的方式。
  1510. 对于其他两种IO访问方式,我们暂时不探讨,因为写到这,我已经腰酸背痛腿抽筋了!_!
  1511. 8.6 流IO方式
  1512. 关于流IO的方式,内核中有一个更高层次的API,它能够帮助驱动作者完成流驱动。当底层设备可以支持分散/聚集I/O的时候,这一层(称为 video-buf)可以使工作变得容易。关于video-buf API我们将在后面讨论。
  1513. 支持流 I/O 的驱动应通过在 vidioc_querycap()方法中设置 V4L2_CAP_STREAMING 标签通知应用。注意:我们无法描述支持哪种缓冲区,那是后话。
  1514. 8.6.1 v4l2_buffer 结构体
  1515. 当使用流 I/O 时,帧以v4l2_buffer的格式在应用和驱动之间传输。
  1516. 首先大家要知道一个缓冲区可以有三种基本状态:
  1517. (1)在驱动的传入队列中。如果驱动不用它做什么有用事的话,应用就可以把缓冲区放在这个队列里。对于一个视频捕获设备,传入队列中的缓冲区是空的,等待驱动向其中填入视频数据;对于输出设备来讲,这些缓冲区是要设备发送的帧数据。
  1518. (2)在驱动的传出队列中。这些缓冲区已由驱动处理过,正等待应用来认领。对于捕获设备而言,传出缓冲区内是新的帧数据;对输出设备而言,这个缓冲区是空的。
  1519. (3)不在上述两个队列里。在这种状态时,缓冲区由用户空间拥有,驱动无法访问。这是应用可对缓冲区进行操作的唯一时间。我们称其为用户空间状态。
  1520. 将这些状态和他们之间传输的操作放在一起,如下图所示:
  1521. 其实缓冲区的三种状态是以驱动为中心的,可以理解为传入队列为要给驱动处理的缓冲区,传出队列为驱动处理完毕的缓冲区,而第三种状态是脱离驱动控制的缓冲区。
  1522. 他们操作的缓冲区核心就是这个v4l2_buffer结构体,它在videodev2.h中定义:
  1523. struct v4l2_buffer {
  1524. __u32            index;
  1525. enum v4l2_buf_type type;
  1526. __u32            bytesused;
  1527. __u32            flags;
  1528. enum v4l2_field        field;
  1529. struct timeval        timestamp;
  1530. struct v4l2_timecode    timecode;
  1531. __u32            sequence;
  1532. /* memory location */
  1533. enum v4l2_memory memory;
  1534. union {
  1535. __u32 offset;
  1536. unsigned long userptr;
  1537. struct v4l2_plane *planes;
  1538. } m;
  1539. __u32            length;
  1540. __u32            input;
  1541. __u32            reserved;
  1542. };
  1543. index:是鉴别缓冲区的序号,它只在内存映射缓冲区中使用。与其它可以在V4L2接口中枚举的对象一样,内存映射缓冲区的index 从0开始,依次递增。
  1544. type:描述的是缓冲区类型,通常是V4L2_BUF_TYPE_VIDEO_CAPTURE 或V4L2_BUF_TYPE_VIDEO_OUTPUT。它是一个枚举值,具体可以自己查看。
  1545. 缓冲区的大小由length给定,单位为byte。缓冲区中的图像数据大小可以在 bytesused 成员中找到。显 然,bytesused<=length。对于捕获设备而言,驱动会设置 bytesused; 对输出设备而言,应用必须设置这个成员。
  1546. flags:代表缓冲区的状态,如下所示:
  1547. /* Flags for 'flags' field */
  1548. #define V4L2_BUF_FLAG_MAPPED    0x0001 /* 缓冲区己映射到用户空间。它只应用于内存映射缓冲区 */
  1549. #define V4L2_BUF_FLAG_QUEUED    0x0002    /* 缓冲区在驱动的传入队列。 */
  1550. #define V4L2_BUF_FLAG_DONE    0x0004    /* 缓冲区在驱动的传出队列 */
  1551. #define V4L2_BUF_FLAG_KEYFRAME    0x0008    /* 缓冲区包含一个关键帧,它在压缩流中是                                    * 非常有用的。 */
  1552. #define V4L2_BUF_FLAG_PFRAME    0x0010    /* 应用于压缩流中,代表的是预测帧 */
  1553. #define V4L2_BUF_FLAG_BFRAME    0x0020    /* 应用于压缩流中,代表的是差分帧 */
  1554. /* Buffer is ready, but the data contained within is corrupted. */
  1555. #define V4L2_BUF_FLAG_ERROR    0x0040
  1556. #define V4L2_BUF_FLAG_TIMECODE    0x0100    /* timecode 字段有效 */
  1557. #define V4L2_BUF_FLAG_INPUT 0x0200 /* input 字段有效 */
  1558. #define V4L2_BUF_FLAG_PREPARED    0x0400    /* 缓冲区准备好进入队列 */
  1559. field :描述存在缓冲区中的图像属于哪一个域,它也是一个枚举值。
  1560. timestamp(时间戳):对于输入设备来说,代表帧捕获的时间。对输出设备来说,在没有到达时间戳所代表的时间前,驱动不可以把帧发送出去,时间戳为0代表越快越好。驱动会把时间戳设为帧的第一个字节传送到设备的时间,或者说是驱动所能达到的最接近的时间。
  1561. timecode:可以用来存放时间编码,对于视频编辑类应用是非常有用的。
  1562. sequence:驱动对传过设备的帧维护了一个递增的计数; 每一帧传送时,它都会在sequence成员中存入当前序号。 对于输入设备来讲,应用可以观察这一成员来检测帧。
  1563. memory:表示缓冲是内存映射缓冲区还是用户空间缓冲区。如果是 V4L2_MEMORY_MMAP方式,m.offset是内核空间图像数据存放的开始地址,会传递给mmap函数作为一个偏移, 通过mmap映射返回一个缓冲区指针p,p+byteused是图像数据在进程的虚拟地址空间所占区域;如果是用户指针缓冲区的方式,可以获取的图像数据开始地址的指针m.userptr,userptr是一个用户空间的指针,userptr+byteused便是所占的虚拟地址空间,应用可以直接访问。
  1564. input:可以用来快速切换捕获设备的输入——如果设备支持帧间的快速切换。
  1565. /* 以下几个函数是参考Tekkaman Ninja 整理的V4L2 驱动编写指南写的,在实际中对于这几个宏的ioctl回调函数已经转移到videobuf2-core.c里面,通过调用vb2_xxx函数来实现了,但是它对于缓冲区的操作过程还是非常重要的,同时希望能够了解更多的底层知识,为后面写videobuf2做准备。 */
  1566. 8.6.2 申请缓冲区
  1567. 当流应用已经完成了基本设置,它将转去执行组织I/O缓冲区的任务。第一步就是使用 VIDIOC_REQBUFS ioctl()来建立一组缓冲区,它由V4L2转换成对驱动vidioc_reqbufs()方法的调用。
  1568. int (*vidioc_reqbufs) (struct file *file, void *priv, struct v4l2_requestbuffers *buf);
  1569. 其中v4l2_requestbuffers结构体在videodev2.h中定义,如下所示:
  1570. struct v4l2_requestbuffers {
  1571. __u32            count;
  1572. enum v4l2_buf_type type;
  1573. enum v4l2_memory memory;
  1574. __u32            reserved[2];
  1575. };
  1576. count:是期望使用的缓冲区数目。
  1577. type:它是一个枚举值,部分如下所示:
  1578. enum v4l2_buf_type {
  1579. V4L2_BUF_TYPE_VIDEO_CAPTURE = 1,
  1580. V4L2_BUF_TYPE_VIDEO_OUTPUT = 2,
  1581. V4L2_BUF_TYPE_VIDEO_OVERLAY = 3,
  1582. V4L2_BUF_TYPE_VBI_CAPTURE = 4,
  1583. ...........
  1584. };
  1585. memory:它也是一个枚举值,如下所示:
  1586. enum v4l2_memory {
  1587. V4L2_MEMORY_MMAP = 1,
  1588. V4L2_MEMORY_USERPTR = 2,
  1589. V4L2_MEMORY_OVERLAY = 3,
  1590. };
  1591. 如果应用想要使用内存映射缓冲区,它会把memory字段置为V4L2_MEMORY_MMAP,count置为期望使用的缓冲区数。如果驱动不支持内存映射,它应返回-EINVAL。否则它将在内部开辟请求的缓冲区并返回0。返回后,应用就会认为缓冲区是存在的,所以任何可能失败的操作都应在这个阶段处理 (比如说内存申请)。
  1592. 注意:驱动并不一定要开辟与请求数目一样的缓冲区。在多数情况下,只有最小缓冲区数是有意义的。
  1593. 如果应用请求的比这个最小值小,它可能得到比实际申请的多一些。
  1594. 应用可以通过设置 count 字段为 0 的方式来释放掉所有已存在的缓冲区。在这种情况下, 驱动必须在释放缓冲前停止所有的 DMA 操作,否则会发生非常严重问题。如果缓冲区已映射到用户空间,则释放缓冲区是不可能的。
  1595. 相反,如果使用用户空间缓冲区,则有意义的字段只有缓冲区的type以及仅 V4L2_MEMORY_USERPTR 这个可用的 memory 字段。应用无须指定它想用的缓冲区的数目。因为内存是在用户空间开辟的,驱动无须操心。如果驱动支持用户空间缓冲区,它只须注意应用会使用这一特性, 返回0就可以了,否则返回-EINVAL。
  1596. VIDIOC_REQBUFS 命令是应用得知驱动所支持的流 I/O 缓冲区类型的唯一方法。
  1597. 8.6.3 将缓冲区映射到用户空间
  1598. 如果使用用户空间缓存,在应用向传入队列放置缓冲区之前,驱动看不到任何缓冲区的相关调用。内存映射缓冲区需要更多的设置。应用通常会查看每一个开辟的缓冲区,并将其映射到自己的地址空间。第一步是 VIDIOC_QUERYBUF命令,它将转换成驱动中的vidioc_querybuf()方法:
  1599. int (*vidioc_querybuf)(struct file *file, void *priv, struct v4l2_buffer *buf);
  1600. 进入此方法时, buf字段中要设置的字段有type(在缓冲区开辟时, 它将被检查是否与给定的类型相符) 和 index,它们可以确定一个特定的缓冲区。驱动要保证index有意义,并添充 buf中的其余字段。通常来说,驱动内部存储着一个v4l2_buffer 结构体数组, 所以vidioc_querybuf()方法的核心只是对这个v4l2_buffer结构体进行赋值。
  1601. 应用访问内存映射缓冲区的唯一方法就是将其映射到它们自己的地址空间,所以 vidioc_querybuf()调用后面通常会跟着一个驱动的 mmap()方法---要记住,这个方法指针是存储在相关设备的video_device 结构体中fops 字段中的。设备如何处理 mmap()依赖于内核中缓冲区是如何设置的。
  1602. 当用户空间映射缓冲区时, 驱动应在相关的 v4l2_buffer 结构体中调置 V4L2_BUF_FLAG_MAPPED 标 签。它也必须在 open()和 close()中设定 VMA 操作,这样它才能跟踪映射了缓冲区的进程数。只要缓冲区在任何地方被映射了,它就不能在内核中释放。如果一个或多个缓冲区的映射计数为0,驱动就应该停止正 在进行的 I/O 操作,因为没有进程需要它。
  1603. 8.6.4 流IO
  1604. 到现为止,我们己经看了很多设置,却没有传输过一帧的数据,我们离这步己经很近了,但在此之前还有一个步骤要做。当应用通过 VIDIOC_REQBUFS 获得了缓冲区后,那个缓冲区处于用户空间状态。如果他们是用户空间缓冲区,他们甚至还不存在。在应用开始流I/O之前,它必须至少将一个缓冲区放到驱动传入队列中。对于输出设备,那些缓冲区当然还要先填完有效的视频帧数据。
  1605. 要把一个缓冲区放进传入队列,应用首先要发出一个VIDIOC_QBUF ioctl()调用, V4L2会将其映射为对驱动vidioc_qbuf()方法的调用。
  1606. int (*vidioc_qbuf) (struct file *file, void *priv, struct v4l2_buffer *buf);
  1607. 对于内存映射缓冲而言,还是只有 buf 的 type 和 index 成员有效。驱动只能进行一些显式的检查(type 和index 是否有效、缓冲区是否在驱动队列中、缓冲区已映射等),把缓冲区放进传入队列里(设置
  1608. V4L2_BUF_FLAG_QUEUED标签),并返回。
  1609. 一旦流 I/O 开始,驱动就要从它的传入队列里获取缓冲区,让设备更快地实现转送请求,然后把缓冲区移动到传出队列。转输开始时,缓冲区标签也要相应调整。像序号和时间戳这样的字段必需在这个时候填充。最后,应用会在传出队列中认领缓冲区,让它变回为用户态。这是 VIDIOC_DQBUF 的工作,它最终变为如下调用:
  1610. int (*vidioc_dqbuf) (struct file *file, void *priv, struct v4l2_buffer *buf);
  1611. 这里,驱动会从传出队列中移除第一个缓冲区,把相关的信息存入 buf。通常,传出队列是空的,这个调用会处于阻塞状态直到有缓冲区可用。然而V4L2是用来处理非阻塞I/O的,所以如果视频设备是以O_NONBLOCK 方式打开的,在队列为空的情况下驱动就该返回-EAGAIN。当然,这个要求也暗示驱动必须为流I/O支持poll()。
  1612. 8.6.5 打开/关闭流
  1613. 剩下最后的一个步骤实际上就是告诉设备开始流 I/O 操作。 完成这个任务的 Video4Linux2 驱动方法是:
  1614. int (*vidioc_streamon) (struct file *file, void *fh, enum v4l2_buf_type i);
  1615. int (*vidioc_streamoff)(struct file *file, void *fh, enum v4l2_buf_type i);
  1616. 对 vidioc_streamon()的调用应该在检查类型有意义之后才让设备开始工作。如果需要的话,驱动可以请求等传入队列中有一定数目的缓冲区后再开始流传输。
  1617. 当应用关闭时,它应发出一个 vidioc_streamoff()调用,此调用要停止设备。驱动还应从传入和传出队列 中移除所有的缓冲区,使它们都处于用户空间状态。当然,驱动必须意识到:应用可能在没有停止流传输的情况下关闭设备。
  1618. (九)控制
  1619. (十)linux内核v4l2框架中videobuf2分析
  1620. 16年1月19日20:44:18
  1621. 1. 首先在vivi.c中,在vivi_init函数的vivi_create_instance中,对于缓冲区队列的操作有以下的代码:
  1622. struct vb2_queue *q;
  1623. /* initialize queue */
  1624. q = &dev->vb_vidq;
  1625. memset(q, 0, sizeof(dev->vb_vidq));
  1626. q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  1627. q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_READ;
  1628. q->drv_priv = dev;
  1629. q->buf_struct_size = sizeof(struct vivi_buffer);
  1630. q->ops = &vivi_video_qops;
  1631. q->mem_ops = &vb2_vmalloc_memops;
  1632. vb2_queue_init(q);
  1633. 它对struct vb2_queue结构体进行了设置,然后调用vb2_queue_init()函数进行初始化,那么就先来分析这个vb2_queue结构体。
  1634. 2.vb2_queue结构体在videobuf2-core.h中定义,如下所示(对于结构体的注释,我也放在下面了):
  1635. /**
  1636. * struct vb2_queue - a videobuf queue
  1637. *
  1638. * @type:    queue type (see V4L2_BUF_TYPE_* in linux/videodev2.h
  1639. * @io_modes:    supported io methods (see vb2_io_modes enum)
  1640. * @io_flags:    additional io flags (see vb2_fileio_flags enum)
  1641. * @ops:    driver-specific callbacks
  1642. * @mem_ops:    memory allocator specific callbacks
  1643. * @drv_priv:    driver private data
  1644. * @buf_struct_size: size of the driver-specific buffer structure;
  1645. *        "0" indicates the driver doesn't want to use a custom buffer
  1646. *        structure type, so sizeof(struct vb2_buffer) will is used
  1647. *
  1648. * @memory:    current memory type used
  1649. * @bufs:    videobuf buffer structures
  1650. * @num_buffers: number of allocated/used buffers
  1651. * @queued_list: list of buffers currently queued from userspace
  1652. * @queued_count: number of buffers owned by the driver
  1653. * @done_list:    list of buffers ready to be dequeued to userspace
  1654. * @done_lock:    lock to protect done_list list
  1655. * @done_wq: waitqueue for processes waiting for buffers ready to be dequeued
  1656. * @alloc_ctx:    memory type/allocator-specific contexts for each plane
  1657. * @streaming:    current streaming state
  1658. * @fileio:    file io emulator internal data, used only if emulator is active
  1659. */
  1660. struct vb2_queue {
  1661. enum v4l2_buf_type        type;
  1662. unsigned int            io_modes;
  1663. unsigned int            io_flags;
  1664. const struct vb2_ops        *ops;
  1665. const struct vb2_mem_ops    *mem_ops;
  1666. void                *drv_priv;
  1667. unsigned int            buf_struct_size;
  1668. /* private: internal use only */
  1669. enum v4l2_memory        memory;
  1670. struct vb2_buffer        *bufs[VIDEO_MAX_FRAME]; //代表每个buffer (后面分析)
  1671. unsigned int            num_buffers; //分配的buffer个数
  1672. struct list_head        queued_list;
  1673. atomic_t            queued_count;
  1674. struct list_head        done_list;
  1675. spinlock_t            done_lock;
  1676. wait_queue_head_t        done_wq;
  1677. void                *alloc_ctx[VIDEO_MAX_PLANES];
  1678. unsigned int            plane_sizes[VIDEO_MAX_PLANES];
  1679. unsigned int            streaming:1;
  1680. struct vb2_fileio_data        *fileio;
  1681. };
  1682. type:缓冲区的类型,与v4l2_buf_type这个枚举值相同,为下面其中的一项:
  1683. enum v4l2_buf_type {
  1684. V4L2_BUF_TYPE_VIDEO_CAPTURE = 1,
  1685. V4L2_BUF_TYPE_VIDEO_OUTPUT = 2,
  1686. V4L2_BUF_TYPE_VIDEO_OVERLAY = 3,
  1687. V4L2_BUF_TYPE_VBI_CAPTURE = 4,
  1688. V4L2_BUF_TYPE_VBI_OUTPUT = 5,
  1689. V4L2_BUF_TYPE_SLICED_VBI_CAPTURE = 6,
  1690. V4L2_BUF_TYPE_SLICED_VBI_OUTPUT = 7,
  1691. V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY = 8,
  1692. V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE = 9,
  1693. V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE = 10,
  1694. V4L2_BUF_TYPE_PRIVATE = 0x80,
  1695. };
  1696. io_modes:访问IO的方式,与enum vb2_io_modes相同,如下所示:
  1697. **
  1698. * enum vb2_io_modes - queue access methods
  1699. * @VB2_MMAP:        driver supports MMAP with streaming API
  1700. * @VB2_USERPTR:    driver supports USERPTR with streaming API
  1701. * @VB2_READ:        driver supports read() style access
  1702. * @VB2_WRITE:        driver supports write() style access
  1703. */
  1704. enum vb2_io_modes {
  1705. VB2_MMAP    = (1 << 0),
  1706. VB2_USERPTR    = (1 << 1),
  1707. VB2_READ    = (1 << 2),
  1708. VB2_WRITE    = (1 << 3),
  1709. };
  1710. ops:buffer队列操作函数集合
  1711. mem_ops:buffer memory操作集合
  1712. vb2_queue代表一个videobuffer队列,vb2_buffer是这个队列中的成员,vb2_mem_ops是缓冲内存的操作函数集,vb2_ops用来管理队列。根据vivi.c中的设置,它都对这两个函数集设置了初始值,那么下面我们就来看看这两个函数集。
  1713. 2.1 vb2_mem_ops 包含了内存映射缓冲区、用户空间缓冲区的内存操作方法:
  1714. struct vb2_mem_ops {
  1715. void        *(*alloc)(void *alloc_ctx, unsigned long size);
  1716. void        (*put)(void *buf_priv);
  1717. void        *(*get_userptr)(void *alloc_ctx, unsigned long vaddr,
  1718. unsigned long size, int write);
  1719. void        (*put_userptr)(void *buf_priv);
  1720. void        *(*vaddr)(void *buf_priv);
  1721. void        *(*cookie)(void *buf_priv);
  1722. unsigned int    (*num_users)(void *buf_priv);
  1723. int        (*mmap)(void *buf_priv, struct vm_area_struct *vma);
  1724. };
  1725. 通过在vivi.c中使用这个结构体,我们发现这几个函数都是直接调用内核中实现好的函数。它提供了三种类型的视频缓存区操作方法:连续的DMA缓冲区、集散的DMA缓冲区以及vmalloc创建的缓冲区,分别由 videobuf2-dma-contig.c、videobuf2-dma-sg.c和videobuf-vmalloc.c文件实现,可以根据实际情况来使用。
  1726. vivi.c中,q->mem_ops = &vb2_vmalloc_memops;它使用vmalloc的方式创建缓冲区,搜索发现vb2_vmalloc_memops在videobuf2-vmalloc.c中定义,如下所示:
  1727. const struct vb2_mem_ops vb2_vmalloc_memops = {
  1728. .alloc        = vb2_vmalloc_alloc,
  1729. .put        = vb2_vmalloc_put,
  1730. .get_userptr    = vb2_vmalloc_get_userptr,
  1731. .put_userptr    = vb2_vmalloc_put_userptr,
  1732. .vaddr        = vb2_vmalloc_vaddr,
  1733. .mmap        = vb2_vmalloc_mmap,
  1734. .num_users    = vb2_vmalloc_num_users,
  1735. };
  1736. EXPORT_SYMBOL_GPL(vb2_vmalloc_memops);
  1737. 这几个函数暂时先不具体分析他们的代码。
  1738. 2.2 vb2_ops是用来管理buffer队列的函数集合,包括队列和缓冲区初始化:
  1739. struct vb2_ops {
  1740. int (*queue_setup)(struct vb2_queue *q, const struct v4l2_format *fmt,
  1741. unsigned int *num_buffers, unsigned int *num_planes,
  1742. unsigned int sizes[], void *alloc_ctxs[]);
  1743. void (*wait_prepare)(struct vb2_queue *q);
  1744. void (*wait_finish)(struct vb2_queue *q);
  1745. int (*buf_init)(struct vb2_buffer *vb);
  1746. int (*buf_prepare)(struct vb2_buffer *vb);
  1747. int (*buf_finish)(struct vb2_buffer *vb);
  1748. void (*buf_cleanup)(struct vb2_buffer *vb);
  1749. int (*start_streaming)(struct vb2_queue *q, unsigned int count);
  1750. int (*stop_streaming)(struct vb2_queue *q);
  1751. void (*buf_queue)(struct vb2_buffer *vb);
  1752. };
  1753. vivi.c中q->ops = &vivi_video_qops;这几个函数是需要我们自己实现的,如下所示:
  1754. static struct vb2_ops vivi_video_qops = {
  1755. .queue_setup        = queue_setup, //队列初始化
  1756. //对buffer的操作
  1757. .buf_init        = buffer_init,
  1758. .buf_prepare        = buffer_prepare,
  1759. .buf_finish        = buffer_finish,
  1760. .buf_cleanup        = buffer_cleanup,
  1761. //把vb传递给驱动
  1762. .buf_queue        = buffer_queue,
  1763. // 开始/停止视频流
  1764. .start_streaming    = start_streaming,
  1765. .stop_streaming        = stop_streaming,
  1766. //释放和获取设备操作锁
  1767. .wait_prepare        = vivi_unlock,
  1768. .wait_finish        = vivi_lock,
  1769. };
  1770. 3. 在vb2_queue中有一个struct vb2_buffer    *bufs[VIDEO_MAX_FRAME];
  1771. 其中这个vb2_buffer是缓存队列的基本单位,内嵌在其中的v4l2_buffer是核心成员。当开始流IO时,帧以v4l2_buffer的格式在应用和驱动之间传输。
  1772. struct vb2_buffer {
  1773. struct v4l2_buffer    v4l2_buf;
  1774. struct v4l2_plane    v4l2_planes[VIDEO_MAX_PLANES];
  1775. struct vb2_queue    *vb2_queue;
  1776. unsigned int        num_planes;
  1777. /* Private: internal use only */
  1778. enum vb2_buffer_state    state;
  1779. struct list_head    queued_entry;
  1780. struct list_head    done_entry;
  1781. struct vb2_plane    planes[VIDEO_MAX_PLANES];
  1782. };
  1783. 一个缓冲区有三种状态,我们在上面的V4L2框架分析中:8.6流IO方式一节分析了这三种状态:
  1784. (1)在驱动的传入队列中,驱动程序将会对此队列中的缓冲区进行处理,用户空间通过IOCTL:VIDIOC_QBUF把缓冲区 放入到队列。对于一个视频捕获设备,传入队列中的缓冲区是空的,驱动会往其中填充数据;
  1785. (2)在驱动的传出队列中,这些缓冲区已由驱动处理过,对于一个视频捕获设备,缓存区已经填充了视频数据,正等用 户空间来认领;
  1786. (3)用户空间状态的队列,已经通过IOCTL:VIDIOC_DQBUF传出到用户空间的缓冲区,此时缓冲区由用户空间拥有, 驱动无法访问。
  1787. 当用户空间拿到v4l2_buffer,可以获取到缓冲区的相关信息。byteused是图像数据所占的字节数,如果是V4L2_MEMORY_MMAP方式,m.offset是内核空间图像数据存放的开始地址,会传递给mmap函数作为一个偏移, 通过mmap映射返回一个缓冲区指针p,p+byteused是图像数据在进程的虚拟地址空间所占区域;如果是用户指针缓冲区的方式,可以获取的图像数据开始地址的指针m.userptr,userptr是一个用户空间的指针,userptr+byteused便是所占的虚拟地址空间,应用可以直接访问。
  1788. 4. 下面来结合代码详细分析分析它的流程:
  1789. 4.1 当应用程序调用ioctl:VIDIOC_REQBUFS的时候,应用程序中一般是这样调用的:
  1790. struct v4l2_requestbuffers req;
  1791. req.count = 4;
  1792. req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  1793. req.memory = V4L2_MEMORY_MMAP;
  1794. if (-1 == xioctl (fd, VIDIOC_REQBUFS, &req))
  1795. {
  1796. ......
  1797. }
  1798. 经过v4l2框架的一系列转换,最终调用到vivi.c驱动中我们自己实现的vidioc_reqbufs函数中:
  1799. static int vidioc_reqbufs(struct file *file, void *priv,
  1800. struct v4l2_requestbuffers *p)
  1801. {
  1802. struct vivi_dev *dev = video_drvdata(file);
  1803. return vb2_reqbufs(&dev->vb_vidq, p);
  1804. }
  1805. 它又调用了vb2_reqbufs这个函数,它就在videobuf2-core.c这个文件中,如下所示:
  1806. /**
  1807. * vb2_reqbufs() - Initiate streaming
  1808. * @q:        videobuf2 queue
  1809. * @req:    struct passed from userspace to vidioc_reqbufs handler in driver
  1810. *
  1811. * Should be called from vidioc_reqbufs ioctl handler of a driver.
  1812. * This function:
  1813. * 1) verifies streaming parameters passed from the userspace,
  1814. * 2) sets up the queue,
  1815. * 3) negotiates number of buffers and planes per buffer with the driver
  1816. * to be used during streaming,
  1817. * 4) allocates internal buffer structures (struct vb2_buffer), according to
  1818. * the agreed parameters,
  1819. * 5) for MMAP memory type, allocates actual video memory, using the
  1820. * memory handling/allocation routines provided during queue initialization
  1821. *
  1822. * If req->count is 0, all the memory will be freed instead.
  1823. * If the queue has been allocated previously (by a previous vb2_reqbufs) call
  1824. * and the queue is not busy, memory will be reallocated.
  1825. *
  1826. * The return values from this function are intended to be directly returned
  1827. * from vidioc_reqbufs handler in driver.
  1828. */
  1829. int vb2_reqbufs(struct vb2_queue *q, struct v4l2_requestbuffers *req)
  1830. {
  1831. unsigned int num_buffers, allocated_buffers, num_planes = 0;
  1832. int ret = 0;
  1833. if (q->fileio) {
  1834. dprintk(1, "reqbufs: file io in progress\n");
  1835. return -EBUSY;
  1836. }
  1837. /* 这个fileio是vb2_queue结构体中的一个成员,它是vb2_fileio_data类型的,它的意思大概是关于读写上下文之间的一个读写锁,应该用于8.5中IO访问中的read,write基本帧IO访问方式,这个我不是太懂,一般情况下为0。*/
  1838. if (req->memory != V4L2_MEMORY_MMAP
  1839. && req->memory != V4L2_MEMORY_USERPTR) {
  1840. dprintk(1, "reqbufs: unsupported memory type\n");
  1841. return -EINVAL;
  1842. }
  1843. /*
    判断req中的memory字段,必须设置了V4L2_MEMORY_MMAP
    和V4L2_MEMORY_USERPTR这两个字段,再看之前的应用程序设置中,它没有设置V4L2_MEMORY_USERPTR字段,可能是错误的,我们先分析,等到后面再测试这个应用程序。
    */
  1844. if (req->type != q->type) {
  1845. dprintk(1, "reqbufs: requested type is incorrect\n");
  1846. return -EINVAL;
  1847. }
  1848. /* 判断想要申请的v4l2_requestbuffers与vb2_queue中type字段是否相同。不同就返回错误。*/
  1849. if (q->streaming) {
  1850. dprintk(1, "reqbufs: streaming active\n");
  1851. return -EBUSY;
  1852. }
  1853. /* streaming表示当前流状态,为1的话表示streaming active,返回 EBUSY */
  1854. /*
  1855. * Make sure all the required memory ops for given memory type
  1856. * are available.
  1857. */
  1858. if (req->memory == V4L2_MEMORY_MMAP && __verify_mmap_ops(q)) {
  1859. dprintk(1, "reqbufs: MMAP for current setup unsupported\n");
  1860. return -EINVAL;
  1861. }
  1862. /*
    如果v4l2_requestbuffers中memory字段为V4L2_MEMORY_MMAP的话,判断 vb2_queue
    q队列中io_modes
    是否为VB2_MMAP,判断是否提供了vb2_mem_ops操作函数集中的alloc,put,mmap函数,如果这些不符合的话,就返回EINVAL。
    __verify_mmap_ops()函数也在videobuf2-core.c文件中提供,如下所示:
  1863. static int __verify_mmap_ops(struct vb2_queue *q)
  1864. {
  1865. if (!(q->io_modes & VB2_MMAP) || !q->mem_ops->alloc ||
  1866. !q->mem_ops->put || !q->mem_ops->mmap)
  1867. return -EINVAL;
  1868. return 0;
  1869. }
  1870. */
  1871. if (req->memory == V4L2_MEMORY_USERPTR && __verify_userptr_ops(q)) {
  1872. dprintk(1, "reqbufs: USERPTR for current setup unsupported\n");
  1873. return -EINVAL;
  1874. }
  1875. /* 与上面的类似,__verify_userptr_ops(q)函数如下所示:
  1876. static int __verify_userptr_ops(struct vb2_queue *q)
  1877. {
  1878. if (!(q->io_modes & VB2_USERPTR) || !q->mem_ops->get_userptr ||
  1879. !q->mem_ops->put_userptr)
  1880. return -EINVAL;
  1881. return 0;
  1882. }
  1883. */
  1884. if (req->count == 0 || q->num_buffers != 0 || q->memory != req->memory) {
  1885. /*
  1886. * We already have buffers allocated, so first check if they
  1887. * are not in use and can be freed.
  1888. */
  1889. if (q->memory == V4L2_MEMORY_MMAP && __buffers_in_use(q)) {
  1890. dprintk(1, "reqbufs: memory in use, cannot free\n");
  1891. return -EBUSY;
  1892. }
  1893. __vb2_queue_free(q, q->num_buffers);
  1894. /*
  1895. * In case of REQBUFS(0) return immediately without calling
  1896. * driver's queue_setup() callback and allocating resources.
  1897. */
  1898. if (req->count == 0)
  1899. return 0;
  1900. }
  1901. /* 如果申请的v4l2_requestbuffers中count字段为0的话,就释放掉所有已经申请的内存,因为是允许应用程序这样使用ioctl的。如果 q->num_buffers != 0的话,同样释放掉已经申请的内存。因为,应用程序想要使用缓冲区的话,调用的第一个ioctl就是这个VIDIOC_REQBUFS,在它之前是没有申请内存的。然后调用__vb2_queue_free释放掉缓冲区。这个函数暂时先不具体分析代码。
  1902. 如果 req->count == 0的话,意思是应用程序调用的VIDIOC_REQBUFS(0),这个函数就可以直接在这返回了。 */
  1903. /*
  1904. * Make sure the requested values and current defaults are sane.
  1905. */
  1906. num_buffers = min_t(unsigned int, req->count, VIDEO_MAX_FRAME);
  1907. memset(q->plane_sizes, 0, sizeof(q->plane_sizes));
  1908. memset(q->alloc_ctx, 0, sizeof(q->alloc_ctx));
  1909. q->memory = req->memory;
  1910. /* 经过上面的判断语句以后,开始申请缓冲区的操作。首先将num_buffers设置为 req->count和 VIDEO_MAX_FRAME中较小的一个,然后将 q->plane_sizes和 q->alloc_ctx清零,将 q->memory和 req->memory设置成一致的形式。 */
  1911. /*
  1912. * Ask the driver how many buffers and planes per buffer it requires.
  1913. * Driver also sets the size and allocator context for each plane.
  1914. */
  1915. ret = call_qop(q, queue_setup, q, NULL, &num_buffers, &num_planes,
  1916. q->plane_sizes, q->alloc_ctx);
  1917. if (ret)
  1918. return ret;
  1919. /* 看注释应该可以明白,问问驱动一共需要申请几个buffers,并且每一个buffer的位面是多少。于是乎,就调用call_qop去问了,至于这个call_qop是怎么回事,其实在上面的几个函数里面有调用,可是我们没有分析,现在在这分析一下:
  1920. #define call_qop(q, op, args...) (((q)->ops->op) ? ((q)->ops->op(args)) : 0)
  1921. 看这个宏定义,意思就是调用vb2_queue->vb2_ops->queue_setup函数,这个函数就是需要驱动实现的一个函数。在vivi.c中是这样的:
  1922. static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *fmt,
  1923. unsigned int *nbuffers, unsigned int *nplanes,
  1924. unsigned int sizes[], void *alloc_ctxs[])
  1925. {
  1926. struct vivi_dev *dev = vb2_get_drv_priv(vq);
  1927. unsigned long size;
  1928. size = dev->width * dev->height * 2;
  1929. if (0 == *nbuffers)
  1930. *nbuffers = 32;
  1931. while (size * *nbuffers > vid_limit * 1024 * 1024)
  1932. (*nbuffers)--;
  1933. *nplanes = 1;
  1934. sizes[0] = size;
  1935. /*
  1936. * videobuf2-vmalloc allocator is context-less so no need to set
  1937. * alloc_ctxs array.
  1938. */
  1939. dprintk(dev, 1, "%s, count=%d, size=%ld\n", __func__,
  1940. *nbuffers, size);
  1941. return 0;
  1942. }
  1943. queue_setup 函数的目的是根据vb2_queue 中的 alloc_ctx和plane_sizes来填充 num_buffers和 num_planes,这两个变量以供后面使用。在来看vb2_queue结构体中这三个数组变量:
  1944. struct vb2_buffer        *bufs[VIDEO_MAX_FRAME];
  1945. void                *alloc_ctx[VIDEO_MAX_PLANES];
  1946. unsigned int        plane_sizes[VIDEO_MAX_PLANES];
  1947. bufs数组中每一项对应一个申请的buffer, plane_sizes数组中每一项代表相应buffer的位面大小, alloc_ctx数组的每一项代表相应buffer位面大小的memory type/allocator-specific。这三个数组中的每一项是一一对应关系。
  1948. */
  1949. /* Finally, allocate buffers and video memory */
  1950. ret = __vb2_queue_alloc(q, req->memory, num_buffers, num_planes);
  1951. if (ret == 0) {
  1952. dprintk(1, "Memory allocation failed\n");
  1953. return -ENOMEM;
  1954. }
  1955. /* 最后,调用__vb2_queue_alloc函数来分配缓冲区和内存,这个函数返回值是成功分配的buffer个数。__vb2_queue_alloc函数如下所示:
  1956. static int __vb2_queue_alloc(struct vb2_queue *q, enum v4l2_memory memory,
  1957. unsigned int num_buffers, unsigned int num_planes)
  1958. {
  1959. unsigned int buffer;
  1960. struct vb2_buffer *vb;
  1961. int ret;
  1962. for (buffer = 0; buffer < num_buffers; ++buffer) {
  1963. /* Allocate videobuf buffer structures */
  1964. vb = kzalloc(q->buf_struct_size, GFP_KERNEL);
  1965. if (!vb) {
  1966. dprintk(1, "Memory alloc for buffer struct failed\n");
  1967. break;
  1968. }
  1969. /* 用kzalloc为结构体分配q->buf_struct_size大小的一块区域。 */
  1970. /* Length stores number of planes for multiplanar buffers */
  1971. if (V4L2_TYPE_IS_MULTIPLANAR(q->type))
  1972. vb->v4l2_buf.length = num_planes;
  1973. /* 判断这个q的type类型是不是V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE和V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE,在这里我们不是。 */
  1974. vb->state = VB2_BUF_STATE_DEQUEUED;
  1975. vb->vb2_queue = q;
  1976. vb->num_planes = num_planes;
  1977. vb->v4l2_buf.index = q->num_buffers + buffer;
  1978. vb->v4l2_buf.type = q->type;
  1979. vb->v4l2_buf.memory = memory;
  1980. /* 设置vb2_buffer的一些属性,在前面说了,vb2_buffer是帧传输的单元,首先设置它的state状态,这个state状态很重要,它有以下几种类型,我连注释也一起复制在这里了,因为注释写的很清楚:
  1981. /**
  1982. * enum vb2_buffer_state - current video buffer state
  1983. * @VB2_BUF_STATE_DEQUEUED:    buffer under userspace control
  1984. * @VB2_BUF_STATE_PREPARED:    buffer prepared in videobuf and by the driver
  1985. * @VB2_BUF_STATE_QUEUED:    buffer queued in videobuf, but not in driver
  1986. * @VB2_BUF_STATE_ACTIVE:    buffer queued in driver and possibly used
  1987. *                in a hardware operation
  1988. * @VB2_BUF_STATE_DONE:    buffer returned from driver to                         videobuf, but not yet dequeued to userspace
  1989. * @VB2_BUF_STATE_ERROR:    same as above, but the operation on the buffer
  1990. *                has ended with an error, which will be reported
  1991. *                to the userspace when it is dequeued
  1992. */
  1993. enum vb2_buffer_state {
  1994. VB2_BUF_STATE_DEQUEUED,
  1995. VB2_BUF_STATE_PREPARED,
  1996. VB2_BUF_STATE_QUEUED,
  1997. VB2_BUF_STATE_ACTIVE,
  1998. VB2_BUF_STATE_DONE,
  1999. VB2_BUF_STATE_ERROR,
  2000. };
  2001. 可以根据缓冲区的三种状态来思考这几种状态,现在首先是reqbuf,现在缓冲区肯定是在用户空间,所以它的状态为
    VB2_BUF_STATE_DEQUEUED,然后设置vb2_buffer的父队列为q,设置
    num_planes,然后设置v4l2_buffer里面的index,type和memeory。
  2002. */
  2003. /* Allocate video buffer memory for the MMAP type */
  2004. if (memory == V4L2_MEMORY_MMAP) {
  2005. ret = __vb2_buf_mem_alloc(vb);
  2006. if (ret) {
  2007. dprintk(1, "Failed allocating memory for "
  2008. "buffer %d\n", buffer);
  2009. kfree(vb);
  2010. break;
  2011. }
  2012. /* 调用__vb2_buf_mem_alloc函数,为video buffer分配空间。__vb2_buf_mem_alloc函数里面又调用了
  2013. call_memop(q, alloc, q->alloc_ctx[plane], q->plane_sizes[plane]);
  2014. 来分配空间,但是为了文章的可读性,暂时先不分析。
  2015. */
  2016. /*
  2017. * Call the driver-provided buffer initialization
  2018. * callback, if given. An error in initialization
  2019. * results in queue setup failure.
  2020. */
  2021. ret = call_qop(q, buf_init, vb);
  2022. if (ret) {
  2023. dprintk(1, "Buffer %d %p initialization"
  2024. " failed\n", buffer, vb);
  2025. __vb2_buf_mem_free(vb);
  2026. kfree(vb);
  2027. break;
  2028. }
  2029. }
  2030. /* 调用 vb2_queue->ops->buf_init函数,即调用到vivi.c中的 buffer_init函数。*/
  2031. q->bufs[q->num_buffers + buffer] = vb;
  2032. }
  2033. __setup_offsets(q, buffer);
  2034. dprintk(1, "Allocated %d buffers, %d plane(s) each\n",
  2035. buffer, num_planes);
  2036. return buffer;
  2037. }
  2038. */
  2039. allocated_buffers = ret;
  2040. /* allocated_buffers表示分配成功的缓冲区个数。 */
  2041. /*
  2042. * Check if driver can handle the allocated number of buffers.
  2043. */
  2044. if (allocated_buffers < num_buffers) {
  2045. num_buffers = allocated_buffers;
  2046. /* 想要申请num_buffers个缓冲区,但是不一定分配那么多,成功的个数为allocated_buffers。 */
  2047. ret = call_qop(q, queue_setup, q, NULL, &num_buffers,
  2048. &num_planes, q->plane_sizes, q->alloc_ctx);
  2049. /* 再次调用 vb2_queue->ops->queue_setup函数 */
  2050. if (!ret && allocated_buffers < num_buffers)
  2051. ret = -ENOMEM;
  2052. /*
  2053. * Either the driver has accepted a smaller number of buffers,
  2054. * or .queue_setup() returned an error
  2055. */
  2056. }
  2057. q->num_buffers = allocated_buffers;
  2058. /* 根据成功分配的buffer个数来修改 vb2_queue里面保存的buffer个数。 */
  2059. if (ret < 0) {
  2060. __vb2_queue_free(q, allocated_buffers);
  2061. return ret;
  2062. }
  2063. /*
  2064. * Return the number of successfully allocated buffers
  2065. * to the userspace.
  2066. */
  2067. req->count = allocated_buffers;
  2068. return 0;
  2069. }
  2070. EXPORT_SYMBOL_GPL(vb2_reqbufs);
  2071. 4.2 当应用程序调用ioctl:VIDIOC_QUERYBUFS的时候,应用程序中一般是这样调用的:
  2072. for (n_buffers = 0; n_buffers < req.count; ++n_buffers) {
  2073. struct v4l2_buffer buf;
  2074. buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  2075. buf.memory = V4L2_MEMORY_MMAP;
  2076. buf.index = n_buffers;
  2077. if (-1 == xioctl (fd, VIDIOC_QUERYBUF, &buf))
  2078. errno_exit ("VIDIOC_QUERYBUF");
  2079. buffers[n_buffers].length = buf.length;
  2080. buffers[n_buffers].start = mmap (NULL,buf.length,PROT_READ | PROT_WRITE     (没有分析这个mmap函数,以后补上)    ,MAP_SHARED,fd, buf.m.offset);
  2081. }
  2082. 经过v4l2框架的一系列转换,最终调用到vivi.c驱动中我们自己实现的vidioc_querybuf函数中:
  2083. static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *p)
  2084. {
  2085. struct vivi_dev *dev = video_drvdata(file);
  2086. return vb2_querybuf(&dev->vb_vidq, p);
  2087. }
  2088. 它又调用了vb2_querybuf这个函数,它就在videobuf2-core.c这个文件中,如下所示:
  2089. /**
  2090. * vb2_querybuf() - query video buffer information
  2091. * @q:        videobuf queue
  2092. * @b:        buffer struct passed from userspace to vidioc_querybuf handler
  2093. *            in driver
  2094. *
  2095. * Should be called from vidioc_querybuf ioctl handler in driver.
  2096. * This function will verify the passed v4l2_buffer structure and fill the
  2097. * relevant information for the userspace.
  2098. *
  2099. * The return values from this function are intended to be directly returned
  2100. * from vidioc_querybuf handler in driver.
  2101. */
  2102. int vb2_querybuf(struct vb2_queue *q, struct v4l2_buffer *b)
  2103. {
  2104. struct vb2_buffer *vb;
  2105. if (b->type != q->type) {
  2106. dprintk(1, "querybuf: wrong buffer type\n");
  2107. return -EINVAL;
  2108. }
  2109. if (b->index >= q->num_buffers) {
  2110. dprintk(1, "querybuf: buffer index out of range\n");
  2111. return -EINVAL;
  2112. }
  2113. vb = q->bufs[b->index];
  2114. return __fill_v4l2_buffer(vb, b);
  2115. }
  2116. EXPORT_SYMBOL(vb2_querybuf);
  2117. 这个函数先判断一些条件,之后将q->bufs[b->index]赋给 vb2_buffer *vb,此时vb的值是队列q中bufs中的某一项(具体哪一项,看应用程序的循环走到哪一步了),之后调用__fill_v4l2_buffer函数,将bufs里面的这一项的内容拷贝到v4l2_buffer b中,这个__fill_v4l2_buffer()函数就是讲怎么拷贝的,它在videobuf2-core.c中定义:
  2118. /**
  2119. * __fill_v4l2_buffer() - fill in a struct v4l2_buffer with information to be
  2120. * returned to userspace
  2121. */
  2122. static int __fill_v4l2_buffer(struct vb2_buffer *vb, struct v4l2_buffer *b)
  2123. {
  2124. struct vb2_queue *q = vb->vb2_queue;
  2125. int ret;
  2126. /* 从 vb2_buffer vb里面获取它的父队列。 */
  2127. /* Copy back data such as timestamp, flags, input, etc. */
  2128. memcpy(b, &vb->v4l2_buf, offsetof(struct v4l2_buffer, m));
  2129. b->input = vb->v4l2_buf.input;
  2130. b->reserved = vb->v4l2_buf.reserved;
  2131. /* 设置 v4l2_buffer b中的timestamp, flags, input,reserved等字段 */
  2132. if (V4L2_TYPE_IS_MULTIPLANAR(q->type)) {
  2133. ret = __verify_planes_array(vb, b);
  2134. if (ret)
  2135. return ret;
  2136. /*
  2137. * Fill in plane-related data if userspace provided an array
  2138. * for it. The memory and size is verified above.
  2139. */
  2140. memcpy(b->m.planes, vb->v4l2_planes,
  2141. b->length * sizeof(struct v4l2_plane));
  2142. } else {
  2143. /*
  2144. * We use length and offset in v4l2_planes array even for
  2145. * single-planar buffers, but userspace does not.
  2146. */
  2147. b->length = vb->v4l2_planes[0].length;
  2148. b->bytesused = vb->v4l2_planes[0].bytesused;
  2149. if (q->memory == V4L2_MEMORY_MMAP)
  2150. b->m.offset = vb->v4l2_planes[0].m.mem_offset;
  2151. else if (q->memory == V4L2_MEMORY_USERPTR)
  2152. b->m.userptr = vb->v4l2_planes[0].m.userptr;
  2153. /* 设置v4l2_buffer b中的length,bytesused和m.offset/m.userptr字段。 */
  2154. }
  2155. /*
  2156. * Clear any buffer state related flags.
  2157. */
  2158. b->flags &= ~V4L2_BUFFER_STATE_FLAGS;
  2159. /* 将v4l2_buffer b中的flags参数全部都清空。 */
  2160. switch (vb->state) {
  2161. case VB2_BUF_STATE_QUEUED:
  2162. case VB2_BUF_STATE_ACTIVE:
  2163. b->flags |= V4L2_BUF_FLAG_QUEUED;
  2164. break;
  2165. case VB2_BUF_STATE_ERROR:
  2166. b->flags |= V4L2_BUF_FLAG_ERROR;
  2167. /* fall through */
  2168. case VB2_BUF_STATE_DONE:
  2169. b->flags |= V4L2_BUF_FLAG_DONE;
  2170. break;
  2171. case VB2_BUF_STATE_PREPARED:
  2172. b->flags |= V4L2_BUF_FLAG_PREPARED;
  2173. break;
  2174. case VB2_BUF_STATE_DEQUEUED:
  2175. /* nothing */
  2176. break;
  2177. }
  2178. /* 根据vb2_buffer vb的flags参数来设置v4l2_buffer b的flags参数。 */
  2179. if (__buffer_in_use(q, vb))
  2180. b->flags |= V4L2_BUF_FLAG_MAPPED;
  2181. return 0;
  2182. }
  2183. 4.3 mmap
  2184. 4.4 当应用程序调用ioctl:VIDIOC_QBUFS的时候,应用程序中一般是这样调用的:
  2185. static void start_capturing (void)
  2186. {
  2187. unsigned int i;
  2188. enum v4l2_buf_type type;
  2189. for (i = 0; i < n_buffers; ++i)
  2190. {
  2191. struct v4l2_buffer buf;
  2192. buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  2193. buf.memory = V4L2_MEMORY_MMAP;
  2194. buf.index = i;
  2195. /* VIDIOC_QBUF把数据从缓存中读取出来*/
  2196. if (-1 == xioctl (fd, VIDIOC_QBUF, &buf))
  2197. errno_exit ("VIDIOC_QBUF");
  2198. }
  2199. type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  2200. /* VIDIOC_STREAMON开始视频显示函数*/
  2201. if (-1 == xioctl (fd, VIDIOC_STREAMON, &type))
  2202. errno_exit ("VIDIOC_STREAMON");
  2203. }
  2204. 经过v4l2框架的一系列转换,最终调用到vivi.c驱动中我们自己实现的vidioc_qbuf函数中:
  2205. static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
  2206. {
  2207. struct vivi_dev *dev = video_drvdata(file);
  2208. return vb2_qbuf(&dev->vb_vidq, p);
  2209. }
  2210. 它又调用了vb2_querybuf这个函数,它就在videobuf2-core.c这个文件中,如下所示:
  2211. /**
  2212. * vb2_qbuf() - Queue a buffer from userspace
  2213. * @q:        videobuf2 queue
  2214. * @b:        buffer structure passed from userspace to vidioc_qbuf handler
  2215. *            in driver
  2216. *
  2217. * Should be called from vidioc_qbuf ioctl handler of a driver.
  2218. * This function:
  2219. * 1) verifies the passed buffer,
  2220. * 2) if necessary, calls buf_prepare callback in the driver (if provided), in
  2221. * which driver-specific buffer initialization can be performed,
  2222. * 3) if streaming is on, queues the buffer in driver by the means of buf_queue
  2223. * callback for processing.
  2224. *
  2225. * The return values from this function are intended to be directly returned
  2226. * from vidioc_qbuf handler in driver.
  2227. */
  2228. int vb2_qbuf(struct vb2_queue *q, struct v4l2_buffer *b)
  2229. {
  2230. struct rw_semaphore *mmap_sem = NULL;
  2231. struct vb2_buffer *vb;
  2232. int ret = 0;
  2233. if (q->memory == V4L2_MEMORY_USERPTR) {
  2234. mmap_sem = &current->mm->mmap_sem;
  2235. call_qop(q, wait_prepare, q);
  2236. down_read(mmap_sem);
  2237. call_qop(q, wait_finish, q);
  2238. }
  2239. if (q->fileio) {
  2240. dprintk(1, "qbuf: file io in progress\n");
  2241. ret = -EBUSY;
  2242. goto unlock;
  2243. }
  2244. if (b->type != q->type) {
  2245. dprintk(1, "qbuf: invalid buffer type\n");
  2246. ret = -EINVAL;
  2247. goto unlock;
  2248. }
  2249. if (b->index >= q->num_buffers) {
  2250. dprintk(1, "qbuf: buffer index out of range\n");
  2251. ret = -EINVAL;
  2252. goto unlock;
  2253. }
  2254. vb = q->bufs[b->index];
  2255. if (NULL == vb) {
  2256. /* Should never happen */
  2257. dprintk(1, "qbuf: buffer is NULL\n");
  2258. ret = -EINVAL;
  2259. goto unlock;
  2260. }
  2261. /* 从vb2_queue q队列的bufs中根据b->index选择一项,赋给vb。 */
  2262. if (b->memory != q->memory) {
  2263. dprintk(1, "qbuf: invalid memory type\n");
  2264. ret = -EINVAL;
  2265. goto unlock;
  2266. }
  2267. switch (vb->state) {
  2268. case VB2_BUF_STATE_DEQUEUED:
  2269. ret = __buf_prepare(vb, b);
  2270. if (ret)
  2271. goto unlock;
  2272. case VB2_BUF_STATE_PREPARED:
  2273. break;
  2274. default:
  2275. dprintk(1, "qbuf: buffer already in use\n");
  2276. ret = -EINVAL;
  2277. goto unlock;
  2278. }
  2279. /* 根据不同的vb->state状态,如果为
    VB2_BUF_STATE_DEQUEUED的话,就调用__buf_prepare函数,如果为
    VB2_BUF_STATE_PREPARED的话,就直接break,__buf_prepare函数如下所示,他们的主要目的是:到这一步的
    vb2_buffer
    vb该有的属性是VB2_BUF_STATE_PREPARED,如果它仅仅是VB2_BUF_STATE_DEQUEUED的话,就调用__buf_prepare函数来为它添加这一个属性,下面简单看看这个函数是不是这个意思:
  2280. static int __buf_prepare(struct vb2_buffer *vb, const struct v4l2_buffer *b)
  2281. {
  2282. struct vb2_queue *q = vb->vb2_queue;
  2283. int ret;
  2284. switch (q->memory) {
  2285. case V4L2_MEMORY_MMAP:
  2286. ret = __qbuf_mmap(vb, b);
  2287. break;
  2288. case V4L2_MEMORY_USERPTR:
  2289. ret = __qbuf_userptr(vb, b);
  2290. break;
  2291. default:
  2292. WARN(1, "Invalid queue type\n");
  2293. ret = -EINVAL;
  2294. }
  2295. if (!ret)
  2296. ret = call_qop(q, buf_prepare, vb);
  2297. if (ret)
  2298. dprintk(1, "qbuf: buffer preparation failed: %d\n", ret);
  2299. else
  2300. vb->state = VB2_BUF_STATE_PREPARED;
  2301. return ret;
  2302. }
  2303. 暂时先不分析__qbuf_mmap和__qbuf_userptr函数,看最后 vb->state = VB2_BUF_STATE_PREPARED,就是为vb2_buffer vb添加这个 VB2_BUF_STATE_PREPARED属性。
  2304. */
  2305. /*
  2306. * Add to the queued buffers list, a buffer will stay on it until
  2307. * dequeued in dqbuf.
  2308. */
  2309. list_add_tail(&vb->queued_entry, &q->queued_list);
  2310. vb->state = VB2_BUF_STATE_QUEUED;
  2311. /*
    重要的就是这个list_add_tail链表操作了,通过这个操作,将vb2_buffer
    vb中的queued_entry链表头添加到vb2_queue q的queued_list中去,然后为vb2_buffer
    vb设置VB2_BUF_STATE_QUEUED的属性。 */
  2312. /*
  2313. * If already streaming, give the buffer to driver for processing.
  2314. * If not, the buffer will be given to driver on next streamon.
  2315. */
  2316. if (q->streaming)
  2317. __enqueue_in_driver(vb);
  2318. /* Fill buffer information for the userspace */
  2319. __fill_v4l2_buffer(vb, b);
  2320. dprintk(1, "qbuf of buffer %d succeeded\n", vb->v4l2_buf.index);
  2321. unlock:
  2322. if (mmap_sem)
  2323. up_read(mmap_sem);
  2324. return ret;
  2325. }
  2326. EXPORT_SYMBOL_GPL(vb2_qbuf);
  2327. 4.5 然后就是启动摄像头了,ioctl:VIDIOC_STREAMON ,应用程序在4.4节中包含了这一步,经过v4l2框架的一系列转换,最终调用到vivi.c驱动中我们自己实现的vidioc_streamon 函数中:
  2328. static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
  2329. {
  2330. struct vivi_dev *dev = video_drvdata(file);
  2331. return vb2_streamon(&dev->vb_vidq, i);
  2332. }
  2333. 它又调用了vb2_streamon这个函数,它就在videobuf2-core.c这个文件中,如下所示:
  2334. /**
  2335. * vb2_streamon - start streaming
  2336. * @q:        videobuf2 queue
  2337. * @type:    type argument passed from userspace to vidioc_streamon handler
  2338. *
  2339. * Should be called from vidioc_streamon handler of a driver.
  2340. * This function:
  2341. * 1) verifies current state
  2342. * 2) passes any previously queued buffers to the driver and starts streaming
  2343. *
  2344. * The return values from this function are intended to be directly returned
  2345. * from vidioc_streamon handler in the driver.
  2346. */
  2347. int vb2_streamon(struct vb2_queue *q, enum v4l2_buf_type type)
  2348. {
  2349. struct vb2_buffer *vb;
  2350. int ret;
  2351. if (q->fileio) {
  2352. dprintk(1, "streamon: file io in progress\n");
  2353. return -EBUSY;
  2354. }
  2355. if (type != q->type) {
  2356. dprintk(1, "streamon: invalid stream type\n");
  2357. return -EINVAL;
  2358. }
  2359. if (q->streaming) {
  2360. dprintk(1, "streamon: already streaming\n");
  2361. return -EBUSY;
  2362. }
  2363. /*
  2364. * If any buffers were queued before streamon,
  2365. * we can now pass them to driver for processing.
  2366. */
  2367. list_for_each_entry(vb, &q->queued_list, queued_entry)
  2368. __enqueue_in_driver(vb);
  2369. /*

    如果在启动stream之前,已经有buffer被放入队列的话,就调用__enqueue_in_driver函数来处理它。但是我们第一次执行到这里,就是按照先reqbuf,然后querybuf,qbuf的顺序来执行的,在执行qbuf的过程中,肯定有至少一个vb2_buffer是添加到vb2_queue中queued_list链表中的,所以肯定会执行这个__enqueue_in_driver函数。

  2370. 下面来分析分析这个__enqueue_in_driver函数,它也是在这个videobuf2-core.c文件中:
  2371. static void __enqueue_in_driver(struct vb2_buffer *vb)
  2372. {
  2373. struct vb2_queue *q = vb->vb2_queue;
  2374. vb->state = VB2_BUF_STATE_ACTIVE;
  2375. atomic_inc(&q->queued_count);
  2376. q->ops->buf_queue(vb);
  2377. }
  2378. 首先设置vb2_buffer的state状态为 VB2_BUF_STATE_ACTIVE,然后原子增加vb2_queue队列q的 queued_count数值,然后调用vb2_queue队列q->ops->buf_queue函数,即vivi.c中的buffer_queue函数:
  2379. static void buffer_queue(struct vb2_buffer *vb)
  2380. {
  2381. struct vivi_dev *dev = vb2_get_drv_priv(vb->vb2_queue);
  2382. struct vivi_buffer *buf = container_of(vb, struct vivi_buffer, vb);
  2383. struct vivi_dmaqueue *vidq = &dev->vidq;
  2384. unsigned long flags = 0;
  2385. dprintk(dev, 1, "%s\n", __func__);
  2386. spin_lock_irqsave(&dev->slock, flags);
  2387. list_add_tail(&buf->list, &vidq->active);
  2388. spin_unlock_irqrestore(&dev->slock, flags);
  2389. }
  2390. 它主要就是将vb2_buffer vb所在的vivi_buffer buf通过list_add_tail添加到vivi_dmaquue vidq结构体中的active链表中。
  2391. */
  2392. /*
  2393. * Let driver notice that streaming state has been enabled.
  2394. */
  2395. ret = call_qop(q, start_streaming, q, atomic_read(&q->queued_count));
  2396. if (ret) {
  2397. dprintk(1, "streamon: driver refused to start streaming\n");
  2398. __vb2_queue_cancel(q);
  2399. return ret;
  2400. }
  2401. /* 调用vb2_queue q中的ops->start_streaming函数,即vivi.c中的start_streaming函数:
  2402. static int start_streaming(struct vb2_queue *vq, unsigned int count)
  2403. {
  2404. struct vivi_dev *dev = vb2_get_drv_priv(vq);
  2405. dprintk(dev, 1, "%s\n", __func__);
  2406. return vivi_start_generating(dev);
  2407. }
  2408. 它又调用了vivi.c中的vivi_start_generating函数:
  2409. static int vivi_start_generating(struct vivi_dev *dev)
  2410. {
  2411. struct vivi_dmaqueue *dma_q = &dev->vidq;
  2412. dprintk(dev, 1, "%s\n", __func__);
  2413. /* Resets frame counters */
  2414. dev->ms = 0;
  2415. dev->mv_count = 0;
  2416. dev->jiffies = jiffies;
  2417. dma_q->frame = 0;
  2418. dma_q->ini_jiffies = jiffies;
  2419. dma_q->kthread = kthread_run(vivi_thread, dev, dev->v4l2_dev.name);
  2420. if (IS_ERR(dma_q->kthread)) {
  2421. v4l2_err(&dev->v4l2_dev, "kernel_thread() failed\n");
  2422. return PTR_ERR(dma_q->kthread);
  2423. }
  2424. /* Wakes thread */
  2425. wake_up_interruptible(&dma_q->wq);
  2426. dprintk(dev, 1, "returning from %s\n", __func__);
  2427. return 0;
  2428. }
  2429. 在这个vivi_start_generating函数中,它通过启动一个内核线程的方式,在内核线程vivi_thread中调用启动一个队列,收集到的信息后填充到队列中的第一个buf中,然后通过wake_up_interruptible来唤醒线程,这些都是vivi.c中对于收集信息所做的处理。我们现在分析的是v4l2框架的流程,知道在这进行了这些处理就行,我们后面再具体分析数据处理的过程。
  2430. */
  2431. q->streaming = 1;
  2432. /* 设置vb2_queue q的streaming为1,表明已经启动了流处理。 */
  2433. dprintk(3, "Streamon successful\n");
  2434. return 0;
  2435. }
  2436. EXPORT_SYMBOL_GPL(vb2_streamon);
  2437. 4.6 分析vivi.c中开启streamon以后的数据处理过程:
  2438. 上面提到一直调用到vivi.c中的vivi_start_generating函数,在这个函数中通过
  2439. dma_q->kthread = kthread_run(vivi_thread, dev, dev->v4l2_dev.name);
  2440. 来启动一个vivi_thread的内核线程:
  2441. static int vivi_thread(void *data)
  2442. {
  2443. struct vivi_dev *dev = data;
  2444. dprintk(dev, 1, "thread started\n");
  2445. set_freezable();
  2446. for (;;) {
  2447. vivi_sleep(dev);
  2448. if (kthread_should_stop())
  2449. break;
  2450. }
  2451. dprintk(dev, 1, "thread: exit\n");
  2452. return 0;
  2453. }
  2454. 这个线程进入一个死循环中,在这个死循环中是vivi_sleep函数:
  2455. static void vivi_sleep(struct vivi_dev *dev)
  2456. {
  2457. struct vivi_dmaqueue *dma_q = &dev->vidq;
  2458. int timeout;
  2459. DECLARE_WAITQUEUE(wait, current);
  2460. dprintk(dev, 1, "%s dma_q=0x%08lx\n", __func__,
  2461. (unsigned long)dma_q);
  2462. add_wait_queue(&dma_q->wq, &wait);
  2463. if (kthread_should_stop())
  2464. goto stop_task;
  2465. /* Calculate time to wake up */
  2466. timeout = msecs_to_jiffies(frames_to_ms(1));
  2467. vivi_thread_tick(dev);
  2468. schedule_timeout_interruptible(timeout);
  2469. stop_task:
  2470. remove_wait_queue(&dma_q->wq, &wait);
  2471. try_to_freeze();
  2472. }
  2473. 在这个vivi_sleep函数中,申请了一个等待队列:dma_q->wq,然后就进入vivi_thread_tick(dev); 中等待队列被唤醒,vivi_thread_tick函数如下所示:
  2474. static void vivi_thread_tick(struct vivi_dev *dev)
  2475. {
  2476. struct vivi_dmaqueue *dma_q = &dev->vidq;
  2477. struct vivi_buffer *buf;
  2478. unsigned long flags = 0;
  2479. dprintk(dev, 1, "Thread tick\n");
  2480. spin_lock_irqsave(&dev->slock, flags);
  2481. if (list_empty(&dma_q->active)) {
  2482. dprintk(dev, 1, "No active queue to serve\n");
  2483. spin_unlock_irqrestore(&dev->slock, flags);
  2484. return;
  2485. }
  2486. buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
  2487. list_del(&buf->list);
  2488. spin_unlock_irqrestore(&dev->slock, flags);
  2489. do_gettimeofday(&buf->vb.v4l2_buf.timestamp);
  2490. /* Fill buffer */
  2491. vivi_fillbuff(dev, buf);
  2492. dprintk(dev, 1, "filled buffer %p\n", buf);
  2493. vb2_buffer_done(&buf->vb, VB2_BUF_STATE_DONE);
  2494. dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
  2495. }
  2496. 在这个函数中,调用vivi_fillbuff函数来填充数据,然后调用vb2_buffer_done函数,这个函数在videobuf2-core.c文件中,如下所示:
  2497. /**
  2498. * vb2_buffer_done() - inform videobuf that an operation on a buffer is finished
  2499. * @vb:        vb2_buffer returned from the driver
  2500. * @state:    either VB2_BUF_STATE_DONE if the operation finished successfully
  2501. *        or VB2_BUF_STATE_ERROR if the operation finished with an error
  2502. *
  2503. * This function should be called by the driver after a hardware operation on
  2504. * a buffer is finished and the buffer may be returned to userspace. The driver
  2505. * cannot use this buffer anymore until it is queued back to it by videobuf
  2506. * by the means of buf_queue callback. Only buffers previously queued to the
  2507. * driver by buf_queue can be passed to this function.
  2508. */
  2509. void vb2_buffer_done(struct vb2_buffer *vb, enum vb2_buffer_state state)
  2510. {
  2511. struct vb2_queue *q = vb->vb2_queue;
  2512. unsigned long flags;
  2513. if (vb->state != VB2_BUF_STATE_ACTIVE)
  2514. return;
  2515. /* 因为在前面的步骤已经设置了vb2_buffer vb的属性为 VB2_BUF_STATE_ACTIVE,这时候再次检查这个属性,如果不为 VB2_BUF_STATE_ACTIVE的话就直接返回。 */
  2516. if (state != VB2_BUF_STATE_DONE && state != VB2_BUF_STATE_ERROR)
  2517. return;
  2518. /* 检查函数传入的属性,它代表vb2_buffer的下一个属性,只能是 VB2_BUF_STATE_DONE和 VB2_BUF_STATE_ERROR中的一个,如果不是这两个就直接返回。 */
  2519. dprintk(4, "Done processing on buffer %d, state: %d\n",
  2520. vb->v4l2_buf.index, vb->state);
  2521. /* Add the buffer to the done buffers list */
  2522. spin_lock_irqsave(&q->done_lock, flags);
  2523. vb->state = state;
  2524. /* 设置vb2_buffer的属性为 VB2_BUF_STATE_DONE或VB2_BUF_STATE_ERROR。 */
  2525. list_add_tail(&vb->done_entry, &q->done_list);
  2526. /* 将vb2_buffer里面的done_entry队列添加到 vb2_queue q的done_list链表中去。 */
  2527. atomic_dec(&q->queued_count);
  2528. /* 原子减少这个计数*/
  2529. spin_unlock_irqrestore(&q->done_lock, flags);
  2530. /* Inform any processes that may be waiting for buffers */
  2531. wake_up(&q->done_wq);
  2532. /* 唤醒vb2_buffer q里面的done_wq等待队列。 */
  2533. }
  2534. EXPORT_SYMBOL_GPL(vb2_buffer_done);
  2535. 这一步的主要目的就是将vivi.c中的vb2加入q->done_list中,然后设置vb->state的属性为VB2_BUF_STATE_DONE,上面的这两步非常重要,在后面会用到这,这两步的核心代码就是videobuf2-core.c中的 vb2_buffer_done函数。
  2536. 4.7 应用程序这时候就开始收集摄像头数据了,当它收集到数据的时候,就调用到了poll/select机制,应用程序如下所示:
  2537. static void run (void)
  2538. {
  2539. unsigned int count;
  2540. int frames;
  2541. frames = 30 * time_in_sec_capture;
  2542. while (frames-- > 0)
  2543. {
  2544. for (;;)
  2545. {
  2546. fd_set fds;
  2547. struct timeval tv;
  2548. int r;
  2549. FD_ZERO (&fds);
  2550. FD_SET (fd, &fds);
  2551. tv.tv_sec = 2;
  2552. tv.tv_usec = 0;
  2553. /* poll method*/
  2554. r = select (fd + 1, &fds, NULL, NULL, &tv);
  2555. if (read_frame())
  2556. break;
  2557. }
  2558. }
  2559. }
  2560. 经过v4l2框架的一系列转换,最终调用到vivi.c驱动中我们自己实现的vivi_poll 函数中:
  2561. static unsigned int
  2562. vivi_poll(struct file *file, struct poll_table_struct *wait)
  2563. {
  2564. struct vivi_dev *dev = video_drvdata(file);
  2565. struct v4l2_fh *fh = file->private_data;
  2566. struct vb2_queue *q = &dev->vb_vidq;
  2567. unsigned int res;
  2568. dprintk(dev, 1, "%s\n", __func__);
  2569. res = vb2_poll(q, file, wait);
  2570. if (v4l2_event_pending(fh))
  2571. res |= POLLPRI;
  2572. else
  2573. poll_wait(file, &fh->wait, wait);
  2574. return res;
  2575. }
  2576. 它又调用到vb2_poll函数,如下所示:
  2577. /**
  2578. * vb2_poll() - implements poll userspace operation
  2579. * @q:        videobuf2 queue
  2580. * @file:    file argument passed to the poll file operation handler
  2581. * @wait:    wait argument passed to the poll file operation handler
  2582. *
  2583. * This function implements poll file operation handler for a driver.
  2584. * For CAPTURE queues, if a buffer is ready to be dequeued, the userspace will
  2585. * be informed that the file descriptor of a video device is available for
  2586. * reading.
  2587. * For OUTPUT queues, if a buffer is ready to be dequeued, the file descriptor
  2588. * will be reported as available for writing.
  2589. *
  2590. * The return values from this function are intended to be directly returned
  2591. * from poll handler in driver.
  2592. */
  2593. unsigned int vb2_poll(struct vb2_queue *q, struct file *file, poll_table *wait)
  2594. {
  2595. unsigned long flags;
  2596. unsigned int ret;
  2597. struct vb2_buffer *vb = NULL;
  2598. /*
  2599. * Start file I/O emulator only if streaming API has not been used yet.
  2600. */
  2601. if (q->num_buffers == 0 && q->fileio == NULL) {
  2602. if (!V4L2_TYPE_IS_OUTPUT(q->type) && (q->io_modes & VB2_READ)) {
  2603. ret = __vb2_init_fileio(q, 1);
  2604. if (ret)
  2605. return POLLERR;
  2606. }
  2607. if (V4L2_TYPE_IS_OUTPUT(q->type) && (q->io_modes & VB2_WRITE)) {
  2608. ret = __vb2_init_fileio(q, 0);
  2609. if (ret)
  2610. return POLLERR;
  2611. /*
  2612. * Write to OUTPUT queue can be done immediately.
  2613. */
  2614. return POLLOUT | POLLWRNORM;
  2615. }
  2616. }
  2617. /*
  2618. * There is nothing to wait for if no buffers have already been queued.
  2619. */
  2620. if (list_empty(&q->queued_list))
  2621. return POLLERR;
  2622. poll_wait(file, &q->done_wq, wait);
  2623. /* 调用poll_wait等待vb2_queue q的done_wq队列是否有数据填充,那么它是什么时候有数据填充的呢?就是我们上一步分析的。 */
  2624. /*
  2625. * Take first buffer available for dequeuing.
  2626. */
  2627. spin_lock_irqsave(&q->done_lock, flags);
  2628. if (!list_empty(&q->done_list))
  2629. vb = list_first_entry(&q->done_list, struct vb2_buffer,
  2630. done_entry);
  2631. spin_unlock_irqrestore(&q->done_lock, flags);
  2632. /* 从vb2_queue q队列的done_list中,取出第一个vb2_buffer,为dqbuf做准备。 */
  2633. if (vb && (vb->state == VB2_BUF_STATE_DONE
  2634. || vb->state == VB2_BUF_STATE_ERROR)) {
  2635. return (V4L2_TYPE_IS_OUTPUT(q->type)) ? POLLOUT | POLLWRNORM :
  2636. POLLIN | POLLRDNORM;
  2637. /* poll机制返回值,根据q->type类型,返回可读还是可写。 */
  2638. }
  2639. return 0;
  2640. }
  2641. EXPORT_SYMBOL_GPL(vb2_poll);
  2642. 4.8 看上面4.7步中的应用程序,它在run函数的死循环中,如果poll机制返回可读还是可写的话,就调用read_frame函数,这个函数如下所示:
  2643. static int read_frame (void)
  2644. {
  2645. struct v4l2_buffer buf;
  2646. unsigned int i;
  2647. CLEAR (buf);
  2648. buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  2649. buf.memory = V4L2_MEMORY_MMAP;
  2650. /* VIDIOC_DQBUF把数据放回缓存队列*/
  2651. if (-1 == xioctl (fd, VIDIOC_DQBUF, &buf))
  2652. {
  2653. switch (errno)
  2654. {
  2655. case EAGAIN:
  2656. return 0;
  2657. case EIO:
  2658. default:
  2659. errno_exit ("VIDIOC_DQBUF");
  2660. }
  2661. }
  2662. assert (buf.index < n_buffers);
  2663. printf("v4l2_pix_format->field(%d)/n", buf.field);
  2664. //assert (buf.field ==V4L2_FIELD_NONE);
  2665. process_image (buffers[buf.index].start);
  2666. /* VIDIOC_QBUF把数据从缓存中读取出来*/
  2667. if (-1 == xioctl (fd, VIDIOC_QBUF, &buf))
  2668. errno_exit ("VIDIOC_QBUF");
  2669. return 1;
  2670. }
  2671. 应用程序调用ioctl:VIDIOC_DQBUF,经过一系列的转换,最终调用到vivi.c中的vidioc_dqbuf 函数:static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
  2672. {
  2673. struct vivi_dev *dev = video_drvdata(file);
  2674. return vb2_dqbuf(&dev->vb_vidq, p, file->f_flags & O_NONBLOCK);
  2675. }
  2676. 它有调用到videobuf2-core.c中的vb2_dqbuf函数,如下所示:
  2677. /**
  2678. * vb2_dqbuf() - Dequeue a buffer to the userspace
  2679. * @q:        videobuf2 queue
  2680. * @b:        buffer structure passed from userspace to vidioc_dqbuf handler
  2681. *        in driver
  2682. * @nonblocking: if true, this call will not sleep waiting for a buffer if no
  2683. *         buffers ready for dequeuing are present. Normally the driver
  2684. *         would be passing (file->f_flags & O_NONBLOCK) here
  2685. *
  2686. * Should be called from vidioc_dqbuf ioctl handler of a driver.
  2687. * This function:
  2688. * 1) verifies the passed buffer,
  2689. * 2) calls buf_finish callback in the driver (if provided), in which
  2690. * driver can perform any additional operations that may be required before
  2691. * returning the buffer to userspace, such as cache sync,
  2692. * 3) the buffer struct members are filled with relevant information for
  2693. * the userspace.
  2694. *
  2695. * The return values from this function are intended to be directly returned
  2696. * from vidioc_dqbuf handler in driver.
  2697. */
  2698. int vb2_dqbuf(struct vb2_queue *q, struct v4l2_buffer *b, bool nonblocking)
  2699. {
  2700. struct vb2_buffer *vb = NULL;
  2701. int ret;
  2702. if (q->fileio) {
  2703. dprintk(1, "dqbuf: file io in progress\n");
  2704. return -EBUSY;
  2705. }
  2706. if (b->type != q->type) {
  2707. dprintk(1, "dqbuf: invalid buffer type\n");
  2708. return -EINVAL;
  2709. }
  2710. ret = __vb2_get_done_vb(q, &vb, nonblocking);
  2711. if (ret < 0) {
  2712. dprintk(1, "dqbuf: error getting next done buffer\n");
  2713. return ret;
  2714. }
  2715. /*
  2716. /**
  2717. * __vb2_get_done_vb() - get a buffer ready for dequeuing
  2718. *
  2719. * Will sleep if required for nonblocking == false.
  2720. */
  2721. static int __vb2_get_done_vb(struct vb2_queue *q, struct vb2_buffer **vb,
  2722. int nonblocking)
  2723. {
  2724. unsigned long flags;
  2725. int ret;
  2726. /*
  2727. * Wait for at least one buffer to become available on the done_list.
  2728. */
  2729. ret = __vb2_wait_for_done_vb(q, nonblocking);
  2730. if (ret)
  2731. return ret;
  2732. /* 至少等待在done_list链表里面有一个buffer */
  2733. /*
  2734. * Driver's lock has been held since we last verified that done_list
  2735. * is not empty, so no need for another list_empty(done_list) check.
  2736. */
  2737. spin_lock_irqsave(&q->done_lock, flags);
  2738. *vb = list_first_entry(&q->done_list, struct vb2_buffer, done_entry);
  2739. list_del(&(*vb)->done_entry);
  2740. spin_unlock_irqrestore(&q->done_lock, flags);
  2741. /* 从vb2_queue队列的done_lise链表中,把vb中done_entry链表删除 */
  2742. return 0;
  2743. }
  2744. */
  2745. ret = call_qop(q, buf_finish, vb);
  2746. if (ret) {
  2747. dprintk(1, "dqbuf: buffer finish failed\n");
  2748. return ret;
  2749. }
  2750. /* 最终调用到vivi.c中的buffer_finish函数 */
  2751. switch (vb->state) {
  2752. case VB2_BUF_STATE_DONE:
  2753. dprintk(3, "dqbuf: Returning done buffer\n");
  2754. break;
  2755. case VB2_BUF_STATE_ERROR:
  2756. dprintk(3, "dqbuf: Returning done buffer with errors\n");
  2757. break;
  2758. default:
  2759. dprintk(1, "dqbuf: Invalid buffer state\n");
  2760. return -EINVAL;
  2761. }
  2762. /* 这时候传过来的vb_state应该是 VB2_BUF_STATE_ACTIVE的,除此之外的直接返回。 */
  2763. /* Fill buffer information for the userspace */
  2764. __fill_v4l2_buffer(vb, b);
  2765. /* 填充v4l2_buffer结构体 */
  2766. /* Remove from videobuf queue */
  2767. list_del(&vb->queued_entry);
  2768. /* 把vb2_buffer vb中的queued_entry链表中的一项。 */
  2769. dprintk(1, "dqbuf of buffer %d, with state %d\n",
  2770. vb->v4l2_buf.index, vb->state);
  2771. vb->state = VB2_BUF_STATE_DEQUEUED;
  2772. /* 设置vb2_buffer的状态为 VB2_BUF_STATE_DEQUEUED */
  2773. return 0;
  2774. }
  2775. EXPORT_SYMBOL_GPL(vb2_dqbuf);
  2776. 4.9 看4.8中的read_frame应用程序函数,它执行完ioctl:VIDIOC_DQBUF后,执行process_image函数,来完成对图像的处理,处理完图像以后,就直接再次调用ioctl:VIDIOC_QBUF调用,就这样一直循环执行,直到应用程序调用ioctl:VIDIOC_STREAMOFF 调用。
  2777. 4.10 下面讲ioctl:VIDIOC_STREAMOFF 调用,应用程序一般如下所示:
  2778. static void stop_capturing (void)
  2779. {
  2780. enum v4l2_buf_type type;
  2781. type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  2782. /* VIDIOC_STREAMOFF结束视频显示函数*/
  2783. if (-1 == xioctl (fd, VIDIOC_STREAMOFF, &type))
  2784. errno_exit ("VIDIOC_STREAMOFF");
  2785. }
  2786. 经过一系列的转换,最终调用到vivi.c中的stop_streaming函数,如下所示:
  2787. /* abort streaming and wait for last buffer */
  2788. static int stop_streaming(struct vb2_queue *vq)
  2789. {
  2790. struct vivi_dev *dev = vb2_get_drv_priv(vq);
  2791. dprintk(dev, 1, "%s\n", __func__);
  2792. vivi_stop_generating(dev);
  2793. return 0;
  2794. }
  2795. static void vivi_stop_generating(struct vivi_dev *dev)
  2796. {
  2797. struct vivi_dmaqueue *dma_q = &dev->vidq;
  2798. dprintk(dev, 1, "%s\n", __func__);
  2799. /* shutdown control thread */
  2800. if (dma_q->kthread) {
  2801. kthread_stop(dma_q->kthread);
  2802. dma_q->kthread = NULL;
  2803. }
  2804. /* 把内核线程关闭了。 */
  2805. /*
  2806. * Typical driver might need to wait here until dma engine stops.
  2807. * In this case we can abort imiedetly, so it's just a noop.
  2808. */
  2809. /* Release all active buffers */
  2810. while (!list_empty(&dma_q->active)) {
  2811. struct vivi_buffer *buf;
  2812. buf = list_entry(dma_q->active.next, struct vivi_buffer, list);
  2813. list_del(&buf->list);
  2814. vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
  2815. dprintk(dev, 2, "[%p/%d] done\n", buf, buf->vb.v4l2_buf.index);
  2816. }
  2817. /* 一直把所有的缓冲区都释放掉。 */
  2818. }
  2819. 至此,基本所有的过程都分析完毕了,剩下的就是把上面做标记的位置填充了,把哪个ioctl控制的流程图画了,mmap的分析,ioctl的分析。
  2820. 分析这么点东西花了一个星期时间了,先放一放。。。。。。

V4L2学习记录【转】的更多相关文章

  1. Quartz 学习记录1

    原因 公司有一些批量定时任务可能需要在夜间执行,用的是quartz和spring batch两个框架.quartz是个定时任务框架,spring batch是个批处理框架. 虽然我自己的小玩意儿平时不 ...

  2. Java 静态内部类与非静态内部类 学习记录&period;

    目的 为什么会有这篇文章呢,是因为我在学习各种框架的时候发现很多框架都用到了这些内部类的小技巧,虽然我平时写代码的时候基本不用,但是看别人代码的话至少要了解基本知识吧,另外到底内部类应该应用在哪些场合 ...

  3. Apache Shiro 学习记录4

    今天看了教程的第三章...是关于授权的......和以前一样.....自己也研究了下....我觉得看那篇教程怎么说呢.....总体上是为数不多的精品教程了吧....但是有些地方确实是讲的太少了.... ...

  4. UWP学习记录12-应用到应用的通信

    UWP学习记录12-应用到应用的通信 1.应用间通信 “共享”合约是用户可以在应用之间快速交换数据的一种方式. 例如,用户可能希望使用社交网络应用与其好友共享网页,或者将链接保存在笔记应用中以供日后参 ...

  5. UWP学习记录11-设计和UI

    UWP学习记录11-设计和UI 1.输入和设备 通用 Windows 平台 (UWP) 中的用户交互组合了输入和输出源(例如鼠标.键盘.笔.触摸.触摸板.语音.Cortana.控制器.手势.注视等)以 ...

  6. UWP学习记录10-设计和UI之控件和模式7

    UWP学习记录10-设计和UI之控件和模式7 1.导航控件 Hub,中心控件,利用它你可以将应用内容整理到不同但又相关的区域或类别中. 中心的各个区域可按首选顺序遍历,并且可用作更具体体验的起始点. ...

  7. UWP学习记录9-设计和UI之控件和模式6

    UWP学习记录9-设计和UI之控件和模式6 1.图形和墨迹 InkCanvas是接收和显示墨迹笔划的控件,是新增的比较复杂的控件,这里先不深入. 而形状(Shape)则是可以显示的各种保留模式图形对象 ...

  8. UWP学习记录8-设计和UI之控件和模式5

    UWP学习记录8-设计和UI之控件和模式5 1.日历.日期和时间控件 日期和时间控件提供了标准的本地化方法,可供用户在应用中查看并设置日期和时间值. 有四个日期和时间控件可供选择,选择的依据如下: 日 ...

  9. UWP学习记录7-设计和UI之控件和模式4

    UWP学习记录7-设计和UI之控件和模式4 1.翻转视图 使用翻转视图浏览集合中的图像或其他项目(例如相册中的照片或产品详细信息页中的项目),一次显示一个项目. 对于触摸设备,轻扫某个项将在整个集合中 ...

随机推荐

  1. JavaScript的&OpenCurlyDoubleQuote;原型甘露”

    今天跟朋友讨论JS的面向对象编程问题,想起了原来曾经看过一篇文章,但是看过很久想不起来了,用了很多关键词,终于用“悟透JavaScript  面向对象”这两个关键词找到了“原文”,原文地址:http: ...

  2. C&num;网络编程数据传输中封装数据帧头的方法

    在C/S端编程的时候,经常要在C端和S端之间传数据时自定义一下报文的帧头,如果是在C/C++,封装帧头是一件很简单的事情,直接把unsigned char *强转为struct就行,但是在C#中,并没 ...

  3. 推荐两本学习linux的经典书籍

  4. &lbrack;NOIP2011&rsqb; 提高组 洛谷P1003 铺地毯

    题目描述 为了准备一个独特的颁奖典礼,组织者在会场的一片矩形区域(可看做是平面直角坐标系的第一象限)铺上一些矩形地毯.一共有 n 张地毯,编号从 1 到n .现在将这些地毯按照编号从小到大的顺序平行于 ...

  5. CSS一些总结

    1. display block:块元素,默认宽度为100%,可以设置元素的宽高,默认占满一行.块元素包括div,h1-h6,form,table,ul,ol等: inline:行内元素,默认宽度为内 ...

  6. hdu 4742 Pinball Game 3D 分治&plus;树状数组

    离散化x然后用树状数组解决,排序y然后分治解决,z在分治的时候排序解决. 具体:先对y排序,solve(l,r)分成solve(l,mid),solve(mid+1,r), 然后因为是按照y排序,所以 ...

  7. 解决VS2010使用comboBox死机问题

    今天,在10下使用combobox总是不响应,原来是和翻译软件冲突,关掉有道立即解决.

  8. svn 客户端安装 windows

    windows使用的 https://tortoisesvn.net/ 下载中文语言包 安装 安装完安装语言包 看到这个代表svn客户端可以用了 windows客户端下载TortoiseSVN软件进行 ...

  9. TFS二次开发10——分组&lpar;Group&rpar;和成员&lpar;Member&rpar;

    TFS SDK 10 ——分组(Group)和成员(Member) 这篇来介绍怎样读取TFS服务器上的用户信息 首先TFS默认有如下分组(Group): SharePoint Web Applicat ...

  10. wordpress后台进去空白怎么办?

    最近博客换成了用wordpress程序搭建,内容和版面也重新设计.经常使用FTP工具,更改模板或者其他程序文件.由于对wordpress不太了解,竟然出现了wordpress后台进去空白的问题,而前台 ...