saa7146_fops.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  1. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  2. #include <media/saa7146_vv.h>
  3. #include <linux/module.h>
  4. /****************************************************************************/
  5. /* resource management functions, shamelessly stolen from saa7134 driver */
  6. int saa7146_res_get(struct saa7146_fh *fh, unsigned int bit)
  7. {
  8. struct saa7146_dev *dev = fh->dev;
  9. struct saa7146_vv *vv = dev->vv_data;
  10. if (fh->resources & bit) {
  11. DEB_D("already allocated! want: 0x%02x, cur:0x%02x\n",
  12. bit, vv->resources);
  13. /* have it already allocated */
  14. return 1;
  15. }
  16. /* is it free? */
  17. if (vv->resources & bit) {
  18. DEB_D("locked! vv->resources:0x%02x, we want:0x%02x\n",
  19. vv->resources, bit);
  20. /* no, someone else uses it */
  21. return 0;
  22. }
  23. /* it's free, grab it */
  24. fh->resources |= bit;
  25. vv->resources |= bit;
  26. DEB_D("res: get 0x%02x, cur:0x%02x\n", bit, vv->resources);
  27. return 1;
  28. }
  29. void saa7146_res_free(struct saa7146_fh *fh, unsigned int bits)
  30. {
  31. struct saa7146_dev *dev = fh->dev;
  32. struct saa7146_vv *vv = dev->vv_data;
  33. BUG_ON((fh->resources & bits) != bits);
  34. fh->resources &= ~bits;
  35. vv->resources &= ~bits;
  36. DEB_D("res: put 0x%02x, cur:0x%02x\n", bits, vv->resources);
  37. }
  38. /********************************************************************************/
  39. /* common dma functions */
  40. void saa7146_dma_free(struct saa7146_dev *dev,struct videobuf_queue *q,
  41. struct saa7146_buf *buf)
  42. {
  43. struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
  44. DEB_EE("dev:%p, buf:%p\n", dev, buf);
  45. BUG_ON(in_interrupt());
  46. videobuf_waiton(q, &buf->vb, 0, 0);
  47. videobuf_dma_unmap(q->dev, dma);
  48. videobuf_dma_free(dma);
  49. buf->vb.state = VIDEOBUF_NEEDS_INIT;
  50. }
  51. /********************************************************************************/
  52. /* common buffer functions */
  53. int saa7146_buffer_queue(struct saa7146_dev *dev,
  54. struct saa7146_dmaqueue *q,
  55. struct saa7146_buf *buf)
  56. {
  57. assert_spin_locked(&dev->slock);
  58. DEB_EE("dev:%p, dmaq:%p, buf:%p\n", dev, q, buf);
  59. BUG_ON(!q);
  60. if (NULL == q->curr) {
  61. q->curr = buf;
  62. DEB_D("immediately activating buffer %p\n", buf);
  63. buf->activate(dev,buf,NULL);
  64. } else {
  65. list_add_tail(&buf->vb.queue,&q->queue);
  66. buf->vb.state = VIDEOBUF_QUEUED;
  67. DEB_D("adding buffer %p to queue. (active buffer present)\n",
  68. buf);
  69. }
  70. return 0;
  71. }
  72. void saa7146_buffer_finish(struct saa7146_dev *dev,
  73. struct saa7146_dmaqueue *q,
  74. int state)
  75. {
  76. assert_spin_locked(&dev->slock);
  77. DEB_EE("dev:%p, dmaq:%p, state:%d\n", dev, q, state);
  78. DEB_EE("q->curr:%p\n", q->curr);
  79. BUG_ON(!q->curr);
  80. /* finish current buffer */
  81. if (NULL == q->curr) {
  82. DEB_D("aiii. no current buffer\n");
  83. return;
  84. }
  85. q->curr->vb.state = state;
  86. do_gettimeofday(&q->curr->vb.ts);
  87. wake_up(&q->curr->vb.done);
  88. q->curr = NULL;
  89. }
  90. void saa7146_buffer_next(struct saa7146_dev *dev,
  91. struct saa7146_dmaqueue *q, int vbi)
  92. {
  93. struct saa7146_buf *buf,*next = NULL;
  94. BUG_ON(!q);
  95. DEB_INT("dev:%p, dmaq:%p, vbi:%d\n", dev, q, vbi);
  96. assert_spin_locked(&dev->slock);
  97. if (!list_empty(&q->queue)) {
  98. /* activate next one from queue */
  99. buf = list_entry(q->queue.next,struct saa7146_buf,vb.queue);
  100. list_del(&buf->vb.queue);
  101. if (!list_empty(&q->queue))
  102. next = list_entry(q->queue.next,struct saa7146_buf, vb.queue);
  103. q->curr = buf;
  104. DEB_INT("next buffer: buf:%p, prev:%p, next:%p\n",
  105. buf, q->queue.prev, q->queue.next);
  106. buf->activate(dev,buf,next);
  107. } else {
  108. DEB_INT("no next buffer. stopping.\n");
  109. if( 0 != vbi ) {
  110. /* turn off video-dma3 */
  111. saa7146_write(dev,MC1, MASK_20);
  112. } else {
  113. /* nothing to do -- just prevent next video-dma1 transfer
  114. by lowering the protection address */
  115. // fixme: fix this for vflip != 0
  116. saa7146_write(dev, PROT_ADDR1, 0);
  117. saa7146_write(dev, MC2, (MASK_02|MASK_18));
  118. /* write the address of the rps-program */
  119. saa7146_write(dev, RPS_ADDR0, dev->d_rps0.dma_handle);
  120. /* turn on rps */
  121. saa7146_write(dev, MC1, (MASK_12 | MASK_28));
  122. /*
  123. printk("vdma%d.base_even: 0x%08x\n", 1,saa7146_read(dev,BASE_EVEN1));
  124. printk("vdma%d.base_odd: 0x%08x\n", 1,saa7146_read(dev,BASE_ODD1));
  125. printk("vdma%d.prot_addr: 0x%08x\n", 1,saa7146_read(dev,PROT_ADDR1));
  126. printk("vdma%d.base_page: 0x%08x\n", 1,saa7146_read(dev,BASE_PAGE1));
  127. printk("vdma%d.pitch: 0x%08x\n", 1,saa7146_read(dev,PITCH1));
  128. printk("vdma%d.num_line_byte: 0x%08x\n", 1,saa7146_read(dev,NUM_LINE_BYTE1));
  129. */
  130. }
  131. del_timer(&q->timeout);
  132. }
  133. }
  134. void saa7146_buffer_timeout(unsigned long data)
  135. {
  136. struct saa7146_dmaqueue *q = (struct saa7146_dmaqueue*)data;
  137. struct saa7146_dev *dev = q->dev;
  138. unsigned long flags;
  139. DEB_EE("dev:%p, dmaq:%p\n", dev, q);
  140. spin_lock_irqsave(&dev->slock,flags);
  141. if (q->curr) {
  142. DEB_D("timeout on %p\n", q->curr);
  143. saa7146_buffer_finish(dev,q,VIDEOBUF_ERROR);
  144. }
  145. /* we don't restart the transfer here like other drivers do. when
  146. a streaming capture is disabled, the timeout function will be
  147. called for the current buffer. if we activate the next buffer now,
  148. we mess up our capture logic. if a timeout occurs on another buffer,
  149. then something is seriously broken before, so no need to buffer the
  150. next capture IMHO... */
  151. /*
  152. saa7146_buffer_next(dev,q);
  153. */
  154. spin_unlock_irqrestore(&dev->slock,flags);
  155. }
  156. /********************************************************************************/
  157. /* file operations */
  158. static int fops_open(struct file *file)
  159. {
  160. struct video_device *vdev = video_devdata(file);
  161. struct saa7146_dev *dev = video_drvdata(file);
  162. struct saa7146_fh *fh = NULL;
  163. int result = 0;
  164. enum v4l2_buf_type type;
  165. DEB_EE("file:%p, dev:%s\n", file, video_device_node_name(vdev));
  166. if (mutex_lock_interruptible(&saa7146_devices_lock))
  167. return -ERESTARTSYS;
  168. DEB_D("using: %p\n", dev);
  169. type = vdev->vfl_type == VFL_TYPE_GRABBER
  170. ? V4L2_BUF_TYPE_VIDEO_CAPTURE
  171. : V4L2_BUF_TYPE_VBI_CAPTURE;
  172. /* check if an extension is registered */
  173. if( NULL == dev->ext ) {
  174. DEB_S("no extension registered for this device\n");
  175. result = -ENODEV;
  176. goto out;
  177. }
  178. /* allocate per open data */
  179. fh = kzalloc(sizeof(*fh),GFP_KERNEL);
  180. if (NULL == fh) {
  181. DEB_S("cannot allocate memory for per open data\n");
  182. result = -ENOMEM;
  183. goto out;
  184. }
  185. v4l2_fh_init(&fh->fh, vdev);
  186. file->private_data = &fh->fh;
  187. fh->dev = dev;
  188. if (vdev->vfl_type == VFL_TYPE_VBI) {
  189. DEB_S("initializing vbi...\n");
  190. if (dev->ext_vv_data->capabilities & V4L2_CAP_VBI_CAPTURE)
  191. result = saa7146_vbi_uops.open(dev,file);
  192. if (dev->ext_vv_data->vbi_fops.open)
  193. dev->ext_vv_data->vbi_fops.open(file);
  194. } else {
  195. DEB_S("initializing video...\n");
  196. result = saa7146_video_uops.open(dev,file);
  197. }
  198. if (0 != result) {
  199. goto out;
  200. }
  201. if( 0 == try_module_get(dev->ext->module)) {
  202. result = -EINVAL;
  203. goto out;
  204. }
  205. result = 0;
  206. v4l2_fh_add(&fh->fh);
  207. out:
  208. if (fh && result != 0) {
  209. kfree(fh);
  210. file->private_data = NULL;
  211. }
  212. mutex_unlock(&saa7146_devices_lock);
  213. return result;
  214. }
  215. static int fops_release(struct file *file)
  216. {
  217. struct video_device *vdev = video_devdata(file);
  218. struct saa7146_fh *fh = file->private_data;
  219. struct saa7146_dev *dev = fh->dev;
  220. DEB_EE("file:%p\n", file);
  221. if (mutex_lock_interruptible(&saa7146_devices_lock))
  222. return -ERESTARTSYS;
  223. if (vdev->vfl_type == VFL_TYPE_VBI) {
  224. if (dev->ext_vv_data->capabilities & V4L2_CAP_VBI_CAPTURE)
  225. saa7146_vbi_uops.release(dev,file);
  226. if (dev->ext_vv_data->vbi_fops.release)
  227. dev->ext_vv_data->vbi_fops.release(file);
  228. } else {
  229. saa7146_video_uops.release(dev,file);
  230. }
  231. v4l2_fh_del(&fh->fh);
  232. v4l2_fh_exit(&fh->fh);
  233. module_put(dev->ext->module);
  234. file->private_data = NULL;
  235. kfree(fh);
  236. mutex_unlock(&saa7146_devices_lock);
  237. return 0;
  238. }
  239. static int fops_mmap(struct file *file, struct vm_area_struct * vma)
  240. {
  241. struct video_device *vdev = video_devdata(file);
  242. struct saa7146_fh *fh = file->private_data;
  243. struct videobuf_queue *q;
  244. switch (vdev->vfl_type) {
  245. case VFL_TYPE_GRABBER: {
  246. DEB_EE("V4L2_BUF_TYPE_VIDEO_CAPTURE: file:%p, vma:%p\n",
  247. file, vma);
  248. q = &fh->video_q;
  249. break;
  250. }
  251. case VFL_TYPE_VBI: {
  252. DEB_EE("V4L2_BUF_TYPE_VBI_CAPTURE: file:%p, vma:%p\n",
  253. file, vma);
  254. if (fh->dev->ext_vv_data->capabilities & V4L2_CAP_SLICED_VBI_OUTPUT)
  255. return -ENODEV;
  256. q = &fh->vbi_q;
  257. break;
  258. }
  259. default:
  260. BUG();
  261. return 0;
  262. }
  263. return videobuf_mmap_mapper(q,vma);
  264. }
  265. static unsigned int fops_poll(struct file *file, struct poll_table_struct *wait)
  266. {
  267. struct video_device *vdev = video_devdata(file);
  268. struct saa7146_fh *fh = file->private_data;
  269. struct videobuf_buffer *buf = NULL;
  270. struct videobuf_queue *q;
  271. unsigned int res = v4l2_ctrl_poll(file, wait);
  272. DEB_EE("file:%p, poll:%p\n", file, wait);
  273. if (vdev->vfl_type == VFL_TYPE_VBI) {
  274. if (fh->dev->ext_vv_data->capabilities & V4L2_CAP_SLICED_VBI_OUTPUT)
  275. return res | POLLOUT | POLLWRNORM;
  276. if( 0 == fh->vbi_q.streaming )
  277. return res | videobuf_poll_stream(file, &fh->vbi_q, wait);
  278. q = &fh->vbi_q;
  279. } else {
  280. DEB_D("using video queue\n");
  281. q = &fh->video_q;
  282. }
  283. if (!list_empty(&q->stream))
  284. buf = list_entry(q->stream.next, struct videobuf_buffer, stream);
  285. if (!buf) {
  286. DEB_D("buf == NULL!\n");
  287. return res | POLLERR;
  288. }
  289. poll_wait(file, &buf->done, wait);
  290. if (buf->state == VIDEOBUF_DONE || buf->state == VIDEOBUF_ERROR) {
  291. DEB_D("poll succeeded!\n");
  292. return res | POLLIN | POLLRDNORM;
  293. }
  294. DEB_D("nothing to poll for, buf->state:%d\n", buf->state);
  295. return res;
  296. }
  297. static ssize_t fops_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
  298. {
  299. struct video_device *vdev = video_devdata(file);
  300. struct saa7146_fh *fh = file->private_data;
  301. switch (vdev->vfl_type) {
  302. case VFL_TYPE_GRABBER:
  303. /*
  304. DEB_EE("V4L2_BUF_TYPE_VIDEO_CAPTURE: file:%p, data:%p, count:%lun",
  305. file, data, (unsigned long)count);
  306. */
  307. return saa7146_video_uops.read(file,data,count,ppos);
  308. case VFL_TYPE_VBI:
  309. /*
  310. DEB_EE("V4L2_BUF_TYPE_VBI_CAPTURE: file:%p, data:%p, count:%lu\n",
  311. file, data, (unsigned long)count);
  312. */
  313. if (fh->dev->ext_vv_data->capabilities & V4L2_CAP_VBI_CAPTURE)
  314. return saa7146_vbi_uops.read(file,data,count,ppos);
  315. return -EINVAL;
  316. default:
  317. BUG();
  318. return 0;
  319. }
  320. }
  321. static ssize_t fops_write(struct file *file, const char __user *data, size_t count, loff_t *ppos)
  322. {
  323. struct video_device *vdev = video_devdata(file);
  324. struct saa7146_fh *fh = file->private_data;
  325. switch (vdev->vfl_type) {
  326. case VFL_TYPE_GRABBER:
  327. return -EINVAL;
  328. case VFL_TYPE_VBI:
  329. if (fh->dev->ext_vv_data->vbi_fops.write)
  330. return fh->dev->ext_vv_data->vbi_fops.write(file, data, count, ppos);
  331. else
  332. return -EINVAL;
  333. default:
  334. BUG();
  335. return -EINVAL;
  336. }
  337. }
  338. static const struct v4l2_file_operations video_fops =
  339. {
  340. .owner = THIS_MODULE,
  341. .open = fops_open,
  342. .release = fops_release,
  343. .read = fops_read,
  344. .write = fops_write,
  345. .poll = fops_poll,
  346. .mmap = fops_mmap,
  347. .unlocked_ioctl = video_ioctl2,
  348. };
  349. static void vv_callback(struct saa7146_dev *dev, unsigned long status)
  350. {
  351. u32 isr = status;
  352. DEB_INT("dev:%p, isr:0x%08x\n", dev, (u32)status);
  353. if (0 != (isr & (MASK_27))) {
  354. DEB_INT("irq: RPS0 (0x%08x)\n", isr);
  355. saa7146_video_uops.irq_done(dev,isr);
  356. }
  357. if (0 != (isr & (MASK_28))) {
  358. u32 mc2 = saa7146_read(dev, MC2);
  359. if( 0 != (mc2 & MASK_15)) {
  360. DEB_INT("irq: RPS1 vbi workaround (0x%08x)\n", isr);
  361. wake_up(&dev->vv_data->vbi_wq);
  362. saa7146_write(dev,MC2, MASK_31);
  363. return;
  364. }
  365. DEB_INT("irq: RPS1 (0x%08x)\n", isr);
  366. saa7146_vbi_uops.irq_done(dev,isr);
  367. }
  368. }
  369. static const struct v4l2_ctrl_ops saa7146_ctrl_ops = {
  370. .s_ctrl = saa7146_s_ctrl,
  371. };
  372. int saa7146_vv_init(struct saa7146_dev* dev, struct saa7146_ext_vv *ext_vv)
  373. {
  374. struct v4l2_ctrl_handler *hdl = &dev->ctrl_handler;
  375. struct v4l2_pix_format *fmt;
  376. struct v4l2_vbi_format *vbi;
  377. struct saa7146_vv *vv;
  378. int err;
  379. err = v4l2_device_register(&dev->pci->dev, &dev->v4l2_dev);
  380. if (err)
  381. return err;
  382. v4l2_ctrl_handler_init(hdl, 6);
  383. v4l2_ctrl_new_std(hdl, &saa7146_ctrl_ops,
  384. V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
  385. v4l2_ctrl_new_std(hdl, &saa7146_ctrl_ops,
  386. V4L2_CID_CONTRAST, 0, 127, 1, 64);
  387. v4l2_ctrl_new_std(hdl, &saa7146_ctrl_ops,
  388. V4L2_CID_SATURATION, 0, 127, 1, 64);
  389. v4l2_ctrl_new_std(hdl, &saa7146_ctrl_ops,
  390. V4L2_CID_VFLIP, 0, 1, 1, 0);
  391. v4l2_ctrl_new_std(hdl, &saa7146_ctrl_ops,
  392. V4L2_CID_HFLIP, 0, 1, 1, 0);
  393. if (hdl->error) {
  394. err = hdl->error;
  395. v4l2_ctrl_handler_free(hdl);
  396. return err;
  397. }
  398. dev->v4l2_dev.ctrl_handler = hdl;
  399. vv = kzalloc(sizeof(struct saa7146_vv), GFP_KERNEL);
  400. if (vv == NULL) {
  401. ERR("out of memory. aborting.\n");
  402. v4l2_ctrl_handler_free(hdl);
  403. return -ENOMEM;
  404. }
  405. ext_vv->vid_ops = saa7146_video_ioctl_ops;
  406. ext_vv->vbi_ops = saa7146_vbi_ioctl_ops;
  407. ext_vv->core_ops = &saa7146_video_ioctl_ops;
  408. DEB_EE("dev:%p\n", dev);
  409. /* set default values for video parts of the saa7146 */
  410. saa7146_write(dev, BCS_CTRL, 0x80400040);
  411. /* enable video-port pins */
  412. saa7146_write(dev, MC1, (MASK_10 | MASK_26));
  413. /* save per-device extension data (one extension can
  414. handle different devices that might need different
  415. configuration data) */
  416. dev->ext_vv_data = ext_vv;
  417. vv->d_clipping.cpu_addr = pci_alloc_consistent(dev->pci, SAA7146_CLIPPING_MEM, &vv->d_clipping.dma_handle);
  418. if( NULL == vv->d_clipping.cpu_addr ) {
  419. ERR("out of memory. aborting.\n");
  420. kfree(vv);
  421. v4l2_ctrl_handler_free(hdl);
  422. return -1;
  423. }
  424. memset(vv->d_clipping.cpu_addr, 0x0, SAA7146_CLIPPING_MEM);
  425. saa7146_video_uops.init(dev,vv);
  426. if (dev->ext_vv_data->capabilities & V4L2_CAP_VBI_CAPTURE)
  427. saa7146_vbi_uops.init(dev,vv);
  428. fmt = &vv->ov_fb.fmt;
  429. fmt->width = vv->standard->h_max_out;
  430. fmt->height = vv->standard->v_max_out;
  431. fmt->pixelformat = V4L2_PIX_FMT_RGB565;
  432. fmt->bytesperline = 2 * fmt->width;
  433. fmt->sizeimage = fmt->bytesperline * fmt->height;
  434. fmt->colorspace = V4L2_COLORSPACE_SRGB;
  435. fmt = &vv->video_fmt;
  436. fmt->width = 384;
  437. fmt->height = 288;
  438. fmt->pixelformat = V4L2_PIX_FMT_BGR24;
  439. fmt->field = V4L2_FIELD_ANY;
  440. fmt->colorspace = V4L2_COLORSPACE_SMPTE170M;
  441. fmt->bytesperline = 3 * fmt->width;
  442. fmt->sizeimage = fmt->bytesperline * fmt->height;
  443. vbi = &vv->vbi_fmt;
  444. vbi->sampling_rate = 27000000;
  445. vbi->offset = 248; /* todo */
  446. vbi->samples_per_line = 720 * 2;
  447. vbi->sample_format = V4L2_PIX_FMT_GREY;
  448. /* fixme: this only works for PAL */
  449. vbi->start[0] = 5;
  450. vbi->count[0] = 16;
  451. vbi->start[1] = 312;
  452. vbi->count[1] = 16;
  453. init_timer(&vv->vbi_read_timeout);
  454. vv->ov_fb.capability = V4L2_FBUF_CAP_LIST_CLIPPING;
  455. vv->ov_fb.flags = V4L2_FBUF_FLAG_PRIMARY;
  456. dev->vv_data = vv;
  457. dev->vv_callback = &vv_callback;
  458. return 0;
  459. }
  460. EXPORT_SYMBOL_GPL(saa7146_vv_init);
  461. int saa7146_vv_release(struct saa7146_dev* dev)
  462. {
  463. struct saa7146_vv *vv = dev->vv_data;
  464. DEB_EE("dev:%p\n", dev);
  465. v4l2_device_unregister(&dev->v4l2_dev);
  466. pci_free_consistent(dev->pci, SAA7146_CLIPPING_MEM, vv->d_clipping.cpu_addr, vv->d_clipping.dma_handle);
  467. v4l2_ctrl_handler_free(&dev->ctrl_handler);
  468. kfree(vv);
  469. dev->vv_data = NULL;
  470. dev->vv_callback = NULL;
  471. return 0;
  472. }
  473. EXPORT_SYMBOL_GPL(saa7146_vv_release);
  474. int saa7146_register_device(struct video_device **vid, struct saa7146_dev* dev,
  475. char *name, int type)
  476. {
  477. struct video_device *vfd;
  478. int err;
  479. int i;
  480. DEB_EE("dev:%p, name:'%s', type:%d\n", dev, name, type);
  481. // released by vfd->release
  482. vfd = video_device_alloc();
  483. if (vfd == NULL)
  484. return -ENOMEM;
  485. vfd->fops = &video_fops;
  486. if (type == VFL_TYPE_GRABBER)
  487. vfd->ioctl_ops = &dev->ext_vv_data->vid_ops;
  488. else
  489. vfd->ioctl_ops = &dev->ext_vv_data->vbi_ops;
  490. vfd->release = video_device_release;
  491. /* Locking in file operations other than ioctl should be done by
  492. the driver, not the V4L2 core.
  493. This driver needs auditing so that this flag can be removed. */
  494. set_bit(V4L2_FL_LOCK_ALL_FOPS, &vfd->flags);
  495. vfd->lock = &dev->v4l2_lock;
  496. vfd->v4l2_dev = &dev->v4l2_dev;
  497. vfd->tvnorms = 0;
  498. set_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
  499. for (i = 0; i < dev->ext_vv_data->num_stds; i++)
  500. vfd->tvnorms |= dev->ext_vv_data->stds[i].id;
  501. strlcpy(vfd->name, name, sizeof(vfd->name));
  502. video_set_drvdata(vfd, dev);
  503. err = video_register_device(vfd, type, -1);
  504. if (err < 0) {
  505. ERR("cannot register v4l2 device. skipping.\n");
  506. video_device_release(vfd);
  507. return err;
  508. }
  509. pr_info("%s: registered device %s [v4l2]\n",
  510. dev->name, video_device_node_name(vfd));
  511. *vid = vfd;
  512. return 0;
  513. }
  514. EXPORT_SYMBOL_GPL(saa7146_register_device);
  515. int saa7146_unregister_device(struct video_device **vid, struct saa7146_dev* dev)
  516. {
  517. DEB_EE("dev:%p\n", dev);
  518. video_unregister_device(*vid);
  519. *vid = NULL;
  520. return 0;
  521. }
  522. EXPORT_SYMBOL_GPL(saa7146_unregister_device);
  523. static int __init saa7146_vv_init_module(void)
  524. {
  525. return 0;
  526. }
  527. static void __exit saa7146_vv_cleanup_module(void)
  528. {
  529. }
  530. module_init(saa7146_vv_init_module);
  531. module_exit(saa7146_vv_cleanup_module);
  532. MODULE_AUTHOR("Michael Hunold <michael@mihu.de>");
  533. MODULE_DESCRIPTION("video4linux driver for saa7146-based hardware");
  534. MODULE_LICENSE("GPL");