1 // SPDX-License-Identifier: GPL-2.0-only
3 * This is a V4L2 PCI Skeleton Driver. It gives an initial skeleton source
4 * for use with other PCI drivers.
6 * This skeleton PCI driver assumes that the card has an S-Video connector as
7 * input 0 and an HDMI connector as input 1.
9 * Copyright 2014 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
12 #include <linux/types.h>
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/kmod.h>
17 #include <linux/mutex.h>
18 #include <linux/pci.h>
19 #include <linux/interrupt.h>
20 #include <linux/videodev2.h>
21 #include <linux/v4l2-dv-timings.h>
22 #include <media/v4l2-device.h>
23 #include <media/v4l2-dev.h>
24 #include <media/v4l2-ioctl.h>
25 #include <media/v4l2-dv-timings.h>
26 #include <media/v4l2-ctrls.h>
27 #include <media/v4l2-event.h>
28 #include <media/videobuf2-v4l2.h>
29 #include <media/videobuf2-dma-contig.h>
31 MODULE_DESCRIPTION("V4L2 PCI Skeleton Driver");
32 MODULE_AUTHOR("Hans Verkuil");
33 MODULE_LICENSE("GPL v2");
36 * struct skeleton - All internal data for one instance of device
38 * @v4l2_dev: top-level v4l2 device struct
39 * @vdev: video node structure
40 * @ctrl_handler: control handler structure
41 * @lock: ioctl serialization mutex
42 * @std: current SDTV standard
43 * @timings: current HDTV timings
44 * @format: current pix format
45 * @input: current video input (0 = SDTV, 1 = HDTV)
46 * @queue: vb2 video capture queue
47 * @qlock: spinlock controlling access to buf_list and sequence
48 * @buf_list: list of buffers queued for DMA
49 * @field: the field (TOP/BOTTOM/other) of the current buffer
50 * @sequence: frame sequence counter
54 struct v4l2_device v4l2_dev;
55 struct video_device vdev;
56 struct v4l2_ctrl_handler ctrl_handler;
59 struct v4l2_dv_timings timings;
60 struct v4l2_pix_format format;
63 struct vb2_queue queue;
66 struct list_head buf_list;
72 struct vb2_v4l2_buffer vb;
73 struct list_head list;
76 static inline struct skel_buffer *to_skel_buffer(struct vb2_v4l2_buffer *vbuf)
78 return container_of(vbuf, struct skel_buffer, vb);
81 static const struct pci_device_id skeleton_pci_tbl[] = {
82 /* { PCI_DEVICE(PCI_VENDOR_ID_, PCI_DEVICE_ID_) }, */
85 MODULE_DEVICE_TABLE(pci, skeleton_pci_tbl);
88 * HDTV: this structure has the capabilities of the HDTV receiver.
89 * It is used to constrain the huge list of possible formats based
90 * upon the hardware capabilities.
92 static const struct v4l2_dv_timings_cap skel_timings_cap = {
93 .type = V4L2_DV_BT_656_1120,
94 /* keep this initialization for compatibility with GCC < 4.4.6 */
97 720, 1920, /* min/max width */
98 480, 1080, /* min/max height */
99 27000000, 74250000, /* min/max pixelclock*/
100 V4L2_DV_BT_STD_CEA861, /* Supported standards */
102 V4L2_DV_BT_CAP_INTERLACED | V4L2_DV_BT_CAP_PROGRESSIVE
107 * Supported SDTV standards. This does the same job as skel_timings_cap, but
108 * for standard TV formats.
110 #define SKEL_TVNORMS V4L2_STD_ALL
113 * Interrupt handler: typically interrupts happen after a new frame has been
114 * captured. It is the job of the handler to remove the new frame from the
115 * internal list and give it back to the vb2 framework, updating the sequence
116 * counter, field and timestamp at the same time.
118 static irqreturn_t skeleton_irq(int irq, void *dev_id)
121 struct skeleton *skel = dev_id;
123 /* handle interrupt */
125 /* Once a new frame has been captured, mark it as done like this: */
126 if (captured_new_frame) {
128 spin_lock(&skel->qlock);
129 list_del(&new_buf->list);
130 spin_unlock(&skel->qlock);
131 new_buf->vb.vb2_buf.timestamp = ktime_get_ns();
132 new_buf->vb.sequence = skel->sequence++;
133 new_buf->vb.field = skel->field;
134 if (skel->format.field == V4L2_FIELD_ALTERNATE) {
135 if (skel->field == V4L2_FIELD_BOTTOM)
136 skel->field = V4L2_FIELD_TOP;
137 else if (skel->field == V4L2_FIELD_TOP)
138 skel->field = V4L2_FIELD_BOTTOM;
140 vb2_buffer_done(&new_buf->vb.vb2_buf, VB2_BUF_STATE_DONE);
147 * Setup the constraints of the queue: besides setting the number of planes
148 * per buffer and the size and allocation context of each plane, it also
149 * checks if sufficient buffers have been allocated. Usually 3 is a good
150 * minimum number: many DMA engines need a minimum of 2 buffers in the
151 * queue and you need to have another available for userspace processing.
153 static int queue_setup(struct vb2_queue *vq,
154 unsigned int *nbuffers, unsigned int *nplanes,
155 unsigned int sizes[], struct device *alloc_devs[])
157 struct skeleton *skel = vb2_get_drv_priv(vq);
159 skel->field = skel->format.field;
160 if (skel->field == V4L2_FIELD_ALTERNATE) {
162 * You cannot use read() with FIELD_ALTERNATE since the field
163 * information (TOP/BOTTOM) cannot be passed back to the user.
165 if (vb2_fileio_is_active(vq))
167 skel->field = V4L2_FIELD_TOP;
170 if (vq->num_buffers + *nbuffers < 3)
171 *nbuffers = 3 - vq->num_buffers;
174 return sizes[0] < skel->format.sizeimage ? -EINVAL : 0;
176 sizes[0] = skel->format.sizeimage;
181 * Prepare the buffer for queueing to the DMA engine: check and set the
184 static int buffer_prepare(struct vb2_buffer *vb)
186 struct skeleton *skel = vb2_get_drv_priv(vb->vb2_queue);
187 unsigned long size = skel->format.sizeimage;
189 if (vb2_plane_size(vb, 0) < size) {
190 dev_err(&skel->pdev->dev, "buffer too small (%lu < %lu)\n",
191 vb2_plane_size(vb, 0), size);
195 vb2_set_plane_payload(vb, 0, size);
200 * Queue this buffer to the DMA engine.
202 static void buffer_queue(struct vb2_buffer *vb)
204 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
205 struct skeleton *skel = vb2_get_drv_priv(vb->vb2_queue);
206 struct skel_buffer *buf = to_skel_buffer(vbuf);
209 spin_lock_irqsave(&skel->qlock, flags);
210 list_add_tail(&buf->list, &skel->buf_list);
212 /* TODO: Update any DMA pointers if necessary */
214 spin_unlock_irqrestore(&skel->qlock, flags);
217 static void return_all_buffers(struct skeleton *skel,
218 enum vb2_buffer_state state)
220 struct skel_buffer *buf, *node;
223 spin_lock_irqsave(&skel->qlock, flags);
224 list_for_each_entry_safe(buf, node, &skel->buf_list, list) {
225 vb2_buffer_done(&buf->vb.vb2_buf, state);
226 list_del(&buf->list);
228 spin_unlock_irqrestore(&skel->qlock, flags);
232 * Start streaming. First check if the minimum number of buffers have been
233 * queued. If not, then return -ENOBUFS and the vb2 framework will call
234 * this function again the next time a buffer has been queued until enough
235 * buffers are available to actually start the DMA engine.
237 static int start_streaming(struct vb2_queue *vq, unsigned int count)
239 struct skeleton *skel = vb2_get_drv_priv(vq);
244 /* TODO: start DMA */
248 * In case of an error, return all active buffers to the
251 return_all_buffers(skel, VB2_BUF_STATE_QUEUED);
257 * Stop the DMA engine. Any remaining buffers in the DMA queue are dequeued
258 * and passed on to the vb2 framework marked as STATE_ERROR.
260 static void stop_streaming(struct vb2_queue *vq)
262 struct skeleton *skel = vb2_get_drv_priv(vq);
266 /* Release all active buffers */
267 return_all_buffers(skel, VB2_BUF_STATE_ERROR);
271 * The vb2 queue ops. Note that since q->lock is set we can use the standard
272 * vb2_ops_wait_prepare/finish helper functions. If q->lock would be NULL,
273 * then this driver would have to provide these ops.
275 static const struct vb2_ops skel_qops = {
276 .queue_setup = queue_setup,
277 .buf_prepare = buffer_prepare,
278 .buf_queue = buffer_queue,
279 .start_streaming = start_streaming,
280 .stop_streaming = stop_streaming,
281 .wait_prepare = vb2_ops_wait_prepare,
282 .wait_finish = vb2_ops_wait_finish,
286 * Required ioctl querycap. Note that the version field is prefilled with
287 * the version of the kernel.
289 static int skeleton_querycap(struct file *file, void *priv,
290 struct v4l2_capability *cap)
292 struct skeleton *skel = video_drvdata(file);
294 strlcpy(cap->driver, KBUILD_MODNAME, sizeof(cap->driver));
295 strlcpy(cap->card, "V4L2 PCI Skeleton", sizeof(cap->card));
296 snprintf(cap->bus_info, sizeof(cap->bus_info), "PCI:%s",
297 pci_name(skel->pdev));
302 * Helper function to check and correct struct v4l2_pix_format. It's used
303 * not only in VIDIOC_TRY/S_FMT, but also elsewhere if changes to the SDTV
304 * standard, HDTV timings or the video input would require updating the
307 static void skeleton_fill_pix_format(struct skeleton *skel,
308 struct v4l2_pix_format *pix)
310 pix->pixelformat = V4L2_PIX_FMT_YUYV;
311 if (skel->input == 0) {
314 pix->height = (skel->std & V4L2_STD_525_60) ? 480 : 576;
315 pix->field = V4L2_FIELD_INTERLACED;
316 pix->colorspace = V4L2_COLORSPACE_SMPTE170M;
319 pix->width = skel->timings.bt.width;
320 pix->height = skel->timings.bt.height;
321 if (skel->timings.bt.interlaced) {
322 pix->field = V4L2_FIELD_ALTERNATE;
325 pix->field = V4L2_FIELD_NONE;
327 pix->colorspace = V4L2_COLORSPACE_REC709;
331 * The YUYV format is four bytes for every two pixels, so bytesperline
334 pix->bytesperline = pix->width * 2;
335 pix->sizeimage = pix->bytesperline * pix->height;
339 static int skeleton_try_fmt_vid_cap(struct file *file, void *priv,
340 struct v4l2_format *f)
342 struct skeleton *skel = video_drvdata(file);
343 struct v4l2_pix_format *pix = &f->fmt.pix;
346 * Due to historical reasons providing try_fmt with an unsupported
347 * pixelformat will return -EINVAL for video receivers. Webcam drivers,
348 * however, will silently correct the pixelformat. Some video capture
349 * applications rely on this behavior...
351 if (pix->pixelformat != V4L2_PIX_FMT_YUYV)
353 skeleton_fill_pix_format(skel, pix);
357 static int skeleton_s_fmt_vid_cap(struct file *file, void *priv,
358 struct v4l2_format *f)
360 struct skeleton *skel = video_drvdata(file);
363 ret = skeleton_try_fmt_vid_cap(file, priv, f);
368 * It is not allowed to change the format while buffers for use with
369 * streaming have already been allocated.
371 if (vb2_is_busy(&skel->queue))
374 /* TODO: change format */
375 skel->format = f->fmt.pix;
379 static int skeleton_g_fmt_vid_cap(struct file *file, void *priv,
380 struct v4l2_format *f)
382 struct skeleton *skel = video_drvdata(file);
384 f->fmt.pix = skel->format;
388 static int skeleton_enum_fmt_vid_cap(struct file *file, void *priv,
389 struct v4l2_fmtdesc *f)
394 f->pixelformat = V4L2_PIX_FMT_YUYV;
398 static int skeleton_s_std(struct file *file, void *priv, v4l2_std_id std)
400 struct skeleton *skel = video_drvdata(file);
402 /* S_STD is not supported on the HDMI input */
407 * No change, so just return. Some applications call S_STD again after
408 * the buffers for streaming have been set up, so we have to allow for
411 if (std == skel->std)
415 * Changing the standard implies a format change, which is not allowed
416 * while buffers for use with streaming have already been allocated.
418 if (vb2_is_busy(&skel->queue))
421 /* TODO: handle changing std */
425 /* Update the internal format */
426 skeleton_fill_pix_format(skel, &skel->format);
430 static int skeleton_g_std(struct file *file, void *priv, v4l2_std_id *std)
432 struct skeleton *skel = video_drvdata(file);
434 /* G_STD is not supported on the HDMI input */
443 * Query the current standard as seen by the hardware. This function shall
444 * never actually change the standard, it just detects and reports.
445 * The framework will initially set *std to tvnorms (i.e. the set of
446 * supported standards by this input), and this function should just AND
447 * this value. If there is no signal, then *std should be set to 0.
449 static int skeleton_querystd(struct file *file, void *priv, v4l2_std_id *std)
451 struct skeleton *skel = video_drvdata(file);
453 /* QUERY_STD is not supported on the HDMI input */
459 * Query currently seen standard. Initial value of *std is
460 * V4L2_STD_ALL. This function should look something like this:
467 /* Use signal information to reduce the number of possible standards */
468 if (signal_has_525_lines)
469 *std &= V4L2_STD_525_60;
471 *std &= V4L2_STD_625_50;
476 static int skeleton_s_dv_timings(struct file *file, void *_fh,
477 struct v4l2_dv_timings *timings)
479 struct skeleton *skel = video_drvdata(file);
481 /* S_DV_TIMINGS is not supported on the S-Video input */
482 if (skel->input == 0)
485 /* Quick sanity check */
486 if (!v4l2_valid_dv_timings(timings, &skel_timings_cap, NULL, NULL))
489 /* Check if the timings are part of the CEA-861 timings. */
490 if (!v4l2_find_dv_timings_cap(timings, &skel_timings_cap,
494 /* Return 0 if the new timings are the same as the current timings. */
495 if (v4l2_match_dv_timings(timings, &skel->timings, 0, false))
499 * Changing the timings implies a format change, which is not allowed
500 * while buffers for use with streaming have already been allocated.
502 if (vb2_is_busy(&skel->queue))
505 /* TODO: Configure new timings */
508 skel->timings = *timings;
510 /* Update the internal format */
511 skeleton_fill_pix_format(skel, &skel->format);
515 static int skeleton_g_dv_timings(struct file *file, void *_fh,
516 struct v4l2_dv_timings *timings)
518 struct skeleton *skel = video_drvdata(file);
520 /* G_DV_TIMINGS is not supported on the S-Video input */
521 if (skel->input == 0)
524 *timings = skel->timings;
528 static int skeleton_enum_dv_timings(struct file *file, void *_fh,
529 struct v4l2_enum_dv_timings *timings)
531 struct skeleton *skel = video_drvdata(file);
533 /* ENUM_DV_TIMINGS is not supported on the S-Video input */
534 if (skel->input == 0)
537 return v4l2_enum_dv_timings_cap(timings, &skel_timings_cap,
542 * Query the current timings as seen by the hardware. This function shall
543 * never actually change the timings, it just detects and reports.
544 * If no signal is detected, then return -ENOLINK. If the hardware cannot
545 * lock to the signal, then return -ENOLCK. If the signal is out of range
546 * of the capabilities of the system (e.g., it is possible that the receiver
547 * can lock but that the DMA engine it is connected to cannot handle
548 * pixelclocks above a certain frequency), then -ERANGE is returned.
550 static int skeleton_query_dv_timings(struct file *file, void *_fh,
551 struct v4l2_dv_timings *timings)
553 struct skeleton *skel = video_drvdata(file);
555 /* QUERY_DV_TIMINGS is not supported on the S-Video input */
556 if (skel->input == 0)
561 * Query currently seen timings. This function should look
562 * something like this:
567 if (cannot_lock_to_signal)
569 if (signal_out_of_range_of_capabilities)
572 /* Useful for debugging */
573 v4l2_print_dv_timings(skel->v4l2_dev.name, "query_dv_timings:",
579 static int skeleton_dv_timings_cap(struct file *file, void *fh,
580 struct v4l2_dv_timings_cap *cap)
582 struct skeleton *skel = video_drvdata(file);
584 /* DV_TIMINGS_CAP is not supported on the S-Video input */
585 if (skel->input == 0)
587 *cap = skel_timings_cap;
591 static int skeleton_enum_input(struct file *file, void *priv,
592 struct v4l2_input *i)
597 i->type = V4L2_INPUT_TYPE_CAMERA;
599 i->std = SKEL_TVNORMS;
600 strlcpy(i->name, "S-Video", sizeof(i->name));
601 i->capabilities = V4L2_IN_CAP_STD;
604 strlcpy(i->name, "HDMI", sizeof(i->name));
605 i->capabilities = V4L2_IN_CAP_DV_TIMINGS;
610 static int skeleton_s_input(struct file *file, void *priv, unsigned int i)
612 struct skeleton *skel = video_drvdata(file);
618 * Changing the input implies a format change, which is not allowed
619 * while buffers for use with streaming have already been allocated.
621 if (vb2_is_busy(&skel->queue))
626 * Update tvnorms. The tvnorms value is used by the core to implement
627 * VIDIOC_ENUMSTD so it has to be correct. If tvnorms == 0, then
628 * ENUMSTD will return -ENODATA.
630 skel->vdev.tvnorms = i ? 0 : SKEL_TVNORMS;
632 /* Update the internal format */
633 skeleton_fill_pix_format(skel, &skel->format);
637 static int skeleton_g_input(struct file *file, void *priv, unsigned int *i)
639 struct skeleton *skel = video_drvdata(file);
645 /* The control handler. */
646 static int skeleton_s_ctrl(struct v4l2_ctrl *ctrl)
648 /*struct skeleton *skel =
649 container_of(ctrl->handler, struct skeleton, ctrl_handler);*/
652 case V4L2_CID_BRIGHTNESS:
653 /* TODO: set brightness to ctrl->val */
655 case V4L2_CID_CONTRAST:
656 /* TODO: set contrast to ctrl->val */
658 case V4L2_CID_SATURATION:
659 /* TODO: set saturation to ctrl->val */
662 /* TODO: set hue to ctrl->val */
670 /* ------------------------------------------------------------------
671 File operations for the device
672 ------------------------------------------------------------------*/
674 static const struct v4l2_ctrl_ops skel_ctrl_ops = {
675 .s_ctrl = skeleton_s_ctrl,
679 * The set of all supported ioctls. Note that all the streaming ioctls
680 * use the vb2 helper functions that take care of all the locking and
681 * that also do ownership tracking (i.e. only the filehandle that requested
682 * the buffers can call the streaming ioctls, all other filehandles will
683 * receive -EBUSY if they attempt to call the same streaming ioctls).
685 * The last three ioctls also use standard helper functions: these implement
686 * standard behavior for drivers with controls.
688 static const struct v4l2_ioctl_ops skel_ioctl_ops = {
689 .vidioc_querycap = skeleton_querycap,
690 .vidioc_try_fmt_vid_cap = skeleton_try_fmt_vid_cap,
691 .vidioc_s_fmt_vid_cap = skeleton_s_fmt_vid_cap,
692 .vidioc_g_fmt_vid_cap = skeleton_g_fmt_vid_cap,
693 .vidioc_enum_fmt_vid_cap = skeleton_enum_fmt_vid_cap,
695 .vidioc_g_std = skeleton_g_std,
696 .vidioc_s_std = skeleton_s_std,
697 .vidioc_querystd = skeleton_querystd,
699 .vidioc_s_dv_timings = skeleton_s_dv_timings,
700 .vidioc_g_dv_timings = skeleton_g_dv_timings,
701 .vidioc_enum_dv_timings = skeleton_enum_dv_timings,
702 .vidioc_query_dv_timings = skeleton_query_dv_timings,
703 .vidioc_dv_timings_cap = skeleton_dv_timings_cap,
705 .vidioc_enum_input = skeleton_enum_input,
706 .vidioc_g_input = skeleton_g_input,
707 .vidioc_s_input = skeleton_s_input,
709 .vidioc_reqbufs = vb2_ioctl_reqbufs,
710 .vidioc_create_bufs = vb2_ioctl_create_bufs,
711 .vidioc_querybuf = vb2_ioctl_querybuf,
712 .vidioc_qbuf = vb2_ioctl_qbuf,
713 .vidioc_dqbuf = vb2_ioctl_dqbuf,
714 .vidioc_expbuf = vb2_ioctl_expbuf,
715 .vidioc_streamon = vb2_ioctl_streamon,
716 .vidioc_streamoff = vb2_ioctl_streamoff,
718 .vidioc_log_status = v4l2_ctrl_log_status,
719 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
720 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
724 * The set of file operations. Note that all these ops are standard core
727 static const struct v4l2_file_operations skel_fops = {
728 .owner = THIS_MODULE,
729 .open = v4l2_fh_open,
730 .release = vb2_fop_release,
731 .unlocked_ioctl = video_ioctl2,
732 .read = vb2_fop_read,
733 .mmap = vb2_fop_mmap,
734 .poll = vb2_fop_poll,
738 * The initial setup of this device instance. Note that the initial state of
739 * the driver should be complete. So the initial format, standard, timings
740 * and video input should all be initialized to some reasonable value.
742 static int skeleton_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
744 /* The initial timings are chosen to be 720p60. */
745 static const struct v4l2_dv_timings timings_def =
746 V4L2_DV_BT_CEA_1280X720P60;
747 struct skeleton *skel;
748 struct video_device *vdev;
749 struct v4l2_ctrl_handler *hdl;
754 ret = pci_enable_device(pdev);
757 ret = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
759 dev_err(&pdev->dev, "no suitable DMA available.\n");
763 /* Allocate a new instance */
764 skel = devm_kzalloc(&pdev->dev, sizeof(struct skeleton), GFP_KERNEL);
770 /* Allocate the interrupt */
771 ret = devm_request_irq(&pdev->dev, pdev->irq,
772 skeleton_irq, 0, KBUILD_MODNAME, skel);
774 dev_err(&pdev->dev, "request_irq failed\n");
779 /* Fill in the initial format-related settings */
780 skel->timings = timings_def;
781 skel->std = V4L2_STD_625_50;
782 skeleton_fill_pix_format(skel, &skel->format);
784 /* Initialize the top-level structure */
785 ret = v4l2_device_register(&pdev->dev, &skel->v4l2_dev);
789 mutex_init(&skel->lock);
791 /* Add the controls */
792 hdl = &skel->ctrl_handler;
793 v4l2_ctrl_handler_init(hdl, 4);
794 v4l2_ctrl_new_std(hdl, &skel_ctrl_ops,
795 V4L2_CID_BRIGHTNESS, 0, 255, 1, 127);
796 v4l2_ctrl_new_std(hdl, &skel_ctrl_ops,
797 V4L2_CID_CONTRAST, 0, 255, 1, 16);
798 v4l2_ctrl_new_std(hdl, &skel_ctrl_ops,
799 V4L2_CID_SATURATION, 0, 255, 1, 127);
800 v4l2_ctrl_new_std(hdl, &skel_ctrl_ops,
801 V4L2_CID_HUE, -128, 127, 1, 0);
806 skel->v4l2_dev.ctrl_handler = hdl;
808 /* Initialize the vb2 queue */
810 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
811 q->io_modes = VB2_MMAP | VB2_DMABUF | VB2_READ;
814 q->buf_struct_size = sizeof(struct skel_buffer);
816 q->mem_ops = &vb2_dma_contig_memops;
817 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
819 * Assume that this DMA engine needs to have at least two buffers
820 * available before it can be started. The start_streaming() op
821 * won't be called until at least this many buffers are queued up.
823 q->min_buffers_needed = 2;
825 * The serialization lock for the streaming ioctls. This is the same
826 * as the main serialization lock, but if some of the non-streaming
827 * ioctls could take a long time to execute, then you might want to
828 * have a different lock here to prevent VIDIOC_DQBUF from being
829 * blocked while waiting for another action to finish. This is
830 * generally not needed for PCI devices, but USB devices usually do
831 * want a separate lock here.
833 q->lock = &skel->lock;
835 * Since this driver can only do 32-bit DMA we must make sure that
836 * the vb2 core will allocate the buffers in 32-bit DMA memory.
838 q->gfp_flags = GFP_DMA32;
839 ret = vb2_queue_init(q);
843 INIT_LIST_HEAD(&skel->buf_list);
844 spin_lock_init(&skel->qlock);
846 /* Initialize the video_device structure */
848 strlcpy(vdev->name, KBUILD_MODNAME, sizeof(vdev->name));
850 * There is nothing to clean up, so release is set to an empty release
851 * function. The release callback must be non-NULL.
853 vdev->release = video_device_release_empty;
854 vdev->fops = &skel_fops,
855 vdev->ioctl_ops = &skel_ioctl_ops,
856 vdev->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_READWRITE |
859 * The main serialization lock. All ioctls are serialized by this
860 * lock. Exception: if q->lock is set, then the streaming ioctls
861 * are serialized by that separate lock.
863 vdev->lock = &skel->lock;
865 vdev->v4l2_dev = &skel->v4l2_dev;
866 /* Supported SDTV standards, if any */
867 vdev->tvnorms = SKEL_TVNORMS;
868 video_set_drvdata(vdev, skel);
870 ret = video_register_device(vdev, VFL_TYPE_VIDEO, -1);
874 dev_info(&pdev->dev, "V4L2 PCI Skeleton Driver loaded\n");
878 v4l2_ctrl_handler_free(&skel->ctrl_handler);
879 v4l2_device_unregister(&skel->v4l2_dev);
881 pci_disable_device(pdev);
885 static void skeleton_remove(struct pci_dev *pdev)
887 struct v4l2_device *v4l2_dev = pci_get_drvdata(pdev);
888 struct skeleton *skel = container_of(v4l2_dev, struct skeleton, v4l2_dev);
890 video_unregister_device(&skel->vdev);
891 v4l2_ctrl_handler_free(&skel->ctrl_handler);
892 v4l2_device_unregister(&skel->v4l2_dev);
893 pci_disable_device(skel->pdev);
896 static struct pci_driver skeleton_driver = {
897 .name = KBUILD_MODNAME,
898 .probe = skeleton_probe,
899 .remove = skeleton_remove,
900 .id_table = skeleton_pci_tbl,
903 module_pci_driver(skeleton_driver);