ov511.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:177k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. }
  2. if (ov511->decomp_ops) {
  3. if (!ov511->decomp_ops->decomp_lock) {
  4. ov511->decomp_ops = NULL;
  5. unlock_kernel();
  6. return -ENOSYS;
  7. }
  8. ov511->decomp_ops->decomp_lock();
  9. unlock_kernel();
  10. return 0;
  11. } else {
  12. unlock_kernel();
  13. return -ENXIO;
  14. }
  15. }
  16. /* Unlocks decompression module and nulls ov511->decomp_ops. Safe to call even
  17.  * if ov511->decomp_ops is NULL.
  18.  */
  19. static void 
  20. ov51x_release_decompressor(struct usb_ov511 *ov511)
  21. {
  22. int released = 0; /* Did we actually do anything? */
  23. if (!ov511)
  24. return;
  25. lock_kernel();
  26. if (ov511->decomp_ops && ov511->decomp_ops->decomp_unlock) {
  27. ov511->decomp_ops->decomp_unlock();
  28. released = 1;
  29. }
  30. ov511->decomp_ops = NULL;
  31. unlock_kernel();
  32. if (released)
  33. PDEBUG(3, "Decompressor released");
  34. }
  35. static void 
  36. ov51x_decompress(struct usb_ov511 *ov511, struct ov511_frame *frame,
  37.  unsigned char *pIn0, unsigned char *pOut0)
  38. {
  39. if (!ov511->decomp_ops)
  40. if (ov51x_request_decompressor(ov511))
  41. return;
  42. PDEBUG(4, "Decompressing %d bytes", frame->bytes_recvd);
  43. if (frame->format == VIDEO_PALETTE_GREY 
  44.     && ov511->decomp_ops->decomp_400) {
  45. int ret = ov511->decomp_ops->decomp_400(
  46. pIn0,
  47. pOut0,
  48. frame->rawwidth,
  49. frame->rawheight,
  50. frame->bytes_recvd);
  51. PDEBUG(4, "DEBUG: decomp_400 returned %d", ret);
  52. } else if (ov511->decomp_ops->decomp_420) {
  53. int ret = ov511->decomp_ops->decomp_420(
  54. pIn0,
  55. pOut0,
  56. frame->rawwidth,
  57. frame->rawheight,
  58. frame->bytes_recvd);
  59. PDEBUG(4, "DEBUG: decomp_420 returned %d", ret);
  60. } else {
  61. err("Decompressor does not support this format");
  62. }
  63. }
  64. /**********************************************************************
  65.  *
  66.  * Format conversion
  67.  *
  68.  **********************************************************************/
  69. /* Converts from planar YUV420 to RGB24. */
  70. static void 
  71. yuv420p_to_rgb(struct ov511_frame *frame,
  72.        unsigned char *pIn0, unsigned char *pOut0, int bits)
  73. {
  74. const int numpix = frame->width * frame->height;
  75. const int bytes = bits >> 3;
  76. int i, j, y00, y01, y10, y11, u, v;
  77. unsigned char *pY = pIn0;
  78. unsigned char *pU = pY + numpix;
  79. unsigned char *pV = pU + numpix / 4;
  80. unsigned char *pOut = pOut0;
  81. for (j = 0; j <= frame->height - 2; j += 2) {
  82. for (i = 0; i <= frame->width - 2; i += 2) {
  83. y00 = *pY;
  84. y01 = *(pY + 1);
  85. y10 = *(pY + frame->width);
  86. y11 = *(pY + frame->width + 1);
  87. u = (*pU++) - 128;
  88. v = (*pV++) - 128;
  89. ov511_move_420_block(y00, y01, y10, y11, u, v,
  90.      frame->width, pOut, bits);
  91. pY += 2;
  92. pOut += 2 * bytes;
  93. }
  94. pY += frame->width;
  95. pOut += frame->width * bytes;
  96. }
  97. }
  98. /* Converts from planar YUV420 to YUV422 (YUYV). */
  99. static void
  100. yuv420p_to_yuv422(struct ov511_frame *frame,
  101.   unsigned char *pIn0, unsigned char *pOut0)
  102. {
  103. const int numpix = frame->width * frame->height;
  104. int i, j;
  105. unsigned char *pY = pIn0;
  106. unsigned char *pU = pY + numpix;
  107. unsigned char *pV = pU + numpix / 4;
  108. unsigned char *pOut = pOut0;
  109. for (i = 0; i < numpix; i++) {
  110. *pOut = *(pY + i);
  111. pOut += 2;
  112. }
  113. pOut = pOut0 + 1;
  114. for (j = 0; j <= frame->height - 2 ; j += 2) {
  115. for (i = 0; i <= frame->width - 2; i += 2) {
  116. int u = *pU++;
  117. int v = *pV++;
  118. *pOut = u;
  119. *(pOut+2) = v;
  120. *(pOut+frame->width*2) = u;
  121. *(pOut+frame->width*2+2) = v;
  122. pOut += 4;
  123. }
  124. pOut += (frame->width * 2);
  125. }
  126. }
  127. /* Converts pData from planar YUV420 to planar YUV422 **in place**. */
  128. static void
  129. yuv420p_to_yuv422p(struct ov511_frame *frame, unsigned char *pData)
  130. {
  131. const int numpix = frame->width * frame->height;
  132. const int w = frame->width;
  133. int j;
  134. unsigned char *pIn, *pOut;
  135. /* Clear U and V */
  136. memset(pData + numpix + numpix / 2, 127, numpix / 2);
  137. /* Convert V starting from beginning and working forward */
  138. pIn = pData + numpix + numpix / 4;
  139. pOut = pData + numpix +numpix / 2;
  140. for (j = 0; j <= frame->height - 2; j += 2) {
  141. memmove(pOut, pIn, w/2);
  142. memmove(pOut + w/2, pIn, w/2);
  143. pIn += w/2;
  144. pOut += w;
  145. }
  146. /* Convert U, starting from end and working backward */
  147. pIn = pData + numpix + numpix / 4;
  148. pOut = pData + numpix + numpix / 2;
  149. for (j = 0; j <= frame->height - 2; j += 2) {
  150. pIn -= w/2;
  151. pOut -= w;
  152. memmove(pOut, pIn, w/2);
  153. memmove(pOut + w/2, pIn, w/2);
  154. }
  155. }
  156. /* Fuses even and odd fields together, and doubles width.
  157.  * INPUT: an odd field followed by an even field at pIn0, in YUV planar format
  158.  * OUTPUT: a normal YUV planar image, with correct aspect ratio
  159.  */
  160. static void
  161. deinterlace(struct ov511_frame *frame, int rawformat,
  162.             unsigned char *pIn0, unsigned char *pOut0)
  163. {
  164. const int fieldheight = frame->rawheight / 2;
  165. const int fieldpix = fieldheight * frame->rawwidth;
  166. const int w = frame->width;
  167. int x, y;
  168. unsigned char *pInEven, *pInOdd, *pOut;
  169. PDEBUG(5, "fieldheight=%d", fieldheight);
  170. if (frame->rawheight != frame->height) {
  171. err("invalid height");
  172. return;
  173. }
  174. if ((frame->rawwidth * 2) != frame->width) {
  175. err("invalid width");
  176. return;
  177. }
  178. /* Y */
  179. pInOdd = pIn0;
  180. pInEven = pInOdd + fieldpix;
  181. pOut = pOut0;
  182. for (y = 0; y < fieldheight; y++) {
  183. for (x = 0; x < frame->rawwidth; x++) {
  184. *pOut = *pInEven;
  185. *(pOut+1) = *pInEven++;
  186. *(pOut+w) = *pInOdd;
  187. *(pOut+w+1) = *pInOdd++;
  188. pOut += 2;
  189. }
  190. pOut += w;
  191. }
  192. if (rawformat == RAWFMT_YUV420) {
  193. /* U */
  194. pInOdd = pIn0 + fieldpix * 2;
  195. pInEven = pInOdd + fieldpix / 4;
  196. for (y = 0; y < fieldheight / 2; y++) {
  197. for (x = 0; x < frame->rawwidth / 2; x++) {
  198. *pOut = *pInEven;
  199. *(pOut+1) = *pInEven++;
  200. *(pOut+w/2) = *pInOdd;
  201. *(pOut+w/2+1) = *pInOdd++;
  202. pOut += 2;
  203. }
  204. pOut += w/2;
  205. }
  206. /* V */
  207. pInOdd = pIn0 + fieldpix * 2 + fieldpix / 2;
  208. pInEven = pInOdd + fieldpix / 4;
  209. for (y = 0; y < fieldheight / 2; y++) {
  210. for (x = 0; x < frame->rawwidth / 2; x++) {
  211. *pOut = *pInEven;
  212. *(pOut+1) = *pInEven++;
  213. *(pOut+w/2) = *pInOdd;
  214. *(pOut+w/2+1) = *pInOdd++;
  215. pOut += 2;
  216. }
  217. pOut += w/2;
  218. }
  219. }
  220. }
  221. /* Post-processes the specified frame. This consists of:
  222.  *  1. Decompress frame, if necessary
  223.  * 2. Deinterlace frame and scale to proper size, if necessary
  224.  *  3. Convert from YUV planar to destination format, if necessary
  225.  *  4. Fix the RGB offset, if necessary
  226.  */
  227. static void 
  228. ov511_postprocess(struct usb_ov511 *ov511, struct ov511_frame *frame)
  229. {
  230. if (dumppix) {
  231. memset(frame->data, 0, 
  232. MAX_DATA_SIZE(ov511->maxwidth, ov511->maxheight));
  233. PDEBUG(4, "Dumping %d bytes", frame->bytes_recvd);
  234. memmove(frame->data, frame->rawdata, frame->bytes_recvd);
  235. return;
  236. }
  237. /* YUV400 must be handled separately */
  238. if (frame->format == VIDEO_PALETTE_GREY) {
  239. /* Deinterlace frame, if necessary */
  240. if (ov511->sensor == SEN_SAA7111A && frame->rawheight == 480) {
  241. if (frame->compressed)
  242. ov51x_decompress(ov511, frame, frame->rawdata,
  243.  frame->tempdata);
  244. else
  245. yuv400raw_to_yuv400p(frame, frame->rawdata,
  246.      frame->tempdata);
  247. deinterlace(frame, RAWFMT_YUV400, frame->tempdata,
  248.             frame->data);
  249. } else {
  250. if (frame->compressed)
  251. ov51x_decompress(ov511, frame, frame->rawdata,
  252.  frame->data);
  253. else
  254. yuv400raw_to_yuv400p(frame, frame->rawdata,
  255.      frame->data);
  256. }
  257. return;
  258. }
  259. /* Process frame->data to frame->rawdata */
  260. if (frame->compressed)
  261. ov51x_decompress(ov511, frame, frame->rawdata, frame->tempdata);
  262. else
  263. yuv420raw_to_yuv420p(frame, frame->rawdata, frame->tempdata);
  264. /* Deinterlace frame, if necessary */
  265. if (ov511->sensor == SEN_SAA7111A && frame->rawheight == 480) {
  266. memmove(frame->rawdata, frame->tempdata,
  267. MAX_RAW_DATA_SIZE(frame->width, frame->height));
  268. deinterlace(frame, RAWFMT_YUV420, frame->rawdata,
  269.             frame->tempdata);
  270. }
  271. /* Frame should be (width x height) and not (rawwidth x rawheight) at
  272.          * this point. */
  273. #if 0
  274. /* Clear output buffer for testing purposes */
  275. memset(frame->data, 0, MAX_DATA_SIZE(frame->width, frame->height));
  276. #endif
  277. /* Process frame->tempdata to frame->data */
  278. switch (frame->format) {
  279. case VIDEO_PALETTE_RGB565:
  280. yuv420p_to_rgb(frame, frame->tempdata, frame->data, 16);
  281. break;
  282. case VIDEO_PALETTE_RGB24:
  283. yuv420p_to_rgb(frame, frame->tempdata, frame->data, 24);
  284. break;
  285. case VIDEO_PALETTE_YUV422:
  286. case VIDEO_PALETTE_YUYV:
  287. yuv420p_to_yuv422(frame, frame->tempdata, frame->data);
  288. break;
  289. case VIDEO_PALETTE_YUV420:
  290. case VIDEO_PALETTE_YUV420P:
  291. memmove(frame->data, frame->tempdata,
  292. MAX_RAW_DATA_SIZE(frame->width, frame->height));
  293. break;
  294. case VIDEO_PALETTE_YUV422P:
  295. /* Data is converted in place, so copy it in advance */
  296. memmove(frame->data, frame->tempdata,
  297. MAX_RAW_DATA_SIZE(frame->width, frame->height));
  298. yuv420p_to_yuv422p(frame, frame->data);
  299. break;
  300. default:
  301. err("Cannot convert data to this format");
  302. }
  303. if (fix_rgb_offset)
  304. fixFrameRGBoffset(frame);
  305. }
  306. /**********************************************************************
  307.  *
  308.  * OV51x data transfer, IRQ handler
  309.  *
  310.  **********************************************************************/
  311. static int 
  312. ov511_move_data(struct usb_ov511 *ov511, urb_t *urb)
  313. {
  314. unsigned char *cdata;
  315. int data_size, num, offset, i, totlen = 0;
  316. int aPackNum[FRAMES_PER_DESC];
  317. struct ov511_frame *frame;
  318. struct timeval *ts;
  319. PDEBUG(5, "Moving %d packets", urb->number_of_packets);
  320. data_size = ov511->packet_size - 1;
  321. for (i = 0; i < urb->number_of_packets; i++) {
  322. int n = urb->iso_frame_desc[i].actual_length;
  323. int st = urb->iso_frame_desc[i].status;
  324. urb->iso_frame_desc[i].actual_length = 0;
  325. urb->iso_frame_desc[i].status = 0;
  326. cdata = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
  327. aPackNum[i] = n ? cdata[ov511->packet_size - 1] : -1;
  328. if (!n || ov511->curframe == -1)
  329. continue;
  330. if (st)
  331. PDEBUG(2, "data error: [%d] len=%d, status=%d", i, n, st);
  332. frame = &ov511->frame[ov511->curframe];
  333. /* SOF/EOF packets have 1st to 8th bytes zeroed and the 9th
  334.  * byte non-zero. The EOF packet has image width/height in the
  335.  * 10th and 11th bytes. The 9th byte is given as follows:
  336.  *
  337.  * bit 7: EOF
  338.  *     6: compression enabled
  339.  *     5: 422/420/400 modes
  340.  *     4: 422/420/400 modes
  341.  *     3: 1
  342.  *     2: snapshot button on
  343.  *     1: snapshot frame
  344.  *     0: even/odd field
  345.  */
  346. if (printph) {
  347. info("packet header (%3d): %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x",
  348. cdata[ov511->packet_size - 1],
  349. cdata[0], cdata[1], cdata[2], cdata[3], cdata[4], cdata[5],
  350. cdata[6], cdata[7], cdata[8], cdata[9], cdata[10], cdata[11]);
  351. }
  352. /* Check for SOF/EOF packet */
  353. if ((cdata[0] | cdata[1] | cdata[2] | cdata[3] |
  354.      cdata[4] | cdata[5] | cdata[6] | cdata[7]) ||
  355.      (~cdata[8] & 0x08))
  356. goto check_middle;
  357. /* Frame end */
  358. if (cdata[8] & 0x80) {
  359. ts = (struct timeval *)(frame->data 
  360.       + MAX_FRAME_SIZE(ov511->maxwidth, ov511->maxheight));
  361. do_gettimeofday(ts);
  362. /* Get the actual frame size from the EOF header */
  363. frame->rawwidth = ((int)(cdata[9]) + 1) * 8;
  364. frame->rawheight = ((int)(cdata[10]) + 1) * 8;
  365.   PDEBUG(4, "Frame end, curframe = %d, packnum=%d, hw=%d, vw=%d, recvd=%d",
  366. ov511->curframe,
  367. (int)(cdata[ov511->packet_size - 1]),
  368. frame->rawwidth,
  369. frame->rawheight,
  370. frame->bytes_recvd);
  371. /* Validate the header data */
  372. RESTRICT_TO_RANGE(frame->rawwidth, ov511->minwidth, ov511->maxwidth);
  373. RESTRICT_TO_RANGE(frame->rawheight, ov511->minheight, ov511->maxheight);
  374. /* Don't allow byte count to exceed buffer size */
  375. RESTRICT_TO_RANGE(frame->bytes_recvd,
  376.   8, 
  377.   MAX_RAW_DATA_SIZE(ov511->maxwidth,
  378.                     ov511->maxheight));
  379. if (frame->scanstate == STATE_LINES) {
  380.      int iFrameNext;
  381. frame->grabstate = FRAME_DONE; // FIXME: Is this right?
  382. if (waitqueue_active(&frame->wq)) {
  383. frame->grabstate = FRAME_DONE;
  384. wake_up_interruptible(&frame->wq);
  385. }
  386. /* If next frame is ready or grabbing,
  387.                                  * point to it */
  388. iFrameNext = (ov511->curframe + 1) % OV511_NUMFRAMES;
  389. if (ov511->frame[iFrameNext].grabstate == FRAME_READY
  390.     || ov511->frame[iFrameNext].grabstate == FRAME_GRABBING) {
  391. ov511->curframe = iFrameNext;
  392. ov511->frame[iFrameNext].scanstate = STATE_SCANNING;
  393. } else {
  394. if (frame->grabstate == FRAME_DONE) {
  395. PDEBUG(4, "Frame done! congratulations");
  396. } else {
  397. PDEBUG(4, "Frame not ready? state = %d",
  398. ov511->frame[iFrameNext].grabstate);
  399. }
  400. ov511->curframe = -1;
  401. }
  402. } else {
  403. PDEBUG(5, "Frame done, but not scanning");
  404. }
  405. /* Image corruption caused by misplaced frame->segment = 0
  406.  * fixed by carlosf@conectiva.com.br
  407.  */
  408. } else {
  409. /* Frame start */
  410. PDEBUG(4, "Frame start, framenum = %d", ov511->curframe);
  411. /* Check to see if it's a snapshot frame */
  412. /* FIXME?? Should the snapshot reset go here? Performance? */
  413. if (cdata[8] & 0x02) {
  414. frame->snapshot = 1;
  415. PDEBUG(3, "snapshot detected");
  416. }
  417. frame->scanstate = STATE_LINES;
  418. frame->bytes_recvd = 0;
  419. frame->compressed = cdata[8] & 0x40;
  420. }
  421. check_middle:
  422. /* Are we in a frame? */
  423. if (frame->scanstate != STATE_LINES) {
  424. PDEBUG(5, "Not in a frame; packet skipped");
  425. continue;
  426. }
  427. #if 0
  428. /* Skip packet if first 9 bytes are zero. These are common, so
  429.  * we use a less expensive test here instead of later */
  430. if (frame->compressed) {
  431. int b, skip = 1;
  432. for (b = 0; b < 9; b++) { 
  433. if (cdata[b])
  434. skip=0;
  435. }
  436. if (skip) {
  437. PDEBUG(5, "Skipping packet (all zero)");
  438. continue;
  439. }
  440. }
  441. #endif
  442. /* If frame start, skip header */
  443. if (frame->bytes_recvd == 0)
  444. offset = 9;
  445. else
  446. offset = 0;
  447. num = n - offset - 1;
  448. /* Dump all data exactly as received */
  449. if (dumppix == 2) {
  450. frame->bytes_recvd += n - 1;
  451. if (frame->bytes_recvd <= MAX_RAW_DATA_SIZE(ov511->maxwidth, ov511->maxheight))
  452. memmove(frame->rawdata + frame->bytes_recvd - (n - 1),
  453. &cdata[0], n - 1);
  454. else
  455. PDEBUG(3, "Raw data buffer overrun!! (%d)",
  456. frame->bytes_recvd
  457. - MAX_RAW_DATA_SIZE(ov511->maxwidth,
  458.     ov511->maxheight));
  459. } else if (!frame->compressed && !remove_zeros) {
  460. frame->bytes_recvd += num;
  461. if (frame->bytes_recvd <= MAX_RAW_DATA_SIZE(ov511->maxwidth, ov511->maxheight))
  462. memmove(frame->rawdata + frame->bytes_recvd - num,
  463. &cdata[offset], num);
  464. else
  465. PDEBUG(3, "Raw data buffer overrun!! (%d)",
  466. frame->bytes_recvd
  467. - MAX_RAW_DATA_SIZE(ov511->maxwidth,
  468.     ov511->maxheight));
  469. } else { /* Remove all-zero FIFO lines (aligned 32-byte blocks) */
  470. int b, in = 0, allzero, copied=0;
  471. if (offset) {
  472. frame->bytes_recvd += 32 - offset; // Bytes out
  473. memmove(frame->rawdata,
  474. &cdata[offset], 32 - offset);
  475. in += 32;
  476. }
  477. while (in < n - 1) {
  478. allzero = 1;
  479. for (b = 0; b < 32; b++) {
  480. if (cdata[in + b]) {
  481. allzero = 0;
  482. break;
  483. }
  484. }
  485. if (allzero) {
  486. /* Don't copy it */
  487. } else {
  488. if (frame->bytes_recvd + copied + 32
  489.     <= MAX_RAW_DATA_SIZE(ov511->maxwidth, ov511->maxheight)) {
  490. memmove(frame->rawdata + frame->bytes_recvd + copied,
  491. &cdata[in], 32);
  492. copied += 32;
  493. } else {
  494. PDEBUG(3, "Raw data buffer overrun!!");
  495. }
  496. }
  497. in += 32;
  498. }
  499. frame->bytes_recvd += copied;
  500. }
  501. }
  502. PDEBUG(5, "pn: %d %d %d %d %d %d %d %d %d %d",
  503. aPackNum[0], aPackNum[1], aPackNum[2], aPackNum[3], aPackNum[4],
  504. aPackNum[5],aPackNum[6], aPackNum[7], aPackNum[8], aPackNum[9]);
  505. return totlen;
  506. }
  507. static int 
  508. ov518_move_data(struct usb_ov511 *ov511, urb_t *urb)
  509. {
  510. unsigned char *cdata;
  511. int i, data_size, totlen = 0;
  512. struct ov511_frame *frame;
  513. struct timeval *ts;
  514. PDEBUG(5, "Moving %d packets", urb->number_of_packets);
  515. /* OV518(+) has no packet numbering */
  516. data_size = ov511->packet_size;
  517. for (i = 0; i < urb->number_of_packets; i++) {
  518. int n = urb->iso_frame_desc[i].actual_length;
  519. int st = urb->iso_frame_desc[i].status;
  520. urb->iso_frame_desc[i].actual_length = 0;
  521. urb->iso_frame_desc[i].status = 0;
  522. cdata = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
  523. if (!n) {
  524. PDEBUG(4, "Zero-length packet");
  525. continue;
  526. }
  527. if (ov511->curframe == -1) {
  528. PDEBUG(4, "No frame currently active");
  529. continue;
  530. }
  531. if (st)
  532. PDEBUG(2, "data error: [%d] len=%d, status=%d", i, n, st);
  533. frame = &ov511->frame[ov511->curframe];
  534. #if 0
  535. {
  536. int d;
  537. /* Print all data */
  538. for (d = 0; d <= data_size - 16; d += 16) {
  539. info("%4x: %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x", d,
  540. cdata[d], cdata[d+1], cdata[d+2], cdata[d+3],
  541. cdata[d+4], cdata[d+5], cdata[d+6], cdata[d+7],
  542. cdata[d+8], cdata[d+9], cdata[d+10], cdata[d+11],
  543. cdata[d+12], cdata[d+13], cdata[d+14], cdata[d+15]);
  544. }
  545. }
  546. #endif
  547. if (printph) {
  548. info("packet header: %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x %2x",
  549. cdata[0], cdata[1], cdata[2], cdata[3], cdata[4], cdata[5],
  550. cdata[6], cdata[7], cdata[8], cdata[9], cdata[10], cdata[11]);
  551. }
  552. /* A false positive here is likely, until OVT gives me
  553.  * the definitive SOF/EOF format */
  554. if ((!(cdata[0] | cdata[1] | cdata[2] | cdata[3] |
  555.       cdata[5])) && cdata[6]) {
  556. if (frame->scanstate == STATE_LINES) {
  557. PDEBUG(4, "Detected frame end/start");
  558. goto eof;
  559. } else { //scanstate == STATE_SCANNING
  560. /* Frame start */
  561. PDEBUG(4, "Frame start, framenum = %d", ov511->curframe);
  562. goto sof;
  563. }
  564. } else {
  565. goto check_middle;
  566. }
  567. eof:
  568. ts = (struct timeval *)(frame->data
  569.       + MAX_FRAME_SIZE(ov511->maxwidth, ov511->maxheight));
  570. do_gettimeofday(ts);
  571.   PDEBUG(4, "Frame end, curframe = %d, hw=%d, vw=%d, recvd=%d",
  572. ov511->curframe,
  573. (int)(cdata[9]), (int)(cdata[10]), frame->bytes_recvd);
  574. // FIXME: Since we don't know the header formats yet,
  575. // there is no way to know what the actual image size is
  576. frame->rawwidth = frame->width;
  577. frame->rawheight = frame->height;
  578. /* Validate the header data */
  579. RESTRICT_TO_RANGE(frame->rawwidth, ov511->minwidth, ov511->maxwidth);
  580. RESTRICT_TO_RANGE(frame->rawheight, ov511->minheight, ov511->maxheight);
  581. /* Don't allow byte count to exceed buffer size */
  582. RESTRICT_TO_RANGE(frame->bytes_recvd,
  583.   8, 
  584.   MAX_RAW_DATA_SIZE(ov511->maxwidth, ov511->maxheight));
  585. if (frame->scanstate == STATE_LINES) {
  586.      int iFrameNext;
  587. frame->grabstate = FRAME_DONE; // FIXME: Is this right?
  588. if (waitqueue_active(&frame->wq)) {
  589. frame->grabstate = FRAME_DONE;
  590. wake_up_interruptible(&frame->wq);
  591. }
  592. /* If next frame is ready or grabbing,
  593.  * point to it */
  594. iFrameNext = (ov511->curframe + 1) % OV511_NUMFRAMES;
  595. if (ov511->frame[iFrameNext].grabstate == FRAME_READY
  596.     || ov511->frame[iFrameNext].grabstate == FRAME_GRABBING) {
  597. ov511->curframe = iFrameNext;
  598. ov511->frame[iFrameNext].scanstate = STATE_SCANNING;
  599. frame = &ov511->frame[iFrameNext];
  600. } else {
  601. if (frame->grabstate == FRAME_DONE) {
  602. PDEBUG(4, "Frame done! congratulations");
  603. } else {
  604. PDEBUG(4, "Frame not ready? state = %d",
  605. ov511->frame[iFrameNext].grabstate);
  606. }
  607. ov511->curframe = -1;
  608. PDEBUG(4, "SOF dropped (no active frame)");
  609. continue;  /* Nowhere to store this frame */
  610. }
  611. }
  612. /* Image corruption caused by misplaced frame->segment = 0
  613.  * fixed by carlosf@conectiva.com.br
  614.  */
  615. sof:
  616. PDEBUG(4, "Starting capture on frame %d", frame->framenum);
  617. // Snapshot not reverse-engineered yet.
  618. #if 0
  619. /* Check to see if it's a snapshot frame */
  620. /* FIXME?? Should the snapshot reset go here? Performance? */
  621. if (cdata[8] & 0x02) {
  622. frame->snapshot = 1;
  623. PDEBUG(3, "snapshot detected");
  624. }
  625. #endif
  626. frame->scanstate = STATE_LINES;
  627. frame->bytes_recvd = 0;
  628. // frame->compressed = 1;
  629. check_middle:
  630. /* Are we in a frame? */
  631. if (frame->scanstate != STATE_LINES) {
  632. PDEBUG(4, "scanstate: no SOF yet");
  633. continue;
  634. }
  635. /* Dump all data exactly as received */
  636. if (dumppix == 2) {
  637. frame->bytes_recvd += n;
  638. if (frame->bytes_recvd <= MAX_RAW_DATA_SIZE(ov511->maxwidth, ov511->maxheight))
  639. memmove(frame->rawdata + frame->bytes_recvd - n,
  640. &cdata[0], n);
  641. else
  642. PDEBUG(3, "Raw data buffer overrun!! (%d)",
  643. frame->bytes_recvd
  644. - MAX_RAW_DATA_SIZE(ov511->maxwidth,
  645.     ov511->maxheight));
  646. } else {
  647. /* All incoming data are divided into 8-byte segments. If the
  648.  * segment contains all zero bytes, it must be skipped. These
  649.  * zero-segments allow the OV518 to mainain a constant data rate
  650.  * regardless of the effectiveness of the compression. Segments
  651.  * are aligned relative to the beginning of each isochronous
  652.  * packet. The first segment is a header.
  653.  */
  654. int b, in = 0, allzero, copied=0;
  655. // Decompressor expects the header
  656. #if 0
  657. if (frame->bytes_recvd == 0)
  658. in += 8;  /* Skip header */
  659. #endif
  660. while (in < n) {
  661. allzero = 1;
  662. for (b = 0; b < 8; b++) {
  663. if (cdata[in + b]) {
  664. allzero = 0;
  665. break;
  666. }
  667. }
  668. if (allzero) {
  669. /* Don't copy it */
  670. } else {
  671. if (frame->bytes_recvd + copied + 8
  672.     <= MAX_RAW_DATA_SIZE(ov511->maxwidth, ov511->maxheight)) {
  673. memmove(frame->rawdata + frame->bytes_recvd + copied,
  674. &cdata[in], 8);
  675. copied += 8;
  676. } else {
  677. PDEBUG(3, "Raw data buffer overrun!!");
  678. }
  679. }
  680. in += 8;
  681. }
  682. frame->bytes_recvd += copied;
  683. }
  684. }
  685. return totlen;
  686. }
  687. static void 
  688. ov511_isoc_irq(struct urb *urb)
  689. {
  690. int len;
  691. struct usb_ov511 *ov511;
  692. if (!urb->context) {
  693. PDEBUG(4, "no context");
  694. return;
  695. }
  696. ov511 = (struct usb_ov511 *) urb->context;
  697. if (!ov511->dev || !ov511->user) {
  698. PDEBUG(4, "no device, or not open");
  699. return;
  700. }
  701. if (!ov511->streaming) {
  702. PDEBUG(4, "hmmm... not streaming, but got interrupt");
  703. return;
  704. }
  705. /* Copy the data received into our frame buffer */
  706. if (ov511->curframe >= 0) {
  707. if (ov511->bridge == BRG_OV511 || 
  708.     ov511->bridge == BRG_OV511PLUS)
  709. len = ov511_move_data(ov511, urb);
  710. else if (ov511->bridge == BRG_OV518 ||
  711.  ov511->bridge == BRG_OV518PLUS)
  712. len = ov518_move_data(ov511, urb);
  713. else
  714. err("Unknown bridge device (%d)", ov511->bridge);
  715. } else if (waitqueue_active(&ov511->wq)) {
  716. wake_up_interruptible(&ov511->wq);
  717. }
  718. urb->dev = ov511->dev;
  719. return;
  720. }
  721. /****************************************************************************
  722.  *
  723.  * Stream initialization and termination
  724.  *
  725.  ***************************************************************************/
  726. static int 
  727. ov511_init_isoc(struct usb_ov511 *ov511)
  728. {
  729. urb_t *urb;
  730. int fx, err, n, size;
  731. PDEBUG(3, "*** Initializing capture ***");
  732. ov511->curframe = -1;
  733. if (ov511->bridge == BRG_OV511) {
  734. if (cams == 1) size = 993;
  735. else if (cams == 2) size = 513;
  736. else if (cams == 3 || cams == 4) size = 257;
  737. else {
  738. err(""cams" parameter too high!");
  739. return -1;
  740. }
  741. } else if (ov511->bridge == BRG_OV511PLUS) {
  742. if (cams == 1) size = 961;
  743. else if (cams == 2) size = 513;
  744. else if (cams == 3 || cams == 4) size = 257;
  745. else if (cams >= 5 && cams <= 8) size = 129;
  746. else if (cams >= 9 && cams <= 31) size = 33;
  747. else {
  748. err(""cams" parameter too high!");
  749. return -1;
  750. }
  751. } else if (ov511->bridge == BRG_OV518 ||
  752.    ov511->bridge == BRG_OV518PLUS) {
  753. if (cams == 1) size = 896;
  754. else if (cams == 2) size = 512;
  755. else if (cams == 3 || cams == 4) size = 256;
  756. else if (cams >= 5 && cams <= 8) size = 128;
  757. else {
  758. err(""cams" parameter too high!");
  759. return -1;
  760. }
  761. } else {
  762. err("invalid bridge type");
  763. return -1;
  764. }
  765. if (packetsize == -1) {
  766. // FIXME: OV518 is hardcoded to 15 FPS (alternate 5) for now
  767. if (ov511->bridge == BRG_OV518 ||
  768.     ov511->bridge == BRG_OV518PLUS)
  769. ov511_set_packet_size(ov511, 640);
  770. else
  771. ov511_set_packet_size(ov511, size);
  772. } else {
  773. info("Forcing packet size to %d", packetsize);
  774. ov511_set_packet_size(ov511, packetsize);
  775. }
  776. for (n = 0; n < OV511_NUMSBUF; n++) {
  777. urb = usb_alloc_urb(FRAMES_PER_DESC);
  778. if (!urb) {
  779. err("init isoc: usb_alloc_urb ret. NULL");
  780. return -ENOMEM;
  781. }
  782. ov511->sbuf[n].urb = urb;
  783. urb->dev = ov511->dev;
  784. urb->context = ov511;
  785. urb->pipe = usb_rcvisocpipe(ov511->dev, OV511_ENDPOINT_ADDRESS);
  786. urb->transfer_flags = USB_ISO_ASAP;
  787. urb->transfer_buffer = ov511->sbuf[n].data;
  788. urb->complete = ov511_isoc_irq;
  789. urb->number_of_packets = FRAMES_PER_DESC;
  790. urb->transfer_buffer_length =
  791.  ov511->packet_size * FRAMES_PER_DESC;
  792. for (fx = 0; fx < FRAMES_PER_DESC; fx++) {
  793. urb->iso_frame_desc[fx].offset = 
  794.  ov511->packet_size * fx;
  795. urb->iso_frame_desc[fx].length = ov511->packet_size;
  796. }
  797. }
  798. ov511->streaming = 1;
  799. ov511->sbuf[OV511_NUMSBUF - 1].urb->next = ov511->sbuf[0].urb;
  800. for (n = 0; n < OV511_NUMSBUF - 1; n++)
  801. ov511->sbuf[n].urb->next = ov511->sbuf[n+1].urb;
  802. for (n = 0; n < OV511_NUMSBUF; n++) {
  803. ov511->sbuf[n].urb->dev = ov511->dev;
  804. err = usb_submit_urb(ov511->sbuf[n].urb);
  805. if (err)
  806. err("init isoc: usb_submit_urb(%d) ret %d", n, err);
  807. }
  808. return 0;
  809. }
  810. static void 
  811. ov511_stop_isoc(struct usb_ov511 *ov511)
  812. {
  813. int n;
  814. if (!ov511->streaming || !ov511->dev)
  815. return;
  816. PDEBUG(3, "*** Stopping capture ***");
  817. ov511_set_packet_size(ov511, 0);
  818. ov511->streaming = 0;
  819. /* Unschedule all of the iso td's */
  820. for (n = OV511_NUMSBUF - 1; n >= 0; n--) {
  821. if (ov511->sbuf[n].urb) {
  822. ov511->sbuf[n].urb->next = NULL;
  823. usb_unlink_urb(ov511->sbuf[n].urb);
  824. usb_free_urb(ov511->sbuf[n].urb);
  825. ov511->sbuf[n].urb = NULL;
  826. }
  827. }
  828. }
  829. static int 
  830. ov511_new_frame(struct usb_ov511 *ov511, int framenum)
  831. {
  832. struct ov511_frame *frame;
  833. int newnum;
  834. PDEBUG(4, "ov511->curframe = %d, framenum = %d", ov511->curframe,
  835. framenum);
  836. if (!ov511->dev)
  837. return -1;
  838. /* If we're not grabbing a frame right now and the other frame is */
  839. /* ready to be grabbed into, then use it instead */
  840. if (ov511->curframe == -1) {
  841. newnum = (framenum - 1 + OV511_NUMFRAMES) % OV511_NUMFRAMES;
  842. if (ov511->frame[newnum].grabstate == FRAME_READY)
  843. framenum = newnum;
  844. } else
  845. return 0;
  846. frame = &ov511->frame[framenum];
  847. PDEBUG(4, "framenum = %d, width = %d, height = %d", framenum, 
  848.        frame->width, frame->height);
  849. frame->grabstate = FRAME_GRABBING;
  850. frame->scanstate = STATE_SCANNING;
  851. frame->snapshot = 0;
  852. ov511->curframe = framenum;
  853. /* Make sure it's not too big */
  854. if (frame->width > ov511->maxwidth)
  855. frame->width = ov511->maxwidth;
  856. frame->width &= ~7L; /* Multiple of 8 */
  857. if (frame->height > ov511->maxheight)
  858. frame->height = ov511->maxheight;
  859. frame->height &= ~3L; /* Multiple of 4 */
  860. return 0;
  861. }
  862. /****************************************************************************
  863.  *
  864.  * Buffer management
  865.  *
  866.  ***************************************************************************/
  867. static int 
  868. ov511_alloc(struct usb_ov511 *ov511)
  869. {
  870. int i;
  871. int w = ov511->maxwidth;
  872. int h = ov511->maxheight;
  873. PDEBUG(4, "entered");
  874. down(&ov511->buf_lock);
  875. if (ov511->buf_state == BUF_PEND_DEALLOC) {
  876. ov511->buf_state = BUF_ALLOCATED;
  877. del_timer(&ov511->buf_timer);
  878. }
  879. if (ov511->buf_state == BUF_ALLOCATED)
  880. goto out;
  881. ov511->fbuf = rvmalloc(OV511_NUMFRAMES * MAX_DATA_SIZE(w, h));
  882. if (!ov511->fbuf)
  883. goto error;
  884. ov511->rawfbuf = vmalloc(OV511_NUMFRAMES * MAX_RAW_DATA_SIZE(w, h));
  885. if (!ov511->rawfbuf) {
  886. rvfree(ov511->fbuf, OV511_NUMFRAMES * MAX_DATA_SIZE(w, h));
  887. ov511->fbuf = NULL;
  888. goto error;
  889. }
  890. memset(ov511->rawfbuf, 0, OV511_NUMFRAMES * MAX_RAW_DATA_SIZE(w, h));
  891. ov511->tempfbuf = vmalloc(OV511_NUMFRAMES * MAX_RAW_DATA_SIZE(w, h));
  892. if (!ov511->tempfbuf) {
  893. vfree(ov511->rawfbuf);
  894. ov511->rawfbuf = NULL;
  895. rvfree(ov511->fbuf, OV511_NUMFRAMES * MAX_DATA_SIZE(w, h));
  896. ov511->fbuf = NULL;
  897. goto error;
  898. }
  899. memset(ov511->tempfbuf, 0, OV511_NUMFRAMES * MAX_RAW_DATA_SIZE(w, h));
  900. for (i = 0; i < OV511_NUMSBUF; i++) {
  901. ov511->sbuf[i].data = kmalloc(FRAMES_PER_DESC *
  902. MAX_FRAME_SIZE_PER_DESC, GFP_KERNEL);
  903. if (!ov511->sbuf[i].data) {
  904. while (--i) {
  905. kfree(ov511->sbuf[i].data);
  906. ov511->sbuf[i].data = NULL;
  907. }
  908. vfree(ov511->tempfbuf);
  909. ov511->tempfbuf = NULL;
  910. vfree(ov511->rawfbuf);
  911. ov511->rawfbuf = NULL;
  912. rvfree(ov511->fbuf,
  913.        OV511_NUMFRAMES * MAX_DATA_SIZE(w, h));
  914. ov511->fbuf = NULL;
  915. goto error;
  916. }
  917. PDEBUG(4, "sbuf[%d] @ %p", i, ov511->sbuf[i].data);
  918. }
  919. for (i = 0; i < OV511_NUMFRAMES; i++) {
  920. ov511->frame[i].data = ov511->fbuf + i * MAX_DATA_SIZE(w, h);
  921. ov511->frame[i].rawdata = ov511->rawfbuf 
  922.  + i * MAX_RAW_DATA_SIZE(w, h);
  923. ov511->frame[i].tempdata = ov511->tempfbuf 
  924.  + i * MAX_RAW_DATA_SIZE(w, h);
  925. PDEBUG(4, "frame[%d] @ %p", i, ov511->frame[i].data);
  926. }
  927. ov511->buf_state = BUF_ALLOCATED;
  928. out:
  929. up(&ov511->buf_lock);
  930. PDEBUG(4, "leaving");
  931. return 0;
  932. error:
  933. ov511->buf_state = BUF_NOT_ALLOCATED;
  934. up(&ov511->buf_lock);
  935. PDEBUG(4, "errored");
  936. return -ENOMEM;
  937. }
  938. /* 
  939.  * - You must acquire buf_lock before entering this function.
  940.  * - Because this code will free any non-null pointer, you must be sure to null
  941.  *   them if you explicitly free them somewhere else!
  942.  */
  943. static void 
  944. ov511_do_dealloc(struct usb_ov511 *ov511)
  945. {
  946. int i;
  947. PDEBUG(4, "entered");
  948. if (ov511->fbuf) {
  949. rvfree(ov511->fbuf, OV511_NUMFRAMES
  950.        * MAX_DATA_SIZE(ov511->maxwidth, ov511->maxheight));
  951. ov511->fbuf = NULL;
  952. }
  953. if (ov511->rawfbuf) {
  954. vfree(ov511->rawfbuf);
  955. ov511->rawfbuf = NULL;
  956. }
  957. if (ov511->tempfbuf) {
  958. vfree(ov511->tempfbuf);
  959. ov511->tempfbuf = NULL;
  960. }
  961. for (i = 0; i < OV511_NUMSBUF; i++) {
  962. if (ov511->sbuf[i].data) {
  963. kfree(ov511->sbuf[i].data);
  964. ov511->sbuf[i].data = NULL;
  965. }
  966. }
  967. for (i = 0; i < OV511_NUMFRAMES; i++) {
  968. ov511->frame[i].data = NULL;
  969. ov511->frame[i].rawdata = NULL;
  970. ov511->frame[i].tempdata = NULL;
  971. }
  972. PDEBUG(4, "buffer memory deallocated");
  973. ov511->buf_state = BUF_NOT_ALLOCATED;
  974. PDEBUG(4, "leaving");
  975. }
  976. static void 
  977. ov511_buf_callback(unsigned long data)
  978. {
  979. struct usb_ov511 *ov511 = (struct usb_ov511 *)data;
  980. PDEBUG(4, "entered");
  981. down(&ov511->buf_lock);
  982. if (ov511->buf_state == BUF_PEND_DEALLOC)
  983. ov511_do_dealloc(ov511);
  984. up(&ov511->buf_lock);
  985. PDEBUG(4, "leaving");
  986. }
  987. static void 
  988. ov511_dealloc(struct usb_ov511 *ov511, int now)
  989. {
  990. struct timer_list *bt = &(ov511->buf_timer);
  991. PDEBUG(4, "entered");
  992. down(&ov511->buf_lock);
  993. PDEBUG(4, "deallocating buffer memory %s", now ? "now" : "later");
  994. if (ov511->buf_state == BUF_PEND_DEALLOC) {
  995. ov511->buf_state = BUF_ALLOCATED;
  996. del_timer(bt);
  997. }
  998. if (now)
  999. ov511_do_dealloc(ov511);
  1000. else {
  1001. ov511->buf_state = BUF_PEND_DEALLOC;
  1002. init_timer(bt);
  1003. bt->function = ov511_buf_callback;
  1004. bt->data = (unsigned long)ov511;
  1005. bt->expires = jiffies + buf_timeout * HZ;
  1006. add_timer(bt);
  1007. }
  1008. up(&ov511->buf_lock);
  1009. PDEBUG(4, "leaving");
  1010. }
  1011. /****************************************************************************
  1012.  *
  1013.  * V4L API
  1014.  *
  1015.  ***************************************************************************/
  1016. static int 
  1017. ov511_open(struct video_device *vdev, int flags)
  1018. {
  1019. struct usb_ov511 *ov511 = vdev->priv;
  1020. int err, i;
  1021. PDEBUG(4, "opening");
  1022. down(&ov511->lock);
  1023. err = -EBUSY;
  1024. if (ov511->user) 
  1025. goto out;
  1026. err = -ENOMEM;
  1027. if (ov511_alloc(ov511))
  1028. goto out;
  1029. ov511->sub_flag = 0;
  1030. /* In case app doesn't set them... */
  1031. if (ov51x_set_default_params(ov511) < 0)
  1032. goto out;
  1033. /* Make sure frames are reset */
  1034. for (i = 0; i < OV511_NUMFRAMES; i++) {
  1035. ov511->frame[i].grabstate = FRAME_UNUSED;
  1036. ov511->frame[i].bytes_read = 0;
  1037. }
  1038. /* If compression is on, make sure now that a 
  1039.  * decompressor can be loaded */
  1040. if (ov511->compress && !ov511->decomp_ops) {
  1041. err = ov51x_request_decompressor(ov511);
  1042. if (err)
  1043. goto out;
  1044. }
  1045. err = ov511_init_isoc(ov511);
  1046. if (err) {
  1047. ov511_dealloc(ov511, 0);
  1048. goto out;
  1049. }
  1050. ov511->user++;
  1051. if (ov511->led_policy == LED_AUTO)
  1052. ov51x_led_control(ov511, 1);
  1053. out:
  1054. up(&ov511->lock);
  1055. return err;
  1056. }
  1057. static void 
  1058. ov511_close(struct video_device *dev)
  1059. {
  1060. struct usb_ov511 *ov511 = (struct usb_ov511 *)dev;
  1061. PDEBUG(4, "ov511_close");
  1062. down(&ov511->lock);
  1063. ov511->user--;
  1064. ov511_stop_isoc(ov511);
  1065. ov51x_release_decompressor(ov511);
  1066. if (ov511->led_policy == LED_AUTO)
  1067. ov51x_led_control(ov511, 0);
  1068. if (ov511->dev)
  1069. ov511_dealloc(ov511, 0);
  1070. up(&ov511->lock);
  1071. /* Device unplugged while open. Only a minimum of unregistration is done
  1072.  * here; the disconnect callback already did the rest. */
  1073. if (!ov511->dev) {
  1074. ov511_dealloc(ov511, 1);
  1075. video_unregister_device(&ov511->vdev);
  1076. kfree(ov511);
  1077. ov511 = NULL;
  1078. }
  1079. }
  1080. static int 
  1081. ov511_init_done(struct video_device *vdev)
  1082. {
  1083. #if defined(CONFIG_PROC_FS) && defined(CONFIG_VIDEO_PROC_FS)
  1084. create_proc_ov511_cam((struct usb_ov511 *)vdev);
  1085. #endif
  1086. return 0;
  1087. }
  1088. static long 
  1089. ov511_write(struct video_device *vdev, const char *buf,
  1090.     unsigned long count, int noblock)
  1091. {
  1092. return -EINVAL;
  1093. }
  1094. /* Do not call this function directly! */
  1095. static int 
  1096. ov511_ioctl_internal(struct video_device *vdev, unsigned int cmd, void *arg)
  1097. {
  1098. struct usb_ov511 *ov511 = (struct usb_ov511 *)vdev;
  1099. PDEBUG(5, "IOCtl: 0x%X", cmd);
  1100. if (!ov511->dev)
  1101. return -EIO;
  1102. switch (cmd) {
  1103. case VIDIOCGCAP:
  1104. {
  1105. struct video_capability b;
  1106. PDEBUG(4, "VIDIOCGCAP");
  1107. memset(&b, 0, sizeof(b));
  1108. sprintf(b.name, "%s USB Camera",
  1109. ov511->bridge == BRG_OV511 ? "OV511" :
  1110. ov511->bridge == BRG_OV511PLUS ? "OV511+" :
  1111. ov511->bridge == BRG_OV518 ? "OV518" :
  1112. ov511->bridge == BRG_OV518PLUS ? "OV518+" :
  1113. "unknown");
  1114. b.type = VID_TYPE_CAPTURE | VID_TYPE_SUBCAPTURE;
  1115. if (ov511->has_tuner)
  1116. b.type |= VID_TYPE_TUNER;
  1117. b.channels = ov511->num_inputs;
  1118. b.audios = ov511->has_audio_proc ? 1:0;
  1119. b.maxwidth = ov511->maxwidth;
  1120. b.maxheight = ov511->maxheight;
  1121. b.minwidth = ov511->minwidth;
  1122. b.minheight = ov511->minheight;
  1123. if (copy_to_user(arg, &b, sizeof(b)))
  1124. return -EFAULT;
  1125. return 0;
  1126. }
  1127. case VIDIOCGCHAN:
  1128. {
  1129. struct video_channel v;
  1130. PDEBUG(4, "VIDIOCGCHAN");
  1131. if (copy_from_user(&v, arg, sizeof(v)))
  1132. return -EFAULT;
  1133. if ((unsigned)(v.channel) >= ov511->num_inputs) {
  1134. err("Invalid channel (%d)", v.channel);
  1135. return -EINVAL;
  1136. }
  1137. v.norm = ov511->norm;
  1138. v.type = (ov511->has_tuner) ? VIDEO_TYPE_TV : VIDEO_TYPE_CAMERA;
  1139. v.flags = (ov511->has_tuner) ? VIDEO_VC_TUNER : 0;
  1140. v.flags |= (ov511->has_audio_proc) ? VIDEO_VC_AUDIO : 0;
  1141. // v.flags |= (ov511->has_decoder) ? VIDEO_VC_NORM : 0;
  1142. v.tuners = (ov511->has_tuner) ? 1:0;
  1143. decoder_get_input_name(ov511, v.channel, v.name);
  1144. if (copy_to_user(arg, &v, sizeof(v)))
  1145. return -EFAULT;
  1146. return 0;
  1147. }
  1148. case VIDIOCSCHAN:
  1149. {
  1150. struct video_channel v;
  1151. int err;
  1152. PDEBUG(4, "VIDIOCSCHAN");
  1153. if (copy_from_user(&v, arg, sizeof(v)))
  1154. return -EFAULT;
  1155. /* Make sure it's not a camera */
  1156. if (!ov511->has_decoder) {
  1157. if (v.channel == 0)
  1158. return 0;
  1159. else
  1160. return -EINVAL;
  1161. }
  1162. if (v.norm != VIDEO_MODE_PAL &&
  1163.     v.norm != VIDEO_MODE_NTSC &&
  1164.     v.norm != VIDEO_MODE_SECAM &&
  1165.     v.norm != VIDEO_MODE_AUTO) {
  1166. err("Invalid norm (%d)", v.norm);
  1167. return -EINVAL;
  1168. }
  1169. if ((unsigned)(v.channel) >= ov511->num_inputs) {
  1170. err("Invalid channel (%d)", v.channel);
  1171. return -EINVAL;
  1172. }
  1173. err = decoder_set_input(ov511, v.channel);
  1174. if (err)
  1175. return err;
  1176. err = decoder_set_norm(ov511, v.norm);
  1177. if (err)
  1178. return err;
  1179. return 0;
  1180. }
  1181. case VIDIOCGPICT:
  1182. {
  1183. struct video_picture p;
  1184. PDEBUG(4, "VIDIOCGPICT");
  1185. memset(&p, 0, sizeof(p));
  1186. if (sensor_get_picture(ov511, &p))
  1187. return -EIO;
  1188. if (copy_to_user(arg, &p, sizeof(p)))
  1189. return -EFAULT;
  1190. return 0;
  1191. }
  1192. case VIDIOCSPICT:
  1193. {
  1194. struct video_picture p;
  1195. int i;
  1196. PDEBUG(4, "VIDIOCSPICT");
  1197. if (copy_from_user(&p, arg, sizeof(p)))
  1198. return -EFAULT;
  1199. if (!ov511_get_depth(p.palette))
  1200. return -EINVAL;
  1201. if (sensor_set_picture(ov511, &p))
  1202. return -EIO;
  1203. if (force_palette && p.palette != force_palette) {
  1204. info("Palette rejected (%d)", p.palette);
  1205. return -EINVAL;
  1206. }
  1207. // FIXME: Format should be independent of frames
  1208. if (p.palette != ov511->frame[0].format) {
  1209. PDEBUG(4, "Detected format change");
  1210. /* If we're collecting previous frame wait
  1211.    before changing modes */
  1212. interruptible_sleep_on(&ov511->wq);
  1213. if (signal_pending(current)) return -EINTR;
  1214. mode_init_regs(ov511, ov511->frame[0].width,
  1215. ov511->frame[0].height, p.palette,
  1216. ov511->sub_flag);
  1217. }
  1218. PDEBUG(4, "Setting depth=%d, palette=%d", p.depth, p.palette);
  1219. for (i = 0; i < OV511_NUMFRAMES; i++) {
  1220. ov511->frame[i].depth = p.depth;
  1221. ov511->frame[i].format = p.palette;
  1222. }
  1223. return 0;
  1224. }
  1225. case VIDIOCGCAPTURE:
  1226. {
  1227. int vf;
  1228. PDEBUG(4, "VIDIOCGCAPTURE");
  1229. if (copy_from_user(&vf, arg, sizeof(vf)))
  1230. return -EFAULT;
  1231. ov511->sub_flag = vf;
  1232. return 0;
  1233. }
  1234. case VIDIOCSCAPTURE:
  1235. {
  1236. struct video_capture vc;
  1237. PDEBUG(4, "VIDIOCSCAPTURE");
  1238. if (copy_from_user(&vc, arg, sizeof(vc)))
  1239. return -EFAULT;
  1240. if (vc.flags)
  1241. return -EINVAL;
  1242. if (vc.decimation)
  1243. return -EINVAL;
  1244. vc.x &= ~3L;
  1245. vc.y &= ~1L;
  1246. vc.y &= ~31L;
  1247. if (vc.width == 0)
  1248. vc.width = 32;
  1249. vc.height /= 16;
  1250. vc.height *= 16;
  1251. if (vc.height == 0)
  1252. vc.height = 16;
  1253. ov511->subx = vc.x;
  1254. ov511->suby = vc.y;
  1255. ov511->subw = vc.width;
  1256. ov511->subh = vc.height;
  1257. return 0;
  1258. }
  1259. case VIDIOCSWIN:
  1260. {
  1261. struct video_window vw;
  1262. int i, result;
  1263. if (copy_from_user(&vw, arg, sizeof(vw)))
  1264. return -EFAULT;
  1265. PDEBUG(4, "VIDIOCSWIN: width=%d, height=%d",
  1266. vw.width, vw.height);
  1267. #if 0
  1268. if (vw.flags)
  1269. return -EINVAL;
  1270. if (vw.clipcount)
  1271. return -EINVAL;
  1272. if (vw.height != ov511->maxheight)
  1273. return -EINVAL;
  1274. if (vw.width != ov511->maxwidth)
  1275. return -EINVAL;
  1276. #endif
  1277. /* If we're collecting previous frame wait
  1278.    before changing modes */
  1279. interruptible_sleep_on(&ov511->wq);
  1280. if (signal_pending(current)) return -EINTR;
  1281. result = mode_init_regs(ov511, vw.width, vw.height,
  1282. ov511->frame[0].format, ov511->sub_flag);
  1283. if (result < 0)
  1284. return result;
  1285. for (i = 0; i < OV511_NUMFRAMES; i++) {
  1286. ov511->frame[i].width = vw.width;
  1287. ov511->frame[i].height = vw.height;
  1288. }
  1289. return 0;
  1290. }
  1291. case VIDIOCGWIN:
  1292. {
  1293. struct video_window vw;
  1294. memset(&vw, 0, sizeof(vw));
  1295. vw.x = 0; /* FIXME */
  1296. vw.y = 0;
  1297. vw.width = ov511->frame[0].width;
  1298. vw.height = ov511->frame[0].height;
  1299. vw.flags = 30;
  1300. PDEBUG(4, "VIDIOCGWIN: %dx%d", vw.width, vw.height);
  1301. if (copy_to_user(arg, &vw, sizeof(vw)))
  1302. return -EFAULT;
  1303. return 0;
  1304. }
  1305. case VIDIOCGMBUF:
  1306. {
  1307. struct video_mbuf vm;
  1308. int i;
  1309. PDEBUG(4, "VIDIOCGMBUF");
  1310. memset(&vm, 0, sizeof(vm));
  1311. vm.size = OV511_NUMFRAMES
  1312. * MAX_DATA_SIZE(ov511->maxwidth, ov511->maxheight);
  1313. vm.frames = OV511_NUMFRAMES;
  1314. vm.offsets[0] = 0;
  1315. for (i = 1; i < OV511_NUMFRAMES; i++) {
  1316. vm.offsets[i] = vm.offsets[i-1]
  1317.    + MAX_DATA_SIZE(ov511->maxwidth, ov511->maxheight);
  1318. }
  1319. if (copy_to_user((void *)arg, (void *)&vm, sizeof(vm)))
  1320. return -EFAULT;
  1321. return 0;
  1322. }
  1323. case VIDIOCMCAPTURE:
  1324. {
  1325. struct video_mmap vm;
  1326. int ret, depth;
  1327. if (copy_from_user((void *)&vm, (void *)arg, sizeof(vm)))
  1328. return -EFAULT;
  1329. PDEBUG(4, "CMCAPTURE");
  1330. PDEBUG(4, "frame: %d, size: %dx%d, format: %d",
  1331. vm.frame, vm.width, vm.height, vm.format);
  1332. depth = ov511_get_depth(vm.format);
  1333. if (!depth) {
  1334. err("VIDIOCMCAPTURE: invalid format (%d)", vm.format);
  1335. return -EINVAL;
  1336. }
  1337. if ((unsigned)vm.frame >= OV511_NUMFRAMES) {
  1338. err("VIDIOCMCAPTURE: invalid frame (%d)", vm.frame);
  1339. return -EINVAL;
  1340. }
  1341. if (vm.width > ov511->maxwidth 
  1342.     || vm.height > ov511->maxheight) {
  1343. err("VIDIOCMCAPTURE: requested dimensions too big");
  1344. return -EINVAL;
  1345. }
  1346. if (ov511->frame[vm.frame].grabstate == FRAME_GRABBING) {
  1347. PDEBUG(4, "VIDIOCMCAPTURE: already grabbing");
  1348. return -EBUSY;
  1349. }
  1350. if (force_palette && vm.format != force_palette) {
  1351. info("palette rejected (%d)", vm.format);
  1352. return -EINVAL;
  1353. }
  1354. if ((ov511->frame[vm.frame].width != vm.width) ||
  1355.     (ov511->frame[vm.frame].height != vm.height) ||
  1356.     (ov511->frame[vm.frame].format != vm.format) ||
  1357.     (ov511->frame[vm.frame].sub_flag != ov511->sub_flag) ||
  1358.     (ov511->frame[vm.frame].depth != depth)) {
  1359. PDEBUG(4, "VIDIOCMCAPTURE: change in image parameters");
  1360. /* If we're collecting previous frame wait
  1361.    before changing modes */
  1362. interruptible_sleep_on(&ov511->wq);
  1363. if (signal_pending(current)) return -EINTR;
  1364. ret = mode_init_regs(ov511, vm.width, vm.height,
  1365. vm.format, ov511->sub_flag);
  1366. #if 0
  1367. if (ret < 0) {
  1368. PDEBUG(1, "Got error while initializing regs ");
  1369. return ret;
  1370. }
  1371. #endif
  1372. ov511->frame[vm.frame].width = vm.width;
  1373. ov511->frame[vm.frame].height = vm.height;
  1374. ov511->frame[vm.frame].format = vm.format;
  1375. ov511->frame[vm.frame].sub_flag = ov511->sub_flag;
  1376. ov511->frame[vm.frame].depth = depth;
  1377. }
  1378. /* Mark it as ready */
  1379. ov511->frame[vm.frame].grabstate = FRAME_READY;
  1380. PDEBUG(4, "VIDIOCMCAPTURE: renewing frame %d", vm.frame);
  1381. return ov511_new_frame(ov511, vm.frame);
  1382. }
  1383. case VIDIOCSYNC:
  1384. {
  1385. int fnum, rc;
  1386. struct ov511_frame *frame;
  1387. if (copy_from_user((void *)&fnum, arg, sizeof(int)))
  1388. return -EFAULT;
  1389. if ((unsigned)fnum >= OV511_NUMFRAMES) {
  1390. err("VIDIOCSYNC: invalid frame (%d)", fnum);
  1391. return -EINVAL;
  1392. }
  1393. frame = &ov511->frame[fnum];
  1394. PDEBUG(4, "syncing to frame %d, grabstate = %d", fnum,
  1395.        frame->grabstate);
  1396. switch (frame->grabstate) {
  1397. case FRAME_UNUSED:
  1398. return -EINVAL;
  1399. case FRAME_READY:
  1400. case FRAME_GRABBING:
  1401. case FRAME_ERROR:
  1402. redo:
  1403. if (!ov511->dev)
  1404. return -EIO;
  1405. rc = wait_event_interruptible(frame->wq,
  1406.     (frame->grabstate == FRAME_DONE)
  1407.     || (frame->grabstate == FRAME_ERROR));
  1408. if (rc)
  1409. return rc;
  1410. if (frame->grabstate == FRAME_ERROR) {
  1411. int ret;
  1412. if ((ret = ov511_new_frame(ov511, fnum)) < 0)
  1413. return ret;
  1414. goto redo;
  1415. }
  1416. /* Fall through */
  1417. case FRAME_DONE:
  1418. if (ov511->snap_enabled && !frame->snapshot) {
  1419. int ret;
  1420. if ((ret = ov511_new_frame(ov511, fnum)) < 0)
  1421. return ret;
  1422. goto redo;
  1423. }
  1424. frame->grabstate = FRAME_UNUSED;
  1425. /* Reset the hardware snapshot button */
  1426. /* FIXME - Is this the best place for this? */
  1427. if ((ov511->snap_enabled) && (frame->snapshot)) {
  1428. frame->snapshot = 0;
  1429. ov51x_clear_snapshot(ov511);
  1430. }
  1431. /* Decompression, format conversion, etc... */
  1432. ov511_postprocess(ov511, frame);
  1433. break;
  1434. } /* end switch */
  1435. return 0;
  1436. }
  1437. case VIDIOCGFBUF:
  1438. {
  1439. struct video_buffer vb;
  1440. PDEBUG(4, "VIDIOCSCHAN");
  1441. memset(&vb, 0, sizeof(vb));
  1442. vb.base = NULL; /* frame buffer not supported, not used */
  1443. if (copy_to_user((void *)arg, (void *)&vb, sizeof(vb)))
  1444. return -EFAULT;
  1445. return 0;
  1446. }
  1447. case VIDIOCGUNIT:
  1448. {
  1449. struct video_unit vu;
  1450. PDEBUG(4, "VIDIOCGUNIT");
  1451. memset(&vu, 0, sizeof(vu));
  1452. vu.video = ov511->vdev.minor; /* Video minor */
  1453. vu.vbi = VIDEO_NO_UNIT; /* VBI minor */
  1454. vu.radio = VIDEO_NO_UNIT; /* Radio minor */
  1455. vu.audio = VIDEO_NO_UNIT; /* Audio minor */
  1456. vu.teletext = VIDEO_NO_UNIT; /* Teletext minor */
  1457. if (copy_to_user((void *)arg, (void *)&vu, sizeof(vu)))
  1458. return -EFAULT;
  1459. return 0;
  1460. }
  1461. case VIDIOCGTUNER:
  1462. {
  1463. struct video_tuner v;
  1464. PDEBUG(4, "VIDIOCGTUNER");
  1465. if (copy_from_user(&v, arg, sizeof(v)))
  1466. return -EFAULT;
  1467. if (!ov511->has_tuner || v.tuner) // Only tuner 0
  1468. return -EINVAL;
  1469. strcpy(v.name, "Television");
  1470. // FIXME: Need a way to get the real values
  1471. v.rangelow = 0;
  1472. v.rangehigh = ~0;
  1473. v.flags = VIDEO_TUNER_PAL | VIDEO_TUNER_NTSC |
  1474.     VIDEO_TUNER_SECAM;
  1475. v.mode = 0;  /* FIXME:  Not sure what this is yet */
  1476. v.signal = 0xFFFF; /* unknown */
  1477. call_i2c_clients(ov511, cmd, &v);
  1478. if (copy_to_user(arg, &v, sizeof(v)))
  1479. return -EFAULT;
  1480. return 0;
  1481. }
  1482. case VIDIOCSTUNER:
  1483. {
  1484. struct video_tuner v;
  1485. int err;
  1486. PDEBUG(4, "VIDIOCSTUNER");
  1487. if (copy_from_user(&v, arg, sizeof(v)))
  1488. return -EFAULT;
  1489. /* Only no or one tuner for now */
  1490. if (!ov511->has_tuner || v.tuner)
  1491. return -EINVAL;
  1492. /* and it only has certain valid modes */
  1493. if (v.mode != VIDEO_MODE_PAL &&
  1494.     v.mode != VIDEO_MODE_NTSC &&
  1495.     v.mode != VIDEO_MODE_SECAM) return -EOPNOTSUPP;
  1496. /* Is this right/necessary? */
  1497. err = decoder_set_norm(ov511, v.mode);
  1498. if (err)
  1499. return err;
  1500. call_i2c_clients(ov511, cmd, &v);
  1501. return 0;
  1502. }
  1503. case VIDIOCGFREQ:
  1504. {
  1505. unsigned long v = ov511->freq;
  1506. PDEBUG(4, "VIDIOCGFREQ");
  1507. if (!ov511->has_tuner)
  1508. return -EINVAL;
  1509. #if 0
  1510. /* FIXME: this is necessary for testing */
  1511. v = 46*16;
  1512. #endif
  1513. if (copy_to_user(arg, &v, sizeof(v)))
  1514. return -EFAULT;
  1515. return 0;
  1516. }
  1517. case VIDIOCSFREQ:
  1518. {
  1519. unsigned long v;
  1520. if (!ov511->has_tuner)
  1521. return -EINVAL;
  1522. if (copy_from_user(&v, arg, sizeof(v)))
  1523. return -EFAULT;
  1524. PDEBUG(4, "VIDIOCSFREQ: %lx", v);
  1525. ov511->freq = v;
  1526. call_i2c_clients(ov511, cmd, &v);
  1527. return 0;
  1528. }
  1529. case VIDIOCGAUDIO:
  1530. case VIDIOCSAUDIO:
  1531. {
  1532. /* FIXME: Implement this... */
  1533. return 0;
  1534. }
  1535. default:
  1536. PDEBUG(3, "Unsupported IOCtl: 0x%X", cmd);
  1537. return -ENOIOCTLCMD;
  1538. } /* end switch */
  1539. return 0;
  1540. }
  1541. static int 
  1542. ov511_ioctl(struct video_device *vdev, unsigned int cmd, void *arg)
  1543. {
  1544. int rc;
  1545. struct usb_ov511 *ov511 = vdev->priv;
  1546. if (down_interruptible(&ov511->lock))
  1547. return -EINTR;
  1548. rc = ov511_ioctl_internal(vdev, cmd, arg);
  1549. up(&ov511->lock);
  1550. return rc;
  1551. }
  1552. static inline long 
  1553. ov511_read(struct video_device *vdev, char *buf, unsigned long count,
  1554.    int noblock)
  1555. {
  1556. struct usb_ov511 *ov511 = vdev->priv;
  1557. int i, rc = 0, frmx = -1;
  1558. struct ov511_frame *frame;
  1559. if (down_interruptible(&ov511->lock))
  1560. return -EINTR;
  1561. PDEBUG(4, "%ld bytes, noblock=%d", count, noblock);
  1562. if (!vdev || !buf) {
  1563. rc = -EFAULT;
  1564. goto error;
  1565. }
  1566. if (!ov511->dev) {
  1567. rc = -EIO;
  1568. goto error;
  1569. }
  1570. // FIXME: Only supports two frames
  1571. /* See if a frame is completed, then use it. */
  1572. if (ov511->frame[0].grabstate >= FRAME_DONE) /* _DONE or _ERROR */
  1573. frmx = 0;
  1574. else if (ov511->frame[1].grabstate >= FRAME_DONE)/* _DONE or _ERROR */
  1575. frmx = 1;
  1576. /* If nonblocking we return immediately */
  1577. if (noblock && (frmx == -1)) {
  1578. rc = -EAGAIN;
  1579. goto error;
  1580. }
  1581. /* If no FRAME_DONE, look for a FRAME_GRABBING state. */
  1582. /* See if a frame is in process (grabbing), then use it. */
  1583. if (frmx == -1) {
  1584. if (ov511->frame[0].grabstate == FRAME_GRABBING)
  1585. frmx = 0;
  1586. else if (ov511->frame[1].grabstate == FRAME_GRABBING)
  1587. frmx = 1;
  1588. }
  1589. /* If no frame is active, start one. */
  1590. if (frmx == -1) {
  1591. if ((rc = ov511_new_frame(ov511, frmx = 0))) {
  1592. err("read: ov511_new_frame error");
  1593. goto error;
  1594. }
  1595. }
  1596. frame = &ov511->frame[frmx];
  1597. restart:
  1598. if (!ov511->dev) {
  1599. rc = -EIO;
  1600. goto error;
  1601. }
  1602. /* Wait while we're grabbing the image */
  1603. PDEBUG(4, "Waiting image grabbing");
  1604. rc = wait_event_interruptible(frame->wq, 
  1605. (frame->grabstate == FRAME_DONE)
  1606. || (frame->grabstate == FRAME_ERROR));
  1607. if (rc)
  1608. goto error;
  1609. PDEBUG(4, "Got image, frame->grabstate = %d", frame->grabstate);
  1610. PDEBUG(4, "bytes_recvd = %d", frame->bytes_recvd);
  1611. if (frame->grabstate == FRAME_ERROR) {
  1612. frame->bytes_read = 0;
  1613. err("** ick! ** Errored frame %d", ov511->curframe);
  1614. if (ov511_new_frame(ov511, frmx)) {
  1615. err("read: ov511_new_frame error");
  1616. goto error;
  1617. }
  1618. goto restart;
  1619. }
  1620. /* Repeat until we get a snapshot frame */
  1621. if (ov511->snap_enabled)
  1622. PDEBUG(4, "Waiting snapshot frame");
  1623. if (ov511->snap_enabled && !frame->snapshot) {
  1624. frame->bytes_read = 0;
  1625. if ((rc = ov511_new_frame(ov511, frmx))) {
  1626. err("read: ov511_new_frame error");
  1627. goto error;
  1628. }
  1629. goto restart;
  1630. }
  1631. /* Clear the snapshot */
  1632. if (ov511->snap_enabled && frame->snapshot) {
  1633. frame->snapshot = 0;
  1634. ov51x_clear_snapshot(ov511);
  1635. }
  1636. /* Decompression, format conversion, etc... */
  1637. ov511_postprocess(ov511, frame);
  1638. PDEBUG(4, "frmx=%d, bytes_read=%ld, length=%ld", frmx,
  1639. frame->bytes_read,
  1640. get_frame_length(frame));
  1641. /* copy bytes to user space; we allow for partials reads */
  1642. // if ((count + frame->bytes_read) 
  1643. //     > get_frame_length((struct ov511_frame *)frame))
  1644. // count = frame->scanlength - frame->bytes_read;
  1645. /* FIXME - count hardwired to be one frame... */
  1646. count = get_frame_length(frame);
  1647. PDEBUG(4, "Copy to user space: %ld bytes", count);
  1648. if ((i = copy_to_user(buf, frame->data + frame->bytes_read, count))) {
  1649. PDEBUG(4, "Copy failed! %d bytes not copied", i);
  1650. rc = -EFAULT;
  1651. goto error;
  1652. }
  1653. frame->bytes_read += count;
  1654. PDEBUG(4, "{copy} count used=%ld, new bytes_read=%ld",
  1655. count, frame->bytes_read);
  1656. /* If all data has been read... */
  1657. if (frame->bytes_read
  1658.     >= get_frame_length(frame)) {
  1659. frame->bytes_read = 0;
  1660. // FIXME: Only supports two frames
  1661. /* Mark it as available to be used again. */
  1662. ov511->frame[frmx].grabstate = FRAME_UNUSED;
  1663. if ((rc = ov511_new_frame(ov511, !frmx))) {
  1664. err("ov511_new_frame returned error");
  1665. goto error;
  1666. }
  1667. }
  1668. PDEBUG(4, "read finished, returning %ld (sweet)", count);
  1669. up(&ov511->lock);
  1670. return count;
  1671. error:
  1672. up(&ov511->lock);
  1673. return rc;
  1674. }
  1675. static int 
  1676. ov511_mmap(struct video_device *vdev, const char *adr, unsigned long size)
  1677. {
  1678. struct usb_ov511 *ov511 = vdev->priv;
  1679. unsigned long start = (unsigned long)adr;
  1680. unsigned long page, pos;
  1681. if (ov511->dev == NULL)
  1682. return -EIO;
  1683. PDEBUG(4, "mmap: %ld (%lX) bytes", size, size);
  1684. if (size > (((OV511_NUMFRAMES
  1685.               * MAX_DATA_SIZE(ov511->maxwidth, ov511->maxheight)
  1686.               + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1))))
  1687. return -EINVAL;
  1688. if (down_interruptible(&ov511->lock))
  1689. return -EINTR;
  1690. pos = (unsigned long)ov511->fbuf;
  1691. while (size > 0) {
  1692. page = kvirt_to_pa(pos);
  1693. if (remap_page_range(start, page, PAGE_SIZE, PAGE_SHARED)) {
  1694. up(&ov511->lock);
  1695. return -EAGAIN;
  1696. }
  1697. start += PAGE_SIZE;
  1698. pos += PAGE_SIZE;
  1699. if (size > PAGE_SIZE)
  1700. size -= PAGE_SIZE;
  1701. else
  1702. size = 0;
  1703. }
  1704. up(&ov511->lock);
  1705. return 0;
  1706. }
  1707. static struct video_device ov511_template = {
  1708. owner: THIS_MODULE,
  1709. name: "OV511 USB Camera",
  1710. type: VID_TYPE_CAPTURE,
  1711. hardware: VID_HARDWARE_OV511,
  1712. open: ov511_open,
  1713. close: ov511_close,
  1714. read: ov511_read,
  1715. write: ov511_write,
  1716. ioctl: ov511_ioctl,
  1717. mmap: ov511_mmap,
  1718. initialize: ov511_init_done,
  1719. };
  1720. #if defined(CONFIG_PROC_FS) && defined(CONFIG_VIDEO_PROC_FS)
  1721. static int 
  1722. ov511_control_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
  1723.     unsigned long ularg)
  1724. {
  1725. struct proc_dir_entry *pde;
  1726. struct usb_ov511 *ov511;
  1727. void *arg = (void *) ularg;
  1728. int rc;
  1729. pde = (struct proc_dir_entry *) inode->u.generic_ip;
  1730. if (!pde)
  1731. return -ENOENT;
  1732. ov511 = (struct usb_ov511 *) pde->data;
  1733. if (!ov511)
  1734. return -ENODEV;
  1735. if (!ov511->dev)
  1736. return -EIO;
  1737. /* Should we pass through standard V4L IOCTLs? */
  1738. switch (cmd) {
  1739. case OV511IOC_GINTVER:
  1740. {
  1741. int ver = OV511_INTERFACE_VER;
  1742. PDEBUG(4, "Get interface version: %d", ver);
  1743. if (copy_to_user(arg, &ver, sizeof(ver)))
  1744. return -EFAULT;
  1745. return 0;
  1746. }
  1747. case OV511IOC_GUSHORT:
  1748. {
  1749. struct ov511_ushort_opt opt;
  1750. if (copy_from_user(&opt, arg, sizeof(opt)))
  1751. return -EFAULT;
  1752. switch (opt.optnum) {
  1753. case OV511_USOPT_BRIGHT:
  1754. rc = sensor_get_brightness(ov511, &(opt.val));
  1755. if (rc) return rc;
  1756. break;
  1757. case OV511_USOPT_SAT:
  1758. rc = sensor_get_saturation(ov511, &(opt.val));
  1759. if (rc) return rc;
  1760. break;
  1761. case OV511_USOPT_HUE:
  1762. rc = sensor_get_hue(ov511, &(opt.val));
  1763. if (rc) return rc;
  1764. break;
  1765. case OV511_USOPT_CONTRAST:
  1766. rc = sensor_get_contrast(ov511, &(opt.val));
  1767. if (rc) return rc;
  1768. break;
  1769. default:
  1770. err("Invalid get short option number");
  1771. return -EINVAL;
  1772. }
  1773. if (copy_to_user(arg, &opt, sizeof(opt)))
  1774. return -EFAULT;
  1775. return 0;
  1776. }
  1777. case OV511IOC_SUSHORT:
  1778. {
  1779. struct ov511_ushort_opt opt;
  1780. if (copy_from_user(&opt, arg, sizeof(opt)))
  1781. return -EFAULT;
  1782. switch (opt.optnum) {
  1783. case OV511_USOPT_BRIGHT:
  1784. rc = sensor_set_brightness(ov511, opt.val);
  1785. if (rc) return rc;
  1786. break;
  1787. case OV511_USOPT_SAT:
  1788. rc = sensor_set_saturation(ov511, opt.val);
  1789. if (rc) return rc;
  1790. break;
  1791. case OV511_USOPT_HUE:
  1792. rc = sensor_set_hue(ov511, opt.val);
  1793. if (rc) return rc;
  1794. break;
  1795. case OV511_USOPT_CONTRAST:
  1796. rc = sensor_set_contrast(ov511, opt.val);
  1797. if (rc) return rc;
  1798. break;
  1799. default:
  1800. err("Invalid set short option number");
  1801. return -EINVAL;
  1802. }
  1803. return 0;
  1804. }
  1805. case OV511IOC_GUINT:
  1806. {
  1807. struct ov511_uint_opt opt;
  1808. if (copy_from_user(&opt, arg, sizeof(opt)))
  1809. return -EFAULT;
  1810. switch (opt.optnum) {
  1811. case OV511_UIOPT_POWER_FREQ:
  1812. opt.val = ov511->lightfreq;
  1813. break;
  1814. case OV511_UIOPT_BFILTER:
  1815. opt.val = ov511->bandfilt;
  1816. break;
  1817. case OV511_UIOPT_LED:
  1818. opt.val = ov511->led_policy;
  1819. break;
  1820. case OV511_UIOPT_DEBUG:
  1821. opt.val = debug;
  1822. break;
  1823. case OV511_UIOPT_COMPRESS:
  1824. opt.val = ov511->compress;
  1825. break;
  1826. default:
  1827. err("Invalid get int option number");
  1828. return -EINVAL;
  1829. }
  1830. if (copy_to_user(arg, &opt, sizeof(opt)))
  1831. return -EFAULT;
  1832. return 0;
  1833. }
  1834. case OV511IOC_SUINT:
  1835. {
  1836. struct ov511_uint_opt opt;
  1837. if (copy_from_user(&opt, arg, sizeof(opt)))
  1838. return -EFAULT;
  1839. switch (opt.optnum) {
  1840. case OV511_UIOPT_POWER_FREQ:
  1841. rc = sensor_set_light_freq(ov511, opt.val);
  1842. if (rc) return rc;
  1843. break;
  1844. case OV511_UIOPT_BFILTER:
  1845. rc = sensor_set_banding_filter(ov511, opt.val);
  1846. if (rc) return rc;
  1847. break;
  1848. case OV511_UIOPT_LED:
  1849. if (opt.val <= 2) {
  1850. ov511->led_policy = opt.val;
  1851. if (ov511->led_policy == LED_OFF)
  1852. ov51x_led_control(ov511, 0);
  1853. else if (ov511->led_policy == LED_ON)
  1854. ov51x_led_control(ov511, 1);
  1855. } else {
  1856. return -EINVAL;
  1857. }
  1858. break;
  1859. case OV511_UIOPT_DEBUG:
  1860. if (opt.val <= 5)
  1861. debug = opt.val;
  1862. else
  1863. return -EINVAL;
  1864. break;
  1865. case OV511_UIOPT_COMPRESS:
  1866. ov511->compress = opt.val;
  1867. if (ov511->compress) {
  1868. if (ov511->bridge == BRG_OV511 ||
  1869.     ov511->bridge == BRG_OV511PLUS)
  1870. ov511_init_compression(ov511);
  1871. else if (ov511->bridge == BRG_OV518 ||
  1872.  ov511->bridge == BRG_OV518PLUS)
  1873. ov518_init_compression(ov511);
  1874. }
  1875. break;
  1876. default:
  1877. err("Invalid get int option number");
  1878. return -EINVAL;
  1879. }
  1880. return 0;
  1881. }
  1882. case OV511IOC_WI2C:
  1883. {
  1884. struct ov511_i2c_struct w;
  1885. if (copy_from_user(&w, arg, sizeof(w)))
  1886. return -EFAULT;
  1887. return ov51x_i2c_write_slave(ov511, w.slave, w.reg, w.value,
  1888. w.mask);
  1889. }
  1890. case OV511IOC_RI2C:
  1891. {
  1892. struct ov511_i2c_struct r;
  1893. if (copy_from_user(&r, arg, sizeof(r)))
  1894. return -EFAULT;
  1895. rc = ov51x_i2c_read_slave(ov511, r.slave, r.reg);
  1896. if (rc < 0)
  1897. return rc;
  1898. r.value = rc;
  1899. if (copy_to_user(arg, &r, sizeof(r)))
  1900. return -EFAULT;
  1901. return 0;
  1902. }
  1903. default:
  1904. return -EINVAL;
  1905. } /* end switch */
  1906. return 0;
  1907. }
  1908. #endif
  1909. /****************************************************************************
  1910.  *
  1911.  * OV511 and sensor configuration
  1912.  *
  1913.  ***************************************************************************/
  1914. /* This initializes the OV7610, OV7620, or OV7620AE sensor. The OV7620AE uses
  1915.  * the same register settings as the OV7610, since they are very similar.
  1916.  */
  1917. static int 
  1918. ov7xx0_configure(struct usb_ov511 *ov511)
  1919. {
  1920. int i, success;
  1921. int rc;
  1922. /* Lawrence Glaister <lg@jfm.bc.ca> reports:
  1923.  *
  1924.  * Register 0x0f in the 7610 has the following effects:
  1925.  *
  1926.  * 0x85 (AEC method 1): Best overall, good contrast range
  1927.  * 0x45 (AEC method 2): Very overexposed
  1928.  * 0xa5 (spec sheet default): Ok, but the black level is
  1929.  * shifted resulting in loss of contrast
  1930.  * 0x05 (old driver setting): very overexposed, too much
  1931.  * contrast
  1932.  */
  1933. static struct ov511_regvals aRegvalsNorm7610[] = {
  1934. { OV511_I2C_BUS, 0x10, 0xff },
  1935. { OV511_I2C_BUS, 0x16, 0x06 },
  1936. { OV511_I2C_BUS, 0x28, 0x24 },
  1937. { OV511_I2C_BUS, 0x2b, 0xac },
  1938. { OV511_I2C_BUS, 0x12, 0x00 },
  1939. { OV511_I2C_BUS, 0x38, 0x81 },
  1940. { OV511_I2C_BUS, 0x28, 0x24 }, /* 0c */
  1941. { OV511_I2C_BUS, 0x0f, 0x85 }, /* lg's setting */
  1942. { OV511_I2C_BUS, 0x15, 0x01 },
  1943. { OV511_I2C_BUS, 0x20, 0x1c },
  1944. { OV511_I2C_BUS, 0x23, 0x2a },
  1945. { OV511_I2C_BUS, 0x24, 0x10 },
  1946. { OV511_I2C_BUS, 0x25, 0x8a },
  1947. { OV511_I2C_BUS, 0x26, 0xa2 },
  1948. { OV511_I2C_BUS, 0x27, 0xc2 },
  1949. { OV511_I2C_BUS, 0x2a, 0x04 },
  1950. { OV511_I2C_BUS, 0x2c, 0xfe },
  1951. { OV511_I2C_BUS, 0x2d, 0x93 },
  1952. { OV511_I2C_BUS, 0x30, 0x71 },
  1953. { OV511_I2C_BUS, 0x31, 0x60 },
  1954. { OV511_I2C_BUS, 0x32, 0x26 },
  1955. { OV511_I2C_BUS, 0x33, 0x20 },
  1956. { OV511_I2C_BUS, 0x34, 0x48 },
  1957. { OV511_I2C_BUS, 0x12, 0x24 },
  1958. { OV511_I2C_BUS, 0x11, 0x01 },
  1959. { OV511_I2C_BUS, 0x0c, 0x24 },
  1960. { OV511_I2C_BUS, 0x0d, 0x24 },
  1961. { OV511_DONE_BUS, 0x0, 0x00 },
  1962. };
  1963. static struct ov511_regvals aRegvalsNorm7620[] = {
  1964. { OV511_I2C_BUS, 0x00, 0x00 },
  1965. { OV511_I2C_BUS, 0x01, 0x80 },
  1966. { OV511_I2C_BUS, 0x02, 0x80 },
  1967. { OV511_I2C_BUS, 0x03, 0xc0 },
  1968. { OV511_I2C_BUS, 0x06, 0x60 },
  1969. { OV511_I2C_BUS, 0x07, 0x00 },
  1970. { OV511_I2C_BUS, 0x0c, 0x24 },
  1971. { OV511_I2C_BUS, 0x0c, 0x24 },
  1972. { OV511_I2C_BUS, 0x0d, 0x24 },
  1973. { OV511_I2C_BUS, 0x11, 0x01 },
  1974. { OV511_I2C_BUS, 0x12, 0x24 },
  1975. { OV511_I2C_BUS, 0x13, 0x01 },
  1976. { OV511_I2C_BUS, 0x14, 0x84 },
  1977. { OV511_I2C_BUS, 0x15, 0x01 },
  1978. { OV511_I2C_BUS, 0x16, 0x03 },
  1979. { OV511_I2C_BUS, 0x17, 0x2f },
  1980. { OV511_I2C_BUS, 0x18, 0xcf },
  1981. { OV511_I2C_BUS, 0x19, 0x06 },
  1982. { OV511_I2C_BUS, 0x1a, 0xf5 },
  1983. { OV511_I2C_BUS, 0x1b, 0x00 },
  1984. { OV511_I2C_BUS, 0x20, 0x18 },
  1985. { OV511_I2C_BUS, 0x21, 0x80 },
  1986. { OV511_I2C_BUS, 0x22, 0x80 },
  1987. { OV511_I2C_BUS, 0x23, 0x00 },
  1988. { OV511_I2C_BUS, 0x26, 0xa2 },
  1989. { OV511_I2C_BUS, 0x27, 0xea },
  1990. { OV511_I2C_BUS, 0x28, 0x20 },
  1991. { OV511_I2C_BUS, 0x29, 0x00 },
  1992. { OV511_I2C_BUS, 0x2a, 0x10 },
  1993. { OV511_I2C_BUS, 0x2b, 0x00 },
  1994. { OV511_I2C_BUS, 0x2c, 0x88 },
  1995. { OV511_I2C_BUS, 0x2d, 0x91 },
  1996. { OV511_I2C_BUS, 0x2e, 0x80 },
  1997. { OV511_I2C_BUS, 0x2f, 0x44 },
  1998. { OV511_I2C_BUS, 0x60, 0x27 },
  1999. { OV511_I2C_BUS, 0x61, 0x02 },
  2000. { OV511_I2C_BUS, 0x62, 0x5f },
  2001. { OV511_I2C_BUS, 0x63, 0xd5 },
  2002. { OV511_I2C_BUS, 0x64, 0x57 },
  2003. { OV511_I2C_BUS, 0x65, 0x83 },
  2004. { OV511_I2C_BUS, 0x66, 0x55 },
  2005. { OV511_I2C_BUS, 0x67, 0x92 },
  2006. { OV511_I2C_BUS, 0x68, 0xcf },
  2007. { OV511_I2C_BUS, 0x69, 0x76 },
  2008. { OV511_I2C_BUS, 0x6a, 0x22 },
  2009. { OV511_I2C_BUS, 0x6b, 0x00 },
  2010. { OV511_I2C_BUS, 0x6c, 0x02 },
  2011. { OV511_I2C_BUS, 0x6d, 0x44 },
  2012. { OV511_I2C_BUS, 0x6e, 0x80 },
  2013. { OV511_I2C_BUS, 0x6f, 0x1d },
  2014. { OV511_I2C_BUS, 0x70, 0x8b },
  2015. { OV511_I2C_BUS, 0x71, 0x00 },
  2016. { OV511_I2C_BUS, 0x72, 0x14 },
  2017. { OV511_I2C_BUS, 0x73, 0x54 },
  2018. { OV511_I2C_BUS, 0x74, 0x00 },
  2019. { OV511_I2C_BUS, 0x75, 0x8e },
  2020. { OV511_I2C_BUS, 0x76, 0x00 },
  2021. { OV511_I2C_BUS, 0x77, 0xff },
  2022. { OV511_I2C_BUS, 0x78, 0x80 },
  2023. { OV511_I2C_BUS, 0x79, 0x80 },
  2024. { OV511_I2C_BUS, 0x7a, 0x80 },
  2025. { OV511_I2C_BUS, 0x7b, 0xe2 },
  2026. { OV511_I2C_BUS, 0x7c, 0x00 },
  2027. { OV511_DONE_BUS, 0x0, 0x00 },
  2028. };
  2029. PDEBUG(4, "starting configuration");
  2030. /* This looks redundant, but is necessary for WebCam 3 */
  2031. ov511->primary_i2c_slave = OV7xx0_I2C_WRITE_ID;
  2032. if (ov51x_set_slave_ids(ov511, OV7xx0_I2C_WRITE_ID,
  2033. OV7xx0_I2C_READ_ID) < 0)
  2034. return -1;
  2035. if (ov51x_init_ov_sensor(ov511) >= 0) {
  2036. PDEBUG(1, "OV7xx0 sensor initalized (method 1)");
  2037. } else {
  2038. /* Reset the 76xx */
  2039. if (ov51x_i2c_write(ov511, 0x12, 0x80) < 0) return -1;
  2040. /* Wait for it to initialize */
  2041. schedule_timeout(1 + 150 * HZ / 1000);
  2042. i = 0;
  2043. success = 0;
  2044. while (i <= i2c_detect_tries) {
  2045. if ((ov51x_i2c_read(ov511,
  2046.     OV7610_REG_ID_HIGH) == 0x7F) &&
  2047.     (ov51x_i2c_read(ov511,
  2048.     OV7610_REG_ID_LOW) == 0xA2)) {
  2049. success = 1;
  2050. break;
  2051. } else {
  2052. i++;
  2053. }
  2054. }
  2055. // Was (i == i2c_detect_tries) previously. This obviously used to always report
  2056. // success. Whether anyone actually depended on that bug is unknown
  2057. if ((i >= i2c_detect_tries) && (success == 0)) {
  2058. err("Failed to read sensor ID. You might not have an");
  2059. err("OV7610/20, or it may be not responding. Report");
  2060. err("this to " EMAIL);
  2061. err("This is only a warning. You can attempt to use");
  2062. err("your camera anyway");
  2063. // Only issue a warning for now  
  2064. // return -1;
  2065. } else {
  2066. PDEBUG(1, "OV7xx0 initialized (method 2, %dx)", i+1);
  2067. }
  2068. }
  2069. /* Detect sensor (sub)type */
  2070. rc = ov51x_i2c_read(ov511, OV7610_REG_COM_I);
  2071. if (rc < 0) {
  2072. err("Error detecting sensor type");
  2073. return -1;
  2074. } else if ((rc & 3) == 3) {
  2075. info("Sensor is an OV7610");
  2076. ov511->sensor = SEN_OV7610;
  2077. } else if ((rc & 3) == 1) {
  2078. /* I don't know what's different about the 76BE yet */
  2079. if (ov51x_i2c_read(ov511, 0x15) & 1)
  2080. info("Sensor is an OV7620AE");
  2081. else
  2082. info("Sensor is an OV76BE");
  2083. /* OV511+ will return all zero isoc data unless we
  2084.  * configure the sensor as a 7620. Someone needs to
  2085.  * find the exact reg. setting that causes this. */
  2086. if (ov511->bridge == BRG_OV511PLUS) {
  2087. info("Enabling 511+/7620AE workaround");
  2088. ov511->sensor = SEN_OV7620;
  2089. } else {
  2090. ov511->sensor = SEN_OV7620AE;
  2091. }
  2092. } else if ((rc & 3) == 0) {
  2093. info("Sensor is an OV7620");
  2094. ov511->sensor = SEN_OV7620;
  2095. } else {
  2096. err("Unknown image sensor version: %d", rc & 3);
  2097. return -1;
  2098. }
  2099. if (ov511->sensor == SEN_OV7620) {
  2100. PDEBUG(4, "Writing 7620 registers");
  2101. if (ov511_write_regvals(ov511, aRegvalsNorm7620))
  2102. return -1;
  2103. } else {
  2104. PDEBUG(4, "Writing 7610 registers");
  2105. if (ov511_write_regvals(ov511, aRegvalsNorm7610))
  2106. return -1;
  2107. }
  2108. /* Set sensor-specific vars */
  2109. ov511->maxwidth = 640;
  2110. ov511->maxheight = 480;
  2111. ov511->minwidth = 64;
  2112. ov511->minheight = 48;
  2113. // FIXME: These do not match the actual settings yet
  2114. ov511->brightness = 0x80 << 8;
  2115. ov511->contrast = 0x80 << 8;
  2116. ov511->colour = 0x80 << 8;
  2117. ov511->hue = 0x80 << 8;
  2118. return 0;
  2119. }
  2120. /* This initializes the OV6620, OV6630, OV6630AE, or OV6630AF sensor. */
  2121. static int 
  2122. ov6xx0_configure(struct usb_ov511 *ov511)
  2123. {
  2124. int rc;
  2125. static struct ov511_regvals aRegvalsNorm6x20[] = {
  2126. { OV511_I2C_BUS, 0x12, 0x80 }, /* reset */
  2127. { OV511_I2C_BUS, 0x11, 0x01 },
  2128. { OV511_I2C_BUS, 0x03, 0x60 },
  2129. { OV511_I2C_BUS, 0x05, 0x7f }, /* For when autoadjust is off */
  2130. { OV511_I2C_BUS, 0x07, 0xa8 },
  2131. /* The ratio of 0x0c and 0x0d  controls the white point */
  2132. { OV511_I2C_BUS, 0x0c, 0x24 },
  2133. { OV511_I2C_BUS, 0x0d, 0x24 },
  2134. { OV511_I2C_BUS, 0x12, 0x24 }, /* Enable AGC */
  2135. { OV511_I2C_BUS, 0x14, 0x04 },
  2136. /* 0x16: 0x06 helps frame stability with moving objects */
  2137. { OV511_I2C_BUS, 0x16, 0x06 },
  2138. // { OV511_I2C_BUS, 0x20, 0x30 }, /* Aperture correction enable */
  2139. { OV511_I2C_BUS, 0x26, 0xb2 }, /* BLC enable */
  2140. /* 0x28: 0x05 Selects RGB format if RGB on */
  2141. { OV511_I2C_BUS, 0x28, 0x05 },
  2142. { OV511_I2C_BUS, 0x2a, 0x04 }, /* Disable framerate adjust */
  2143. // { OV511_I2C_BUS, 0x2b, 0xac }, /* Framerate; Set 2a[7] first */
  2144. { OV511_I2C_BUS, 0x2d, 0x99 },
  2145. { OV511_I2C_BUS, 0x34, 0xd2 }, /* Max A/D range */
  2146. { OV511_I2C_BUS, 0x38, 0x8b },
  2147. { OV511_I2C_BUS, 0x39, 0x40 },
  2148. { OV511_I2C_BUS, 0x3c, 0x39 }, /* Enable AEC mode changing */
  2149. { OV511_I2C_BUS, 0x3c, 0x3c }, /* Change AEC mode */
  2150. { OV511_I2C_BUS, 0x3c, 0x24 }, /* Disable AEC mode changing */
  2151. { OV511_I2C_BUS, 0x3d, 0x80 },
  2152. /* These next two registers (0x4a, 0x4b) are undocumented. They
  2153.  * control the color balance */
  2154. { OV511_I2C_BUS, 0x4a, 0x80 },
  2155. { OV511_I2C_BUS, 0x4b, 0x80 },
  2156. { OV511_I2C_BUS, 0x4d, 0xd2 }, /* This reduces noise a bit */
  2157. { OV511_I2C_BUS, 0x4e, 0xc1 },
  2158. { OV511_I2C_BUS, 0x4f, 0x04 },
  2159. // Do 50-53 have any effect?
  2160. // Toggle 0x12[2] off and on here?
  2161. { OV511_DONE_BUS, 0x0, 0x00 },
  2162. };
  2163. /* This chip is undocumented so many of these are guesses. OK=verified,
  2164.  * A=Added since 6620, U=unknown function (not a 6620 reg) */
  2165. static struct ov511_regvals aRegvalsNorm6x30[] = {
  2166. /*OK*/ { OV511_I2C_BUS, 0x12, 0x80 }, /* reset */
  2167. /*00?*/ { OV511_I2C_BUS, 0x11, 0x01 },
  2168. /*OK*/ { OV511_I2C_BUS, 0x03, 0x60 },
  2169. /*0A?*/ { OV511_I2C_BUS, 0x05, 0x7f }, /* For when autoadjust is off */
  2170. { OV511_I2C_BUS, 0x07, 0xa8 },
  2171. /* The ratio of 0x0c and 0x0d  controls the white point */
  2172. /*OK*/ { OV511_I2C_BUS, 0x0c, 0x24 },
  2173. /*OK*/ { OV511_I2C_BUS, 0x0d, 0x24 },
  2174. /*A*/ { OV511_I2C_BUS, 0x0e, 0x20 },
  2175. // /*24?*/ { OV511_I2C_BUS, 0x12, 0x28 }, /* Enable AGC */
  2176. // { OV511_I2C_BUS, 0x12, 0x24 }, /* Enable AGC */
  2177. // /*A*/ { OV511_I2C_BUS, 0x13, 0x21 },
  2178. // /*A*/ { OV511_I2C_BUS, 0x13, 0x25 }, /* Tristate Y and UV busses */
  2179. // /*04?*/ { OV511_I2C_BUS, 0x14, 0x80 },
  2180. /* 0x16: 0x06 helps frame stability with moving objects */
  2181. /*03?*/ { OV511_I2C_BUS, 0x16, 0x06 },
  2182. // /*OK*/ { OV511_I2C_BUS, 0x20, 0x30 }, /* Aperture correction enable */
  2183. // 21 & 22? The suggested values look wrong. Go with default
  2184. /*A*/ { OV511_I2C_BUS, 0x23, 0xc0 },
  2185. /*A*/ { OV511_I2C_BUS, 0x25, 0x9a }, // Check this against default
  2186. // /*OK*/ { OV511_I2C_BUS, 0x26, 0xb2 }, /* BLC enable */
  2187. /* 0x28: 0x05 Selects RGB format if RGB on */
  2188. // /*04?*/ { OV511_I2C_BUS, 0x28, 0x05 },
  2189. // /*04?*/ { OV511_I2C_BUS, 0x28, 0x45 }, // DEBUG: Tristate UV bus
  2190. /*OK*/ { OV511_I2C_BUS, 0x2a, 0x04 }, /* Disable framerate adjust */
  2191. // /*OK*/ { OV511_I2C_BUS, 0x2b, 0xac }, /* Framerate; Set 2a[7] first */
  2192. // /*U*/ { OV511_I2C_BUS, 0x2c, 0xa0 },
  2193. { OV511_I2C_BUS, 0x2d, 0x99 },
  2194. // /*A*/ { OV511_I2C_BUS, 0x33, 0x26 }, // Reserved bits on 6620
  2195. // /*d2?*/ { OV511_I2C_BUS, 0x34, 0x03 }, /* Max A/D range */
  2196. // /*U*/ { OV511_I2C_BUS, 0x36, 0x8f }, // May not be necessary
  2197. // /*U*/ { OV511_I2C_BUS, 0x37, 0x80 }, // May not be necessary
  2198. // /*8b?*/ { OV511_I2C_BUS, 0x38, 0x83 },
  2199. // /*40?*/ { OV511_I2C_BUS, 0x39, 0xc0 }, // 6630 adds bit 7
  2200. // { OV511_I2C_BUS, 0x3c, 0x39 }, /* Enable AEC mode changing */
  2201. // { OV511_I2C_BUS, 0x3c, 0x3c }, /* Change AEC mode */
  2202. // { OV511_I2C_BUS, 0x3c, 0x24 }, /* Disable AEC mode changing */
  2203. /*OK*/ { OV511_I2C_BUS, 0x3d, 0x80 },
  2204. // /*A*/ { OV511_I2C_BUS, 0x3f, 0x0e },
  2205. // /*U*/ { OV511_I2C_BUS, 0x40, 0x00 },
  2206. // /*U*/ { OV511_I2C_BUS, 0x41, 0x00 },
  2207. // /*U*/ { OV511_I2C_BUS, 0x42, 0x80 },
  2208. // /*U*/ { OV511_I2C_BUS, 0x43, 0x3f },
  2209. // /*U*/ { OV511_I2C_BUS, 0x44, 0x80 },
  2210. // /*U*/ { OV511_I2C_BUS, 0x45, 0x20 },
  2211. // /*U*/ { OV511_I2C_BUS, 0x46, 0x20 },
  2212. // /*U*/ { OV511_I2C_BUS, 0x47, 0x80 },
  2213. // /*U*/ { OV511_I2C_BUS, 0x48, 0x7f },
  2214. // /*U*/ { OV511_I2C_BUS, 0x49, 0x00 },
  2215. /* These next two registers (0x4a, 0x4b) are undocumented. They
  2216.  * control the color balance */
  2217. // /*OK?*/ { OV511_I2C_BUS, 0x4a, 0x80 }, // Check these
  2218. // /*OK?*/ { OV511_I2C_BUS, 0x4b, 0x80 },
  2219. // /*U*/ { OV511_I2C_BUS, 0x4c, 0xd0 }, 
  2220. /*d2?*/ { OV511_I2C_BUS, 0x4d, 0x10 }, /* This reduces noise a bit */
  2221. /*c1?*/ { OV511_I2C_BUS, 0x4e, 0x40 },
  2222. /*04?*/ { OV511_I2C_BUS, 0x4f, 0x07 },
  2223. // /*U*/ { OV511_I2C_BUS, 0x50, 0xff },
  2224. /*U*/ { OV511_I2C_BUS, 0x54, 0x23 },
  2225. // /*U*/ { OV511_I2C_BUS, 0x55, 0xff },
  2226. // /*U*/ { OV511_I2C_BUS, 0x56, 0x12 },
  2227. /*U*/ { OV511_I2C_BUS, 0x57, 0x81 },
  2228. // /*U*/ { OV511_I2C_BUS, 0x58, 0x75 },
  2229. /*U*/ { OV511_I2C_BUS, 0x59, 0x01 },
  2230. /*U*/ { OV511_I2C_BUS, 0x5a, 0x2c },
  2231. /*U*/ { OV511_I2C_BUS, 0x5b, 0x0f },
  2232. // /*U*/ { OV511_I2C_BUS, 0x5c, 0x10 },
  2233. { OV511_DONE_BUS, 0x0, 0x00 },
  2234. };
  2235. PDEBUG(4, "starting sensor configuration");
  2236. if (ov51x_init_ov_sensor(ov511) < 0) {
  2237. err("Failed to read sensor ID. You might not have an OV6xx0,");
  2238. err("or it may be not responding. Report this to " EMAIL);
  2239. return -1;
  2240. } else {
  2241. PDEBUG(1, "OV6xx0 sensor detected");
  2242. }
  2243. /* Detect sensor (sub)type */
  2244. rc = ov51x_i2c_read(ov511, OV7610_REG_COM_I);
  2245. if (rc < 0) {
  2246. err("Error detecting sensor type");
  2247. return -1;
  2248. } else if ((rc & 3) == 0) {
  2249. info("Sensor is an OV6630");
  2250. ov511->sensor = SEN_OV6630;
  2251. } else if ((rc & 3) == 1) {
  2252. info("Sensor is an OV6620");
  2253. ov511->sensor = SEN_OV6620;
  2254. } else if ((rc & 3) == 2) {
  2255. info("Sensor is an OV6630AE");
  2256. ov511->sensor = SEN_OV6630;
  2257. } else if ((rc & 3) == 3) {
  2258. info("Sensor is an OV6630AF");
  2259. ov511->sensor = SEN_OV6630;
  2260. /* Set sensor-specific vars */
  2261. if (ov511->sensor == SEN_OV6620) {
  2262. ov511->maxwidth = 352;
  2263. ov511->maxheight = 288;
  2264. } else {
  2265. /* 352x288 not working with OV518 yet */
  2266. ov511->maxwidth = 320;
  2267. ov511->maxheight = 240;
  2268. }
  2269. ov511->minwidth = 64;
  2270. ov511->minheight = 48;
  2271. // FIXME: These do not match the actual settings yet
  2272. ov511->brightness = 0x80 << 8;
  2273. ov511->contrast = 0x80 << 8;
  2274. ov511->colour = 0x80 << 8;
  2275. ov511->hue = 0x80 << 8;
  2276. if (ov511->sensor == SEN_OV6620) {
  2277. PDEBUG(4, "Writing 6x20 registers");
  2278. if (ov511_write_regvals(ov511, aRegvalsNorm6x20))
  2279. return -1;
  2280. } else {
  2281. PDEBUG(4, "Writing 6x30 registers");
  2282. if (ov511_write_regvals(ov511, aRegvalsNorm6x30))
  2283. return -1;
  2284. }
  2285. return 0;
  2286. }
  2287. /* This initializes the KS0127 and KS0127B video decoders. */
  2288. static int 
  2289. ks0127_configure(struct usb_ov511 *ov511)
  2290. {
  2291. int rc;
  2292. // FIXME: I don't know how to sync or reset it yet
  2293. #if 0
  2294. if (ov51x_init_ks_sensor(ov511) < 0) {
  2295. err("Failed to initialize the KS0127");
  2296. return -1;
  2297. } else {
  2298. PDEBUG(1, "KS012x(B) sensor detected");
  2299. }
  2300. #endif
  2301. /* Detect decoder subtype */
  2302. rc = ov51x_i2c_read(ov511, 0x00);
  2303. if (rc < 0) {
  2304. err("Error detecting sensor type");
  2305. return -1;
  2306. } else if (rc & 0x08) {
  2307. rc = ov51x_i2c_read(ov511, 0x3d);
  2308. if (rc < 0) {
  2309. err("Error detecting sensor type");
  2310. return -1;
  2311. } else if ((rc & 0x0f) == 0) {
  2312. info("Sensor is a KS0127");
  2313. ov511->sensor = SEN_KS0127;
  2314. } else if ((rc & 0x0f) == 9) {
  2315. info("Sensor is a KS0127B Rev. A");
  2316. ov511->sensor = SEN_KS0127B;
  2317. }
  2318. } else {
  2319. err("Error: Sensor is an unsupported KS0122");
  2320. return -1;
  2321. }
  2322. /* Set sensor-specific vars */
  2323. ov511->maxwidth = 640;
  2324. ov511->maxheight = 480;
  2325. ov511->minwidth = 64;
  2326. ov511->minheight = 48;
  2327. // FIXME: These do not match the actual settings yet
  2328. ov511->brightness = 0x80 << 8;
  2329. ov511->contrast = 0x80 << 8;
  2330. ov511->colour = 0x80 << 8;
  2331. ov511->hue = 0x80 << 8;
  2332. /* This device is not supported yet. Bail out now... */
  2333. err("This sensor is not supported yet.");
  2334. return -1;
  2335. return 0;
  2336. }
  2337. /* This initializes the SAA7111A video decoder. */
  2338. static int 
  2339. saa7111a_configure(struct usb_ov511 *ov511)
  2340. {
  2341. struct usb_device *dev = ov511->dev;
  2342. int rc;
  2343. /* Since there is no register reset command, all registers must be
  2344.  * written, otherwise gives erratic results */
  2345. static struct ov511_regvals aRegvalsNormSAA7111A[] = {
  2346. { OV511_I2C_BUS, 0x06, 0xce },
  2347. { OV511_I2C_BUS, 0x07, 0x00 },
  2348. { OV511_I2C_BUS, 0x10, 0x44 }, /* YUV422, 240/286 lines */
  2349. { OV511_I2C_BUS, 0x0e, 0x01 }, /* NTSC M or PAL BGHI */
  2350. { OV511_I2C_BUS, 0x00, 0x00 },
  2351. { OV511_I2C_BUS, 0x01, 0x00 },
  2352. { OV511_I2C_BUS, 0x03, 0x23 },
  2353. { OV511_I2C_BUS, 0x04, 0x00 },
  2354. { OV511_I2C_BUS, 0x05, 0x00 },
  2355. { OV511_I2C_BUS, 0x08, 0xc8 }, /* Auto field freq */
  2356. { OV511_I2C_BUS, 0x09, 0x01 }, /* Chrom. trap off, APER=0.25 */
  2357. { OV511_I2C_BUS, 0x0a, 0x80 }, /* BRIG=128 */
  2358. { OV511_I2C_BUS, 0x0b, 0x40 }, /* CONT=1.0 */
  2359. { OV511_I2C_BUS, 0x0c, 0x40 }, /* SATN=1.0 */
  2360. { OV511_I2C_BUS, 0x0d, 0x00 }, /* HUE=0 */
  2361. { OV511_I2C_BUS, 0x0f, 0x00 },
  2362. { OV511_I2C_BUS, 0x11, 0x0c },
  2363. { OV511_I2C_BUS, 0x12, 0x00 },
  2364. { OV511_I2C_BUS, 0x13, 0x00 },
  2365. { OV511_I2C_BUS, 0x14, 0x00 },
  2366. { OV511_I2C_BUS, 0x15, 0x00 },
  2367. { OV511_I2C_BUS, 0x16, 0x00 },
  2368. { OV511_I2C_BUS, 0x17, 0x00 },
  2369. { OV511_I2C_BUS, 0x02, 0xc0 }, /* Composite input 0 */
  2370. { OV511_DONE_BUS, 0x0, 0x00 },
  2371. };
  2372. // FIXME: I don't know how to sync or reset it yet
  2373. #if 0
  2374. if (ov51x_init_saa_sensor(ov511) < 0) {
  2375. err("Failed to initialize the SAA7111A");
  2376. return -1;
  2377. } else {
  2378. PDEBUG(1, "SAA7111A sensor detected");
  2379. }
  2380. #endif
  2381. /* Set sensor-specific vars */
  2382. ov511->maxwidth = 640;
  2383. ov511->maxheight = 480; /* Even/Odd fields */
  2384. ov511->minwidth = 320;
  2385. ov511->minheight = 240; /* Even field only */
  2386. ov511->has_decoder = 1;
  2387. ov511->num_inputs = 8;
  2388. ov511->norm = VIDEO_MODE_AUTO;
  2389. ov511->stop_during_set = 0; /* Decoder guarantees stable image */
  2390. /* Decoder doesn't change these values, so we use these instead of
  2391.  * acutally reading the registers (which doesn't work) */
  2392. ov511->brightness = 0x80 << 8;
  2393. ov511->contrast = 0x40 << 9;
  2394. ov511->colour = 0x40 << 9;
  2395. ov511->hue = 32768;
  2396. PDEBUG(4, "Writing SAA7111A registers");
  2397. if (ov511_write_regvals(ov511, aRegvalsNormSAA7111A))
  2398. return -1;
  2399. /* Detect version of decoder. This must be done after writing the
  2400.          * initial regs or the decoder will lock up. */
  2401. rc = ov51x_i2c_read(ov511, 0x00);
  2402. if (rc < 0) {
  2403. err("Error detecting sensor version");
  2404. return -1;
  2405. } else {
  2406. info("Sensor is an SAA7111A (version 0x%x)", rc);
  2407. ov511->sensor = SEN_SAA7111A;
  2408. }
  2409. // FIXME: Fix this for OV518(+)
  2410. /* Latch to negative edge of clock. Otherwise, we get incorrect
  2411.  * colors and jitter in the digital signal. */
  2412. if (ov511->bridge == BRG_OV511 || ov511->bridge == BRG_OV511PLUS)
  2413. ov511_reg_write(dev, 0x11, 0x00);
  2414. else
  2415. warn("SAA7111A not yet supported with OV518/OV518+");
  2416. return 0;
  2417. }
  2418. /* This initializes the OV511/OV511+ and the sensor */
  2419. static int 
  2420. ov511_configure(struct usb_ov511 *ov511)
  2421. {
  2422. struct usb_device *dev = ov511->dev;
  2423. int i;
  2424. static struct ov511_regvals aRegvalsInit511[] = {
  2425. { OV511_REG_BUS, OV511_REG_SYSTEM_RESET, 0x7f },
  2426.   { OV511_REG_BUS, OV511_REG_SYSTEM_INIT, 0x01 },
  2427.   { OV511_REG_BUS, OV511_REG_SYSTEM_RESET, 0x7f },
  2428. { OV511_REG_BUS, OV511_REG_SYSTEM_INIT, 0x01 },
  2429. { OV511_REG_BUS, OV511_REG_SYSTEM_RESET, 0x3f },
  2430. { OV511_REG_BUS, OV511_REG_SYSTEM_INIT, 0x01 },
  2431. { OV511_REG_BUS, OV511_REG_SYSTEM_RESET, 0x3d },
  2432. { OV511_DONE_BUS, 0x0, 0x00},
  2433. };
  2434. static struct ov511_regvals aRegvalsNorm511[] = {
  2435. { OV511_REG_BUS, OV511_REG_DRAM_ENABLE_FLOW_CONTROL, 0x01 },
  2436. { OV511_REG_BUS, OV511_REG_SYSTEM_SNAPSHOT, 0x01 },
  2437. { OV511_REG_BUS, OV511_REG_SYSTEM_SNAPSHOT, 0x03 },
  2438. { OV511_REG_BUS, OV511_REG_SYSTEM_SNAPSHOT, 0x01 },
  2439. { OV511_REG_BUS, OV511_REG_FIFO_BITMASK, 0x1f },
  2440. { OV511_REG_BUS, OV511_OMNICE_ENABLE, 0x00 },
  2441. { OV511_REG_BUS, OV511_OMNICE_LUT_ENABLE, 0x03 },
  2442. { OV511_DONE_BUS, 0x0, 0x00 },
  2443. };
  2444. static struct ov511_regvals aRegvalsNorm511Plus[] = {
  2445. { OV511_REG_BUS, OV511_REG_DRAM_ENABLE_FLOW_CONTROL, 0xff },
  2446. { OV511_REG_BUS, OV511_REG_SYSTEM_SNAPSHOT, 0x01 },
  2447. { OV511_REG_BUS, OV511_REG_SYSTEM_SNAPSHOT, 0x03 },
  2448. { OV511_REG_BUS, OV511_REG_SYSTEM_SNAPSHOT, 0x01 },
  2449. { OV511_REG_BUS, OV511_REG_FIFO_BITMASK, 0xff },
  2450. { OV511_REG_BUS, OV511_OMNICE_ENABLE, 0x00 },
  2451. { OV511_REG_BUS, OV511_OMNICE_LUT_ENABLE, 0x03 },
  2452. { OV511_DONE_BUS, 0x0, 0x00 },
  2453. };
  2454. PDEBUG(4, "");
  2455. ov511->customid = ov511_reg_read(dev, OV511_REG_SYSTEM_CUSTOM_ID);
  2456. if (ov511->customid < 0) {
  2457. err("Unable to read camera bridge registers");
  2458. goto error;
  2459. }
  2460. ov511->desc = -1;
  2461. PDEBUG (1, "CustomID = %d", ov511->customid);
  2462. for (i = 0; clist[i].id >= 0; i++) {
  2463. if (ov511->customid == clist[i].id) {
  2464. info("model: %s", clist[i].description);
  2465. ov511->desc = i;
  2466. break;
  2467. }
  2468. }
  2469. if (clist[i].id == -1) {
  2470. err("Camera type (%d) not recognized", ov511->customid);
  2471. err("Please notify " EMAIL " of the name,");
  2472. err("manufacturer, model, and this number of your camera.");
  2473. err("Also include the output of the detection process.");
  2474. if (clist[i].id == 6) { /* USB Life TV (NTSC) */
  2475. ov511->tuner_type = 8; /* Temic 4036FY5 3X 1981 */
  2476. }
  2477. if (ov511_write_regvals(ov511, aRegvalsInit511)) goto error;
  2478. if (ov511->led_policy == LED_OFF || ov511->led_policy == LED_AUTO)
  2479. ov51x_led_control(ov511, 0);
  2480. /* The OV511+ has undocumented bits in the flow control register.
  2481.  * Setting it to 0xff fixes the corruption with moving objects. */
  2482. if (ov511->bridge == BRG_OV511) {
  2483. if (ov511_write_regvals(ov511, aRegvalsNorm511)) goto error;
  2484. } else if (ov511->bridge == BRG_OV511PLUS) {
  2485. if (ov511_write_regvals(ov511, aRegvalsNorm511Plus)) goto error;
  2486. } else {
  2487. err("Invalid bridge");
  2488. }
  2489. if (ov511_init_compression(ov511)) goto error;
  2490. ov511_set_packet_size(ov511, 0);
  2491. ov511->snap_enabled = snapshot;
  2492. /* Test for 7xx0 */
  2493. PDEBUG(3, "Testing for 0V7xx0");
  2494. ov511->primary_i2c_slave = OV7xx0_I2C_WRITE_ID;
  2495. if (ov51x_set_slave_ids(ov511, OV7xx0_I2C_WRITE_ID,
  2496. OV7xx0_I2C_READ_ID) < 0)
  2497. goto error;
  2498. if (ov51x_i2c_write(ov511, 0x12, 0x80) < 0) {
  2499. /* Test for 6xx0 */
  2500. PDEBUG(3, "Testing for 0V6xx0");
  2501. ov511->primary_i2c_slave = OV6xx0_I2C_WRITE_ID;
  2502. if (ov51x_set_slave_ids(ov511, OV6xx0_I2C_WRITE_ID,
  2503. OV6xx0_I2C_READ_ID) < 0)
  2504. goto error;
  2505. if (ov51x_i2c_write(ov511, 0x12, 0x80) < 0) {
  2506. /* Test for 8xx0 */
  2507. PDEBUG(3, "Testing for 0V8xx0");
  2508. ov511->primary_i2c_slave = OV8xx0_I2C_WRITE_ID;
  2509. if (ov51x_set_slave_ids(ov511, OV8xx0_I2C_WRITE_ID,
  2510. OV8xx0_I2C_READ_ID))
  2511. goto error;
  2512. if (ov51x_i2c_write(ov511, 0x12, 0x80) < 0) {
  2513. /* Test for SAA7111A */
  2514. PDEBUG(3, "Testing for SAA7111A");
  2515. ov511->primary_i2c_slave = SAA7111A_I2C_WRITE_ID;
  2516. if (ov51x_set_slave_ids(ov511, SAA7111A_I2C_WRITE_ID,
  2517. SAA7111A_I2C_READ_ID))
  2518. goto error;
  2519. if (ov51x_i2c_write(ov511, 0x0d, 0x00) < 0) {
  2520. /* Test for KS0127 */
  2521. PDEBUG(3, "Testing for KS0127");
  2522. ov511->primary_i2c_slave = KS0127_I2C_WRITE_ID;
  2523. if (ov51x_set_slave_ids(ov511, KS0127_I2C_WRITE_ID,
  2524. KS0127_I2C_READ_ID))
  2525. goto error;
  2526. if (ov51x_i2c_write(ov511, 0x10, 0x00) < 0) {
  2527. err("Can't determine sensor slave IDs");
  2528.   goto error;
  2529. } else {
  2530. if(ks0127_configure(ov511) < 0) {
  2531. err("Failed to configure KS0127");
  2532.   goto error;
  2533. }
  2534. }
  2535. } else {
  2536. if(saa7111a_configure(ov511) < 0) {
  2537. err("Failed to configure SAA7111A");
  2538.   goto error;
  2539. }
  2540. }
  2541. } else {
  2542. err("Detected unsupported OV8xx0 sensor");
  2543. goto error;
  2544. }
  2545. } else {
  2546. if(ov6xx0_configure(ov511) < 0) {
  2547. err("Failed to configure OV6xx0");
  2548.   goto error;
  2549. }
  2550. }
  2551. } else {
  2552. if(ov7xx0_configure(ov511) < 0) {
  2553. err("Failed to configure OV7xx0");
  2554.   goto error;
  2555. }
  2556. }
  2557. return 0;
  2558. error:
  2559. err("OV511 Config failed");
  2560. return -EBUSY;
  2561. }
  2562. /* This initializes the OV518/OV518+ and the sensor */
  2563. static int 
  2564. ov518_configure(struct usb_ov511 *ov511)
  2565. {
  2566. struct usb_device *dev = ov511->dev;
  2567. static struct ov511_regvals aRegvalsInit518[] = {
  2568. { OV511_REG_BUS, OV511_REG_SYSTEM_RESET, 0x40 },
  2569.   { OV511_REG_BUS, OV511_REG_SYSTEM_INIT, 0xe1 },
  2570.   { OV511_REG_BUS, OV511_REG_SYSTEM_RESET, 0x3e },
  2571. { OV511_REG_BUS, OV511_REG_SYSTEM_INIT, 0xe1 },
  2572. { OV511_REG_BUS, OV511_REG_SYSTEM_RESET, 0x00 },
  2573. { OV511_REG_BUS, OV511_REG_SYSTEM_INIT, 0xe1 },
  2574. { OV511_REG_BUS, 0x46, 0x00 }, 
  2575. { OV511_REG_BUS, 0x5d, 0x03 },
  2576. { OV511_DONE_BUS, 0x0, 0x00},
  2577. };
  2578. /* New values, based on Windows driver. Since what they do is not
  2579.  * known yet, this may be incorrect. */
  2580. static struct ov511_regvals aRegvalsNorm518[] = {
  2581. { OV511_REG_BUS, 0x52, 0x02 }, /* Reset snapshot */
  2582. { OV511_REG_BUS, 0x52, 0x01 }, /* Enable snapshot */
  2583. { OV511_REG_BUS, 0x31, 0x0f },
  2584. { OV511_REG_BUS, 0x5d, 0x03 },
  2585. { OV511_REG_BUS, 0x24, 0x9f },
  2586. { OV511_REG_BUS, 0x25, 0x90 },
  2587. { OV511_REG_BUS, 0x20, 0x00 }, /* Was 0x08 */
  2588. { OV511_REG_BUS, 0x51, 0x04 },
  2589. { OV511_REG_BUS, 0x71, 0x19 },
  2590. { OV511_DONE_BUS, 0x0, 0x00 },
  2591. };
  2592. PDEBUG(4, "");
  2593. /* First 5 bits of custom ID reg are a revision ID on OV518 */
  2594. info("Device revision %d",
  2595.      0x1F & ov511_reg_read(dev, OV511_REG_SYSTEM_CUSTOM_ID));
  2596. if (ov511_write_regvals(ov511, aRegvalsInit518)) goto error;
  2597. /* Set LED GPIO pin to output mode */
  2598. if (ov511_reg_write_mask(dev, 0x57,0x00, 0x02) < 0) goto error;
  2599. /* LED is off by default with OV518; have to explicitly turn it on */
  2600. if (ov511->led_policy == LED_OFF || ov511->led_policy == LED_AUTO)
  2601. ov51x_led_control(ov511, 0);
  2602. else
  2603. ov51x_led_control(ov511, 1);
  2604. /* Don't require compression if dumppix is enabled; otherwise it's
  2605.  * required. OV518 has no uncompressed mode, to save RAM. */
  2606. if (!dumppix && !ov511->compress) {
  2607. ov511->compress = 1;
  2608. warn("Compression required with OV518...enabling");
  2609. }
  2610. if (ov511_write_regvals(ov511, aRegvalsNorm518)) goto error;
  2611. if (ov511_reg_write(dev, 0x2f,0x80) < 0) goto error;
  2612. if (ov518_init_compression(ov511)) goto error;
  2613. ov511_set_packet_size(ov511, 0);
  2614. ov511->snap_enabled = snapshot;
  2615. /* Test for 76xx */
  2616. ov511->primary_i2c_slave = OV7xx0_I2C_WRITE_ID;
  2617. if (ov51x_set_slave_ids(ov511, OV7xx0_I2C_WRITE_ID,
  2618. OV7xx0_I2C_READ_ID) < 0)
  2619. goto error;
  2620. /* The OV518 must be more aggressive about sensor detection since
  2621.  * I2C write will never fail if the sensor is not present. We have
  2622.  * to try to initialize the sensor to detect its presence */
  2623. if (ov51x_init_ov_sensor(ov511) < 0) {
  2624. /* Test for 6xx0 */
  2625. ov511->primary_i2c_slave = OV6xx0_I2C_WRITE_ID;
  2626. if (ov51x_set_slave_ids(ov511, OV6xx0_I2C_WRITE_ID,
  2627. OV6xx0_I2C_READ_ID) < 0)
  2628. goto error;
  2629. if (ov51x_init_ov_sensor(ov511) < 0) {
  2630. /* Test for 8xx0 */
  2631. ov511->primary_i2c_slave = OV8xx0_I2C_WRITE_ID;
  2632. if (ov51x_set_slave_ids(ov511, OV8xx0_I2C_WRITE_ID,
  2633. OV8xx0_I2C_READ_ID) < 0)
  2634. goto error;
  2635. if (ov51x_init_ov_sensor(ov511) < 0) {
  2636. err("Can't determine sensor slave IDs");
  2637.   goto error;
  2638. } else {
  2639. err("Detected unsupported OV8xx0 sensor");
  2640. goto error;
  2641. }
  2642. } else {
  2643. if (ov6xx0_configure(ov511) < 0) {
  2644. err("Failed to configure OV6xx0");
  2645.   goto error;
  2646. }
  2647. }
  2648. } else {
  2649. if (ov7xx0_configure(ov511) < 0) {
  2650. err("Failed to configure OV7xx0");
  2651.   goto error;
  2652. }
  2653. }
  2654. // The OV518 cannot go as low as the sensor can
  2655. ov511->minwidth = 160;
  2656. ov511->minheight = 120;
  2657. return 0;
  2658. error:
  2659. err("OV518 Config failed");
  2660. return -EBUSY;
  2661. }
  2662. /****************************************************************************
  2663.  *
  2664.  *  USB routines
  2665.  *
  2666.  ***************************************************************************/
  2667. static void *
  2668. ov51x_probe(struct usb_device *dev, unsigned int ifnum,
  2669.     const struct usb_device_id *id)
  2670. {
  2671. struct usb_interface_descriptor *interface;
  2672. struct usb_ov511 *ov511;
  2673. int i;
  2674. int registered = 0;
  2675. PDEBUG(1, "probing for device...");
  2676. /* We don't handle multi-config cameras */
  2677. if (dev->descriptor.bNumConfigurations != 1)
  2678. return NULL;
  2679. interface = &dev->actconfig->interface[ifnum].altsetting[0];
  2680. /* Checking vendor/product should be enough, but what the hell */
  2681. if (interface->bInterfaceClass != 0xFF)
  2682. return NULL;
  2683. if (interface->bInterfaceSubClass != 0x00)
  2684. return NULL;
  2685. /* Since code below may sleep, we use this as a lock */
  2686. MOD_INC_USE_COUNT;
  2687. if ((ov511 = kmalloc(sizeof(*ov511), GFP_KERNEL)) == NULL) {
  2688. err("couldn't kmalloc ov511 struct");
  2689. goto error_unlock;
  2690. }
  2691. memset(ov511, 0, sizeof(*ov511));
  2692. ov511->dev = dev;
  2693. ov511->iface = interface->bInterfaceNumber;
  2694. ov511->led_policy = led;
  2695. ov511->compress = compress;
  2696. ov511->lightfreq = lightfreq;
  2697. ov511->num_inputs = 1;    /* Video decoder init functs. change this */
  2698. ov511->stop_during_set = !fastset;
  2699. ov511->tuner_type = tuner;
  2700. ov511->backlight = backlight;
  2701. ov511->auto_brt = autobright;
  2702. ov511->auto_gain = autogain;
  2703. ov511->auto_exp = autoexp;
  2704. switch (dev->descriptor.idProduct) {
  2705. case PROD_OV511:
  2706. info("USB OV511 camera found");
  2707. ov511->bridge = BRG_OV511;
  2708. ov511->bclass = BCL_OV511;
  2709. break;
  2710. case PROD_OV511PLUS:
  2711. info("USB OV511+ camera found");
  2712. ov511->bridge = BRG_OV511PLUS;
  2713. ov511->bclass = BCL_OV511;
  2714. break;
  2715. case PROD_OV518:
  2716. info("USB OV518 camera found");
  2717. ov511->bridge = BRG_OV518;
  2718. ov511->bclass = BCL_OV518;
  2719. break;
  2720. case PROD_OV518PLUS:
  2721. info("USB OV518+ camera found");
  2722. ov511->bridge = BRG_OV518PLUS;
  2723. ov511->bclass = BCL_OV518;
  2724. break;
  2725. case PROD_ME2CAM:
  2726. if (dev->descriptor.idVendor != VEND_MATTEL)
  2727. goto error;
  2728. info("Intel Play Me2Cam (OV511+) found");
  2729. ov511->bridge = BRG_OV511PLUS;
  2730. ov511->bclass = BCL_OV511;
  2731. break;
  2732. default:
  2733. err("Unknown product ID 0x%x", dev->descriptor.idProduct);
  2734. goto error_dealloc;
  2735. }
  2736. /* Workaround for some applications that want data in RGB
  2737.  * instead of BGR. */
  2738. if (force_rgb)
  2739. info("data format set to RGB");
  2740. init_waitqueue_head(&ov511->wq);
  2741. init_MUTEX(&ov511->lock); /* to 1 == available */
  2742. init_MUTEX(&ov511->buf_lock);
  2743. init_MUTEX(&ov511->param_lock);
  2744. init_MUTEX(&ov511->i2c_lock);
  2745. ov511->buf_state = BUF_NOT_ALLOCATED;
  2746. if (ov511->bridge == BRG_OV518 ||
  2747.     ov511->bridge == BRG_OV518PLUS) {
  2748. if (ov518_configure(ov511) < 0)
  2749. goto error;
  2750. } else {
  2751. if (ov511_configure(ov511) < 0)
  2752. goto error;
  2753. }
  2754. for (i = 0; i < OV511_NUMFRAMES; i++) {
  2755. ov511->frame[i].framenum = i;
  2756. init_waitqueue_head(&ov511->frame[i].wq);
  2757. }
  2758. /* Unnecessary? (This is done on open(). Need to make sure variables
  2759.  * are properly initialized without this before removing it, though). */
  2760. if (ov51x_set_default_params(ov511) < 0)
  2761. goto error;
  2762. #ifdef OV511_DEBUG
  2763. if (dump_bridge)
  2764. ov511_dump_regs(dev);
  2765. #endif
  2766. memcpy(&ov511->vdev, &ov511_template, sizeof(ov511_template));
  2767. ov511->vdev.priv = ov511;
  2768. for (i = 0; i < OV511_MAX_UNIT_VIDEO; i++) {
  2769. /* Minor 0 cannot be specified; assume user wants autodetect */
  2770. if (unit_video[i] == 0)
  2771. break;
  2772. if (video_register_device(&ov511->vdev, VFL_TYPE_GRABBER,
  2773. unit_video[i]) >= 0) {
  2774. registered = 1;
  2775. break;
  2776. }
  2777. }
  2778. /* Use the next available one */
  2779. if (!registered &&
  2780.     video_register_device(&ov511->vdev, VFL_TYPE_GRABBER, -1) < 0) {
  2781. err("video_register_device failed");
  2782. goto error;
  2783. }
  2784. info("Device registered on minor %d", ov511->vdev.minor);
  2785. MOD_DEC_USE_COUNT;
  2786.       return ov511;
  2787. error:
  2788. err("Camera initialization failed");
  2789. #if defined(CONFIG_PROC_FS) && defined(CONFIG_VIDEO_PROC_FS)
  2790. /* Safe to call even if entry doesn't exist */
  2791. destroy_proc_ov511_cam(ov511);
  2792. #endif
  2793. usb_driver_release_interface(&ov511_driver,
  2794. &dev->actconfig->interface[ov511->iface]);
  2795. error_dealloc:
  2796. if (ov511) {
  2797. kfree(ov511);
  2798. ov511 = NULL;
  2799. }
  2800. error_unlock:
  2801. MOD_DEC_USE_COUNT;
  2802. return NULL;
  2803. }
  2804. static void
  2805. ov51x_disconnect(struct usb_device *dev, void *ptr)
  2806. {
  2807. struct usb_ov511 *ov511 = (struct usb_ov511 *) ptr;
  2808. int n;
  2809. MOD_INC_USE_COUNT;
  2810. PDEBUG(3, "");
  2811. /* We don't want people trying to open up the device */
  2812. if (!ov511->user)
  2813. video_unregister_device(&ov511->vdev);
  2814. else
  2815. PDEBUG(3, "Device open...deferring video_unregister_device");
  2816. for (n = 0; n < OV511_NUMFRAMES; n++)
  2817. ov511->frame[n].grabstate = FRAME_ERROR;
  2818. ov511->curframe = -1;
  2819. /* This will cause the process to request another frame */
  2820. for (n = 0; n < OV511_NUMFRAMES; n++)
  2821. if (waitqueue_active(&ov511->frame[n].wq))
  2822. wake_up_interruptible(&ov511->frame[n].wq);
  2823. if (waitqueue_active(&ov511->wq))
  2824. wake_up_interruptible(&ov511->wq);
  2825. ov511->streaming = 0;
  2826. /* Unschedule all of the iso td's */
  2827. for (n = OV511_NUMSBUF - 1; n >= 0; n--) {
  2828. if (ov511->sbuf[n].urb) {
  2829. ov511->sbuf[n].urb->next = NULL;
  2830. usb_unlink_urb(ov511->sbuf[n].urb);
  2831. usb_free_urb(ov511->sbuf[n].urb);
  2832. ov511->sbuf[n].urb = NULL;
  2833. }
  2834. }
  2835. #if defined(CONFIG_PROC_FS) && defined(CONFIG_VIDEO_PROC_FS)
  2836.         destroy_proc_ov511_cam(ov511);
  2837. #endif
  2838. usb_driver_release_interface(&ov511_driver,
  2839. &ov511->dev->actconfig->interface[ov511->iface]);
  2840. ov511->dev = NULL;
  2841. /* Free the memory */
  2842. if (ov511 && !ov511->user) {
  2843. ov511_dealloc(ov511, 1);
  2844. kfree(ov511);
  2845. ov511 = NULL;
  2846. }
  2847. MOD_DEC_USE_COUNT;
  2848. }
  2849. static struct usb_driver ov511_driver = {
  2850. name: "ov511",
  2851. id_table:       device_table,
  2852. probe: ov51x_probe,
  2853. disconnect: ov51x_disconnect
  2854. };
  2855. /****************************************************************************
  2856.  *
  2857.  *  Module routines
  2858.  *
  2859.  ***************************************************************************/
  2860. /* Returns 0 for success */
  2861. int 
  2862. ov511_register_decomp_module(int ver, struct ov51x_decomp_ops *ops, int ov518,
  2863.      int mmx)
  2864. {
  2865. if (ver != DECOMP_INTERFACE_VER) {
  2866. err("Decompression module has incompatible");
  2867. err("interface version %d", ver);
  2868. err("Interface version %d is required", DECOMP_INTERFACE_VER);
  2869. return -EINVAL;
  2870. }
  2871. if (!ops)
  2872. return -EFAULT;
  2873. if (mmx && !ov51x_mmx_available) {
  2874. err("MMX not available on this system or kernel");
  2875. return -EINVAL;
  2876. }
  2877. lock_kernel();
  2878. if (ov518) {
  2879. if (mmx) {
  2880. if (ov518_mmx_decomp_ops)
  2881. goto err_in_use;
  2882. else
  2883. ov518_mmx_decomp_ops = ops;
  2884. } else {
  2885. if (ov518_decomp_ops)
  2886. goto err_in_use;
  2887. else
  2888. ov518_decomp_ops = ops;
  2889. }
  2890. } else {
  2891. if (mmx) {
  2892. if (ov511_mmx_decomp_ops)
  2893. goto err_in_use;
  2894. else
  2895. ov511_mmx_decomp_ops = ops;
  2896. } else {
  2897. if (ov511_decomp_ops)
  2898. goto err_in_use;
  2899. else
  2900. ov511_decomp_ops = ops;
  2901. }
  2902. }
  2903. MOD_INC_USE_COUNT;
  2904. unlock_kernel();
  2905. return 0;
  2906. err_in_use:
  2907. unlock_kernel();
  2908. return -EBUSY;
  2909. }
  2910. void 
  2911. ov511_deregister_decomp_module(int ov518, int mmx)
  2912. {
  2913. lock_kernel();
  2914. if (ov518) {
  2915. if (mmx)
  2916. ov518_mmx_decomp_ops = NULL;
  2917. else
  2918. ov518_decomp_ops = NULL;
  2919. } else {
  2920. if (mmx)
  2921. ov511_mmx_decomp_ops = NULL;
  2922. else
  2923. ov511_decomp_ops = NULL;
  2924. }
  2925. MOD_DEC_USE_COUNT;
  2926. unlock_kernel();
  2927. }
  2928. static int __init 
  2929. usb_ov511_init(void)
  2930. {
  2931. #if defined(CONFIG_PROC_FS) && defined(CONFIG_VIDEO_PROC_FS)
  2932.         proc_ov511_create();
  2933. #endif
  2934. if (usb_register(&ov511_driver) < 0)
  2935. return -1;
  2936. // FIXME: Don't know how to determine this yet
  2937. ov51x_mmx_available = 0;
  2938. #if defined (__i386__)
  2939. if (test_bit(X86_FEATURE_MMX, &boot_cpu_data.x86_capability))
  2940. ov51x_mmx_available = 1;
  2941. #endif
  2942. info(DRIVER_VERSION " : " DRIVER_DESC);
  2943. return 0;
  2944. }
  2945. static void __exit 
  2946. usb_ov511_exit(void)
  2947. {
  2948. usb_deregister(&ov511_driver);
  2949. info("driver deregistered");
  2950. #if defined(CONFIG_PROC_FS) && defined(CONFIG_VIDEO_PROC_FS)
  2951.         proc_ov511_destroy();
  2952. #endif
  2953. }
  2954. module_init(usb_ov511_init);
  2955. module_exit(usb_ov511_exit);
  2956. /* No version, for compatibility with binary-only modules */
  2957. EXPORT_SYMBOL_NOVERS(ov511_register_decomp_module);
  2958. EXPORT_SYMBOL_NOVERS(ov511_deregister_decomp_module);