zoran_driver.c 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399
  1. /*
  2. * Zoran zr36057/zr36067 PCI controller driver, for the
  3. * Pinnacle/Miro DC10/DC10+/DC30/DC30+, Iomega Buz, Linux
  4. * Media Labs LML33/LML33R10.
  5. *
  6. * Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
  7. *
  8. * Changes for BUZ by Wolfgang Scherr <scherr@net4you.net>
  9. *
  10. * Changes for DC10/DC30 by Laurent Pinchart <laurent.pinchart@skynet.be>
  11. *
  12. * Changes for LML33R10 by Maxim Yevtyushkin <max@linuxmedialabs.com>
  13. *
  14. * Changes for videodev2/v4l2 by Ronald Bultje <rbultje@ronald.bitfreak.net>
  15. *
  16. * Based on
  17. *
  18. * Miro DC10 driver
  19. * Copyright (C) 1999 Wolfgang Scherr <scherr@net4you.net>
  20. *
  21. * Iomega Buz driver version 1.0
  22. * Copyright (C) 1999 Rainer Johanni <Rainer@Johanni.de>
  23. *
  24. * buz.0.0.3
  25. * Copyright (C) 1998 Dave Perks <dperks@ibm.net>
  26. *
  27. * bttv - Bt848 frame grabber driver
  28. * Copyright (C) 1996,97,98 Ralph Metzler (rjkm@thp.uni-koeln.de)
  29. * & Marcus Metzler (mocm@thp.uni-koeln.de)
  30. *
  31. *
  32. * This program is free software; you can redistribute it and/or modify
  33. * it under the terms of the GNU General Public License as published by
  34. * the Free Software Foundation; either version 2 of the License, or
  35. * (at your option) any later version.
  36. *
  37. * This program is distributed in the hope that it will be useful,
  38. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  39. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  40. * GNU General Public License for more details.
  41. *
  42. * You should have received a copy of the GNU General Public License
  43. * along with this program; if not, write to the Free Software
  44. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  45. */
  46. #include <linux/version.h>
  47. #include <linux/init.h>
  48. #include <linux/module.h>
  49. #include <linux/delay.h>
  50. #include <linux/slab.h>
  51. #include <linux/pci.h>
  52. #include <linux/vmalloc.h>
  53. #include <linux/wait.h>
  54. #include <linux/interrupt.h>
  55. #include <linux/i2c.h>
  56. #include <linux/i2c-algo-bit.h>
  57. #include <linux/spinlock.h>
  58. #include <linux/videodev.h>
  59. #include <media/v4l2-common.h>
  60. #include <media/v4l2-ioctl.h>
  61. #include "videocodec.h"
  62. #include <asm/byteorder.h>
  63. #include <asm/io.h>
  64. #include <asm/uaccess.h>
  65. #include <linux/proc_fs.h>
  66. #include <linux/mutex.h>
  67. #include "zoran.h"
  68. #include "zoran_device.h"
  69. #include "zoran_card.h"
  70. const struct zoran_format zoran_formats[] = {
  71. {
  72. .name = "15-bit RGB LE",
  73. .fourcc = V4L2_PIX_FMT_RGB555,
  74. .colorspace = V4L2_COLORSPACE_SRGB,
  75. .depth = 15,
  76. .flags = ZORAN_FORMAT_CAPTURE |
  77. ZORAN_FORMAT_OVERLAY,
  78. .vfespfr = ZR36057_VFESPFR_RGB555|ZR36057_VFESPFR_ErrDif|
  79. ZR36057_VFESPFR_LittleEndian,
  80. }, {
  81. .name = "15-bit RGB BE",
  82. .fourcc = V4L2_PIX_FMT_RGB555X,
  83. .colorspace = V4L2_COLORSPACE_SRGB,
  84. .depth = 15,
  85. .flags = ZORAN_FORMAT_CAPTURE |
  86. ZORAN_FORMAT_OVERLAY,
  87. .vfespfr = ZR36057_VFESPFR_RGB555|ZR36057_VFESPFR_ErrDif,
  88. }, {
  89. .name = "16-bit RGB LE",
  90. .fourcc = V4L2_PIX_FMT_RGB565,
  91. .colorspace = V4L2_COLORSPACE_SRGB,
  92. .depth = 16,
  93. .flags = ZORAN_FORMAT_CAPTURE |
  94. ZORAN_FORMAT_OVERLAY,
  95. .vfespfr = ZR36057_VFESPFR_RGB565|ZR36057_VFESPFR_ErrDif|
  96. ZR36057_VFESPFR_LittleEndian,
  97. }, {
  98. .name = "16-bit RGB BE",
  99. .fourcc = V4L2_PIX_FMT_RGB565X,
  100. .colorspace = V4L2_COLORSPACE_SRGB,
  101. .depth = 16,
  102. .flags = ZORAN_FORMAT_CAPTURE |
  103. ZORAN_FORMAT_OVERLAY,
  104. .vfespfr = ZR36057_VFESPFR_RGB565|ZR36057_VFESPFR_ErrDif,
  105. }, {
  106. .name = "24-bit RGB",
  107. .fourcc = V4L2_PIX_FMT_BGR24,
  108. .colorspace = V4L2_COLORSPACE_SRGB,
  109. .depth = 24,
  110. .flags = ZORAN_FORMAT_CAPTURE |
  111. ZORAN_FORMAT_OVERLAY,
  112. .vfespfr = ZR36057_VFESPFR_RGB888|ZR36057_VFESPFR_Pack24,
  113. }, {
  114. .name = "32-bit RGB LE",
  115. .fourcc = V4L2_PIX_FMT_BGR32,
  116. .colorspace = V4L2_COLORSPACE_SRGB,
  117. .depth = 32,
  118. .flags = ZORAN_FORMAT_CAPTURE |
  119. ZORAN_FORMAT_OVERLAY,
  120. .vfespfr = ZR36057_VFESPFR_RGB888|ZR36057_VFESPFR_LittleEndian,
  121. }, {
  122. .name = "32-bit RGB BE",
  123. .fourcc = V4L2_PIX_FMT_RGB32,
  124. .colorspace = V4L2_COLORSPACE_SRGB,
  125. .depth = 32,
  126. .flags = ZORAN_FORMAT_CAPTURE |
  127. ZORAN_FORMAT_OVERLAY,
  128. .vfespfr = ZR36057_VFESPFR_RGB888,
  129. }, {
  130. .name = "4:2:2, packed, YUYV",
  131. .fourcc = V4L2_PIX_FMT_YUYV,
  132. .colorspace = V4L2_COLORSPACE_SMPTE170M,
  133. .depth = 16,
  134. .flags = ZORAN_FORMAT_CAPTURE |
  135. ZORAN_FORMAT_OVERLAY,
  136. .vfespfr = ZR36057_VFESPFR_YUV422,
  137. }, {
  138. .name = "4:2:2, packed, UYVY",
  139. .fourcc = V4L2_PIX_FMT_UYVY,
  140. .colorspace = V4L2_COLORSPACE_SMPTE170M,
  141. .depth = 16,
  142. .flags = ZORAN_FORMAT_CAPTURE |
  143. ZORAN_FORMAT_OVERLAY,
  144. .vfespfr = ZR36057_VFESPFR_YUV422|ZR36057_VFESPFR_LittleEndian,
  145. }, {
  146. .name = "Hardware-encoded Motion-JPEG",
  147. .fourcc = V4L2_PIX_FMT_MJPEG,
  148. .colorspace = V4L2_COLORSPACE_SMPTE170M,
  149. .depth = 0,
  150. .flags = ZORAN_FORMAT_CAPTURE |
  151. ZORAN_FORMAT_PLAYBACK |
  152. ZORAN_FORMAT_COMPRESSED,
  153. }
  154. };
  155. #define NUM_FORMATS ARRAY_SIZE(zoran_formats)
  156. /* small helper function for calculating buffersizes for v4l2
  157. * we calculate the nearest higher power-of-two, which
  158. * will be the recommended buffersize */
  159. static __u32
  160. zoran_v4l2_calc_bufsize (struct zoran_jpg_settings *settings)
  161. {
  162. __u8 div = settings->VerDcm * settings->HorDcm * settings->TmpDcm;
  163. __u32 num = (1024 * 512) / (div);
  164. __u32 result = 2;
  165. num--;
  166. while (num) {
  167. num >>= 1;
  168. result <<= 1;
  169. }
  170. if (result > jpg_bufsize)
  171. return jpg_bufsize;
  172. if (result < 8192)
  173. return 8192;
  174. return result;
  175. }
  176. /* forward references */
  177. static void v4l_fbuffer_free(struct zoran_fh *fh);
  178. static void jpg_fbuffer_free(struct zoran_fh *fh);
  179. /* Set mapping mode */
  180. static void map_mode_raw(struct zoran_fh *fh)
  181. {
  182. fh->map_mode = ZORAN_MAP_MODE_RAW;
  183. fh->buffers.buffer_size = v4l_bufsize;
  184. fh->buffers.num_buffers = v4l_nbufs;
  185. }
  186. static void map_mode_jpg(struct zoran_fh *fh, int play)
  187. {
  188. fh->map_mode = play ? ZORAN_MAP_MODE_JPG_PLAY : ZORAN_MAP_MODE_JPG_REC;
  189. fh->buffers.buffer_size = jpg_bufsize;
  190. fh->buffers.num_buffers = jpg_nbufs;
  191. }
  192. static inline const char *mode_name(enum zoran_map_mode mode)
  193. {
  194. return mode == ZORAN_MAP_MODE_RAW ? "V4L" : "JPG";
  195. }
  196. /*
  197. * Allocate the V4L grab buffers
  198. *
  199. * These have to be pysically contiguous.
  200. */
  201. static int v4l_fbuffer_alloc(struct zoran_fh *fh)
  202. {
  203. struct zoran *zr = fh->zr;
  204. int i, off;
  205. unsigned char *mem;
  206. for (i = 0; i < fh->buffers.num_buffers; i++) {
  207. if (fh->buffers.buffer[i].v4l.fbuffer)
  208. dprintk(2,
  209. KERN_WARNING
  210. "%s: %s - buffer %d already allocated!?\n",
  211. ZR_DEVNAME(zr), __func__, i);
  212. //udelay(20);
  213. mem = kmalloc(fh->buffers.buffer_size,
  214. GFP_KERNEL | __GFP_NOWARN);
  215. if (!mem) {
  216. dprintk(1,
  217. KERN_ERR
  218. "%s: %s - kmalloc for V4L buf %d failed\n",
  219. ZR_DEVNAME(zr), __func__, i);
  220. v4l_fbuffer_free(fh);
  221. return -ENOBUFS;
  222. }
  223. fh->buffers.buffer[i].v4l.fbuffer = mem;
  224. fh->buffers.buffer[i].v4l.fbuffer_phys = virt_to_phys(mem);
  225. fh->buffers.buffer[i].v4l.fbuffer_bus = virt_to_bus(mem);
  226. for (off = 0; off < fh->buffers.buffer_size;
  227. off += PAGE_SIZE)
  228. SetPageReserved(virt_to_page(mem + off));
  229. dprintk(4,
  230. KERN_INFO
  231. "%s: %s - V4L frame %d mem 0x%lx (bus: 0x%llx)\n",
  232. ZR_DEVNAME(zr), __func__, i, (unsigned long) mem,
  233. (unsigned long long)virt_to_bus(mem));
  234. }
  235. fh->buffers.allocated = 1;
  236. return 0;
  237. }
  238. /* free the V4L grab buffers */
  239. static void v4l_fbuffer_free(struct zoran_fh *fh)
  240. {
  241. struct zoran *zr = fh->zr;
  242. int i, off;
  243. unsigned char *mem;
  244. dprintk(4, KERN_INFO "%s: %s\n", ZR_DEVNAME(zr), __func__);
  245. for (i = 0; i < fh->buffers.num_buffers; i++) {
  246. if (!fh->buffers.buffer[i].v4l.fbuffer)
  247. continue;
  248. mem = fh->buffers.buffer[i].v4l.fbuffer;
  249. for (off = 0; off < fh->buffers.buffer_size;
  250. off += PAGE_SIZE)
  251. ClearPageReserved(virt_to_page(mem + off));
  252. kfree(fh->buffers.buffer[i].v4l.fbuffer);
  253. fh->buffers.buffer[i].v4l.fbuffer = NULL;
  254. }
  255. fh->buffers.allocated = 0;
  256. }
  257. /*
  258. * Allocate the MJPEG grab buffers.
  259. *
  260. * If a Natoma chipset is present and this is a revision 1 zr36057,
  261. * each MJPEG buffer needs to be physically contiguous.
  262. * (RJ: This statement is from Dave Perks' original driver,
  263. * I could never check it because I have a zr36067)
  264. *
  265. * RJ: The contents grab buffers needs never be accessed in the driver.
  266. * Therefore there is no need to allocate them with vmalloc in order
  267. * to get a contiguous virtual memory space.
  268. * I don't understand why many other drivers first allocate them with
  269. * vmalloc (which uses internally also get_zeroed_page, but delivers you
  270. * virtual addresses) and then again have to make a lot of efforts
  271. * to get the physical address.
  272. *
  273. * Ben Capper:
  274. * On big-endian architectures (such as ppc) some extra steps
  275. * are needed. When reading and writing to the stat_com array
  276. * and fragment buffers, the device expects to see little-
  277. * endian values. The use of cpu_to_le32() and le32_to_cpu()
  278. * in this function (and one or two others in zoran_device.c)
  279. * ensure that these values are always stored in little-endian
  280. * form, regardless of architecture. The zr36057 does Very Bad
  281. * Things on big endian architectures if the stat_com array
  282. * and fragment buffers are not little-endian.
  283. */
  284. static int jpg_fbuffer_alloc(struct zoran_fh *fh)
  285. {
  286. struct zoran *zr = fh->zr;
  287. int i, j, off;
  288. u8 *mem;
  289. for (i = 0; i < fh->buffers.num_buffers; i++) {
  290. if (fh->buffers.buffer[i].jpg.frag_tab)
  291. dprintk(2,
  292. KERN_WARNING
  293. "%s: %s - buffer %d already allocated!?\n",
  294. ZR_DEVNAME(zr), __func__, i);
  295. /* Allocate fragment table for this buffer */
  296. mem = (void *)get_zeroed_page(GFP_KERNEL);
  297. if (mem == 0) {
  298. dprintk(1,
  299. KERN_ERR
  300. "%s: %s - get_zeroed_page (frag_tab) failed for buffer %d\n",
  301. ZR_DEVNAME(zr), __func__, i);
  302. jpg_fbuffer_free(fh);
  303. return -ENOBUFS;
  304. }
  305. fh->buffers.buffer[i].jpg.frag_tab = (__le32 *)mem;
  306. fh->buffers.buffer[i].jpg.frag_tab_bus = virt_to_bus(mem);
  307. if (fh->buffers.need_contiguous) {
  308. mem = kmalloc(fh->buffers.buffer_size, GFP_KERNEL);
  309. if (mem == NULL) {
  310. dprintk(1,
  311. KERN_ERR
  312. "%s: %s - kmalloc failed for buffer %d\n",
  313. ZR_DEVNAME(zr), __func__, i);
  314. jpg_fbuffer_free(fh);
  315. return -ENOBUFS;
  316. }
  317. fh->buffers.buffer[i].jpg.frag_tab[0] =
  318. cpu_to_le32(virt_to_bus(mem));
  319. fh->buffers.buffer[i].jpg.frag_tab[1] =
  320. cpu_to_le32((fh->buffers.buffer_size >> 1) | 1);
  321. for (off = 0; off < fh->buffers.buffer_size; off += PAGE_SIZE)
  322. SetPageReserved(virt_to_page(mem + off));
  323. } else {
  324. /* jpg_bufsize is already page aligned */
  325. for (j = 0; j < fh->buffers.buffer_size / PAGE_SIZE; j++) {
  326. mem = (void *)get_zeroed_page(GFP_KERNEL);
  327. if (mem == NULL) {
  328. dprintk(1,
  329. KERN_ERR
  330. "%s: %s - get_zeroed_page failed for buffer %d\n",
  331. ZR_DEVNAME(zr), __func__, i);
  332. jpg_fbuffer_free(fh);
  333. return -ENOBUFS;
  334. }
  335. fh->buffers.buffer[i].jpg.frag_tab[2 * j] =
  336. cpu_to_le32(virt_to_bus(mem));
  337. fh->buffers.buffer[i].jpg.frag_tab[2 * j + 1] =
  338. cpu_to_le32((PAGE_SIZE >> 2) << 1);
  339. SetPageReserved(virt_to_page(mem));
  340. }
  341. fh->buffers.buffer[i].jpg.frag_tab[2 * j - 1] |= cpu_to_le32(1);
  342. }
  343. }
  344. dprintk(4,
  345. KERN_DEBUG "%s: %s - %d KB allocated\n",
  346. ZR_DEVNAME(zr), __func__,
  347. (fh->buffers.num_buffers * fh->buffers.buffer_size) >> 10);
  348. fh->buffers.allocated = 1;
  349. return 0;
  350. }
  351. /* free the MJPEG grab buffers */
  352. static void jpg_fbuffer_free(struct zoran_fh *fh)
  353. {
  354. struct zoran *zr = fh->zr;
  355. int i, j, off;
  356. unsigned char *mem;
  357. __le32 frag_tab;
  358. struct zoran_buffer *buffer;
  359. dprintk(4, KERN_DEBUG "%s: %s\n", ZR_DEVNAME(zr), __func__);
  360. for (i = 0, buffer = &fh->buffers.buffer[0];
  361. i < fh->buffers.num_buffers; i++, buffer++) {
  362. if (!buffer->jpg.frag_tab)
  363. continue;
  364. if (fh->buffers.need_contiguous) {
  365. frag_tab = buffer->jpg.frag_tab[0];
  366. if (frag_tab) {
  367. mem = bus_to_virt(le32_to_cpu(frag_tab));
  368. for (off = 0; off < fh->buffers.buffer_size; off += PAGE_SIZE)
  369. ClearPageReserved(virt_to_page(mem + off));
  370. kfree(mem);
  371. buffer->jpg.frag_tab[0] = 0;
  372. buffer->jpg.frag_tab[1] = 0;
  373. }
  374. } else {
  375. for (j = 0; j < fh->buffers.buffer_size / PAGE_SIZE; j++) {
  376. frag_tab = buffer->jpg.frag_tab[2 * j];
  377. if (!frag_tab)
  378. break;
  379. ClearPageReserved(virt_to_page(bus_to_virt(le32_to_cpu(frag_tab))));
  380. free_page((unsigned long)bus_to_virt(le32_to_cpu(frag_tab)));
  381. buffer->jpg.frag_tab[2 * j] = 0;
  382. buffer->jpg.frag_tab[2 * j + 1] = 0;
  383. }
  384. }
  385. free_page((unsigned long)buffer->jpg.frag_tab);
  386. buffer->jpg.frag_tab = NULL;
  387. }
  388. fh->buffers.allocated = 0;
  389. }
  390. /*
  391. * V4L Buffer grabbing
  392. */
  393. static int
  394. zoran_v4l_set_format (struct zoran_fh *fh,
  395. int width,
  396. int height,
  397. const struct zoran_format *format)
  398. {
  399. struct zoran *zr = fh->zr;
  400. int bpp;
  401. /* Check size and format of the grab wanted */
  402. if (height < BUZ_MIN_HEIGHT || width < BUZ_MIN_WIDTH ||
  403. height > BUZ_MAX_HEIGHT || width > BUZ_MAX_WIDTH) {
  404. dprintk(1,
  405. KERN_ERR
  406. "%s: %s - wrong frame size (%dx%d)\n",
  407. ZR_DEVNAME(zr), __func__, width, height);
  408. return -EINVAL;
  409. }
  410. bpp = (format->depth + 7) / 8;
  411. /* Check against available buffer size */
  412. if (height * width * bpp > fh->buffers.buffer_size) {
  413. dprintk(1,
  414. KERN_ERR
  415. "%s: %s - video buffer size (%d kB) is too small\n",
  416. ZR_DEVNAME(zr), __func__, fh->buffers.buffer_size >> 10);
  417. return -EINVAL;
  418. }
  419. /* The video front end needs 4-byte alinged line sizes */
  420. if ((bpp == 2 && (width & 1)) || (bpp == 3 && (width & 3))) {
  421. dprintk(1,
  422. KERN_ERR
  423. "%s: %s - wrong frame alignment\n",
  424. ZR_DEVNAME(zr), __func__);
  425. return -EINVAL;
  426. }
  427. fh->v4l_settings.width = width;
  428. fh->v4l_settings.height = height;
  429. fh->v4l_settings.format = format;
  430. fh->v4l_settings.bytesperline = bpp * fh->v4l_settings.width;
  431. return 0;
  432. }
  433. static int zoran_v4l_queue_frame(struct zoran_fh *fh, int num)
  434. {
  435. struct zoran *zr = fh->zr;
  436. unsigned long flags;
  437. int res = 0;
  438. if (!fh->buffers.allocated) {
  439. dprintk(1,
  440. KERN_ERR
  441. "%s: %s - buffers not yet allocated\n",
  442. ZR_DEVNAME(zr), __func__);
  443. res = -ENOMEM;
  444. }
  445. /* No grabbing outside the buffer range! */
  446. if (num >= fh->buffers.num_buffers || num < 0) {
  447. dprintk(1,
  448. KERN_ERR
  449. "%s: %s - buffer %d is out of range\n",
  450. ZR_DEVNAME(zr), __func__, num);
  451. res = -EINVAL;
  452. }
  453. spin_lock_irqsave(&zr->spinlock, flags);
  454. if (fh->buffers.active == ZORAN_FREE) {
  455. if (zr->v4l_buffers.active == ZORAN_FREE) {
  456. zr->v4l_buffers = fh->buffers;
  457. fh->buffers.active = ZORAN_ACTIVE;
  458. } else {
  459. dprintk(1,
  460. KERN_ERR
  461. "%s: %s - another session is already capturing\n",
  462. ZR_DEVNAME(zr), __func__);
  463. res = -EBUSY;
  464. }
  465. }
  466. /* make sure a grab isn't going on currently with this buffer */
  467. if (!res) {
  468. switch (zr->v4l_buffers.buffer[num].state) {
  469. default:
  470. case BUZ_STATE_PEND:
  471. if (zr->v4l_buffers.active == ZORAN_FREE) {
  472. fh->buffers.active = ZORAN_FREE;
  473. zr->v4l_buffers.allocated = 0;
  474. }
  475. res = -EBUSY; /* what are you doing? */
  476. break;
  477. case BUZ_STATE_DONE:
  478. dprintk(2,
  479. KERN_WARNING
  480. "%s: %s - queueing buffer %d in state DONE!?\n",
  481. ZR_DEVNAME(zr), __func__, num);
  482. case BUZ_STATE_USER:
  483. /* since there is at least one unused buffer there's room for at least
  484. * one more pend[] entry */
  485. zr->v4l_pend[zr->v4l_pend_head++ & V4L_MASK_FRAME] = num;
  486. zr->v4l_buffers.buffer[num].state = BUZ_STATE_PEND;
  487. zr->v4l_buffers.buffer[num].bs.length =
  488. fh->v4l_settings.bytesperline *
  489. zr->v4l_settings.height;
  490. fh->buffers.buffer[num] = zr->v4l_buffers.buffer[num];
  491. break;
  492. }
  493. }
  494. spin_unlock_irqrestore(&zr->spinlock, flags);
  495. if (!res && zr->v4l_buffers.active == ZORAN_FREE)
  496. zr->v4l_buffers.active = fh->buffers.active;
  497. return res;
  498. }
  499. /*
  500. * Sync on a V4L buffer
  501. */
  502. static int v4l_sync(struct zoran_fh *fh, int frame)
  503. {
  504. struct zoran *zr = fh->zr;
  505. unsigned long flags;
  506. if (fh->buffers.active == ZORAN_FREE) {
  507. dprintk(1,
  508. KERN_ERR
  509. "%s: %s - no grab active for this session\n",
  510. ZR_DEVNAME(zr), __func__);
  511. return -EINVAL;
  512. }
  513. /* check passed-in frame number */
  514. if (frame >= fh->buffers.num_buffers || frame < 0) {
  515. dprintk(1,
  516. KERN_ERR "%s: %s - frame %d is invalid\n",
  517. ZR_DEVNAME(zr), __func__, frame);
  518. return -EINVAL;
  519. }
  520. /* Check if is buffer was queued at all */
  521. if (zr->v4l_buffers.buffer[frame].state == BUZ_STATE_USER) {
  522. dprintk(1,
  523. KERN_ERR
  524. "%s: %s - attempt to sync on a buffer which was not queued?\n",
  525. ZR_DEVNAME(zr), __func__);
  526. return -EPROTO;
  527. }
  528. /* wait on this buffer to get ready */
  529. if (!wait_event_interruptible_timeout(zr->v4l_capq,
  530. (zr->v4l_buffers.buffer[frame].state != BUZ_STATE_PEND), 10*HZ))
  531. return -ETIME;
  532. if (signal_pending(current))
  533. return -ERESTARTSYS;
  534. /* buffer should now be in BUZ_STATE_DONE */
  535. if (zr->v4l_buffers.buffer[frame].state != BUZ_STATE_DONE)
  536. dprintk(2,
  537. KERN_ERR "%s: %s - internal state error\n",
  538. ZR_DEVNAME(zr), __func__);
  539. zr->v4l_buffers.buffer[frame].state = BUZ_STATE_USER;
  540. fh->buffers.buffer[frame] = zr->v4l_buffers.buffer[frame];
  541. spin_lock_irqsave(&zr->spinlock, flags);
  542. /* Check if streaming capture has finished */
  543. if (zr->v4l_pend_tail == zr->v4l_pend_head) {
  544. zr36057_set_memgrab(zr, 0);
  545. if (zr->v4l_buffers.active == ZORAN_ACTIVE) {
  546. fh->buffers.active = zr->v4l_buffers.active = ZORAN_FREE;
  547. zr->v4l_buffers.allocated = 0;
  548. }
  549. }
  550. spin_unlock_irqrestore(&zr->spinlock, flags);
  551. return 0;
  552. }
  553. /*
  554. * Queue a MJPEG buffer for capture/playback
  555. */
  556. static int zoran_jpg_queue_frame(struct zoran_fh *fh, int num,
  557. enum zoran_codec_mode mode)
  558. {
  559. struct zoran *zr = fh->zr;
  560. unsigned long flags;
  561. int res = 0;
  562. /* Check if buffers are allocated */
  563. if (!fh->buffers.allocated) {
  564. dprintk(1,
  565. KERN_ERR
  566. "%s: %s - buffers not yet allocated\n",
  567. ZR_DEVNAME(zr), __func__);
  568. return -ENOMEM;
  569. }
  570. /* No grabbing outside the buffer range! */
  571. if (num >= fh->buffers.num_buffers || num < 0) {
  572. dprintk(1,
  573. KERN_ERR
  574. "%s: %s - buffer %d out of range\n",
  575. ZR_DEVNAME(zr), __func__, num);
  576. return -EINVAL;
  577. }
  578. /* what is the codec mode right now? */
  579. if (zr->codec_mode == BUZ_MODE_IDLE) {
  580. zr->jpg_settings = fh->jpg_settings;
  581. } else if (zr->codec_mode != mode) {
  582. /* wrong codec mode active - invalid */
  583. dprintk(1,
  584. KERN_ERR
  585. "%s: %s - codec in wrong mode\n",
  586. ZR_DEVNAME(zr), __func__);
  587. return -EINVAL;
  588. }
  589. if (fh->buffers.active == ZORAN_FREE) {
  590. if (zr->jpg_buffers.active == ZORAN_FREE) {
  591. zr->jpg_buffers = fh->buffers;
  592. fh->buffers.active = ZORAN_ACTIVE;
  593. } else {
  594. dprintk(1,
  595. KERN_ERR
  596. "%s: %s - another session is already capturing\n",
  597. ZR_DEVNAME(zr), __func__);
  598. res = -EBUSY;
  599. }
  600. }
  601. if (!res && zr->codec_mode == BUZ_MODE_IDLE) {
  602. /* Ok load up the jpeg codec */
  603. zr36057_enable_jpg(zr, mode);
  604. }
  605. spin_lock_irqsave(&zr->spinlock, flags);
  606. if (!res) {
  607. switch (zr->jpg_buffers.buffer[num].state) {
  608. case BUZ_STATE_DONE:
  609. dprintk(2,
  610. KERN_WARNING
  611. "%s: %s - queing frame in BUZ_STATE_DONE state!?\n",
  612. ZR_DEVNAME(zr), __func__);
  613. case BUZ_STATE_USER:
  614. /* since there is at least one unused buffer there's room for at
  615. *least one more pend[] entry */
  616. zr->jpg_pend[zr->jpg_que_head++ & BUZ_MASK_FRAME] = num;
  617. zr->jpg_buffers.buffer[num].state = BUZ_STATE_PEND;
  618. fh->buffers.buffer[num] = zr->jpg_buffers.buffer[num];
  619. zoran_feed_stat_com(zr);
  620. break;
  621. default:
  622. case BUZ_STATE_DMA:
  623. case BUZ_STATE_PEND:
  624. if (zr->jpg_buffers.active == ZORAN_FREE) {
  625. fh->buffers.active = ZORAN_FREE;
  626. zr->jpg_buffers.allocated = 0;
  627. }
  628. res = -EBUSY; /* what are you doing? */
  629. break;
  630. }
  631. }
  632. spin_unlock_irqrestore(&zr->spinlock, flags);
  633. if (!res && zr->jpg_buffers.active == ZORAN_FREE)
  634. zr->jpg_buffers.active = fh->buffers.active;
  635. return res;
  636. }
  637. static int jpg_qbuf(struct zoran_fh *fh, int frame, enum zoran_codec_mode mode)
  638. {
  639. struct zoran *zr = fh->zr;
  640. int res = 0;
  641. /* Does the user want to stop streaming? */
  642. if (frame < 0) {
  643. if (zr->codec_mode == mode) {
  644. if (fh->buffers.active == ZORAN_FREE) {
  645. dprintk(1,
  646. KERN_ERR
  647. "%s: %s(-1) - session not active\n",
  648. ZR_DEVNAME(zr), __func__);
  649. return -EINVAL;
  650. }
  651. fh->buffers.active = zr->jpg_buffers.active = ZORAN_FREE;
  652. zr->jpg_buffers.allocated = 0;
  653. zr36057_enable_jpg(zr, BUZ_MODE_IDLE);
  654. return 0;
  655. } else {
  656. dprintk(1,
  657. KERN_ERR
  658. "%s: %s - stop streaming but not in streaming mode\n",
  659. ZR_DEVNAME(zr), __func__);
  660. return -EINVAL;
  661. }
  662. }
  663. if ((res = zoran_jpg_queue_frame(fh, frame, mode)))
  664. return res;
  665. /* Start the jpeg codec when the first frame is queued */
  666. if (!res && zr->jpg_que_head == 1)
  667. jpeg_start(zr);
  668. return res;
  669. }
  670. /*
  671. * Sync on a MJPEG buffer
  672. */
  673. static int jpg_sync(struct zoran_fh *fh, struct zoran_sync *bs)
  674. {
  675. struct zoran *zr = fh->zr;
  676. unsigned long flags;
  677. int frame;
  678. if (fh->buffers.active == ZORAN_FREE) {
  679. dprintk(1,
  680. KERN_ERR
  681. "%s: %s - capture is not currently active\n",
  682. ZR_DEVNAME(zr), __func__);
  683. return -EINVAL;
  684. }
  685. if (zr->codec_mode != BUZ_MODE_MOTION_DECOMPRESS &&
  686. zr->codec_mode != BUZ_MODE_MOTION_COMPRESS) {
  687. dprintk(1,
  688. KERN_ERR
  689. "%s: %s - codec not in streaming mode\n",
  690. ZR_DEVNAME(zr), __func__);
  691. return -EINVAL;
  692. }
  693. if (!wait_event_interruptible_timeout(zr->jpg_capq,
  694. (zr->jpg_que_tail != zr->jpg_dma_tail ||
  695. zr->jpg_dma_tail == zr->jpg_dma_head),
  696. 10*HZ)) {
  697. int isr;
  698. btand(~ZR36057_JMC_Go_en, ZR36057_JMC);
  699. udelay(1);
  700. zr->codec->control(zr->codec, CODEC_G_STATUS,
  701. sizeof(isr), &isr);
  702. dprintk(1,
  703. KERN_ERR
  704. "%s: %s - timeout: codec isr=0x%02x\n",
  705. ZR_DEVNAME(zr), __func__, isr);
  706. return -ETIME;
  707. }
  708. if (signal_pending(current))
  709. return -ERESTARTSYS;
  710. spin_lock_irqsave(&zr->spinlock, flags);
  711. if (zr->jpg_dma_tail != zr->jpg_dma_head)
  712. frame = zr->jpg_pend[zr->jpg_que_tail++ & BUZ_MASK_FRAME];
  713. else
  714. frame = zr->jpg_pend[zr->jpg_que_tail & BUZ_MASK_FRAME];
  715. /* buffer should now be in BUZ_STATE_DONE */
  716. if (zr->jpg_buffers.buffer[frame].state != BUZ_STATE_DONE)
  717. dprintk(2,
  718. KERN_ERR "%s: %s - internal state error\n",
  719. ZR_DEVNAME(zr), __func__);
  720. *bs = zr->jpg_buffers.buffer[frame].bs;
  721. bs->frame = frame;
  722. zr->jpg_buffers.buffer[frame].state = BUZ_STATE_USER;
  723. fh->buffers.buffer[frame] = zr->jpg_buffers.buffer[frame];
  724. spin_unlock_irqrestore(&zr->spinlock, flags);
  725. return 0;
  726. }
  727. static void zoran_open_init_session(struct zoran_fh *fh)
  728. {
  729. int i;
  730. struct zoran *zr = fh->zr;
  731. /* Per default, map the V4L Buffers */
  732. map_mode_raw(fh);
  733. /* take over the card's current settings */
  734. fh->overlay_settings = zr->overlay_settings;
  735. fh->overlay_settings.is_set = 0;
  736. fh->overlay_settings.format = zr->overlay_settings.format;
  737. fh->overlay_active = ZORAN_FREE;
  738. /* v4l settings */
  739. fh->v4l_settings = zr->v4l_settings;
  740. /* jpg settings */
  741. fh->jpg_settings = zr->jpg_settings;
  742. /* buffers */
  743. memset(&fh->buffers, 0, sizeof(fh->buffers));
  744. for (i = 0; i < MAX_FRAME; i++) {
  745. fh->buffers.buffer[i].state = BUZ_STATE_USER; /* nothing going on */
  746. fh->buffers.buffer[i].bs.frame = i;
  747. }
  748. fh->buffers.allocated = 0;
  749. fh->buffers.active = ZORAN_FREE;
  750. }
  751. static void zoran_close_end_session(struct zoran_fh *fh)
  752. {
  753. struct zoran *zr = fh->zr;
  754. /* overlay */
  755. if (fh->overlay_active != ZORAN_FREE) {
  756. fh->overlay_active = zr->overlay_active = ZORAN_FREE;
  757. zr->v4l_overlay_active = 0;
  758. if (!zr->v4l_memgrab_active)
  759. zr36057_overlay(zr, 0);
  760. zr->overlay_mask = NULL;
  761. }
  762. if (fh->map_mode == ZORAN_MAP_MODE_RAW) {
  763. /* v4l capture */
  764. if (fh->buffers.active != ZORAN_FREE) {
  765. unsigned long flags;
  766. spin_lock_irqsave(&zr->spinlock, flags);
  767. zr36057_set_memgrab(zr, 0);
  768. zr->v4l_buffers.allocated = 0;
  769. zr->v4l_buffers.active = fh->buffers.active = ZORAN_FREE;
  770. spin_unlock_irqrestore(&zr->spinlock, flags);
  771. }
  772. /* v4l buffers */
  773. if (fh->buffers.allocated)
  774. v4l_fbuffer_free(fh);
  775. } else {
  776. /* jpg capture */
  777. if (fh->buffers.active != ZORAN_FREE) {
  778. zr36057_enable_jpg(zr, BUZ_MODE_IDLE);
  779. zr->jpg_buffers.allocated = 0;
  780. zr->jpg_buffers.active = fh->buffers.active = ZORAN_FREE;
  781. }
  782. /* jpg buffers */
  783. if (fh->buffers.allocated)
  784. jpg_fbuffer_free(fh);
  785. }
  786. }
  787. /*
  788. * Open a zoran card. Right now the flags stuff is just playing
  789. */
  790. static int zoran_open(struct file *file)
  791. {
  792. struct zoran *zr = video_drvdata(file);
  793. struct zoran_fh *fh;
  794. int res, first_open = 0;
  795. dprintk(2, KERN_INFO "%s: %s(%s, pid=[%d]), users(-)=%d\n",
  796. ZR_DEVNAME(zr), __func__, current->comm, task_pid_nr(current), zr->user + 1);
  797. lock_kernel();
  798. if (zr->user >= 2048) {
  799. dprintk(1, KERN_ERR "%s: too many users (%d) on device\n",
  800. ZR_DEVNAME(zr), zr->user);
  801. res = -EBUSY;
  802. goto fail_unlock;
  803. }
  804. /* now, create the open()-specific file_ops struct */
  805. fh = kzalloc(sizeof(struct zoran_fh), GFP_KERNEL);
  806. if (!fh) {
  807. dprintk(1,
  808. KERN_ERR
  809. "%s: %s - allocation of zoran_fh failed\n",
  810. ZR_DEVNAME(zr), __func__);
  811. res = -ENOMEM;
  812. goto fail_unlock;
  813. }
  814. /* used to be BUZ_MAX_WIDTH/HEIGHT, but that gives overflows
  815. * on norm-change! */
  816. fh->overlay_mask =
  817. kmalloc(((768 + 31) / 32) * 576 * 4, GFP_KERNEL);
  818. if (!fh->overlay_mask) {
  819. dprintk(1,
  820. KERN_ERR
  821. "%s: %s - allocation of overlay_mask failed\n",
  822. ZR_DEVNAME(zr), __func__);
  823. res = -ENOMEM;
  824. goto fail_fh;
  825. }
  826. if (zr->user++ == 0)
  827. first_open = 1;
  828. /*mutex_unlock(&zr->resource_lock);*/
  829. /* default setup - TODO: look at flags */
  830. if (first_open) { /* First device open */
  831. zr36057_restart(zr);
  832. zoran_open_init_params(zr);
  833. zoran_init_hardware(zr);
  834. btor(ZR36057_ICR_IntPinEn, ZR36057_ICR);
  835. }
  836. /* set file_ops stuff */
  837. file->private_data = fh;
  838. fh->zr = zr;
  839. zoran_open_init_session(fh);
  840. unlock_kernel();
  841. return 0;
  842. fail_fh:
  843. kfree(fh);
  844. fail_unlock:
  845. unlock_kernel();
  846. dprintk(2, KERN_INFO "%s: open failed (%d), users(-)=%d\n",
  847. ZR_DEVNAME(zr), res, zr->user);
  848. return res;
  849. }
  850. static int
  851. zoran_close(struct file *file)
  852. {
  853. struct zoran_fh *fh = file->private_data;
  854. struct zoran *zr = fh->zr;
  855. dprintk(2, KERN_INFO "%s: %s(%s, pid=[%d]), users(+)=%d\n",
  856. ZR_DEVNAME(zr), __func__, current->comm, task_pid_nr(current), zr->user - 1);
  857. /* kernel locks (fs/device.c), so don't do that ourselves
  858. * (prevents deadlocks) */
  859. /*mutex_lock(&zr->resource_lock);*/
  860. zoran_close_end_session(fh);
  861. if (zr->user-- == 1) { /* Last process */
  862. /* Clean up JPEG process */
  863. wake_up_interruptible(&zr->jpg_capq);
  864. zr36057_enable_jpg(zr, BUZ_MODE_IDLE);
  865. zr->jpg_buffers.allocated = 0;
  866. zr->jpg_buffers.active = ZORAN_FREE;
  867. /* disable interrupts */
  868. btand(~ZR36057_ICR_IntPinEn, ZR36057_ICR);
  869. if (zr36067_debug > 1)
  870. print_interrupts(zr);
  871. /* Overlay off */
  872. zr->v4l_overlay_active = 0;
  873. zr36057_overlay(zr, 0);
  874. zr->overlay_mask = NULL;
  875. /* capture off */
  876. wake_up_interruptible(&zr->v4l_capq);
  877. zr36057_set_memgrab(zr, 0);
  878. zr->v4l_buffers.allocated = 0;
  879. zr->v4l_buffers.active = ZORAN_FREE;
  880. zoran_set_pci_master(zr, 0);
  881. if (!pass_through) { /* Switch to color bar */
  882. decoder_call(zr, video, s_stream, 0);
  883. encoder_call(zr, video, s_routing, 2, 0, 0);
  884. }
  885. }
  886. file->private_data = NULL;
  887. kfree(fh->overlay_mask);
  888. kfree(fh);
  889. dprintk(4, KERN_INFO "%s: %s done\n", ZR_DEVNAME(zr), __func__);
  890. return 0;
  891. }
  892. static ssize_t
  893. zoran_read (struct file *file,
  894. char __user *data,
  895. size_t count,
  896. loff_t *ppos)
  897. {
  898. /* we simply don't support read() (yet)... */
  899. return -EINVAL;
  900. }
  901. static ssize_t
  902. zoran_write (struct file *file,
  903. const char __user *data,
  904. size_t count,
  905. loff_t *ppos)
  906. {
  907. /* ...and the same goes for write() */
  908. return -EINVAL;
  909. }
  910. static int setup_fbuffer(struct zoran_fh *fh,
  911. void *base,
  912. const struct zoran_format *fmt,
  913. int width,
  914. int height,
  915. int bytesperline)
  916. {
  917. struct zoran *zr = fh->zr;
  918. /* (Ronald) v4l/v4l2 guidelines */
  919. if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_RAWIO))
  920. return -EPERM;
  921. /* Don't allow frame buffer overlay if PCI or AGP is buggy, or on
  922. ALi Magik (that needs very low latency while the card needs a
  923. higher value always) */
  924. if (pci_pci_problems & (PCIPCI_FAIL | PCIAGP_FAIL | PCIPCI_ALIMAGIK))
  925. return -ENXIO;
  926. /* we need a bytesperline value, even if not given */
  927. if (!bytesperline)
  928. bytesperline = width * ((fmt->depth + 7) & ~7) / 8;
  929. #if 0
  930. if (zr->overlay_active) {
  931. /* dzjee... stupid users... don't even bother to turn off
  932. * overlay before changing the memory location...
  933. * normally, we would return errors here. However, one of
  934. * the tools that does this is... xawtv! and since xawtv
  935. * is used by +/- 99% of the users, we'd rather be user-
  936. * friendly and silently do as if nothing went wrong */
  937. dprintk(3,
  938. KERN_ERR
  939. "%s: %s - forced overlay turnoff because framebuffer changed\n",
  940. ZR_DEVNAME(zr), __func__);
  941. zr36057_overlay(zr, 0);
  942. }
  943. #endif
  944. if (!(fmt->flags & ZORAN_FORMAT_OVERLAY)) {
  945. dprintk(1,
  946. KERN_ERR
  947. "%s: %s - no valid overlay format given\n",
  948. ZR_DEVNAME(zr), __func__);
  949. return -EINVAL;
  950. }
  951. if (height <= 0 || width <= 0 || bytesperline <= 0) {
  952. dprintk(1,
  953. KERN_ERR
  954. "%s: %s - invalid height/width/bpl value (%d|%d|%d)\n",
  955. ZR_DEVNAME(zr), __func__, width, height, bytesperline);
  956. return -EINVAL;
  957. }
  958. if (bytesperline & 3) {
  959. dprintk(1,
  960. KERN_ERR
  961. "%s: %s - bytesperline (%d) must be 4-byte aligned\n",
  962. ZR_DEVNAME(zr), __func__, bytesperline);
  963. return -EINVAL;
  964. }
  965. zr->vbuf_base = (void *) ((unsigned long) base & ~3);
  966. zr->vbuf_height = height;
  967. zr->vbuf_width = width;
  968. zr->vbuf_depth = fmt->depth;
  969. zr->overlay_settings.format = fmt;
  970. zr->vbuf_bytesperline = bytesperline;
  971. /* The user should set new window parameters */
  972. zr->overlay_settings.is_set = 0;
  973. return 0;
  974. }
  975. static int setup_window(struct zoran_fh *fh, int x, int y, int width, int height,
  976. struct v4l2_clip __user *clips, int clipcount, void __user *bitmap)
  977. {
  978. struct zoran *zr = fh->zr;
  979. struct v4l2_clip *vcp = NULL;
  980. int on, end;
  981. if (!zr->vbuf_base) {
  982. dprintk(1,
  983. KERN_ERR
  984. "%s: %s - frame buffer has to be set first\n",
  985. ZR_DEVNAME(zr), __func__);
  986. return -EINVAL;
  987. }
  988. if (!fh->overlay_settings.format) {
  989. dprintk(1,
  990. KERN_ERR
  991. "%s: %s - no overlay format set\n",
  992. ZR_DEVNAME(zr), __func__);
  993. return -EINVAL;
  994. }
  995. /*
  996. * The video front end needs 4-byte alinged line sizes, we correct that
  997. * silently here if necessary
  998. */
  999. if (zr->vbuf_depth == 15 || zr->vbuf_depth == 16) {
  1000. end = (x + width) & ~1; /* round down */
  1001. x = (x + 1) & ~1; /* round up */
  1002. width = end - x;
  1003. }
  1004. if (zr->vbuf_depth == 24) {
  1005. end = (x + width) & ~3; /* round down */
  1006. x = (x + 3) & ~3; /* round up */
  1007. width = end - x;
  1008. }
  1009. if (width > BUZ_MAX_WIDTH)
  1010. width = BUZ_MAX_WIDTH;
  1011. if (height > BUZ_MAX_HEIGHT)
  1012. height = BUZ_MAX_HEIGHT;
  1013. /* Check for vaild parameters */
  1014. if (width < BUZ_MIN_WIDTH || height < BUZ_MIN_HEIGHT ||
  1015. width > BUZ_MAX_WIDTH || height > BUZ_MAX_HEIGHT) {
  1016. dprintk(1,
  1017. KERN_ERR
  1018. "%s: %s - width = %d or height = %d invalid\n",
  1019. ZR_DEVNAME(zr), __func__, width, height);
  1020. return -EINVAL;
  1021. }
  1022. fh->overlay_settings.x = x;
  1023. fh->overlay_settings.y = y;
  1024. fh->overlay_settings.width = width;
  1025. fh->overlay_settings.height = height;
  1026. fh->overlay_settings.clipcount = clipcount;
  1027. /*
  1028. * If an overlay is running, we have to switch it off
  1029. * and switch it on again in order to get the new settings in effect.
  1030. *
  1031. * We also want to avoid that the overlay mask is written
  1032. * when an overlay is running.
  1033. */
  1034. on = zr->v4l_overlay_active && !zr->v4l_memgrab_active &&
  1035. zr->overlay_active != ZORAN_FREE &&
  1036. fh->overlay_active != ZORAN_FREE;
  1037. if (on)
  1038. zr36057_overlay(zr, 0);
  1039. /*
  1040. * Write the overlay mask if clips are wanted.
  1041. * We prefer a bitmap.
  1042. */
  1043. if (bitmap) {
  1044. /* fake value - it just means we want clips */
  1045. fh->overlay_settings.clipcount = 1;
  1046. if (copy_from_user(fh->overlay_mask, bitmap,
  1047. (width * height + 7) / 8)) {
  1048. return -EFAULT;
  1049. }
  1050. } else if (clipcount > 0) {
  1051. /* write our own bitmap from the clips */
  1052. vcp = vmalloc(sizeof(struct v4l2_clip) * (clipcount + 4));
  1053. if (vcp == NULL) {
  1054. dprintk(1,
  1055. KERN_ERR
  1056. "%s: %s - Alloc of clip mask failed\n",
  1057. ZR_DEVNAME(zr), __func__);
  1058. return -ENOMEM;
  1059. }
  1060. if (copy_from_user
  1061. (vcp, clips, sizeof(struct v4l2_clip) * clipcount)) {
  1062. vfree(vcp);
  1063. return -EFAULT;
  1064. }
  1065. write_overlay_mask(fh, vcp, clipcount);
  1066. vfree(vcp);
  1067. }
  1068. fh->overlay_settings.is_set = 1;
  1069. if (fh->overlay_active != ZORAN_FREE &&
  1070. zr->overlay_active != ZORAN_FREE)
  1071. zr->overlay_settings = fh->overlay_settings;
  1072. if (on)
  1073. zr36057_overlay(zr, 1);
  1074. /* Make sure the changes come into effect */
  1075. return wait_grab_pending(zr);
  1076. }
  1077. static int setup_overlay(struct zoran_fh *fh, int on)
  1078. {
  1079. struct zoran *zr = fh->zr;
  1080. /* If there is nothing to do, return immediatly */
  1081. if ((on && fh->overlay_active != ZORAN_FREE) ||
  1082. (!on && fh->overlay_active == ZORAN_FREE))
  1083. return 0;
  1084. /* check whether we're touching someone else's overlay */
  1085. if (on && zr->overlay_active != ZORAN_FREE &&
  1086. fh->overlay_active == ZORAN_FREE) {
  1087. dprintk(1,
  1088. KERN_ERR
  1089. "%s: %s - overlay is already active for another session\n",
  1090. ZR_DEVNAME(zr), __func__);
  1091. return -EBUSY;
  1092. }
  1093. if (!on && zr->overlay_active != ZORAN_FREE &&
  1094. fh->overlay_active == ZORAN_FREE) {
  1095. dprintk(1,
  1096. KERN_ERR
  1097. "%s: %s - you cannot cancel someone else's session\n",
  1098. ZR_DEVNAME(zr), __func__);
  1099. return -EPERM;
  1100. }
  1101. if (on == 0) {
  1102. zr->overlay_active = fh->overlay_active = ZORAN_FREE;
  1103. zr->v4l_overlay_active = 0;
  1104. /* When a grab is running, the video simply
  1105. * won't be switched on any more */
  1106. if (!zr->v4l_memgrab_active)
  1107. zr36057_overlay(zr, 0);
  1108. zr->overlay_mask = NULL;
  1109. } else {
  1110. if (!zr->vbuf_base || !fh->overlay_settings.is_set) {
  1111. dprintk(1,
  1112. KERN_ERR
  1113. "%s: %s - buffer or window not set\n",
  1114. ZR_DEVNAME(zr), __func__);
  1115. return -EINVAL;
  1116. }
  1117. if (!fh->overlay_settings.format) {
  1118. dprintk(1,
  1119. KERN_ERR
  1120. "%s: %s - no overlay format set\n",
  1121. ZR_DEVNAME(zr), __func__);
  1122. return -EINVAL;
  1123. }
  1124. zr->overlay_active = fh->overlay_active = ZORAN_LOCKED;
  1125. zr->v4l_overlay_active = 1;
  1126. zr->overlay_mask = fh->overlay_mask;
  1127. zr->overlay_settings = fh->overlay_settings;
  1128. if (!zr->v4l_memgrab_active)
  1129. zr36057_overlay(zr, 1);
  1130. /* When a grab is running, the video will be
  1131. * switched on when grab is finished */
  1132. }
  1133. /* Make sure the changes come into effect */
  1134. return wait_grab_pending(zr);
  1135. }
  1136. /* get the status of a buffer in the clients buffer queue */
  1137. static int zoran_v4l2_buffer_status(struct zoran_fh *fh,
  1138. struct v4l2_buffer *buf, int num)
  1139. {
  1140. struct zoran *zr = fh->zr;
  1141. unsigned long flags;
  1142. buf->flags = V4L2_BUF_FLAG_MAPPED;
  1143. switch (fh->map_mode) {
  1144. case ZORAN_MAP_MODE_RAW:
  1145. /* check range */
  1146. if (num < 0 || num >= fh->buffers.num_buffers ||
  1147. !fh->buffers.allocated) {
  1148. dprintk(1,
  1149. KERN_ERR
  1150. "%s: %s - wrong number or buffers not allocated\n",
  1151. ZR_DEVNAME(zr), __func__);
  1152. return -EINVAL;
  1153. }
  1154. spin_lock_irqsave(&zr->spinlock, flags);
  1155. dprintk(3,
  1156. KERN_DEBUG
  1157. "%s: %s() - raw active=%c, buffer %d: state=%c, map=%c\n",
  1158. ZR_DEVNAME(zr), __func__,
  1159. "FAL"[fh->buffers.active], num,
  1160. "UPMD"[zr->v4l_buffers.buffer[num].state],
  1161. fh->buffers.buffer[num].map ? 'Y' : 'N');
  1162. spin_unlock_irqrestore(&zr->spinlock, flags);
  1163. buf->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  1164. buf->length = fh->buffers.buffer_size;
  1165. /* get buffer */
  1166. buf->bytesused = fh->buffers.buffer[num].bs.length;
  1167. if (fh->buffers.buffer[num].state == BUZ_STATE_DONE ||
  1168. fh->buffers.buffer[num].state == BUZ_STATE_USER) {
  1169. buf->sequence = fh->buffers.buffer[num].bs.seq;
  1170. buf->flags |= V4L2_BUF_FLAG_DONE;
  1171. buf->timestamp = fh->buffers.buffer[num].bs.timestamp;
  1172. } else {
  1173. buf->flags |= V4L2_BUF_FLAG_QUEUED;
  1174. }
  1175. if (fh->v4l_settings.height <= BUZ_MAX_HEIGHT / 2)
  1176. buf->field = V4L2_FIELD_TOP;
  1177. else
  1178. buf->field = V4L2_FIELD_INTERLACED;
  1179. break;
  1180. case ZORAN_MAP_MODE_JPG_REC:
  1181. case ZORAN_MAP_MODE_JPG_PLAY:
  1182. /* check range */
  1183. if (num < 0 || num >= fh->buffers.num_buffers ||
  1184. !fh->buffers.allocated) {
  1185. dprintk(1,
  1186. KERN_ERR
  1187. "%s: %s - wrong number or buffers not allocated\n",
  1188. ZR_DEVNAME(zr), __func__);
  1189. return -EINVAL;
  1190. }
  1191. buf->type = (fh->map_mode == ZORAN_MAP_MODE_JPG_REC) ?
  1192. V4L2_BUF_TYPE_VIDEO_CAPTURE :
  1193. V4L2_BUF_TYPE_VIDEO_OUTPUT;
  1194. buf->length = fh->buffers.buffer_size;
  1195. /* these variables are only written after frame has been captured */
  1196. if (fh->buffers.buffer[num].state == BUZ_STATE_DONE ||
  1197. fh->buffers.buffer[num].state == BUZ_STATE_USER) {
  1198. buf->sequence = fh->buffers.buffer[num].bs.seq;
  1199. buf->timestamp = fh->buffers.buffer[num].bs.timestamp;
  1200. buf->bytesused = fh->buffers.buffer[num].bs.length;
  1201. buf->flags |= V4L2_BUF_FLAG_DONE;
  1202. } else {
  1203. buf->flags |= V4L2_BUF_FLAG_QUEUED;
  1204. }
  1205. /* which fields are these? */
  1206. if (fh->jpg_settings.TmpDcm != 1)
  1207. buf->field = fh->jpg_settings.odd_even ?
  1208. V4L2_FIELD_TOP : V4L2_FIELD_BOTTOM;
  1209. else
  1210. buf->field = fh->jpg_settings.odd_even ?
  1211. V4L2_FIELD_SEQ_TB : V4L2_FIELD_SEQ_BT;
  1212. break;
  1213. default:
  1214. dprintk(5,
  1215. KERN_ERR
  1216. "%s: %s - invalid buffer type|map_mode (%d|%d)\n",
  1217. ZR_DEVNAME(zr), __func__, buf->type, fh->map_mode);
  1218. return -EINVAL;
  1219. }
  1220. buf->memory = V4L2_MEMORY_MMAP;
  1221. buf->index = num;
  1222. buf->m.offset = buf->length * num;
  1223. return 0;
  1224. }
  1225. static int
  1226. zoran_set_norm (struct zoran *zr,
  1227. v4l2_std_id norm)
  1228. {
  1229. int on;
  1230. if (zr->v4l_buffers.active != ZORAN_FREE ||
  1231. zr->jpg_buffers.active != ZORAN_FREE) {
  1232. dprintk(1,
  1233. KERN_WARNING
  1234. "%s: %s called while in playback/capture mode\n",
  1235. ZR_DEVNAME(zr), __func__);
  1236. return -EBUSY;
  1237. }
  1238. if (!(norm & zr->card.norms)) {
  1239. dprintk(1,
  1240. KERN_ERR "%s: %s - unsupported norm %llx\n",
  1241. ZR_DEVNAME(zr), __func__, norm);
  1242. return -EINVAL;
  1243. }
  1244. if (norm == V4L2_STD_ALL) {
  1245. int status = 0;
  1246. v4l2_std_id std = 0;
  1247. decoder_call(zr, video, querystd, &std);
  1248. decoder_call(zr, core, s_std, std);
  1249. /* let changes come into effect */
  1250. ssleep(2);
  1251. decoder_call(zr, video, g_input_status, &status);
  1252. if (status & V4L2_IN_ST_NO_SIGNAL) {
  1253. dprintk(1,
  1254. KERN_ERR
  1255. "%s: %s - no norm detected\n",
  1256. ZR_DEVNAME(zr), __func__);
  1257. /* reset norm */
  1258. decoder_call(zr, core, s_std, zr->norm);
  1259. return -EIO;
  1260. }
  1261. norm = std;
  1262. }
  1263. if (norm & V4L2_STD_SECAM)
  1264. zr->timing = zr->card.tvn[2];
  1265. else if (norm & V4L2_STD_NTSC)
  1266. zr->timing = zr->card.tvn[1];
  1267. else
  1268. zr->timing = zr->card.tvn[0];
  1269. /* We switch overlay off and on since a change in the
  1270. * norm needs different VFE settings */
  1271. on = zr->overlay_active && !zr->v4l_memgrab_active;
  1272. if (on)
  1273. zr36057_overlay(zr, 0);
  1274. decoder_call(zr, core, s_std, norm);
  1275. encoder_call(zr, video, s_std_output, norm);
  1276. if (on)
  1277. zr36057_overlay(zr, 1);
  1278. /* Make sure the changes come into effect */
  1279. zr->norm = norm;
  1280. return 0;
  1281. }
  1282. static int
  1283. zoran_set_input (struct zoran *zr,
  1284. int input)
  1285. {
  1286. if (input == zr->input) {
  1287. return 0;
  1288. }
  1289. if (zr->v4l_buffers.active != ZORAN_FREE ||
  1290. zr->jpg_buffers.active != ZORAN_FREE) {
  1291. dprintk(1,
  1292. KERN_WARNING
  1293. "%s: %s called while in playback/capture mode\n",
  1294. ZR_DEVNAME(zr), __func__);
  1295. return -EBUSY;
  1296. }
  1297. if (input < 0 || input >= zr->card.inputs) {
  1298. dprintk(1,
  1299. KERN_ERR
  1300. "%s: %s - unnsupported input %d\n",
  1301. ZR_DEVNAME(zr), __func__, input);
  1302. return -EINVAL;
  1303. }
  1304. zr->input = input;
  1305. decoder_call(zr, video, s_routing,
  1306. zr->card.input[input].muxsel, 0, 0);
  1307. return 0;
  1308. }
  1309. /*
  1310. * ioctl routine
  1311. */
  1312. #ifdef CONFIG_VIDEO_V4L1_COMPAT
  1313. static long zoran_default(struct file *file, void *__fh, int cmd, void *arg)
  1314. {
  1315. struct zoran_fh *fh = __fh;
  1316. struct zoran *zr = fh->zr;
  1317. struct zoran_jpg_settings settings;
  1318. switch (cmd) {
  1319. case BUZIOC_G_PARAMS:
  1320. {
  1321. struct zoran_params *bparams = arg;
  1322. dprintk(3, KERN_DEBUG "%s: BUZIOC_G_PARAMS\n", ZR_DEVNAME(zr));
  1323. memset(bparams, 0, sizeof(struct zoran_params));
  1324. bparams->major_version = MAJOR_VERSION;
  1325. bparams->minor_version = MINOR_VERSION;
  1326. mutex_lock(&zr->resource_lock);
  1327. if (zr->norm & V4L2_STD_NTSC)
  1328. bparams->norm = VIDEO_MODE_NTSC;
  1329. else if (zr->norm & V4L2_STD_PAL)
  1330. bparams->norm = VIDEO_MODE_PAL;
  1331. else
  1332. bparams->norm = VIDEO_MODE_SECAM;
  1333. bparams->input = zr->input;
  1334. bparams->decimation = fh->jpg_settings.decimation;
  1335. bparams->HorDcm = fh->jpg_settings.HorDcm;
  1336. bparams->VerDcm = fh->jpg_settings.VerDcm;
  1337. bparams->TmpDcm = fh->jpg_settings.TmpDcm;
  1338. bparams->field_per_buff = fh->jpg_settings.field_per_buff;
  1339. bparams->img_x = fh->jpg_settings.img_x;
  1340. bparams->img_y = fh->jpg_settings.img_y;
  1341. bparams->img_width = fh->jpg_settings.img_width;
  1342. bparams->img_height = fh->jpg_settings.img_height;
  1343. bparams->odd_even = fh->jpg_settings.odd_even;
  1344. bparams->quality = fh->jpg_settings.jpg_comp.quality;
  1345. bparams->APPn = fh->jpg_settings.jpg_comp.APPn;
  1346. bparams->APP_len = fh->jpg_settings.jpg_comp.APP_len;
  1347. memcpy(bparams->APP_data,
  1348. fh->jpg_settings.jpg_comp.APP_data,
  1349. sizeof(bparams->APP_data));
  1350. bparams->COM_len = zr->jpg_settings.jpg_comp.COM_len;
  1351. memcpy(bparams->COM_data,
  1352. fh->jpg_settings.jpg_comp.COM_data,
  1353. sizeof(bparams->COM_data));
  1354. bparams->jpeg_markers =
  1355. fh->jpg_settings.jpg_comp.jpeg_markers;
  1356. mutex_unlock(&zr->resource_lock);
  1357. bparams->VFIFO_FB = 0;
  1358. return 0;
  1359. }
  1360. case BUZIOC_S_PARAMS:
  1361. {
  1362. struct zoran_params *bparams = arg;
  1363. int res = 0;
  1364. dprintk(3, KERN_DEBUG "%s: BUZIOC_S_PARAMS\n", ZR_DEVNAME(zr));
  1365. settings.decimation = bparams->decimation;
  1366. settings.HorDcm = bparams->HorDcm;
  1367. settings.VerDcm = bparams->VerDcm;
  1368. settings.TmpDcm = bparams->TmpDcm;
  1369. settings.field_per_buff = bparams->field_per_buff;
  1370. settings.img_x = bparams->img_x;
  1371. settings.img_y = bparams->img_y;
  1372. settings.img_width = bparams->img_width;
  1373. settings.img_height = bparams->img_height;
  1374. settings.odd_even = bparams->odd_even;
  1375. settings.jpg_comp.quality = bparams->quality;
  1376. settings.jpg_comp.APPn = bparams->APPn;
  1377. settings.jpg_comp.APP_len = bparams->APP_len;
  1378. memcpy(settings.jpg_comp.APP_data, bparams->APP_data,
  1379. sizeof(bparams->APP_data));
  1380. settings.jpg_comp.COM_len = bparams->COM_len;
  1381. memcpy(settings.jpg_comp.COM_data, bparams->COM_data,
  1382. sizeof(bparams->COM_data));
  1383. settings.jpg_comp.jpeg_markers = bparams->jpeg_markers;
  1384. mutex_lock(&zr->resource_lock);
  1385. if (zr->codec_mode != BUZ_MODE_IDLE) {
  1386. dprintk(1,
  1387. KERN_ERR
  1388. "%s: BUZIOC_S_PARAMS called, but Buz in capture/playback mode\n",
  1389. ZR_DEVNAME(zr));
  1390. res = -EINVAL;
  1391. goto sparams_unlock_and_return;
  1392. }
  1393. /* Check the params first before overwriting our
  1394. * nternal values */
  1395. if (zoran_check_jpg_settings(zr, &settings, 0)) {
  1396. res = -EINVAL;
  1397. goto sparams_unlock_and_return;
  1398. }
  1399. fh->jpg_settings = settings;
  1400. sparams_unlock_and_return:
  1401. mutex_unlock(&zr->resource_lock);
  1402. return res;
  1403. }
  1404. case BUZIOC_REQBUFS:
  1405. {
  1406. struct zoran_requestbuffers *breq = arg;
  1407. int res = 0;
  1408. dprintk(3,
  1409. KERN_DEBUG
  1410. "%s: BUZIOC_REQBUFS - count=%lu, size=%lu\n",
  1411. ZR_DEVNAME(zr), breq->count, breq->size);
  1412. /* Enforce reasonable lower and upper limits */
  1413. if (breq->count < 4)
  1414. breq->count = 4; /* Could be choosen smaller */
  1415. if (breq->count > jpg_nbufs)
  1416. breq->count = jpg_nbufs;
  1417. breq->size = PAGE_ALIGN(breq->size);
  1418. if (breq->size < 8192)
  1419. breq->size = 8192; /* Arbitrary */
  1420. /* breq->size is limited by 1 page for the stat_com
  1421. * tables to a Maximum of 2 MB */
  1422. if (breq->size > jpg_bufsize)
  1423. breq->size = jpg_bufsize;
  1424. mutex_lock(&zr->resource_lock);
  1425. if (fh->buffers.allocated) {
  1426. dprintk(1,
  1427. KERN_ERR
  1428. "%s: BUZIOC_REQBUFS - buffers already allocated\n",
  1429. ZR_DEVNAME(zr));
  1430. res = -EBUSY;
  1431. goto jpgreqbuf_unlock_and_return;
  1432. }
  1433. /* The next mmap will map the MJPEG buffers - could
  1434. * also be *_PLAY, but it doesn't matter here */
  1435. map_mode_jpg(fh, 0);
  1436. fh->buffers.num_buffers = breq->count;
  1437. fh->buffers.buffer_size = breq->size;
  1438. if (jpg_fbuffer_alloc(fh)) {
  1439. res = -ENOMEM;
  1440. goto jpgreqbuf_unlock_and_return;
  1441. }
  1442. jpgreqbuf_unlock_and_return:
  1443. mutex_unlock(&zr->resource_lock);
  1444. return res;
  1445. }
  1446. case BUZIOC_QBUF_CAPT:
  1447. {
  1448. int *frame = arg, res;
  1449. dprintk(3, KERN_DEBUG "%s: BUZIOC_QBUF_CAPT - frame=%d\n",
  1450. ZR_DEVNAME(zr), *frame);
  1451. mutex_lock(&zr->resource_lock);
  1452. res = jpg_qbuf(fh, *frame, BUZ_MODE_MOTION_COMPRESS);
  1453. mutex_unlock(&zr->resource_lock);
  1454. return res;
  1455. }
  1456. case BUZIOC_QBUF_PLAY:
  1457. {
  1458. int *frame = arg, res;
  1459. dprintk(3, KERN_DEBUG "%s: BUZIOC_QBUF_PLAY - frame=%d\n",
  1460. ZR_DEVNAME(zr), *frame);
  1461. mutex_lock(&zr->resource_lock);
  1462. res = jpg_qbuf(fh, *frame, BUZ_MODE_MOTION_DECOMPRESS);
  1463. mutex_unlock(&zr->resource_lock);
  1464. return res;
  1465. }
  1466. case BUZIOC_SYNC:
  1467. {
  1468. struct zoran_sync *bsync = arg;
  1469. int res;
  1470. dprintk(3, KERN_DEBUG "%s: BUZIOC_SYNC\n", ZR_DEVNAME(zr));
  1471. mutex_lock(&zr->resource_lock);
  1472. if (fh->map_mode == ZORAN_MAP_MODE_RAW) {
  1473. dprintk(2, KERN_WARNING
  1474. "%s: %s - not in jpg capture mode\n",
  1475. ZR_DEVNAME(zr), __func__);
  1476. res = -EINVAL;
  1477. } else {
  1478. res = jpg_sync(fh, bsync);
  1479. }
  1480. mutex_unlock(&zr->resource_lock);
  1481. return res;
  1482. }
  1483. case BUZIOC_G_STATUS:
  1484. {
  1485. struct zoran_status *bstat = arg;
  1486. int status = 0, res = 0;
  1487. v4l2_std_id norm;
  1488. dprintk(3, KERN_DEBUG "%s: BUZIOC_G_STATUS\n", ZR_DEVNAME(zr));
  1489. if (zr->codec_mode != BUZ_MODE_IDLE) {
  1490. dprintk(1,
  1491. KERN_ERR
  1492. "%s: BUZIOC_G_STATUS called but Buz in capture/playback mode\n",
  1493. ZR_DEVNAME(zr));
  1494. return -EINVAL;
  1495. }
  1496. mutex_lock(&zr->resource_lock);
  1497. if (zr->codec_mode != BUZ_MODE_IDLE) {
  1498. dprintk(1,
  1499. KERN_ERR
  1500. "%s: BUZIOC_G_STATUS called, but Buz in capture/playback mode\n",
  1501. ZR_DEVNAME(zr));
  1502. res = -EINVAL;
  1503. goto gstat_unlock_and_return;
  1504. }
  1505. decoder_call(zr, video, s_routing,
  1506. zr->card.input[bstat->input].muxsel, 0, 0);
  1507. /* sleep 1 second */
  1508. ssleep(1);
  1509. /* Get status of video decoder */
  1510. decoder_call(zr, video, querystd, &norm);
  1511. decoder_call(zr, video, g_input_status, &status);
  1512. /* restore previous input and norm */
  1513. decoder_call(zr, video, s_routing,
  1514. zr->card.input[zr->input].muxsel, 0, 0);
  1515. gstat_unlock_and_return:
  1516. mutex_unlock(&zr->resource_lock);
  1517. if (!res) {
  1518. bstat->signal =
  1519. (status & V4L2_IN_ST_NO_SIGNAL) ? 0 : 1;
  1520. if (norm & V4L2_STD_NTSC)
  1521. bstat->norm = VIDEO_MODE_NTSC;
  1522. else if (norm & V4L2_STD_SECAM)
  1523. bstat->norm = VIDEO_MODE_SECAM;
  1524. else
  1525. bstat->norm = VIDEO_MODE_PAL;
  1526. bstat->color =
  1527. (status & V4L2_IN_ST_NO_COLOR) ? 0 : 1;
  1528. }
  1529. return res;
  1530. }
  1531. default:
  1532. return -EINVAL;
  1533. }
  1534. }
  1535. static int zoran_vidiocgmbuf(struct file *file, void *__fh, struct video_mbuf *vmbuf)
  1536. {
  1537. struct zoran_fh *fh = __fh;
  1538. struct zoran *zr = fh->zr;
  1539. int i, res = 0;
  1540. mutex_lock(&zr->resource_lock);
  1541. if (fh->buffers.allocated) {
  1542. dprintk(1,
  1543. KERN_ERR
  1544. "%s: VIDIOCGMBUF - buffers already allocated\n",
  1545. ZR_DEVNAME(zr));
  1546. res = -EINVAL;
  1547. goto v4l1reqbuf_unlock_and_return;
  1548. }
  1549. /* The next mmap will map the V4L buffers */
  1550. map_mode_raw(fh);
  1551. if (v4l_fbuffer_alloc(fh)) {
  1552. res = -ENOMEM;
  1553. goto v4l1reqbuf_unlock_and_return;
  1554. }
  1555. vmbuf->size = fh->buffers.num_buffers * fh->buffers.buffer_size;
  1556. vmbuf->frames = fh->buffers.num_buffers;
  1557. for (i = 0; i < vmbuf->frames; i++)
  1558. vmbuf->offsets[i] = i * fh->buffers.buffer_size;
  1559. v4l1reqbuf_unlock_and_return:
  1560. mutex_unlock(&zr->resource_lock);
  1561. return res;
  1562. }
  1563. #endif
  1564. static int zoran_querycap(struct file *file, void *__fh, struct v4l2_capability *cap)
  1565. {
  1566. struct zoran_fh *fh = __fh;
  1567. struct zoran *zr = fh->zr;
  1568. memset(cap, 0, sizeof(*cap));
  1569. strncpy(cap->card, ZR_DEVNAME(zr), sizeof(cap->card)-1);
  1570. strncpy(cap->driver, "zoran", sizeof(cap->driver)-1);
  1571. snprintf(cap->bus_info, sizeof(cap->bus_info), "PCI:%s",
  1572. pci_name(zr->pci_dev));
  1573. cap->version = KERNEL_VERSION(MAJOR_VERSION, MINOR_VERSION,
  1574. RELEASE_VERSION);
  1575. cap->capabilities = V4L2_CAP_STREAMING | V4L2_CAP_VIDEO_CAPTURE |
  1576. V4L2_CAP_VIDEO_OUTPUT | V4L2_CAP_VIDEO_OVERLAY;
  1577. return 0;
  1578. }
  1579. static int zoran_enum_fmt(struct zoran *zr, struct v4l2_fmtdesc *fmt, int flag)
  1580. {
  1581. int num = -1, i;
  1582. for (i = 0; i < NUM_FORMATS; i++) {
  1583. if (zoran_formats[i].flags & flag)
  1584. num++;
  1585. if (num == fmt->index)
  1586. break;
  1587. }
  1588. if (fmt->index < 0 /* late, but not too late */ || i == NUM_FORMATS)
  1589. return -EINVAL;
  1590. strncpy(fmt->description, zoran_formats[i].name, sizeof(fmt->description)-1);
  1591. fmt->pixelformat = zoran_formats[i].fourcc;
  1592. if (zoran_formats[i].flags & ZORAN_FORMAT_COMPRESSED)
  1593. fmt->flags |= V4L2_FMT_FLAG_COMPRESSED;
  1594. return 0;
  1595. }
  1596. static int zoran_enum_fmt_vid_cap(struct file *file, void *__fh,
  1597. struct v4l2_fmtdesc *f)
  1598. {
  1599. struct zoran_fh *fh = __fh;
  1600. struct zoran *zr = fh->zr;
  1601. return zoran_enum_fmt(zr, f, ZORAN_FORMAT_CAPTURE);
  1602. }
  1603. static int zoran_enum_fmt_vid_out(struct file *file, void *__fh,
  1604. struct v4l2_fmtdesc *f)
  1605. {
  1606. struct zoran_fh *fh = __fh;
  1607. struct zoran *zr = fh->zr;
  1608. return zoran_enum_fmt(zr, f, ZORAN_FORMAT_PLAYBACK);
  1609. }
  1610. static int zoran_enum_fmt_vid_overlay(struct file *file, void *__fh,
  1611. struct v4l2_fmtdesc *f)
  1612. {
  1613. struct zoran_fh *fh = __fh;
  1614. struct zoran *zr = fh->zr;
  1615. return zoran_enum_fmt(zr, f, ZORAN_FORMAT_OVERLAY);
  1616. }
  1617. static int zoran_g_fmt_vid_out(struct file *file, void *__fh,
  1618. struct v4l2_format *fmt)
  1619. {
  1620. struct zoran_fh *fh = __fh;
  1621. struct zoran *zr = fh->zr;
  1622. mutex_lock(&zr->resource_lock);
  1623. fmt->fmt.pix.width = fh->jpg_settings.img_width / fh->jpg_settings.HorDcm;
  1624. fmt->fmt.pix.height = fh->jpg_settings.img_height * 2 /
  1625. (fh->jpg_settings.VerDcm * fh->jpg_settings.TmpDcm);
  1626. fmt->fmt.pix.sizeimage = zoran_v4l2_calc_bufsize(&fh->jpg_settings);
  1627. fmt->fmt.pix.pixelformat = V4L2_PIX_FMT_MJPEG;
  1628. if (fh->jpg_settings.TmpDcm == 1)
  1629. fmt->fmt.pix.field = (fh->jpg_settings.odd_even ?
  1630. V4L2_FIELD_SEQ_TB : V4L2_FIELD_SEQ_BT);
  1631. else
  1632. fmt->fmt.pix.field = (fh->jpg_settings.odd_even ?
  1633. V4L2_FIELD_TOP : V4L2_FIELD_BOTTOM);
  1634. fmt->fmt.pix.bytesperline = 0;
  1635. fmt->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
  1636. mutex_unlock(&zr->resource_lock);
  1637. return 0;
  1638. }
  1639. static int zoran_g_fmt_vid_cap(struct file *file, void *__fh,
  1640. struct v4l2_format *fmt)
  1641. {
  1642. struct zoran_fh *fh = __fh;
  1643. struct zoran *zr = fh->zr;
  1644. if (fh->map_mode != ZORAN_MAP_MODE_RAW)
  1645. return zoran_g_fmt_vid_out(file, fh, fmt);
  1646. mutex_lock(&zr->resource_lock);
  1647. fmt->fmt.pix.width = fh->v4l_settings.width;
  1648. fmt->fmt.pix.height = fh->v4l_settings.height;
  1649. fmt->fmt.pix.sizeimage = fh->v4l_settings.bytesperline *
  1650. fh->v4l_settings.height;
  1651. fmt->fmt.pix.pixelformat = fh->v4l_settings.format->fourcc;
  1652. fmt->fmt.pix.colorspace = fh->v4l_settings.format->colorspace;
  1653. fmt->fmt.pix.bytesperline = fh->v4l_settings.bytesperline;
  1654. if (BUZ_MAX_HEIGHT < (fh->v4l_settings.height * 2))
  1655. fmt->fmt.pix.field = V4L2_FIELD_INTERLACED;
  1656. else
  1657. fmt->fmt.pix.field = V4L2_FIELD_TOP;
  1658. mutex_unlock(&zr->resource_lock);
  1659. return 0;
  1660. }
  1661. static int zoran_g_fmt_vid_overlay(struct file *file, void *__fh,
  1662. struct v4l2_format *fmt)
  1663. {
  1664. struct zoran_fh *fh = __fh;
  1665. struct zoran *zr = fh->zr;
  1666. mutex_lock(&zr->resource_lock);
  1667. fmt->fmt.win.w.left = fh->overlay_settings.x;
  1668. fmt->fmt.win.w.top = fh->overlay_settings.y;
  1669. fmt->fmt.win.w.width = fh->overlay_settings.width;
  1670. fmt->fmt.win.w.height = fh->overlay_settings.height;
  1671. if (fh->overlay_settings.width * 2 > BUZ_MAX_HEIGHT)
  1672. fmt->fmt.win.field = V4L2_FIELD_INTERLACED;
  1673. else
  1674. fmt->fmt.win.field = V4L2_FIELD_TOP;
  1675. mutex_unlock(&zr->resource_lock);
  1676. return 0;
  1677. }
  1678. static int zoran_try_fmt_vid_overlay(struct file *file, void *__fh,
  1679. struct v4l2_format *fmt)
  1680. {
  1681. struct zoran_fh *fh = __fh;
  1682. struct zoran *zr = fh->zr;
  1683. mutex_lock(&zr->resource_lock);
  1684. if (fmt->fmt.win.w.width > BUZ_MAX_WIDTH)
  1685. fmt->fmt.win.w.width = BUZ_MAX_WIDTH;
  1686. if (fmt->fmt.win.w.width < BUZ_MIN_WIDTH)
  1687. fmt->fmt.win.w.width = BUZ_MIN_WIDTH;
  1688. if (fmt->fmt.win.w.height > BUZ_MAX_HEIGHT)
  1689. fmt->fmt.win.w.height = BUZ_MAX_HEIGHT;
  1690. if (fmt->fmt.win.w.height < BUZ_MIN_HEIGHT)
  1691. fmt->fmt.win.w.height = BUZ_MIN_HEIGHT;
  1692. mutex_unlock(&zr->resource_lock);
  1693. return 0;
  1694. }
  1695. static int zoran_try_fmt_vid_out(struct file *file, void *__fh,
  1696. struct v4l2_format *fmt)
  1697. {
  1698. struct zoran_fh *fh = __fh;
  1699. struct zoran *zr = fh->zr;
  1700. struct zoran_jpg_settings settings;
  1701. int res = 0;
  1702. if (fmt->fmt.pix.pixelformat != V4L2_PIX_FMT_MJPEG)
  1703. return -EINVAL;
  1704. mutex_lock(&zr->resource_lock);
  1705. settings = fh->jpg_settings;
  1706. /* we actually need to set 'real' parameters now */
  1707. if ((fmt->fmt.pix.height * 2) > BUZ_MAX_HEIGHT)
  1708. settings.TmpDcm = 1;
  1709. else
  1710. settings.TmpDcm = 2;
  1711. settings.decimation = 0;
  1712. if (fmt->fmt.pix.height <= fh->jpg_settings.img_height / 2)
  1713. settings.VerDcm = 2;
  1714. else
  1715. settings.VerDcm = 1;
  1716. if (fmt->fmt.pix.width <= fh->jpg_settings.img_width / 4)
  1717. settings.HorDcm = 4;
  1718. else if (fmt->fmt.pix.width <= fh->jpg_settings.img_width / 2)
  1719. settings.HorDcm = 2;
  1720. else
  1721. settings.HorDcm = 1;
  1722. if (settings.TmpDcm == 1)
  1723. settings.field_per_buff = 2;
  1724. else
  1725. settings.field_per_buff = 1;
  1726. if (settings.HorDcm > 1) {
  1727. settings.img_x = (BUZ_MAX_WIDTH == 720) ? 8 : 0;
  1728. settings.img_width = (BUZ_MAX_WIDTH == 720) ? 704 : BUZ_MAX_WIDTH;
  1729. } else {
  1730. settings.img_x = 0;
  1731. settings.img_width = BUZ_MAX_WIDTH;
  1732. }
  1733. /* check */
  1734. res = zoran_check_jpg_settings(zr, &settings, 1);
  1735. if (res)
  1736. goto tryfmt_unlock_and_return;
  1737. /* tell the user what we actually did */
  1738. fmt->fmt.pix.width = settings.img_width / settings.HorDcm;
  1739. fmt->fmt.pix.height = settings.img_height * 2 /
  1740. (settings.TmpDcm * settings.VerDcm);
  1741. if (settings.TmpDcm == 1)
  1742. fmt->fmt.pix.field = (fh->jpg_settings.odd_even ?
  1743. V4L2_FIELD_SEQ_TB : V4L2_FIELD_SEQ_BT);
  1744. else
  1745. fmt->fmt.pix.field = (fh->jpg_settings.odd_even ?
  1746. V4L2_FIELD_TOP : V4L2_FIELD_BOTTOM);
  1747. fmt->fmt.pix.sizeimage = zoran_v4l2_calc_bufsize(&settings);
  1748. fmt->fmt.pix.bytesperline = 0;
  1749. fmt->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
  1750. tryfmt_unlock_and_return:
  1751. mutex_unlock(&zr->resource_lock);
  1752. return res;
  1753. }
  1754. static int zoran_try_fmt_vid_cap(struct file *file, void *__fh,
  1755. struct v4l2_format *fmt)
  1756. {
  1757. struct zoran_fh *fh = __fh;
  1758. struct zoran *zr = fh->zr;
  1759. int bpp;
  1760. int i;
  1761. if (fmt->fmt.pix.pixelformat == V4L2_PIX_FMT_MJPEG)
  1762. return zoran_try_fmt_vid_out(file, fh, fmt);
  1763. mutex_lock(&zr->resource_lock);
  1764. for (i = 0; i < NUM_FORMATS; i++)
  1765. if (zoran_formats[i].fourcc == fmt->fmt.pix.pixelformat)
  1766. break;
  1767. if (i == NUM_FORMATS) {
  1768. mutex_unlock(&zr->resource_lock);
  1769. return -EINVAL;
  1770. }
  1771. bpp = (zoran_formats[i].depth + 7) / 8;
  1772. fmt->fmt.pix.width &= ~((bpp == 2) ? 1 : 3);
  1773. if (fmt->fmt.pix.width > BUZ_MAX_WIDTH)
  1774. fmt->fmt.pix.width = BUZ_MAX_WIDTH;
  1775. if (fmt->fmt.pix.width < BUZ_MIN_WIDTH)
  1776. fmt->fmt.pix.width = BUZ_MIN_WIDTH;
  1777. if (fmt->fmt.pix.height > BUZ_MAX_HEIGHT)
  1778. fmt->fmt.pix.height = BUZ_MAX_HEIGHT;
  1779. if (fmt->fmt.pix.height < BUZ_MIN_HEIGHT)
  1780. fmt->fmt.pix.height = BUZ_MIN_HEIGHT;
  1781. mutex_unlock(&zr->resource_lock);
  1782. return 0;
  1783. }
  1784. static int zoran_s_fmt_vid_overlay(struct file *file, void *__fh,
  1785. struct v4l2_format *fmt)
  1786. {
  1787. struct zoran_fh *fh = __fh;
  1788. struct zoran *zr = fh->zr;
  1789. int res;
  1790. dprintk(3, "x=%d, y=%d, w=%d, h=%d, cnt=%d, map=0x%p\n",
  1791. fmt->fmt.win.w.left, fmt->fmt.win.w.top,
  1792. fmt->fmt.win.w.width,
  1793. fmt->fmt.win.w.height,
  1794. fmt->fmt.win.clipcount,
  1795. fmt->fmt.win.bitmap);
  1796. mutex_lock(&zr->resource_lock);
  1797. res = setup_window(fh, fmt->fmt.win.w.left, fmt->fmt.win.w.top,
  1798. fmt->fmt.win.w.width, fmt->fmt.win.w.height,
  1799. (struct v4l2_clip __user *)fmt->fmt.win.clips,
  1800. fmt->fmt.win.clipcount, fmt->fmt.win.bitmap);
  1801. mutex_unlock(&zr->resource_lock);
  1802. return res;
  1803. }
  1804. static int zoran_s_fmt_vid_out(struct file *file, void *__fh,
  1805. struct v4l2_format *fmt)
  1806. {
  1807. struct zoran_fh *fh = __fh;
  1808. struct zoran *zr = fh->zr;
  1809. __le32 printformat = __cpu_to_le32(fmt->fmt.pix.pixelformat);
  1810. struct zoran_jpg_settings settings;
  1811. int res = 0;
  1812. dprintk(3, "size=%dx%d, fmt=0x%x (%4.4s)\n",
  1813. fmt->fmt.pix.width, fmt->fmt.pix.height,
  1814. fmt->fmt.pix.pixelformat,
  1815. (char *) &printformat);
  1816. if (fmt->fmt.pix.pixelformat != V4L2_PIX_FMT_MJPEG)
  1817. return -EINVAL;
  1818. mutex_lock(&zr->resource_lock);
  1819. if (fh->buffers.allocated) {
  1820. dprintk(1, KERN_ERR "%s: VIDIOC_S_FMT - cannot change capture mode\n",
  1821. ZR_DEVNAME(zr));
  1822. res = -EBUSY;
  1823. goto sfmtjpg_unlock_and_return;
  1824. }
  1825. settings = fh->jpg_settings;
  1826. /* we actually need to set 'real' parameters now */
  1827. if (fmt->fmt.pix.height * 2 > BUZ_MAX_HEIGHT)
  1828. settings.TmpDcm = 1;
  1829. else
  1830. settings.TmpDcm = 2;
  1831. settings.decimation = 0;
  1832. if (fmt->fmt.pix.height <= fh->jpg_settings.img_height / 2)
  1833. settings.VerDcm = 2;
  1834. else
  1835. settings.VerDcm = 1;
  1836. if (fmt->fmt.pix.width <= fh->jpg_settings.img_width / 4)
  1837. settings.HorDcm = 4;
  1838. else if (fmt->fmt.pix.width <= fh->jpg_settings.img_width / 2)
  1839. settings.HorDcm = 2;
  1840. else
  1841. settings.HorDcm = 1;
  1842. if (settings.TmpDcm == 1)
  1843. settings.field_per_buff = 2;
  1844. else
  1845. settings.field_per_buff = 1;
  1846. if (settings.HorDcm > 1) {
  1847. settings.img_x = (BUZ_MAX_WIDTH == 720) ? 8 : 0;
  1848. settings.img_width = (BUZ_MAX_WIDTH == 720) ? 704 : BUZ_MAX_WIDTH;
  1849. } else {
  1850. settings.img_x = 0;
  1851. settings.img_width = BUZ_MAX_WIDTH;
  1852. }
  1853. /* check */
  1854. res = zoran_check_jpg_settings(zr, &settings, 0);
  1855. if (res)
  1856. goto sfmtjpg_unlock_and_return;
  1857. /* it's ok, so set them */
  1858. fh->jpg_settings = settings;
  1859. map_mode_jpg(fh, fmt->type == V4L2_BUF_TYPE_VIDEO_OUTPUT);
  1860. fh->buffers.buffer_size = zoran_v4l2_calc_bufsize(&fh->jpg_settings);
  1861. /* tell the user what we actually did */
  1862. fmt->fmt.pix.width = settings.img_width / settings.HorDcm;
  1863. fmt->fmt.pix.height = settings.img_height * 2 /
  1864. (settings.TmpDcm * settings.VerDcm);
  1865. if (settings.TmpDcm == 1)
  1866. fmt->fmt.pix.field = (fh->jpg_settings.odd_even ?
  1867. V4L2_FIELD_SEQ_TB : V4L2_FIELD_SEQ_BT);
  1868. else
  1869. fmt->fmt.pix.field = (fh->jpg_settings.odd_even ?
  1870. V4L2_FIELD_TOP : V4L2_FIELD_BOTTOM);
  1871. fmt->fmt.pix.bytesperline = 0;
  1872. fmt->fmt.pix.sizeimage = fh->buffers.buffer_size;
  1873. fmt->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
  1874. sfmtjpg_unlock_and_return:
  1875. mutex_unlock(&zr->resource_lock);
  1876. return res;
  1877. }
  1878. static int zoran_s_fmt_vid_cap(struct file *file, void *__fh,
  1879. struct v4l2_format *fmt)
  1880. {
  1881. struct zoran_fh *fh = __fh;
  1882. struct zoran *zr = fh->zr;
  1883. int i;
  1884. int res = 0;
  1885. if (fmt->fmt.pix.pixelformat == V4L2_PIX_FMT_MJPEG)
  1886. return zoran_s_fmt_vid_out(file, fh, fmt);
  1887. for (i = 0; i < NUM_FORMATS; i++)
  1888. if (fmt->fmt.pix.pixelformat == zoran_formats[i].fourcc)
  1889. break;
  1890. if (i == NUM_FORMATS) {
  1891. dprintk(1, KERN_ERR "%s: VIDIOC_S_FMT - unknown/unsupported format 0x%x\n",
  1892. ZR_DEVNAME(zr), fmt->fmt.pix.pixelformat);
  1893. return -EINVAL;
  1894. }
  1895. mutex_lock(&zr->resource_lock);
  1896. if ((fh->map_mode != ZORAN_MAP_MODE_RAW && fh->buffers.allocated) ||
  1897. fh->buffers.active != ZORAN_FREE) {
  1898. dprintk(1, KERN_ERR "%s: VIDIOC_S_FMT - cannot change capture mode\n",
  1899. ZR_DEVNAME(zr));
  1900. res = -EBUSY;
  1901. goto sfmtv4l_unlock_and_return;
  1902. }
  1903. if (fmt->fmt.pix.height > BUZ_MAX_HEIGHT)
  1904. fmt->fmt.pix.height = BUZ_MAX_HEIGHT;
  1905. if (fmt->fmt.pix.width > BUZ_MAX_WIDTH)
  1906. fmt->fmt.pix.width = BUZ_MAX_WIDTH;
  1907. map_mode_raw(fh);
  1908. res = zoran_v4l_set_format(fh, fmt->fmt.pix.width, fmt->fmt.pix.height,
  1909. &zoran_formats[i]);
  1910. if (res)
  1911. goto sfmtv4l_unlock_and_return;
  1912. /* tell the user the results/missing stuff */
  1913. fmt->fmt.pix.bytesperline = fh->v4l_settings.bytesperline;
  1914. fmt->fmt.pix.sizeimage = fh->v4l_settings.height * fh->v4l_settings.bytesperline;
  1915. fmt->fmt.pix.colorspace = fh->v4l_settings.format->colorspace;
  1916. if (BUZ_MAX_HEIGHT < (fh->v4l_settings.height * 2))
  1917. fmt->fmt.pix.field = V4L2_FIELD_INTERLACED;
  1918. else
  1919. fmt->fmt.pix.field = V4L2_FIELD_TOP;
  1920. sfmtv4l_unlock_and_return:
  1921. mutex_unlock(&zr->resource_lock);
  1922. return res;
  1923. }
  1924. static int zoran_g_fbuf(struct file *file, void *__fh,
  1925. struct v4l2_framebuffer *fb)
  1926. {
  1927. struct zoran_fh *fh = __fh;
  1928. struct zoran *zr = fh->zr;
  1929. memset(fb, 0, sizeof(*fb));
  1930. mutex_lock(&zr->resource_lock);
  1931. fb->base = zr->vbuf_base;
  1932. fb->fmt.width = zr->vbuf_width;
  1933. fb->fmt.height = zr->vbuf_height;
  1934. if (zr->overlay_settings.format)
  1935. fb->fmt.pixelformat = fh->overlay_settings.format->fourcc;
  1936. fb->fmt.bytesperline = zr->vbuf_bytesperline;
  1937. mutex_unlock(&zr->resource_lock);
  1938. fb->fmt.colorspace = V4L2_COLORSPACE_SRGB;
  1939. fb->fmt.field = V4L2_FIELD_INTERLACED;
  1940. fb->flags = V4L2_FBUF_FLAG_OVERLAY;
  1941. fb->capability = V4L2_FBUF_CAP_LIST_CLIPPING;
  1942. return 0;
  1943. }
  1944. static int zoran_s_fbuf(struct file *file, void *__fh,
  1945. struct v4l2_framebuffer *fb)
  1946. {
  1947. struct zoran_fh *fh = __fh;
  1948. struct zoran *zr = fh->zr;
  1949. int i, res = 0;
  1950. __le32 printformat = __cpu_to_le32(fb->fmt.pixelformat);
  1951. for (i = 0; i < NUM_FORMATS; i++)
  1952. if (zoran_formats[i].fourcc == fb->fmt.pixelformat)
  1953. break;
  1954. if (i == NUM_FORMATS) {
  1955. dprintk(1, KERN_ERR "%s: VIDIOC_S_FBUF - format=0x%x (%4.4s) not allowed\n",
  1956. ZR_DEVNAME(zr), fb->fmt.pixelformat,
  1957. (char *)&printformat);
  1958. return -EINVAL;
  1959. }
  1960. mutex_lock(&zr->resource_lock);
  1961. res = setup_fbuffer(fh, fb->base, &zoran_formats[i], fb->fmt.width,
  1962. fb->fmt.height, fb->fmt.bytesperline);
  1963. mutex_unlock(&zr->resource_lock);
  1964. return res;
  1965. }
  1966. static int zoran_overlay(struct file *file, void *__fh, unsigned int on)
  1967. {
  1968. struct zoran_fh *fh = __fh;
  1969. struct zoran *zr = fh->zr;
  1970. int res;
  1971. mutex_lock(&zr->resource_lock);
  1972. res = setup_overlay(fh, on);
  1973. mutex_unlock(&zr->resource_lock);
  1974. return res;
  1975. }
  1976. static int zoran_streamoff(struct file *file, void *__fh, enum v4l2_buf_type type);
  1977. static int zoran_reqbufs(struct file *file, void *__fh, struct v4l2_requestbuffers *req)
  1978. {
  1979. struct zoran_fh *fh = __fh;
  1980. struct zoran *zr = fh->zr;
  1981. int res = 0;
  1982. if (req->memory != V4L2_MEMORY_MMAP) {
  1983. dprintk(2,
  1984. KERN_ERR
  1985. "%s: only MEMORY_MMAP capture is supported, not %d\n",
  1986. ZR_DEVNAME(zr), req->memory);
  1987. return -EINVAL;
  1988. }
  1989. if (req->count == 0)
  1990. return zoran_streamoff(file, fh, req->type);
  1991. mutex_lock(&zr->resource_lock);
  1992. if (fh->buffers.allocated) {
  1993. dprintk(2,
  1994. KERN_ERR
  1995. "%s: VIDIOC_REQBUFS - buffers already allocated\n",
  1996. ZR_DEVNAME(zr));
  1997. res = -EBUSY;
  1998. goto v4l2reqbuf_unlock_and_return;
  1999. }
  2000. if (fh->map_mode == ZORAN_MAP_MODE_RAW &&
  2001. req->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
  2002. /* control user input */
  2003. if (req->count < 2)
  2004. req->count = 2;
  2005. if (req->count > v4l_nbufs)
  2006. req->count = v4l_nbufs;
  2007. /* The next mmap will map the V4L buffers */
  2008. map_mode_raw(fh);
  2009. fh->buffers.num_buffers = req->count;
  2010. if (v4l_fbuffer_alloc(fh)) {
  2011. res = -ENOMEM;
  2012. goto v4l2reqbuf_unlock_and_return;
  2013. }
  2014. } else if (fh->map_mode == ZORAN_MAP_MODE_JPG_REC ||
  2015. fh->map_mode == ZORAN_MAP_MODE_JPG_PLAY) {
  2016. /* we need to calculate size ourselves now */
  2017. if (req->count < 4)
  2018. req->count = 4;
  2019. if (req->count > jpg_nbufs)
  2020. req->count = jpg_nbufs;
  2021. /* The next mmap will map the MJPEG buffers */
  2022. map_mode_jpg(fh, req->type == V4L2_BUF_TYPE_VIDEO_OUTPUT);
  2023. fh->buffers.num_buffers = req->count;
  2024. fh->buffers.buffer_size = zoran_v4l2_calc_bufsize(&fh->jpg_settings);
  2025. if (jpg_fbuffer_alloc(fh)) {
  2026. res = -ENOMEM;
  2027. goto v4l2reqbuf_unlock_and_return;
  2028. }
  2029. } else {
  2030. dprintk(1,
  2031. KERN_ERR
  2032. "%s: VIDIOC_REQBUFS - unknown type %d\n",
  2033. ZR_DEVNAME(zr), req->type);
  2034. res = -EINVAL;
  2035. goto v4l2reqbuf_unlock_and_return;
  2036. }
  2037. v4l2reqbuf_unlock_and_return:
  2038. mutex_unlock(&zr->resource_lock);
  2039. return res;
  2040. }
  2041. static int zoran_querybuf(struct file *file, void *__fh, struct v4l2_buffer *buf)
  2042. {
  2043. struct zoran_fh *fh = __fh;
  2044. struct zoran *zr = fh->zr;
  2045. int res;
  2046. mutex_lock(&zr->resource_lock);
  2047. res = zoran_v4l2_buffer_status(fh, buf, buf->index);
  2048. mutex_unlock(&zr->resource_lock);
  2049. return res;
  2050. }
  2051. static int zoran_qbuf(struct file *file, void *__fh, struct v4l2_buffer *buf)
  2052. {
  2053. struct zoran_fh *fh = __fh;
  2054. struct zoran *zr = fh->zr;
  2055. int res = 0, codec_mode, buf_type;
  2056. mutex_lock(&zr->resource_lock);
  2057. switch (fh->map_mode) {
  2058. case ZORAN_MAP_MODE_RAW:
  2059. if (buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
  2060. dprintk(1, KERN_ERR
  2061. "%s: VIDIOC_QBUF - invalid buf->type=%d for map_mode=%d\n",
  2062. ZR_DEVNAME(zr), buf->type, fh->map_mode);
  2063. res = -EINVAL;
  2064. goto qbuf_unlock_and_return;
  2065. }
  2066. res = zoran_v4l_queue_frame(fh, buf->index);
  2067. if (res)
  2068. goto qbuf_unlock_and_return;
  2069. if (!zr->v4l_memgrab_active && fh->buffers.active == ZORAN_LOCKED)
  2070. zr36057_set_memgrab(zr, 1);
  2071. break;
  2072. case ZORAN_MAP_MODE_JPG_REC:
  2073. case ZORAN_MAP_MODE_JPG_PLAY:
  2074. if (fh->map_mode == ZORAN_MAP_MODE_JPG_PLAY) {
  2075. buf_type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
  2076. codec_mode = BUZ_MODE_MOTION_DECOMPRESS;
  2077. } else {
  2078. buf_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  2079. codec_mode = BUZ_MODE_MOTION_COMPRESS;
  2080. }
  2081. if (buf->type != buf_type) {
  2082. dprintk(1, KERN_ERR
  2083. "%s: VIDIOC_QBUF - invalid buf->type=%d for map_mode=%d\n",
  2084. ZR_DEVNAME(zr), buf->type, fh->map_mode);
  2085. res = -EINVAL;
  2086. goto qbuf_unlock_and_return;
  2087. }
  2088. res = zoran_jpg_queue_frame(fh, buf->index, codec_mode);
  2089. if (res != 0)
  2090. goto qbuf_unlock_and_return;
  2091. if (zr->codec_mode == BUZ_MODE_IDLE &&
  2092. fh->buffers.active == ZORAN_LOCKED)
  2093. zr36057_enable_jpg(zr, codec_mode);
  2094. break;
  2095. default:
  2096. dprintk(1, KERN_ERR
  2097. "%s: VIDIOC_QBUF - unsupported type %d\n",
  2098. ZR_DEVNAME(zr), buf->type);
  2099. res = -EINVAL;
  2100. break;
  2101. }
  2102. qbuf_unlock_and_return:
  2103. mutex_unlock(&zr->resource_lock);
  2104. return res;
  2105. }
  2106. static int zoran_dqbuf(struct file *file, void *__fh, struct v4l2_buffer *buf)
  2107. {
  2108. struct zoran_fh *fh = __fh;
  2109. struct zoran *zr = fh->zr;
  2110. int res = 0, buf_type, num = -1; /* compiler borks here (?) */
  2111. mutex_lock(&zr->resource_lock);
  2112. switch (fh->map_mode) {
  2113. case ZORAN_MAP_MODE_RAW:
  2114. if (buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
  2115. dprintk(1, KERN_ERR
  2116. "%s: VIDIOC_QBUF - invalid buf->type=%d for map_mode=%d\n",
  2117. ZR_DEVNAME(zr), buf->type, fh->map_mode);
  2118. res = -EINVAL;
  2119. goto dqbuf_unlock_and_return;
  2120. }
  2121. num = zr->v4l_pend[zr->v4l_sync_tail & V4L_MASK_FRAME];
  2122. if (file->f_flags & O_NONBLOCK &&
  2123. zr->v4l_buffers.buffer[num].state != BUZ_STATE_DONE) {
  2124. res = -EAGAIN;
  2125. goto dqbuf_unlock_and_return;
  2126. }
  2127. res = v4l_sync(fh, num);
  2128. if (res)
  2129. goto dqbuf_unlock_and_return;
  2130. zr->v4l_sync_tail++;
  2131. res = zoran_v4l2_buffer_status(fh, buf, num);
  2132. break;
  2133. case ZORAN_MAP_MODE_JPG_REC:
  2134. case ZORAN_MAP_MODE_JPG_PLAY:
  2135. {
  2136. struct zoran_sync bs;
  2137. if (fh->map_mode == ZORAN_MAP_MODE_JPG_PLAY)
  2138. buf_type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
  2139. else
  2140. buf_type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  2141. if (buf->type != buf_type) {
  2142. dprintk(1, KERN_ERR
  2143. "%s: VIDIOC_QBUF - invalid buf->type=%d for map_mode=%d\n",
  2144. ZR_DEVNAME(zr), buf->type, fh->map_mode);
  2145. res = -EINVAL;
  2146. goto dqbuf_unlock_and_return;
  2147. }
  2148. num = zr->jpg_pend[zr->jpg_que_tail & BUZ_MASK_FRAME];
  2149. if (file->f_flags & O_NONBLOCK &&
  2150. zr->jpg_buffers.buffer[num].state != BUZ_STATE_DONE) {
  2151. res = -EAGAIN;
  2152. goto dqbuf_unlock_and_return;
  2153. }
  2154. res = jpg_sync(fh, &bs);
  2155. if (res)
  2156. goto dqbuf_unlock_and_return;
  2157. res = zoran_v4l2_buffer_status(fh, buf, bs.frame);
  2158. break;
  2159. }
  2160. default:
  2161. dprintk(1, KERN_ERR
  2162. "%s: VIDIOC_DQBUF - unsupported type %d\n",
  2163. ZR_DEVNAME(zr), buf->type);
  2164. res = -EINVAL;
  2165. break;
  2166. }
  2167. dqbuf_unlock_and_return:
  2168. mutex_unlock(&zr->resource_lock);
  2169. return res;
  2170. }
  2171. static int zoran_streamon(struct file *file, void *__fh, enum v4l2_buf_type type)
  2172. {
  2173. struct zoran_fh *fh = __fh;
  2174. struct zoran *zr = fh->zr;
  2175. int res = 0;
  2176. mutex_lock(&zr->resource_lock);
  2177. switch (fh->map_mode) {
  2178. case ZORAN_MAP_MODE_RAW: /* raw capture */
  2179. if (zr->v4l_buffers.active != ZORAN_ACTIVE ||
  2180. fh->buffers.active != ZORAN_ACTIVE) {
  2181. res = -EBUSY;
  2182. goto strmon_unlock_and_return;
  2183. }
  2184. zr->v4l_buffers.active = fh->buffers.active = ZORAN_LOCKED;
  2185. zr->v4l_settings = fh->v4l_settings;
  2186. zr->v4l_sync_tail = zr->v4l_pend_tail;
  2187. if (!zr->v4l_memgrab_active &&
  2188. zr->v4l_pend_head != zr->v4l_pend_tail) {
  2189. zr36057_set_memgrab(zr, 1);
  2190. }
  2191. break;
  2192. case ZORAN_MAP_MODE_JPG_REC:
  2193. case ZORAN_MAP_MODE_JPG_PLAY:
  2194. /* what is the codec mode right now? */
  2195. if (zr->jpg_buffers.active != ZORAN_ACTIVE ||
  2196. fh->buffers.active != ZORAN_ACTIVE) {
  2197. res = -EBUSY;
  2198. goto strmon_unlock_and_return;
  2199. }
  2200. zr->jpg_buffers.active = fh->buffers.active = ZORAN_LOCKED;
  2201. if (zr->jpg_que_head != zr->jpg_que_tail) {
  2202. /* Start the jpeg codec when the first frame is queued */
  2203. jpeg_start(zr);
  2204. }
  2205. break;
  2206. default:
  2207. dprintk(1,
  2208. KERN_ERR
  2209. "%s: VIDIOC_STREAMON - invalid map mode %d\n",
  2210. ZR_DEVNAME(zr), fh->map_mode);
  2211. res = -EINVAL;
  2212. break;
  2213. }
  2214. strmon_unlock_and_return:
  2215. mutex_unlock(&zr->resource_lock);
  2216. return res;
  2217. }
  2218. static int zoran_streamoff(struct file *file, void *__fh, enum v4l2_buf_type type)
  2219. {
  2220. struct zoran_fh *fh = __fh;
  2221. struct zoran *zr = fh->zr;
  2222. int i, res = 0;
  2223. unsigned long flags;
  2224. mutex_lock(&zr->resource_lock);
  2225. switch (fh->map_mode) {
  2226. case ZORAN_MAP_MODE_RAW: /* raw capture */
  2227. if (fh->buffers.active == ZORAN_FREE &&
  2228. zr->v4l_buffers.active != ZORAN_FREE) {
  2229. res = -EPERM; /* stay off other's settings! */
  2230. goto strmoff_unlock_and_return;
  2231. }
  2232. if (zr->v4l_buffers.active == ZORAN_FREE)
  2233. goto strmoff_unlock_and_return;
  2234. spin_lock_irqsave(&zr->spinlock, flags);
  2235. /* unload capture */
  2236. if (zr->v4l_memgrab_active) {
  2237. zr36057_set_memgrab(zr, 0);
  2238. }
  2239. for (i = 0; i < fh->buffers.num_buffers; i++)
  2240. zr->v4l_buffers.buffer[i].state = BUZ_STATE_USER;
  2241. fh->buffers = zr->v4l_buffers;
  2242. zr->v4l_buffers.active = fh->buffers.active = ZORAN_FREE;
  2243. zr->v4l_grab_seq = 0;
  2244. zr->v4l_pend_head = zr->v4l_pend_tail = 0;
  2245. zr->v4l_sync_tail = 0;
  2246. spin_unlock_irqrestore(&zr->spinlock, flags);
  2247. break;
  2248. case ZORAN_MAP_MODE_JPG_REC:
  2249. case ZORAN_MAP_MODE_JPG_PLAY:
  2250. if (fh->buffers.active == ZORAN_FREE &&
  2251. zr->jpg_buffers.active != ZORAN_FREE) {
  2252. res = -EPERM; /* stay off other's settings! */
  2253. goto strmoff_unlock_and_return;
  2254. }
  2255. if (zr->jpg_buffers.active == ZORAN_FREE)
  2256. goto strmoff_unlock_and_return;
  2257. res = jpg_qbuf(fh, -1,
  2258. (fh->map_mode == ZORAN_MAP_MODE_JPG_REC) ?
  2259. BUZ_MODE_MOTION_COMPRESS :
  2260. BUZ_MODE_MOTION_DECOMPRESS);
  2261. if (res)
  2262. goto strmoff_unlock_and_return;
  2263. break;
  2264. default:
  2265. dprintk(1, KERN_ERR
  2266. "%s: VIDIOC_STREAMOFF - invalid map mode %d\n",
  2267. ZR_DEVNAME(zr), fh->map_mode);
  2268. res = -EINVAL;
  2269. break;
  2270. }
  2271. strmoff_unlock_and_return:
  2272. mutex_unlock(&zr->resource_lock);
  2273. return res;
  2274. }
  2275. static int zoran_queryctrl(struct file *file, void *__fh,
  2276. struct v4l2_queryctrl *ctrl)
  2277. {
  2278. struct zoran_fh *fh = __fh;
  2279. struct zoran *zr = fh->zr;
  2280. /* we only support hue/saturation/contrast/brightness */
  2281. if (ctrl->id < V4L2_CID_BRIGHTNESS ||
  2282. ctrl->id > V4L2_CID_HUE)
  2283. return -EINVAL;
  2284. decoder_call(zr, core, queryctrl, ctrl);
  2285. return 0;
  2286. }
  2287. static int zoran_g_ctrl(struct file *file, void *__fh, struct v4l2_control *ctrl)
  2288. {
  2289. struct zoran_fh *fh = __fh;
  2290. struct zoran *zr = fh->zr;
  2291. /* we only support hue/saturation/contrast/brightness */
  2292. if (ctrl->id < V4L2_CID_BRIGHTNESS ||
  2293. ctrl->id > V4L2_CID_HUE)
  2294. return -EINVAL;
  2295. mutex_lock(&zr->resource_lock);
  2296. decoder_call(zr, core, g_ctrl, ctrl);
  2297. mutex_unlock(&zr->resource_lock);
  2298. return 0;
  2299. }
  2300. static int zoran_s_ctrl(struct file *file, void *__fh, struct v4l2_control *ctrl)
  2301. {
  2302. struct zoran_fh *fh = __fh;
  2303. struct zoran *zr = fh->zr;
  2304. /* we only support hue/saturation/contrast/brightness */
  2305. if (ctrl->id < V4L2_CID_BRIGHTNESS ||
  2306. ctrl->id > V4L2_CID_HUE)
  2307. return -EINVAL;
  2308. mutex_lock(&zr->resource_lock);
  2309. decoder_call(zr, core, s_ctrl, ctrl);
  2310. mutex_unlock(&zr->resource_lock);
  2311. return 0;
  2312. }
  2313. static int zoran_g_std(struct file *file, void *__fh, v4l2_std_id *std)
  2314. {
  2315. struct zoran_fh *fh = __fh;
  2316. struct zoran *zr = fh->zr;
  2317. mutex_lock(&zr->resource_lock);
  2318. *std = zr->norm;
  2319. mutex_unlock(&zr->resource_lock);
  2320. return 0;
  2321. }
  2322. static int zoran_s_std(struct file *file, void *__fh, v4l2_std_id *std)
  2323. {
  2324. struct zoran_fh *fh = __fh;
  2325. struct zoran *zr = fh->zr;
  2326. int res = 0;
  2327. mutex_lock(&zr->resource_lock);
  2328. res = zoran_set_norm(zr, *std);
  2329. if (res)
  2330. goto sstd_unlock_and_return;
  2331. res = wait_grab_pending(zr);
  2332. sstd_unlock_and_return:
  2333. mutex_unlock(&zr->resource_lock);
  2334. return res;
  2335. }
  2336. static int zoran_enum_input(struct file *file, void *__fh,
  2337. struct v4l2_input *inp)
  2338. {
  2339. struct zoran_fh *fh = __fh;
  2340. struct zoran *zr = fh->zr;
  2341. if (inp->index < 0 || inp->index >= zr->card.inputs)
  2342. return -EINVAL;
  2343. else {
  2344. int id = inp->index;
  2345. memset(inp, 0, sizeof(*inp));
  2346. inp->index = id;
  2347. }
  2348. strncpy(inp->name, zr->card.input[inp->index].name,
  2349. sizeof(inp->name) - 1);
  2350. inp->type = V4L2_INPUT_TYPE_CAMERA;
  2351. inp->std = V4L2_STD_ALL;
  2352. /* Get status of video decoder */
  2353. mutex_lock(&zr->resource_lock);
  2354. decoder_call(zr, video, g_input_status, &inp->status);
  2355. mutex_unlock(&zr->resource_lock);
  2356. return 0;
  2357. }
  2358. static int zoran_g_input(struct file *file, void *__fh, unsigned int *input)
  2359. {
  2360. struct zoran_fh *fh = __fh;
  2361. struct zoran *zr = fh->zr;
  2362. mutex_lock(&zr->resource_lock);
  2363. *input = zr->input;
  2364. mutex_unlock(&zr->resource_lock);
  2365. return 0;
  2366. }
  2367. static int zoran_s_input(struct file *file, void *__fh, unsigned int input)
  2368. {
  2369. struct zoran_fh *fh = __fh;
  2370. struct zoran *zr = fh->zr;
  2371. int res;
  2372. mutex_lock(&zr->resource_lock);
  2373. res = zoran_set_input(zr, input);
  2374. if (res)
  2375. goto sinput_unlock_and_return;
  2376. /* Make sure the changes come into effect */
  2377. res = wait_grab_pending(zr);
  2378. sinput_unlock_and_return:
  2379. mutex_unlock(&zr->resource_lock);
  2380. return res;
  2381. }
  2382. static int zoran_enum_output(struct file *file, void *__fh,
  2383. struct v4l2_output *outp)
  2384. {
  2385. if (outp->index != 0)
  2386. return -EINVAL;
  2387. memset(outp, 0, sizeof(*outp));
  2388. outp->index = 0;
  2389. outp->type = V4L2_OUTPUT_TYPE_ANALOGVGAOVERLAY;
  2390. strncpy(outp->name, "Autodetect", sizeof(outp->name)-1);
  2391. return 0;
  2392. }
  2393. static int zoran_g_output(struct file *file, void *__fh, unsigned int *output)
  2394. {
  2395. *output = 0;
  2396. return 0;
  2397. }
  2398. static int zoran_s_output(struct file *file, void *__fh, unsigned int output)
  2399. {
  2400. if (output != 0)
  2401. return -EINVAL;
  2402. return 0;
  2403. }
  2404. /* cropping (sub-frame capture) */
  2405. static int zoran_cropcap(struct file *file, void *__fh,
  2406. struct v4l2_cropcap *cropcap)
  2407. {
  2408. struct zoran_fh *fh = __fh;
  2409. struct zoran *zr = fh->zr;
  2410. int type = cropcap->type, res = 0;
  2411. memset(cropcap, 0, sizeof(*cropcap));
  2412. cropcap->type = type;
  2413. mutex_lock(&zr->resource_lock);
  2414. if (cropcap->type != V4L2_BUF_TYPE_VIDEO_OUTPUT &&
  2415. (cropcap->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
  2416. fh->map_mode == ZORAN_MAP_MODE_RAW)) {
  2417. dprintk(1, KERN_ERR
  2418. "%s: VIDIOC_CROPCAP - subcapture only supported for compressed capture\n",
  2419. ZR_DEVNAME(zr));
  2420. res = -EINVAL;
  2421. goto cropcap_unlock_and_return;
  2422. }
  2423. cropcap->bounds.top = cropcap->bounds.left = 0;
  2424. cropcap->bounds.width = BUZ_MAX_WIDTH;
  2425. cropcap->bounds.height = BUZ_MAX_HEIGHT;
  2426. cropcap->defrect.top = cropcap->defrect.left = 0;
  2427. cropcap->defrect.width = BUZ_MIN_WIDTH;
  2428. cropcap->defrect.height = BUZ_MIN_HEIGHT;
  2429. cropcap_unlock_and_return:
  2430. mutex_unlock(&zr->resource_lock);
  2431. return res;
  2432. }
  2433. static int zoran_g_crop(struct file *file, void *__fh, struct v4l2_crop *crop)
  2434. {
  2435. struct zoran_fh *fh = __fh;
  2436. struct zoran *zr = fh->zr;
  2437. int type = crop->type, res = 0;
  2438. memset(crop, 0, sizeof(*crop));
  2439. crop->type = type;
  2440. mutex_lock(&zr->resource_lock);
  2441. if (crop->type != V4L2_BUF_TYPE_VIDEO_OUTPUT &&
  2442. (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
  2443. fh->map_mode == ZORAN_MAP_MODE_RAW)) {
  2444. dprintk(1,
  2445. KERN_ERR
  2446. "%s: VIDIOC_G_CROP - subcapture only supported for compressed capture\n",
  2447. ZR_DEVNAME(zr));
  2448. res = -EINVAL;
  2449. goto gcrop_unlock_and_return;
  2450. }
  2451. crop->c.top = fh->jpg_settings.img_y;
  2452. crop->c.left = fh->jpg_settings.img_x;
  2453. crop->c.width = fh->jpg_settings.img_width;
  2454. crop->c.height = fh->jpg_settings.img_height;
  2455. gcrop_unlock_and_return:
  2456. mutex_unlock(&zr->resource_lock);
  2457. return res;
  2458. }
  2459. static int zoran_s_crop(struct file *file, void *__fh, struct v4l2_crop *crop)
  2460. {
  2461. struct zoran_fh *fh = __fh;
  2462. struct zoran *zr = fh->zr;
  2463. int res = 0;
  2464. struct zoran_jpg_settings settings;
  2465. settings = fh->jpg_settings;
  2466. mutex_lock(&zr->resource_lock);
  2467. if (fh->buffers.allocated) {
  2468. dprintk(1, KERN_ERR
  2469. "%s: VIDIOC_S_CROP - cannot change settings while active\n",
  2470. ZR_DEVNAME(zr));
  2471. res = -EBUSY;
  2472. goto scrop_unlock_and_return;
  2473. }
  2474. if (crop->type != V4L2_BUF_TYPE_VIDEO_OUTPUT &&
  2475. (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
  2476. fh->map_mode == ZORAN_MAP_MODE_RAW)) {
  2477. dprintk(1, KERN_ERR
  2478. "%s: VIDIOC_G_CROP - subcapture only supported for compressed capture\n",
  2479. ZR_DEVNAME(zr));
  2480. res = -EINVAL;
  2481. goto scrop_unlock_and_return;
  2482. }
  2483. /* move into a form that we understand */
  2484. settings.img_x = crop->c.left;
  2485. settings.img_y = crop->c.top;
  2486. settings.img_width = crop->c.width;
  2487. settings.img_height = crop->c.height;
  2488. /* check validity */
  2489. res = zoran_check_jpg_settings(zr, &settings, 0);
  2490. if (res)
  2491. goto scrop_unlock_and_return;
  2492. /* accept */
  2493. fh->jpg_settings = settings;
  2494. scrop_unlock_and_return:
  2495. mutex_unlock(&zr->resource_lock);
  2496. return res;
  2497. }
  2498. static int zoran_g_jpegcomp(struct file *file, void *__fh,
  2499. struct v4l2_jpegcompression *params)
  2500. {
  2501. struct zoran_fh *fh = __fh;
  2502. struct zoran *zr = fh->zr;
  2503. memset(params, 0, sizeof(*params));
  2504. mutex_lock(&zr->resource_lock);
  2505. params->quality = fh->jpg_settings.jpg_comp.quality;
  2506. params->APPn = fh->jpg_settings.jpg_comp.APPn;
  2507. memcpy(params->APP_data,
  2508. fh->jpg_settings.jpg_comp.APP_data,
  2509. fh->jpg_settings.jpg_comp.APP_len);
  2510. params->APP_len = fh->jpg_settings.jpg_comp.APP_len;
  2511. memcpy(params->COM_data,
  2512. fh->jpg_settings.jpg_comp.COM_data,
  2513. fh->jpg_settings.jpg_comp.COM_len);
  2514. params->COM_len = fh->jpg_settings.jpg_comp.COM_len;
  2515. params->jpeg_markers =
  2516. fh->jpg_settings.jpg_comp.jpeg_markers;
  2517. mutex_unlock(&zr->resource_lock);
  2518. return 0;
  2519. }
  2520. static int zoran_s_jpegcomp(struct file *file, void *__fh,
  2521. struct v4l2_jpegcompression *params)
  2522. {
  2523. struct zoran_fh *fh = __fh;
  2524. struct zoran *zr = fh->zr;
  2525. int res = 0;
  2526. struct zoran_jpg_settings settings;
  2527. settings = fh->jpg_settings;
  2528. settings.jpg_comp = *params;
  2529. mutex_lock(&zr->resource_lock);
  2530. if (fh->buffers.active != ZORAN_FREE) {
  2531. dprintk(1, KERN_WARNING
  2532. "%s: VIDIOC_S_JPEGCOMP called while in playback/capture mode\n",
  2533. ZR_DEVNAME(zr));
  2534. res = -EBUSY;
  2535. goto sjpegc_unlock_and_return;
  2536. }
  2537. res = zoran_check_jpg_settings(zr, &settings, 0);
  2538. if (res)
  2539. goto sjpegc_unlock_and_return;
  2540. if (!fh->buffers.allocated)
  2541. fh->buffers.buffer_size =
  2542. zoran_v4l2_calc_bufsize(&fh->jpg_settings);
  2543. fh->jpg_settings.jpg_comp = *params = settings.jpg_comp;
  2544. sjpegc_unlock_and_return:
  2545. mutex_unlock(&zr->resource_lock);
  2546. return res;
  2547. }
  2548. static unsigned int
  2549. zoran_poll (struct file *file,
  2550. poll_table *wait)
  2551. {
  2552. struct zoran_fh *fh = file->private_data;
  2553. struct zoran *zr = fh->zr;
  2554. int res = 0, frame;
  2555. unsigned long flags;
  2556. /* we should check whether buffers are ready to be synced on
  2557. * (w/o waits - O_NONBLOCK) here
  2558. * if ready for read (sync), return POLLIN|POLLRDNORM,
  2559. * if ready for write (sync), return POLLOUT|POLLWRNORM,
  2560. * if error, return POLLERR,
  2561. * if no buffers queued or so, return POLLNVAL
  2562. */
  2563. mutex_lock(&zr->resource_lock);
  2564. switch (fh->map_mode) {
  2565. case ZORAN_MAP_MODE_RAW:
  2566. poll_wait(file, &zr->v4l_capq, wait);
  2567. frame = zr->v4l_pend[zr->v4l_sync_tail & V4L_MASK_FRAME];
  2568. spin_lock_irqsave(&zr->spinlock, flags);
  2569. dprintk(3,
  2570. KERN_DEBUG
  2571. "%s: %s() raw - active=%c, sync_tail=%lu/%c, pend_tail=%lu, pend_head=%lu\n",
  2572. ZR_DEVNAME(zr), __func__,
  2573. "FAL"[fh->buffers.active], zr->v4l_sync_tail,
  2574. "UPMD"[zr->v4l_buffers.buffer[frame].state],
  2575. zr->v4l_pend_tail, zr->v4l_pend_head);
  2576. /* Process is the one capturing? */
  2577. if (fh->buffers.active != ZORAN_FREE &&
  2578. /* Buffer ready to DQBUF? */
  2579. zr->v4l_buffers.buffer[frame].state == BUZ_STATE_DONE)
  2580. res = POLLIN | POLLRDNORM;
  2581. spin_unlock_irqrestore(&zr->spinlock, flags);
  2582. break;
  2583. case ZORAN_MAP_MODE_JPG_REC:
  2584. case ZORAN_MAP_MODE_JPG_PLAY:
  2585. poll_wait(file, &zr->jpg_capq, wait);
  2586. frame = zr->jpg_pend[zr->jpg_que_tail & BUZ_MASK_FRAME];
  2587. spin_lock_irqsave(&zr->spinlock, flags);
  2588. dprintk(3,
  2589. KERN_DEBUG
  2590. "%s: %s() jpg - active=%c, que_tail=%lu/%c, que_head=%lu, dma=%lu/%lu\n",
  2591. ZR_DEVNAME(zr), __func__,
  2592. "FAL"[fh->buffers.active], zr->jpg_que_tail,
  2593. "UPMD"[zr->jpg_buffers.buffer[frame].state],
  2594. zr->jpg_que_head, zr->jpg_dma_tail, zr->jpg_dma_head);
  2595. if (fh->buffers.active != ZORAN_FREE &&
  2596. zr->jpg_buffers.buffer[frame].state == BUZ_STATE_DONE) {
  2597. if (fh->map_mode == ZORAN_MAP_MODE_JPG_REC)
  2598. res = POLLIN | POLLRDNORM;
  2599. else
  2600. res = POLLOUT | POLLWRNORM;
  2601. }
  2602. spin_unlock_irqrestore(&zr->spinlock, flags);
  2603. break;
  2604. default:
  2605. dprintk(1,
  2606. KERN_ERR
  2607. "%s: %s - internal error, unknown map_mode=%d\n",
  2608. ZR_DEVNAME(zr), __func__, fh->map_mode);
  2609. res = POLLNVAL;
  2610. }
  2611. mutex_unlock(&zr->resource_lock);
  2612. return res;
  2613. }
  2614. /*
  2615. * This maps the buffers to user space.
  2616. *
  2617. * Depending on the state of fh->map_mode
  2618. * the V4L or the MJPEG buffers are mapped
  2619. * per buffer or all together
  2620. *
  2621. * Note that we need to connect to some
  2622. * unmap signal event to unmap the de-allocate
  2623. * the buffer accordingly (zoran_vm_close())
  2624. */
  2625. static void
  2626. zoran_vm_open (struct vm_area_struct *vma)
  2627. {
  2628. struct zoran_mapping *map = vma->vm_private_data;
  2629. map->count++;
  2630. }
  2631. static void
  2632. zoran_vm_close (struct vm_area_struct *vma)
  2633. {
  2634. struct zoran_mapping *map = vma->vm_private_data;
  2635. struct zoran_fh *fh = map->file->private_data;
  2636. struct zoran *zr = fh->zr;
  2637. int i;
  2638. if (--map->count > 0)
  2639. return;
  2640. dprintk(3, KERN_INFO "%s: %s - munmap(%s)\n", ZR_DEVNAME(zr),
  2641. __func__, mode_name(fh->map_mode));
  2642. for (i = 0; i < fh->buffers.num_buffers; i++) {
  2643. if (fh->buffers.buffer[i].map == map)
  2644. fh->buffers.buffer[i].map = NULL;
  2645. }
  2646. kfree(map);
  2647. /* Any buffers still mapped? */
  2648. for (i = 0; i < fh->buffers.num_buffers; i++)
  2649. if (fh->buffers.buffer[i].map)
  2650. return;
  2651. dprintk(3, KERN_INFO "%s: %s - free %s buffers\n", ZR_DEVNAME(zr),
  2652. __func__, mode_name(fh->map_mode));
  2653. mutex_lock(&zr->resource_lock);
  2654. if (fh->map_mode == ZORAN_MAP_MODE_RAW) {
  2655. if (fh->buffers.active != ZORAN_FREE) {
  2656. unsigned long flags;
  2657. spin_lock_irqsave(&zr->spinlock, flags);
  2658. zr36057_set_memgrab(zr, 0);
  2659. zr->v4l_buffers.allocated = 0;
  2660. zr->v4l_buffers.active = fh->buffers.active = ZORAN_FREE;
  2661. spin_unlock_irqrestore(&zr->spinlock, flags);
  2662. }
  2663. v4l_fbuffer_free(fh);
  2664. } else {
  2665. if (fh->buffers.active != ZORAN_FREE) {
  2666. jpg_qbuf(fh, -1, zr->codec_mode);
  2667. zr->jpg_buffers.allocated = 0;
  2668. zr->jpg_buffers.active = fh->buffers.active = ZORAN_FREE;
  2669. }
  2670. jpg_fbuffer_free(fh);
  2671. }
  2672. mutex_unlock(&zr->resource_lock);
  2673. }
  2674. static struct vm_operations_struct zoran_vm_ops = {
  2675. .open = zoran_vm_open,
  2676. .close = zoran_vm_close,
  2677. };
  2678. static int
  2679. zoran_mmap (struct file *file,
  2680. struct vm_area_struct *vma)
  2681. {
  2682. struct zoran_fh *fh = file->private_data;
  2683. struct zoran *zr = fh->zr;
  2684. unsigned long size = (vma->vm_end - vma->vm_start);
  2685. unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
  2686. int i, j;
  2687. unsigned long page, start = vma->vm_start, todo, pos, fraglen;
  2688. int first, last;
  2689. struct zoran_mapping *map;
  2690. int res = 0;
  2691. dprintk(3,
  2692. KERN_INFO "%s: %s(%s) of 0x%08lx-0x%08lx (size=%lu)\n",
  2693. ZR_DEVNAME(zr), __func__,
  2694. mode_name(fh->map_mode), vma->vm_start, vma->vm_end, size);
  2695. if (!(vma->vm_flags & VM_SHARED) || !(vma->vm_flags & VM_READ) ||
  2696. !(vma->vm_flags & VM_WRITE)) {
  2697. dprintk(1,
  2698. KERN_ERR
  2699. "%s: %s - no MAP_SHARED/PROT_{READ,WRITE} given\n",
  2700. ZR_DEVNAME(zr), __func__);
  2701. return -EINVAL;
  2702. }
  2703. mutex_lock(&zr->resource_lock);
  2704. if (!fh->buffers.allocated) {
  2705. dprintk(1,
  2706. KERN_ERR
  2707. "%s: %s(%s) - buffers not yet allocated\n",
  2708. ZR_DEVNAME(zr), __func__, mode_name(fh->map_mode));
  2709. res = -ENOMEM;
  2710. goto mmap_unlock_and_return;
  2711. }
  2712. first = offset / fh->buffers.buffer_size;
  2713. last = first - 1 + size / fh->buffers.buffer_size;
  2714. if (offset % fh->buffers.buffer_size != 0 ||
  2715. size % fh->buffers.buffer_size != 0 || first < 0 ||
  2716. last < 0 || first >= fh->buffers.num_buffers ||
  2717. last >= fh->buffers.buffer_size) {
  2718. dprintk(1,
  2719. KERN_ERR
  2720. "%s: %s(%s) - offset=%lu or size=%lu invalid for bufsize=%d and numbufs=%d\n",
  2721. ZR_DEVNAME(zr), __func__, mode_name(fh->map_mode), offset, size,
  2722. fh->buffers.buffer_size,
  2723. fh->buffers.num_buffers);
  2724. res = -EINVAL;
  2725. goto mmap_unlock_and_return;
  2726. }
  2727. /* Check if any buffers are already mapped */
  2728. for (i = first; i <= last; i++) {
  2729. if (fh->buffers.buffer[i].map) {
  2730. dprintk(1,
  2731. KERN_ERR
  2732. "%s: %s(%s) - buffer %d already mapped\n",
  2733. ZR_DEVNAME(zr), __func__, mode_name(fh->map_mode), i);
  2734. res = -EBUSY;
  2735. goto mmap_unlock_and_return;
  2736. }
  2737. }
  2738. /* map these buffers */
  2739. map = kmalloc(sizeof(struct zoran_mapping), GFP_KERNEL);
  2740. if (!map) {
  2741. res = -ENOMEM;
  2742. goto mmap_unlock_and_return;
  2743. }
  2744. map->file = file;
  2745. map->count = 1;
  2746. vma->vm_ops = &zoran_vm_ops;
  2747. vma->vm_flags |= VM_DONTEXPAND;
  2748. vma->vm_private_data = map;
  2749. if (fh->map_mode == ZORAN_MAP_MODE_RAW) {
  2750. for (i = first; i <= last; i++) {
  2751. todo = size;
  2752. if (todo > fh->buffers.buffer_size)
  2753. todo = fh->buffers.buffer_size;
  2754. page = fh->buffers.buffer[i].v4l.fbuffer_phys;
  2755. if (remap_pfn_range(vma, start, page >> PAGE_SHIFT,
  2756. todo, PAGE_SHARED)) {
  2757. dprintk(1,
  2758. KERN_ERR
  2759. "%s: %s(V4L) - remap_pfn_range failed\n",
  2760. ZR_DEVNAME(zr), __func__);
  2761. res = -EAGAIN;
  2762. goto mmap_unlock_and_return;
  2763. }
  2764. size -= todo;
  2765. start += todo;
  2766. fh->buffers.buffer[i].map = map;
  2767. if (size == 0)
  2768. break;
  2769. }
  2770. } else {
  2771. for (i = first; i <= last; i++) {
  2772. for (j = 0;
  2773. j < fh->buffers.buffer_size / PAGE_SIZE;
  2774. j++) {
  2775. fraglen =
  2776. (le32_to_cpu(fh->buffers.buffer[i].jpg.
  2777. frag_tab[2 * j + 1]) & ~1) << 1;
  2778. todo = size;
  2779. if (todo > fraglen)
  2780. todo = fraglen;
  2781. pos =
  2782. le32_to_cpu(fh->buffers.
  2783. buffer[i].jpg.frag_tab[2 * j]);
  2784. /* should just be pos on i386 */
  2785. page = virt_to_phys(bus_to_virt(pos))
  2786. >> PAGE_SHIFT;
  2787. if (remap_pfn_range(vma, start, page,
  2788. todo, PAGE_SHARED)) {
  2789. dprintk(1,
  2790. KERN_ERR
  2791. "%s: %s(V4L) - remap_pfn_range failed\n",
  2792. ZR_DEVNAME(zr), __func__);
  2793. res = -EAGAIN;
  2794. goto mmap_unlock_and_return;
  2795. }
  2796. size -= todo;
  2797. start += todo;
  2798. if (size == 0)
  2799. break;
  2800. if (le32_to_cpu(fh->buffers.buffer[i].jpg.
  2801. frag_tab[2 * j + 1]) & 1)
  2802. break; /* was last fragment */
  2803. }
  2804. fh->buffers.buffer[i].map = map;
  2805. if (size == 0)
  2806. break;
  2807. }
  2808. }
  2809. mmap_unlock_and_return:
  2810. mutex_unlock(&zr->resource_lock);
  2811. return 0;
  2812. }
  2813. static const struct v4l2_ioctl_ops zoran_ioctl_ops = {
  2814. .vidioc_querycap = zoran_querycap,
  2815. .vidioc_cropcap = zoran_cropcap,
  2816. .vidioc_s_crop = zoran_s_crop,
  2817. .vidioc_g_crop = zoran_g_crop,
  2818. .vidioc_enum_input = zoran_enum_input,
  2819. .vidioc_g_input = zoran_g_input,
  2820. .vidioc_s_input = zoran_s_input,
  2821. .vidioc_enum_output = zoran_enum_output,
  2822. .vidioc_g_output = zoran_g_output,
  2823. .vidioc_s_output = zoran_s_output,
  2824. .vidioc_g_fbuf = zoran_g_fbuf,
  2825. .vidioc_s_fbuf = zoran_s_fbuf,
  2826. .vidioc_g_std = zoran_g_std,
  2827. .vidioc_s_std = zoran_s_std,
  2828. .vidioc_g_jpegcomp = zoran_g_jpegcomp,
  2829. .vidioc_s_jpegcomp = zoran_s_jpegcomp,
  2830. .vidioc_overlay = zoran_overlay,
  2831. .vidioc_reqbufs = zoran_reqbufs,
  2832. .vidioc_querybuf = zoran_querybuf,
  2833. .vidioc_qbuf = zoran_qbuf,
  2834. .vidioc_dqbuf = zoran_dqbuf,
  2835. .vidioc_streamon = zoran_streamon,
  2836. .vidioc_streamoff = zoran_streamoff,
  2837. .vidioc_enum_fmt_vid_cap = zoran_enum_fmt_vid_cap,
  2838. .vidioc_enum_fmt_vid_out = zoran_enum_fmt_vid_out,
  2839. .vidioc_enum_fmt_vid_overlay = zoran_enum_fmt_vid_overlay,
  2840. .vidioc_g_fmt_vid_cap = zoran_g_fmt_vid_cap,
  2841. .vidioc_g_fmt_vid_out = zoran_g_fmt_vid_out,
  2842. .vidioc_g_fmt_vid_overlay = zoran_g_fmt_vid_overlay,
  2843. .vidioc_s_fmt_vid_cap = zoran_s_fmt_vid_cap,
  2844. .vidioc_s_fmt_vid_out = zoran_s_fmt_vid_out,
  2845. .vidioc_s_fmt_vid_overlay = zoran_s_fmt_vid_overlay,
  2846. .vidioc_try_fmt_vid_cap = zoran_try_fmt_vid_cap,
  2847. .vidioc_try_fmt_vid_out = zoran_try_fmt_vid_out,
  2848. .vidioc_try_fmt_vid_overlay = zoran_try_fmt_vid_overlay,
  2849. .vidioc_queryctrl = zoran_queryctrl,
  2850. .vidioc_s_ctrl = zoran_s_ctrl,
  2851. .vidioc_g_ctrl = zoran_g_ctrl,
  2852. #ifdef CONFIG_VIDEO_V4L1_COMPAT
  2853. .vidioc_default = zoran_default,
  2854. .vidiocgmbuf = zoran_vidiocgmbuf,
  2855. #endif
  2856. };
  2857. static const struct v4l2_file_operations zoran_fops = {
  2858. .owner = THIS_MODULE,
  2859. .open = zoran_open,
  2860. .release = zoran_close,
  2861. .ioctl = video_ioctl2,
  2862. .read = zoran_read,
  2863. .write = zoran_write,
  2864. .mmap = zoran_mmap,
  2865. .poll = zoran_poll,
  2866. };
  2867. struct video_device zoran_template __devinitdata = {
  2868. .name = ZORAN_NAME,
  2869. .fops = &zoran_fops,
  2870. .ioctl_ops = &zoran_ioctl_ops,
  2871. .release = &zoran_vdev_release,
  2872. .tvnorms = V4L2_STD_NTSC | V4L2_STD_PAL | V4L2_STD_SECAM,
  2873. .minor = -1
  2874. };