v4l2-ioctl.c 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081
  1. /*
  2. * Video capture interface for Linux version 2
  3. *
  4. * A generic framework to process V4L2 ioctl commands.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. *
  11. * Authors: Alan Cox, <alan@lxorguk.ukuu.org.uk> (version 1)
  12. * Mauro Carvalho Chehab <mchehab@kernel.org> (version 2)
  13. */
  14. #include <linux/mm.h>
  15. #include <linux/module.h>
  16. #include <linux/slab.h>
  17. #include <linux/types.h>
  18. #include <linux/kernel.h>
  19. #include <linux/version.h>
  20. #include <linux/videodev2.h>
  21. #include <media/v4l2-common.h>
  22. #include <media/v4l2-ioctl.h>
  23. #include <media/v4l2-ctrls.h>
  24. #include <media/v4l2-fh.h>
  25. #include <media/v4l2-event.h>
  26. #include <media/v4l2-device.h>
  27. #include <media/videobuf2-v4l2.h>
  28. #include <media/v4l2-mc.h>
  29. #include <media/v4l2-mem2mem.h>
  30. #include <trace/events/v4l2.h>
  31. /* Zero out the end of the struct pointed to by p. Everything after, but
  32. * not including, the specified field is cleared. */
  33. #define CLEAR_AFTER_FIELD(p, field) \
  34. memset((u8 *)(p) + offsetof(typeof(*(p)), field) + sizeof((p)->field), \
  35. 0, sizeof(*(p)) - offsetof(typeof(*(p)), field) - sizeof((p)->field))
  36. #define is_valid_ioctl(vfd, cmd) test_bit(_IOC_NR(cmd), (vfd)->valid_ioctls)
  37. struct std_descr {
  38. v4l2_std_id std;
  39. const char *descr;
  40. };
  41. static const struct std_descr standards[] = {
  42. { V4L2_STD_NTSC, "NTSC" },
  43. { V4L2_STD_NTSC_M, "NTSC-M" },
  44. { V4L2_STD_NTSC_M_JP, "NTSC-M-JP" },
  45. { V4L2_STD_NTSC_M_KR, "NTSC-M-KR" },
  46. { V4L2_STD_NTSC_443, "NTSC-443" },
  47. { V4L2_STD_PAL, "PAL" },
  48. { V4L2_STD_PAL_BG, "PAL-BG" },
  49. { V4L2_STD_PAL_B, "PAL-B" },
  50. { V4L2_STD_PAL_B1, "PAL-B1" },
  51. { V4L2_STD_PAL_G, "PAL-G" },
  52. { V4L2_STD_PAL_H, "PAL-H" },
  53. { V4L2_STD_PAL_I, "PAL-I" },
  54. { V4L2_STD_PAL_DK, "PAL-DK" },
  55. { V4L2_STD_PAL_D, "PAL-D" },
  56. { V4L2_STD_PAL_D1, "PAL-D1" },
  57. { V4L2_STD_PAL_K, "PAL-K" },
  58. { V4L2_STD_PAL_M, "PAL-M" },
  59. { V4L2_STD_PAL_N, "PAL-N" },
  60. { V4L2_STD_PAL_Nc, "PAL-Nc" },
  61. { V4L2_STD_PAL_60, "PAL-60" },
  62. { V4L2_STD_SECAM, "SECAM" },
  63. { V4L2_STD_SECAM_B, "SECAM-B" },
  64. { V4L2_STD_SECAM_G, "SECAM-G" },
  65. { V4L2_STD_SECAM_H, "SECAM-H" },
  66. { V4L2_STD_SECAM_DK, "SECAM-DK" },
  67. { V4L2_STD_SECAM_D, "SECAM-D" },
  68. { V4L2_STD_SECAM_K, "SECAM-K" },
  69. { V4L2_STD_SECAM_K1, "SECAM-K1" },
  70. { V4L2_STD_SECAM_L, "SECAM-L" },
  71. { V4L2_STD_SECAM_LC, "SECAM-Lc" },
  72. { 0, "Unknown" }
  73. };
  74. /* video4linux standard ID conversion to standard name
  75. */
  76. const char *v4l2_norm_to_name(v4l2_std_id id)
  77. {
  78. u32 myid = id;
  79. int i;
  80. /* HACK: ppc32 architecture doesn't have __ucmpdi2 function to handle
  81. 64 bit comparations. So, on that architecture, with some gcc
  82. variants, compilation fails. Currently, the max value is 30bit wide.
  83. */
  84. BUG_ON(myid != id);
  85. for (i = 0; standards[i].std; i++)
  86. if (myid == standards[i].std)
  87. break;
  88. return standards[i].descr;
  89. }
  90. EXPORT_SYMBOL(v4l2_norm_to_name);
  91. /* Returns frame period for the given standard */
  92. void v4l2_video_std_frame_period(int id, struct v4l2_fract *frameperiod)
  93. {
  94. if (id & V4L2_STD_525_60) {
  95. frameperiod->numerator = 1001;
  96. frameperiod->denominator = 30000;
  97. } else {
  98. frameperiod->numerator = 1;
  99. frameperiod->denominator = 25;
  100. }
  101. }
  102. EXPORT_SYMBOL(v4l2_video_std_frame_period);
  103. /* Fill in the fields of a v4l2_standard structure according to the
  104. 'id' and 'transmission' parameters. Returns negative on error. */
  105. int v4l2_video_std_construct(struct v4l2_standard *vs,
  106. int id, const char *name)
  107. {
  108. vs->id = id;
  109. v4l2_video_std_frame_period(id, &vs->frameperiod);
  110. vs->framelines = (id & V4L2_STD_525_60) ? 525 : 625;
  111. strscpy(vs->name, name, sizeof(vs->name));
  112. return 0;
  113. }
  114. EXPORT_SYMBOL(v4l2_video_std_construct);
  115. /* Fill in the fields of a v4l2_standard structure according to the
  116. * 'id' and 'vs->index' parameters. Returns negative on error. */
  117. int v4l_video_std_enumstd(struct v4l2_standard *vs, v4l2_std_id id)
  118. {
  119. v4l2_std_id curr_id = 0;
  120. unsigned int index = vs->index, i, j = 0;
  121. const char *descr = "";
  122. /* Return -ENODATA if the id for the current input
  123. or output is 0, meaning that it doesn't support this API. */
  124. if (id == 0)
  125. return -ENODATA;
  126. /* Return norm array in a canonical way */
  127. for (i = 0; i <= index && id; i++) {
  128. /* last std value in the standards array is 0, so this
  129. while always ends there since (id & 0) == 0. */
  130. while ((id & standards[j].std) != standards[j].std)
  131. j++;
  132. curr_id = standards[j].std;
  133. descr = standards[j].descr;
  134. j++;
  135. if (curr_id == 0)
  136. break;
  137. if (curr_id != V4L2_STD_PAL &&
  138. curr_id != V4L2_STD_SECAM &&
  139. curr_id != V4L2_STD_NTSC)
  140. id &= ~curr_id;
  141. }
  142. if (i <= index)
  143. return -EINVAL;
  144. v4l2_video_std_construct(vs, curr_id, descr);
  145. return 0;
  146. }
  147. /* ----------------------------------------------------------------- */
  148. /* some arrays for pretty-printing debug messages of enum types */
  149. const char *v4l2_field_names[] = {
  150. [V4L2_FIELD_ANY] = "any",
  151. [V4L2_FIELD_NONE] = "none",
  152. [V4L2_FIELD_TOP] = "top",
  153. [V4L2_FIELD_BOTTOM] = "bottom",
  154. [V4L2_FIELD_INTERLACED] = "interlaced",
  155. [V4L2_FIELD_SEQ_TB] = "seq-tb",
  156. [V4L2_FIELD_SEQ_BT] = "seq-bt",
  157. [V4L2_FIELD_ALTERNATE] = "alternate",
  158. [V4L2_FIELD_INTERLACED_TB] = "interlaced-tb",
  159. [V4L2_FIELD_INTERLACED_BT] = "interlaced-bt",
  160. };
  161. EXPORT_SYMBOL(v4l2_field_names);
  162. const char *v4l2_type_names[] = {
  163. [0] = "0",
  164. [V4L2_BUF_TYPE_VIDEO_CAPTURE] = "vid-cap",
  165. [V4L2_BUF_TYPE_VIDEO_OVERLAY] = "vid-overlay",
  166. [V4L2_BUF_TYPE_VIDEO_OUTPUT] = "vid-out",
  167. [V4L2_BUF_TYPE_VBI_CAPTURE] = "vbi-cap",
  168. [V4L2_BUF_TYPE_VBI_OUTPUT] = "vbi-out",
  169. [V4L2_BUF_TYPE_SLICED_VBI_CAPTURE] = "sliced-vbi-cap",
  170. [V4L2_BUF_TYPE_SLICED_VBI_OUTPUT] = "sliced-vbi-out",
  171. [V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY] = "vid-out-overlay",
  172. [V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE] = "vid-cap-mplane",
  173. [V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE] = "vid-out-mplane",
  174. [V4L2_BUF_TYPE_SDR_CAPTURE] = "sdr-cap",
  175. [V4L2_BUF_TYPE_SDR_OUTPUT] = "sdr-out",
  176. [V4L2_BUF_TYPE_META_CAPTURE] = "meta-cap",
  177. };
  178. EXPORT_SYMBOL(v4l2_type_names);
  179. static const char *v4l2_memory_names[] = {
  180. [V4L2_MEMORY_MMAP] = "mmap",
  181. [V4L2_MEMORY_USERPTR] = "userptr",
  182. [V4L2_MEMORY_OVERLAY] = "overlay",
  183. [V4L2_MEMORY_DMABUF] = "dmabuf",
  184. };
  185. #define prt_names(a, arr) (((unsigned)(a)) < ARRAY_SIZE(arr) ? arr[a] : "unknown")
  186. /* ------------------------------------------------------------------ */
  187. /* debug help functions */
  188. static void v4l_print_querycap(const void *arg, bool write_only)
  189. {
  190. const struct v4l2_capability *p = arg;
  191. pr_cont("driver=%.*s, card=%.*s, bus=%.*s, version=0x%08x, capabilities=0x%08x, device_caps=0x%08x\n",
  192. (int)sizeof(p->driver), p->driver,
  193. (int)sizeof(p->card), p->card,
  194. (int)sizeof(p->bus_info), p->bus_info,
  195. p->version, p->capabilities, p->device_caps);
  196. }
  197. static void v4l_print_enuminput(const void *arg, bool write_only)
  198. {
  199. const struct v4l2_input *p = arg;
  200. pr_cont("index=%u, name=%.*s, type=%u, audioset=0x%x, tuner=%u, std=0x%08Lx, status=0x%x, capabilities=0x%x\n",
  201. p->index, (int)sizeof(p->name), p->name, p->type, p->audioset,
  202. p->tuner, (unsigned long long)p->std, p->status,
  203. p->capabilities);
  204. }
  205. static void v4l_print_enumoutput(const void *arg, bool write_only)
  206. {
  207. const struct v4l2_output *p = arg;
  208. pr_cont("index=%u, name=%.*s, type=%u, audioset=0x%x, modulator=%u, std=0x%08Lx, capabilities=0x%x\n",
  209. p->index, (int)sizeof(p->name), p->name, p->type, p->audioset,
  210. p->modulator, (unsigned long long)p->std, p->capabilities);
  211. }
  212. static void v4l_print_audio(const void *arg, bool write_only)
  213. {
  214. const struct v4l2_audio *p = arg;
  215. if (write_only)
  216. pr_cont("index=%u, mode=0x%x\n", p->index, p->mode);
  217. else
  218. pr_cont("index=%u, name=%.*s, capability=0x%x, mode=0x%x\n",
  219. p->index, (int)sizeof(p->name), p->name,
  220. p->capability, p->mode);
  221. }
  222. static void v4l_print_audioout(const void *arg, bool write_only)
  223. {
  224. const struct v4l2_audioout *p = arg;
  225. if (write_only)
  226. pr_cont("index=%u\n", p->index);
  227. else
  228. pr_cont("index=%u, name=%.*s, capability=0x%x, mode=0x%x\n",
  229. p->index, (int)sizeof(p->name), p->name,
  230. p->capability, p->mode);
  231. }
  232. static void v4l_print_fmtdesc(const void *arg, bool write_only)
  233. {
  234. const struct v4l2_fmtdesc *p = arg;
  235. pr_cont("index=%u, type=%s, flags=0x%x, pixelformat=%c%c%c%c, description='%.*s'\n",
  236. p->index, prt_names(p->type, v4l2_type_names),
  237. p->flags, (p->pixelformat & 0xff),
  238. (p->pixelformat >> 8) & 0xff,
  239. (p->pixelformat >> 16) & 0xff,
  240. (p->pixelformat >> 24) & 0xff,
  241. (int)sizeof(p->description), p->description);
  242. }
  243. static void v4l_print_format(const void *arg, bool write_only)
  244. {
  245. const struct v4l2_format *p = arg;
  246. const struct v4l2_pix_format *pix;
  247. const struct v4l2_pix_format_mplane *mp;
  248. const struct v4l2_vbi_format *vbi;
  249. const struct v4l2_sliced_vbi_format *sliced;
  250. const struct v4l2_window *win;
  251. const struct v4l2_sdr_format *sdr;
  252. const struct v4l2_meta_format *meta;
  253. unsigned i;
  254. pr_cont("type=%s", prt_names(p->type, v4l2_type_names));
  255. switch (p->type) {
  256. case V4L2_BUF_TYPE_VIDEO_CAPTURE:
  257. case V4L2_BUF_TYPE_VIDEO_OUTPUT:
  258. pix = &p->fmt.pix;
  259. pr_cont(", width=%u, height=%u, pixelformat=%c%c%c%c, field=%s, bytesperline=%u, sizeimage=%u, colorspace=%d, flags=0x%x, ycbcr_enc=%u, quantization=%u, xfer_func=%u\n",
  260. pix->width, pix->height,
  261. (pix->pixelformat & 0xff),
  262. (pix->pixelformat >> 8) & 0xff,
  263. (pix->pixelformat >> 16) & 0xff,
  264. (pix->pixelformat >> 24) & 0xff,
  265. prt_names(pix->field, v4l2_field_names),
  266. pix->bytesperline, pix->sizeimage,
  267. pix->colorspace, pix->flags, pix->ycbcr_enc,
  268. pix->quantization, pix->xfer_func);
  269. break;
  270. case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
  271. case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
  272. mp = &p->fmt.pix_mp;
  273. pr_cont(", width=%u, height=%u, format=%c%c%c%c, field=%s, colorspace=%d, num_planes=%u, flags=0x%x, ycbcr_enc=%u, quantization=%u, xfer_func=%u\n",
  274. mp->width, mp->height,
  275. (mp->pixelformat & 0xff),
  276. (mp->pixelformat >> 8) & 0xff,
  277. (mp->pixelformat >> 16) & 0xff,
  278. (mp->pixelformat >> 24) & 0xff,
  279. prt_names(mp->field, v4l2_field_names),
  280. mp->colorspace, mp->num_planes, mp->flags,
  281. mp->ycbcr_enc, mp->quantization, mp->xfer_func);
  282. for (i = 0; i < mp->num_planes; i++)
  283. printk(KERN_DEBUG "plane %u: bytesperline=%u sizeimage=%u\n", i,
  284. mp->plane_fmt[i].bytesperline,
  285. mp->plane_fmt[i].sizeimage);
  286. break;
  287. case V4L2_BUF_TYPE_VIDEO_OVERLAY:
  288. case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
  289. win = &p->fmt.win;
  290. /* Note: we can't print the clip list here since the clips
  291. * pointer is a userspace pointer, not a kernelspace
  292. * pointer. */
  293. pr_cont(", wxh=%dx%d, x,y=%d,%d, field=%s, chromakey=0x%08x, clipcount=%u, clips=%p, bitmap=%p, global_alpha=0x%02x\n",
  294. win->w.width, win->w.height, win->w.left, win->w.top,
  295. prt_names(win->field, v4l2_field_names),
  296. win->chromakey, win->clipcount, win->clips,
  297. win->bitmap, win->global_alpha);
  298. break;
  299. case V4L2_BUF_TYPE_VBI_CAPTURE:
  300. case V4L2_BUF_TYPE_VBI_OUTPUT:
  301. vbi = &p->fmt.vbi;
  302. pr_cont(", sampling_rate=%u, offset=%u, samples_per_line=%u, sample_format=%c%c%c%c, start=%u,%u, count=%u,%u\n",
  303. vbi->sampling_rate, vbi->offset,
  304. vbi->samples_per_line,
  305. (vbi->sample_format & 0xff),
  306. (vbi->sample_format >> 8) & 0xff,
  307. (vbi->sample_format >> 16) & 0xff,
  308. (vbi->sample_format >> 24) & 0xff,
  309. vbi->start[0], vbi->start[1],
  310. vbi->count[0], vbi->count[1]);
  311. break;
  312. case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
  313. case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
  314. sliced = &p->fmt.sliced;
  315. pr_cont(", service_set=0x%08x, io_size=%d\n",
  316. sliced->service_set, sliced->io_size);
  317. for (i = 0; i < 24; i++)
  318. printk(KERN_DEBUG "line[%02u]=0x%04x, 0x%04x\n", i,
  319. sliced->service_lines[0][i],
  320. sliced->service_lines[1][i]);
  321. break;
  322. case V4L2_BUF_TYPE_SDR_CAPTURE:
  323. case V4L2_BUF_TYPE_SDR_OUTPUT:
  324. sdr = &p->fmt.sdr;
  325. pr_cont(", pixelformat=%c%c%c%c\n",
  326. (sdr->pixelformat >> 0) & 0xff,
  327. (sdr->pixelformat >> 8) & 0xff,
  328. (sdr->pixelformat >> 16) & 0xff,
  329. (sdr->pixelformat >> 24) & 0xff);
  330. break;
  331. case V4L2_BUF_TYPE_META_CAPTURE:
  332. meta = &p->fmt.meta;
  333. pr_cont(", dataformat=%c%c%c%c, buffersize=%u\n",
  334. (meta->dataformat >> 0) & 0xff,
  335. (meta->dataformat >> 8) & 0xff,
  336. (meta->dataformat >> 16) & 0xff,
  337. (meta->dataformat >> 24) & 0xff,
  338. meta->buffersize);
  339. break;
  340. }
  341. }
  342. static void v4l_print_framebuffer(const void *arg, bool write_only)
  343. {
  344. const struct v4l2_framebuffer *p = arg;
  345. pr_cont("capability=0x%x, flags=0x%x, base=0x%p, width=%u, height=%u, pixelformat=%c%c%c%c, bytesperline=%u, sizeimage=%u, colorspace=%d\n",
  346. p->capability, p->flags, p->base,
  347. p->fmt.width, p->fmt.height,
  348. (p->fmt.pixelformat & 0xff),
  349. (p->fmt.pixelformat >> 8) & 0xff,
  350. (p->fmt.pixelformat >> 16) & 0xff,
  351. (p->fmt.pixelformat >> 24) & 0xff,
  352. p->fmt.bytesperline, p->fmt.sizeimage,
  353. p->fmt.colorspace);
  354. }
  355. static void v4l_print_buftype(const void *arg, bool write_only)
  356. {
  357. pr_cont("type=%s\n", prt_names(*(u32 *)arg, v4l2_type_names));
  358. }
  359. static void v4l_print_modulator(const void *arg, bool write_only)
  360. {
  361. const struct v4l2_modulator *p = arg;
  362. if (write_only)
  363. pr_cont("index=%u, txsubchans=0x%x\n", p->index, p->txsubchans);
  364. else
  365. pr_cont("index=%u, name=%.*s, capability=0x%x, rangelow=%u, rangehigh=%u, txsubchans=0x%x\n",
  366. p->index, (int)sizeof(p->name), p->name, p->capability,
  367. p->rangelow, p->rangehigh, p->txsubchans);
  368. }
  369. static void v4l_print_tuner(const void *arg, bool write_only)
  370. {
  371. const struct v4l2_tuner *p = arg;
  372. if (write_only)
  373. pr_cont("index=%u, audmode=%u\n", p->index, p->audmode);
  374. else
  375. pr_cont("index=%u, name=%.*s, type=%u, capability=0x%x, rangelow=%u, rangehigh=%u, signal=%u, afc=%d, rxsubchans=0x%x, audmode=%u\n",
  376. p->index, (int)sizeof(p->name), p->name, p->type,
  377. p->capability, p->rangelow,
  378. p->rangehigh, p->signal, p->afc,
  379. p->rxsubchans, p->audmode);
  380. }
  381. static void v4l_print_frequency(const void *arg, bool write_only)
  382. {
  383. const struct v4l2_frequency *p = arg;
  384. pr_cont("tuner=%u, type=%u, frequency=%u\n",
  385. p->tuner, p->type, p->frequency);
  386. }
  387. static void v4l_print_standard(const void *arg, bool write_only)
  388. {
  389. const struct v4l2_standard *p = arg;
  390. pr_cont("index=%u, id=0x%Lx, name=%.*s, fps=%u/%u, framelines=%u\n",
  391. p->index,
  392. (unsigned long long)p->id, (int)sizeof(p->name), p->name,
  393. p->frameperiod.numerator,
  394. p->frameperiod.denominator,
  395. p->framelines);
  396. }
  397. static void v4l_print_std(const void *arg, bool write_only)
  398. {
  399. pr_cont("std=0x%08Lx\n", *(const long long unsigned *)arg);
  400. }
  401. static void v4l_print_hw_freq_seek(const void *arg, bool write_only)
  402. {
  403. const struct v4l2_hw_freq_seek *p = arg;
  404. pr_cont("tuner=%u, type=%u, seek_upward=%u, wrap_around=%u, spacing=%u, rangelow=%u, rangehigh=%u\n",
  405. p->tuner, p->type, p->seek_upward, p->wrap_around, p->spacing,
  406. p->rangelow, p->rangehigh);
  407. }
  408. static void v4l_print_requestbuffers(const void *arg, bool write_only)
  409. {
  410. const struct v4l2_requestbuffers *p = arg;
  411. pr_cont("count=%d, type=%s, memory=%s\n",
  412. p->count,
  413. prt_names(p->type, v4l2_type_names),
  414. prt_names(p->memory, v4l2_memory_names));
  415. }
  416. static void v4l_print_buffer(const void *arg, bool write_only)
  417. {
  418. const struct v4l2_buffer *p = arg;
  419. const struct v4l2_timecode *tc = &p->timecode;
  420. const struct v4l2_plane *plane;
  421. int i;
  422. pr_cont("%02ld:%02d:%02d.%08ld index=%d, type=%s, request_fd=%d, flags=0x%08x, field=%s, sequence=%d, memory=%s",
  423. p->timestamp.tv_sec / 3600,
  424. (int)(p->timestamp.tv_sec / 60) % 60,
  425. (int)(p->timestamp.tv_sec % 60),
  426. (long)p->timestamp.tv_usec,
  427. p->index,
  428. prt_names(p->type, v4l2_type_names), p->request_fd,
  429. p->flags, prt_names(p->field, v4l2_field_names),
  430. p->sequence, prt_names(p->memory, v4l2_memory_names));
  431. if (V4L2_TYPE_IS_MULTIPLANAR(p->type) && p->m.planes) {
  432. pr_cont("\n");
  433. for (i = 0; i < p->length; ++i) {
  434. plane = &p->m.planes[i];
  435. printk(KERN_DEBUG
  436. "plane %d: bytesused=%d, data_offset=0x%08x, offset/userptr=0x%lx, length=%d\n",
  437. i, plane->bytesused, plane->data_offset,
  438. plane->m.userptr, plane->length);
  439. }
  440. } else {
  441. pr_cont(", bytesused=%d, offset/userptr=0x%lx, length=%d\n",
  442. p->bytesused, p->m.userptr, p->length);
  443. }
  444. printk(KERN_DEBUG "timecode=%02d:%02d:%02d type=%d, flags=0x%08x, frames=%d, userbits=0x%08x\n",
  445. tc->hours, tc->minutes, tc->seconds,
  446. tc->type, tc->flags, tc->frames, *(__u32 *)tc->userbits);
  447. }
  448. static void v4l_print_exportbuffer(const void *arg, bool write_only)
  449. {
  450. const struct v4l2_exportbuffer *p = arg;
  451. pr_cont("fd=%d, type=%s, index=%u, plane=%u, flags=0x%08x\n",
  452. p->fd, prt_names(p->type, v4l2_type_names),
  453. p->index, p->plane, p->flags);
  454. }
  455. static void v4l_print_create_buffers(const void *arg, bool write_only)
  456. {
  457. const struct v4l2_create_buffers *p = arg;
  458. pr_cont("index=%d, count=%d, memory=%s, ",
  459. p->index, p->count,
  460. prt_names(p->memory, v4l2_memory_names));
  461. v4l_print_format(&p->format, write_only);
  462. }
  463. static void v4l_print_streamparm(const void *arg, bool write_only)
  464. {
  465. const struct v4l2_streamparm *p = arg;
  466. pr_cont("type=%s", prt_names(p->type, v4l2_type_names));
  467. if (p->type == V4L2_BUF_TYPE_VIDEO_CAPTURE ||
  468. p->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) {
  469. const struct v4l2_captureparm *c = &p->parm.capture;
  470. pr_cont(", capability=0x%x, capturemode=0x%x, timeperframe=%d/%d, extendedmode=%d, readbuffers=%d\n",
  471. c->capability, c->capturemode,
  472. c->timeperframe.numerator, c->timeperframe.denominator,
  473. c->extendedmode, c->readbuffers);
  474. } else if (p->type == V4L2_BUF_TYPE_VIDEO_OUTPUT ||
  475. p->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) {
  476. const struct v4l2_outputparm *c = &p->parm.output;
  477. pr_cont(", capability=0x%x, outputmode=0x%x, timeperframe=%d/%d, extendedmode=%d, writebuffers=%d\n",
  478. c->capability, c->outputmode,
  479. c->timeperframe.numerator, c->timeperframe.denominator,
  480. c->extendedmode, c->writebuffers);
  481. } else {
  482. pr_cont("\n");
  483. }
  484. }
  485. static void v4l_print_queryctrl(const void *arg, bool write_only)
  486. {
  487. const struct v4l2_queryctrl *p = arg;
  488. pr_cont("id=0x%x, type=%d, name=%.*s, min/max=%d/%d, step=%d, default=%d, flags=0x%08x\n",
  489. p->id, p->type, (int)sizeof(p->name), p->name,
  490. p->minimum, p->maximum,
  491. p->step, p->default_value, p->flags);
  492. }
  493. static void v4l_print_query_ext_ctrl(const void *arg, bool write_only)
  494. {
  495. const struct v4l2_query_ext_ctrl *p = arg;
  496. pr_cont("id=0x%x, type=%d, name=%.*s, min/max=%lld/%lld, step=%lld, default=%lld, flags=0x%08x, elem_size=%u, elems=%u, nr_of_dims=%u, dims=%u,%u,%u,%u\n",
  497. p->id, p->type, (int)sizeof(p->name), p->name,
  498. p->minimum, p->maximum,
  499. p->step, p->default_value, p->flags,
  500. p->elem_size, p->elems, p->nr_of_dims,
  501. p->dims[0], p->dims[1], p->dims[2], p->dims[3]);
  502. }
  503. static void v4l_print_querymenu(const void *arg, bool write_only)
  504. {
  505. const struct v4l2_querymenu *p = arg;
  506. pr_cont("id=0x%x, index=%d\n", p->id, p->index);
  507. }
  508. static void v4l_print_control(const void *arg, bool write_only)
  509. {
  510. const struct v4l2_control *p = arg;
  511. pr_cont("id=0x%x, value=%d\n", p->id, p->value);
  512. }
  513. static void v4l_print_ext_controls(const void *arg, bool write_only)
  514. {
  515. const struct v4l2_ext_controls *p = arg;
  516. int i;
  517. pr_cont("which=0x%x, count=%d, error_idx=%d, request_fd=%d",
  518. p->which, p->count, p->error_idx, p->request_fd);
  519. for (i = 0; i < p->count; i++) {
  520. if (!p->controls[i].size)
  521. pr_cont(", id/val=0x%x/0x%x",
  522. p->controls[i].id, p->controls[i].value);
  523. else
  524. pr_cont(", id/size=0x%x/%u",
  525. p->controls[i].id, p->controls[i].size);
  526. }
  527. pr_cont("\n");
  528. }
  529. static void v4l_print_cropcap(const void *arg, bool write_only)
  530. {
  531. const struct v4l2_cropcap *p = arg;
  532. pr_cont("type=%s, bounds wxh=%dx%d, x,y=%d,%d, defrect wxh=%dx%d, x,y=%d,%d, pixelaspect %d/%d\n",
  533. prt_names(p->type, v4l2_type_names),
  534. p->bounds.width, p->bounds.height,
  535. p->bounds.left, p->bounds.top,
  536. p->defrect.width, p->defrect.height,
  537. p->defrect.left, p->defrect.top,
  538. p->pixelaspect.numerator, p->pixelaspect.denominator);
  539. }
  540. static void v4l_print_crop(const void *arg, bool write_only)
  541. {
  542. const struct v4l2_crop *p = arg;
  543. pr_cont("type=%s, wxh=%dx%d, x,y=%d,%d\n",
  544. prt_names(p->type, v4l2_type_names),
  545. p->c.width, p->c.height,
  546. p->c.left, p->c.top);
  547. }
  548. static void v4l_print_selection(const void *arg, bool write_only)
  549. {
  550. const struct v4l2_selection *p = arg;
  551. pr_cont("type=%s, target=%d, flags=0x%x, wxh=%dx%d, x,y=%d,%d\n",
  552. prt_names(p->type, v4l2_type_names),
  553. p->target, p->flags,
  554. p->r.width, p->r.height, p->r.left, p->r.top);
  555. }
  556. static void v4l_print_jpegcompression(const void *arg, bool write_only)
  557. {
  558. const struct v4l2_jpegcompression *p = arg;
  559. pr_cont("quality=%d, APPn=%d, APP_len=%d, COM_len=%d, jpeg_markers=0x%x\n",
  560. p->quality, p->APPn, p->APP_len,
  561. p->COM_len, p->jpeg_markers);
  562. }
  563. static void v4l_print_enc_idx(const void *arg, bool write_only)
  564. {
  565. const struct v4l2_enc_idx *p = arg;
  566. pr_cont("entries=%d, entries_cap=%d\n",
  567. p->entries, p->entries_cap);
  568. }
  569. static void v4l_print_encoder_cmd(const void *arg, bool write_only)
  570. {
  571. const struct v4l2_encoder_cmd *p = arg;
  572. pr_cont("cmd=%d, flags=0x%x\n",
  573. p->cmd, p->flags);
  574. }
  575. static void v4l_print_decoder_cmd(const void *arg, bool write_only)
  576. {
  577. const struct v4l2_decoder_cmd *p = arg;
  578. pr_cont("cmd=%d, flags=0x%x\n", p->cmd, p->flags);
  579. if (p->cmd == V4L2_DEC_CMD_START)
  580. pr_info("speed=%d, format=%u\n",
  581. p->start.speed, p->start.format);
  582. else if (p->cmd == V4L2_DEC_CMD_STOP)
  583. pr_info("pts=%llu\n", p->stop.pts);
  584. }
  585. static void v4l_print_dbg_chip_info(const void *arg, bool write_only)
  586. {
  587. const struct v4l2_dbg_chip_info *p = arg;
  588. pr_cont("type=%u, ", p->match.type);
  589. if (p->match.type == V4L2_CHIP_MATCH_I2C_DRIVER)
  590. pr_cont("name=%.*s, ",
  591. (int)sizeof(p->match.name), p->match.name);
  592. else
  593. pr_cont("addr=%u, ", p->match.addr);
  594. pr_cont("name=%.*s\n", (int)sizeof(p->name), p->name);
  595. }
  596. static void v4l_print_dbg_register(const void *arg, bool write_only)
  597. {
  598. const struct v4l2_dbg_register *p = arg;
  599. pr_cont("type=%u, ", p->match.type);
  600. if (p->match.type == V4L2_CHIP_MATCH_I2C_DRIVER)
  601. pr_cont("name=%.*s, ",
  602. (int)sizeof(p->match.name), p->match.name);
  603. else
  604. pr_cont("addr=%u, ", p->match.addr);
  605. pr_cont("reg=0x%llx, val=0x%llx\n",
  606. p->reg, p->val);
  607. }
  608. static void v4l_print_dv_timings(const void *arg, bool write_only)
  609. {
  610. const struct v4l2_dv_timings *p = arg;
  611. switch (p->type) {
  612. case V4L2_DV_BT_656_1120:
  613. pr_cont("type=bt-656/1120, interlaced=%u, pixelclock=%llu, width=%u, height=%u, polarities=0x%x, hfrontporch=%u, hsync=%u, hbackporch=%u, vfrontporch=%u, vsync=%u, vbackporch=%u, il_vfrontporch=%u, il_vsync=%u, il_vbackporch=%u, standards=0x%x, flags=0x%x\n",
  614. p->bt.interlaced, p->bt.pixelclock,
  615. p->bt.width, p->bt.height,
  616. p->bt.polarities, p->bt.hfrontporch,
  617. p->bt.hsync, p->bt.hbackporch,
  618. p->bt.vfrontporch, p->bt.vsync,
  619. p->bt.vbackporch, p->bt.il_vfrontporch,
  620. p->bt.il_vsync, p->bt.il_vbackporch,
  621. p->bt.standards, p->bt.flags);
  622. break;
  623. default:
  624. pr_cont("type=%d\n", p->type);
  625. break;
  626. }
  627. }
  628. static void v4l_print_enum_dv_timings(const void *arg, bool write_only)
  629. {
  630. const struct v4l2_enum_dv_timings *p = arg;
  631. pr_cont("index=%u, ", p->index);
  632. v4l_print_dv_timings(&p->timings, write_only);
  633. }
  634. static void v4l_print_dv_timings_cap(const void *arg, bool write_only)
  635. {
  636. const struct v4l2_dv_timings_cap *p = arg;
  637. switch (p->type) {
  638. case V4L2_DV_BT_656_1120:
  639. pr_cont("type=bt-656/1120, width=%u-%u, height=%u-%u, pixelclock=%llu-%llu, standards=0x%x, capabilities=0x%x\n",
  640. p->bt.min_width, p->bt.max_width,
  641. p->bt.min_height, p->bt.max_height,
  642. p->bt.min_pixelclock, p->bt.max_pixelclock,
  643. p->bt.standards, p->bt.capabilities);
  644. break;
  645. default:
  646. pr_cont("type=%u\n", p->type);
  647. break;
  648. }
  649. }
  650. static void v4l_print_frmsizeenum(const void *arg, bool write_only)
  651. {
  652. const struct v4l2_frmsizeenum *p = arg;
  653. pr_cont("index=%u, pixelformat=%c%c%c%c, type=%u",
  654. p->index,
  655. (p->pixel_format & 0xff),
  656. (p->pixel_format >> 8) & 0xff,
  657. (p->pixel_format >> 16) & 0xff,
  658. (p->pixel_format >> 24) & 0xff,
  659. p->type);
  660. switch (p->type) {
  661. case V4L2_FRMSIZE_TYPE_DISCRETE:
  662. pr_cont(", wxh=%ux%u\n",
  663. p->discrete.width, p->discrete.height);
  664. break;
  665. case V4L2_FRMSIZE_TYPE_STEPWISE:
  666. pr_cont(", min=%ux%u, max=%ux%u, step=%ux%u\n",
  667. p->stepwise.min_width,
  668. p->stepwise.min_height,
  669. p->stepwise.max_width,
  670. p->stepwise.max_height,
  671. p->stepwise.step_width,
  672. p->stepwise.step_height);
  673. break;
  674. case V4L2_FRMSIZE_TYPE_CONTINUOUS:
  675. /* fall through */
  676. default:
  677. pr_cont("\n");
  678. break;
  679. }
  680. }
  681. static void v4l_print_frmivalenum(const void *arg, bool write_only)
  682. {
  683. const struct v4l2_frmivalenum *p = arg;
  684. pr_cont("index=%u, pixelformat=%c%c%c%c, wxh=%ux%u, type=%u",
  685. p->index,
  686. (p->pixel_format & 0xff),
  687. (p->pixel_format >> 8) & 0xff,
  688. (p->pixel_format >> 16) & 0xff,
  689. (p->pixel_format >> 24) & 0xff,
  690. p->width, p->height, p->type);
  691. switch (p->type) {
  692. case V4L2_FRMIVAL_TYPE_DISCRETE:
  693. pr_cont(", fps=%d/%d\n",
  694. p->discrete.numerator,
  695. p->discrete.denominator);
  696. break;
  697. case V4L2_FRMIVAL_TYPE_STEPWISE:
  698. pr_cont(", min=%d/%d, max=%d/%d, step=%d/%d\n",
  699. p->stepwise.min.numerator,
  700. p->stepwise.min.denominator,
  701. p->stepwise.max.numerator,
  702. p->stepwise.max.denominator,
  703. p->stepwise.step.numerator,
  704. p->stepwise.step.denominator);
  705. break;
  706. case V4L2_FRMIVAL_TYPE_CONTINUOUS:
  707. /* fall through */
  708. default:
  709. pr_cont("\n");
  710. break;
  711. }
  712. }
  713. static void v4l_print_event(const void *arg, bool write_only)
  714. {
  715. const struct v4l2_event *p = arg;
  716. const struct v4l2_event_ctrl *c;
  717. pr_cont("type=0x%x, pending=%u, sequence=%u, id=%u, timestamp=%lu.%9.9lu\n",
  718. p->type, p->pending, p->sequence, p->id,
  719. p->timestamp.tv_sec, p->timestamp.tv_nsec);
  720. switch (p->type) {
  721. case V4L2_EVENT_VSYNC:
  722. printk(KERN_DEBUG "field=%s\n",
  723. prt_names(p->u.vsync.field, v4l2_field_names));
  724. break;
  725. case V4L2_EVENT_CTRL:
  726. c = &p->u.ctrl;
  727. printk(KERN_DEBUG "changes=0x%x, type=%u, ",
  728. c->changes, c->type);
  729. if (c->type == V4L2_CTRL_TYPE_INTEGER64)
  730. pr_cont("value64=%lld, ", c->value64);
  731. else
  732. pr_cont("value=%d, ", c->value);
  733. pr_cont("flags=0x%x, minimum=%d, maximum=%d, step=%d, default_value=%d\n",
  734. c->flags, c->minimum, c->maximum,
  735. c->step, c->default_value);
  736. break;
  737. case V4L2_EVENT_FRAME_SYNC:
  738. pr_cont("frame_sequence=%u\n",
  739. p->u.frame_sync.frame_sequence);
  740. break;
  741. }
  742. }
  743. static void v4l_print_event_subscription(const void *arg, bool write_only)
  744. {
  745. const struct v4l2_event_subscription *p = arg;
  746. pr_cont("type=0x%x, id=0x%x, flags=0x%x\n",
  747. p->type, p->id, p->flags);
  748. }
  749. static void v4l_print_sliced_vbi_cap(const void *arg, bool write_only)
  750. {
  751. const struct v4l2_sliced_vbi_cap *p = arg;
  752. int i;
  753. pr_cont("type=%s, service_set=0x%08x\n",
  754. prt_names(p->type, v4l2_type_names), p->service_set);
  755. for (i = 0; i < 24; i++)
  756. printk(KERN_DEBUG "line[%02u]=0x%04x, 0x%04x\n", i,
  757. p->service_lines[0][i],
  758. p->service_lines[1][i]);
  759. }
  760. static void v4l_print_freq_band(const void *arg, bool write_only)
  761. {
  762. const struct v4l2_frequency_band *p = arg;
  763. pr_cont("tuner=%u, type=%u, index=%u, capability=0x%x, rangelow=%u, rangehigh=%u, modulation=0x%x\n",
  764. p->tuner, p->type, p->index,
  765. p->capability, p->rangelow,
  766. p->rangehigh, p->modulation);
  767. }
  768. static void v4l_print_edid(const void *arg, bool write_only)
  769. {
  770. const struct v4l2_edid *p = arg;
  771. pr_cont("pad=%u, start_block=%u, blocks=%u\n",
  772. p->pad, p->start_block, p->blocks);
  773. }
  774. static void v4l_print_u32(const void *arg, bool write_only)
  775. {
  776. pr_cont("value=%u\n", *(const u32 *)arg);
  777. }
  778. static void v4l_print_newline(const void *arg, bool write_only)
  779. {
  780. pr_cont("\n");
  781. }
  782. static void v4l_print_default(const void *arg, bool write_only)
  783. {
  784. pr_cont("driver-specific ioctl\n");
  785. }
  786. static int check_ext_ctrls(struct v4l2_ext_controls *c, int allow_priv)
  787. {
  788. __u32 i;
  789. /* zero the reserved fields */
  790. c->reserved[0] = 0;
  791. for (i = 0; i < c->count; i++)
  792. c->controls[i].reserved2[0] = 0;
  793. /* V4L2_CID_PRIVATE_BASE cannot be used as control class
  794. when using extended controls.
  795. Only when passed in through VIDIOC_G_CTRL and VIDIOC_S_CTRL
  796. is it allowed for backwards compatibility.
  797. */
  798. if (!allow_priv && c->which == V4L2_CID_PRIVATE_BASE)
  799. return 0;
  800. if (!c->which)
  801. return 1;
  802. /* Check that all controls are from the same control class. */
  803. for (i = 0; i < c->count; i++) {
  804. if (V4L2_CTRL_ID2WHICH(c->controls[i].id) != c->which) {
  805. c->error_idx = i;
  806. return 0;
  807. }
  808. }
  809. return 1;
  810. }
  811. static int check_fmt(struct file *file, enum v4l2_buf_type type)
  812. {
  813. struct video_device *vfd = video_devdata(file);
  814. const struct v4l2_ioctl_ops *ops = vfd->ioctl_ops;
  815. bool is_vid = vfd->vfl_type == VFL_TYPE_GRABBER;
  816. bool is_vbi = vfd->vfl_type == VFL_TYPE_VBI;
  817. bool is_sdr = vfd->vfl_type == VFL_TYPE_SDR;
  818. bool is_tch = vfd->vfl_type == VFL_TYPE_TOUCH;
  819. bool is_rx = vfd->vfl_dir != VFL_DIR_TX;
  820. bool is_tx = vfd->vfl_dir != VFL_DIR_RX;
  821. if (ops == NULL)
  822. return -EINVAL;
  823. switch (type) {
  824. case V4L2_BUF_TYPE_VIDEO_CAPTURE:
  825. if ((is_vid || is_tch) && is_rx &&
  826. (ops->vidioc_g_fmt_vid_cap || ops->vidioc_g_fmt_vid_cap_mplane))
  827. return 0;
  828. break;
  829. case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
  830. if (is_vid && is_rx && ops->vidioc_g_fmt_vid_cap_mplane)
  831. return 0;
  832. break;
  833. case V4L2_BUF_TYPE_VIDEO_OVERLAY:
  834. if (is_vid && is_rx && ops->vidioc_g_fmt_vid_overlay)
  835. return 0;
  836. break;
  837. case V4L2_BUF_TYPE_VIDEO_OUTPUT:
  838. if (is_vid && is_tx &&
  839. (ops->vidioc_g_fmt_vid_out || ops->vidioc_g_fmt_vid_out_mplane))
  840. return 0;
  841. break;
  842. case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
  843. if (is_vid && is_tx && ops->vidioc_g_fmt_vid_out_mplane)
  844. return 0;
  845. break;
  846. case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
  847. if (is_vid && is_tx && ops->vidioc_g_fmt_vid_out_overlay)
  848. return 0;
  849. break;
  850. case V4L2_BUF_TYPE_VBI_CAPTURE:
  851. if (is_vbi && is_rx && ops->vidioc_g_fmt_vbi_cap)
  852. return 0;
  853. break;
  854. case V4L2_BUF_TYPE_VBI_OUTPUT:
  855. if (is_vbi && is_tx && ops->vidioc_g_fmt_vbi_out)
  856. return 0;
  857. break;
  858. case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
  859. if (is_vbi && is_rx && ops->vidioc_g_fmt_sliced_vbi_cap)
  860. return 0;
  861. break;
  862. case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
  863. if (is_vbi && is_tx && ops->vidioc_g_fmt_sliced_vbi_out)
  864. return 0;
  865. break;
  866. case V4L2_BUF_TYPE_SDR_CAPTURE:
  867. if (is_sdr && is_rx && ops->vidioc_g_fmt_sdr_cap)
  868. return 0;
  869. break;
  870. case V4L2_BUF_TYPE_SDR_OUTPUT:
  871. if (is_sdr && is_tx && ops->vidioc_g_fmt_sdr_out)
  872. return 0;
  873. break;
  874. case V4L2_BUF_TYPE_META_CAPTURE:
  875. if (is_vid && is_rx && ops->vidioc_g_fmt_meta_cap)
  876. return 0;
  877. break;
  878. default:
  879. break;
  880. }
  881. return -EINVAL;
  882. }
  883. static void v4l_sanitize_format(struct v4l2_format *fmt)
  884. {
  885. unsigned int offset;
  886. /*
  887. * The v4l2_pix_format structure has been extended with fields that were
  888. * not previously required to be set to zero by applications. The priv
  889. * field, when set to a magic value, indicates the the extended fields
  890. * are valid. Otherwise they will contain undefined values. To simplify
  891. * the API towards drivers zero the extended fields and set the priv
  892. * field to the magic value when the extended pixel format structure
  893. * isn't used by applications.
  894. */
  895. if (fmt->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
  896. fmt->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
  897. return;
  898. if (fmt->fmt.pix.priv == V4L2_PIX_FMT_PRIV_MAGIC)
  899. return;
  900. fmt->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
  901. offset = offsetof(struct v4l2_pix_format, priv)
  902. + sizeof(fmt->fmt.pix.priv);
  903. memset(((void *)&fmt->fmt.pix) + offset, 0,
  904. sizeof(fmt->fmt.pix) - offset);
  905. }
  906. static int v4l_querycap(const struct v4l2_ioctl_ops *ops,
  907. struct file *file, void *fh, void *arg)
  908. {
  909. struct v4l2_capability *cap = (struct v4l2_capability *)arg;
  910. struct video_device *vfd = video_devdata(file);
  911. int ret;
  912. cap->version = LINUX_VERSION_CODE;
  913. cap->device_caps = vfd->device_caps;
  914. cap->capabilities = vfd->device_caps | V4L2_CAP_DEVICE_CAPS;
  915. ret = ops->vidioc_querycap(file, fh, cap);
  916. cap->capabilities |= V4L2_CAP_EXT_PIX_FORMAT;
  917. /*
  918. * Drivers MUST fill in device_caps, so check for this and
  919. * warn if it was forgotten.
  920. */
  921. WARN(!(cap->capabilities & V4L2_CAP_DEVICE_CAPS) ||
  922. !cap->device_caps, "Bad caps for driver %s, %x %x",
  923. cap->driver, cap->capabilities, cap->device_caps);
  924. cap->device_caps |= V4L2_CAP_EXT_PIX_FORMAT;
  925. return ret;
  926. }
  927. static int v4l_s_input(const struct v4l2_ioctl_ops *ops,
  928. struct file *file, void *fh, void *arg)
  929. {
  930. struct video_device *vfd = video_devdata(file);
  931. int ret;
  932. ret = v4l_enable_media_source(vfd);
  933. if (ret)
  934. return ret;
  935. return ops->vidioc_s_input(file, fh, *(unsigned int *)arg);
  936. }
  937. static int v4l_s_output(const struct v4l2_ioctl_ops *ops,
  938. struct file *file, void *fh, void *arg)
  939. {
  940. return ops->vidioc_s_output(file, fh, *(unsigned int *)arg);
  941. }
  942. static int v4l_g_priority(const struct v4l2_ioctl_ops *ops,
  943. struct file *file, void *fh, void *arg)
  944. {
  945. struct video_device *vfd;
  946. u32 *p = arg;
  947. vfd = video_devdata(file);
  948. *p = v4l2_prio_max(vfd->prio);
  949. return 0;
  950. }
  951. static int v4l_s_priority(const struct v4l2_ioctl_ops *ops,
  952. struct file *file, void *fh, void *arg)
  953. {
  954. struct video_device *vfd;
  955. struct v4l2_fh *vfh;
  956. u32 *p = arg;
  957. vfd = video_devdata(file);
  958. if (!test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags))
  959. return -ENOTTY;
  960. vfh = file->private_data;
  961. return v4l2_prio_change(vfd->prio, &vfh->prio, *p);
  962. }
  963. static int v4l_enuminput(const struct v4l2_ioctl_ops *ops,
  964. struct file *file, void *fh, void *arg)
  965. {
  966. struct video_device *vfd = video_devdata(file);
  967. struct v4l2_input *p = arg;
  968. /*
  969. * We set the flags for CAP_DV_TIMINGS &
  970. * CAP_STD here based on ioctl handler provided by the
  971. * driver. If the driver doesn't support these
  972. * for a specific input, it must override these flags.
  973. */
  974. if (is_valid_ioctl(vfd, VIDIOC_S_STD))
  975. p->capabilities |= V4L2_IN_CAP_STD;
  976. return ops->vidioc_enum_input(file, fh, p);
  977. }
  978. static int v4l_enumoutput(const struct v4l2_ioctl_ops *ops,
  979. struct file *file, void *fh, void *arg)
  980. {
  981. struct video_device *vfd = video_devdata(file);
  982. struct v4l2_output *p = arg;
  983. /*
  984. * We set the flags for CAP_DV_TIMINGS &
  985. * CAP_STD here based on ioctl handler provided by the
  986. * driver. If the driver doesn't support these
  987. * for a specific output, it must override these flags.
  988. */
  989. if (is_valid_ioctl(vfd, VIDIOC_S_STD))
  990. p->capabilities |= V4L2_OUT_CAP_STD;
  991. return ops->vidioc_enum_output(file, fh, p);
  992. }
  993. static void v4l_fill_fmtdesc(struct v4l2_fmtdesc *fmt)
  994. {
  995. const unsigned sz = sizeof(fmt->description);
  996. const char *descr = NULL;
  997. u32 flags = 0;
  998. /*
  999. * We depart from the normal coding style here since the descriptions
  1000. * should be aligned so it is easy to see which descriptions will be
  1001. * longer than 31 characters (the max length for a description).
  1002. * And frankly, this is easier to read anyway.
  1003. *
  1004. * Note that gcc will use O(log N) comparisons to find the right case.
  1005. */
  1006. switch (fmt->pixelformat) {
  1007. /* Max description length mask: descr = "0123456789012345678901234567890" */
  1008. case V4L2_PIX_FMT_RGB332: descr = "8-bit RGB 3-3-2"; break;
  1009. case V4L2_PIX_FMT_RGB444: descr = "16-bit A/XRGB 4-4-4-4"; break;
  1010. case V4L2_PIX_FMT_ARGB444: descr = "16-bit ARGB 4-4-4-4"; break;
  1011. case V4L2_PIX_FMT_XRGB444: descr = "16-bit XRGB 4-4-4-4"; break;
  1012. case V4L2_PIX_FMT_RGB555: descr = "16-bit A/XRGB 1-5-5-5"; break;
  1013. case V4L2_PIX_FMT_ARGB555: descr = "16-bit ARGB 1-5-5-5"; break;
  1014. case V4L2_PIX_FMT_XRGB555: descr = "16-bit XRGB 1-5-5-5"; break;
  1015. case V4L2_PIX_FMT_RGB565: descr = "16-bit RGB 5-6-5"; break;
  1016. case V4L2_PIX_FMT_RGB555X: descr = "16-bit A/XRGB 1-5-5-5 BE"; break;
  1017. case V4L2_PIX_FMT_ARGB555X: descr = "16-bit ARGB 1-5-5-5 BE"; break;
  1018. case V4L2_PIX_FMT_XRGB555X: descr = "16-bit XRGB 1-5-5-5 BE"; break;
  1019. case V4L2_PIX_FMT_RGB565X: descr = "16-bit RGB 5-6-5 BE"; break;
  1020. case V4L2_PIX_FMT_BGR666: descr = "18-bit BGRX 6-6-6-14"; break;
  1021. case V4L2_PIX_FMT_BGR24: descr = "24-bit BGR 8-8-8"; break;
  1022. case V4L2_PIX_FMT_RGB24: descr = "24-bit RGB 8-8-8"; break;
  1023. case V4L2_PIX_FMT_BGR32: descr = "32-bit BGRA/X 8-8-8-8"; break;
  1024. case V4L2_PIX_FMT_ABGR32: descr = "32-bit BGRA 8-8-8-8"; break;
  1025. case V4L2_PIX_FMT_XBGR32: descr = "32-bit BGRX 8-8-8-8"; break;
  1026. case V4L2_PIX_FMT_RGB32: descr = "32-bit A/XRGB 8-8-8-8"; break;
  1027. case V4L2_PIX_FMT_ARGB32: descr = "32-bit ARGB 8-8-8-8"; break;
  1028. case V4L2_PIX_FMT_XRGB32: descr = "32-bit XRGB 8-8-8-8"; break;
  1029. case V4L2_PIX_FMT_GREY: descr = "8-bit Greyscale"; break;
  1030. case V4L2_PIX_FMT_Y4: descr = "4-bit Greyscale"; break;
  1031. case V4L2_PIX_FMT_Y6: descr = "6-bit Greyscale"; break;
  1032. case V4L2_PIX_FMT_Y10: descr = "10-bit Greyscale"; break;
  1033. case V4L2_PIX_FMT_Y12: descr = "12-bit Greyscale"; break;
  1034. case V4L2_PIX_FMT_Y16: descr = "16-bit Greyscale"; break;
  1035. case V4L2_PIX_FMT_Y16_BE: descr = "16-bit Greyscale BE"; break;
  1036. case V4L2_PIX_FMT_Y10BPACK: descr = "10-bit Greyscale (Packed)"; break;
  1037. case V4L2_PIX_FMT_Y10P: descr = "10-bit Greyscale (MIPI Packed)"; break;
  1038. case V4L2_PIX_FMT_Y8I: descr = "Interleaved 8-bit Greyscale"; break;
  1039. case V4L2_PIX_FMT_Y12I: descr = "Interleaved 12-bit Greyscale"; break;
  1040. case V4L2_PIX_FMT_Z16: descr = "16-bit Depth"; break;
  1041. case V4L2_PIX_FMT_INZI: descr = "Planar 10:16 Greyscale Depth"; break;
  1042. case V4L2_PIX_FMT_PAL8: descr = "8-bit Palette"; break;
  1043. case V4L2_PIX_FMT_UV8: descr = "8-bit Chrominance UV 4-4"; break;
  1044. case V4L2_PIX_FMT_YVU410: descr = "Planar YVU 4:1:0"; break;
  1045. case V4L2_PIX_FMT_YVU420: descr = "Planar YVU 4:2:0"; break;
  1046. case V4L2_PIX_FMT_YUYV: descr = "YUYV 4:2:2"; break;
  1047. case V4L2_PIX_FMT_YYUV: descr = "YYUV 4:2:2"; break;
  1048. case V4L2_PIX_FMT_YVYU: descr = "YVYU 4:2:2"; break;
  1049. case V4L2_PIX_FMT_UYVY: descr = "UYVY 4:2:2"; break;
  1050. case V4L2_PIX_FMT_VYUY: descr = "VYUY 4:2:2"; break;
  1051. case V4L2_PIX_FMT_YUV422P: descr = "Planar YUV 4:2:2"; break;
  1052. case V4L2_PIX_FMT_YUV411P: descr = "Planar YUV 4:1:1"; break;
  1053. case V4L2_PIX_FMT_Y41P: descr = "YUV 4:1:1 (Packed)"; break;
  1054. case V4L2_PIX_FMT_YUV444: descr = "16-bit A/XYUV 4-4-4-4"; break;
  1055. case V4L2_PIX_FMT_YUV555: descr = "16-bit A/XYUV 1-5-5-5"; break;
  1056. case V4L2_PIX_FMT_YUV565: descr = "16-bit YUV 5-6-5"; break;
  1057. case V4L2_PIX_FMT_YUV32: descr = "32-bit A/XYUV 8-8-8-8"; break;
  1058. case V4L2_PIX_FMT_YUV410: descr = "Planar YUV 4:1:0"; break;
  1059. case V4L2_PIX_FMT_YUV420: descr = "Planar YUV 4:2:0"; break;
  1060. case V4L2_PIX_FMT_HI240: descr = "8-bit Dithered RGB (BTTV)"; break;
  1061. case V4L2_PIX_FMT_HM12: descr = "YUV 4:2:0 (16x16 Macroblocks)"; break;
  1062. case V4L2_PIX_FMT_M420: descr = "YUV 4:2:0 (M420)"; break;
  1063. case V4L2_PIX_FMT_NV12: descr = "Y/CbCr 4:2:0"; break;
  1064. case V4L2_PIX_FMT_NV21: descr = "Y/CrCb 4:2:0"; break;
  1065. case V4L2_PIX_FMT_NV16: descr = "Y/CbCr 4:2:2"; break;
  1066. case V4L2_PIX_FMT_NV61: descr = "Y/CrCb 4:2:2"; break;
  1067. case V4L2_PIX_FMT_NV24: descr = "Y/CbCr 4:4:4"; break;
  1068. case V4L2_PIX_FMT_NV42: descr = "Y/CrCb 4:4:4"; break;
  1069. case V4L2_PIX_FMT_NV12M: descr = "Y/CbCr 4:2:0 (N-C)"; break;
  1070. case V4L2_PIX_FMT_NV21M: descr = "Y/CrCb 4:2:0 (N-C)"; break;
  1071. case V4L2_PIX_FMT_NV16M: descr = "Y/CbCr 4:2:2 (N-C)"; break;
  1072. case V4L2_PIX_FMT_NV61M: descr = "Y/CrCb 4:2:2 (N-C)"; break;
  1073. case V4L2_PIX_FMT_NV12MT: descr = "Y/CbCr 4:2:0 (64x32 MB, N-C)"; break;
  1074. case V4L2_PIX_FMT_NV12MT_16X16: descr = "Y/CbCr 4:2:0 (16x16 MB, N-C)"; break;
  1075. case V4L2_PIX_FMT_YUV420M: descr = "Planar YUV 4:2:0 (N-C)"; break;
  1076. case V4L2_PIX_FMT_YVU420M: descr = "Planar YVU 4:2:0 (N-C)"; break;
  1077. case V4L2_PIX_FMT_YUV422M: descr = "Planar YUV 4:2:2 (N-C)"; break;
  1078. case V4L2_PIX_FMT_YVU422M: descr = "Planar YVU 4:2:2 (N-C)"; break;
  1079. case V4L2_PIX_FMT_YUV444M: descr = "Planar YUV 4:4:4 (N-C)"; break;
  1080. case V4L2_PIX_FMT_YVU444M: descr = "Planar YVU 4:4:4 (N-C)"; break;
  1081. case V4L2_PIX_FMT_SBGGR8: descr = "8-bit Bayer BGBG/GRGR"; break;
  1082. case V4L2_PIX_FMT_SGBRG8: descr = "8-bit Bayer GBGB/RGRG"; break;
  1083. case V4L2_PIX_FMT_SGRBG8: descr = "8-bit Bayer GRGR/BGBG"; break;
  1084. case V4L2_PIX_FMT_SRGGB8: descr = "8-bit Bayer RGRG/GBGB"; break;
  1085. case V4L2_PIX_FMT_SBGGR10: descr = "10-bit Bayer BGBG/GRGR"; break;
  1086. case V4L2_PIX_FMT_SGBRG10: descr = "10-bit Bayer GBGB/RGRG"; break;
  1087. case V4L2_PIX_FMT_SGRBG10: descr = "10-bit Bayer GRGR/BGBG"; break;
  1088. case V4L2_PIX_FMT_SRGGB10: descr = "10-bit Bayer RGRG/GBGB"; break;
  1089. case V4L2_PIX_FMT_SBGGR10P: descr = "10-bit Bayer BGBG/GRGR Packed"; break;
  1090. case V4L2_PIX_FMT_SGBRG10P: descr = "10-bit Bayer GBGB/RGRG Packed"; break;
  1091. case V4L2_PIX_FMT_SGRBG10P: descr = "10-bit Bayer GRGR/BGBG Packed"; break;
  1092. case V4L2_PIX_FMT_SRGGB10P: descr = "10-bit Bayer RGRG/GBGB Packed"; break;
  1093. case V4L2_PIX_FMT_IPU3_SBGGR10: descr = "10-bit bayer BGGR IPU3 Packed"; break;
  1094. case V4L2_PIX_FMT_IPU3_SGBRG10: descr = "10-bit bayer GBRG IPU3 Packed"; break;
  1095. case V4L2_PIX_FMT_IPU3_SGRBG10: descr = "10-bit bayer GRBG IPU3 Packed"; break;
  1096. case V4L2_PIX_FMT_IPU3_SRGGB10: descr = "10-bit bayer RGGB IPU3 Packed"; break;
  1097. case V4L2_PIX_FMT_SBGGR10ALAW8: descr = "8-bit Bayer BGBG/GRGR (A-law)"; break;
  1098. case V4L2_PIX_FMT_SGBRG10ALAW8: descr = "8-bit Bayer GBGB/RGRG (A-law)"; break;
  1099. case V4L2_PIX_FMT_SGRBG10ALAW8: descr = "8-bit Bayer GRGR/BGBG (A-law)"; break;
  1100. case V4L2_PIX_FMT_SRGGB10ALAW8: descr = "8-bit Bayer RGRG/GBGB (A-law)"; break;
  1101. case V4L2_PIX_FMT_SBGGR10DPCM8: descr = "8-bit Bayer BGBG/GRGR (DPCM)"; break;
  1102. case V4L2_PIX_FMT_SGBRG10DPCM8: descr = "8-bit Bayer GBGB/RGRG (DPCM)"; break;
  1103. case V4L2_PIX_FMT_SGRBG10DPCM8: descr = "8-bit Bayer GRGR/BGBG (DPCM)"; break;
  1104. case V4L2_PIX_FMT_SRGGB10DPCM8: descr = "8-bit Bayer RGRG/GBGB (DPCM)"; break;
  1105. case V4L2_PIX_FMT_SBGGR12: descr = "12-bit Bayer BGBG/GRGR"; break;
  1106. case V4L2_PIX_FMT_SGBRG12: descr = "12-bit Bayer GBGB/RGRG"; break;
  1107. case V4L2_PIX_FMT_SGRBG12: descr = "12-bit Bayer GRGR/BGBG"; break;
  1108. case V4L2_PIX_FMT_SRGGB12: descr = "12-bit Bayer RGRG/GBGB"; break;
  1109. case V4L2_PIX_FMT_SBGGR12P: descr = "12-bit Bayer BGBG/GRGR Packed"; break;
  1110. case V4L2_PIX_FMT_SGBRG12P: descr = "12-bit Bayer GBGB/RGRG Packed"; break;
  1111. case V4L2_PIX_FMT_SGRBG12P: descr = "12-bit Bayer GRGR/BGBG Packed"; break;
  1112. case V4L2_PIX_FMT_SRGGB12P: descr = "12-bit Bayer RGRG/GBGB Packed"; break;
  1113. case V4L2_PIX_FMT_SBGGR14P: descr = "14-bit Bayer BGBG/GRGR Packed"; break;
  1114. case V4L2_PIX_FMT_SGBRG14P: descr = "14-bit Bayer GBGB/RGRG Packed"; break;
  1115. case V4L2_PIX_FMT_SGRBG14P: descr = "14-bit Bayer GRGR/BGBG Packed"; break;
  1116. case V4L2_PIX_FMT_SRGGB14P: descr = "14-bit Bayer RGRG/GBGB Packed"; break;
  1117. case V4L2_PIX_FMT_SBGGR16: descr = "16-bit Bayer BGBG/GRGR"; break;
  1118. case V4L2_PIX_FMT_SGBRG16: descr = "16-bit Bayer GBGB/RGRG"; break;
  1119. case V4L2_PIX_FMT_SGRBG16: descr = "16-bit Bayer GRGR/BGBG"; break;
  1120. case V4L2_PIX_FMT_SRGGB16: descr = "16-bit Bayer RGRG/GBGB"; break;
  1121. case V4L2_PIX_FMT_SN9C20X_I420: descr = "GSPCA SN9C20X I420"; break;
  1122. case V4L2_PIX_FMT_SPCA501: descr = "GSPCA SPCA501"; break;
  1123. case V4L2_PIX_FMT_SPCA505: descr = "GSPCA SPCA505"; break;
  1124. case V4L2_PIX_FMT_SPCA508: descr = "GSPCA SPCA508"; break;
  1125. case V4L2_PIX_FMT_STV0680: descr = "GSPCA STV0680"; break;
  1126. case V4L2_PIX_FMT_TM6000: descr = "A/V + VBI Mux Packet"; break;
  1127. case V4L2_PIX_FMT_CIT_YYVYUY: descr = "GSPCA CIT YYVYUY"; break;
  1128. case V4L2_PIX_FMT_KONICA420: descr = "GSPCA KONICA420"; break;
  1129. case V4L2_PIX_FMT_HSV24: descr = "24-bit HSV 8-8-8"; break;
  1130. case V4L2_PIX_FMT_HSV32: descr = "32-bit XHSV 8-8-8-8"; break;
  1131. case V4L2_SDR_FMT_CU8: descr = "Complex U8"; break;
  1132. case V4L2_SDR_FMT_CU16LE: descr = "Complex U16LE"; break;
  1133. case V4L2_SDR_FMT_CS8: descr = "Complex S8"; break;
  1134. case V4L2_SDR_FMT_CS14LE: descr = "Complex S14LE"; break;
  1135. case V4L2_SDR_FMT_RU12LE: descr = "Real U12LE"; break;
  1136. case V4L2_SDR_FMT_PCU16BE: descr = "Planar Complex U16BE"; break;
  1137. case V4L2_SDR_FMT_PCU18BE: descr = "Planar Complex U18BE"; break;
  1138. case V4L2_SDR_FMT_PCU20BE: descr = "Planar Complex U20BE"; break;
  1139. case V4L2_TCH_FMT_DELTA_TD16: descr = "16-bit signed deltas"; break;
  1140. case V4L2_TCH_FMT_DELTA_TD08: descr = "8-bit signed deltas"; break;
  1141. case V4L2_TCH_FMT_TU16: descr = "16-bit unsigned touch data"; break;
  1142. case V4L2_TCH_FMT_TU08: descr = "8-bit unsigned touch data"; break;
  1143. case V4L2_META_FMT_VSP1_HGO: descr = "R-Car VSP1 1-D Histogram"; break;
  1144. case V4L2_META_FMT_VSP1_HGT: descr = "R-Car VSP1 2-D Histogram"; break;
  1145. case V4L2_META_FMT_UVC: descr = "UVC payload header metadata"; break;
  1146. default:
  1147. /* Compressed formats */
  1148. flags = V4L2_FMT_FLAG_COMPRESSED;
  1149. switch (fmt->pixelformat) {
  1150. /* Max description length mask: descr = "0123456789012345678901234567890" */
  1151. case V4L2_PIX_FMT_MJPEG: descr = "Motion-JPEG"; break;
  1152. case V4L2_PIX_FMT_JPEG: descr = "JFIF JPEG"; break;
  1153. case V4L2_PIX_FMT_DV: descr = "1394"; break;
  1154. case V4L2_PIX_FMT_MPEG: descr = "MPEG-1/2/4"; break;
  1155. case V4L2_PIX_FMT_H264: descr = "H.264"; break;
  1156. case V4L2_PIX_FMT_H264_NO_SC: descr = "H.264 (No Start Codes)"; break;
  1157. case V4L2_PIX_FMT_H264_MVC: descr = "H.264 MVC"; break;
  1158. case V4L2_PIX_FMT_H263: descr = "H.263"; break;
  1159. case V4L2_PIX_FMT_MPEG1: descr = "MPEG-1 ES"; break;
  1160. case V4L2_PIX_FMT_MPEG2: descr = "MPEG-2 ES"; break;
  1161. case V4L2_PIX_FMT_MPEG2_SLICE: descr = "MPEG-2 Parsed Slice Data"; break;
  1162. case V4L2_PIX_FMT_MPEG4: descr = "MPEG-4 part 2 ES"; break;
  1163. case V4L2_PIX_FMT_XVID: descr = "Xvid"; break;
  1164. case V4L2_PIX_FMT_VC1_ANNEX_G: descr = "VC-1 (SMPTE 412M Annex G)"; break;
  1165. case V4L2_PIX_FMT_VC1_ANNEX_L: descr = "VC-1 (SMPTE 412M Annex L)"; break;
  1166. case V4L2_PIX_FMT_VP8: descr = "VP8"; break;
  1167. case V4L2_PIX_FMT_VP9: descr = "VP9"; break;
  1168. case V4L2_PIX_FMT_HEVC: descr = "HEVC"; break; /* aka H.265 */
  1169. case V4L2_PIX_FMT_FWHT: descr = "FWHT"; break; /* used in vicodec */
  1170. case V4L2_PIX_FMT_CPIA1: descr = "GSPCA CPiA YUV"; break;
  1171. case V4L2_PIX_FMT_WNVA: descr = "WNVA"; break;
  1172. case V4L2_PIX_FMT_SN9C10X: descr = "GSPCA SN9C10X"; break;
  1173. case V4L2_PIX_FMT_PWC1: descr = "Raw Philips Webcam Type (Old)"; break;
  1174. case V4L2_PIX_FMT_PWC2: descr = "Raw Philips Webcam Type (New)"; break;
  1175. case V4L2_PIX_FMT_ET61X251: descr = "GSPCA ET61X251"; break;
  1176. case V4L2_PIX_FMT_SPCA561: descr = "GSPCA SPCA561"; break;
  1177. case V4L2_PIX_FMT_PAC207: descr = "GSPCA PAC207"; break;
  1178. case V4L2_PIX_FMT_MR97310A: descr = "GSPCA MR97310A"; break;
  1179. case V4L2_PIX_FMT_JL2005BCD: descr = "GSPCA JL2005BCD"; break;
  1180. case V4L2_PIX_FMT_SN9C2028: descr = "GSPCA SN9C2028"; break;
  1181. case V4L2_PIX_FMT_SQ905C: descr = "GSPCA SQ905C"; break;
  1182. case V4L2_PIX_FMT_PJPG: descr = "GSPCA PJPG"; break;
  1183. case V4L2_PIX_FMT_OV511: descr = "GSPCA OV511"; break;
  1184. case V4L2_PIX_FMT_OV518: descr = "GSPCA OV518"; break;
  1185. case V4L2_PIX_FMT_JPGL: descr = "JPEG Lite"; break;
  1186. case V4L2_PIX_FMT_SE401: descr = "GSPCA SE401"; break;
  1187. case V4L2_PIX_FMT_S5C_UYVY_JPG: descr = "S5C73MX interleaved UYVY/JPEG"; break;
  1188. case V4L2_PIX_FMT_MT21C: descr = "Mediatek Compressed Format"; break;
  1189. case V4L2_PIX_FMT_SUNXI_TILED_NV12: descr = "Sunxi Tiled NV12 Format"; break;
  1190. default:
  1191. WARN(1, "Unknown pixelformat 0x%08x\n", fmt->pixelformat);
  1192. if (fmt->description[0])
  1193. return;
  1194. flags = 0;
  1195. snprintf(fmt->description, sz, "%c%c%c%c%s",
  1196. (char)(fmt->pixelformat & 0x7f),
  1197. (char)((fmt->pixelformat >> 8) & 0x7f),
  1198. (char)((fmt->pixelformat >> 16) & 0x7f),
  1199. (char)((fmt->pixelformat >> 24) & 0x7f),
  1200. (fmt->pixelformat & (1 << 31)) ? "-BE" : "");
  1201. break;
  1202. }
  1203. }
  1204. if (descr)
  1205. WARN_ON(strscpy(fmt->description, descr, sz) >= sz);
  1206. fmt->flags = flags;
  1207. }
  1208. static int v4l_enum_fmt(const struct v4l2_ioctl_ops *ops,
  1209. struct file *file, void *fh, void *arg)
  1210. {
  1211. struct v4l2_fmtdesc *p = arg;
  1212. int ret = check_fmt(file, p->type);
  1213. if (ret)
  1214. return ret;
  1215. ret = -EINVAL;
  1216. switch (p->type) {
  1217. case V4L2_BUF_TYPE_VIDEO_CAPTURE:
  1218. if (unlikely(!ops->vidioc_enum_fmt_vid_cap))
  1219. break;
  1220. ret = ops->vidioc_enum_fmt_vid_cap(file, fh, arg);
  1221. break;
  1222. case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
  1223. if (unlikely(!ops->vidioc_enum_fmt_vid_cap_mplane))
  1224. break;
  1225. ret = ops->vidioc_enum_fmt_vid_cap_mplane(file, fh, arg);
  1226. break;
  1227. case V4L2_BUF_TYPE_VIDEO_OVERLAY:
  1228. if (unlikely(!ops->vidioc_enum_fmt_vid_overlay))
  1229. break;
  1230. ret = ops->vidioc_enum_fmt_vid_overlay(file, fh, arg);
  1231. break;
  1232. case V4L2_BUF_TYPE_VIDEO_OUTPUT:
  1233. if (unlikely(!ops->vidioc_enum_fmt_vid_out))
  1234. break;
  1235. ret = ops->vidioc_enum_fmt_vid_out(file, fh, arg);
  1236. break;
  1237. case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
  1238. if (unlikely(!ops->vidioc_enum_fmt_vid_out_mplane))
  1239. break;
  1240. ret = ops->vidioc_enum_fmt_vid_out_mplane(file, fh, arg);
  1241. break;
  1242. case V4L2_BUF_TYPE_SDR_CAPTURE:
  1243. if (unlikely(!ops->vidioc_enum_fmt_sdr_cap))
  1244. break;
  1245. ret = ops->vidioc_enum_fmt_sdr_cap(file, fh, arg);
  1246. break;
  1247. case V4L2_BUF_TYPE_SDR_OUTPUT:
  1248. if (unlikely(!ops->vidioc_enum_fmt_sdr_out))
  1249. break;
  1250. ret = ops->vidioc_enum_fmt_sdr_out(file, fh, arg);
  1251. break;
  1252. case V4L2_BUF_TYPE_META_CAPTURE:
  1253. if (unlikely(!ops->vidioc_enum_fmt_meta_cap))
  1254. break;
  1255. ret = ops->vidioc_enum_fmt_meta_cap(file, fh, arg);
  1256. break;
  1257. }
  1258. if (ret == 0)
  1259. v4l_fill_fmtdesc(p);
  1260. return ret;
  1261. }
  1262. static int v4l_g_fmt(const struct v4l2_ioctl_ops *ops,
  1263. struct file *file, void *fh, void *arg)
  1264. {
  1265. struct v4l2_format *p = arg;
  1266. int ret = check_fmt(file, p->type);
  1267. if (ret)
  1268. return ret;
  1269. /*
  1270. * fmt can't be cleared for these overlay types due to the 'clips'
  1271. * 'clipcount' and 'bitmap' pointers in struct v4l2_window.
  1272. * Those are provided by the user. So handle these two overlay types
  1273. * first, and then just do a simple memset for the other types.
  1274. */
  1275. switch (p->type) {
  1276. case V4L2_BUF_TYPE_VIDEO_OVERLAY:
  1277. case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY: {
  1278. struct v4l2_clip __user *clips = p->fmt.win.clips;
  1279. u32 clipcount = p->fmt.win.clipcount;
  1280. void __user *bitmap = p->fmt.win.bitmap;
  1281. memset(&p->fmt, 0, sizeof(p->fmt));
  1282. p->fmt.win.clips = clips;
  1283. p->fmt.win.clipcount = clipcount;
  1284. p->fmt.win.bitmap = bitmap;
  1285. break;
  1286. }
  1287. default:
  1288. memset(&p->fmt, 0, sizeof(p->fmt));
  1289. break;
  1290. }
  1291. switch (p->type) {
  1292. case V4L2_BUF_TYPE_VIDEO_CAPTURE:
  1293. if (unlikely(!ops->vidioc_g_fmt_vid_cap))
  1294. break;
  1295. p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
  1296. ret = ops->vidioc_g_fmt_vid_cap(file, fh, arg);
  1297. /* just in case the driver zeroed it again */
  1298. p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
  1299. return ret;
  1300. case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
  1301. return ops->vidioc_g_fmt_vid_cap_mplane(file, fh, arg);
  1302. case V4L2_BUF_TYPE_VIDEO_OVERLAY:
  1303. return ops->vidioc_g_fmt_vid_overlay(file, fh, arg);
  1304. case V4L2_BUF_TYPE_VBI_CAPTURE:
  1305. return ops->vidioc_g_fmt_vbi_cap(file, fh, arg);
  1306. case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
  1307. return ops->vidioc_g_fmt_sliced_vbi_cap(file, fh, arg);
  1308. case V4L2_BUF_TYPE_VIDEO_OUTPUT:
  1309. if (unlikely(!ops->vidioc_g_fmt_vid_out))
  1310. break;
  1311. p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
  1312. ret = ops->vidioc_g_fmt_vid_out(file, fh, arg);
  1313. /* just in case the driver zeroed it again */
  1314. p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
  1315. return ret;
  1316. case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
  1317. return ops->vidioc_g_fmt_vid_out_mplane(file, fh, arg);
  1318. case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
  1319. return ops->vidioc_g_fmt_vid_out_overlay(file, fh, arg);
  1320. case V4L2_BUF_TYPE_VBI_OUTPUT:
  1321. return ops->vidioc_g_fmt_vbi_out(file, fh, arg);
  1322. case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
  1323. return ops->vidioc_g_fmt_sliced_vbi_out(file, fh, arg);
  1324. case V4L2_BUF_TYPE_SDR_CAPTURE:
  1325. return ops->vidioc_g_fmt_sdr_cap(file, fh, arg);
  1326. case V4L2_BUF_TYPE_SDR_OUTPUT:
  1327. return ops->vidioc_g_fmt_sdr_out(file, fh, arg);
  1328. case V4L2_BUF_TYPE_META_CAPTURE:
  1329. return ops->vidioc_g_fmt_meta_cap(file, fh, arg);
  1330. }
  1331. return -EINVAL;
  1332. }
  1333. static void v4l_pix_format_touch(struct v4l2_pix_format *p)
  1334. {
  1335. /*
  1336. * The v4l2_pix_format structure contains fields that make no sense for
  1337. * touch. Set them to default values in this case.
  1338. */
  1339. p->field = V4L2_FIELD_NONE;
  1340. p->colorspace = V4L2_COLORSPACE_RAW;
  1341. p->flags = 0;
  1342. p->ycbcr_enc = 0;
  1343. p->quantization = 0;
  1344. p->xfer_func = 0;
  1345. }
  1346. static int v4l_s_fmt(const struct v4l2_ioctl_ops *ops,
  1347. struct file *file, void *fh, void *arg)
  1348. {
  1349. struct v4l2_format *p = arg;
  1350. struct video_device *vfd = video_devdata(file);
  1351. int ret = check_fmt(file, p->type);
  1352. if (ret)
  1353. return ret;
  1354. ret = v4l_enable_media_source(vfd);
  1355. if (ret)
  1356. return ret;
  1357. v4l_sanitize_format(p);
  1358. switch (p->type) {
  1359. case V4L2_BUF_TYPE_VIDEO_CAPTURE:
  1360. if (unlikely(!ops->vidioc_s_fmt_vid_cap))
  1361. break;
  1362. CLEAR_AFTER_FIELD(p, fmt.pix);
  1363. ret = ops->vidioc_s_fmt_vid_cap(file, fh, arg);
  1364. /* just in case the driver zeroed it again */
  1365. p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
  1366. if (vfd->vfl_type == VFL_TYPE_TOUCH)
  1367. v4l_pix_format_touch(&p->fmt.pix);
  1368. return ret;
  1369. case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
  1370. if (unlikely(!ops->vidioc_s_fmt_vid_cap_mplane))
  1371. break;
  1372. CLEAR_AFTER_FIELD(p, fmt.pix_mp.xfer_func);
  1373. return ops->vidioc_s_fmt_vid_cap_mplane(file, fh, arg);
  1374. case V4L2_BUF_TYPE_VIDEO_OVERLAY:
  1375. if (unlikely(!ops->vidioc_s_fmt_vid_overlay))
  1376. break;
  1377. CLEAR_AFTER_FIELD(p, fmt.win);
  1378. return ops->vidioc_s_fmt_vid_overlay(file, fh, arg);
  1379. case V4L2_BUF_TYPE_VBI_CAPTURE:
  1380. if (unlikely(!ops->vidioc_s_fmt_vbi_cap))
  1381. break;
  1382. CLEAR_AFTER_FIELD(p, fmt.vbi);
  1383. return ops->vidioc_s_fmt_vbi_cap(file, fh, arg);
  1384. case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
  1385. if (unlikely(!ops->vidioc_s_fmt_sliced_vbi_cap))
  1386. break;
  1387. CLEAR_AFTER_FIELD(p, fmt.sliced);
  1388. return ops->vidioc_s_fmt_sliced_vbi_cap(file, fh, arg);
  1389. case V4L2_BUF_TYPE_VIDEO_OUTPUT:
  1390. if (unlikely(!ops->vidioc_s_fmt_vid_out))
  1391. break;
  1392. CLEAR_AFTER_FIELD(p, fmt.pix);
  1393. ret = ops->vidioc_s_fmt_vid_out(file, fh, arg);
  1394. /* just in case the driver zeroed it again */
  1395. p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
  1396. return ret;
  1397. case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
  1398. if (unlikely(!ops->vidioc_s_fmt_vid_out_mplane))
  1399. break;
  1400. CLEAR_AFTER_FIELD(p, fmt.pix_mp.xfer_func);
  1401. return ops->vidioc_s_fmt_vid_out_mplane(file, fh, arg);
  1402. case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
  1403. if (unlikely(!ops->vidioc_s_fmt_vid_out_overlay))
  1404. break;
  1405. CLEAR_AFTER_FIELD(p, fmt.win);
  1406. return ops->vidioc_s_fmt_vid_out_overlay(file, fh, arg);
  1407. case V4L2_BUF_TYPE_VBI_OUTPUT:
  1408. if (unlikely(!ops->vidioc_s_fmt_vbi_out))
  1409. break;
  1410. CLEAR_AFTER_FIELD(p, fmt.vbi);
  1411. return ops->vidioc_s_fmt_vbi_out(file, fh, arg);
  1412. case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
  1413. if (unlikely(!ops->vidioc_s_fmt_sliced_vbi_out))
  1414. break;
  1415. CLEAR_AFTER_FIELD(p, fmt.sliced);
  1416. return ops->vidioc_s_fmt_sliced_vbi_out(file, fh, arg);
  1417. case V4L2_BUF_TYPE_SDR_CAPTURE:
  1418. if (unlikely(!ops->vidioc_s_fmt_sdr_cap))
  1419. break;
  1420. CLEAR_AFTER_FIELD(p, fmt.sdr);
  1421. return ops->vidioc_s_fmt_sdr_cap(file, fh, arg);
  1422. case V4L2_BUF_TYPE_SDR_OUTPUT:
  1423. if (unlikely(!ops->vidioc_s_fmt_sdr_out))
  1424. break;
  1425. CLEAR_AFTER_FIELD(p, fmt.sdr);
  1426. return ops->vidioc_s_fmt_sdr_out(file, fh, arg);
  1427. case V4L2_BUF_TYPE_META_CAPTURE:
  1428. if (unlikely(!ops->vidioc_s_fmt_meta_cap))
  1429. break;
  1430. CLEAR_AFTER_FIELD(p, fmt.meta);
  1431. return ops->vidioc_s_fmt_meta_cap(file, fh, arg);
  1432. }
  1433. return -EINVAL;
  1434. }
  1435. static int v4l_try_fmt(const struct v4l2_ioctl_ops *ops,
  1436. struct file *file, void *fh, void *arg)
  1437. {
  1438. struct v4l2_format *p = arg;
  1439. int ret = check_fmt(file, p->type);
  1440. if (ret)
  1441. return ret;
  1442. v4l_sanitize_format(p);
  1443. switch (p->type) {
  1444. case V4L2_BUF_TYPE_VIDEO_CAPTURE:
  1445. if (unlikely(!ops->vidioc_try_fmt_vid_cap))
  1446. break;
  1447. CLEAR_AFTER_FIELD(p, fmt.pix);
  1448. ret = ops->vidioc_try_fmt_vid_cap(file, fh, arg);
  1449. /* just in case the driver zeroed it again */
  1450. p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
  1451. return ret;
  1452. case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
  1453. if (unlikely(!ops->vidioc_try_fmt_vid_cap_mplane))
  1454. break;
  1455. CLEAR_AFTER_FIELD(p, fmt.pix_mp.xfer_func);
  1456. return ops->vidioc_try_fmt_vid_cap_mplane(file, fh, arg);
  1457. case V4L2_BUF_TYPE_VIDEO_OVERLAY:
  1458. if (unlikely(!ops->vidioc_try_fmt_vid_overlay))
  1459. break;
  1460. CLEAR_AFTER_FIELD(p, fmt.win);
  1461. return ops->vidioc_try_fmt_vid_overlay(file, fh, arg);
  1462. case V4L2_BUF_TYPE_VBI_CAPTURE:
  1463. if (unlikely(!ops->vidioc_try_fmt_vbi_cap))
  1464. break;
  1465. CLEAR_AFTER_FIELD(p, fmt.vbi);
  1466. return ops->vidioc_try_fmt_vbi_cap(file, fh, arg);
  1467. case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
  1468. if (unlikely(!ops->vidioc_try_fmt_sliced_vbi_cap))
  1469. break;
  1470. CLEAR_AFTER_FIELD(p, fmt.sliced);
  1471. return ops->vidioc_try_fmt_sliced_vbi_cap(file, fh, arg);
  1472. case V4L2_BUF_TYPE_VIDEO_OUTPUT:
  1473. if (unlikely(!ops->vidioc_try_fmt_vid_out))
  1474. break;
  1475. CLEAR_AFTER_FIELD(p, fmt.pix);
  1476. ret = ops->vidioc_try_fmt_vid_out(file, fh, arg);
  1477. /* just in case the driver zeroed it again */
  1478. p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
  1479. return ret;
  1480. case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
  1481. if (unlikely(!ops->vidioc_try_fmt_vid_out_mplane))
  1482. break;
  1483. CLEAR_AFTER_FIELD(p, fmt.pix_mp.xfer_func);
  1484. return ops->vidioc_try_fmt_vid_out_mplane(file, fh, arg);
  1485. case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
  1486. if (unlikely(!ops->vidioc_try_fmt_vid_out_overlay))
  1487. break;
  1488. CLEAR_AFTER_FIELD(p, fmt.win);
  1489. return ops->vidioc_try_fmt_vid_out_overlay(file, fh, arg);
  1490. case V4L2_BUF_TYPE_VBI_OUTPUT:
  1491. if (unlikely(!ops->vidioc_try_fmt_vbi_out))
  1492. break;
  1493. CLEAR_AFTER_FIELD(p, fmt.vbi);
  1494. return ops->vidioc_try_fmt_vbi_out(file, fh, arg);
  1495. case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
  1496. if (unlikely(!ops->vidioc_try_fmt_sliced_vbi_out))
  1497. break;
  1498. CLEAR_AFTER_FIELD(p, fmt.sliced);
  1499. return ops->vidioc_try_fmt_sliced_vbi_out(file, fh, arg);
  1500. case V4L2_BUF_TYPE_SDR_CAPTURE:
  1501. if (unlikely(!ops->vidioc_try_fmt_sdr_cap))
  1502. break;
  1503. CLEAR_AFTER_FIELD(p, fmt.sdr);
  1504. return ops->vidioc_try_fmt_sdr_cap(file, fh, arg);
  1505. case V4L2_BUF_TYPE_SDR_OUTPUT:
  1506. if (unlikely(!ops->vidioc_try_fmt_sdr_out))
  1507. break;
  1508. CLEAR_AFTER_FIELD(p, fmt.sdr);
  1509. return ops->vidioc_try_fmt_sdr_out(file, fh, arg);
  1510. case V4L2_BUF_TYPE_META_CAPTURE:
  1511. if (unlikely(!ops->vidioc_try_fmt_meta_cap))
  1512. break;
  1513. CLEAR_AFTER_FIELD(p, fmt.meta);
  1514. return ops->vidioc_try_fmt_meta_cap(file, fh, arg);
  1515. }
  1516. return -EINVAL;
  1517. }
  1518. static int v4l_streamon(const struct v4l2_ioctl_ops *ops,
  1519. struct file *file, void *fh, void *arg)
  1520. {
  1521. return ops->vidioc_streamon(file, fh, *(unsigned int *)arg);
  1522. }
  1523. static int v4l_streamoff(const struct v4l2_ioctl_ops *ops,
  1524. struct file *file, void *fh, void *arg)
  1525. {
  1526. return ops->vidioc_streamoff(file, fh, *(unsigned int *)arg);
  1527. }
  1528. static int v4l_g_tuner(const struct v4l2_ioctl_ops *ops,
  1529. struct file *file, void *fh, void *arg)
  1530. {
  1531. struct video_device *vfd = video_devdata(file);
  1532. struct v4l2_tuner *p = arg;
  1533. int err;
  1534. p->type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
  1535. V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
  1536. err = ops->vidioc_g_tuner(file, fh, p);
  1537. if (!err)
  1538. p->capability |= V4L2_TUNER_CAP_FREQ_BANDS;
  1539. return err;
  1540. }
  1541. static int v4l_s_tuner(const struct v4l2_ioctl_ops *ops,
  1542. struct file *file, void *fh, void *arg)
  1543. {
  1544. struct video_device *vfd = video_devdata(file);
  1545. struct v4l2_tuner *p = arg;
  1546. int ret;
  1547. ret = v4l_enable_media_source(vfd);
  1548. if (ret)
  1549. return ret;
  1550. p->type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
  1551. V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
  1552. return ops->vidioc_s_tuner(file, fh, p);
  1553. }
  1554. static int v4l_g_modulator(const struct v4l2_ioctl_ops *ops,
  1555. struct file *file, void *fh, void *arg)
  1556. {
  1557. struct video_device *vfd = video_devdata(file);
  1558. struct v4l2_modulator *p = arg;
  1559. int err;
  1560. if (vfd->vfl_type == VFL_TYPE_RADIO)
  1561. p->type = V4L2_TUNER_RADIO;
  1562. err = ops->vidioc_g_modulator(file, fh, p);
  1563. if (!err)
  1564. p->capability |= V4L2_TUNER_CAP_FREQ_BANDS;
  1565. return err;
  1566. }
  1567. static int v4l_s_modulator(const struct v4l2_ioctl_ops *ops,
  1568. struct file *file, void *fh, void *arg)
  1569. {
  1570. struct video_device *vfd = video_devdata(file);
  1571. struct v4l2_modulator *p = arg;
  1572. if (vfd->vfl_type == VFL_TYPE_RADIO)
  1573. p->type = V4L2_TUNER_RADIO;
  1574. return ops->vidioc_s_modulator(file, fh, p);
  1575. }
  1576. static int v4l_g_frequency(const struct v4l2_ioctl_ops *ops,
  1577. struct file *file, void *fh, void *arg)
  1578. {
  1579. struct video_device *vfd = video_devdata(file);
  1580. struct v4l2_frequency *p = arg;
  1581. if (vfd->vfl_type == VFL_TYPE_SDR)
  1582. p->type = V4L2_TUNER_SDR;
  1583. else
  1584. p->type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
  1585. V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
  1586. return ops->vidioc_g_frequency(file, fh, p);
  1587. }
  1588. static int v4l_s_frequency(const struct v4l2_ioctl_ops *ops,
  1589. struct file *file, void *fh, void *arg)
  1590. {
  1591. struct video_device *vfd = video_devdata(file);
  1592. const struct v4l2_frequency *p = arg;
  1593. enum v4l2_tuner_type type;
  1594. int ret;
  1595. ret = v4l_enable_media_source(vfd);
  1596. if (ret)
  1597. return ret;
  1598. if (vfd->vfl_type == VFL_TYPE_SDR) {
  1599. if (p->type != V4L2_TUNER_SDR && p->type != V4L2_TUNER_RF)
  1600. return -EINVAL;
  1601. } else {
  1602. type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
  1603. V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
  1604. if (type != p->type)
  1605. return -EINVAL;
  1606. }
  1607. return ops->vidioc_s_frequency(file, fh, p);
  1608. }
  1609. static int v4l_enumstd(const struct v4l2_ioctl_ops *ops,
  1610. struct file *file, void *fh, void *arg)
  1611. {
  1612. struct video_device *vfd = video_devdata(file);
  1613. struct v4l2_standard *p = arg;
  1614. return v4l_video_std_enumstd(p, vfd->tvnorms);
  1615. }
  1616. static int v4l_s_std(const struct v4l2_ioctl_ops *ops,
  1617. struct file *file, void *fh, void *arg)
  1618. {
  1619. struct video_device *vfd = video_devdata(file);
  1620. v4l2_std_id id = *(v4l2_std_id *)arg, norm;
  1621. int ret;
  1622. ret = v4l_enable_media_source(vfd);
  1623. if (ret)
  1624. return ret;
  1625. norm = id & vfd->tvnorms;
  1626. if (vfd->tvnorms && !norm) /* Check if std is supported */
  1627. return -EINVAL;
  1628. /* Calls the specific handler */
  1629. return ops->vidioc_s_std(file, fh, norm);
  1630. }
  1631. static int v4l_querystd(const struct v4l2_ioctl_ops *ops,
  1632. struct file *file, void *fh, void *arg)
  1633. {
  1634. struct video_device *vfd = video_devdata(file);
  1635. v4l2_std_id *p = arg;
  1636. int ret;
  1637. ret = v4l_enable_media_source(vfd);
  1638. if (ret)
  1639. return ret;
  1640. /*
  1641. * If no signal is detected, then the driver should return
  1642. * V4L2_STD_UNKNOWN. Otherwise it should return tvnorms with
  1643. * any standards that do not apply removed.
  1644. *
  1645. * This means that tuners, audio and video decoders can join
  1646. * their efforts to improve the standards detection.
  1647. */
  1648. *p = vfd->tvnorms;
  1649. return ops->vidioc_querystd(file, fh, arg);
  1650. }
  1651. static int v4l_s_hw_freq_seek(const struct v4l2_ioctl_ops *ops,
  1652. struct file *file, void *fh, void *arg)
  1653. {
  1654. struct video_device *vfd = video_devdata(file);
  1655. struct v4l2_hw_freq_seek *p = arg;
  1656. enum v4l2_tuner_type type;
  1657. int ret;
  1658. ret = v4l_enable_media_source(vfd);
  1659. if (ret)
  1660. return ret;
  1661. /* s_hw_freq_seek is not supported for SDR for now */
  1662. if (vfd->vfl_type == VFL_TYPE_SDR)
  1663. return -EINVAL;
  1664. type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
  1665. V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
  1666. if (p->type != type)
  1667. return -EINVAL;
  1668. return ops->vidioc_s_hw_freq_seek(file, fh, p);
  1669. }
  1670. static int v4l_overlay(const struct v4l2_ioctl_ops *ops,
  1671. struct file *file, void *fh, void *arg)
  1672. {
  1673. return ops->vidioc_overlay(file, fh, *(unsigned int *)arg);
  1674. }
  1675. static int v4l_reqbufs(const struct v4l2_ioctl_ops *ops,
  1676. struct file *file, void *fh, void *arg)
  1677. {
  1678. struct v4l2_requestbuffers *p = arg;
  1679. int ret = check_fmt(file, p->type);
  1680. if (ret)
  1681. return ret;
  1682. CLEAR_AFTER_FIELD(p, capabilities);
  1683. return ops->vidioc_reqbufs(file, fh, p);
  1684. }
  1685. static int v4l_querybuf(const struct v4l2_ioctl_ops *ops,
  1686. struct file *file, void *fh, void *arg)
  1687. {
  1688. struct v4l2_buffer *p = arg;
  1689. int ret = check_fmt(file, p->type);
  1690. return ret ? ret : ops->vidioc_querybuf(file, fh, p);
  1691. }
  1692. static int v4l_qbuf(const struct v4l2_ioctl_ops *ops,
  1693. struct file *file, void *fh, void *arg)
  1694. {
  1695. struct v4l2_buffer *p = arg;
  1696. int ret = check_fmt(file, p->type);
  1697. return ret ? ret : ops->vidioc_qbuf(file, fh, p);
  1698. }
  1699. static int v4l_dqbuf(const struct v4l2_ioctl_ops *ops,
  1700. struct file *file, void *fh, void *arg)
  1701. {
  1702. struct v4l2_buffer *p = arg;
  1703. int ret = check_fmt(file, p->type);
  1704. return ret ? ret : ops->vidioc_dqbuf(file, fh, p);
  1705. }
  1706. static int v4l_create_bufs(const struct v4l2_ioctl_ops *ops,
  1707. struct file *file, void *fh, void *arg)
  1708. {
  1709. struct v4l2_create_buffers *create = arg;
  1710. int ret = check_fmt(file, create->format.type);
  1711. if (ret)
  1712. return ret;
  1713. CLEAR_AFTER_FIELD(create, capabilities);
  1714. v4l_sanitize_format(&create->format);
  1715. ret = ops->vidioc_create_bufs(file, fh, create);
  1716. if (create->format.type == V4L2_BUF_TYPE_VIDEO_CAPTURE ||
  1717. create->format.type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
  1718. create->format.fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
  1719. return ret;
  1720. }
  1721. static int v4l_prepare_buf(const struct v4l2_ioctl_ops *ops,
  1722. struct file *file, void *fh, void *arg)
  1723. {
  1724. struct v4l2_buffer *b = arg;
  1725. int ret = check_fmt(file, b->type);
  1726. return ret ? ret : ops->vidioc_prepare_buf(file, fh, b);
  1727. }
  1728. static int v4l_g_parm(const struct v4l2_ioctl_ops *ops,
  1729. struct file *file, void *fh, void *arg)
  1730. {
  1731. struct v4l2_streamparm *p = arg;
  1732. v4l2_std_id std;
  1733. int ret = check_fmt(file, p->type);
  1734. if (ret)
  1735. return ret;
  1736. if (ops->vidioc_g_parm)
  1737. return ops->vidioc_g_parm(file, fh, p);
  1738. if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
  1739. p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
  1740. return -EINVAL;
  1741. p->parm.capture.readbuffers = 2;
  1742. ret = ops->vidioc_g_std(file, fh, &std);
  1743. if (ret == 0)
  1744. v4l2_video_std_frame_period(std, &p->parm.capture.timeperframe);
  1745. return ret;
  1746. }
  1747. static int v4l_s_parm(const struct v4l2_ioctl_ops *ops,
  1748. struct file *file, void *fh, void *arg)
  1749. {
  1750. struct v4l2_streamparm *p = arg;
  1751. int ret = check_fmt(file, p->type);
  1752. if (ret)
  1753. return ret;
  1754. /* Note: extendedmode is never used in drivers */
  1755. if (V4L2_TYPE_IS_OUTPUT(p->type)) {
  1756. memset(p->parm.output.reserved, 0,
  1757. sizeof(p->parm.output.reserved));
  1758. p->parm.output.extendedmode = 0;
  1759. p->parm.output.outputmode &= V4L2_MODE_HIGHQUALITY;
  1760. } else {
  1761. memset(p->parm.capture.reserved, 0,
  1762. sizeof(p->parm.capture.reserved));
  1763. p->parm.capture.extendedmode = 0;
  1764. p->parm.capture.capturemode &= V4L2_MODE_HIGHQUALITY;
  1765. }
  1766. return ops->vidioc_s_parm(file, fh, p);
  1767. }
  1768. static int v4l_queryctrl(const struct v4l2_ioctl_ops *ops,
  1769. struct file *file, void *fh, void *arg)
  1770. {
  1771. struct video_device *vfd = video_devdata(file);
  1772. struct v4l2_queryctrl *p = arg;
  1773. struct v4l2_fh *vfh =
  1774. test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags) ? fh : NULL;
  1775. if (vfh && vfh->ctrl_handler)
  1776. return v4l2_queryctrl(vfh->ctrl_handler, p);
  1777. if (vfd->ctrl_handler)
  1778. return v4l2_queryctrl(vfd->ctrl_handler, p);
  1779. if (ops->vidioc_queryctrl)
  1780. return ops->vidioc_queryctrl(file, fh, p);
  1781. return -ENOTTY;
  1782. }
  1783. static int v4l_query_ext_ctrl(const struct v4l2_ioctl_ops *ops,
  1784. struct file *file, void *fh, void *arg)
  1785. {
  1786. struct video_device *vfd = video_devdata(file);
  1787. struct v4l2_query_ext_ctrl *p = arg;
  1788. struct v4l2_fh *vfh =
  1789. test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags) ? fh : NULL;
  1790. if (vfh && vfh->ctrl_handler)
  1791. return v4l2_query_ext_ctrl(vfh->ctrl_handler, p);
  1792. if (vfd->ctrl_handler)
  1793. return v4l2_query_ext_ctrl(vfd->ctrl_handler, p);
  1794. if (ops->vidioc_query_ext_ctrl)
  1795. return ops->vidioc_query_ext_ctrl(file, fh, p);
  1796. return -ENOTTY;
  1797. }
  1798. static int v4l_querymenu(const struct v4l2_ioctl_ops *ops,
  1799. struct file *file, void *fh, void *arg)
  1800. {
  1801. struct video_device *vfd = video_devdata(file);
  1802. struct v4l2_querymenu *p = arg;
  1803. struct v4l2_fh *vfh =
  1804. test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags) ? fh : NULL;
  1805. if (vfh && vfh->ctrl_handler)
  1806. return v4l2_querymenu(vfh->ctrl_handler, p);
  1807. if (vfd->ctrl_handler)
  1808. return v4l2_querymenu(vfd->ctrl_handler, p);
  1809. if (ops->vidioc_querymenu)
  1810. return ops->vidioc_querymenu(file, fh, p);
  1811. return -ENOTTY;
  1812. }
  1813. static int v4l_g_ctrl(const struct v4l2_ioctl_ops *ops,
  1814. struct file *file, void *fh, void *arg)
  1815. {
  1816. struct video_device *vfd = video_devdata(file);
  1817. struct v4l2_control *p = arg;
  1818. struct v4l2_fh *vfh =
  1819. test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags) ? fh : NULL;
  1820. struct v4l2_ext_controls ctrls;
  1821. struct v4l2_ext_control ctrl;
  1822. if (vfh && vfh->ctrl_handler)
  1823. return v4l2_g_ctrl(vfh->ctrl_handler, p);
  1824. if (vfd->ctrl_handler)
  1825. return v4l2_g_ctrl(vfd->ctrl_handler, p);
  1826. if (ops->vidioc_g_ctrl)
  1827. return ops->vidioc_g_ctrl(file, fh, p);
  1828. if (ops->vidioc_g_ext_ctrls == NULL)
  1829. return -ENOTTY;
  1830. ctrls.which = V4L2_CTRL_ID2WHICH(p->id);
  1831. ctrls.count = 1;
  1832. ctrls.controls = &ctrl;
  1833. ctrl.id = p->id;
  1834. ctrl.value = p->value;
  1835. if (check_ext_ctrls(&ctrls, 1)) {
  1836. int ret = ops->vidioc_g_ext_ctrls(file, fh, &ctrls);
  1837. if (ret == 0)
  1838. p->value = ctrl.value;
  1839. return ret;
  1840. }
  1841. return -EINVAL;
  1842. }
  1843. static int v4l_s_ctrl(const struct v4l2_ioctl_ops *ops,
  1844. struct file *file, void *fh, void *arg)
  1845. {
  1846. struct video_device *vfd = video_devdata(file);
  1847. struct v4l2_control *p = arg;
  1848. struct v4l2_fh *vfh =
  1849. test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags) ? fh : NULL;
  1850. struct v4l2_ext_controls ctrls;
  1851. struct v4l2_ext_control ctrl;
  1852. if (vfh && vfh->ctrl_handler)
  1853. return v4l2_s_ctrl(vfh, vfh->ctrl_handler, p);
  1854. if (vfd->ctrl_handler)
  1855. return v4l2_s_ctrl(NULL, vfd->ctrl_handler, p);
  1856. if (ops->vidioc_s_ctrl)
  1857. return ops->vidioc_s_ctrl(file, fh, p);
  1858. if (ops->vidioc_s_ext_ctrls == NULL)
  1859. return -ENOTTY;
  1860. ctrls.which = V4L2_CTRL_ID2WHICH(p->id);
  1861. ctrls.count = 1;
  1862. ctrls.controls = &ctrl;
  1863. ctrl.id = p->id;
  1864. ctrl.value = p->value;
  1865. if (check_ext_ctrls(&ctrls, 1))
  1866. return ops->vidioc_s_ext_ctrls(file, fh, &ctrls);
  1867. return -EINVAL;
  1868. }
  1869. static int v4l_g_ext_ctrls(const struct v4l2_ioctl_ops *ops,
  1870. struct file *file, void *fh, void *arg)
  1871. {
  1872. struct video_device *vfd = video_devdata(file);
  1873. struct v4l2_ext_controls *p = arg;
  1874. struct v4l2_fh *vfh =
  1875. test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags) ? fh : NULL;
  1876. p->error_idx = p->count;
  1877. if (vfh && vfh->ctrl_handler)
  1878. return v4l2_g_ext_ctrls(vfh->ctrl_handler, vfd->v4l2_dev->mdev, p);
  1879. if (vfd->ctrl_handler)
  1880. return v4l2_g_ext_ctrls(vfd->ctrl_handler, vfd->v4l2_dev->mdev, p);
  1881. if (ops->vidioc_g_ext_ctrls == NULL)
  1882. return -ENOTTY;
  1883. return check_ext_ctrls(p, 0) ? ops->vidioc_g_ext_ctrls(file, fh, p) :
  1884. -EINVAL;
  1885. }
  1886. static int v4l_s_ext_ctrls(const struct v4l2_ioctl_ops *ops,
  1887. struct file *file, void *fh, void *arg)
  1888. {
  1889. struct video_device *vfd = video_devdata(file);
  1890. struct v4l2_ext_controls *p = arg;
  1891. struct v4l2_fh *vfh =
  1892. test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags) ? fh : NULL;
  1893. p->error_idx = p->count;
  1894. if (vfh && vfh->ctrl_handler)
  1895. return v4l2_s_ext_ctrls(vfh, vfh->ctrl_handler, vfd->v4l2_dev->mdev, p);
  1896. if (vfd->ctrl_handler)
  1897. return v4l2_s_ext_ctrls(NULL, vfd->ctrl_handler, vfd->v4l2_dev->mdev, p);
  1898. if (ops->vidioc_s_ext_ctrls == NULL)
  1899. return -ENOTTY;
  1900. return check_ext_ctrls(p, 0) ? ops->vidioc_s_ext_ctrls(file, fh, p) :
  1901. -EINVAL;
  1902. }
  1903. static int v4l_try_ext_ctrls(const struct v4l2_ioctl_ops *ops,
  1904. struct file *file, void *fh, void *arg)
  1905. {
  1906. struct video_device *vfd = video_devdata(file);
  1907. struct v4l2_ext_controls *p = arg;
  1908. struct v4l2_fh *vfh =
  1909. test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags) ? fh : NULL;
  1910. p->error_idx = p->count;
  1911. if (vfh && vfh->ctrl_handler)
  1912. return v4l2_try_ext_ctrls(vfh->ctrl_handler, vfd->v4l2_dev->mdev, p);
  1913. if (vfd->ctrl_handler)
  1914. return v4l2_try_ext_ctrls(vfd->ctrl_handler, vfd->v4l2_dev->mdev, p);
  1915. if (ops->vidioc_try_ext_ctrls == NULL)
  1916. return -ENOTTY;
  1917. return check_ext_ctrls(p, 0) ? ops->vidioc_try_ext_ctrls(file, fh, p) :
  1918. -EINVAL;
  1919. }
  1920. /*
  1921. * The selection API specified originally that the _MPLANE buffer types
  1922. * shouldn't be used. The reasons for this are lost in the mists of time
  1923. * (or just really crappy memories). Regardless, this is really annoying
  1924. * for userspace. So to keep things simple we map _MPLANE buffer types
  1925. * to their 'regular' counterparts before calling the driver. And we
  1926. * restore it afterwards. This way applications can use either buffer
  1927. * type and drivers don't need to check for both.
  1928. */
  1929. static int v4l_g_selection(const struct v4l2_ioctl_ops *ops,
  1930. struct file *file, void *fh, void *arg)
  1931. {
  1932. struct v4l2_selection *p = arg;
  1933. u32 old_type = p->type;
  1934. int ret;
  1935. if (p->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
  1936. p->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  1937. else if (p->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE)
  1938. p->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
  1939. ret = ops->vidioc_g_selection(file, fh, p);
  1940. p->type = old_type;
  1941. return ret;
  1942. }
  1943. static int v4l_s_selection(const struct v4l2_ioctl_ops *ops,
  1944. struct file *file, void *fh, void *arg)
  1945. {
  1946. struct v4l2_selection *p = arg;
  1947. u32 old_type = p->type;
  1948. int ret;
  1949. if (p->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
  1950. p->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  1951. else if (p->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE)
  1952. p->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
  1953. ret = ops->vidioc_s_selection(file, fh, p);
  1954. p->type = old_type;
  1955. return ret;
  1956. }
  1957. static int v4l_g_crop(const struct v4l2_ioctl_ops *ops,
  1958. struct file *file, void *fh, void *arg)
  1959. {
  1960. struct v4l2_crop *p = arg;
  1961. struct v4l2_selection s = {
  1962. .type = p->type,
  1963. };
  1964. int ret;
  1965. if (ops->vidioc_g_crop)
  1966. return ops->vidioc_g_crop(file, fh, p);
  1967. /* simulate capture crop using selection api */
  1968. /* crop means compose for output devices */
  1969. if (V4L2_TYPE_IS_OUTPUT(p->type))
  1970. s.target = V4L2_SEL_TGT_COMPOSE_ACTIVE;
  1971. else
  1972. s.target = V4L2_SEL_TGT_CROP_ACTIVE;
  1973. ret = v4l_g_selection(ops, file, fh, &s);
  1974. /* copying results to old structure on success */
  1975. if (!ret)
  1976. p->c = s.r;
  1977. return ret;
  1978. }
  1979. static int v4l_s_crop(const struct v4l2_ioctl_ops *ops,
  1980. struct file *file, void *fh, void *arg)
  1981. {
  1982. struct v4l2_crop *p = arg;
  1983. struct v4l2_selection s = {
  1984. .type = p->type,
  1985. .r = p->c,
  1986. };
  1987. if (ops->vidioc_s_crop)
  1988. return ops->vidioc_s_crop(file, fh, p);
  1989. /* simulate capture crop using selection api */
  1990. /* crop means compose for output devices */
  1991. if (V4L2_TYPE_IS_OUTPUT(p->type))
  1992. s.target = V4L2_SEL_TGT_COMPOSE_ACTIVE;
  1993. else
  1994. s.target = V4L2_SEL_TGT_CROP_ACTIVE;
  1995. return v4l_s_selection(ops, file, fh, &s);
  1996. }
  1997. static int v4l_cropcap(const struct v4l2_ioctl_ops *ops,
  1998. struct file *file, void *fh, void *arg)
  1999. {
  2000. struct v4l2_cropcap *p = arg;
  2001. struct v4l2_selection s = { .type = p->type };
  2002. int ret = 0;
  2003. /* setting trivial pixelaspect */
  2004. p->pixelaspect.numerator = 1;
  2005. p->pixelaspect.denominator = 1;
  2006. /*
  2007. * The determine_valid_ioctls() call already should ensure
  2008. * that this can never happen, but just in case...
  2009. */
  2010. if (WARN_ON(!ops->vidioc_cropcap && !ops->vidioc_g_selection))
  2011. return -ENOTTY;
  2012. if (ops->vidioc_cropcap)
  2013. ret = ops->vidioc_cropcap(file, fh, p);
  2014. if (!ops->vidioc_g_selection)
  2015. return ret;
  2016. /*
  2017. * Ignore ENOTTY or ENOIOCTLCMD error returns, just use the
  2018. * square pixel aspect ratio in that case.
  2019. */
  2020. if (ret && ret != -ENOTTY && ret != -ENOIOCTLCMD)
  2021. return ret;
  2022. /* Use g_selection() to fill in the bounds and defrect rectangles */
  2023. /* obtaining bounds */
  2024. if (V4L2_TYPE_IS_OUTPUT(p->type))
  2025. s.target = V4L2_SEL_TGT_COMPOSE_BOUNDS;
  2026. else
  2027. s.target = V4L2_SEL_TGT_CROP_BOUNDS;
  2028. ret = v4l_g_selection(ops, file, fh, &s);
  2029. if (ret)
  2030. return ret;
  2031. p->bounds = s.r;
  2032. /* obtaining defrect */
  2033. if (V4L2_TYPE_IS_OUTPUT(p->type))
  2034. s.target = V4L2_SEL_TGT_COMPOSE_DEFAULT;
  2035. else
  2036. s.target = V4L2_SEL_TGT_CROP_DEFAULT;
  2037. ret = v4l_g_selection(ops, file, fh, &s);
  2038. if (ret)
  2039. return ret;
  2040. p->defrect = s.r;
  2041. return 0;
  2042. }
  2043. static int v4l_log_status(const struct v4l2_ioctl_ops *ops,
  2044. struct file *file, void *fh, void *arg)
  2045. {
  2046. struct video_device *vfd = video_devdata(file);
  2047. int ret;
  2048. if (vfd->v4l2_dev)
  2049. pr_info("%s: ================= START STATUS =================\n",
  2050. vfd->v4l2_dev->name);
  2051. ret = ops->vidioc_log_status(file, fh);
  2052. if (vfd->v4l2_dev)
  2053. pr_info("%s: ================== END STATUS ==================\n",
  2054. vfd->v4l2_dev->name);
  2055. return ret;
  2056. }
  2057. static int v4l_dbg_g_register(const struct v4l2_ioctl_ops *ops,
  2058. struct file *file, void *fh, void *arg)
  2059. {
  2060. #ifdef CONFIG_VIDEO_ADV_DEBUG
  2061. struct v4l2_dbg_register *p = arg;
  2062. struct video_device *vfd = video_devdata(file);
  2063. struct v4l2_subdev *sd;
  2064. int idx = 0;
  2065. if (!capable(CAP_SYS_ADMIN))
  2066. return -EPERM;
  2067. if (p->match.type == V4L2_CHIP_MATCH_SUBDEV) {
  2068. if (vfd->v4l2_dev == NULL)
  2069. return -EINVAL;
  2070. v4l2_device_for_each_subdev(sd, vfd->v4l2_dev)
  2071. if (p->match.addr == idx++)
  2072. return v4l2_subdev_call(sd, core, g_register, p);
  2073. return -EINVAL;
  2074. }
  2075. if (ops->vidioc_g_register && p->match.type == V4L2_CHIP_MATCH_BRIDGE &&
  2076. (ops->vidioc_g_chip_info || p->match.addr == 0))
  2077. return ops->vidioc_g_register(file, fh, p);
  2078. return -EINVAL;
  2079. #else
  2080. return -ENOTTY;
  2081. #endif
  2082. }
  2083. static int v4l_dbg_s_register(const struct v4l2_ioctl_ops *ops,
  2084. struct file *file, void *fh, void *arg)
  2085. {
  2086. #ifdef CONFIG_VIDEO_ADV_DEBUG
  2087. const struct v4l2_dbg_register *p = arg;
  2088. struct video_device *vfd = video_devdata(file);
  2089. struct v4l2_subdev *sd;
  2090. int idx = 0;
  2091. if (!capable(CAP_SYS_ADMIN))
  2092. return -EPERM;
  2093. if (p->match.type == V4L2_CHIP_MATCH_SUBDEV) {
  2094. if (vfd->v4l2_dev == NULL)
  2095. return -EINVAL;
  2096. v4l2_device_for_each_subdev(sd, vfd->v4l2_dev)
  2097. if (p->match.addr == idx++)
  2098. return v4l2_subdev_call(sd, core, s_register, p);
  2099. return -EINVAL;
  2100. }
  2101. if (ops->vidioc_s_register && p->match.type == V4L2_CHIP_MATCH_BRIDGE &&
  2102. (ops->vidioc_g_chip_info || p->match.addr == 0))
  2103. return ops->vidioc_s_register(file, fh, p);
  2104. return -EINVAL;
  2105. #else
  2106. return -ENOTTY;
  2107. #endif
  2108. }
  2109. static int v4l_dbg_g_chip_info(const struct v4l2_ioctl_ops *ops,
  2110. struct file *file, void *fh, void *arg)
  2111. {
  2112. #ifdef CONFIG_VIDEO_ADV_DEBUG
  2113. struct video_device *vfd = video_devdata(file);
  2114. struct v4l2_dbg_chip_info *p = arg;
  2115. struct v4l2_subdev *sd;
  2116. int idx = 0;
  2117. switch (p->match.type) {
  2118. case V4L2_CHIP_MATCH_BRIDGE:
  2119. if (ops->vidioc_s_register)
  2120. p->flags |= V4L2_CHIP_FL_WRITABLE;
  2121. if (ops->vidioc_g_register)
  2122. p->flags |= V4L2_CHIP_FL_READABLE;
  2123. strscpy(p->name, vfd->v4l2_dev->name, sizeof(p->name));
  2124. if (ops->vidioc_g_chip_info)
  2125. return ops->vidioc_g_chip_info(file, fh, arg);
  2126. if (p->match.addr)
  2127. return -EINVAL;
  2128. return 0;
  2129. case V4L2_CHIP_MATCH_SUBDEV:
  2130. if (vfd->v4l2_dev == NULL)
  2131. break;
  2132. v4l2_device_for_each_subdev(sd, vfd->v4l2_dev) {
  2133. if (p->match.addr != idx++)
  2134. continue;
  2135. if (sd->ops->core && sd->ops->core->s_register)
  2136. p->flags |= V4L2_CHIP_FL_WRITABLE;
  2137. if (sd->ops->core && sd->ops->core->g_register)
  2138. p->flags |= V4L2_CHIP_FL_READABLE;
  2139. strscpy(p->name, sd->name, sizeof(p->name));
  2140. return 0;
  2141. }
  2142. break;
  2143. }
  2144. return -EINVAL;
  2145. #else
  2146. return -ENOTTY;
  2147. #endif
  2148. }
  2149. static int v4l_dqevent(const struct v4l2_ioctl_ops *ops,
  2150. struct file *file, void *fh, void *arg)
  2151. {
  2152. return v4l2_event_dequeue(fh, arg, file->f_flags & O_NONBLOCK);
  2153. }
  2154. static int v4l_subscribe_event(const struct v4l2_ioctl_ops *ops,
  2155. struct file *file, void *fh, void *arg)
  2156. {
  2157. return ops->vidioc_subscribe_event(fh, arg);
  2158. }
  2159. static int v4l_unsubscribe_event(const struct v4l2_ioctl_ops *ops,
  2160. struct file *file, void *fh, void *arg)
  2161. {
  2162. return ops->vidioc_unsubscribe_event(fh, arg);
  2163. }
  2164. static int v4l_g_sliced_vbi_cap(const struct v4l2_ioctl_ops *ops,
  2165. struct file *file, void *fh, void *arg)
  2166. {
  2167. struct v4l2_sliced_vbi_cap *p = arg;
  2168. int ret = check_fmt(file, p->type);
  2169. if (ret)
  2170. return ret;
  2171. /* Clear up to type, everything after type is zeroed already */
  2172. memset(p, 0, offsetof(struct v4l2_sliced_vbi_cap, type));
  2173. return ops->vidioc_g_sliced_vbi_cap(file, fh, p);
  2174. }
  2175. static int v4l_enum_freq_bands(const struct v4l2_ioctl_ops *ops,
  2176. struct file *file, void *fh, void *arg)
  2177. {
  2178. struct video_device *vfd = video_devdata(file);
  2179. struct v4l2_frequency_band *p = arg;
  2180. enum v4l2_tuner_type type;
  2181. int err;
  2182. if (vfd->vfl_type == VFL_TYPE_SDR) {
  2183. if (p->type != V4L2_TUNER_SDR && p->type != V4L2_TUNER_RF)
  2184. return -EINVAL;
  2185. type = p->type;
  2186. } else {
  2187. type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
  2188. V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
  2189. if (type != p->type)
  2190. return -EINVAL;
  2191. }
  2192. if (ops->vidioc_enum_freq_bands) {
  2193. err = ops->vidioc_enum_freq_bands(file, fh, p);
  2194. if (err != -ENOTTY)
  2195. return err;
  2196. }
  2197. if (is_valid_ioctl(vfd, VIDIOC_G_TUNER)) {
  2198. struct v4l2_tuner t = {
  2199. .index = p->tuner,
  2200. .type = type,
  2201. };
  2202. if (p->index)
  2203. return -EINVAL;
  2204. err = ops->vidioc_g_tuner(file, fh, &t);
  2205. if (err)
  2206. return err;
  2207. p->capability = t.capability | V4L2_TUNER_CAP_FREQ_BANDS;
  2208. p->rangelow = t.rangelow;
  2209. p->rangehigh = t.rangehigh;
  2210. p->modulation = (type == V4L2_TUNER_RADIO) ?
  2211. V4L2_BAND_MODULATION_FM : V4L2_BAND_MODULATION_VSB;
  2212. return 0;
  2213. }
  2214. if (is_valid_ioctl(vfd, VIDIOC_G_MODULATOR)) {
  2215. struct v4l2_modulator m = {
  2216. .index = p->tuner,
  2217. };
  2218. if (type != V4L2_TUNER_RADIO)
  2219. return -EINVAL;
  2220. if (p->index)
  2221. return -EINVAL;
  2222. err = ops->vidioc_g_modulator(file, fh, &m);
  2223. if (err)
  2224. return err;
  2225. p->capability = m.capability | V4L2_TUNER_CAP_FREQ_BANDS;
  2226. p->rangelow = m.rangelow;
  2227. p->rangehigh = m.rangehigh;
  2228. p->modulation = (type == V4L2_TUNER_RADIO) ?
  2229. V4L2_BAND_MODULATION_FM : V4L2_BAND_MODULATION_VSB;
  2230. return 0;
  2231. }
  2232. return -ENOTTY;
  2233. }
  2234. struct v4l2_ioctl_info {
  2235. unsigned int ioctl;
  2236. u32 flags;
  2237. const char * const name;
  2238. int (*func)(const struct v4l2_ioctl_ops *ops, struct file *file,
  2239. void *fh, void *p);
  2240. void (*debug)(const void *arg, bool write_only);
  2241. };
  2242. /* This control needs a priority check */
  2243. #define INFO_FL_PRIO (1 << 0)
  2244. /* This control can be valid if the filehandle passes a control handler. */
  2245. #define INFO_FL_CTRL (1 << 1)
  2246. /* Queuing ioctl */
  2247. #define INFO_FL_QUEUE (1 << 2)
  2248. /* Always copy back result, even on error */
  2249. #define INFO_FL_ALWAYS_COPY (1 << 3)
  2250. /* Zero struct from after the field to the end */
  2251. #define INFO_FL_CLEAR(v4l2_struct, field) \
  2252. ((offsetof(struct v4l2_struct, field) + \
  2253. sizeof(((struct v4l2_struct *)0)->field)) << 16)
  2254. #define INFO_FL_CLEAR_MASK (_IOC_SIZEMASK << 16)
  2255. #define DEFINE_V4L_STUB_FUNC(_vidioc) \
  2256. static int v4l_stub_ ## _vidioc( \
  2257. const struct v4l2_ioctl_ops *ops, \
  2258. struct file *file, void *fh, void *p) \
  2259. { \
  2260. return ops->vidioc_ ## _vidioc(file, fh, p); \
  2261. }
  2262. #define IOCTL_INFO(_ioctl, _func, _debug, _flags) \
  2263. [_IOC_NR(_ioctl)] = { \
  2264. .ioctl = _ioctl, \
  2265. .flags = _flags, \
  2266. .name = #_ioctl, \
  2267. .func = _func, \
  2268. .debug = _debug, \
  2269. }
  2270. DEFINE_V4L_STUB_FUNC(g_fbuf)
  2271. DEFINE_V4L_STUB_FUNC(s_fbuf)
  2272. DEFINE_V4L_STUB_FUNC(expbuf)
  2273. DEFINE_V4L_STUB_FUNC(g_std)
  2274. DEFINE_V4L_STUB_FUNC(g_audio)
  2275. DEFINE_V4L_STUB_FUNC(s_audio)
  2276. DEFINE_V4L_STUB_FUNC(g_input)
  2277. DEFINE_V4L_STUB_FUNC(g_edid)
  2278. DEFINE_V4L_STUB_FUNC(s_edid)
  2279. DEFINE_V4L_STUB_FUNC(g_output)
  2280. DEFINE_V4L_STUB_FUNC(g_audout)
  2281. DEFINE_V4L_STUB_FUNC(s_audout)
  2282. DEFINE_V4L_STUB_FUNC(g_jpegcomp)
  2283. DEFINE_V4L_STUB_FUNC(s_jpegcomp)
  2284. DEFINE_V4L_STUB_FUNC(enumaudio)
  2285. DEFINE_V4L_STUB_FUNC(enumaudout)
  2286. DEFINE_V4L_STUB_FUNC(enum_framesizes)
  2287. DEFINE_V4L_STUB_FUNC(enum_frameintervals)
  2288. DEFINE_V4L_STUB_FUNC(g_enc_index)
  2289. DEFINE_V4L_STUB_FUNC(encoder_cmd)
  2290. DEFINE_V4L_STUB_FUNC(try_encoder_cmd)
  2291. DEFINE_V4L_STUB_FUNC(decoder_cmd)
  2292. DEFINE_V4L_STUB_FUNC(try_decoder_cmd)
  2293. DEFINE_V4L_STUB_FUNC(s_dv_timings)
  2294. DEFINE_V4L_STUB_FUNC(g_dv_timings)
  2295. DEFINE_V4L_STUB_FUNC(enum_dv_timings)
  2296. DEFINE_V4L_STUB_FUNC(query_dv_timings)
  2297. DEFINE_V4L_STUB_FUNC(dv_timings_cap)
  2298. static struct v4l2_ioctl_info v4l2_ioctls[] = {
  2299. IOCTL_INFO(VIDIOC_QUERYCAP, v4l_querycap, v4l_print_querycap, 0),
  2300. IOCTL_INFO(VIDIOC_ENUM_FMT, v4l_enum_fmt, v4l_print_fmtdesc, INFO_FL_CLEAR(v4l2_fmtdesc, type)),
  2301. IOCTL_INFO(VIDIOC_G_FMT, v4l_g_fmt, v4l_print_format, 0),
  2302. IOCTL_INFO(VIDIOC_S_FMT, v4l_s_fmt, v4l_print_format, INFO_FL_PRIO),
  2303. IOCTL_INFO(VIDIOC_REQBUFS, v4l_reqbufs, v4l_print_requestbuffers, INFO_FL_PRIO | INFO_FL_QUEUE),
  2304. IOCTL_INFO(VIDIOC_QUERYBUF, v4l_querybuf, v4l_print_buffer, INFO_FL_QUEUE | INFO_FL_CLEAR(v4l2_buffer, length)),
  2305. IOCTL_INFO(VIDIOC_G_FBUF, v4l_stub_g_fbuf, v4l_print_framebuffer, 0),
  2306. IOCTL_INFO(VIDIOC_S_FBUF, v4l_stub_s_fbuf, v4l_print_framebuffer, INFO_FL_PRIO),
  2307. IOCTL_INFO(VIDIOC_OVERLAY, v4l_overlay, v4l_print_u32, INFO_FL_PRIO),
  2308. IOCTL_INFO(VIDIOC_QBUF, v4l_qbuf, v4l_print_buffer, INFO_FL_QUEUE),
  2309. IOCTL_INFO(VIDIOC_EXPBUF, v4l_stub_expbuf, v4l_print_exportbuffer, INFO_FL_QUEUE | INFO_FL_CLEAR(v4l2_exportbuffer, flags)),
  2310. IOCTL_INFO(VIDIOC_DQBUF, v4l_dqbuf, v4l_print_buffer, INFO_FL_QUEUE),
  2311. IOCTL_INFO(VIDIOC_STREAMON, v4l_streamon, v4l_print_buftype, INFO_FL_PRIO | INFO_FL_QUEUE),
  2312. IOCTL_INFO(VIDIOC_STREAMOFF, v4l_streamoff, v4l_print_buftype, INFO_FL_PRIO | INFO_FL_QUEUE),
  2313. IOCTL_INFO(VIDIOC_G_PARM, v4l_g_parm, v4l_print_streamparm, INFO_FL_CLEAR(v4l2_streamparm, type)),
  2314. IOCTL_INFO(VIDIOC_S_PARM, v4l_s_parm, v4l_print_streamparm, INFO_FL_PRIO),
  2315. IOCTL_INFO(VIDIOC_G_STD, v4l_stub_g_std, v4l_print_std, 0),
  2316. IOCTL_INFO(VIDIOC_S_STD, v4l_s_std, v4l_print_std, INFO_FL_PRIO),
  2317. IOCTL_INFO(VIDIOC_ENUMSTD, v4l_enumstd, v4l_print_standard, INFO_FL_CLEAR(v4l2_standard, index)),
  2318. IOCTL_INFO(VIDIOC_ENUMINPUT, v4l_enuminput, v4l_print_enuminput, INFO_FL_CLEAR(v4l2_input, index)),
  2319. IOCTL_INFO(VIDIOC_G_CTRL, v4l_g_ctrl, v4l_print_control, INFO_FL_CTRL | INFO_FL_CLEAR(v4l2_control, id)),
  2320. IOCTL_INFO(VIDIOC_S_CTRL, v4l_s_ctrl, v4l_print_control, INFO_FL_PRIO | INFO_FL_CTRL),
  2321. IOCTL_INFO(VIDIOC_G_TUNER, v4l_g_tuner, v4l_print_tuner, INFO_FL_CLEAR(v4l2_tuner, index)),
  2322. IOCTL_INFO(VIDIOC_S_TUNER, v4l_s_tuner, v4l_print_tuner, INFO_FL_PRIO),
  2323. IOCTL_INFO(VIDIOC_G_AUDIO, v4l_stub_g_audio, v4l_print_audio, 0),
  2324. IOCTL_INFO(VIDIOC_S_AUDIO, v4l_stub_s_audio, v4l_print_audio, INFO_FL_PRIO),
  2325. IOCTL_INFO(VIDIOC_QUERYCTRL, v4l_queryctrl, v4l_print_queryctrl, INFO_FL_CTRL | INFO_FL_CLEAR(v4l2_queryctrl, id)),
  2326. IOCTL_INFO(VIDIOC_QUERYMENU, v4l_querymenu, v4l_print_querymenu, INFO_FL_CTRL | INFO_FL_CLEAR(v4l2_querymenu, index)),
  2327. IOCTL_INFO(VIDIOC_G_INPUT, v4l_stub_g_input, v4l_print_u32, 0),
  2328. IOCTL_INFO(VIDIOC_S_INPUT, v4l_s_input, v4l_print_u32, INFO_FL_PRIO),
  2329. IOCTL_INFO(VIDIOC_G_EDID, v4l_stub_g_edid, v4l_print_edid, INFO_FL_ALWAYS_COPY),
  2330. IOCTL_INFO(VIDIOC_S_EDID, v4l_stub_s_edid, v4l_print_edid, INFO_FL_PRIO | INFO_FL_ALWAYS_COPY),
  2331. IOCTL_INFO(VIDIOC_G_OUTPUT, v4l_stub_g_output, v4l_print_u32, 0),
  2332. IOCTL_INFO(VIDIOC_S_OUTPUT, v4l_s_output, v4l_print_u32, INFO_FL_PRIO),
  2333. IOCTL_INFO(VIDIOC_ENUMOUTPUT, v4l_enumoutput, v4l_print_enumoutput, INFO_FL_CLEAR(v4l2_output, index)),
  2334. IOCTL_INFO(VIDIOC_G_AUDOUT, v4l_stub_g_audout, v4l_print_audioout, 0),
  2335. IOCTL_INFO(VIDIOC_S_AUDOUT, v4l_stub_s_audout, v4l_print_audioout, INFO_FL_PRIO),
  2336. IOCTL_INFO(VIDIOC_G_MODULATOR, v4l_g_modulator, v4l_print_modulator, INFO_FL_CLEAR(v4l2_modulator, index)),
  2337. IOCTL_INFO(VIDIOC_S_MODULATOR, v4l_s_modulator, v4l_print_modulator, INFO_FL_PRIO),
  2338. IOCTL_INFO(VIDIOC_G_FREQUENCY, v4l_g_frequency, v4l_print_frequency, INFO_FL_CLEAR(v4l2_frequency, tuner)),
  2339. IOCTL_INFO(VIDIOC_S_FREQUENCY, v4l_s_frequency, v4l_print_frequency, INFO_FL_PRIO),
  2340. IOCTL_INFO(VIDIOC_CROPCAP, v4l_cropcap, v4l_print_cropcap, INFO_FL_CLEAR(v4l2_cropcap, type)),
  2341. IOCTL_INFO(VIDIOC_G_CROP, v4l_g_crop, v4l_print_crop, INFO_FL_CLEAR(v4l2_crop, type)),
  2342. IOCTL_INFO(VIDIOC_S_CROP, v4l_s_crop, v4l_print_crop, INFO_FL_PRIO),
  2343. IOCTL_INFO(VIDIOC_G_SELECTION, v4l_g_selection, v4l_print_selection, INFO_FL_CLEAR(v4l2_selection, r)),
  2344. IOCTL_INFO(VIDIOC_S_SELECTION, v4l_s_selection, v4l_print_selection, INFO_FL_PRIO | INFO_FL_CLEAR(v4l2_selection, r)),
  2345. IOCTL_INFO(VIDIOC_G_JPEGCOMP, v4l_stub_g_jpegcomp, v4l_print_jpegcompression, 0),
  2346. IOCTL_INFO(VIDIOC_S_JPEGCOMP, v4l_stub_s_jpegcomp, v4l_print_jpegcompression, INFO_FL_PRIO),
  2347. IOCTL_INFO(VIDIOC_QUERYSTD, v4l_querystd, v4l_print_std, 0),
  2348. IOCTL_INFO(VIDIOC_TRY_FMT, v4l_try_fmt, v4l_print_format, 0),
  2349. IOCTL_INFO(VIDIOC_ENUMAUDIO, v4l_stub_enumaudio, v4l_print_audio, INFO_FL_CLEAR(v4l2_audio, index)),
  2350. IOCTL_INFO(VIDIOC_ENUMAUDOUT, v4l_stub_enumaudout, v4l_print_audioout, INFO_FL_CLEAR(v4l2_audioout, index)),
  2351. IOCTL_INFO(VIDIOC_G_PRIORITY, v4l_g_priority, v4l_print_u32, 0),
  2352. IOCTL_INFO(VIDIOC_S_PRIORITY, v4l_s_priority, v4l_print_u32, INFO_FL_PRIO),
  2353. IOCTL_INFO(VIDIOC_G_SLICED_VBI_CAP, v4l_g_sliced_vbi_cap, v4l_print_sliced_vbi_cap, INFO_FL_CLEAR(v4l2_sliced_vbi_cap, type)),
  2354. IOCTL_INFO(VIDIOC_LOG_STATUS, v4l_log_status, v4l_print_newline, 0),
  2355. IOCTL_INFO(VIDIOC_G_EXT_CTRLS, v4l_g_ext_ctrls, v4l_print_ext_controls, INFO_FL_CTRL),
  2356. IOCTL_INFO(VIDIOC_S_EXT_CTRLS, v4l_s_ext_ctrls, v4l_print_ext_controls, INFO_FL_PRIO | INFO_FL_CTRL),
  2357. IOCTL_INFO(VIDIOC_TRY_EXT_CTRLS, v4l_try_ext_ctrls, v4l_print_ext_controls, INFO_FL_CTRL),
  2358. IOCTL_INFO(VIDIOC_ENUM_FRAMESIZES, v4l_stub_enum_framesizes, v4l_print_frmsizeenum, INFO_FL_CLEAR(v4l2_frmsizeenum, pixel_format)),
  2359. IOCTL_INFO(VIDIOC_ENUM_FRAMEINTERVALS, v4l_stub_enum_frameintervals, v4l_print_frmivalenum, INFO_FL_CLEAR(v4l2_frmivalenum, height)),
  2360. IOCTL_INFO(VIDIOC_G_ENC_INDEX, v4l_stub_g_enc_index, v4l_print_enc_idx, 0),
  2361. IOCTL_INFO(VIDIOC_ENCODER_CMD, v4l_stub_encoder_cmd, v4l_print_encoder_cmd, INFO_FL_PRIO | INFO_FL_CLEAR(v4l2_encoder_cmd, flags)),
  2362. IOCTL_INFO(VIDIOC_TRY_ENCODER_CMD, v4l_stub_try_encoder_cmd, v4l_print_encoder_cmd, INFO_FL_CLEAR(v4l2_encoder_cmd, flags)),
  2363. IOCTL_INFO(VIDIOC_DECODER_CMD, v4l_stub_decoder_cmd, v4l_print_decoder_cmd, INFO_FL_PRIO),
  2364. IOCTL_INFO(VIDIOC_TRY_DECODER_CMD, v4l_stub_try_decoder_cmd, v4l_print_decoder_cmd, 0),
  2365. IOCTL_INFO(VIDIOC_DBG_S_REGISTER, v4l_dbg_s_register, v4l_print_dbg_register, 0),
  2366. IOCTL_INFO(VIDIOC_DBG_G_REGISTER, v4l_dbg_g_register, v4l_print_dbg_register, 0),
  2367. IOCTL_INFO(VIDIOC_S_HW_FREQ_SEEK, v4l_s_hw_freq_seek, v4l_print_hw_freq_seek, INFO_FL_PRIO),
  2368. IOCTL_INFO(VIDIOC_S_DV_TIMINGS, v4l_stub_s_dv_timings, v4l_print_dv_timings, INFO_FL_PRIO | INFO_FL_CLEAR(v4l2_dv_timings, bt.flags)),
  2369. IOCTL_INFO(VIDIOC_G_DV_TIMINGS, v4l_stub_g_dv_timings, v4l_print_dv_timings, 0),
  2370. IOCTL_INFO(VIDIOC_DQEVENT, v4l_dqevent, v4l_print_event, 0),
  2371. IOCTL_INFO(VIDIOC_SUBSCRIBE_EVENT, v4l_subscribe_event, v4l_print_event_subscription, 0),
  2372. IOCTL_INFO(VIDIOC_UNSUBSCRIBE_EVENT, v4l_unsubscribe_event, v4l_print_event_subscription, 0),
  2373. IOCTL_INFO(VIDIOC_CREATE_BUFS, v4l_create_bufs, v4l_print_create_buffers, INFO_FL_PRIO | INFO_FL_QUEUE),
  2374. IOCTL_INFO(VIDIOC_PREPARE_BUF, v4l_prepare_buf, v4l_print_buffer, INFO_FL_QUEUE),
  2375. IOCTL_INFO(VIDIOC_ENUM_DV_TIMINGS, v4l_stub_enum_dv_timings, v4l_print_enum_dv_timings, INFO_FL_CLEAR(v4l2_enum_dv_timings, pad)),
  2376. IOCTL_INFO(VIDIOC_QUERY_DV_TIMINGS, v4l_stub_query_dv_timings, v4l_print_dv_timings, INFO_FL_ALWAYS_COPY),
  2377. IOCTL_INFO(VIDIOC_DV_TIMINGS_CAP, v4l_stub_dv_timings_cap, v4l_print_dv_timings_cap, INFO_FL_CLEAR(v4l2_dv_timings_cap, pad)),
  2378. IOCTL_INFO(VIDIOC_ENUM_FREQ_BANDS, v4l_enum_freq_bands, v4l_print_freq_band, 0),
  2379. IOCTL_INFO(VIDIOC_DBG_G_CHIP_INFO, v4l_dbg_g_chip_info, v4l_print_dbg_chip_info, INFO_FL_CLEAR(v4l2_dbg_chip_info, match)),
  2380. IOCTL_INFO(VIDIOC_QUERY_EXT_CTRL, v4l_query_ext_ctrl, v4l_print_query_ext_ctrl, INFO_FL_CTRL | INFO_FL_CLEAR(v4l2_query_ext_ctrl, id)),
  2381. };
  2382. #define V4L2_IOCTLS ARRAY_SIZE(v4l2_ioctls)
  2383. static bool v4l2_is_known_ioctl(unsigned int cmd)
  2384. {
  2385. if (_IOC_NR(cmd) >= V4L2_IOCTLS)
  2386. return false;
  2387. return v4l2_ioctls[_IOC_NR(cmd)].ioctl == cmd;
  2388. }
  2389. #if IS_ENABLED(CONFIG_V4L2_MEM2MEM_DEV)
  2390. static bool v4l2_ioctl_m2m_queue_is_output(unsigned int cmd, void *arg)
  2391. {
  2392. switch (cmd) {
  2393. case VIDIOC_CREATE_BUFS: {
  2394. struct v4l2_create_buffers *cbufs = arg;
  2395. return V4L2_TYPE_IS_OUTPUT(cbufs->format.type);
  2396. }
  2397. case VIDIOC_REQBUFS: {
  2398. struct v4l2_requestbuffers *rbufs = arg;
  2399. return V4L2_TYPE_IS_OUTPUT(rbufs->type);
  2400. }
  2401. case VIDIOC_QBUF:
  2402. case VIDIOC_DQBUF:
  2403. case VIDIOC_QUERYBUF:
  2404. case VIDIOC_PREPARE_BUF: {
  2405. struct v4l2_buffer *buf = arg;
  2406. return V4L2_TYPE_IS_OUTPUT(buf->type);
  2407. }
  2408. case VIDIOC_EXPBUF: {
  2409. struct v4l2_exportbuffer *expbuf = arg;
  2410. return V4L2_TYPE_IS_OUTPUT(expbuf->type);
  2411. }
  2412. case VIDIOC_STREAMON:
  2413. case VIDIOC_STREAMOFF: {
  2414. int *type = arg;
  2415. return V4L2_TYPE_IS_OUTPUT(*type);
  2416. }
  2417. default:
  2418. return false;
  2419. }
  2420. }
  2421. #endif
  2422. static struct mutex *v4l2_ioctl_get_lock(struct video_device *vdev,
  2423. struct v4l2_fh *vfh, unsigned int cmd,
  2424. void *arg)
  2425. {
  2426. if (_IOC_NR(cmd) >= V4L2_IOCTLS)
  2427. return vdev->lock;
  2428. #if IS_ENABLED(CONFIG_V4L2_MEM2MEM_DEV)
  2429. if (vfh && vfh->m2m_ctx &&
  2430. (v4l2_ioctls[_IOC_NR(cmd)].flags & INFO_FL_QUEUE)) {
  2431. bool is_output = v4l2_ioctl_m2m_queue_is_output(cmd, arg);
  2432. struct v4l2_m2m_queue_ctx *ctx = is_output ?
  2433. &vfh->m2m_ctx->out_q_ctx : &vfh->m2m_ctx->cap_q_ctx;
  2434. if (ctx->q.lock)
  2435. return ctx->q.lock;
  2436. }
  2437. #endif
  2438. if (vdev->queue && vdev->queue->lock &&
  2439. (v4l2_ioctls[_IOC_NR(cmd)].flags & INFO_FL_QUEUE))
  2440. return vdev->queue->lock;
  2441. return vdev->lock;
  2442. }
  2443. /* Common ioctl debug function. This function can be used by
  2444. external ioctl messages as well as internal V4L ioctl */
  2445. void v4l_printk_ioctl(const char *prefix, unsigned int cmd)
  2446. {
  2447. const char *dir, *type;
  2448. if (prefix)
  2449. printk(KERN_DEBUG "%s: ", prefix);
  2450. switch (_IOC_TYPE(cmd)) {
  2451. case 'd':
  2452. type = "v4l2_int";
  2453. break;
  2454. case 'V':
  2455. if (_IOC_NR(cmd) >= V4L2_IOCTLS) {
  2456. type = "v4l2";
  2457. break;
  2458. }
  2459. pr_cont("%s", v4l2_ioctls[_IOC_NR(cmd)].name);
  2460. return;
  2461. default:
  2462. type = "unknown";
  2463. break;
  2464. }
  2465. switch (_IOC_DIR(cmd)) {
  2466. case _IOC_NONE: dir = "--"; break;
  2467. case _IOC_READ: dir = "r-"; break;
  2468. case _IOC_WRITE: dir = "-w"; break;
  2469. case _IOC_READ | _IOC_WRITE: dir = "rw"; break;
  2470. default: dir = "*ERR*"; break;
  2471. }
  2472. pr_cont("%s ioctl '%c', dir=%s, #%d (0x%08x)",
  2473. type, _IOC_TYPE(cmd), dir, _IOC_NR(cmd), cmd);
  2474. }
  2475. EXPORT_SYMBOL(v4l_printk_ioctl);
  2476. static long __video_do_ioctl(struct file *file,
  2477. unsigned int cmd, void *arg)
  2478. {
  2479. struct video_device *vfd = video_devdata(file);
  2480. struct mutex *req_queue_lock = NULL;
  2481. struct mutex *lock; /* ioctl serialization mutex */
  2482. const struct v4l2_ioctl_ops *ops = vfd->ioctl_ops;
  2483. bool write_only = false;
  2484. struct v4l2_ioctl_info default_info;
  2485. const struct v4l2_ioctl_info *info;
  2486. void *fh = file->private_data;
  2487. struct v4l2_fh *vfh = NULL;
  2488. int dev_debug = vfd->dev_debug;
  2489. long ret = -ENOTTY;
  2490. if (ops == NULL) {
  2491. pr_warn("%s: has no ioctl_ops.\n",
  2492. video_device_node_name(vfd));
  2493. return ret;
  2494. }
  2495. if (test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags))
  2496. vfh = file->private_data;
  2497. /*
  2498. * We need to serialize streamon/off with queueing new requests.
  2499. * These ioctls may trigger the cancellation of a streaming
  2500. * operation, and that should not be mixed with queueing a new
  2501. * request at the same time.
  2502. */
  2503. if (v4l2_device_supports_requests(vfd->v4l2_dev) &&
  2504. (cmd == VIDIOC_STREAMON || cmd == VIDIOC_STREAMOFF)) {
  2505. req_queue_lock = &vfd->v4l2_dev->mdev->req_queue_mutex;
  2506. if (mutex_lock_interruptible(req_queue_lock))
  2507. return -ERESTARTSYS;
  2508. }
  2509. lock = v4l2_ioctl_get_lock(vfd, vfh, cmd, arg);
  2510. if (lock && mutex_lock_interruptible(lock)) {
  2511. if (req_queue_lock)
  2512. mutex_unlock(req_queue_lock);
  2513. return -ERESTARTSYS;
  2514. }
  2515. if (!video_is_registered(vfd)) {
  2516. ret = -ENODEV;
  2517. goto unlock;
  2518. }
  2519. if (v4l2_is_known_ioctl(cmd)) {
  2520. info = &v4l2_ioctls[_IOC_NR(cmd)];
  2521. if (!test_bit(_IOC_NR(cmd), vfd->valid_ioctls) &&
  2522. !((info->flags & INFO_FL_CTRL) && vfh && vfh->ctrl_handler))
  2523. goto done;
  2524. if (vfh && (info->flags & INFO_FL_PRIO)) {
  2525. ret = v4l2_prio_check(vfd->prio, vfh->prio);
  2526. if (ret)
  2527. goto done;
  2528. }
  2529. } else {
  2530. default_info.ioctl = cmd;
  2531. default_info.flags = 0;
  2532. default_info.debug = v4l_print_default;
  2533. info = &default_info;
  2534. }
  2535. write_only = _IOC_DIR(cmd) == _IOC_WRITE;
  2536. if (info != &default_info) {
  2537. ret = info->func(ops, file, fh, arg);
  2538. } else if (!ops->vidioc_default) {
  2539. ret = -ENOTTY;
  2540. } else {
  2541. ret = ops->vidioc_default(file, fh,
  2542. vfh ? v4l2_prio_check(vfd->prio, vfh->prio) >= 0 : 0,
  2543. cmd, arg);
  2544. }
  2545. done:
  2546. if (dev_debug & (V4L2_DEV_DEBUG_IOCTL | V4L2_DEV_DEBUG_IOCTL_ARG)) {
  2547. if (!(dev_debug & V4L2_DEV_DEBUG_STREAMING) &&
  2548. (cmd == VIDIOC_QBUF || cmd == VIDIOC_DQBUF))
  2549. goto unlock;
  2550. v4l_printk_ioctl(video_device_node_name(vfd), cmd);
  2551. if (ret < 0)
  2552. pr_cont(": error %ld", ret);
  2553. if (!(dev_debug & V4L2_DEV_DEBUG_IOCTL_ARG))
  2554. pr_cont("\n");
  2555. else if (_IOC_DIR(cmd) == _IOC_NONE)
  2556. info->debug(arg, write_only);
  2557. else {
  2558. pr_cont(": ");
  2559. info->debug(arg, write_only);
  2560. }
  2561. }
  2562. unlock:
  2563. if (lock)
  2564. mutex_unlock(lock);
  2565. if (req_queue_lock)
  2566. mutex_unlock(req_queue_lock);
  2567. return ret;
  2568. }
  2569. static int check_array_args(unsigned int cmd, void *parg, size_t *array_size,
  2570. void __user **user_ptr, void ***kernel_ptr)
  2571. {
  2572. int ret = 0;
  2573. switch (cmd) {
  2574. case VIDIOC_PREPARE_BUF:
  2575. case VIDIOC_QUERYBUF:
  2576. case VIDIOC_QBUF:
  2577. case VIDIOC_DQBUF: {
  2578. struct v4l2_buffer *buf = parg;
  2579. if (V4L2_TYPE_IS_MULTIPLANAR(buf->type) && buf->length > 0) {
  2580. if (buf->length > VIDEO_MAX_PLANES) {
  2581. ret = -EINVAL;
  2582. break;
  2583. }
  2584. *user_ptr = (void __user *)buf->m.planes;
  2585. *kernel_ptr = (void **)&buf->m.planes;
  2586. *array_size = sizeof(struct v4l2_plane) * buf->length;
  2587. ret = 1;
  2588. }
  2589. break;
  2590. }
  2591. case VIDIOC_G_EDID:
  2592. case VIDIOC_S_EDID: {
  2593. struct v4l2_edid *edid = parg;
  2594. if (edid->blocks) {
  2595. if (edid->blocks > 256) {
  2596. ret = -EINVAL;
  2597. break;
  2598. }
  2599. *user_ptr = (void __user *)edid->edid;
  2600. *kernel_ptr = (void **)&edid->edid;
  2601. *array_size = edid->blocks * 128;
  2602. ret = 1;
  2603. }
  2604. break;
  2605. }
  2606. case VIDIOC_S_EXT_CTRLS:
  2607. case VIDIOC_G_EXT_CTRLS:
  2608. case VIDIOC_TRY_EXT_CTRLS: {
  2609. struct v4l2_ext_controls *ctrls = parg;
  2610. if (ctrls->count != 0) {
  2611. if (ctrls->count > V4L2_CID_MAX_CTRLS) {
  2612. ret = -EINVAL;
  2613. break;
  2614. }
  2615. *user_ptr = (void __user *)ctrls->controls;
  2616. *kernel_ptr = (void **)&ctrls->controls;
  2617. *array_size = sizeof(struct v4l2_ext_control)
  2618. * ctrls->count;
  2619. ret = 1;
  2620. }
  2621. break;
  2622. }
  2623. }
  2624. return ret;
  2625. }
  2626. long
  2627. video_usercopy(struct file *file, unsigned int cmd, unsigned long arg,
  2628. v4l2_kioctl func)
  2629. {
  2630. char sbuf[128];
  2631. void *mbuf = NULL;
  2632. void *parg = (void *)arg;
  2633. long err = -EINVAL;
  2634. bool has_array_args;
  2635. bool always_copy = false;
  2636. size_t array_size = 0;
  2637. void __user *user_ptr = NULL;
  2638. void **kernel_ptr = NULL;
  2639. const size_t ioc_size = _IOC_SIZE(cmd);
  2640. /* Copy arguments into temp kernel buffer */
  2641. if (_IOC_DIR(cmd) != _IOC_NONE) {
  2642. if (ioc_size <= sizeof(sbuf)) {
  2643. parg = sbuf;
  2644. } else {
  2645. /* too big to allocate from stack */
  2646. mbuf = kvmalloc(ioc_size, GFP_KERNEL);
  2647. if (NULL == mbuf)
  2648. return -ENOMEM;
  2649. parg = mbuf;
  2650. }
  2651. err = -EFAULT;
  2652. if (_IOC_DIR(cmd) & _IOC_WRITE) {
  2653. unsigned int n = ioc_size;
  2654. /*
  2655. * In some cases, only a few fields are used as input,
  2656. * i.e. when the app sets "index" and then the driver
  2657. * fills in the rest of the structure for the thing
  2658. * with that index. We only need to copy up the first
  2659. * non-input field.
  2660. */
  2661. if (v4l2_is_known_ioctl(cmd)) {
  2662. u32 flags = v4l2_ioctls[_IOC_NR(cmd)].flags;
  2663. if (flags & INFO_FL_CLEAR_MASK)
  2664. n = (flags & INFO_FL_CLEAR_MASK) >> 16;
  2665. always_copy = flags & INFO_FL_ALWAYS_COPY;
  2666. }
  2667. if (copy_from_user(parg, (void __user *)arg, n))
  2668. goto out;
  2669. /* zero out anything we don't copy from userspace */
  2670. if (n < ioc_size)
  2671. memset((u8 *)parg + n, 0, ioc_size - n);
  2672. } else {
  2673. /* read-only ioctl */
  2674. memset(parg, 0, ioc_size);
  2675. }
  2676. }
  2677. err = check_array_args(cmd, parg, &array_size, &user_ptr, &kernel_ptr);
  2678. if (err < 0)
  2679. goto out;
  2680. has_array_args = err;
  2681. if (has_array_args) {
  2682. /*
  2683. * When adding new types of array args, make sure that the
  2684. * parent argument to ioctl (which contains the pointer to the
  2685. * array) fits into sbuf (so that mbuf will still remain
  2686. * unused up to here).
  2687. */
  2688. mbuf = kvmalloc(array_size, GFP_KERNEL);
  2689. err = -ENOMEM;
  2690. if (NULL == mbuf)
  2691. goto out_array_args;
  2692. err = -EFAULT;
  2693. if (copy_from_user(mbuf, user_ptr, array_size))
  2694. goto out_array_args;
  2695. *kernel_ptr = mbuf;
  2696. }
  2697. /* Handles IOCTL */
  2698. err = func(file, cmd, parg);
  2699. if (err == -ENOTTY || err == -ENOIOCTLCMD) {
  2700. err = -ENOTTY;
  2701. goto out;
  2702. }
  2703. if (err == 0) {
  2704. if (cmd == VIDIOC_DQBUF)
  2705. trace_v4l2_dqbuf(video_devdata(file)->minor, parg);
  2706. else if (cmd == VIDIOC_QBUF)
  2707. trace_v4l2_qbuf(video_devdata(file)->minor, parg);
  2708. }
  2709. if (has_array_args) {
  2710. *kernel_ptr = (void __force *)user_ptr;
  2711. if (copy_to_user(user_ptr, mbuf, array_size))
  2712. err = -EFAULT;
  2713. goto out_array_args;
  2714. }
  2715. /*
  2716. * Some ioctls can return an error, but still have valid
  2717. * results that must be returned.
  2718. */
  2719. if (err < 0 && !always_copy)
  2720. goto out;
  2721. out_array_args:
  2722. /* Copy results into user buffer */
  2723. switch (_IOC_DIR(cmd)) {
  2724. case _IOC_READ:
  2725. case (_IOC_WRITE | _IOC_READ):
  2726. if (copy_to_user((void __user *)arg, parg, ioc_size))
  2727. err = -EFAULT;
  2728. break;
  2729. }
  2730. out:
  2731. kvfree(mbuf);
  2732. return err;
  2733. }
  2734. long video_ioctl2(struct file *file,
  2735. unsigned int cmd, unsigned long arg)
  2736. {
  2737. return video_usercopy(file, cmd, arg, __video_do_ioctl);
  2738. }
  2739. EXPORT_SYMBOL(video_ioctl2);