usbvision-video.c 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088
  1. /*
  2. * USB USBVISION Video device driver 0.9.9
  3. *
  4. *
  5. *
  6. * Copyright (c) 1999-2005 Joerg Heckenbach <joerg@heckenbach-aw.de>
  7. *
  8. * This module is part of usbvision driver project.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23. *
  24. * Let's call the version 0.... until compression decoding is completely
  25. * implemented.
  26. *
  27. * This driver is written by Jose Ignacio Gijon and Joerg Heckenbach.
  28. * It was based on USB CPiA driver written by Peter Pregler,
  29. * Scott J. Bertin and Johannes Erdfelt
  30. * Ideas are taken from bttv driver by Ralph Metzler, Marcus Metzler &
  31. * Gerd Knorr and zoran 36120/36125 driver by Pauline Middelink
  32. * Updates to driver completed by Dwaine P. Garden
  33. *
  34. *
  35. * TODO:
  36. * - use submit_urb for all setup packets
  37. * - Fix memory settings for nt1004. It is 4 times as big as the
  38. * nt1003 memory.
  39. * - Add audio on endpoint 3 for nt1004 chip. Seems impossible, needs a codec interface. Which one?
  40. * - Clean up the driver.
  41. * - optimization for performance.
  42. * - Add Videotext capability (VBI). Working on it.....
  43. * - Check audio for other devices
  44. *
  45. */
  46. #include <linux/version.h>
  47. #include <linux/kernel.h>
  48. #include <linux/list.h>
  49. #include <linux/timer.h>
  50. #include <linux/slab.h>
  51. #include <linux/mm.h>
  52. #include <linux/utsname.h>
  53. #include <linux/highmem.h>
  54. #include <linux/smp_lock.h>
  55. #include <linux/videodev.h>
  56. #include <linux/vmalloc.h>
  57. #include <linux/module.h>
  58. #include <linux/init.h>
  59. #include <linux/spinlock.h>
  60. #include <asm/io.h>
  61. #include <linux/videodev2.h>
  62. #include <linux/video_decoder.h>
  63. #include <linux/i2c.h>
  64. #include <media/saa7115.h>
  65. #include <media/v4l2-common.h>
  66. #include <media/tuner.h>
  67. #include <media/audiochip.h>
  68. #include <linux/moduleparam.h>
  69. #include <linux/workqueue.h>
  70. #ifdef CONFIG_KMOD
  71. #include <linux/kmod.h>
  72. #endif
  73. #include "usbvision.h"
  74. #define DRIVER_AUTHOR "Joerg Heckenbach <joerg@heckenbach-aw.de>, Dwaine Garden <DwaineGarden@rogers.com>"
  75. #define DRIVER_NAME "usbvision"
  76. #define DRIVER_ALIAS "USBVision"
  77. #define DRIVER_DESC "USBVision USB Video Device Driver for Linux"
  78. #define DRIVER_LICENSE "GPL"
  79. #define USBVISION_DRIVER_VERSION_MAJOR 0
  80. #define USBVISION_DRIVER_VERSION_MINOR 9
  81. #define USBVISION_DRIVER_VERSION_PATCHLEVEL 9
  82. #define USBVISION_DRIVER_VERSION KERNEL_VERSION(USBVISION_DRIVER_VERSION_MAJOR,USBVISION_DRIVER_VERSION_MINOR,USBVISION_DRIVER_VERSION_PATCHLEVEL)
  83. #define USBVISION_VERSION_STRING __stringify(USBVISION_DRIVER_VERSION_MAJOR) "." __stringify(USBVISION_DRIVER_VERSION_MINOR) "." __stringify(USBVISION_DRIVER_VERSION_PATCHLEVEL)
  84. #define ENABLE_HEXDUMP 0 /* Enable if you need it */
  85. #ifdef USBVISION_DEBUG
  86. #define PDEBUG(level, fmt, args...) \
  87. if (video_debug & (level)) info("[%s:%d] " fmt, __PRETTY_FUNCTION__, __LINE__ , ## args)
  88. #else
  89. #define PDEBUG(level, fmt, args...) do {} while(0)
  90. #endif
  91. #define DBG_IOCTL 1<<0
  92. #define DBG_IO 1<<1
  93. #define DBG_PROBE 1<<2
  94. #define DBG_MMAP 1<<3
  95. //String operations
  96. #define rmspace(str) while(*str==' ') str++;
  97. #define goto2next(str) while(*str!=' ') str++; while(*str==' ') str++;
  98. static int usbvision_nr = 0; // sequential number of usbvision device
  99. static struct usbvision_v4l2_format_st usbvision_v4l2_format[] = {
  100. { 1, 1, 8, V4L2_PIX_FMT_GREY , "GREY" },
  101. { 1, 2, 16, V4L2_PIX_FMT_RGB565 , "RGB565" },
  102. { 1, 3, 24, V4L2_PIX_FMT_RGB24 , "RGB24" },
  103. { 1, 4, 32, V4L2_PIX_FMT_RGB32 , "RGB32" },
  104. { 1, 2, 16, V4L2_PIX_FMT_RGB555 , "RGB555" },
  105. { 1, 2, 16, V4L2_PIX_FMT_YUYV , "YUV422" },
  106. { 1, 2, 12, V4L2_PIX_FMT_YVU420 , "YUV420P" }, // 1.5 !
  107. { 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" }
  108. };
  109. /* supported tv norms */
  110. static struct usbvision_tvnorm tvnorms[] = {
  111. {
  112. .name = "PAL",
  113. .id = V4L2_STD_PAL,
  114. }, {
  115. .name = "NTSC",
  116. .id = V4L2_STD_NTSC,
  117. }, {
  118. .name = "SECAM",
  119. .id = V4L2_STD_SECAM,
  120. }, {
  121. .name = "PAL-M",
  122. .id = V4L2_STD_PAL_M,
  123. }
  124. };
  125. #define TVNORMS ARRAY_SIZE(tvnorms)
  126. // Function prototypes
  127. static void usbvision_release(struct usb_usbvision *usbvision);
  128. // Default initalization of device driver parameters
  129. static int isocMode = ISOC_MODE_COMPRESS; // Set the default format for ISOC endpoint
  130. static int video_debug = 0; // Set the default Debug Mode of the device driver
  131. static int PowerOnAtOpen = 1; // Set the default device to power on at startup
  132. static int video_nr = -1; // Sequential Number of Video Device
  133. static int radio_nr = -1; // Sequential Number of Radio Device
  134. static int vbi_nr = -1; // Sequential Number of VBI Device
  135. static char *CustomDevice=NULL; // Set as nothing....
  136. // Grab parameters for the device driver
  137. #if defined(module_param) // Showing parameters under SYSFS
  138. module_param(isocMode, int, 0444);
  139. module_param(video_debug, int, 0444);
  140. module_param(PowerOnAtOpen, int, 0444);
  141. module_param(video_nr, int, 0444);
  142. module_param(radio_nr, int, 0444);
  143. module_param(vbi_nr, int, 0444);
  144. module_param(CustomDevice, charp, 0444);
  145. #else // Old Style
  146. MODULE_PARAM(isocMode, "i");
  147. MODULE_PARM(video_debug, "i"); // Grab the Debug Mode of the device driver
  148. MODULE_PARM(adjustCompression, "i"); // Grab the compression to be adaptive
  149. MODULE_PARM(PowerOnAtOpen, "i"); // Grab the device to power on at startup
  150. MODULE_PARM(SwitchSVideoInput, "i"); // To help people with Black and White output with using s-video input. Some cables and input device are wired differently.
  151. MODULE_PARM(video_nr, "i"); // video_nr option allows to specify a certain /dev/videoX device (like /dev/video0 or /dev/video1 ...)
  152. MODULE_PARM(radio_nr, "i"); // radio_nr option allows to specify a certain /dev/radioX device (like /dev/radio0 or /dev/radio1 ...)
  153. MODULE_PARM(vbi_nr, "i"); // vbi_nr option allows to specify a certain /dev/vbiX device (like /dev/vbi0 or /dev/vbi1 ...)
  154. MODULE_PARM(CustomDevice, "s"); // .... CustomDevice
  155. #endif
  156. MODULE_PARM_DESC(isocMode, " Set the default format for ISOC endpoint. Default: 0x60 (Compression On)");
  157. MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver. Default: 0 (Off)");
  158. MODULE_PARM_DESC(PowerOnAtOpen, " Set the default device to power on when device is opened. Default: 1 (On)");
  159. MODULE_PARM_DESC(video_nr, "Set video device number (/dev/videoX). Default: -1 (autodetect)");
  160. MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)");
  161. MODULE_PARM_DESC(vbi_nr, "Set vbi device number (/dev/vbiX). Default: -1 (autodetect)");
  162. MODULE_PARM_DESC(CustomDevice, " Define the fine tuning parameters for the device. Default: null");
  163. // Misc stuff
  164. MODULE_AUTHOR(DRIVER_AUTHOR);
  165. MODULE_DESCRIPTION(DRIVER_DESC);
  166. MODULE_LICENSE(DRIVER_LICENSE);
  167. MODULE_VERSION(USBVISION_VERSION_STRING);
  168. MODULE_ALIAS(DRIVER_ALIAS);
  169. /****************************************************************************************/
  170. /* SYSFS Code - Copied from the stv680.c usb module. */
  171. /* Device information is located at /sys/class/video4linux/video0 */
  172. /* Device parameters information is located at /sys/module/usbvision */
  173. /* Device USB Information is located at /sys/bus/usb/drivers/USBVision Video Grabber */
  174. /****************************************************************************************/
  175. #define YES_NO(x) ((x) ? "Yes" : "No")
  176. static inline struct usb_usbvision *cd_to_usbvision(struct class_device *cd)
  177. {
  178. struct video_device *vdev = container_of(cd, struct video_device, class_dev);
  179. return video_get_drvdata(vdev);
  180. }
  181. static ssize_t show_version(struct class_device *cd, char *buf)
  182. {
  183. return sprintf(buf, "%s\n", USBVISION_VERSION_STRING);
  184. }
  185. static CLASS_DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
  186. static ssize_t show_model(struct class_device *cd, char *buf)
  187. {
  188. struct video_device *vdev = container_of(cd, struct video_device, class_dev);
  189. struct usb_usbvision *usbvision = video_get_drvdata(vdev);
  190. return sprintf(buf, "%s\n", usbvision_device_data[usbvision->DevModel].ModelString);
  191. }
  192. static CLASS_DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
  193. static ssize_t show_hue(struct class_device *cd, char *buf)
  194. {
  195. struct video_device *vdev = container_of(cd, struct video_device, class_dev);
  196. struct usb_usbvision *usbvision = video_get_drvdata(vdev);
  197. struct v4l2_control ctrl;
  198. ctrl.id = V4L2_CID_HUE;
  199. ctrl.value = 0;
  200. if(usbvision->user)
  201. call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
  202. return sprintf(buf, "%d\n", ctrl.value >> 8);
  203. }
  204. static CLASS_DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL);
  205. static ssize_t show_contrast(struct class_device *cd, char *buf)
  206. {
  207. struct video_device *vdev = container_of(cd, struct video_device, class_dev);
  208. struct usb_usbvision *usbvision = video_get_drvdata(vdev);
  209. struct v4l2_control ctrl;
  210. ctrl.id = V4L2_CID_CONTRAST;
  211. ctrl.value = 0;
  212. if(usbvision->user)
  213. call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
  214. return sprintf(buf, "%d\n", ctrl.value >> 8);
  215. }
  216. static CLASS_DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
  217. static ssize_t show_brightness(struct class_device *cd, char *buf)
  218. {
  219. struct video_device *vdev = container_of(cd, struct video_device, class_dev);
  220. struct usb_usbvision *usbvision = video_get_drvdata(vdev);
  221. struct v4l2_control ctrl;
  222. ctrl.id = V4L2_CID_BRIGHTNESS;
  223. ctrl.value = 0;
  224. if(usbvision->user)
  225. call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
  226. return sprintf(buf, "%d\n", ctrl.value >> 8);
  227. }
  228. static CLASS_DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL);
  229. static ssize_t show_saturation(struct class_device *cd, char *buf)
  230. {
  231. struct video_device *vdev = container_of(cd, struct video_device, class_dev);
  232. struct usb_usbvision *usbvision = video_get_drvdata(vdev);
  233. struct v4l2_control ctrl;
  234. ctrl.id = V4L2_CID_SATURATION;
  235. ctrl.value = 0;
  236. if(usbvision->user)
  237. call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
  238. return sprintf(buf, "%d\n", ctrl.value >> 8);
  239. }
  240. static CLASS_DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL);
  241. static ssize_t show_streaming(struct class_device *cd, char *buf)
  242. {
  243. struct video_device *vdev = container_of(cd, struct video_device, class_dev);
  244. struct usb_usbvision *usbvision = video_get_drvdata(vdev);
  245. return sprintf(buf, "%s\n", YES_NO(usbvision->streaming==Stream_On?1:0));
  246. }
  247. static CLASS_DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL);
  248. static ssize_t show_compression(struct class_device *cd, char *buf)
  249. {
  250. struct video_device *vdev = container_of(cd, struct video_device, class_dev);
  251. struct usb_usbvision *usbvision = video_get_drvdata(vdev);
  252. return sprintf(buf, "%s\n", YES_NO(usbvision->isocMode==ISOC_MODE_COMPRESS));
  253. }
  254. static CLASS_DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL);
  255. static ssize_t show_device_bridge(struct class_device *cd, char *buf)
  256. {
  257. struct video_device *vdev = container_of(cd, struct video_device, class_dev);
  258. struct usb_usbvision *usbvision = video_get_drvdata(vdev);
  259. return sprintf(buf, "%d\n", usbvision->bridgeType);
  260. }
  261. static CLASS_DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL);
  262. static void usbvision_create_sysfs(struct video_device *vdev)
  263. {
  264. int res;
  265. if (!vdev)
  266. return;
  267. do {
  268. res=class_device_create_file(&vdev->class_dev,
  269. &class_device_attr_version);
  270. if (res<0)
  271. break;
  272. res=class_device_create_file(&vdev->class_dev,
  273. &class_device_attr_model);
  274. if (res<0)
  275. break;
  276. res=class_device_create_file(&vdev->class_dev,
  277. &class_device_attr_hue);
  278. if (res<0)
  279. break;
  280. res=class_device_create_file(&vdev->class_dev,
  281. &class_device_attr_contrast);
  282. if (res<0)
  283. break;
  284. res=class_device_create_file(&vdev->class_dev,
  285. &class_device_attr_brightness);
  286. if (res<0)
  287. break;
  288. res=class_device_create_file(&vdev->class_dev,
  289. &class_device_attr_saturation);
  290. if (res<0)
  291. break;
  292. res=class_device_create_file(&vdev->class_dev,
  293. &class_device_attr_streaming);
  294. if (res<0)
  295. break;
  296. res=class_device_create_file(&vdev->class_dev,
  297. &class_device_attr_compression);
  298. if (res<0)
  299. break;
  300. res=class_device_create_file(&vdev->class_dev,
  301. &class_device_attr_bridge);
  302. if (res>=0)
  303. return;
  304. } while (0);
  305. err("%s error: %d\n", __FUNCTION__, res);
  306. }
  307. static void usbvision_remove_sysfs(struct video_device *vdev)
  308. {
  309. if (vdev) {
  310. class_device_remove_file(&vdev->class_dev,
  311. &class_device_attr_version);
  312. class_device_remove_file(&vdev->class_dev,
  313. &class_device_attr_model);
  314. class_device_remove_file(&vdev->class_dev,
  315. &class_device_attr_hue);
  316. class_device_remove_file(&vdev->class_dev,
  317. &class_device_attr_contrast);
  318. class_device_remove_file(&vdev->class_dev,
  319. &class_device_attr_brightness);
  320. class_device_remove_file(&vdev->class_dev,
  321. &class_device_attr_saturation);
  322. class_device_remove_file(&vdev->class_dev,
  323. &class_device_attr_streaming);
  324. class_device_remove_file(&vdev->class_dev,
  325. &class_device_attr_compression);
  326. class_device_remove_file(&vdev->class_dev,
  327. &class_device_attr_bridge);
  328. }
  329. }
  330. /*
  331. * usbvision_open()
  332. *
  333. * This is part of Video 4 Linux API. The driver can be opened by one
  334. * client only (checks internal counter 'usbvision->user'). The procedure
  335. * then allocates buffers needed for video processing.
  336. *
  337. */
  338. static int usbvision_v4l2_open(struct inode *inode, struct file *file)
  339. {
  340. struct video_device *dev = video_devdata(file);
  341. struct usb_usbvision *usbvision = (struct usb_usbvision *) video_get_drvdata(dev);
  342. int errCode = 0;
  343. PDEBUG(DBG_IO, "open");
  344. usbvision_reset_powerOffTimer(usbvision);
  345. if (usbvision->user)
  346. errCode = -EBUSY;
  347. else {
  348. /* Allocate memory for the scratch ring buffer */
  349. errCode = usbvision_scratch_alloc(usbvision);
  350. if (isocMode==ISOC_MODE_COMPRESS) {
  351. /* Allocate intermediate decompression buffers only if needed */
  352. errCode = usbvision_decompress_alloc(usbvision);
  353. }
  354. if (errCode) {
  355. /* Deallocate all buffers if trouble */
  356. usbvision_scratch_free(usbvision);
  357. usbvision_decompress_free(usbvision);
  358. }
  359. }
  360. /* If so far no errors then we shall start the camera */
  361. if (!errCode) {
  362. down(&usbvision->lock);
  363. if (usbvision->power == 0) {
  364. usbvision_power_on(usbvision);
  365. usbvision_init_i2c(usbvision);
  366. }
  367. /* Send init sequence only once, it's large! */
  368. if (!usbvision->initialized) {
  369. int setup_ok = 0;
  370. setup_ok = usbvision_setup(usbvision,isocMode);
  371. if (setup_ok)
  372. usbvision->initialized = 1;
  373. else
  374. errCode = -EBUSY;
  375. }
  376. if (!errCode) {
  377. usbvision_begin_streaming(usbvision);
  378. errCode = usbvision_init_isoc(usbvision);
  379. /* device needs to be initialized before isoc transfer */
  380. usbvision_muxsel(usbvision,0);
  381. usbvision->user++;
  382. }
  383. else {
  384. if (PowerOnAtOpen) {
  385. usbvision_i2c_usb_del_bus(&usbvision->i2c_adap);
  386. usbvision_power_off(usbvision);
  387. usbvision->initialized = 0;
  388. }
  389. }
  390. up(&usbvision->lock);
  391. }
  392. if (errCode) {
  393. }
  394. /* prepare queues */
  395. usbvision_empty_framequeues(usbvision);
  396. PDEBUG(DBG_IO, "success");
  397. return errCode;
  398. }
  399. /*
  400. * usbvision_v4l2_close()
  401. *
  402. * This is part of Video 4 Linux API. The procedure
  403. * stops streaming and deallocates all buffers that were earlier
  404. * allocated in usbvision_v4l2_open().
  405. *
  406. */
  407. static int usbvision_v4l2_close(struct inode *inode, struct file *file)
  408. {
  409. struct video_device *dev = video_devdata(file);
  410. struct usb_usbvision *usbvision = (struct usb_usbvision *) video_get_drvdata(dev);
  411. PDEBUG(DBG_IO, "close");
  412. down(&usbvision->lock);
  413. usbvision_audio_off(usbvision);
  414. usbvision_restart_isoc(usbvision);
  415. usbvision_stop_isoc(usbvision);
  416. usbvision_decompress_free(usbvision);
  417. usbvision_frames_free(usbvision);
  418. usbvision_empty_framequeues(usbvision);
  419. usbvision_scratch_free(usbvision);
  420. usbvision->user--;
  421. if (PowerOnAtOpen) {
  422. /* power off in a little while to avoid off/on every close/open short sequences */
  423. usbvision_set_powerOffTimer(usbvision);
  424. usbvision->initialized = 0;
  425. }
  426. up(&usbvision->lock);
  427. if (usbvision->remove_pending) {
  428. printk(KERN_INFO "%s: Final disconnect\n", __FUNCTION__);
  429. usbvision_release(usbvision);
  430. }
  431. PDEBUG(DBG_IO, "success");
  432. return 0;
  433. }
  434. /*
  435. * usbvision_ioctl()
  436. *
  437. * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
  438. *
  439. */
  440. static int usbvision_v4l2_do_ioctl(struct inode *inode, struct file *file,
  441. unsigned int cmd, void *arg)
  442. {
  443. struct video_device *dev = video_devdata(file);
  444. struct usb_usbvision *usbvision = (struct usb_usbvision *) video_get_drvdata(dev);
  445. if (!USBVISION_IS_OPERATIONAL(usbvision))
  446. return -EFAULT;
  447. switch (cmd) {
  448. #ifdef CONFIG_VIDEO_ADV_DEBUG
  449. /* ioctls to allow direct acces to the NT100x registers */
  450. case VIDIOC_DBG_G_REGISTER:
  451. case VIDIOC_DBG_S_REGISTER:
  452. {
  453. struct v4l2_register *reg = arg;
  454. int errCode;
  455. if (reg->i2c_id != 0)
  456. return -EINVAL;
  457. if (!capable(CAP_SYS_ADMIN))
  458. return -EPERM;
  459. /* NT100x has a 8-bit register space */
  460. if (cmd == VIDIOC_DBG_G_REGISTER)
  461. errCode = usbvision_read_reg(usbvision, reg->reg&0xff);
  462. else
  463. errCode = usbvision_write_reg(usbvision, reg->reg&0xff, reg->val);
  464. if (errCode < 0) {
  465. err("%s: VIDIOC_DBG_%c_REGISTER failed: error %d", __FUNCTION__,
  466. cmd == VIDIOC_DBG_G_REGISTER ? 'G' : 'S', errCode);
  467. return errCode;
  468. }
  469. if (cmd == VIDIOC_DBG_S_REGISTER)
  470. reg->val = (u8)errCode;
  471. PDEBUG(DBG_IOCTL, "VIDIOC_DBG_%c_REGISTER reg=0x%02X, value=0x%02X",
  472. cmd == VIDIOC_DBG_G_REGISTER ? 'G' : 'S',
  473. (unsigned int)reg->reg, reg->val);
  474. return 0;
  475. }
  476. #endif
  477. case VIDIOC_QUERYCAP:
  478. {
  479. struct v4l2_capability *vc=arg;
  480. memset(vc, 0, sizeof(*vc));
  481. strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
  482. strlcpy(vc->card, usbvision_device_data[usbvision->DevModel].ModelString,
  483. sizeof(vc->card));
  484. strlcpy(vc->bus_info, usbvision->dev->dev.bus_id,
  485. sizeof(vc->bus_info));
  486. vc->version = USBVISION_DRIVER_VERSION;
  487. vc->capabilities = V4L2_CAP_VIDEO_CAPTURE |
  488. V4L2_CAP_AUDIO |
  489. V4L2_CAP_READWRITE |
  490. V4L2_CAP_STREAMING |
  491. (usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
  492. PDEBUG(DBG_IOCTL, "VIDIOC_QUERYCAP");
  493. return 0;
  494. }
  495. case VIDIOC_ENUMINPUT:
  496. {
  497. struct v4l2_input *vi = arg;
  498. int chan;
  499. if ((vi->index >= usbvision->video_inputs) || (vi->index < 0) )
  500. return -EINVAL;
  501. if (usbvision->have_tuner) {
  502. chan = vi->index;
  503. }
  504. else {
  505. chan = vi->index + 1; //skip Television string
  506. }
  507. switch(chan) {
  508. case 0:
  509. if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
  510. strcpy(vi->name, "White Video Input");
  511. }
  512. else {
  513. strcpy(vi->name, "Television");
  514. vi->type = V4L2_INPUT_TYPE_TUNER;
  515. vi->audioset = 1;
  516. vi->tuner = chan;
  517. vi->std = V4L2_STD_PAL | V4L2_STD_NTSC | V4L2_STD_SECAM;
  518. }
  519. break;
  520. case 1:
  521. vi->type = V4L2_INPUT_TYPE_CAMERA;
  522. if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
  523. strcpy(vi->name, "Green Video Input");
  524. }
  525. else {
  526. strcpy(vi->name, "Composite Video Input");
  527. }
  528. vi->std = V4L2_STD_PAL;
  529. break;
  530. case 2:
  531. vi->type = V4L2_INPUT_TYPE_CAMERA;
  532. if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
  533. strcpy(vi->name, "Yellow Video Input");
  534. }
  535. else {
  536. strcpy(vi->name, "S-Video Input");
  537. }
  538. vi->std = V4L2_STD_PAL;
  539. break;
  540. case 3:
  541. vi->type = V4L2_INPUT_TYPE_CAMERA;
  542. strcpy(vi->name, "Red Video Input");
  543. vi->std = V4L2_STD_PAL;
  544. break;
  545. }
  546. PDEBUG(DBG_IOCTL, "VIDIOC_ENUMINPUT name=%s:%d tuners=%d type=%d norm=%x",
  547. vi->name, vi->index, vi->tuner,vi->type,(int)vi->std);
  548. return 0;
  549. }
  550. case VIDIOC_ENUMSTD:
  551. {
  552. struct v4l2_standard *e = arg;
  553. unsigned int i;
  554. int ret;
  555. i = e->index;
  556. if (i >= TVNORMS)
  557. return -EINVAL;
  558. ret = v4l2_video_std_construct(e, tvnorms[e->index].id,
  559. tvnorms[e->index].name);
  560. e->index = i;
  561. if (ret < 0)
  562. return ret;
  563. return 0;
  564. }
  565. case VIDIOC_G_INPUT:
  566. {
  567. int *input = arg;
  568. *input = usbvision->ctl_input;
  569. return 0;
  570. }
  571. case VIDIOC_S_INPUT:
  572. {
  573. int *input = arg;
  574. if ((*input >= usbvision->video_inputs) || (*input < 0) )
  575. return -EINVAL;
  576. usbvision->ctl_input = *input;
  577. down(&usbvision->lock);
  578. usbvision_muxsel(usbvision, usbvision->ctl_input);
  579. usbvision_set_input(usbvision);
  580. usbvision_set_output(usbvision, usbvision->curwidth, usbvision->curheight);
  581. up(&usbvision->lock);
  582. return 0;
  583. }
  584. case VIDIOC_G_STD:
  585. {
  586. v4l2_std_id *id = arg;
  587. *id = usbvision->tvnorm->id;
  588. PDEBUG(DBG_IOCTL, "VIDIOC_G_STD std_id=%s", usbvision->tvnorm->name);
  589. return 0;
  590. }
  591. case VIDIOC_S_STD:
  592. {
  593. v4l2_std_id *id = arg;
  594. unsigned int i;
  595. for (i = 0; i < TVNORMS; i++)
  596. if (*id == tvnorms[i].id)
  597. break;
  598. if (i == TVNORMS)
  599. for (i = 0; i < TVNORMS; i++)
  600. if (*id & tvnorms[i].id)
  601. break;
  602. if (i == TVNORMS)
  603. return -EINVAL;
  604. down(&usbvision->lock);
  605. usbvision->tvnorm = &tvnorms[i];
  606. call_i2c_clients(usbvision, VIDIOC_S_STD,
  607. &usbvision->tvnorm->id);
  608. up(&usbvision->lock);
  609. PDEBUG(DBG_IOCTL, "VIDIOC_S_STD std_id=%s", usbvision->tvnorm->name);
  610. return 0;
  611. }
  612. case VIDIOC_G_TUNER:
  613. {
  614. struct v4l2_tuner *vt = arg;
  615. if (!usbvision->have_tuner || vt->index) // Only tuner 0
  616. return -EINVAL;
  617. strcpy(vt->name, "Television");
  618. /* Let clients fill in the remainder of this struct */
  619. call_i2c_clients(usbvision,VIDIOC_G_TUNER,vt);
  620. PDEBUG(DBG_IOCTL, "VIDIOC_G_TUNER signal=%x, afc=%x",vt->signal,vt->afc);
  621. return 0;
  622. }
  623. case VIDIOC_S_TUNER:
  624. {
  625. struct v4l2_tuner *vt = arg;
  626. // Only no or one tuner for now
  627. if (!usbvision->have_tuner || vt->index)
  628. return -EINVAL;
  629. /* let clients handle this */
  630. call_i2c_clients(usbvision,VIDIOC_S_TUNER,vt);
  631. PDEBUG(DBG_IOCTL, "VIDIOC_S_TUNER");
  632. return 0;
  633. }
  634. case VIDIOC_G_FREQUENCY:
  635. {
  636. struct v4l2_frequency *freq = arg;
  637. freq->tuner = 0; // Only one tuner
  638. freq->type = V4L2_TUNER_ANALOG_TV;
  639. freq->frequency = usbvision->freq;
  640. PDEBUG(DBG_IOCTL, "VIDIOC_G_FREQUENCY freq=0x%X", (unsigned)freq->frequency);
  641. return 0;
  642. }
  643. case VIDIOC_S_FREQUENCY:
  644. {
  645. struct v4l2_frequency *freq = arg;
  646. // Only no or one tuner for now
  647. if (!usbvision->have_tuner || freq->tuner)
  648. return -EINVAL;
  649. usbvision->freq = freq->frequency;
  650. call_i2c_clients(usbvision, cmd, freq);
  651. PDEBUG(DBG_IOCTL, "VIDIOC_S_FREQUENCY freq=0x%X", (unsigned)freq->frequency);
  652. return 0;
  653. }
  654. case VIDIOC_G_AUDIO:
  655. {
  656. struct v4l2_audio *v = arg;
  657. memset(v,0, sizeof(v));
  658. strcpy(v->name, "TV");
  659. PDEBUG(DBG_IOCTL, "VIDIOC_G_AUDIO");
  660. return 0;
  661. }
  662. case VIDIOC_S_AUDIO:
  663. {
  664. struct v4l2_audio *v = arg;
  665. if(v->index) {
  666. return -EINVAL;
  667. }
  668. PDEBUG(DBG_IOCTL, "VIDIOC_S_AUDIO");
  669. return 0;
  670. }
  671. case VIDIOC_QUERYCTRL:
  672. {
  673. struct v4l2_queryctrl *ctrl = arg;
  674. int id=ctrl->id;
  675. memset(ctrl,0,sizeof(*ctrl));
  676. ctrl->id=id;
  677. call_i2c_clients(usbvision, cmd, arg);
  678. if (ctrl->type)
  679. return 0;
  680. else
  681. return -EINVAL;
  682. PDEBUG(DBG_IOCTL,"VIDIOC_QUERYCTRL id=%x value=%x",ctrl->id,ctrl->type);
  683. }
  684. case VIDIOC_G_CTRL:
  685. {
  686. struct v4l2_control *ctrl = arg;
  687. PDEBUG(DBG_IOCTL,"VIDIOC_G_CTRL id=%x value=%x",ctrl->id,ctrl->value);
  688. call_i2c_clients(usbvision, VIDIOC_G_CTRL, ctrl);
  689. return 0;
  690. }
  691. case VIDIOC_S_CTRL:
  692. {
  693. struct v4l2_control *ctrl = arg;
  694. PDEBUG(DBG_IOCTL, "VIDIOC_S_CTRL id=%x value=%x",ctrl->id,ctrl->value);
  695. call_i2c_clients(usbvision, VIDIOC_S_CTRL, ctrl);
  696. return 0;
  697. }
  698. case VIDIOC_REQBUFS:
  699. {
  700. struct v4l2_requestbuffers *vr = arg;
  701. int ret;
  702. RESTRICT_TO_RANGE(vr->count,1,USBVISION_NUMFRAMES);
  703. // Check input validity : the user must do a VIDEO CAPTURE and MMAP method.
  704. if((vr->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
  705. (vr->memory != V4L2_MEMORY_MMAP))
  706. return -EINVAL;
  707. if(usbvision->streaming == Stream_On) {
  708. if ((ret = usbvision_stream_interrupt(usbvision)))
  709. return ret;
  710. }
  711. usbvision_frames_free(usbvision);
  712. usbvision_empty_framequeues(usbvision);
  713. vr->count = usbvision_frames_alloc(usbvision,vr->count);
  714. usbvision->curFrame = NULL;
  715. PDEBUG(DBG_IOCTL, "VIDIOC_REQBUFS count=%d",vr->count);
  716. return 0;
  717. }
  718. case VIDIOC_QUERYBUF:
  719. {
  720. struct v4l2_buffer *vb = arg;
  721. struct usbvision_frame *frame;
  722. // FIXME : must control that buffers are mapped (VIDIOC_REQBUFS has been called)
  723. if(vb->type != V4L2_CAP_VIDEO_CAPTURE) {
  724. return -EINVAL;
  725. }
  726. if(vb->index>=usbvision->num_frames) {
  727. return -EINVAL;
  728. }
  729. // Updating the corresponding frame state
  730. vb->flags = 0;
  731. frame = &usbvision->frame[vb->index];
  732. if(frame->grabstate >= FrameState_Ready)
  733. vb->flags |= V4L2_BUF_FLAG_QUEUED;
  734. if(frame->grabstate >= FrameState_Done)
  735. vb->flags |= V4L2_BUF_FLAG_DONE;
  736. if(frame->grabstate == FrameState_Unused)
  737. vb->flags |= V4L2_BUF_FLAG_MAPPED;
  738. vb->memory = V4L2_MEMORY_MMAP;
  739. vb->m.offset = vb->index*PAGE_ALIGN(usbvision->max_frame_size);
  740. vb->memory = V4L2_MEMORY_MMAP;
  741. vb->field = V4L2_FIELD_NONE;
  742. vb->length = usbvision->curwidth*usbvision->curheight*usbvision->palette.bytes_per_pixel;
  743. vb->timestamp = usbvision->frame[vb->index].timestamp;
  744. vb->sequence = usbvision->frame[vb->index].sequence;
  745. return 0;
  746. }
  747. case VIDIOC_QBUF:
  748. {
  749. struct v4l2_buffer *vb = arg;
  750. struct usbvision_frame *frame;
  751. unsigned long lock_flags;
  752. // FIXME : works only on VIDEO_CAPTURE MODE, MMAP.
  753. if(vb->type != V4L2_CAP_VIDEO_CAPTURE) {
  754. return -EINVAL;
  755. }
  756. if(vb->index>=usbvision->num_frames) {
  757. return -EINVAL;
  758. }
  759. frame = &usbvision->frame[vb->index];
  760. if (frame->grabstate != FrameState_Unused) {
  761. return -EAGAIN;
  762. }
  763. /* Mark it as ready and enqueue frame */
  764. frame->grabstate = FrameState_Ready;
  765. frame->scanstate = ScanState_Scanning;
  766. frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */
  767. vb->flags &= ~V4L2_BUF_FLAG_DONE;
  768. /* set v4l2_format index */
  769. frame->v4l2_format = usbvision->palette;
  770. spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
  771. list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue);
  772. spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
  773. PDEBUG(DBG_IOCTL, "VIDIOC_QBUF frame #%d",vb->index);
  774. return 0;
  775. }
  776. case VIDIOC_DQBUF:
  777. {
  778. struct v4l2_buffer *vb = arg;
  779. int ret;
  780. struct usbvision_frame *f;
  781. unsigned long lock_flags;
  782. if (vb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
  783. return -EINVAL;
  784. if (list_empty(&(usbvision->outqueue))) {
  785. if (usbvision->streaming == Stream_Idle)
  786. return -EINVAL;
  787. ret = wait_event_interruptible
  788. (usbvision->wait_frame,
  789. !list_empty(&(usbvision->outqueue)));
  790. if (ret)
  791. return ret;
  792. }
  793. spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
  794. f = list_entry(usbvision->outqueue.next,
  795. struct usbvision_frame, frame);
  796. list_del(usbvision->outqueue.next);
  797. spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
  798. f->grabstate = FrameState_Unused;
  799. vb->memory = V4L2_MEMORY_MMAP;
  800. vb->flags = V4L2_BUF_FLAG_MAPPED | V4L2_BUF_FLAG_QUEUED | V4L2_BUF_FLAG_DONE;
  801. vb->index = f->index;
  802. vb->sequence = f->sequence;
  803. vb->timestamp = f->timestamp;
  804. vb->field = V4L2_FIELD_NONE;
  805. vb->bytesused = f->scanlength;
  806. return 0;
  807. }
  808. case VIDIOC_STREAMON:
  809. {
  810. int b=V4L2_BUF_TYPE_VIDEO_CAPTURE;
  811. usbvision->streaming = Stream_On;
  812. call_i2c_clients(usbvision,VIDIOC_STREAMON , &b);
  813. PDEBUG(DBG_IOCTL, "VIDIOC_STREAMON");
  814. return 0;
  815. }
  816. case VIDIOC_STREAMOFF:
  817. {
  818. int *type = arg;
  819. int b=V4L2_BUF_TYPE_VIDEO_CAPTURE;
  820. if (*type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
  821. return -EINVAL;
  822. if(usbvision->streaming == Stream_On) {
  823. usbvision_stream_interrupt(usbvision);
  824. // Stop all video streamings
  825. call_i2c_clients(usbvision,VIDIOC_STREAMOFF , &b);
  826. }
  827. usbvision_empty_framequeues(usbvision);
  828. PDEBUG(DBG_IOCTL, "VIDIOC_STREAMOFF");
  829. return 0;
  830. }
  831. case VIDIOC_ENUM_FMT:
  832. {
  833. struct v4l2_fmtdesc *vfd = arg;
  834. if(vfd->index>=USBVISION_SUPPORTED_PALETTES-1) {
  835. return -EINVAL;
  836. }
  837. vfd->flags = 0;
  838. vfd->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  839. strcpy(vfd->description,usbvision_v4l2_format[vfd->index].desc);
  840. vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
  841. memset(vfd->reserved, 0, sizeof(vfd->reserved));
  842. return 0;
  843. }
  844. case VIDIOC_G_FMT:
  845. {
  846. struct v4l2_format *vf = arg;
  847. switch (vf->type) {
  848. case V4L2_BUF_TYPE_VIDEO_CAPTURE:
  849. {
  850. vf->fmt.pix.width = usbvision->curwidth;
  851. vf->fmt.pix.height = usbvision->curheight;
  852. vf->fmt.pix.pixelformat = usbvision->palette.format;
  853. vf->fmt.pix.bytesperline = usbvision->curwidth*usbvision->palette.bytes_per_pixel;
  854. vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*usbvision->curheight;
  855. vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
  856. vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
  857. PDEBUG(DBG_IOCTL, "VIDIOC_G_FMT w=%d, h=%d, format=%s",
  858. vf->fmt.pix.width, vf->fmt.pix.height,usbvision->palette.desc);
  859. return 0;
  860. }
  861. default:
  862. PDEBUG(DBG_IOCTL, "VIDIOC_G_FMT invalid type %d",vf->type);
  863. return -EINVAL;
  864. }
  865. return 0;
  866. }
  867. case VIDIOC_TRY_FMT:
  868. case VIDIOC_S_FMT:
  869. {
  870. struct v4l2_format *vf = arg;
  871. int formatIdx,ret;
  872. switch(vf->type) {
  873. case V4L2_BUF_TYPE_VIDEO_CAPTURE:
  874. {
  875. /* Find requested format in available ones */
  876. for(formatIdx=0;formatIdx<USBVISION_SUPPORTED_PALETTES;formatIdx++) {
  877. if(vf->fmt.pix.pixelformat == usbvision_v4l2_format[formatIdx].format) {
  878. usbvision->palette = usbvision_v4l2_format[formatIdx];
  879. break;
  880. }
  881. }
  882. /* robustness */
  883. if(formatIdx == USBVISION_SUPPORTED_PALETTES) {
  884. return -EINVAL;
  885. }
  886. RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
  887. RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);
  888. vf->fmt.pix.bytesperline = vf->fmt.pix.width*usbvision->palette.bytes_per_pixel;
  889. vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;
  890. if(cmd == VIDIOC_TRY_FMT) {
  891. PDEBUG(DBG_IOCTL, "VIDIOC_TRY_FMT grabdisplay w=%d, h=%d, format=%s",
  892. vf->fmt.pix.width, vf->fmt.pix.height,usbvision->palette.desc);
  893. return 0;
  894. }
  895. /* stop io in case it is already in progress */
  896. if(usbvision->streaming == Stream_On) {
  897. if ((ret = usbvision_stream_interrupt(usbvision)))
  898. return ret;
  899. }
  900. usbvision_frames_free(usbvision);
  901. usbvision_empty_framequeues(usbvision);
  902. usbvision->curFrame = NULL;
  903. // by now we are committed to the new data...
  904. down(&usbvision->lock);
  905. usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);
  906. up(&usbvision->lock);
  907. PDEBUG(DBG_IOCTL, "VIDIOC_S_FMT grabdisplay w=%d, h=%d, format=%s",
  908. vf->fmt.pix.width, vf->fmt.pix.height,usbvision->palette.desc);
  909. return 0;
  910. }
  911. default:
  912. return -EINVAL;
  913. }
  914. }
  915. default:
  916. return -ENOIOCTLCMD;
  917. }
  918. return 0;
  919. }
  920. static int usbvision_v4l2_ioctl(struct inode *inode, struct file *file,
  921. unsigned int cmd, unsigned long arg)
  922. {
  923. return video_usercopy(inode, file, cmd, arg, usbvision_v4l2_do_ioctl);
  924. }
  925. static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
  926. size_t count, loff_t *ppos)
  927. {
  928. struct video_device *dev = video_devdata(file);
  929. struct usb_usbvision *usbvision = (struct usb_usbvision *) video_get_drvdata(dev);
  930. int noblock = file->f_flags & O_NONBLOCK;
  931. unsigned long lock_flags;
  932. int ret,i;
  933. struct usbvision_frame *frame;
  934. PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __FUNCTION__, (unsigned long)count, noblock);
  935. if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL))
  936. return -EFAULT;
  937. /* This entry point is compatible with the mmap routines so that a user can do either
  938. VIDIOC_QBUF/VIDIOC_DQBUF to get frames or call read on the device. */
  939. if(!usbvision->num_frames) {
  940. /* First, allocate some frames to work with if this has not been done with
  941. VIDIOC_REQBUF */
  942. usbvision_frames_free(usbvision);
  943. usbvision_empty_framequeues(usbvision);
  944. usbvision_frames_alloc(usbvision,USBVISION_NUMFRAMES);
  945. }
  946. if(usbvision->streaming != Stream_On) {
  947. /* no stream is running, make it running ! */
  948. usbvision->streaming = Stream_On;
  949. call_i2c_clients(usbvision,VIDIOC_STREAMON , NULL);
  950. }
  951. /* Then, enqueue as many frames as possible (like a user of VIDIOC_QBUF would do) */
  952. for(i=0;i<usbvision->num_frames;i++) {
  953. frame = &usbvision->frame[i];
  954. if(frame->grabstate == FrameState_Unused) {
  955. /* Mark it as ready and enqueue frame */
  956. frame->grabstate = FrameState_Ready;
  957. frame->scanstate = ScanState_Scanning;
  958. frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */
  959. /* set v4l2_format index */
  960. frame->v4l2_format = usbvision->palette;
  961. spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
  962. list_add_tail(&frame->frame, &usbvision->inqueue);
  963. spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
  964. }
  965. }
  966. /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
  967. if (list_empty(&(usbvision->outqueue))) {
  968. if(noblock)
  969. return -EAGAIN;
  970. ret = wait_event_interruptible
  971. (usbvision->wait_frame,
  972. !list_empty(&(usbvision->outqueue)));
  973. if (ret)
  974. return ret;
  975. }
  976. spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
  977. frame = list_entry(usbvision->outqueue.next,
  978. struct usbvision_frame, frame);
  979. list_del(usbvision->outqueue.next);
  980. spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
  981. /* An error returns an empty frame */
  982. if (frame->grabstate == FrameState_Error) {
  983. frame->bytes_read = 0;
  984. return 0;
  985. }
  986. PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld", __FUNCTION__,
  987. frame->index, frame->bytes_read, frame->scanlength);
  988. /* copy bytes to user space; we allow for partials reads */
  989. if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
  990. count = frame->scanlength - frame->bytes_read;
  991. if (copy_to_user(buf, frame->data + frame->bytes_read, count)) {
  992. return -EFAULT;
  993. }
  994. frame->bytes_read += count;
  995. PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld", __FUNCTION__,
  996. (unsigned long)count, frame->bytes_read);
  997. // For now, forget the frame if it has not been read in one shot.
  998. /* if (frame->bytes_read >= frame->scanlength) {// All data has been read */
  999. frame->bytes_read = 0;
  1000. /* Mark it as available to be used again. */
  1001. frame->grabstate = FrameState_Unused;
  1002. /* } */
  1003. return count;
  1004. }
  1005. static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
  1006. {
  1007. unsigned long size = vma->vm_end - vma->vm_start,
  1008. start = vma->vm_start;
  1009. void *pos;
  1010. u32 i;
  1011. struct video_device *dev = video_devdata(file);
  1012. struct usb_usbvision *usbvision = (struct usb_usbvision *) video_get_drvdata(dev);
  1013. PDEBUG(DBG_MMAP, "mmap");
  1014. down(&usbvision->lock);
  1015. if (!USBVISION_IS_OPERATIONAL(usbvision)) {
  1016. up(&usbvision->lock);
  1017. return -EFAULT;
  1018. }
  1019. if (!(vma->vm_flags & VM_WRITE) ||
  1020. size != PAGE_ALIGN(usbvision->max_frame_size)) {
  1021. up(&usbvision->lock);
  1022. return -EINVAL;
  1023. }
  1024. for (i = 0; i < usbvision->num_frames; i++) {
  1025. if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) == vma->vm_pgoff)
  1026. break;
  1027. }
  1028. if (i == usbvision->num_frames) {
  1029. PDEBUG(DBG_MMAP, "mmap: user supplied mapping address is out of range");
  1030. up(&usbvision->lock);
  1031. return -EINVAL;
  1032. }
  1033. /* VM_IO is eventually going to replace PageReserved altogether */
  1034. vma->vm_flags |= VM_IO;
  1035. vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */
  1036. pos = usbvision->frame[i].data;
  1037. while (size > 0) {
  1038. if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
  1039. PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
  1040. up(&usbvision->lock);
  1041. return -EAGAIN;
  1042. }
  1043. start += PAGE_SIZE;
  1044. pos += PAGE_SIZE;
  1045. size -= PAGE_SIZE;
  1046. }
  1047. up(&usbvision->lock);
  1048. return 0;
  1049. }
  1050. /*
  1051. * Here comes the stuff for radio on usbvision based devices
  1052. *
  1053. */
  1054. static int usbvision_radio_open(struct inode *inode, struct file *file)
  1055. {
  1056. struct video_device *dev = video_devdata(file);
  1057. struct usb_usbvision *usbvision = (struct usb_usbvision *) video_get_drvdata(dev);
  1058. struct v4l2_frequency freq;
  1059. int errCode = 0;
  1060. PDEBUG(DBG_IO, "%s:", __FUNCTION__);
  1061. down(&usbvision->lock);
  1062. if (usbvision->user) {
  1063. err("%s: Someone tried to open an already opened USBVision Radio!", __FUNCTION__);
  1064. errCode = -EBUSY;
  1065. }
  1066. else {
  1067. if(PowerOnAtOpen) {
  1068. usbvision_reset_powerOffTimer(usbvision);
  1069. if (usbvision->power == 0) {
  1070. usbvision_power_on(usbvision);
  1071. usbvision_init_i2c(usbvision);
  1072. }
  1073. }
  1074. // If so far no errors then we shall start the radio
  1075. usbvision->radio = 1;
  1076. call_i2c_clients(usbvision,AUDC_SET_RADIO,&usbvision->tuner_type);
  1077. freq.frequency = 1517; //SWR3 @ 94.8MHz
  1078. call_i2c_clients(usbvision, VIDIOC_S_FREQUENCY, &freq);
  1079. usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
  1080. usbvision->user++;
  1081. }
  1082. if (errCode) {
  1083. if (PowerOnAtOpen) {
  1084. usbvision_i2c_usb_del_bus(&usbvision->i2c_adap);
  1085. usbvision_power_off(usbvision);
  1086. usbvision->initialized = 0;
  1087. }
  1088. }
  1089. up(&usbvision->lock);
  1090. return errCode;
  1091. }
  1092. static int usbvision_radio_close(struct inode *inode, struct file *file)
  1093. {
  1094. struct video_device *dev = video_devdata(file);
  1095. struct usb_usbvision *usbvision = (struct usb_usbvision *) video_get_drvdata(dev);
  1096. int errCode = 0;
  1097. PDEBUG(DBG_IO, "");
  1098. down(&usbvision->lock);
  1099. usbvision_audio_off(usbvision);
  1100. usbvision->radio=0;
  1101. usbvision->user--;
  1102. if (PowerOnAtOpen) {
  1103. usbvision_set_powerOffTimer(usbvision);
  1104. usbvision->initialized = 0;
  1105. }
  1106. up(&usbvision->lock);
  1107. if (usbvision->remove_pending) {
  1108. printk(KERN_INFO "%s: Final disconnect\n", __FUNCTION__);
  1109. usbvision_release(usbvision);
  1110. }
  1111. PDEBUG(DBG_IO, "success");
  1112. return errCode;
  1113. }
  1114. static int usbvision_do_radio_ioctl(struct inode *inode, struct file *file,
  1115. unsigned int cmd, void *arg)
  1116. {
  1117. struct video_device *dev = video_devdata(file);
  1118. struct usb_usbvision *usbvision = (struct usb_usbvision *) video_get_drvdata(dev);
  1119. if (!USBVISION_IS_OPERATIONAL(usbvision))
  1120. return -EIO;
  1121. switch (cmd) {
  1122. case VIDIOC_QUERYCAP:
  1123. {
  1124. struct v4l2_capability *vc=arg;
  1125. memset(vc, 0, sizeof(*vc));
  1126. strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
  1127. strlcpy(vc->card, usbvision_device_data[usbvision->DevModel].ModelString,
  1128. sizeof(vc->card));
  1129. strlcpy(vc->bus_info, usbvision->dev->dev.bus_id,
  1130. sizeof(vc->bus_info));
  1131. vc->version = USBVISION_DRIVER_VERSION;
  1132. vc->capabilities = (usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
  1133. PDEBUG(DBG_IO, "VIDIOC_QUERYCAP");
  1134. return 0;
  1135. }
  1136. case VIDIOC_QUERYCTRL:
  1137. {
  1138. struct v4l2_queryctrl *ctrl = arg;
  1139. int id=ctrl->id;
  1140. memset(ctrl,0,sizeof(*ctrl));
  1141. ctrl->id=id;
  1142. call_i2c_clients(usbvision, cmd, arg);
  1143. PDEBUG(DBG_IO,"VIDIOC_QUERYCTRL id=%x value=%x",ctrl->id,ctrl->type);
  1144. if (ctrl->type)
  1145. return 0;
  1146. else
  1147. return -EINVAL;
  1148. }
  1149. case VIDIOC_G_CTRL:
  1150. {
  1151. struct v4l2_control *ctrl = arg;
  1152. call_i2c_clients(usbvision, VIDIOC_G_CTRL, ctrl);
  1153. PDEBUG(DBG_IO,"VIDIOC_G_CTRL id=%x value=%x",ctrl->id,ctrl->value);
  1154. return 0;
  1155. }
  1156. case VIDIOC_S_CTRL:
  1157. {
  1158. struct v4l2_control *ctrl = arg;
  1159. call_i2c_clients(usbvision, VIDIOC_S_CTRL, ctrl);
  1160. PDEBUG(DBG_IO, "VIDIOC_S_CTRL id=%x value=%x",ctrl->id,ctrl->value);
  1161. return 0;
  1162. }
  1163. case VIDIOC_G_TUNER:
  1164. {
  1165. struct v4l2_tuner *t = arg;
  1166. if (t->index > 0)
  1167. return -EINVAL;
  1168. memset(t,0,sizeof(*t));
  1169. strcpy(t->name, "Radio");
  1170. t->type = V4L2_TUNER_RADIO;
  1171. /* Let clients fill in the remainder of this struct */
  1172. call_i2c_clients(usbvision,VIDIOC_G_TUNER,t);
  1173. PDEBUG(DBG_IO, "VIDIOC_G_TUNER signal=%x, afc=%x",t->signal,t->afc);
  1174. return 0;
  1175. }
  1176. case VIDIOC_S_TUNER:
  1177. {
  1178. struct v4l2_tuner *vt = arg;
  1179. // Only no or one tuner for now
  1180. if (!usbvision->have_tuner || vt->index)
  1181. return -EINVAL;
  1182. /* let clients handle this */
  1183. call_i2c_clients(usbvision,VIDIOC_S_TUNER,vt);
  1184. PDEBUG(DBG_IO, "VIDIOC_S_TUNER");
  1185. return 0;
  1186. }
  1187. case VIDIOC_G_AUDIO:
  1188. {
  1189. struct v4l2_audio *a = arg;
  1190. memset(a,0,sizeof(*a));
  1191. strcpy(a->name,"Radio");
  1192. PDEBUG(DBG_IO, "VIDIOC_G_AUDIO");
  1193. return 0;
  1194. }
  1195. case VIDIOC_S_AUDIO:
  1196. case VIDIOC_S_INPUT:
  1197. case VIDIOC_S_STD:
  1198. return 0;
  1199. case VIDIOC_G_FREQUENCY:
  1200. {
  1201. struct v4l2_frequency *f = arg;
  1202. memset(f,0,sizeof(*f));
  1203. f->type = V4L2_TUNER_RADIO;
  1204. f->frequency = usbvision->freq;
  1205. call_i2c_clients(usbvision, cmd, f);
  1206. PDEBUG(DBG_IO, "VIDIOC_G_FREQUENCY freq=0x%X", (unsigned)f->frequency);
  1207. return 0;
  1208. }
  1209. case VIDIOC_S_FREQUENCY:
  1210. {
  1211. struct v4l2_frequency *f = arg;
  1212. if (f->tuner != 0)
  1213. return -EINVAL;
  1214. usbvision->freq = f->frequency;
  1215. call_i2c_clients(usbvision, cmd, f);
  1216. PDEBUG(DBG_IO, "VIDIOC_S_FREQUENCY freq=0x%X", (unsigned)f->frequency);
  1217. return 0;
  1218. }
  1219. default:
  1220. {
  1221. PDEBUG(DBG_IO, "%s: Unknown command %x", __FUNCTION__, cmd);
  1222. return -ENOIOCTLCMD;
  1223. }
  1224. }
  1225. return 0;
  1226. }
  1227. static int usbvision_radio_ioctl(struct inode *inode, struct file *file,
  1228. unsigned int cmd, unsigned long arg)
  1229. {
  1230. return video_usercopy(inode, file, cmd, arg, usbvision_do_radio_ioctl);
  1231. }
  1232. /*
  1233. * Here comes the stuff for vbi on usbvision based devices
  1234. *
  1235. */
  1236. static int usbvision_vbi_open(struct inode *inode, struct file *file)
  1237. {
  1238. /* TODO */
  1239. return -EINVAL;
  1240. }
  1241. static int usbvision_vbi_close(struct inode *inode, struct file *file)
  1242. {
  1243. /* TODO */
  1244. return -EINVAL;
  1245. }
  1246. static int usbvision_do_vbi_ioctl(struct inode *inode, struct file *file,
  1247. unsigned int cmd, void *arg)
  1248. {
  1249. /* TODO */
  1250. return -EINVAL;
  1251. }
  1252. static int usbvision_vbi_ioctl(struct inode *inode, struct file *file,
  1253. unsigned int cmd, unsigned long arg)
  1254. {
  1255. return video_usercopy(inode, file, cmd, arg, usbvision_do_vbi_ioctl);
  1256. }
  1257. //
  1258. // Video registration stuff
  1259. //
  1260. // Video template
  1261. static const struct file_operations usbvision_fops = {
  1262. .owner = THIS_MODULE,
  1263. .open = usbvision_v4l2_open,
  1264. .release = usbvision_v4l2_close,
  1265. .read = usbvision_v4l2_read,
  1266. .mmap = usbvision_v4l2_mmap,
  1267. .ioctl = usbvision_v4l2_ioctl,
  1268. .llseek = no_llseek,
  1269. };
  1270. static struct video_device usbvision_video_template = {
  1271. .owner = THIS_MODULE,
  1272. .type = VID_TYPE_TUNER | VID_TYPE_CAPTURE,
  1273. .hardware = VID_HARDWARE_USBVISION,
  1274. .fops = &usbvision_fops,
  1275. .name = "usbvision-video",
  1276. .release = video_device_release,
  1277. .minor = -1,
  1278. };
  1279. // Radio template
  1280. static const struct file_operations usbvision_radio_fops = {
  1281. .owner = THIS_MODULE,
  1282. .open = usbvision_radio_open,
  1283. .release = usbvision_radio_close,
  1284. .ioctl = usbvision_radio_ioctl,
  1285. .llseek = no_llseek,
  1286. };
  1287. static struct video_device usbvision_radio_template=
  1288. {
  1289. .owner = THIS_MODULE,
  1290. .type = VID_TYPE_TUNER,
  1291. .hardware = VID_HARDWARE_USBVISION,
  1292. .fops = &usbvision_radio_fops,
  1293. .release = video_device_release,
  1294. .name = "usbvision-radio",
  1295. .minor = -1,
  1296. };
  1297. // vbi template
  1298. static const struct file_operations usbvision_vbi_fops = {
  1299. .owner = THIS_MODULE,
  1300. .open = usbvision_vbi_open,
  1301. .release = usbvision_vbi_close,
  1302. .ioctl = usbvision_vbi_ioctl,
  1303. .llseek = no_llseek,
  1304. };
  1305. static struct video_device usbvision_vbi_template=
  1306. {
  1307. .owner = THIS_MODULE,
  1308. .type = VID_TYPE_TUNER,
  1309. .hardware = VID_HARDWARE_USBVISION,
  1310. .fops = &usbvision_vbi_fops,
  1311. .release = video_device_release,
  1312. .name = "usbvision-vbi",
  1313. .minor = -1,
  1314. };
  1315. static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision,
  1316. struct video_device *vdev_template,
  1317. char *name)
  1318. {
  1319. struct usb_device *usb_dev = usbvision->dev;
  1320. struct video_device *vdev;
  1321. if (usb_dev == NULL) {
  1322. err("%s: usbvision->dev is not set", __FUNCTION__);
  1323. return NULL;
  1324. }
  1325. vdev = video_device_alloc();
  1326. if (NULL == vdev) {
  1327. return NULL;
  1328. }
  1329. *vdev = *vdev_template;
  1330. // vdev->minor = -1;
  1331. vdev->dev = &usb_dev->dev;
  1332. snprintf(vdev->name, sizeof(vdev->name), "%s", name);
  1333. video_set_drvdata(vdev, usbvision);
  1334. return vdev;
  1335. }
  1336. // unregister video4linux devices
  1337. static void usbvision_unregister_video(struct usb_usbvision *usbvision)
  1338. {
  1339. // vbi Device:
  1340. if (usbvision->vbi) {
  1341. PDEBUG(DBG_PROBE, "unregister /dev/vbi%d [v4l2]", usbvision->vbi->minor & 0x1f);
  1342. if (usbvision->vbi->minor != -1) {
  1343. video_unregister_device(usbvision->vbi);
  1344. }
  1345. else {
  1346. video_device_release(usbvision->vbi);
  1347. }
  1348. usbvision->vbi = NULL;
  1349. }
  1350. // Radio Device:
  1351. if (usbvision->rdev) {
  1352. PDEBUG(DBG_PROBE, "unregister /dev/radio%d [v4l2]", usbvision->rdev->minor & 0x1f);
  1353. if (usbvision->rdev->minor != -1) {
  1354. video_unregister_device(usbvision->rdev);
  1355. }
  1356. else {
  1357. video_device_release(usbvision->rdev);
  1358. }
  1359. usbvision->rdev = NULL;
  1360. }
  1361. // Video Device:
  1362. if (usbvision->vdev) {
  1363. PDEBUG(DBG_PROBE, "unregister /dev/video%d [v4l2]", usbvision->vdev->minor & 0x1f);
  1364. if (usbvision->vdev->minor != -1) {
  1365. video_unregister_device(usbvision->vdev);
  1366. }
  1367. else {
  1368. video_device_release(usbvision->vdev);
  1369. }
  1370. usbvision->vdev = NULL;
  1371. }
  1372. }
  1373. // register video4linux devices
  1374. static int __devinit usbvision_register_video(struct usb_usbvision *usbvision)
  1375. {
  1376. // Video Device:
  1377. usbvision->vdev = usbvision_vdev_init(usbvision, &usbvision_video_template, "USBVision Video");
  1378. if (usbvision->vdev == NULL) {
  1379. goto err_exit;
  1380. }
  1381. if (video_register_device(usbvision->vdev, VFL_TYPE_GRABBER, video_nr)<0) {
  1382. goto err_exit;
  1383. }
  1384. printk(KERN_INFO "USBVision[%d]: registered USBVision Video device /dev/video%d [v4l2]\n", usbvision->nr,usbvision->vdev->minor & 0x1f);
  1385. // Radio Device:
  1386. if (usbvision_device_data[usbvision->DevModel].Radio) {
  1387. // usbvision has radio
  1388. usbvision->rdev = usbvision_vdev_init(usbvision, &usbvision_radio_template, "USBVision Radio");
  1389. if (usbvision->rdev == NULL) {
  1390. goto err_exit;
  1391. }
  1392. if (video_register_device(usbvision->rdev, VFL_TYPE_RADIO, radio_nr)<0) {
  1393. goto err_exit;
  1394. }
  1395. printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device /dev/radio%d [v4l2]\n", usbvision->nr, usbvision->rdev->minor & 0x1f);
  1396. }
  1397. // vbi Device:
  1398. if (usbvision_device_data[usbvision->DevModel].vbi) {
  1399. usbvision->vbi = usbvision_vdev_init(usbvision, &usbvision_vbi_template, "USBVision VBI");
  1400. if (usbvision->vdev == NULL) {
  1401. goto err_exit;
  1402. }
  1403. if (video_register_device(usbvision->vbi, VFL_TYPE_VBI, vbi_nr)<0) {
  1404. goto err_exit;
  1405. }
  1406. printk(KERN_INFO "USBVision[%d]: registered USBVision VBI device /dev/vbi%d [v4l2] (Not Working Yet!)\n", usbvision->nr,usbvision->vbi->minor & 0x1f);
  1407. }
  1408. // all done
  1409. return 0;
  1410. err_exit:
  1411. err("USBVision[%d]: video_register_device() failed", usbvision->nr);
  1412. usbvision_unregister_video(usbvision);
  1413. return -1;
  1414. }
  1415. /*
  1416. * usbvision_alloc()
  1417. *
  1418. * This code allocates the struct usb_usbvision. It is filled with default values.
  1419. *
  1420. * Returns NULL on error, a pointer to usb_usbvision else.
  1421. *
  1422. */
  1423. static struct usb_usbvision *usbvision_alloc(struct usb_device *dev)
  1424. {
  1425. struct usb_usbvision *usbvision;
  1426. if ((usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL)) == NULL) {
  1427. goto err_exit;
  1428. }
  1429. usbvision->dev = dev;
  1430. init_MUTEX(&usbvision->lock); /* to 1 == available */
  1431. // prepare control urb for control messages during interrupts
  1432. usbvision->ctrlUrb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
  1433. if (usbvision->ctrlUrb == NULL) {
  1434. goto err_exit;
  1435. }
  1436. init_waitqueue_head(&usbvision->ctrlUrb_wq);
  1437. init_MUTEX(&usbvision->ctrlUrbLock); /* to 1 == available */
  1438. usbvision_init_powerOffTimer(usbvision);
  1439. return usbvision;
  1440. err_exit:
  1441. if (usbvision && usbvision->ctrlUrb) {
  1442. usb_free_urb(usbvision->ctrlUrb);
  1443. }
  1444. if (usbvision) {
  1445. kfree(usbvision);
  1446. }
  1447. return NULL;
  1448. }
  1449. /*
  1450. * usbvision_release()
  1451. *
  1452. * This code does final release of struct usb_usbvision. This happens
  1453. * after the device is disconnected -and- all clients closed their files.
  1454. *
  1455. */
  1456. static void usbvision_release(struct usb_usbvision *usbvision)
  1457. {
  1458. PDEBUG(DBG_PROBE, "");
  1459. down(&usbvision->lock);
  1460. usbvision_reset_powerOffTimer(usbvision);
  1461. usbvision->initialized = 0;
  1462. up(&usbvision->lock);
  1463. usbvision_remove_sysfs(usbvision->vdev);
  1464. usbvision_unregister_video(usbvision);
  1465. if (usbvision->ctrlUrb) {
  1466. usb_free_urb(usbvision->ctrlUrb);
  1467. }
  1468. kfree(usbvision);
  1469. PDEBUG(DBG_PROBE, "success");
  1470. }
  1471. /******************************** usb interface *****************************************/
  1472. static void usbvision_configure_video(struct usb_usbvision *usbvision)
  1473. {
  1474. int model,i;
  1475. if (usbvision == NULL)
  1476. return;
  1477. model = usbvision->DevModel;
  1478. usbvision->palette = usbvision_v4l2_format[2]; // V4L2_PIX_FMT_RGB24;
  1479. if (usbvision_device_data[usbvision->DevModel].Vin_Reg2 >= 0) {
  1480. usbvision->Vin_Reg2_Preset = usbvision_device_data[usbvision->DevModel].Vin_Reg2 & 0xff;
  1481. } else {
  1482. usbvision->Vin_Reg2_Preset = 0;
  1483. }
  1484. for (i = 0; i < TVNORMS; i++)
  1485. if (usbvision_device_data[model].VideoNorm == tvnorms[i].mode)
  1486. break;
  1487. if (i == TVNORMS)
  1488. i = 0;
  1489. usbvision->tvnorm = &tvnorms[i]; /* set default norm */
  1490. usbvision->video_inputs = usbvision_device_data[model].VideoChannels;
  1491. usbvision->ctl_input = 0;
  1492. /* This should be here to make i2c clients to be able to register */
  1493. usbvision_audio_off(usbvision); //first switch off audio
  1494. if (!PowerOnAtOpen) {
  1495. usbvision_power_on(usbvision); //and then power up the noisy tuner
  1496. usbvision_init_i2c(usbvision);
  1497. }
  1498. }
  1499. /*
  1500. * usbvision_probe()
  1501. *
  1502. * This procedure queries device descriptor and accepts the interface
  1503. * if it looks like USBVISION video device
  1504. *
  1505. */
  1506. static int __devinit usbvision_probe(struct usb_interface *intf, const struct usb_device_id *devid)
  1507. {
  1508. struct usb_device *dev = interface_to_usbdev(intf);
  1509. __u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
  1510. const struct usb_host_interface *interface;
  1511. struct usb_usbvision *usbvision = NULL;
  1512. const struct usb_endpoint_descriptor *endpoint;
  1513. int model;
  1514. PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
  1515. dev->descriptor.idVendor, dev->descriptor.idProduct, ifnum);
  1516. /* Is it an USBVISION video dev? */
  1517. model = 0;
  1518. for(model = 0; usbvision_device_data[model].idVendor; model++) {
  1519. if (le16_to_cpu(dev->descriptor.idVendor) != usbvision_device_data[model].idVendor) {
  1520. continue;
  1521. }
  1522. if (le16_to_cpu(dev->descriptor.idProduct) != usbvision_device_data[model].idProduct) {
  1523. continue;
  1524. }
  1525. printk(KERN_INFO "%s: %s found\n", __FUNCTION__, usbvision_device_data[model].ModelString);
  1526. break;
  1527. }
  1528. if (usbvision_device_data[model].idVendor == 0) {
  1529. return -ENODEV; //no matching device
  1530. }
  1531. if (usbvision_device_data[model].Interface >= 0) {
  1532. interface = &dev->actconfig->interface[usbvision_device_data[model].Interface]->altsetting[0];
  1533. }
  1534. else {
  1535. interface = &dev->actconfig->interface[ifnum]->altsetting[0];
  1536. }
  1537. endpoint = &interface->endpoint[1].desc;
  1538. if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_ISOC) {
  1539. err("%s: interface %d. has non-ISO endpoint!", __FUNCTION__, ifnum);
  1540. err("%s: Endpoint attribures %d", __FUNCTION__, endpoint->bmAttributes);
  1541. return -ENODEV;
  1542. }
  1543. if ((endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT) {
  1544. err("%s: interface %d. has ISO OUT endpoint!", __FUNCTION__, ifnum);
  1545. return -ENODEV;
  1546. }
  1547. usb_get_dev(dev);
  1548. if ((usbvision = usbvision_alloc(dev)) == NULL) {
  1549. err("%s: couldn't allocate USBVision struct", __FUNCTION__);
  1550. return -ENOMEM;
  1551. }
  1552. if (dev->descriptor.bNumConfigurations > 1) {
  1553. usbvision->bridgeType = BRIDGE_NT1004;
  1554. }
  1555. else if (usbvision_device_data[model].ModelString == "Dazzle Fusion Model DVC-90 Rev 1 (SECAM)") {
  1556. usbvision->bridgeType = BRIDGE_NT1005;
  1557. }
  1558. else {
  1559. usbvision->bridgeType = BRIDGE_NT1003;
  1560. }
  1561. PDEBUG(DBG_PROBE, "bridgeType %d", usbvision->bridgeType);
  1562. down(&usbvision->lock);
  1563. usbvision->nr = usbvision_nr++;
  1564. usbvision->have_tuner = usbvision_device_data[model].Tuner;
  1565. if (usbvision->have_tuner) {
  1566. usbvision->tuner_type = usbvision_device_data[model].TunerType;
  1567. }
  1568. usbvision->tuner_addr = ADDR_UNSET;
  1569. usbvision->DevModel = model;
  1570. usbvision->remove_pending = 0;
  1571. usbvision->iface = ifnum;
  1572. usbvision->ifaceAltInactive = 0;
  1573. usbvision->ifaceAltActive = 1;
  1574. usbvision->video_endp = endpoint->bEndpointAddress;
  1575. usbvision->isocPacketSize = 0;
  1576. usbvision->usb_bandwidth = 0;
  1577. usbvision->user = 0;
  1578. usbvision->streaming = Stream_Off;
  1579. usbvision_register_video(usbvision);
  1580. usbvision_configure_video(usbvision);
  1581. up(&usbvision->lock);
  1582. usb_set_intfdata (intf, usbvision);
  1583. usbvision_create_sysfs(usbvision->vdev);
  1584. PDEBUG(DBG_PROBE, "success");
  1585. return 0;
  1586. }
  1587. /*
  1588. * usbvision_disconnect()
  1589. *
  1590. * This procedure stops all driver activity, deallocates interface-private
  1591. * structure (pointed by 'ptr') and after that driver should be removable
  1592. * with no ill consequences.
  1593. *
  1594. */
  1595. static void __devexit usbvision_disconnect(struct usb_interface *intf)
  1596. {
  1597. struct usb_usbvision *usbvision = usb_get_intfdata(intf);
  1598. PDEBUG(DBG_PROBE, "");
  1599. if (usbvision == NULL) {
  1600. err("%s: usb_get_intfdata() failed", __FUNCTION__);
  1601. return;
  1602. }
  1603. usb_set_intfdata (intf, NULL);
  1604. down(&usbvision->lock);
  1605. // At this time we ask to cancel outstanding URBs
  1606. usbvision_stop_isoc(usbvision);
  1607. if (usbvision->power) {
  1608. usbvision_i2c_usb_del_bus(&usbvision->i2c_adap);
  1609. usbvision_power_off(usbvision);
  1610. }
  1611. usbvision->remove_pending = 1; // Now all ISO data will be ignored
  1612. usb_put_dev(usbvision->dev);
  1613. usbvision->dev = NULL; // USB device is no more
  1614. up(&usbvision->lock);
  1615. if (usbvision->user) {
  1616. printk(KERN_INFO "%s: In use, disconnect pending\n", __FUNCTION__);
  1617. wake_up_interruptible(&usbvision->wait_frame);
  1618. wake_up_interruptible(&usbvision->wait_stream);
  1619. }
  1620. else {
  1621. usbvision_release(usbvision);
  1622. }
  1623. PDEBUG(DBG_PROBE, "success");
  1624. }
  1625. static struct usb_driver usbvision_driver = {
  1626. .name = "usbvision",
  1627. .id_table = usbvision_table,
  1628. .probe = usbvision_probe,
  1629. .disconnect = usbvision_disconnect
  1630. };
  1631. /*
  1632. * customdevice_process()
  1633. *
  1634. * This procedure preprocesses CustomDevice parameter if any
  1635. *
  1636. */
  1637. static void customdevice_process(void)
  1638. {
  1639. usbvision_device_data[0]=usbvision_device_data[1];
  1640. usbvision_table[0]=usbvision_table[1];
  1641. if(CustomDevice)
  1642. {
  1643. char *parse=CustomDevice;
  1644. PDEBUG(DBG_PROBE, "CustomDevide=%s", CustomDevice);
  1645. /*format is CustomDevice="0x0573 0x4D31 0 7113 3 PAL 1 1 1 5 -1 -1 -1 -1 -1"
  1646. usbvision_device_data[0].idVendor;
  1647. usbvision_device_data[0].idProduct;
  1648. usbvision_device_data[0].Interface;
  1649. usbvision_device_data[0].Codec;
  1650. usbvision_device_data[0].VideoChannels;
  1651. usbvision_device_data[0].VideoNorm;
  1652. usbvision_device_data[0].AudioChannels;
  1653. usbvision_device_data[0].Radio;
  1654. usbvision_device_data[0].Tuner;
  1655. usbvision_device_data[0].TunerType;
  1656. usbvision_device_data[0].Vin_Reg1;
  1657. usbvision_device_data[0].Vin_Reg2;
  1658. usbvision_device_data[0].X_Offset;
  1659. usbvision_device_data[0].Y_Offset;
  1660. usbvision_device_data[0].Dvi_yuv;
  1661. usbvision_device_data[0].ModelString;
  1662. */
  1663. rmspace(parse);
  1664. usbvision_device_data[0].ModelString="USBVISION Custom Device";
  1665. parse+=2;
  1666. sscanf(parse,"%x",&usbvision_device_data[0].idVendor);
  1667. goto2next(parse);
  1668. PDEBUG(DBG_PROBE, "idVendor=0x%.4X", usbvision_device_data[0].idVendor);
  1669. parse+=2;
  1670. sscanf(parse,"%x",&usbvision_device_data[0].idProduct);
  1671. goto2next(parse);
  1672. PDEBUG(DBG_PROBE, "idProduct=0x%.4X", usbvision_device_data[0].idProduct);
  1673. sscanf(parse,"%d",&usbvision_device_data[0].Interface);
  1674. goto2next(parse);
  1675. PDEBUG(DBG_PROBE, "Interface=%d", usbvision_device_data[0].Interface);
  1676. sscanf(parse,"%d",&usbvision_device_data[0].Codec);
  1677. goto2next(parse);
  1678. PDEBUG(DBG_PROBE, "Codec=%d", usbvision_device_data[0].Codec);
  1679. sscanf(parse,"%d",&usbvision_device_data[0].VideoChannels);
  1680. goto2next(parse);
  1681. PDEBUG(DBG_PROBE, "VideoChannels=%d", usbvision_device_data[0].VideoChannels);
  1682. switch(*parse)
  1683. {
  1684. case 'P':
  1685. PDEBUG(DBG_PROBE, "VideoNorm=PAL");
  1686. usbvision_device_data[0].VideoNorm=V4L2_STD_PAL;
  1687. break;
  1688. case 'S':
  1689. PDEBUG(DBG_PROBE, "VideoNorm=SECAM");
  1690. usbvision_device_data[0].VideoNorm=V4L2_STD_SECAM;
  1691. break;
  1692. case 'N':
  1693. PDEBUG(DBG_PROBE, "VideoNorm=NTSC");
  1694. usbvision_device_data[0].VideoNorm=V4L2_STD_NTSC;
  1695. break;
  1696. default:
  1697. PDEBUG(DBG_PROBE, "VideoNorm=PAL (by default)");
  1698. usbvision_device_data[0].VideoNorm=V4L2_STD_PAL;
  1699. break;
  1700. }
  1701. goto2next(parse);
  1702. sscanf(parse,"%d",&usbvision_device_data[0].AudioChannels);
  1703. goto2next(parse);
  1704. PDEBUG(DBG_PROBE, "AudioChannels=%d", usbvision_device_data[0].AudioChannels);
  1705. sscanf(parse,"%d",&usbvision_device_data[0].Radio);
  1706. goto2next(parse);
  1707. PDEBUG(DBG_PROBE, "Radio=%d", usbvision_device_data[0].Radio);
  1708. sscanf(parse,"%d",&usbvision_device_data[0].Tuner);
  1709. goto2next(parse);
  1710. PDEBUG(DBG_PROBE, "Tuner=%d", usbvision_device_data[0].Tuner);
  1711. sscanf(parse,"%d",&usbvision_device_data[0].TunerType);
  1712. goto2next(parse);
  1713. PDEBUG(DBG_PROBE, "TunerType=%d", usbvision_device_data[0].TunerType);
  1714. sscanf(parse,"%d",&usbvision_device_data[0].Vin_Reg1);
  1715. goto2next(parse);
  1716. PDEBUG(DBG_PROBE, "Vin_Reg1=%d", usbvision_device_data[0].Vin_Reg1);
  1717. sscanf(parse,"%d",&usbvision_device_data[0].Vin_Reg2);
  1718. goto2next(parse);
  1719. PDEBUG(DBG_PROBE, "Vin_Reg2=%d", usbvision_device_data[0].Vin_Reg2);
  1720. sscanf(parse,"%d",&usbvision_device_data[0].X_Offset);
  1721. goto2next(parse);
  1722. PDEBUG(DBG_PROBE, "X_Offset=%d", usbvision_device_data[0].X_Offset);
  1723. sscanf(parse,"%d",&usbvision_device_data[0].Y_Offset);
  1724. goto2next(parse);
  1725. PDEBUG(DBG_PROBE, "Y_Offset=%d", usbvision_device_data[0].Y_Offset);
  1726. sscanf(parse,"%d",&usbvision_device_data[0].Dvi_yuv);
  1727. PDEBUG(DBG_PROBE, "Dvi_yuv=%d", usbvision_device_data[0].Dvi_yuv);
  1728. //add to usbvision_table also
  1729. usbvision_table[0].match_flags=USB_DEVICE_ID_MATCH_DEVICE;
  1730. usbvision_table[0].idVendor=usbvision_device_data[0].idVendor;
  1731. usbvision_table[0].idProduct=usbvision_device_data[0].idProduct;
  1732. }
  1733. }
  1734. /*
  1735. * usbvision_init()
  1736. *
  1737. * This code is run to initialize the driver.
  1738. *
  1739. */
  1740. static int __init usbvision_init(void)
  1741. {
  1742. int errCode;
  1743. PDEBUG(DBG_PROBE, "");
  1744. PDEBUG(DBG_IOCTL, "IOCTL debugging is enabled [video]");
  1745. PDEBUG(DBG_IO, "IO debugging is enabled [video]");
  1746. PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]");
  1747. PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]");
  1748. /* disable planar mode support unless compression enabled */
  1749. if (isocMode != ISOC_MODE_COMPRESS ) {
  1750. // FIXME : not the right way to set supported flag
  1751. usbvision_v4l2_format[6].supported = 0; // V4L2_PIX_FMT_YVU420
  1752. usbvision_v4l2_format[7].supported = 0; // V4L2_PIX_FMT_YUV422P
  1753. }
  1754. customdevice_process();
  1755. errCode = usb_register(&usbvision_driver);
  1756. if (errCode == 0) {
  1757. printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
  1758. PDEBUG(DBG_PROBE, "success");
  1759. }
  1760. return errCode;
  1761. }
  1762. static void __exit usbvision_exit(void)
  1763. {
  1764. PDEBUG(DBG_PROBE, "");
  1765. usb_deregister(&usbvision_driver);
  1766. PDEBUG(DBG_PROBE, "success");
  1767. }
  1768. module_init(usbvision_init);
  1769. module_exit(usbvision_exit);
  1770. /*
  1771. * Overrides for Emacs so that we follow Linus's tabbing style.
  1772. * ---------------------------------------------------------------------------
  1773. * Local variables:
  1774. * c-basic-offset: 8
  1775. * End:
  1776. */