hdpvr-video.c 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248
  1. /*
  2. * Hauppauge HD PVR USB driver - video 4 linux 2 interface
  3. *
  4. * Copyright (C) 2008 Janne Grunau (j@jannau.net)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation, version 2.
  9. *
  10. */
  11. #include <linux/kernel.h>
  12. #include <linux/errno.h>
  13. #include <linux/init.h>
  14. #include <linux/slab.h>
  15. #include <linux/module.h>
  16. #include <linux/uaccess.h>
  17. #include <linux/usb.h>
  18. #include <linux/mutex.h>
  19. #include <linux/version.h>
  20. #include <linux/workqueue.h>
  21. #include <linux/videodev2.h>
  22. #include <media/v4l2-dev.h>
  23. #include <media/v4l2-common.h>
  24. #include <media/v4l2-ioctl.h>
  25. #include "hdpvr.h"
  26. #define BULK_URB_TIMEOUT 1250 /* 1.25 seconds */
  27. #define print_buffer_status() { \
  28. v4l2_dbg(MSG_BUFFER, hdpvr_debug, &dev->v4l2_dev, \
  29. "%s:%d buffer stat: %d free, %d proc\n", \
  30. __func__, __LINE__, \
  31. list_size(&dev->free_buff_list), \
  32. list_size(&dev->rec_buff_list)); }
  33. struct hdpvr_fh {
  34. struct hdpvr_device *dev;
  35. };
  36. static uint list_size(struct list_head *list)
  37. {
  38. struct list_head *tmp;
  39. uint count = 0;
  40. list_for_each(tmp, list) {
  41. count++;
  42. }
  43. return count;
  44. }
  45. /*=========================================================================*/
  46. /* urb callback */
  47. static void hdpvr_read_bulk_callback(struct urb *urb)
  48. {
  49. struct hdpvr_buffer *buf = (struct hdpvr_buffer *)urb->context;
  50. struct hdpvr_device *dev = buf->dev;
  51. /* marking buffer as received and wake waiting */
  52. buf->status = BUFSTAT_READY;
  53. wake_up_interruptible(&dev->wait_data);
  54. }
  55. /*=========================================================================*/
  56. /* bufffer bits */
  57. /* function expects dev->io_mutex to be hold by caller */
  58. int hdpvr_cancel_queue(struct hdpvr_device *dev)
  59. {
  60. struct hdpvr_buffer *buf;
  61. list_for_each_entry(buf, &dev->rec_buff_list, buff_list) {
  62. usb_kill_urb(buf->urb);
  63. buf->status = BUFSTAT_AVAILABLE;
  64. }
  65. list_splice_init(&dev->rec_buff_list, dev->free_buff_list.prev);
  66. return 0;
  67. }
  68. static int hdpvr_free_queue(struct list_head *q)
  69. {
  70. struct list_head *tmp;
  71. struct list_head *p;
  72. struct hdpvr_buffer *buf;
  73. struct urb *urb;
  74. for (p = q->next; p != q;) {
  75. buf = list_entry(p, struct hdpvr_buffer, buff_list);
  76. urb = buf->urb;
  77. usb_buffer_free(urb->dev, urb->transfer_buffer_length,
  78. urb->transfer_buffer, urb->transfer_dma);
  79. usb_free_urb(urb);
  80. tmp = p->next;
  81. list_del(p);
  82. kfree(buf);
  83. p = tmp;
  84. }
  85. return 0;
  86. }
  87. /* function expects dev->io_mutex to be hold by caller */
  88. int hdpvr_free_buffers(struct hdpvr_device *dev)
  89. {
  90. hdpvr_cancel_queue(dev);
  91. hdpvr_free_queue(&dev->free_buff_list);
  92. hdpvr_free_queue(&dev->rec_buff_list);
  93. return 0;
  94. }
  95. /* function expects dev->io_mutex to be hold by caller */
  96. int hdpvr_alloc_buffers(struct hdpvr_device *dev, uint count)
  97. {
  98. uint i;
  99. int retval = -ENOMEM;
  100. u8 *mem;
  101. struct hdpvr_buffer *buf;
  102. struct urb *urb;
  103. v4l2_dbg(MSG_INFO, hdpvr_debug, &dev->v4l2_dev,
  104. "allocating %u buffers\n", count);
  105. for (i = 0; i < count; i++) {
  106. buf = kzalloc(sizeof(struct hdpvr_buffer), GFP_KERNEL);
  107. if (!buf) {
  108. v4l2_err(&dev->v4l2_dev, "cannot allocate buffer\n");
  109. goto exit;
  110. }
  111. buf->dev = dev;
  112. urb = usb_alloc_urb(0, GFP_KERNEL);
  113. if (!urb) {
  114. v4l2_err(&dev->v4l2_dev, "cannot allocate urb\n");
  115. goto exit;
  116. }
  117. buf->urb = urb;
  118. mem = usb_buffer_alloc(dev->udev, dev->bulk_in_size, GFP_KERNEL,
  119. &urb->transfer_dma);
  120. if (!mem) {
  121. v4l2_err(&dev->v4l2_dev,
  122. "cannot allocate usb transfer buffer\n");
  123. goto exit;
  124. }
  125. usb_fill_bulk_urb(buf->urb, dev->udev,
  126. usb_rcvbulkpipe(dev->udev,
  127. dev->bulk_in_endpointAddr),
  128. mem, dev->bulk_in_size,
  129. hdpvr_read_bulk_callback, buf);
  130. buf->status = BUFSTAT_AVAILABLE;
  131. list_add_tail(&buf->buff_list, &dev->free_buff_list);
  132. }
  133. return 0;
  134. exit:
  135. hdpvr_free_buffers(dev);
  136. return retval;
  137. }
  138. static int hdpvr_submit_buffers(struct hdpvr_device *dev)
  139. {
  140. struct hdpvr_buffer *buf;
  141. struct urb *urb;
  142. int ret = 0, err_count = 0;
  143. mutex_lock(&dev->io_mutex);
  144. while (dev->status == STATUS_STREAMING &&
  145. !list_empty(&dev->free_buff_list)) {
  146. buf = list_entry(dev->free_buff_list.next, struct hdpvr_buffer,
  147. buff_list);
  148. if (buf->status != BUFSTAT_AVAILABLE) {
  149. v4l2_err(&dev->v4l2_dev,
  150. "buffer not marked as available\n");
  151. ret = -EFAULT;
  152. goto err;
  153. }
  154. urb = buf->urb;
  155. urb->status = 0;
  156. urb->actual_length = 0;
  157. ret = usb_submit_urb(urb, GFP_KERNEL);
  158. if (ret) {
  159. v4l2_err(&dev->v4l2_dev,
  160. "usb_submit_urb in %s returned %d\n",
  161. __func__, ret);
  162. if (++err_count > 2)
  163. break;
  164. continue;
  165. }
  166. buf->status = BUFSTAT_INPROGRESS;
  167. list_move_tail(&buf->buff_list, &dev->rec_buff_list);
  168. }
  169. err:
  170. print_buffer_status();
  171. mutex_unlock(&dev->io_mutex);
  172. return ret;
  173. }
  174. static struct hdpvr_buffer *hdpvr_get_next_buffer(struct hdpvr_device *dev)
  175. {
  176. struct hdpvr_buffer *buf;
  177. mutex_lock(&dev->io_mutex);
  178. if (list_empty(&dev->rec_buff_list)) {
  179. mutex_unlock(&dev->io_mutex);
  180. return NULL;
  181. }
  182. buf = list_entry(dev->rec_buff_list.next, struct hdpvr_buffer,
  183. buff_list);
  184. mutex_unlock(&dev->io_mutex);
  185. return buf;
  186. }
  187. static void hdpvr_transmit_buffers(struct work_struct *work)
  188. {
  189. struct hdpvr_device *dev = container_of(work, struct hdpvr_device,
  190. worker);
  191. while (dev->status == STATUS_STREAMING) {
  192. if (hdpvr_submit_buffers(dev)) {
  193. v4l2_err(&dev->v4l2_dev, "couldn't submit buffers\n");
  194. goto error;
  195. }
  196. if (wait_event_interruptible(dev->wait_buffer,
  197. !list_empty(&dev->free_buff_list) ||
  198. dev->status != STATUS_STREAMING))
  199. goto error;
  200. }
  201. v4l2_dbg(MSG_INFO, hdpvr_debug, &dev->v4l2_dev,
  202. "transmit worker exited\n");
  203. return;
  204. error:
  205. v4l2_dbg(MSG_INFO, hdpvr_debug, &dev->v4l2_dev,
  206. "transmit buffers errored\n");
  207. dev->status = STATUS_ERROR;
  208. }
  209. /* function expects dev->io_mutex to be hold by caller */
  210. static int hdpvr_start_streaming(struct hdpvr_device *dev)
  211. {
  212. int ret;
  213. struct hdpvr_video_info *vidinf;
  214. if (dev->status == STATUS_STREAMING)
  215. return 0;
  216. else if (dev->status != STATUS_IDLE)
  217. return -EAGAIN;
  218. vidinf = get_video_info(dev);
  219. if (vidinf) {
  220. v4l2_dbg(MSG_BUFFER, hdpvr_debug, &dev->v4l2_dev,
  221. "video signal: %dx%d@%dhz\n", vidinf->width,
  222. vidinf->height, vidinf->fps);
  223. kfree(vidinf);
  224. /* start streaming 2 request */
  225. ret = usb_control_msg(dev->udev,
  226. usb_sndctrlpipe(dev->udev, 0),
  227. 0xb8, 0x38, 0x1, 0, NULL, 0, 8000);
  228. v4l2_dbg(MSG_BUFFER, hdpvr_debug, &dev->v4l2_dev,
  229. "encoder start control request returned %d\n", ret);
  230. hdpvr_config_call(dev, CTRL_START_STREAMING_VALUE, 0x00);
  231. INIT_WORK(&dev->worker, hdpvr_transmit_buffers);
  232. queue_work(dev->workqueue, &dev->worker);
  233. v4l2_dbg(MSG_BUFFER, hdpvr_debug, &dev->v4l2_dev,
  234. "streaming started\n");
  235. dev->status = STATUS_STREAMING;
  236. return 0;
  237. }
  238. msleep(250);
  239. v4l2_dbg(MSG_INFO, hdpvr_debug, &dev->v4l2_dev,
  240. "no video signal at input %d\n", dev->options.video_input);
  241. return -EAGAIN;
  242. }
  243. /* function expects dev->io_mutex to be hold by caller */
  244. static int hdpvr_stop_streaming(struct hdpvr_device *dev)
  245. {
  246. uint actual_length, c = 0;
  247. u8 *buf;
  248. if (dev->status == STATUS_IDLE)
  249. return 0;
  250. else if (dev->status != STATUS_STREAMING)
  251. return -EAGAIN;
  252. buf = kmalloc(dev->bulk_in_size, GFP_KERNEL);
  253. if (!buf)
  254. v4l2_err(&dev->v4l2_dev, "failed to allocate temporary buffer "
  255. "for emptying the internal device buffer. "
  256. "Next capture start will be slow\n");
  257. dev->status = STATUS_SHUTTING_DOWN;
  258. hdpvr_config_call(dev, CTRL_STOP_STREAMING_VALUE, 0x00);
  259. mutex_unlock(&dev->io_mutex);
  260. wake_up_interruptible(&dev->wait_buffer);
  261. msleep(50);
  262. flush_workqueue(dev->workqueue);
  263. mutex_lock(&dev->io_mutex);
  264. /* kill the still outstanding urbs */
  265. hdpvr_cancel_queue(dev);
  266. /* emptying the device buffer beforeshutting it down */
  267. while (buf && ++c < 500 &&
  268. !usb_bulk_msg(dev->udev,
  269. usb_rcvbulkpipe(dev->udev,
  270. dev->bulk_in_endpointAddr),
  271. buf, dev->bulk_in_size, &actual_length,
  272. BULK_URB_TIMEOUT)) {
  273. /* wait */
  274. msleep(5);
  275. v4l2_dbg(MSG_BUFFER, hdpvr_debug, &dev->v4l2_dev,
  276. "%2d: got %d bytes\n", c, actual_length);
  277. }
  278. kfree(buf);
  279. v4l2_dbg(MSG_BUFFER, hdpvr_debug, &dev->v4l2_dev,
  280. "used %d urbs to empty device buffers\n", c-1);
  281. msleep(10);
  282. dev->status = STATUS_IDLE;
  283. return 0;
  284. }
  285. /*=======================================================================*/
  286. /*
  287. * video 4 linux 2 file operations
  288. */
  289. static int hdpvr_open(struct file *file)
  290. {
  291. struct hdpvr_device *dev;
  292. struct hdpvr_fh *fh;
  293. int retval = -ENOMEM;
  294. dev = (struct hdpvr_device *)video_get_drvdata(video_devdata(file));
  295. if (!dev) {
  296. v4l2_err(&dev->v4l2_dev, "open failing with with ENODEV\n");
  297. retval = -ENODEV;
  298. goto err;
  299. }
  300. fh = kzalloc(sizeof(struct hdpvr_fh), GFP_KERNEL);
  301. if (!fh) {
  302. v4l2_err(&dev->v4l2_dev, "Out of memory\n");
  303. goto err;
  304. }
  305. /* lock the device to allow correctly handling errors
  306. * in resumption */
  307. mutex_lock(&dev->io_mutex);
  308. dev->open_count++;
  309. fh->dev = dev;
  310. /* save our object in the file's private structure */
  311. file->private_data = fh;
  312. retval = 0;
  313. err:
  314. mutex_unlock(&dev->io_mutex);
  315. return retval;
  316. }
  317. static int hdpvr_release(struct file *file)
  318. {
  319. struct hdpvr_fh *fh = (struct hdpvr_fh *)file->private_data;
  320. struct hdpvr_device *dev = fh->dev;
  321. if (!dev)
  322. return -ENODEV;
  323. mutex_lock(&dev->io_mutex);
  324. if (!(--dev->open_count) && dev->status == STATUS_STREAMING)
  325. hdpvr_stop_streaming(dev);
  326. mutex_unlock(&dev->io_mutex);
  327. return 0;
  328. }
  329. /*
  330. * hdpvr_v4l2_read()
  331. * will allocate buffers when called for the first time
  332. */
  333. static ssize_t hdpvr_read(struct file *file, char __user *buffer, size_t count,
  334. loff_t *pos)
  335. {
  336. struct hdpvr_fh *fh = file->private_data;
  337. struct hdpvr_device *dev = fh->dev;
  338. struct hdpvr_buffer *buf = NULL;
  339. struct urb *urb;
  340. unsigned int ret = 0;
  341. int rem, cnt;
  342. if (*pos)
  343. return -ESPIPE;
  344. if (!dev)
  345. return -ENODEV;
  346. mutex_lock(&dev->io_mutex);
  347. if (dev->status == STATUS_IDLE) {
  348. if (hdpvr_start_streaming(dev)) {
  349. v4l2_dbg(MSG_INFO, hdpvr_debug, &dev->v4l2_dev,
  350. "start_streaming failed\n");
  351. ret = -EIO;
  352. msleep(200);
  353. dev->status = STATUS_IDLE;
  354. mutex_unlock(&dev->io_mutex);
  355. goto err;
  356. }
  357. print_buffer_status();
  358. }
  359. mutex_unlock(&dev->io_mutex);
  360. /* wait for the first buffer */
  361. if (!(file->f_flags & O_NONBLOCK)) {
  362. if (wait_event_interruptible(dev->wait_data,
  363. hdpvr_get_next_buffer(dev)))
  364. return -ERESTARTSYS;
  365. }
  366. buf = hdpvr_get_next_buffer(dev);
  367. while (count > 0 && buf) {
  368. if (buf->status != BUFSTAT_READY &&
  369. dev->status != STATUS_DISCONNECTED) {
  370. /* return nonblocking */
  371. if (file->f_flags & O_NONBLOCK) {
  372. if (!ret)
  373. ret = -EAGAIN;
  374. goto err;
  375. }
  376. if (wait_event_interruptible(dev->wait_data,
  377. buf->status == BUFSTAT_READY)) {
  378. ret = -ERESTARTSYS;
  379. goto err;
  380. }
  381. }
  382. if (buf->status != BUFSTAT_READY)
  383. break;
  384. /* set remaining bytes to copy */
  385. urb = buf->urb;
  386. rem = urb->actual_length - buf->pos;
  387. cnt = rem > count ? count : rem;
  388. if (copy_to_user(buffer, urb->transfer_buffer + buf->pos,
  389. cnt)) {
  390. v4l2_err(&dev->v4l2_dev, "read: copy_to_user failed\n");
  391. if (!ret)
  392. ret = -EFAULT;
  393. goto err;
  394. }
  395. buf->pos += cnt;
  396. count -= cnt;
  397. buffer += cnt;
  398. ret += cnt;
  399. /* finished, take next buffer */
  400. if (buf->pos == urb->actual_length) {
  401. mutex_lock(&dev->io_mutex);
  402. buf->pos = 0;
  403. buf->status = BUFSTAT_AVAILABLE;
  404. list_move_tail(&buf->buff_list, &dev->free_buff_list);
  405. print_buffer_status();
  406. mutex_unlock(&dev->io_mutex);
  407. wake_up_interruptible(&dev->wait_buffer);
  408. buf = hdpvr_get_next_buffer(dev);
  409. }
  410. }
  411. err:
  412. if (!ret && !buf)
  413. ret = -EAGAIN;
  414. return ret;
  415. }
  416. static unsigned int hdpvr_poll(struct file *filp, poll_table *wait)
  417. {
  418. struct hdpvr_buffer *buf = NULL;
  419. struct hdpvr_fh *fh = (struct hdpvr_fh *)filp->private_data;
  420. struct hdpvr_device *dev = fh->dev;
  421. unsigned int mask = 0;
  422. mutex_lock(&dev->io_mutex);
  423. if (video_is_unregistered(dev->video_dev))
  424. return -EIO;
  425. if (dev->status == STATUS_IDLE) {
  426. if (hdpvr_start_streaming(dev)) {
  427. v4l2_dbg(MSG_BUFFER, hdpvr_debug, &dev->v4l2_dev,
  428. "start_streaming failed\n");
  429. dev->status = STATUS_IDLE;
  430. }
  431. print_buffer_status();
  432. }
  433. mutex_unlock(&dev->io_mutex);
  434. buf = hdpvr_get_next_buffer(dev);
  435. /* only wait if no data is available */
  436. if (!buf || buf->status != BUFSTAT_READY) {
  437. poll_wait(filp, &dev->wait_data, wait);
  438. buf = hdpvr_get_next_buffer(dev);
  439. }
  440. if (buf && buf->status == BUFSTAT_READY)
  441. mask |= POLLIN | POLLRDNORM;
  442. return mask;
  443. }
  444. static const struct v4l2_file_operations hdpvr_fops = {
  445. .owner = THIS_MODULE,
  446. .open = hdpvr_open,
  447. .release = hdpvr_release,
  448. .read = hdpvr_read,
  449. .poll = hdpvr_poll,
  450. .unlocked_ioctl = video_ioctl2,
  451. };
  452. /*=======================================================================*/
  453. /*
  454. * V4L2 ioctl handling
  455. */
  456. static int vidioc_querycap(struct file *file, void *priv,
  457. struct v4l2_capability *cap)
  458. {
  459. struct hdpvr_device *dev = video_drvdata(file);
  460. strcpy(cap->driver, "hdpvr");
  461. strcpy(cap->card, "Haupauge HD PVR");
  462. usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
  463. cap->version = HDPVR_VERSION;
  464. cap->capabilities = V4L2_CAP_VIDEO_CAPTURE |
  465. V4L2_CAP_AUDIO |
  466. V4L2_CAP_READWRITE;
  467. return 0;
  468. }
  469. static int vidioc_s_std(struct file *file, void *private_data,
  470. v4l2_std_id *std)
  471. {
  472. struct hdpvr_fh *fh = file->private_data;
  473. struct hdpvr_device *dev = fh->dev;
  474. u8 std_type = 1;
  475. if (*std & (V4L2_STD_NTSC | V4L2_STD_PAL_60))
  476. std_type = 0;
  477. return hdpvr_config_call(dev, CTRL_VIDEO_STD_TYPE, std_type);
  478. }
  479. static const char *iname[] = {
  480. [HDPVR_COMPONENT] = "Component",
  481. [HDPVR_SVIDEO] = "S-Video",
  482. [HDPVR_COMPOSITE] = "Composite",
  483. };
  484. static int vidioc_enum_input(struct file *file, void *priv,
  485. struct v4l2_input *i)
  486. {
  487. struct hdpvr_fh *fh = file->private_data;
  488. struct hdpvr_device *dev = fh->dev;
  489. unsigned int n;
  490. n = i->index;
  491. if (n >= HDPVR_VIDEO_INPUTS)
  492. return -EINVAL;
  493. i->type = V4L2_INPUT_TYPE_CAMERA;
  494. strncpy(i->name, iname[n], sizeof(i->name) - 1);
  495. i->name[sizeof(i->name) - 1] = '\0';
  496. i->audioset = 1<<HDPVR_RCA_FRONT | 1<<HDPVR_RCA_BACK | 1<<HDPVR_SPDIF;
  497. i->std = dev->video_dev->tvnorms;
  498. return 0;
  499. }
  500. static int vidioc_s_input(struct file *file, void *private_data,
  501. unsigned int index)
  502. {
  503. struct hdpvr_fh *fh = file->private_data;
  504. struct hdpvr_device *dev = fh->dev;
  505. int retval;
  506. if (index >= HDPVR_VIDEO_INPUTS)
  507. return -EINVAL;
  508. if (dev->status != STATUS_IDLE)
  509. return -EAGAIN;
  510. retval = hdpvr_config_call(dev, CTRL_VIDEO_INPUT_VALUE, index+1);
  511. if (!retval)
  512. dev->options.video_input = index;
  513. return retval;
  514. }
  515. static int vidioc_g_input(struct file *file, void *private_data,
  516. unsigned int *index)
  517. {
  518. struct hdpvr_fh *fh = file->private_data;
  519. struct hdpvr_device *dev = fh->dev;
  520. *index = dev->options.video_input;
  521. return 0;
  522. }
  523. static const char *audio_iname[] = {
  524. [HDPVR_RCA_FRONT] = "RCA front",
  525. [HDPVR_RCA_BACK] = "RCA back",
  526. [HDPVR_SPDIF] = "SPDIF",
  527. };
  528. static int vidioc_enumaudio(struct file *file, void *priv,
  529. struct v4l2_audio *audio)
  530. {
  531. unsigned int n;
  532. n = audio->index;
  533. if (n >= HDPVR_AUDIO_INPUTS)
  534. return -EINVAL;
  535. audio->capability = V4L2_AUDCAP_STEREO;
  536. strncpy(audio->name, audio_iname[n], sizeof(audio->name) - 1);
  537. audio->name[sizeof(audio->name) - 1] = '\0';
  538. return 0;
  539. }
  540. static int vidioc_s_audio(struct file *file, void *private_data,
  541. struct v4l2_audio *audio)
  542. {
  543. struct hdpvr_fh *fh = file->private_data;
  544. struct hdpvr_device *dev = fh->dev;
  545. int retval;
  546. if (audio->index >= HDPVR_AUDIO_INPUTS)
  547. return -EINVAL;
  548. if (dev->status != STATUS_IDLE)
  549. return -EAGAIN;
  550. retval = hdpvr_set_audio(dev, audio->index+1, dev->options.audio_codec);
  551. if (!retval)
  552. dev->options.audio_input = audio->index;
  553. return retval;
  554. }
  555. static int vidioc_g_audio(struct file *file, void *private_data,
  556. struct v4l2_audio *audio)
  557. {
  558. struct hdpvr_fh *fh = file->private_data;
  559. struct hdpvr_device *dev = fh->dev;
  560. audio->index = dev->options.audio_input;
  561. audio->capability = V4L2_AUDCAP_STEREO;
  562. strncpy(audio->name, audio_iname[audio->index], sizeof(audio->name));
  563. audio->name[sizeof(audio->name) - 1] = '\0';
  564. return 0;
  565. }
  566. static const s32 supported_v4l2_ctrls[] = {
  567. V4L2_CID_BRIGHTNESS,
  568. V4L2_CID_CONTRAST,
  569. V4L2_CID_SATURATION,
  570. V4L2_CID_HUE,
  571. V4L2_CID_SHARPNESS,
  572. V4L2_CID_MPEG_AUDIO_ENCODING,
  573. V4L2_CID_MPEG_VIDEO_ENCODING,
  574. V4L2_CID_MPEG_VIDEO_BITRATE_MODE,
  575. V4L2_CID_MPEG_VIDEO_BITRATE,
  576. V4L2_CID_MPEG_VIDEO_BITRATE_PEAK,
  577. };
  578. static int fill_queryctrl(struct hdpvr_options *opt, struct v4l2_queryctrl *qc,
  579. int ac3)
  580. {
  581. int err;
  582. switch (qc->id) {
  583. case V4L2_CID_BRIGHTNESS:
  584. return v4l2_ctrl_query_fill(qc, 0x0, 0xff, 1, 0x86);
  585. case V4L2_CID_CONTRAST:
  586. return v4l2_ctrl_query_fill(qc, 0x0, 0xff, 1, 0x80);
  587. case V4L2_CID_SATURATION:
  588. return v4l2_ctrl_query_fill(qc, 0x0, 0xff, 1, 0x80);
  589. case V4L2_CID_HUE:
  590. return v4l2_ctrl_query_fill(qc, 0x0, 0xff, 1, 0x80);
  591. case V4L2_CID_SHARPNESS:
  592. return v4l2_ctrl_query_fill(qc, 0x0, 0xff, 1, 0x80);
  593. case V4L2_CID_MPEG_AUDIO_ENCODING:
  594. return v4l2_ctrl_query_fill(
  595. qc, V4L2_MPEG_AUDIO_ENCODING_AAC,
  596. ac3 ? V4L2_MPEG_AUDIO_ENCODING_AC3
  597. : V4L2_MPEG_AUDIO_ENCODING_AAC,
  598. 1, V4L2_MPEG_AUDIO_ENCODING_AAC);
  599. case V4L2_CID_MPEG_VIDEO_ENCODING:
  600. return v4l2_ctrl_query_fill(
  601. qc, V4L2_MPEG_VIDEO_ENCODING_MPEG_4_AVC,
  602. V4L2_MPEG_VIDEO_ENCODING_MPEG_4_AVC, 1,
  603. V4L2_MPEG_VIDEO_ENCODING_MPEG_4_AVC);
  604. /* case V4L2_CID_MPEG_VIDEO_? maybe keyframe interval: */
  605. /* return v4l2_ctrl_query_fill(qc, 0, 128, 128, 0); */
  606. case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
  607. return v4l2_ctrl_query_fill(
  608. qc, V4L2_MPEG_VIDEO_BITRATE_MODE_VBR,
  609. V4L2_MPEG_VIDEO_BITRATE_MODE_CBR, 1,
  610. V4L2_MPEG_VIDEO_BITRATE_MODE_CBR);
  611. case V4L2_CID_MPEG_VIDEO_BITRATE:
  612. return v4l2_ctrl_query_fill(qc, 1000000, 13500000, 100000,
  613. 6500000);
  614. case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK:
  615. err = v4l2_ctrl_query_fill(qc, 1100000, 20200000, 100000,
  616. 9000000);
  617. if (!err && opt->bitrate_mode == HDPVR_CONSTANT)
  618. qc->flags |= V4L2_CTRL_FLAG_INACTIVE;
  619. return err;
  620. default:
  621. return -EINVAL;
  622. }
  623. }
  624. static int vidioc_queryctrl(struct file *file, void *private_data,
  625. struct v4l2_queryctrl *qc)
  626. {
  627. struct hdpvr_fh *fh = file->private_data;
  628. struct hdpvr_device *dev = fh->dev;
  629. int i, next;
  630. u32 id = qc->id;
  631. memset(qc, 0, sizeof(*qc));
  632. next = !!(id & V4L2_CTRL_FLAG_NEXT_CTRL);
  633. qc->id = id & ~V4L2_CTRL_FLAG_NEXT_CTRL;
  634. for (i = 0; i < ARRAY_SIZE(supported_v4l2_ctrls); i++) {
  635. if (next) {
  636. if (qc->id < supported_v4l2_ctrls[i])
  637. qc->id = supported_v4l2_ctrls[i];
  638. else
  639. continue;
  640. }
  641. if (qc->id == supported_v4l2_ctrls[i])
  642. return fill_queryctrl(&dev->options, qc,
  643. dev->flags & HDPVR_FLAG_AC3_CAP);
  644. if (qc->id < supported_v4l2_ctrls[i])
  645. break;
  646. }
  647. return -EINVAL;
  648. }
  649. static int vidioc_g_ctrl(struct file *file, void *private_data,
  650. struct v4l2_control *ctrl)
  651. {
  652. struct hdpvr_fh *fh = file->private_data;
  653. struct hdpvr_device *dev = fh->dev;
  654. switch (ctrl->id) {
  655. case V4L2_CID_BRIGHTNESS:
  656. ctrl->value = dev->options.brightness;
  657. break;
  658. case V4L2_CID_CONTRAST:
  659. ctrl->value = dev->options.contrast;
  660. break;
  661. case V4L2_CID_SATURATION:
  662. ctrl->value = dev->options.saturation;
  663. break;
  664. case V4L2_CID_HUE:
  665. ctrl->value = dev->options.hue;
  666. break;
  667. case V4L2_CID_SHARPNESS:
  668. ctrl->value = dev->options.sharpness;
  669. break;
  670. default:
  671. return -EINVAL;
  672. }
  673. return 0;
  674. }
  675. static int vidioc_s_ctrl(struct file *file, void *private_data,
  676. struct v4l2_control *ctrl)
  677. {
  678. struct hdpvr_fh *fh = file->private_data;
  679. struct hdpvr_device *dev = fh->dev;
  680. int retval;
  681. switch (ctrl->id) {
  682. case V4L2_CID_BRIGHTNESS:
  683. retval = hdpvr_config_call(dev, CTRL_BRIGHTNESS, ctrl->value);
  684. if (!retval)
  685. dev->options.brightness = ctrl->value;
  686. break;
  687. case V4L2_CID_CONTRAST:
  688. retval = hdpvr_config_call(dev, CTRL_CONTRAST, ctrl->value);
  689. if (!retval)
  690. dev->options.contrast = ctrl->value;
  691. break;
  692. case V4L2_CID_SATURATION:
  693. retval = hdpvr_config_call(dev, CTRL_SATURATION, ctrl->value);
  694. if (!retval)
  695. dev->options.saturation = ctrl->value;
  696. break;
  697. case V4L2_CID_HUE:
  698. retval = hdpvr_config_call(dev, CTRL_HUE, ctrl->value);
  699. if (!retval)
  700. dev->options.hue = ctrl->value;
  701. break;
  702. case V4L2_CID_SHARPNESS:
  703. retval = hdpvr_config_call(dev, CTRL_SHARPNESS, ctrl->value);
  704. if (!retval)
  705. dev->options.sharpness = ctrl->value;
  706. break;
  707. default:
  708. return -EINVAL;
  709. }
  710. return retval;
  711. }
  712. static int hdpvr_get_ctrl(struct hdpvr_options *opt,
  713. struct v4l2_ext_control *ctrl)
  714. {
  715. switch (ctrl->id) {
  716. case V4L2_CID_MPEG_AUDIO_ENCODING:
  717. ctrl->value = opt->audio_codec;
  718. break;
  719. case V4L2_CID_MPEG_VIDEO_ENCODING:
  720. ctrl->value = V4L2_MPEG_VIDEO_ENCODING_MPEG_4_AVC;
  721. break;
  722. /* case V4L2_CID_MPEG_VIDEO_B_FRAMES: */
  723. /* ctrl->value = (opt->gop_mode & 0x2) ? 0 : 128; */
  724. /* break; */
  725. case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
  726. ctrl->value = opt->bitrate_mode == HDPVR_CONSTANT
  727. ? V4L2_MPEG_VIDEO_BITRATE_MODE_CBR
  728. : V4L2_MPEG_VIDEO_BITRATE_MODE_VBR;
  729. break;
  730. case V4L2_CID_MPEG_VIDEO_BITRATE:
  731. ctrl->value = opt->bitrate * 100000;
  732. break;
  733. case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK:
  734. ctrl->value = opt->peak_bitrate * 100000;
  735. break;
  736. case V4L2_CID_MPEG_STREAM_TYPE:
  737. ctrl->value = V4L2_MPEG_STREAM_TYPE_MPEG2_TS;
  738. break;
  739. default:
  740. return -EINVAL;
  741. }
  742. return 0;
  743. }
  744. static int vidioc_g_ext_ctrls(struct file *file, void *priv,
  745. struct v4l2_ext_controls *ctrls)
  746. {
  747. struct hdpvr_fh *fh = file->private_data;
  748. struct hdpvr_device *dev = fh->dev;
  749. int i, err = 0;
  750. if (ctrls->ctrl_class == V4L2_CTRL_CLASS_MPEG) {
  751. for (i = 0; i < ctrls->count; i++) {
  752. struct v4l2_ext_control *ctrl = ctrls->controls + i;
  753. err = hdpvr_get_ctrl(&dev->options, ctrl);
  754. if (err) {
  755. ctrls->error_idx = i;
  756. break;
  757. }
  758. }
  759. return err;
  760. }
  761. return -EINVAL;
  762. }
  763. static int hdpvr_try_ctrl(struct v4l2_ext_control *ctrl, int ac3)
  764. {
  765. int ret = -EINVAL;
  766. switch (ctrl->id) {
  767. case V4L2_CID_MPEG_AUDIO_ENCODING:
  768. if (ctrl->value == V4L2_MPEG_AUDIO_ENCODING_AAC ||
  769. (ac3 && ctrl->value == V4L2_MPEG_AUDIO_ENCODING_AC3))
  770. ret = 0;
  771. break;
  772. case V4L2_CID_MPEG_VIDEO_ENCODING:
  773. if (ctrl->value == V4L2_MPEG_VIDEO_ENCODING_MPEG_4_AVC)
  774. ret = 0;
  775. break;
  776. /* case V4L2_CID_MPEG_VIDEO_B_FRAMES: */
  777. /* if (ctrl->value == 0 || ctrl->value == 128) */
  778. /* ret = 0; */
  779. /* break; */
  780. case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
  781. if (ctrl->value == V4L2_MPEG_VIDEO_BITRATE_MODE_CBR ||
  782. ctrl->value == V4L2_MPEG_VIDEO_BITRATE_MODE_VBR)
  783. ret = 0;
  784. break;
  785. case V4L2_CID_MPEG_VIDEO_BITRATE:
  786. {
  787. uint bitrate = ctrl->value / 100000;
  788. if (bitrate >= 10 && bitrate <= 135)
  789. ret = 0;
  790. break;
  791. }
  792. case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK:
  793. {
  794. uint peak_bitrate = ctrl->value / 100000;
  795. if (peak_bitrate >= 10 && peak_bitrate <= 202)
  796. ret = 0;
  797. break;
  798. }
  799. case V4L2_CID_MPEG_STREAM_TYPE:
  800. if (ctrl->value == V4L2_MPEG_STREAM_TYPE_MPEG2_TS)
  801. ret = 0;
  802. break;
  803. default:
  804. return -EINVAL;
  805. }
  806. return 0;
  807. }
  808. static int vidioc_try_ext_ctrls(struct file *file, void *priv,
  809. struct v4l2_ext_controls *ctrls)
  810. {
  811. struct hdpvr_fh *fh = file->private_data;
  812. struct hdpvr_device *dev = fh->dev;
  813. int i, err = 0;
  814. if (ctrls->ctrl_class == V4L2_CTRL_CLASS_MPEG) {
  815. for (i = 0; i < ctrls->count; i++) {
  816. struct v4l2_ext_control *ctrl = ctrls->controls + i;
  817. err = hdpvr_try_ctrl(ctrl,
  818. dev->flags & HDPVR_FLAG_AC3_CAP);
  819. if (err) {
  820. ctrls->error_idx = i;
  821. break;
  822. }
  823. }
  824. return err;
  825. }
  826. return -EINVAL;
  827. }
  828. static int hdpvr_set_ctrl(struct hdpvr_device *dev,
  829. struct v4l2_ext_control *ctrl)
  830. {
  831. struct hdpvr_options *opt = &dev->options;
  832. int ret = 0;
  833. switch (ctrl->id) {
  834. case V4L2_CID_MPEG_AUDIO_ENCODING:
  835. if (dev->flags & HDPVR_FLAG_AC3_CAP) {
  836. opt->audio_codec = ctrl->value;
  837. ret = hdpvr_set_audio(dev, opt->audio_input,
  838. opt->audio_codec);
  839. }
  840. break;
  841. case V4L2_CID_MPEG_VIDEO_ENCODING:
  842. break;
  843. /* case V4L2_CID_MPEG_VIDEO_B_FRAMES: */
  844. /* if (ctrl->value == 0 && !(opt->gop_mode & 0x2)) { */
  845. /* opt->gop_mode |= 0x2; */
  846. /* hdpvr_config_call(dev, CTRL_GOP_MODE_VALUE, */
  847. /* opt->gop_mode); */
  848. /* } */
  849. /* if (ctrl->value == 128 && opt->gop_mode & 0x2) { */
  850. /* opt->gop_mode &= ~0x2; */
  851. /* hdpvr_config_call(dev, CTRL_GOP_MODE_VALUE, */
  852. /* opt->gop_mode); */
  853. /* } */
  854. /* break; */
  855. case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
  856. if (ctrl->value == V4L2_MPEG_VIDEO_BITRATE_MODE_CBR &&
  857. opt->bitrate_mode != HDPVR_CONSTANT) {
  858. opt->bitrate_mode = HDPVR_CONSTANT;
  859. hdpvr_config_call(dev, CTRL_BITRATE_MODE_VALUE,
  860. opt->bitrate_mode);
  861. }
  862. if (ctrl->value == V4L2_MPEG_VIDEO_BITRATE_MODE_VBR &&
  863. opt->bitrate_mode == HDPVR_CONSTANT) {
  864. opt->bitrate_mode = HDPVR_VARIABLE_AVERAGE;
  865. hdpvr_config_call(dev, CTRL_BITRATE_MODE_VALUE,
  866. opt->bitrate_mode);
  867. }
  868. break;
  869. case V4L2_CID_MPEG_VIDEO_BITRATE: {
  870. uint bitrate = ctrl->value / 100000;
  871. opt->bitrate = bitrate;
  872. if (bitrate >= opt->peak_bitrate)
  873. opt->peak_bitrate = bitrate+1;
  874. hdpvr_set_bitrate(dev);
  875. break;
  876. }
  877. case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK: {
  878. uint peak_bitrate = ctrl->value / 100000;
  879. if (opt->bitrate_mode == HDPVR_CONSTANT)
  880. break;
  881. if (opt->bitrate < peak_bitrate) {
  882. opt->peak_bitrate = peak_bitrate;
  883. hdpvr_set_bitrate(dev);
  884. } else
  885. ret = -EINVAL;
  886. break;
  887. }
  888. case V4L2_CID_MPEG_STREAM_TYPE:
  889. break;
  890. default:
  891. return -EINVAL;
  892. }
  893. return ret;
  894. }
  895. static int vidioc_s_ext_ctrls(struct file *file, void *priv,
  896. struct v4l2_ext_controls *ctrls)
  897. {
  898. struct hdpvr_fh *fh = file->private_data;
  899. struct hdpvr_device *dev = fh->dev;
  900. int i, err = 0;
  901. if (ctrls->ctrl_class == V4L2_CTRL_CLASS_MPEG) {
  902. for (i = 0; i < ctrls->count; i++) {
  903. struct v4l2_ext_control *ctrl = ctrls->controls + i;
  904. err = hdpvr_try_ctrl(ctrl,
  905. dev->flags & HDPVR_FLAG_AC3_CAP);
  906. if (err) {
  907. ctrls->error_idx = i;
  908. break;
  909. }
  910. err = hdpvr_set_ctrl(dev, ctrl);
  911. if (err) {
  912. ctrls->error_idx = i;
  913. break;
  914. }
  915. }
  916. return err;
  917. }
  918. return -EINVAL;
  919. }
  920. static int vidioc_enum_fmt_vid_cap(struct file *file, void *private_data,
  921. struct v4l2_fmtdesc *f)
  922. {
  923. if (f->index != 0 || f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
  924. return -EINVAL;
  925. f->flags = V4L2_FMT_FLAG_COMPRESSED;
  926. strncpy(f->description, "MPEG2-TS with AVC/AAC streams", 32);
  927. f->pixelformat = V4L2_PIX_FMT_MPEG;
  928. return 0;
  929. }
  930. static int vidioc_g_fmt_vid_cap(struct file *file, void *private_data,
  931. struct v4l2_format *f)
  932. {
  933. struct hdpvr_fh *fh = file->private_data;
  934. struct hdpvr_device *dev = fh->dev;
  935. struct hdpvr_video_info *vid_info;
  936. if (!dev)
  937. return -ENODEV;
  938. vid_info = get_video_info(dev);
  939. if (!vid_info)
  940. return -EFAULT;
  941. f->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  942. f->fmt.pix.pixelformat = V4L2_PIX_FMT_MPEG;
  943. f->fmt.pix.width = vid_info->width;
  944. f->fmt.pix.height = vid_info->height;
  945. f->fmt.pix.sizeimage = dev->bulk_in_size;
  946. f->fmt.pix.colorspace = 0;
  947. f->fmt.pix.bytesperline = 0;
  948. f->fmt.pix.field = V4L2_FIELD_ANY;
  949. kfree(vid_info);
  950. return 0;
  951. }
  952. static int vidioc_encoder_cmd(struct file *filp, void *priv,
  953. struct v4l2_encoder_cmd *a)
  954. {
  955. struct hdpvr_fh *fh = filp->private_data;
  956. struct hdpvr_device *dev = fh->dev;
  957. int res;
  958. mutex_lock(&dev->io_mutex);
  959. memset(&a->raw, 0, sizeof(a->raw));
  960. switch (a->cmd) {
  961. case V4L2_ENC_CMD_START:
  962. a->flags = 0;
  963. res = hdpvr_start_streaming(dev);
  964. break;
  965. case V4L2_ENC_CMD_STOP:
  966. res = hdpvr_stop_streaming(dev);
  967. break;
  968. default:
  969. v4l2_dbg(MSG_INFO, hdpvr_debug, &dev->v4l2_dev,
  970. "Unsupported encoder cmd %d\n", a->cmd);
  971. res = -EINVAL;
  972. }
  973. mutex_unlock(&dev->io_mutex);
  974. return res;
  975. }
  976. static int vidioc_try_encoder_cmd(struct file *filp, void *priv,
  977. struct v4l2_encoder_cmd *a)
  978. {
  979. switch (a->cmd) {
  980. case V4L2_ENC_CMD_START:
  981. case V4L2_ENC_CMD_STOP:
  982. return 0;
  983. default:
  984. return -EINVAL;
  985. }
  986. }
  987. static const struct v4l2_ioctl_ops hdpvr_ioctl_ops = {
  988. .vidioc_querycap = vidioc_querycap,
  989. .vidioc_s_std = vidioc_s_std,
  990. .vidioc_enum_input = vidioc_enum_input,
  991. .vidioc_g_input = vidioc_g_input,
  992. .vidioc_s_input = vidioc_s_input,
  993. .vidioc_enumaudio = vidioc_enumaudio,
  994. .vidioc_g_audio = vidioc_g_audio,
  995. .vidioc_s_audio = vidioc_s_audio,
  996. .vidioc_queryctrl = vidioc_queryctrl,
  997. .vidioc_g_ctrl = vidioc_g_ctrl,
  998. .vidioc_s_ctrl = vidioc_s_ctrl,
  999. .vidioc_g_ext_ctrls = vidioc_g_ext_ctrls,
  1000. .vidioc_s_ext_ctrls = vidioc_s_ext_ctrls,
  1001. .vidioc_try_ext_ctrls = vidioc_try_ext_ctrls,
  1002. .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
  1003. .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
  1004. .vidioc_encoder_cmd = vidioc_encoder_cmd,
  1005. .vidioc_try_encoder_cmd = vidioc_try_encoder_cmd,
  1006. };
  1007. static void hdpvr_device_release(struct video_device *vdev)
  1008. {
  1009. struct hdpvr_device *dev = video_get_drvdata(vdev);
  1010. hdpvr_delete(dev);
  1011. }
  1012. static const struct video_device hdpvr_video_template = {
  1013. /* .type = VFL_TYPE_GRABBER, */
  1014. /* .type2 = VID_TYPE_CAPTURE | VID_TYPE_MPEG_ENCODER, */
  1015. .fops = &hdpvr_fops,
  1016. .release = hdpvr_device_release,
  1017. .ioctl_ops = &hdpvr_ioctl_ops,
  1018. .tvnorms =
  1019. V4L2_STD_NTSC | V4L2_STD_SECAM | V4L2_STD_PAL_B |
  1020. V4L2_STD_PAL_G | V4L2_STD_PAL_H | V4L2_STD_PAL_I |
  1021. V4L2_STD_PAL_D | V4L2_STD_PAL_M | V4L2_STD_PAL_N |
  1022. V4L2_STD_PAL_60,
  1023. };
  1024. int hdpvr_register_videodev(struct hdpvr_device *dev, struct device *parent,
  1025. int devnum)
  1026. {
  1027. /* setup and register video device */
  1028. dev->video_dev = video_device_alloc();
  1029. if (!dev->video_dev) {
  1030. v4l2_err(&dev->v4l2_dev, "video_device_alloc() failed\n");
  1031. goto error;
  1032. }
  1033. *(dev->video_dev) = hdpvr_video_template;
  1034. strcpy(dev->video_dev->name, "Hauppauge HD PVR");
  1035. dev->video_dev->parent = parent;
  1036. video_set_drvdata(dev->video_dev, dev);
  1037. if (video_register_device(dev->video_dev, VFL_TYPE_GRABBER, devnum)) {
  1038. v4l2_err(&dev->v4l2_dev, "video_device registration failed\n");
  1039. goto error;
  1040. }
  1041. return 0;
  1042. error:
  1043. return -ENOMEM;
  1044. }