sonixj.c 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114
  1. /*
  2. * Sonix sn9c102p sn9c105 sn9c120 (jpeg) subdriver
  3. *
  4. * Copyright (C) 2009-2011 Jean-François Moine <http://moinejf.free.fr>
  5. * Copyright (C) 2005 Michel Xhaard mxhaard@magic.fr
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  22. #define MODULE_NAME "sonixj"
  23. #include <linux/input.h>
  24. #include "gspca.h"
  25. #include "jpeg.h"
  26. MODULE_AUTHOR("Jean-François Moine <http://moinejf.free.fr>");
  27. MODULE_DESCRIPTION("GSPCA/SONIX JPEG USB Camera Driver");
  28. MODULE_LICENSE("GPL");
  29. /* controls */
  30. enum e_ctrl {
  31. BRIGHTNESS,
  32. CONTRAST,
  33. COLORS,
  34. BLUE,
  35. RED,
  36. GAMMA,
  37. AUTOGAIN,
  38. HFLIP,
  39. VFLIP,
  40. SHARPNESS,
  41. ILLUM,
  42. FREQ,
  43. NCTRLS /* number of controls */
  44. };
  45. /* specific webcam descriptor */
  46. struct sd {
  47. struct gspca_dev gspca_dev; /* !! must be the first item */
  48. struct gspca_ctrl ctrls[NCTRLS];
  49. atomic_t avg_lum;
  50. u32 exposure;
  51. struct work_struct work;
  52. struct workqueue_struct *work_thread;
  53. u32 pktsz; /* (used by pkt_scan) */
  54. u16 npkt;
  55. s8 nchg;
  56. s8 short_mark;
  57. u8 quality; /* image quality */
  58. #define QUALITY_MIN 25
  59. #define QUALITY_MAX 90
  60. #define QUALITY_DEF 70
  61. u8 reg01;
  62. u8 reg17;
  63. u8 reg18;
  64. u8 flags;
  65. s8 ag_cnt;
  66. #define AG_CNT_START 13
  67. u8 bridge;
  68. #define BRIDGE_SN9C102P 0
  69. #define BRIDGE_SN9C105 1
  70. #define BRIDGE_SN9C110 2
  71. #define BRIDGE_SN9C120 3
  72. u8 sensor; /* Type of image sensor chip */
  73. u8 i2c_addr;
  74. u8 jpeg_hdr[JPEG_HDR_SZ];
  75. };
  76. enum sensors {
  77. SENSOR_ADCM1700,
  78. SENSOR_GC0307,
  79. SENSOR_HV7131R,
  80. SENSOR_MI0360,
  81. SENSOR_MI0360B,
  82. SENSOR_MO4000,
  83. SENSOR_MT9V111,
  84. SENSOR_OM6802,
  85. SENSOR_OV7630,
  86. SENSOR_OV7648,
  87. SENSOR_OV7660,
  88. SENSOR_PO1030,
  89. SENSOR_PO2030N,
  90. SENSOR_SOI768,
  91. SENSOR_SP80708,
  92. };
  93. static void qual_upd(struct work_struct *work);
  94. /* device flags */
  95. #define F_PDN_INV 0x01 /* inverse pin S_PWR_DN / sn_xxx tables */
  96. #define F_ILLUM 0x02 /* presence of illuminator */
  97. /* sn9c1xx definitions */
  98. /* register 0x01 */
  99. #define S_PWR_DN 0x01 /* sensor power down */
  100. #define S_PDN_INV 0x02 /* inverse pin S_PWR_DN */
  101. #define V_TX_EN 0x04 /* video transfer enable */
  102. #define LED 0x08 /* output to pin LED */
  103. #define SCL_SEL_OD 0x20 /* open-drain mode */
  104. #define SYS_SEL_48M 0x40 /* system clock 0: 24MHz, 1: 48MHz */
  105. /* register 0x17 */
  106. #define MCK_SIZE_MASK 0x1f /* sensor master clock */
  107. #define SEN_CLK_EN 0x20 /* enable sensor clock */
  108. #define DEF_EN 0x80 /* defect pixel by 0: soft, 1: hard */
  109. /* V4L2 controls supported by the driver */
  110. static void setbrightness(struct gspca_dev *gspca_dev);
  111. static void setcontrast(struct gspca_dev *gspca_dev);
  112. static void setcolors(struct gspca_dev *gspca_dev);
  113. static void setredblue(struct gspca_dev *gspca_dev);
  114. static void setgamma(struct gspca_dev *gspca_dev);
  115. static void setautogain(struct gspca_dev *gspca_dev);
  116. static void sethvflip(struct gspca_dev *gspca_dev);
  117. static void setsharpness(struct gspca_dev *gspca_dev);
  118. static void setillum(struct gspca_dev *gspca_dev);
  119. static void setfreq(struct gspca_dev *gspca_dev);
  120. static const struct ctrl sd_ctrls[NCTRLS] = {
  121. [BRIGHTNESS] = {
  122. {
  123. .id = V4L2_CID_BRIGHTNESS,
  124. .type = V4L2_CTRL_TYPE_INTEGER,
  125. .name = "Brightness",
  126. .minimum = 0,
  127. .maximum = 0xff,
  128. .step = 1,
  129. .default_value = 0x80,
  130. },
  131. .set_control = setbrightness
  132. },
  133. [CONTRAST] = {
  134. {
  135. .id = V4L2_CID_CONTRAST,
  136. .type = V4L2_CTRL_TYPE_INTEGER,
  137. .name = "Contrast",
  138. .minimum = 0,
  139. #define CONTRAST_MAX 127
  140. .maximum = CONTRAST_MAX,
  141. .step = 1,
  142. .default_value = 20,
  143. },
  144. .set_control = setcontrast
  145. },
  146. [COLORS] = {
  147. {
  148. .id = V4L2_CID_SATURATION,
  149. .type = V4L2_CTRL_TYPE_INTEGER,
  150. .name = "Saturation",
  151. .minimum = 0,
  152. .maximum = 40,
  153. .step = 1,
  154. #define COLORS_DEF 25
  155. .default_value = COLORS_DEF,
  156. },
  157. .set_control = setcolors
  158. },
  159. [BLUE] = {
  160. {
  161. .id = V4L2_CID_BLUE_BALANCE,
  162. .type = V4L2_CTRL_TYPE_INTEGER,
  163. .name = "Blue Balance",
  164. .minimum = 24,
  165. .maximum = 40,
  166. .step = 1,
  167. .default_value = 32,
  168. },
  169. .set_control = setredblue
  170. },
  171. [RED] = {
  172. {
  173. .id = V4L2_CID_RED_BALANCE,
  174. .type = V4L2_CTRL_TYPE_INTEGER,
  175. .name = "Red Balance",
  176. .minimum = 24,
  177. .maximum = 40,
  178. .step = 1,
  179. .default_value = 32,
  180. },
  181. .set_control = setredblue
  182. },
  183. [GAMMA] = {
  184. {
  185. .id = V4L2_CID_GAMMA,
  186. .type = V4L2_CTRL_TYPE_INTEGER,
  187. .name = "Gamma",
  188. .minimum = 0,
  189. .maximum = 40,
  190. .step = 1,
  191. #define GAMMA_DEF 20
  192. .default_value = GAMMA_DEF,
  193. },
  194. .set_control = setgamma
  195. },
  196. [AUTOGAIN] = {
  197. {
  198. .id = V4L2_CID_AUTOGAIN,
  199. .type = V4L2_CTRL_TYPE_BOOLEAN,
  200. .name = "Auto Gain",
  201. .minimum = 0,
  202. .maximum = 1,
  203. .step = 1,
  204. .default_value = 1
  205. },
  206. .set_control = setautogain
  207. },
  208. [HFLIP] = {
  209. {
  210. .id = V4L2_CID_HFLIP,
  211. .type = V4L2_CTRL_TYPE_BOOLEAN,
  212. .name = "Mirror",
  213. .minimum = 0,
  214. .maximum = 1,
  215. .step = 1,
  216. .default_value = 0,
  217. },
  218. .set_control = sethvflip
  219. },
  220. [VFLIP] = {
  221. {
  222. .id = V4L2_CID_VFLIP,
  223. .type = V4L2_CTRL_TYPE_BOOLEAN,
  224. .name = "Vflip",
  225. .minimum = 0,
  226. .maximum = 1,
  227. .step = 1,
  228. .default_value = 0,
  229. },
  230. .set_control = sethvflip
  231. },
  232. [SHARPNESS] = {
  233. {
  234. .id = V4L2_CID_SHARPNESS,
  235. .type = V4L2_CTRL_TYPE_INTEGER,
  236. .name = "Sharpness",
  237. .minimum = 0,
  238. .maximum = 255,
  239. .step = 1,
  240. .default_value = 90,
  241. },
  242. .set_control = setsharpness
  243. },
  244. [ILLUM] = {
  245. {
  246. .id = V4L2_CID_ILLUMINATORS_1,
  247. .type = V4L2_CTRL_TYPE_BOOLEAN,
  248. .name = "Illuminator / infrared",
  249. .minimum = 0,
  250. .maximum = 1,
  251. .step = 1,
  252. .default_value = 0,
  253. },
  254. .set_control = setillum
  255. },
  256. /* ov7630/ov7648/ov7660 only */
  257. [FREQ] = {
  258. {
  259. .id = V4L2_CID_POWER_LINE_FREQUENCY,
  260. .type = V4L2_CTRL_TYPE_MENU,
  261. .name = "Light frequency filter",
  262. .minimum = 0,
  263. .maximum = 2, /* 0: 0, 1: 50Hz, 2:60Hz */
  264. .step = 1,
  265. .default_value = 1,
  266. },
  267. .set_control = setfreq
  268. },
  269. };
  270. /* table of the disabled controls */
  271. static const __u32 ctrl_dis[] = {
  272. [SENSOR_ADCM1700] = (1 << AUTOGAIN) |
  273. (1 << HFLIP) |
  274. (1 << VFLIP) |
  275. (1 << FREQ),
  276. [SENSOR_GC0307] = (1 << HFLIP) |
  277. (1 << VFLIP) |
  278. (1 << FREQ),
  279. [SENSOR_HV7131R] = (1 << HFLIP) |
  280. (1 << FREQ),
  281. [SENSOR_MI0360] = (1 << HFLIP) |
  282. (1 << VFLIP) |
  283. (1 << FREQ),
  284. [SENSOR_MI0360B] = (1 << HFLIP) |
  285. (1 << VFLIP) |
  286. (1 << FREQ),
  287. [SENSOR_MO4000] = (1 << HFLIP) |
  288. (1 << VFLIP) |
  289. (1 << FREQ),
  290. [SENSOR_MT9V111] = (1 << HFLIP) |
  291. (1 << VFLIP) |
  292. (1 << FREQ),
  293. [SENSOR_OM6802] = (1 << HFLIP) |
  294. (1 << VFLIP) |
  295. (1 << FREQ),
  296. [SENSOR_OV7630] = (1 << HFLIP),
  297. [SENSOR_OV7648] = (1 << HFLIP),
  298. [SENSOR_OV7660] = (1 << AUTOGAIN) |
  299. (1 << HFLIP) |
  300. (1 << VFLIP),
  301. [SENSOR_PO1030] = (1 << AUTOGAIN) |
  302. (1 << HFLIP) |
  303. (1 << VFLIP) |
  304. (1 << FREQ),
  305. [SENSOR_PO2030N] = (1 << AUTOGAIN) |
  306. (1 << FREQ),
  307. [SENSOR_SOI768] = (1 << AUTOGAIN) |
  308. (1 << HFLIP) |
  309. (1 << VFLIP) |
  310. (1 << FREQ),
  311. [SENSOR_SP80708] = (1 << AUTOGAIN) |
  312. (1 << HFLIP) |
  313. (1 << VFLIP) |
  314. (1 << FREQ),
  315. };
  316. static const struct v4l2_pix_format cif_mode[] = {
  317. {352, 288, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
  318. .bytesperline = 352,
  319. .sizeimage = 352 * 288 * 4 / 8 + 590,
  320. .colorspace = V4L2_COLORSPACE_JPEG,
  321. .priv = 0},
  322. };
  323. static const struct v4l2_pix_format vga_mode[] = {
  324. {160, 120, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
  325. .bytesperline = 160,
  326. .sizeimage = 160 * 120 * 4 / 8 + 590,
  327. .colorspace = V4L2_COLORSPACE_JPEG,
  328. .priv = 2},
  329. {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
  330. .bytesperline = 320,
  331. .sizeimage = 320 * 240 * 3 / 8 + 590,
  332. .colorspace = V4L2_COLORSPACE_JPEG,
  333. .priv = 1},
  334. {640, 480, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
  335. .bytesperline = 640,
  336. /* Note 3 / 8 is not large enough, not even 5 / 8 is ?! */
  337. .sizeimage = 640 * 480 * 3 / 4 + 590,
  338. .colorspace = V4L2_COLORSPACE_JPEG,
  339. .priv = 0},
  340. };
  341. static const u8 sn_adcm1700[0x1c] = {
  342. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  343. 0x00, 0x43, 0x60, 0x00, 0x1a, 0x00, 0x00, 0x00,
  344. /* reg8 reg9 rega regb regc regd rege regf */
  345. 0x80, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  346. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  347. 0x03, 0x00, 0x05, 0x01, 0x05, 0x16, 0x12, 0x42,
  348. /* reg18 reg19 reg1a reg1b */
  349. 0x06, 0x00, 0x00, 0x00
  350. };
  351. static const u8 sn_gc0307[0x1c] = {
  352. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  353. 0x00, 0x61, 0x62, 0x00, 0x1a, 0x00, 0x00, 0x00,
  354. /* reg8 reg9 rega regb regc regd rege regf */
  355. 0x80, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  356. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  357. 0x03, 0x00, 0x03, 0x01, 0x08, 0x28, 0x1e, 0x02,
  358. /* reg18 reg19 reg1a reg1b */
  359. 0x06, 0x00, 0x00, 0x00
  360. };
  361. static const u8 sn_hv7131[0x1c] = {
  362. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  363. 0x00, 0x03, 0x60, 0x00, 0x1a, 0x20, 0x20, 0x20,
  364. /* reg8 reg9 rega regb regc regd rege regf */
  365. 0x81, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  366. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  367. 0x03, 0x00, 0x00, 0x01, 0x03, 0x28, 0x1e, 0x41,
  368. /* reg18 reg19 reg1a reg1b */
  369. 0x0a, 0x00, 0x00, 0x00
  370. };
  371. static const u8 sn_mi0360[0x1c] = {
  372. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  373. 0x00, 0x63, 0x40, 0x00, 0x1a, 0x20, 0x20, 0x20,
  374. /* reg8 reg9 rega regb regc regd rege regf */
  375. 0x81, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  376. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  377. 0x03, 0x00, 0x00, 0x02, 0x0a, 0x28, 0x1e, 0x61,
  378. /* reg18 reg19 reg1a reg1b */
  379. 0x06, 0x00, 0x00, 0x00
  380. };
  381. static const u8 sn_mi0360b[0x1c] = {
  382. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  383. 0x00, 0x61, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
  384. /* reg8 reg9 rega regb regc regd rege regf */
  385. 0x81, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  386. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  387. 0x03, 0x00, 0x00, 0x02, 0x0a, 0x28, 0x1e, 0x40,
  388. /* reg18 reg19 reg1a reg1b */
  389. 0x06, 0x00, 0x00, 0x00
  390. };
  391. static const u8 sn_mo4000[0x1c] = {
  392. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  393. 0x00, 0x23, 0x60, 0x00, 0x1a, 0x00, 0x20, 0x18,
  394. /* reg8 reg9 rega regb regc regd rege regf */
  395. 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  396. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  397. 0x03, 0x00, 0x0b, 0x0f, 0x14, 0x28, 0x1e, 0x40,
  398. /* reg18 reg19 reg1a reg1b */
  399. 0x08, 0x00, 0x00, 0x00
  400. };
  401. static const u8 sn_mt9v111[0x1c] = {
  402. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  403. 0x00, 0x61, 0x40, 0x00, 0x1a, 0x20, 0x20, 0x20,
  404. /* reg8 reg9 rega regb regc regd rege regf */
  405. 0x81, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  406. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  407. 0x03, 0x00, 0x00, 0x02, 0x1c, 0x28, 0x1e, 0x40,
  408. /* reg18 reg19 reg1a reg1b */
  409. 0x06, 0x00, 0x00, 0x00
  410. };
  411. static const u8 sn_om6802[0x1c] = {
  412. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  413. 0x00, 0x23, 0x72, 0x00, 0x1a, 0x20, 0x20, 0x19,
  414. /* reg8 reg9 rega regb regc regd rege regf */
  415. 0x80, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  416. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  417. 0x03, 0x00, 0x51, 0x01, 0x00, 0x28, 0x1e, 0x40,
  418. /* reg18 reg19 reg1a reg1b */
  419. 0x05, 0x00, 0x00, 0x00
  420. };
  421. static const u8 sn_ov7630[0x1c] = {
  422. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  423. 0x00, 0x21, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
  424. /* reg8 reg9 rega regb regc regd rege regf */
  425. 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  426. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  427. 0x03, 0x00, 0x04, 0x01, 0x0a, 0x28, 0x1e, 0xc2,
  428. /* reg18 reg19 reg1a reg1b */
  429. 0x0b, 0x00, 0x00, 0x00
  430. };
  431. static const u8 sn_ov7648[0x1c] = {
  432. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  433. 0x00, 0x63, 0x40, 0x00, 0x1a, 0x20, 0x20, 0x20,
  434. /* reg8 reg9 rega regb regc regd rege regf */
  435. 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  436. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  437. 0x03, 0x00, 0x00, 0x01, 0x00, 0x28, 0x1e, 0x00,
  438. /* reg18 reg19 reg1a reg1b */
  439. 0x0b, 0x00, 0x00, 0x00
  440. };
  441. static const u8 sn_ov7660[0x1c] = {
  442. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  443. 0x00, 0x61, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
  444. /* reg8 reg9 rega regb regc regd rege regf */
  445. 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  446. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  447. 0x03, 0x00, 0x01, 0x01, 0x08, 0x28, 0x1e, 0x20,
  448. /* reg18 reg19 reg1a reg1b */
  449. 0x07, 0x00, 0x00, 0x00
  450. };
  451. static const u8 sn_po1030[0x1c] = {
  452. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  453. 0x00, 0x21, 0x62, 0x00, 0x1a, 0x20, 0x20, 0x20,
  454. /* reg8 reg9 rega regb regc regd rege regf */
  455. 0x81, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  456. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  457. 0x03, 0x00, 0x00, 0x06, 0x06, 0x28, 0x1e, 0x00,
  458. /* reg18 reg19 reg1a reg1b */
  459. 0x07, 0x00, 0x00, 0x00
  460. };
  461. static const u8 sn_po2030n[0x1c] = {
  462. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  463. 0x00, 0x63, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
  464. /* reg8 reg9 rega regb regc regd rege regf */
  465. 0x81, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  466. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  467. 0x03, 0x00, 0x00, 0x01, 0x14, 0x28, 0x1e, 0x00,
  468. /* reg18 reg19 reg1a reg1b */
  469. 0x07, 0x00, 0x00, 0x00
  470. };
  471. static const u8 sn_soi768[0x1c] = {
  472. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  473. 0x00, 0x21, 0x40, 0x00, 0x1a, 0x00, 0x00, 0x00,
  474. /* reg8 reg9 rega regb regc regd rege regf */
  475. 0x81, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  476. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  477. 0x03, 0x00, 0x00, 0x01, 0x08, 0x28, 0x1e, 0x00,
  478. /* reg18 reg19 reg1a reg1b */
  479. 0x07, 0x00, 0x00, 0x00
  480. };
  481. static const u8 sn_sp80708[0x1c] = {
  482. /* reg0 reg1 reg2 reg3 reg4 reg5 reg6 reg7 */
  483. 0x00, 0x63, 0x60, 0x00, 0x1a, 0x20, 0x20, 0x20,
  484. /* reg8 reg9 rega regb regc regd rege regf */
  485. 0x81, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  486. /* reg10 reg11 reg12 reg13 reg14 reg15 reg16 reg17 */
  487. 0x03, 0x00, 0x00, 0x03, 0x04, 0x28, 0x1e, 0x00,
  488. /* reg18 reg19 reg1a reg1b */
  489. 0x07, 0x00, 0x00, 0x00
  490. };
  491. /* sequence specific to the sensors - !! index = SENSOR_xxx */
  492. static const u8 *sn_tb[] = {
  493. [SENSOR_ADCM1700] = sn_adcm1700,
  494. [SENSOR_GC0307] = sn_gc0307,
  495. [SENSOR_HV7131R] = sn_hv7131,
  496. [SENSOR_MI0360] = sn_mi0360,
  497. [SENSOR_MI0360B] = sn_mi0360b,
  498. [SENSOR_MO4000] = sn_mo4000,
  499. [SENSOR_MT9V111] = sn_mt9v111,
  500. [SENSOR_OM6802] = sn_om6802,
  501. [SENSOR_OV7630] = sn_ov7630,
  502. [SENSOR_OV7648] = sn_ov7648,
  503. [SENSOR_OV7660] = sn_ov7660,
  504. [SENSOR_PO1030] = sn_po1030,
  505. [SENSOR_PO2030N] = sn_po2030n,
  506. [SENSOR_SOI768] = sn_soi768,
  507. [SENSOR_SP80708] = sn_sp80708,
  508. };
  509. /* default gamma table */
  510. static const u8 gamma_def[17] = {
  511. 0x00, 0x2d, 0x46, 0x5a, 0x6c, 0x7c, 0x8b, 0x99,
  512. 0xa6, 0xb2, 0xbf, 0xca, 0xd5, 0xe0, 0xeb, 0xf5, 0xff
  513. };
  514. /* gamma for sensor ADCM1700 */
  515. static const u8 gamma_spec_0[17] = {
  516. 0x0f, 0x39, 0x5a, 0x74, 0x86, 0x95, 0xa6, 0xb4,
  517. 0xbd, 0xc4, 0xcc, 0xd4, 0xd5, 0xde, 0xe4, 0xed, 0xf5
  518. };
  519. /* gamma for sensors HV7131R and MT9V111 */
  520. static const u8 gamma_spec_1[17] = {
  521. 0x08, 0x3a, 0x52, 0x65, 0x75, 0x83, 0x91, 0x9d,
  522. 0xa9, 0xb4, 0xbe, 0xc8, 0xd2, 0xdb, 0xe4, 0xed, 0xf5
  523. };
  524. /* gamma for sensor GC0307 */
  525. static const u8 gamma_spec_2[17] = {
  526. 0x14, 0x37, 0x50, 0x6a, 0x7c, 0x8d, 0x9d, 0xab,
  527. 0xb5, 0xbf, 0xc2, 0xcb, 0xd1, 0xd6, 0xdb, 0xe1, 0xeb
  528. };
  529. /* gamma for sensor SP80708 */
  530. static const u8 gamma_spec_3[17] = {
  531. 0x0a, 0x2d, 0x4e, 0x68, 0x7d, 0x8f, 0x9f, 0xab,
  532. 0xb7, 0xc2, 0xcc, 0xd3, 0xd8, 0xde, 0xe2, 0xe5, 0xe6
  533. };
  534. /* color matrix and offsets */
  535. static const u8 reg84[] = {
  536. 0x14, 0x00, 0x27, 0x00, 0x07, 0x00, /* YR YG YB gains */
  537. 0xe8, 0x0f, 0xda, 0x0f, 0x40, 0x00, /* UR UG UB */
  538. 0x3e, 0x00, 0xcd, 0x0f, 0xf7, 0x0f, /* VR VG VB */
  539. 0x00, 0x00, 0x00 /* YUV offsets */
  540. };
  541. #define DELAY 0xdd
  542. static const u8 adcm1700_sensor_init[][8] = {
  543. {0xa0, 0x51, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x10},
  544. {0xb0, 0x51, 0x04, 0x08, 0x00, 0x00, 0x00, 0x10}, /* reset */
  545. {DELAY, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  546. {0xb0, 0x51, 0x04, 0x00, 0x00, 0x00, 0x00, 0x10},
  547. {DELAY, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  548. {0xb0, 0x51, 0x0c, 0xe0, 0x2e, 0x00, 0x00, 0x10},
  549. {0xb0, 0x51, 0x10, 0x02, 0x02, 0x00, 0x00, 0x10},
  550. {0xb0, 0x51, 0x14, 0x0e, 0x0e, 0x00, 0x00, 0x10},
  551. {0xb0, 0x51, 0x1c, 0x00, 0x80, 0x00, 0x00, 0x10},
  552. {0xb0, 0x51, 0x20, 0x01, 0x00, 0x00, 0x00, 0x10},
  553. {DELAY, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  554. {0xb0, 0x51, 0x04, 0x04, 0x00, 0x00, 0x00, 0x10},
  555. {DELAY, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  556. {0xb0, 0x51, 0x04, 0x01, 0x00, 0x00, 0x00, 0x10},
  557. {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
  558. {0xb0, 0x51, 0x14, 0x01, 0x00, 0x00, 0x00, 0x10},
  559. {0xb0, 0x51, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
  560. {}
  561. };
  562. static const u8 adcm1700_sensor_param1[][8] = {
  563. {0xb0, 0x51, 0x26, 0xf9, 0x01, 0x00, 0x00, 0x10}, /* exposure? */
  564. {0xd0, 0x51, 0x1e, 0x8e, 0x8e, 0x8e, 0x8e, 0x10},
  565. {0xa0, 0x51, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x10},
  566. {0xb0, 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10},
  567. {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
  568. {0xb0, 0x51, 0x32, 0x00, 0x72, 0x00, 0x00, 0x10},
  569. {0xd0, 0x51, 0x1e, 0xbe, 0xd7, 0xe8, 0xbe, 0x10}, /* exposure? */
  570. {0xa0, 0x51, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x10},
  571. {0xb0, 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10},
  572. {0xa0, 0x51, 0xfe, 0x10, 0x00, 0x00, 0x00, 0x10},
  573. {0xb0, 0x51, 0x32, 0x00, 0xa2, 0x00, 0x00, 0x10},
  574. {}
  575. };
  576. static const u8 gc0307_sensor_init[][8] = {
  577. {0xa0, 0x21, 0x43, 0x00, 0x00, 0x00, 0x00, 0x10},
  578. {0xa0, 0x21, 0x44, 0xa2, 0x00, 0x00, 0x00, 0x10},
  579. {0xa0, 0x21, 0x01, 0x6a, 0x00, 0x00, 0x00, 0x10},
  580. {0xa0, 0x21, 0x02, 0x70, 0x00, 0x00, 0x00, 0x10},
  581. {0xa0, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
  582. {0xa0, 0x21, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
  583. {0xa0, 0x21, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x10},
  584. {0xa0, 0x21, 0x11, 0x05, 0x00, 0x00, 0x00, 0x10},
  585. {0xa0, 0x21, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
  586. {0xa0, 0x21, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10},
  587. {0xa0, 0x21, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10},
  588. {0xa0, 0x21, 0x08, 0x02, 0x00, 0x00, 0x00, 0x10},
  589. {0xa0, 0x21, 0x09, 0x01, 0x00, 0x00, 0x00, 0x10},
  590. {0xa0, 0x21, 0x0a, 0xe8, 0x00, 0x00, 0x00, 0x10},
  591. {0xa0, 0x21, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x10},
  592. {0xa0, 0x21, 0x0c, 0x80, 0x00, 0x00, 0x00, 0x10},
  593. {0xa0, 0x21, 0x0d, 0x22, 0x00, 0x00, 0x00, 0x10},
  594. {0xa0, 0x21, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x10},
  595. {0xa0, 0x21, 0x0f, 0xb2, 0x00, 0x00, 0x00, 0x10},
  596. {0xa0, 0x21, 0x12, 0x70, 0x00, 0x00, 0x00, 0x10},
  597. {DELAY, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /*delay 10ms*/
  598. {0xa0, 0x21, 0x13, 0x00, 0x00, 0x00, 0x00, 0x10},
  599. {0xa0, 0x21, 0x15, 0xb8, 0x00, 0x00, 0x00, 0x10},
  600. {0xa0, 0x21, 0x16, 0x13, 0x00, 0x00, 0x00, 0x10},
  601. {0xa0, 0x21, 0x17, 0x52, 0x00, 0x00, 0x00, 0x10},
  602. {0xa0, 0x21, 0x18, 0x50, 0x00, 0x00, 0x00, 0x10},
  603. {0xa0, 0x21, 0x1e, 0x0d, 0x00, 0x00, 0x00, 0x10},
  604. {0xa0, 0x21, 0x1f, 0x32, 0x00, 0x00, 0x00, 0x10},
  605. {0xa0, 0x21, 0x61, 0x90, 0x00, 0x00, 0x00, 0x10},
  606. {0xa0, 0x21, 0x63, 0x70, 0x00, 0x00, 0x00, 0x10},
  607. {0xa0, 0x21, 0x65, 0x98, 0x00, 0x00, 0x00, 0x10},
  608. {0xa0, 0x21, 0x67, 0x90, 0x00, 0x00, 0x00, 0x10},
  609. {0xa0, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
  610. {0xa0, 0x21, 0x04, 0x96, 0x00, 0x00, 0x00, 0x10},
  611. {0xa0, 0x21, 0x45, 0x27, 0x00, 0x00, 0x00, 0x10},
  612. {0xa0, 0x21, 0x47, 0x2c, 0x00, 0x00, 0x00, 0x10},
  613. {0xa0, 0x21, 0x43, 0x47, 0x00, 0x00, 0x00, 0x10},
  614. {0xa0, 0x21, 0x44, 0xd8, 0x00, 0x00, 0x00, 0x10},
  615. {}
  616. };
  617. static const u8 gc0307_sensor_param1[][8] = {
  618. {0xa0, 0x21, 0x68, 0x13, 0x00, 0x00, 0x00, 0x10},
  619. {0xd0, 0x21, 0x61, 0x80, 0x00, 0x80, 0x00, 0x10},
  620. {0xc0, 0x21, 0x65, 0x80, 0x00, 0x80, 0x00, 0x10},
  621. {0xc0, 0x21, 0x63, 0xa0, 0x00, 0xa6, 0x00, 0x10},
  622. /*param3*/
  623. {0xa0, 0x21, 0x01, 0x6e, 0x00, 0x00, 0x00, 0x10},
  624. {0xa0, 0x21, 0x02, 0x88, 0x00, 0x00, 0x00, 0x10},
  625. {}
  626. };
  627. static const u8 hv7131r_sensor_init[][8] = {
  628. {0xc1, 0x11, 0x01, 0x08, 0x01, 0x00, 0x00, 0x10},
  629. {0xb1, 0x11, 0x34, 0x17, 0x7f, 0x00, 0x00, 0x10},
  630. {0xd1, 0x11, 0x40, 0xff, 0x7f, 0x7f, 0x7f, 0x10},
  631. /* {0x91, 0x11, 0x44, 0x00, 0x00, 0x00, 0x00, 0x10}, */
  632. {0xd1, 0x11, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
  633. {0xd1, 0x11, 0x14, 0x01, 0xe2, 0x02, 0x82, 0x10},
  634. /* {0x91, 0x11, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10}, */
  635. {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
  636. {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
  637. {0xc1, 0x11, 0x25, 0x00, 0x61, 0xa8, 0x00, 0x10},
  638. {0xa1, 0x11, 0x30, 0x22, 0x00, 0x00, 0x00, 0x10},
  639. {0xc1, 0x11, 0x31, 0x20, 0x2e, 0x20, 0x00, 0x10},
  640. {0xc1, 0x11, 0x25, 0x00, 0xc3, 0x50, 0x00, 0x10},
  641. {0xa1, 0x11, 0x30, 0x07, 0x00, 0x00, 0x00, 0x10}, /* gain14 */
  642. {0xc1, 0x11, 0x31, 0x10, 0x10, 0x10, 0x00, 0x10}, /* r g b 101a10 */
  643. {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
  644. {0xa1, 0x11, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
  645. {0xa1, 0x11, 0x21, 0xd0, 0x00, 0x00, 0x00, 0x10},
  646. {0xa1, 0x11, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
  647. {0xa1, 0x11, 0x23, 0x09, 0x00, 0x00, 0x00, 0x10},
  648. {0xa1, 0x11, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10},
  649. {0xa1, 0x11, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
  650. {0xa1, 0x11, 0x21, 0xd0, 0x00, 0x00, 0x00, 0x10},
  651. {0xa1, 0x11, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
  652. {0xa1, 0x11, 0x23, 0x10, 0x00, 0x00, 0x00, 0x10},
  653. {0xa1, 0x11, 0x01, 0x18, 0x00, 0x00, 0x00, 0x10},
  654. /* set sensor clock */
  655. {}
  656. };
  657. static const u8 mi0360_sensor_init[][8] = {
  658. {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
  659. {0xb1, 0x5d, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10},
  660. {0xb1, 0x5d, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
  661. {0xd1, 0x5d, 0x01, 0x00, 0x08, 0x00, 0x16, 0x10},
  662. {0xd1, 0x5d, 0x03, 0x01, 0xe2, 0x02, 0x82, 0x10},
  663. {0xd1, 0x5d, 0x05, 0x00, 0x09, 0x00, 0x53, 0x10},
  664. {0xb1, 0x5d, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x10},
  665. {0xd1, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
  666. {0xd1, 0x5d, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10},
  667. {0xd1, 0x5d, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
  668. {0xd1, 0x5d, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
  669. {0xd1, 0x5d, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
  670. {0xd1, 0x5d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x10},
  671. {0xd1, 0x5d, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10},
  672. {0xd1, 0x5d, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10},
  673. {0xd1, 0x5d, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x10},
  674. {0xd1, 0x5d, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
  675. {0xb1, 0x5d, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
  676. {0xd1, 0x5d, 0x20, 0x91, 0x01, 0x00, 0x00, 0x10},
  677. {0xd1, 0x5d, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
  678. {0xd1, 0x5d, 0x24, 0x00, 0x00, 0x00, 0x00, 0x10},
  679. {0xd1, 0x5d, 0x26, 0x00, 0x00, 0x00, 0x24, 0x10},
  680. {0xd1, 0x5d, 0x2f, 0xf7, 0xb0, 0x00, 0x04, 0x10},
  681. {0xd1, 0x5d, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
  682. {0xd1, 0x5d, 0x33, 0x00, 0x00, 0x01, 0x00, 0x10},
  683. {0xb1, 0x5d, 0x3d, 0x06, 0x8f, 0x00, 0x00, 0x10},
  684. {0xd1, 0x5d, 0x40, 0x01, 0xe0, 0x00, 0xd1, 0x10},
  685. {0xb1, 0x5d, 0x44, 0x00, 0x82, 0x00, 0x00, 0x10},
  686. {0xd1, 0x5d, 0x58, 0x00, 0x78, 0x00, 0x43, 0x10},
  687. {0xd1, 0x5d, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x10},
  688. {0xd1, 0x5d, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x10},
  689. {0xd1, 0x5d, 0x5e, 0x00, 0x00, 0xa3, 0x1d, 0x10},
  690. {0xb1, 0x5d, 0x62, 0x04, 0x11, 0x00, 0x00, 0x10},
  691. {0xb1, 0x5d, 0x20, 0x91, 0x01, 0x00, 0x00, 0x10},
  692. {0xb1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
  693. {0xb1, 0x5d, 0x09, 0x00, 0x64, 0x00, 0x00, 0x10},
  694. {0xd1, 0x5d, 0x2b, 0x00, 0xa0, 0x00, 0xb0, 0x10},
  695. {0xd1, 0x5d, 0x2d, 0x00, 0xa0, 0x00, 0xa0, 0x10},
  696. {0xb1, 0x5d, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor clck ?2 */
  697. {0xb1, 0x5d, 0x06, 0x00, 0x30, 0x00, 0x00, 0x10},
  698. {0xb1, 0x5d, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x10},
  699. {0xb1, 0x5d, 0x09, 0x02, 0x35, 0x00, 0x00, 0x10}, /* exposure 2 */
  700. {0xd1, 0x5d, 0x2b, 0x00, 0xb9, 0x00, 0xe3, 0x10},
  701. {0xd1, 0x5d, 0x2d, 0x00, 0x5f, 0x00, 0xb9, 0x10}, /* 42 */
  702. /* {0xb1, 0x5d, 0x35, 0x00, 0x67, 0x00, 0x00, 0x10}, * gain orig */
  703. /* {0xb1, 0x5d, 0x35, 0x00, 0x20, 0x00, 0x00, 0x10}, * gain */
  704. {0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10}, /* update */
  705. {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor on */
  706. {}
  707. };
  708. static const u8 mi0360b_sensor_init[][8] = {
  709. {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
  710. {0xb1, 0x5d, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10},
  711. {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /*delay 20ms*/
  712. {0xb1, 0x5d, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
  713. {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /*delay 20ms*/
  714. {0xd1, 0x5d, 0x01, 0x00, 0x08, 0x00, 0x16, 0x10},
  715. {0xd1, 0x5d, 0x03, 0x01, 0xe2, 0x02, 0x82, 0x10},
  716. {0xd1, 0x5d, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
  717. {0xb1, 0x5d, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x10},
  718. {0xd1, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
  719. {0xd1, 0x5d, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10},
  720. {0xd1, 0x5d, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
  721. {0xd1, 0x5d, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
  722. {0xd1, 0x5d, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
  723. {0xd1, 0x5d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x10},
  724. {0xd1, 0x5d, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10},
  725. {0xd1, 0x5d, 0x18, 0x00, 0x00, 0x00, 0x00, 0x10},
  726. {0xd1, 0x5d, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x10},
  727. {0xd1, 0x5d, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x10},
  728. {0xb1, 0x5d, 0x32, 0x00, 0x00, 0x00, 0x00, 0x10},
  729. {0xd1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
  730. {0xd1, 0x5d, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
  731. {0xd1, 0x5d, 0x24, 0x00, 0x00, 0x00, 0x00, 0x10},
  732. {0xd1, 0x5d, 0x26, 0x00, 0x00, 0x00, 0x24, 0x10},
  733. {0xd1, 0x5d, 0x2f, 0xf7, 0xb0, 0x00, 0x04, 0x10},
  734. {0xd1, 0x5d, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
  735. {0xd1, 0x5d, 0x33, 0x00, 0x00, 0x01, 0x00, 0x10},
  736. {0xb1, 0x5d, 0x3d, 0x06, 0x8f, 0x00, 0x00, 0x10},
  737. {0xd1, 0x5d, 0x40, 0x01, 0xe0, 0x00, 0xd1, 0x10},
  738. {0xb1, 0x5d, 0x44, 0x00, 0x82, 0x00, 0x00, 0x10},
  739. {0xd1, 0x5d, 0x58, 0x00, 0x78, 0x00, 0x43, 0x10},
  740. {0xd1, 0x5d, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x10},
  741. {0xd1, 0x5d, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x10},
  742. {0xd1, 0x5d, 0x5e, 0x00, 0x00, 0xa3, 0x1d, 0x10},
  743. {0xb1, 0x5d, 0x62, 0x04, 0x11, 0x00, 0x00, 0x10},
  744. {0xb1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
  745. {0xb1, 0x5d, 0x20, 0x11, 0x01, 0x00, 0x00, 0x10},
  746. {0xb1, 0x5d, 0x09, 0x00, 0x64, 0x00, 0x00, 0x10},
  747. {0xd1, 0x5d, 0x2b, 0x00, 0x33, 0x00, 0xa0, 0x10},
  748. {0xd1, 0x5d, 0x2d, 0x00, 0xa0, 0x00, 0x33, 0x10},
  749. {}
  750. };
  751. static const u8 mi0360b_sensor_param1[][8] = {
  752. {0xb1, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
  753. {0xb1, 0x5d, 0x06, 0x00, 0x53, 0x00, 0x00, 0x10},
  754. {0xb1, 0x5d, 0x05, 0x00, 0x09, 0x00, 0x00, 0x10},
  755. {0xb1, 0x5d, 0x09, 0x02, 0x35, 0x00, 0x00, 0x10}, /* exposure 2 */
  756. {0xd1, 0x5d, 0x2b, 0x00, 0xd1, 0x01, 0xc9, 0x10},
  757. {0xd1, 0x5d, 0x2d, 0x00, 0xed, 0x00, 0xd1, 0x10},
  758. {0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10}, /* update */
  759. {0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10}, /* sensor on */
  760. {}
  761. };
  762. static const u8 mo4000_sensor_init[][8] = {
  763. {0xa1, 0x21, 0x01, 0x02, 0x00, 0x00, 0x00, 0x10},
  764. {0xa1, 0x21, 0x02, 0x00, 0x00, 0x00, 0x00, 0x10},
  765. {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
  766. {0xa1, 0x21, 0x04, 0x00, 0x00, 0x00, 0x00, 0x10},
  767. {0xa1, 0x21, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10},
  768. {0xa1, 0x21, 0x05, 0x04, 0x00, 0x00, 0x00, 0x10},
  769. {0xa1, 0x21, 0x06, 0x80, 0x00, 0x00, 0x00, 0x10},
  770. {0xa1, 0x21, 0x06, 0x81, 0x00, 0x00, 0x00, 0x10},
  771. {0xa1, 0x21, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x10},
  772. {0xa1, 0x21, 0x11, 0x00, 0x00, 0x00, 0x00, 0x10},
  773. {0xa1, 0x21, 0x11, 0x20, 0x00, 0x00, 0x00, 0x10},
  774. {0xa1, 0x21, 0x11, 0x30, 0x00, 0x00, 0x00, 0x10},
  775. {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
  776. {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
  777. {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
  778. {0xa1, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10},
  779. {0xa1, 0x21, 0x0f, 0x20, 0x00, 0x00, 0x00, 0x10},
  780. {0xa1, 0x21, 0x10, 0x20, 0x00, 0x00, 0x00, 0x10},
  781. {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
  782. {0xa1, 0x21, 0x11, 0x38, 0x00, 0x00, 0x00, 0x10},
  783. {}
  784. };
  785. static const u8 mt9v111_sensor_init[][8] = {
  786. {0xb1, 0x5c, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x10}, /* reset? */
  787. {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
  788. {0xb1, 0x5c, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x10},
  789. {0xb1, 0x5c, 0x01, 0x00, 0x01, 0x00, 0x00, 0x10}, /* IFP select */
  790. {0xb1, 0x5c, 0x08, 0x04, 0x80, 0x00, 0x00, 0x10}, /* output fmt ctrl */
  791. {0xb1, 0x5c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10}, /* op mode ctrl */
  792. {0xb1, 0x5c, 0x01, 0x00, 0x04, 0x00, 0x00, 0x10}, /* sensor select */
  793. {0xb1, 0x5c, 0x08, 0x00, 0x08, 0x00, 0x00, 0x10}, /* row start */
  794. {0xb1, 0x5c, 0x02, 0x00, 0x16, 0x00, 0x00, 0x10}, /* col start */
  795. {0xb1, 0x5c, 0x03, 0x01, 0xe7, 0x00, 0x00, 0x10}, /* window height */
  796. {0xb1, 0x5c, 0x04, 0x02, 0x87, 0x00, 0x00, 0x10}, /* window width */
  797. {0xb1, 0x5c, 0x07, 0x30, 0x02, 0x00, 0x00, 0x10}, /* output ctrl */
  798. {0xb1, 0x5c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x10}, /* shutter delay */
  799. {0xb1, 0x5c, 0x12, 0x00, 0xb0, 0x00, 0x00, 0x10}, /* zoom col start */
  800. {0xb1, 0x5c, 0x13, 0x00, 0x7c, 0x00, 0x00, 0x10}, /* zoom row start */
  801. {0xb1, 0x5c, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x10}, /* digital zoom */
  802. {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10}, /* read mode */
  803. {0xb1, 0x5c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x10},
  804. {}
  805. };
  806. static const u8 mt9v111_sensor_param1[][8] = {
  807. {0xd1, 0x5c, 0x2b, 0x00, 0x33, 0x00, 0xad, 0x10}, /* G1 and B gains */
  808. {0xd1, 0x5c, 0x2d, 0x00, 0xad, 0x00, 0x33, 0x10}, /* R and G2 gains */
  809. {0xb1, 0x5c, 0x06, 0x00, 0x40, 0x00, 0x00, 0x10}, /* vert blanking */
  810. {0xb1, 0x5c, 0x05, 0x00, 0x09, 0x00, 0x00, 0x10}, /* horiz blanking */
  811. {0xb1, 0x5c, 0x35, 0x01, 0xc0, 0x00, 0x00, 0x10}, /* global gain */
  812. {}
  813. };
  814. static const u8 om6802_init0[2][8] = {
  815. /*fixme: variable*/
  816. {0xa0, 0x34, 0x29, 0x0e, 0x00, 0x00, 0x00, 0x10},
  817. {0xa0, 0x34, 0x23, 0xb0, 0x00, 0x00, 0x00, 0x10},
  818. };
  819. static const u8 om6802_sensor_init[][8] = {
  820. {0xa0, 0x34, 0xdf, 0x6d, 0x00, 0x00, 0x00, 0x10},
  821. /* factory mode */
  822. {0xa0, 0x34, 0xdd, 0x18, 0x00, 0x00, 0x00, 0x10},
  823. /* output raw RGB */
  824. {0xa0, 0x34, 0x5a, 0xc0, 0x00, 0x00, 0x00, 0x10},
  825. /* {0xa0, 0x34, 0xfb, 0x11, 0x00, 0x00, 0x00, 0x10}, */
  826. {0xa0, 0x34, 0xf0, 0x04, 0x00, 0x00, 0x00, 0x10},
  827. /* auto-exposure speed (0) / white balance mode (auto RGB) */
  828. /* {0xa0, 0x34, 0xf1, 0x02, 0x00, 0x00, 0x00, 0x10},
  829. * set color mode */
  830. /* {0xa0, 0x34, 0xfe, 0x5b, 0x00, 0x00, 0x00, 0x10},
  831. * max AGC value in AE */
  832. /* {0xa0, 0x34, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x10},
  833. * preset AGC */
  834. /* {0xa0, 0x34, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x10},
  835. * preset brightness */
  836. /* {0xa0, 0x34, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x10},
  837. * preset contrast */
  838. /* {0xa0, 0x34, 0xe8, 0x31, 0x00, 0x00, 0x00, 0x10},
  839. * preset gamma */
  840. {0xa0, 0x34, 0xe9, 0x0f, 0x00, 0x00, 0x00, 0x10},
  841. /* luminance mode (0x4f -> AutoExpo on) */
  842. {0xa0, 0x34, 0xe4, 0xff, 0x00, 0x00, 0x00, 0x10},
  843. /* preset shutter */
  844. /* {0xa0, 0x34, 0xef, 0x00, 0x00, 0x00, 0x00, 0x10},
  845. * auto frame rate */
  846. /* {0xa0, 0x34, 0xfb, 0xee, 0x00, 0x00, 0x00, 0x10}, */
  847. {0xa0, 0x34, 0x5d, 0x80, 0x00, 0x00, 0x00, 0x10},
  848. {}
  849. };
  850. static const u8 om6802_sensor_param1[][8] = {
  851. {0xa0, 0x34, 0x71, 0x84, 0x00, 0x00, 0x00, 0x10},
  852. {0xa0, 0x34, 0x72, 0x05, 0x00, 0x00, 0x00, 0x10},
  853. {0xa0, 0x34, 0x68, 0x80, 0x00, 0x00, 0x00, 0x10},
  854. {0xa0, 0x34, 0x69, 0x01, 0x00, 0x00, 0x00, 0x10},
  855. {}
  856. };
  857. static const u8 ov7630_sensor_init[][8] = {
  858. {0xa1, 0x21, 0x76, 0x01, 0x00, 0x00, 0x00, 0x10},
  859. {0xa1, 0x21, 0x12, 0xc8, 0x00, 0x00, 0x00, 0x10},
  860. {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
  861. {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
  862. {0xa1, 0x21, 0x12, 0xc8, 0x00, 0x00, 0x00, 0x10},
  863. {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
  864. {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
  865. /* win: i2c_r from 00 to 80 */
  866. {0xd1, 0x21, 0x03, 0x80, 0x10, 0x20, 0x80, 0x10},
  867. {0xb1, 0x21, 0x0c, 0x20, 0x20, 0x00, 0x00, 0x10},
  868. /* HDG: 0x11 was 0x00 change to 0x01 for better exposure (15 fps instead of 30)
  869. 0x13 was 0xc0 change to 0xc3 for auto gain and exposure */
  870. {0xd1, 0x21, 0x11, 0x01, 0x48, 0xc3, 0x00, 0x10},
  871. {0xb1, 0x21, 0x15, 0x80, 0x03, 0x00, 0x00, 0x10},
  872. {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10},
  873. {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
  874. {0xd1, 0x21, 0x1f, 0x00, 0x80, 0x80, 0x80, 0x10},
  875. {0xd1, 0x21, 0x23, 0xde, 0x10, 0x8a, 0xa0, 0x10},
  876. {0xc1, 0x21, 0x27, 0xca, 0xa2, 0x74, 0x00, 0x10},
  877. {0xd1, 0x21, 0x2a, 0x88, 0x00, 0x88, 0x01, 0x10},
  878. {0xc1, 0x21, 0x2e, 0x80, 0x00, 0x18, 0x00, 0x10},
  879. {0xa1, 0x21, 0x21, 0x08, 0x00, 0x00, 0x00, 0x10},
  880. {0xa1, 0x21, 0x22, 0x00, 0x00, 0x00, 0x00, 0x10},
  881. {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10},
  882. {0xb1, 0x21, 0x32, 0xc2, 0x08, 0x00, 0x00, 0x10},
  883. {0xb1, 0x21, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x10},
  884. {0xd1, 0x21, 0x60, 0x05, 0x40, 0x12, 0x57, 0x10},
  885. {0xa1, 0x21, 0x64, 0x73, 0x00, 0x00, 0x00, 0x10},
  886. {0xd1, 0x21, 0x65, 0x00, 0x55, 0x01, 0xac, 0x10},
  887. {0xa1, 0x21, 0x69, 0x38, 0x00, 0x00, 0x00, 0x10},
  888. {0xd1, 0x21, 0x6f, 0x1f, 0x01, 0x00, 0x10, 0x10},
  889. {0xd1, 0x21, 0x73, 0x50, 0x20, 0x02, 0x01, 0x10},
  890. {0xd1, 0x21, 0x77, 0xf3, 0x90, 0x98, 0x98, 0x10},
  891. {0xc1, 0x21, 0x7b, 0x00, 0x4c, 0xf7, 0x00, 0x10},
  892. {0xd1, 0x21, 0x17, 0x1b, 0xbd, 0x05, 0xf6, 0x10},
  893. {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
  894. {}
  895. };
  896. static const u8 ov7630_sensor_param1[][8] = {
  897. {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
  898. {0xa1, 0x21, 0x12, 0x48, 0x00, 0x00, 0x00, 0x10},
  899. /*fixme: + 0x12, 0x04*/
  900. /* {0xa1, 0x21, 0x75, 0x82, 0x00, 0x00, 0x00, 0x10}, * COMN
  901. * set by setvflip */
  902. {0xa1, 0x21, 0x10, 0x32, 0x00, 0x00, 0x00, 0x10},
  903. {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
  904. {0xb1, 0x21, 0x01, 0x80, 0x80, 0x00, 0x00, 0x10},
  905. /* */
  906. /* {0xa1, 0x21, 0x2a, 0x88, 0x00, 0x00, 0x00, 0x10}, * set by setfreq */
  907. /* {0xa1, 0x21, 0x2b, 0x34, 0x00, 0x00, 0x00, 0x10}, * set by setfreq */
  908. /* */
  909. {0xa1, 0x21, 0x10, 0x83, 0x00, 0x00, 0x00, 0x10},
  910. /* {0xb1, 0x21, 0x01, 0x88, 0x70, 0x00, 0x00, 0x10}, */
  911. {}
  912. };
  913. static const u8 ov7648_sensor_init[][8] = {
  914. {0xa1, 0x21, 0x76, 0x00, 0x00, 0x00, 0x00, 0x10},
  915. {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset */
  916. {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
  917. {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
  918. {0xd1, 0x21, 0x03, 0xa4, 0x30, 0x88, 0x00, 0x10},
  919. {0xb1, 0x21, 0x11, 0x80, 0x08, 0x00, 0x00, 0x10},
  920. {0xc1, 0x21, 0x13, 0xa0, 0x04, 0x84, 0x00, 0x10},
  921. {0xd1, 0x21, 0x17, 0x1a, 0x02, 0xba, 0xf4, 0x10},
  922. {0xa1, 0x21, 0x1b, 0x04, 0x00, 0x00, 0x00, 0x10},
  923. {0xd1, 0x21, 0x1f, 0x41, 0xc0, 0x80, 0x80, 0x10},
  924. {0xd1, 0x21, 0x23, 0xde, 0xa0, 0x80, 0x32, 0x10},
  925. {0xd1, 0x21, 0x27, 0xfe, 0xa0, 0x00, 0x91, 0x10},
  926. {0xd1, 0x21, 0x2b, 0x00, 0x88, 0x85, 0x80, 0x10},
  927. {0xc1, 0x21, 0x2f, 0x9c, 0x00, 0xc4, 0x00, 0x10},
  928. {0xd1, 0x21, 0x60, 0xa6, 0x60, 0x88, 0x12, 0x10},
  929. {0xd1, 0x21, 0x64, 0x88, 0x00, 0x00, 0x94, 0x10},
  930. {0xd1, 0x21, 0x68, 0x7a, 0x0c, 0x00, 0x00, 0x10},
  931. {0xd1, 0x21, 0x6c, 0x11, 0x33, 0x22, 0x00, 0x10},
  932. {0xd1, 0x21, 0x70, 0x11, 0x00, 0x10, 0x50, 0x10},
  933. {0xd1, 0x21, 0x74, 0x20, 0x06, 0x00, 0xb5, 0x10},
  934. {0xd1, 0x21, 0x78, 0x8a, 0x00, 0x00, 0x00, 0x10},
  935. {0xb1, 0x21, 0x7c, 0x00, 0x43, 0x00, 0x00, 0x10},
  936. {0xd1, 0x21, 0x21, 0x86, 0x00, 0xde, 0xa0, 0x10},
  937. /* {0xd1, 0x21, 0x25, 0x80, 0x32, 0xfe, 0xa0, 0x10}, jfm done */
  938. /* {0xd1, 0x21, 0x29, 0x00, 0x91, 0x00, 0x88, 0x10}, jfm done */
  939. /* {0xb1, 0x21, 0x2d, 0x85, 0x00, 0x00, 0x00, 0x10}, set by setfreq */
  940. {}
  941. };
  942. static const u8 ov7648_sensor_param1[][8] = {
  943. /* {0xa1, 0x21, 0x12, 0x08, 0x00, 0x00, 0x00, 0x10}, jfm done */
  944. /* {0xa1, 0x21, 0x75, 0x06, 0x00, 0x00, 0x00, 0x10}, * COMN
  945. * set by setvflip */
  946. {0xa1, 0x21, 0x19, 0x02, 0x00, 0x00, 0x00, 0x10},
  947. {0xa1, 0x21, 0x10, 0x32, 0x00, 0x00, 0x00, 0x10},
  948. /* {0xa1, 0x21, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
  949. /* {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10}, * GAIN - def */
  950. /* {0xb1, 0x21, 0x01, 0x6c, 0x6c, 0x00, 0x00, 0x10}, * B R - def: 80 */
  951. /*...*/
  952. {0xa1, 0x21, 0x11, 0x81, 0x00, 0x00, 0x00, 0x10}, /* CLKRC */
  953. /* {0xa1, 0x21, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
  954. /* {0xa1, 0x21, 0x16, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
  955. /* {0xa1, 0x21, 0x2a, 0x91, 0x00, 0x00, 0x00, 0x10}, jfm done */
  956. /* {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}, jfm done */
  957. /* {0xb1, 0x21, 0x01, 0x64, 0x84, 0x00, 0x00, 0x10}, * B R - def: 80 */
  958. {}
  959. };
  960. static const u8 ov7660_sensor_init[][8] = {
  961. {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset SCCB */
  962. {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
  963. {0xa1, 0x21, 0x12, 0x05, 0x00, 0x00, 0x00, 0x10},
  964. /* Outformat = rawRGB */
  965. {0xa1, 0x21, 0x13, 0xb8, 0x00, 0x00, 0x00, 0x10}, /* init COM8 */
  966. {0xd1, 0x21, 0x00, 0x01, 0x74, 0x92, 0x00, 0x10},
  967. /* GAIN BLUE RED VREF */
  968. {0xd1, 0x21, 0x04, 0x00, 0x7d, 0x62, 0x00, 0x10},
  969. /* COM 1 BAVE GEAVE AECHH */
  970. {0xb1, 0x21, 0x08, 0x83, 0x01, 0x00, 0x00, 0x10}, /* RAVE COM2 */
  971. {0xd1, 0x21, 0x0c, 0x00, 0x08, 0x04, 0x4f, 0x10}, /* COM 3 4 5 6 */
  972. {0xd1, 0x21, 0x10, 0x7f, 0x40, 0x05, 0xff, 0x10},
  973. /* AECH CLKRC COM7 COM8 */
  974. {0xc1, 0x21, 0x14, 0x2c, 0x00, 0x02, 0x00, 0x10}, /* COM9 COM10 */
  975. {0xd1, 0x21, 0x17, 0x10, 0x60, 0x02, 0x7b, 0x10},
  976. /* HSTART HSTOP VSTRT VSTOP */
  977. {0xa1, 0x21, 0x1b, 0x02, 0x00, 0x00, 0x00, 0x10}, /* PSHFT */
  978. {0xb1, 0x21, 0x1e, 0x01, 0x0e, 0x00, 0x00, 0x10}, /* MVFP LAEC */
  979. {0xd1, 0x21, 0x20, 0x07, 0x07, 0x07, 0x07, 0x10},
  980. /* BOS GBOS GROS ROS (BGGR offset) */
  981. /* {0xd1, 0x21, 0x24, 0x68, 0x58, 0xd4, 0x80, 0x10}, */
  982. {0xd1, 0x21, 0x24, 0x78, 0x68, 0xd4, 0x80, 0x10},
  983. /* AEW AEB VPT BBIAS */
  984. {0xd1, 0x21, 0x28, 0x80, 0x30, 0x00, 0x00, 0x10},
  985. /* GbBIAS RSVD EXHCH EXHCL */
  986. {0xd1, 0x21, 0x2c, 0x80, 0x00, 0x00, 0x62, 0x10},
  987. /* RBIAS ADVFL ASDVFH YAVE */
  988. {0xc1, 0x21, 0x30, 0x08, 0x30, 0xb4, 0x00, 0x10},
  989. /* HSYST HSYEN HREF */
  990. {0xd1, 0x21, 0x33, 0x00, 0x07, 0x84, 0x00, 0x10}, /* reserved */
  991. {0xd1, 0x21, 0x37, 0x0c, 0x02, 0x43, 0x00, 0x10},
  992. /* ADC ACOM OFON TSLB */
  993. {0xd1, 0x21, 0x3b, 0x02, 0x6c, 0x19, 0x0e, 0x10},
  994. /* COM11 COM12 COM13 COM14 */
  995. {0xd1, 0x21, 0x3f, 0x41, 0xc1, 0x22, 0x08, 0x10},
  996. /* EDGE COM15 COM16 COM17 */
  997. {0xd1, 0x21, 0x43, 0xf0, 0x10, 0x78, 0xa8, 0x10}, /* reserved */
  998. {0xd1, 0x21, 0x47, 0x60, 0x80, 0x00, 0x00, 0x10}, /* reserved */
  999. {0xd1, 0x21, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x10}, /* reserved */
  1000. {0xd1, 0x21, 0x4f, 0x46, 0x36, 0x0f, 0x17, 0x10}, /* MTX 1 2 3 4 */
  1001. {0xd1, 0x21, 0x53, 0x7f, 0x96, 0x40, 0x40, 0x10}, /* MTX 5 6 7 8 */
  1002. {0xb1, 0x21, 0x57, 0x40, 0x0f, 0x00, 0x00, 0x10}, /* MTX9 MTXS */
  1003. {0xd1, 0x21, 0x59, 0xba, 0x9a, 0x22, 0xb9, 0x10}, /* reserved */
  1004. {0xd1, 0x21, 0x5d, 0x9b, 0x10, 0xf0, 0x05, 0x10}, /* reserved */
  1005. {0xa1, 0x21, 0x61, 0x60, 0x00, 0x00, 0x00, 0x10}, /* reserved */
  1006. {0xd1, 0x21, 0x62, 0x00, 0x00, 0x50, 0x30, 0x10},
  1007. /* LCC1 LCC2 LCC3 LCC4 */
  1008. {0xa1, 0x21, 0x66, 0x00, 0x00, 0x00, 0x00, 0x10}, /* LCC5 */
  1009. {0xd1, 0x21, 0x67, 0x80, 0x7a, 0x90, 0x80, 0x10}, /* MANU */
  1010. {0xa1, 0x21, 0x6b, 0x0a, 0x00, 0x00, 0x00, 0x10},
  1011. /* band gap reference [0:3] DBLV */
  1012. {0xd1, 0x21, 0x6c, 0x30, 0x48, 0x80, 0x74, 0x10}, /* gamma curve */
  1013. {0xd1, 0x21, 0x70, 0x64, 0x60, 0x5c, 0x58, 0x10}, /* gamma curve */
  1014. {0xd1, 0x21, 0x74, 0x54, 0x4c, 0x40, 0x38, 0x10}, /* gamma curve */
  1015. {0xd1, 0x21, 0x78, 0x34, 0x30, 0x2f, 0x2b, 0x10}, /* gamma curve */
  1016. {0xd1, 0x21, 0x7c, 0x03, 0x07, 0x17, 0x34, 0x10}, /* gamma curve */
  1017. {0xd1, 0x21, 0x80, 0x41, 0x4d, 0x58, 0x63, 0x10}, /* gamma curve */
  1018. {0xd1, 0x21, 0x84, 0x6e, 0x77, 0x87, 0x95, 0x10}, /* gamma curve */
  1019. {0xc1, 0x21, 0x88, 0xaf, 0xc7, 0xdf, 0x00, 0x10}, /* gamma curve */
  1020. {0xc1, 0x21, 0x8b, 0x99, 0x99, 0xcf, 0x00, 0x10}, /* reserved */
  1021. {0xb1, 0x21, 0x92, 0x00, 0x00, 0x00, 0x00, 0x10}, /* DM_LNL/H */
  1022. /* not in all ms-win traces*/
  1023. {0xa1, 0x21, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x10},
  1024. {}
  1025. };
  1026. static const u8 ov7660_sensor_param1[][8] = {
  1027. {0xa1, 0x21, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x10}, /* MVFP */
  1028. /* bits[3..0]reserved */
  1029. {0xa1, 0x21, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x10},
  1030. {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
  1031. /* VREF vertical frame ctrl */
  1032. {0xa1, 0x21, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10},
  1033. {0xa1, 0x21, 0x10, 0x20, 0x00, 0x00, 0x00, 0x10}, /* AECH 0x20 */
  1034. {0xa1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10}, /* ADVFL */
  1035. {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10}, /* ADVFH */
  1036. {0xa1, 0x21, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x10}, /* GAIN */
  1037. /* {0xb1, 0x21, 0x01, 0x78, 0x78, 0x00, 0x00, 0x10}, * BLUE */
  1038. /****** (some exchanges in the win trace) ******/
  1039. /*fixme:param2*/
  1040. {0xa1, 0x21, 0x93, 0x00, 0x00, 0x00, 0x00, 0x10},/* dummy line hight */
  1041. {0xa1, 0x21, 0x92, 0x25, 0x00, 0x00, 0x00, 0x10}, /* dummy line low */
  1042. {0xa1, 0x21, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x10}, /* EXHCH */
  1043. {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}, /* EXHCL */
  1044. /* {0xa1, 0x21, 0x02, 0x90, 0x00, 0x00, 0x00, 0x10}, * RED */
  1045. /****** (some exchanges in the win trace) ******/
  1046. /******!! startsensor KO if changed !!****/
  1047. /*fixme: param3*/
  1048. {0xa1, 0x21, 0x93, 0x01, 0x00, 0x00, 0x00, 0x10},
  1049. {0xa1, 0x21, 0x92, 0xff, 0x00, 0x00, 0x00, 0x10},
  1050. {0xa1, 0x21, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x10},
  1051. {0xa1, 0x21, 0x2b, 0xc3, 0x00, 0x00, 0x00, 0x10},
  1052. {}
  1053. };
  1054. static const u8 po1030_sensor_init[][8] = {
  1055. /* the sensor registers are described in m5602/m5602_po1030.h */
  1056. {0xa1, 0x6e, 0x3f, 0x20, 0x00, 0x00, 0x00, 0x10}, /* sensor reset */
  1057. {DELAY, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 20ms */
  1058. {0xa1, 0x6e, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x10},
  1059. {0xa1, 0x6e, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x10},
  1060. {0xd1, 0x6e, 0x04, 0x02, 0xb1, 0x02, 0x39, 0x10},
  1061. {0xd1, 0x6e, 0x08, 0x00, 0x01, 0x00, 0x00, 0x10},
  1062. {0xd1, 0x6e, 0x0c, 0x02, 0x7f, 0x01, 0xe0, 0x10},
  1063. {0xd1, 0x6e, 0x12, 0x03, 0x02, 0x00, 0x03, 0x10},
  1064. {0xd1, 0x6e, 0x16, 0x85, 0x40, 0x4a, 0x40, 0x10}, /* r/g1/b/g2 gains */
  1065. {0xc1, 0x6e, 0x1a, 0x00, 0x80, 0x00, 0x00, 0x10},
  1066. {0xd1, 0x6e, 0x1d, 0x08, 0x03, 0x00, 0x00, 0x10},
  1067. {0xd1, 0x6e, 0x23, 0x00, 0xb0, 0x00, 0x94, 0x10},
  1068. {0xd1, 0x6e, 0x27, 0x58, 0x00, 0x00, 0x00, 0x10},
  1069. {0xb1, 0x6e, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10},
  1070. {0xd1, 0x6e, 0x2d, 0x14, 0x35, 0x61, 0x84, 0x10}, /* gamma corr */
  1071. {0xd1, 0x6e, 0x31, 0xa2, 0xbd, 0xd8, 0xff, 0x10},
  1072. {0xd1, 0x6e, 0x35, 0x06, 0x1e, 0x12, 0x02, 0x10}, /* color matrix */
  1073. {0xd1, 0x6e, 0x39, 0xaa, 0x53, 0x37, 0xd5, 0x10},
  1074. {0xa1, 0x6e, 0x3d, 0xf2, 0x00, 0x00, 0x00, 0x10},
  1075. {0xd1, 0x6e, 0x3e, 0x00, 0x00, 0x80, 0x03, 0x10},
  1076. {0xd1, 0x6e, 0x42, 0x03, 0x00, 0x00, 0x00, 0x10},
  1077. {0xc1, 0x6e, 0x46, 0x00, 0x80, 0x80, 0x00, 0x10},
  1078. {0xd1, 0x6e, 0x4b, 0x02, 0xef, 0x08, 0xcd, 0x10},
  1079. {0xd1, 0x6e, 0x4f, 0x00, 0xd0, 0x00, 0xa0, 0x10},
  1080. {0xd1, 0x6e, 0x53, 0x01, 0xaa, 0x01, 0x40, 0x10},
  1081. {0xd1, 0x6e, 0x5a, 0x50, 0x04, 0x30, 0x03, 0x10}, /* raw rgb bayer */
  1082. {0xa1, 0x6e, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x10},
  1083. {0xd1, 0x6e, 0x5f, 0x10, 0x40, 0xff, 0x00, 0x10},
  1084. {0xd1, 0x6e, 0x63, 0x40, 0x40, 0x00, 0x00, 0x10},
  1085. {0xd1, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x10},
  1086. {0xd1, 0x6e, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x10},
  1087. {0xd1, 0x6e, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x10},
  1088. {0xc1, 0x6e, 0x73, 0x10, 0x80, 0xeb, 0x00, 0x10},
  1089. {}
  1090. };
  1091. static const u8 po1030_sensor_param1[][8] = {
  1092. /* from ms-win traces - these values change with auto gain/expo/wb.. */
  1093. {0xa1, 0x6e, 0x1e, 0x03, 0x00, 0x00, 0x00, 0x10},
  1094. {0xa1, 0x6e, 0x1e, 0x03, 0x00, 0x00, 0x00, 0x10},
  1095. /* mean values */
  1096. {0xc1, 0x6e, 0x1a, 0x02, 0xd4, 0xa4, 0x00, 0x10}, /* integlines */
  1097. {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10}, /* global gain */
  1098. {0xc1, 0x6e, 0x16, 0x40, 0x40, 0x40, 0x00, 0x10}, /* r/g1/b gains */
  1099. {0xa1, 0x6e, 0x1d, 0x08, 0x00, 0x00, 0x00, 0x10}, /* control1 */
  1100. {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10}, /* frameheight */
  1101. {0xa1, 0x6e, 0x07, 0xd5, 0x00, 0x00, 0x00, 0x10},
  1102. /* {0xc1, 0x6e, 0x16, 0x49, 0x40, 0x45, 0x00, 0x10}, */
  1103. {}
  1104. };
  1105. static const u8 po2030n_sensor_init[][8] = {
  1106. {0xa1, 0x6e, 0x1e, 0x1a, 0x00, 0x00, 0x00, 0x10},
  1107. {0xa1, 0x6e, 0x1f, 0x99, 0x00, 0x00, 0x00, 0x10},
  1108. {DELAY, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 10ms */
  1109. {0xa1, 0x6e, 0x1e, 0x0a, 0x00, 0x00, 0x00, 0x10},
  1110. {0xa1, 0x6e, 0x1f, 0x19, 0x00, 0x00, 0x00, 0x10},
  1111. {DELAY, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 10ms */
  1112. {0xa1, 0x6e, 0x20, 0x44, 0x00, 0x00, 0x00, 0x10},
  1113. {0xa1, 0x6e, 0x04, 0x03, 0x00, 0x00, 0x00, 0x10},
  1114. {0xa1, 0x6e, 0x05, 0x70, 0x00, 0x00, 0x00, 0x10},
  1115. {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10},
  1116. {0xa1, 0x6e, 0x07, 0x25, 0x00, 0x00, 0x00, 0x10},
  1117. {0xd1, 0x6e, 0x08, 0x00, 0xd0, 0x00, 0x08, 0x10},
  1118. {0xd1, 0x6e, 0x0c, 0x03, 0x50, 0x01, 0xe8, 0x10},
  1119. {0xd1, 0x6e, 0x1d, 0x20, 0x0a, 0x19, 0x44, 0x10},
  1120. {0xd1, 0x6e, 0x21, 0x00, 0x00, 0x00, 0x00, 0x10},
  1121. {0xd1, 0x6e, 0x25, 0x00, 0x00, 0x00, 0x00, 0x10},
  1122. {0xd1, 0x6e, 0x29, 0x00, 0x00, 0x00, 0x00, 0x10},
  1123. {0xd1, 0x6e, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10},
  1124. {0xd1, 0x6e, 0x31, 0x00, 0x00, 0x00, 0x00, 0x10},
  1125. {0xd1, 0x6e, 0x35, 0x00, 0x00, 0x00, 0x00, 0x10},
  1126. {0xd1, 0x6e, 0x39, 0x00, 0x00, 0x00, 0x00, 0x10},
  1127. {0xd1, 0x6e, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x10},
  1128. {0xd1, 0x6e, 0x41, 0x00, 0x00, 0x00, 0x00, 0x10},
  1129. {0xd1, 0x6e, 0x45, 0x00, 0x00, 0x00, 0x00, 0x10},
  1130. {0xd1, 0x6e, 0x49, 0x00, 0x00, 0x00, 0x00, 0x10},
  1131. {0xd1, 0x6e, 0x4d, 0x00, 0x00, 0x00, 0xed, 0x10},
  1132. {0xd1, 0x6e, 0x51, 0x17, 0x4a, 0x2f, 0xc0, 0x10},
  1133. {0xd1, 0x6e, 0x55, 0x00, 0x00, 0x00, 0x00, 0x10},
  1134. {0xd1, 0x6e, 0x59, 0x00, 0x00, 0x00, 0x00, 0x10},
  1135. {0xd1, 0x6e, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x10},
  1136. {0xd1, 0x6e, 0x61, 0x00, 0x00, 0x00, 0x00, 0x10},
  1137. {0xd1, 0x6e, 0x65, 0x00, 0x00, 0x00, 0x00, 0x10},
  1138. {0xd1, 0x6e, 0x69, 0x00, 0x00, 0x00, 0x00, 0x10},
  1139. {0xd1, 0x6e, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x10},
  1140. {0xd1, 0x6e, 0x71, 0x00, 0x00, 0x00, 0x00, 0x10},
  1141. {0xd1, 0x6e, 0x75, 0x00, 0x00, 0x00, 0x00, 0x10},
  1142. {0xd1, 0x6e, 0x79, 0x00, 0x00, 0x00, 0x00, 0x10},
  1143. {0xd1, 0x6e, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x10},
  1144. {0xd1, 0x6e, 0x81, 0x00, 0x00, 0x00, 0x00, 0x10},
  1145. {0xd1, 0x6e, 0x85, 0x00, 0x00, 0x00, 0x08, 0x10},
  1146. {0xd1, 0x6e, 0x89, 0x01, 0xe8, 0x00, 0x01, 0x10},
  1147. {0xa1, 0x6e, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x10},
  1148. {0xd1, 0x6e, 0x21, 0x00, 0x00, 0x00, 0x00, 0x10},
  1149. {0xd1, 0x6e, 0x25, 0x00, 0x00, 0x00, 0x01, 0x10},
  1150. {0xd1, 0x6e, 0x29, 0xe6, 0x00, 0xbd, 0x03, 0x10},
  1151. {0xd1, 0x6e, 0x2d, 0x41, 0x38, 0x68, 0x40, 0x10},
  1152. {0xd1, 0x6e, 0x31, 0x2b, 0x00, 0x36, 0x00, 0x10},
  1153. {0xd1, 0x6e, 0x35, 0x30, 0x30, 0x08, 0x00, 0x10},
  1154. {0xd1, 0x6e, 0x39, 0x00, 0x00, 0x33, 0x06, 0x10},
  1155. {0xb1, 0x6e, 0x3d, 0x06, 0x02, 0x00, 0x00, 0x10},
  1156. {}
  1157. };
  1158. static const u8 po2030n_sensor_param1[][8] = {
  1159. {0xa1, 0x6e, 0x1a, 0x01, 0x00, 0x00, 0x00, 0x10},
  1160. {DELAY, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 8ms */
  1161. {0xa1, 0x6e, 0x1b, 0xf4, 0x00, 0x00, 0x00, 0x10},
  1162. {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10},
  1163. {0xd1, 0x6e, 0x16, 0x50, 0x40, 0x49, 0x40, 0x10},
  1164. /*param2*/
  1165. {0xa1, 0x6e, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x10},
  1166. {0xa1, 0x6e, 0x04, 0x03, 0x00, 0x00, 0x00, 0x10},
  1167. {0xa1, 0x6e, 0x05, 0x6f, 0x00, 0x00, 0x00, 0x10},
  1168. {0xa1, 0x6e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x10},
  1169. {0xa1, 0x6e, 0x07, 0x25, 0x00, 0x00, 0x00, 0x10},
  1170. {0xa1, 0x6e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x10},
  1171. {0xc1, 0x6e, 0x16, 0x52, 0x40, 0x48, 0x00, 0x10},
  1172. /*after start*/
  1173. {0xa1, 0x6e, 0x15, 0x0f, 0x00, 0x00, 0x00, 0x10},
  1174. {DELAY, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 5ms */
  1175. {0xa1, 0x6e, 0x1a, 0x05, 0x00, 0x00, 0x00, 0x10},
  1176. {DELAY, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 5ms */
  1177. {0xa1, 0x6e, 0x1b, 0x53, 0x00, 0x00, 0x00, 0x10},
  1178. {}
  1179. };
  1180. static const u8 soi768_sensor_init[][8] = {
  1181. {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset */
  1182. {DELAY, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 96ms */
  1183. {0xa1, 0x21, 0x12, 0x00, 0x00, 0x00, 0x00, 0x10},
  1184. {0xa1, 0x21, 0x13, 0x80, 0x00, 0x00, 0x00, 0x10},
  1185. {0xa1, 0x21, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x10},
  1186. {0xa1, 0x21, 0x19, 0x00, 0x00, 0x00, 0x00, 0x10},
  1187. {}
  1188. };
  1189. static const u8 soi768_sensor_param1[][8] = {
  1190. {0xa1, 0x21, 0x10, 0x10, 0x00, 0x00, 0x00, 0x10},
  1191. {0xa1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10},
  1192. {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10},
  1193. {0xa1, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
  1194. {0xb1, 0x21, 0x01, 0x7f, 0x7f, 0x00, 0x00, 0x10},
  1195. /* */
  1196. /* {0xa1, 0x21, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x10}, */
  1197. /* {0xa1, 0x21, 0x2d, 0x25, 0x00, 0x00, 0x00, 0x10}, */
  1198. {0xa1, 0x21, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10},
  1199. /* {0xb1, 0x21, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x10}, */
  1200. {0xa1, 0x21, 0x02, 0x8d, 0x00, 0x00, 0x00, 0x10},
  1201. /* the next sequence should be used for auto gain */
  1202. {0xa1, 0x21, 0x00, 0x07, 0x00, 0x00, 0x00, 0x10},
  1203. /* global gain ? : 07 - change with 0x15 at the end */
  1204. {0xa1, 0x21, 0x10, 0x3f, 0x00, 0x00, 0x00, 0x10}, /* ???? : 063f */
  1205. {0xa1, 0x21, 0x04, 0x06, 0x00, 0x00, 0x00, 0x10},
  1206. {0xb1, 0x21, 0x2d, 0x63, 0x03, 0x00, 0x00, 0x10},
  1207. /* exposure ? : 0200 - change with 0x1e at the end */
  1208. {}
  1209. };
  1210. static const u8 sp80708_sensor_init[][8] = {
  1211. {0xa1, 0x18, 0x06, 0xf9, 0x00, 0x00, 0x00, 0x10},
  1212. {0xa1, 0x18, 0x09, 0x1f, 0x00, 0x00, 0x00, 0x10},
  1213. {0xa1, 0x18, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x10},
  1214. {0xa1, 0x18, 0x0d, 0xc0, 0x00, 0x00, 0x00, 0x10},
  1215. {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
  1216. {0xa1, 0x18, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x10},
  1217. {0xa1, 0x18, 0x10, 0x40, 0x00, 0x00, 0x00, 0x10},
  1218. {0xa1, 0x18, 0x11, 0x4e, 0x00, 0x00, 0x00, 0x10},
  1219. {0xa1, 0x18, 0x12, 0x53, 0x00, 0x00, 0x00, 0x10},
  1220. {0xa1, 0x18, 0x15, 0x80, 0x00, 0x00, 0x00, 0x10},
  1221. {0xa1, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x10},
  1222. {0xa1, 0x18, 0x19, 0x18, 0x00, 0x00, 0x00, 0x10},
  1223. {0xa1, 0x18, 0x1a, 0x10, 0x00, 0x00, 0x00, 0x10},
  1224. {0xa1, 0x18, 0x1b, 0x10, 0x00, 0x00, 0x00, 0x10},
  1225. {0xa1, 0x18, 0x1c, 0x28, 0x00, 0x00, 0x00, 0x10},
  1226. {0xa1, 0x18, 0x1d, 0x02, 0x00, 0x00, 0x00, 0x10},
  1227. {0xa1, 0x18, 0x1e, 0x10, 0x00, 0x00, 0x00, 0x10},
  1228. {0xa1, 0x18, 0x26, 0x04, 0x00, 0x00, 0x00, 0x10},
  1229. {0xa1, 0x18, 0x27, 0x1e, 0x00, 0x00, 0x00, 0x10},
  1230. {0xa1, 0x18, 0x28, 0x5a, 0x00, 0x00, 0x00, 0x10},
  1231. {0xa1, 0x18, 0x29, 0x28, 0x00, 0x00, 0x00, 0x10},
  1232. {0xa1, 0x18, 0x2a, 0x78, 0x00, 0x00, 0x00, 0x10},
  1233. {0xa1, 0x18, 0x2b, 0x01, 0x00, 0x00, 0x00, 0x10},
  1234. {0xa1, 0x18, 0x2c, 0xf7, 0x00, 0x00, 0x00, 0x10},
  1235. {0xa1, 0x18, 0x2d, 0x2d, 0x00, 0x00, 0x00, 0x10},
  1236. {0xa1, 0x18, 0x2e, 0xd5, 0x00, 0x00, 0x00, 0x10},
  1237. {0xa1, 0x18, 0x39, 0x42, 0x00, 0x00, 0x00, 0x10},
  1238. {0xa1, 0x18, 0x3a, 0x67, 0x00, 0x00, 0x00, 0x10},
  1239. {0xa1, 0x18, 0x3b, 0x87, 0x00, 0x00, 0x00, 0x10},
  1240. {0xa1, 0x18, 0x3c, 0xa3, 0x00, 0x00, 0x00, 0x10},
  1241. {0xa1, 0x18, 0x3d, 0xb0, 0x00, 0x00, 0x00, 0x10},
  1242. {0xa1, 0x18, 0x3e, 0xbc, 0x00, 0x00, 0x00, 0x10},
  1243. {0xa1, 0x18, 0x3f, 0xc8, 0x00, 0x00, 0x00, 0x10},
  1244. {0xa1, 0x18, 0x40, 0xd4, 0x00, 0x00, 0x00, 0x10},
  1245. {0xa1, 0x18, 0x41, 0xdf, 0x00, 0x00, 0x00, 0x10},
  1246. {0xa1, 0x18, 0x42, 0xea, 0x00, 0x00, 0x00, 0x10},
  1247. {0xa1, 0x18, 0x43, 0xf5, 0x00, 0x00, 0x00, 0x10},
  1248. {0xa1, 0x18, 0x45, 0x80, 0x00, 0x00, 0x00, 0x10},
  1249. {0xa1, 0x18, 0x46, 0x60, 0x00, 0x00, 0x00, 0x10},
  1250. {0xa1, 0x18, 0x47, 0x50, 0x00, 0x00, 0x00, 0x10},
  1251. {0xa1, 0x18, 0x48, 0x30, 0x00, 0x00, 0x00, 0x10},
  1252. {0xa1, 0x18, 0x49, 0x01, 0x00, 0x00, 0x00, 0x10},
  1253. {0xa1, 0x18, 0x4d, 0xae, 0x00, 0x00, 0x00, 0x10},
  1254. {0xa1, 0x18, 0x4e, 0x03, 0x00, 0x00, 0x00, 0x10},
  1255. {0xa1, 0x18, 0x4f, 0x66, 0x00, 0x00, 0x00, 0x10},
  1256. {0xa1, 0x18, 0x50, 0x1c, 0x00, 0x00, 0x00, 0x10},
  1257. {0xa1, 0x18, 0x44, 0x10, 0x00, 0x00, 0x00, 0x10},
  1258. {0xa1, 0x18, 0x4a, 0x30, 0x00, 0x00, 0x00, 0x10},
  1259. {0xa1, 0x18, 0x51, 0x80, 0x00, 0x00, 0x00, 0x10},
  1260. {0xa1, 0x18, 0x52, 0x80, 0x00, 0x00, 0x00, 0x10},
  1261. {0xa1, 0x18, 0x53, 0x80, 0x00, 0x00, 0x00, 0x10},
  1262. {0xa1, 0x18, 0x54, 0x80, 0x00, 0x00, 0x00, 0x10},
  1263. {0xa1, 0x18, 0x55, 0x80, 0x00, 0x00, 0x00, 0x10},
  1264. {0xa1, 0x18, 0x56, 0x80, 0x00, 0x00, 0x00, 0x10},
  1265. {0xa1, 0x18, 0x57, 0xe0, 0x00, 0x00, 0x00, 0x10},
  1266. {0xa1, 0x18, 0x58, 0xc0, 0x00, 0x00, 0x00, 0x10},
  1267. {0xa1, 0x18, 0x59, 0xab, 0x00, 0x00, 0x00, 0x10},
  1268. {0xa1, 0x18, 0x5a, 0xa0, 0x00, 0x00, 0x00, 0x10},
  1269. {0xa1, 0x18, 0x5b, 0x99, 0x00, 0x00, 0x00, 0x10},
  1270. {0xa1, 0x18, 0x5c, 0x90, 0x00, 0x00, 0x00, 0x10},
  1271. {0xa1, 0x18, 0x5e, 0x24, 0x00, 0x00, 0x00, 0x10},
  1272. {0xa1, 0x18, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x10},
  1273. {0xa1, 0x18, 0x60, 0x00, 0x00, 0x00, 0x00, 0x10},
  1274. {0xa1, 0x18, 0x61, 0x73, 0x00, 0x00, 0x00, 0x10},
  1275. {0xa1, 0x18, 0x63, 0x42, 0x00, 0x00, 0x00, 0x10},
  1276. {0xa1, 0x18, 0x64, 0x42, 0x00, 0x00, 0x00, 0x10},
  1277. {0xa1, 0x18, 0x65, 0x42, 0x00, 0x00, 0x00, 0x10},
  1278. {0xa1, 0x18, 0x66, 0x24, 0x00, 0x00, 0x00, 0x10},
  1279. {0xa1, 0x18, 0x67, 0x24, 0x00, 0x00, 0x00, 0x10},
  1280. {0xa1, 0x18, 0x68, 0x08, 0x00, 0x00, 0x00, 0x10},
  1281. {0xa1, 0x18, 0x2f, 0xc9, 0x00, 0x00, 0x00, 0x10},
  1282. {}
  1283. };
  1284. static const u8 sp80708_sensor_param1[][8] = {
  1285. {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
  1286. {0xa1, 0x18, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x10},
  1287. {0xa1, 0x18, 0x03, 0x01, 0x00, 0x00, 0x00, 0x10},
  1288. {0xa1, 0x18, 0x04, 0xa4, 0x00, 0x00, 0x00, 0x10},
  1289. {0xa1, 0x18, 0x14, 0x3f, 0x00, 0x00, 0x00, 0x10},
  1290. {0xa1, 0x18, 0x5d, 0x80, 0x00, 0x00, 0x00, 0x10},
  1291. {0xb1, 0x18, 0x11, 0x40, 0x40, 0x00, 0x00, 0x10},
  1292. {}
  1293. };
  1294. static const u8 (*sensor_init[])[8] = {
  1295. [SENSOR_ADCM1700] = adcm1700_sensor_init,
  1296. [SENSOR_GC0307] = gc0307_sensor_init,
  1297. [SENSOR_HV7131R] = hv7131r_sensor_init,
  1298. [SENSOR_MI0360] = mi0360_sensor_init,
  1299. [SENSOR_MI0360B] = mi0360b_sensor_init,
  1300. [SENSOR_MO4000] = mo4000_sensor_init,
  1301. [SENSOR_MT9V111] = mt9v111_sensor_init,
  1302. [SENSOR_OM6802] = om6802_sensor_init,
  1303. [SENSOR_OV7630] = ov7630_sensor_init,
  1304. [SENSOR_OV7648] = ov7648_sensor_init,
  1305. [SENSOR_OV7660] = ov7660_sensor_init,
  1306. [SENSOR_PO1030] = po1030_sensor_init,
  1307. [SENSOR_PO2030N] = po2030n_sensor_init,
  1308. [SENSOR_SOI768] = soi768_sensor_init,
  1309. [SENSOR_SP80708] = sp80708_sensor_init,
  1310. };
  1311. /* read <len> bytes to gspca_dev->usb_buf */
  1312. static void reg_r(struct gspca_dev *gspca_dev,
  1313. u16 value, int len)
  1314. {
  1315. int ret;
  1316. if (gspca_dev->usb_err < 0)
  1317. return;
  1318. #ifdef GSPCA_DEBUG
  1319. if (len > USB_BUF_SZ) {
  1320. pr_err("reg_r: buffer overflow\n");
  1321. return;
  1322. }
  1323. #endif
  1324. ret = usb_control_msg(gspca_dev->dev,
  1325. usb_rcvctrlpipe(gspca_dev->dev, 0),
  1326. 0,
  1327. USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
  1328. value, 0,
  1329. gspca_dev->usb_buf, len,
  1330. 500);
  1331. PDEBUG(D_USBI, "reg_r [%02x] -> %02x", value, gspca_dev->usb_buf[0]);
  1332. if (ret < 0) {
  1333. pr_err("reg_r err %d\n", ret);
  1334. gspca_dev->usb_err = ret;
  1335. }
  1336. }
  1337. static void reg_w1(struct gspca_dev *gspca_dev,
  1338. u16 value,
  1339. u8 data)
  1340. {
  1341. int ret;
  1342. if (gspca_dev->usb_err < 0)
  1343. return;
  1344. PDEBUG(D_USBO, "reg_w1 [%04x] = %02x", value, data);
  1345. gspca_dev->usb_buf[0] = data;
  1346. ret = usb_control_msg(gspca_dev->dev,
  1347. usb_sndctrlpipe(gspca_dev->dev, 0),
  1348. 0x08,
  1349. USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
  1350. value,
  1351. 0,
  1352. gspca_dev->usb_buf, 1,
  1353. 500);
  1354. if (ret < 0) {
  1355. pr_err("reg_w1 err %d\n", ret);
  1356. gspca_dev->usb_err = ret;
  1357. }
  1358. }
  1359. static void reg_w(struct gspca_dev *gspca_dev,
  1360. u16 value,
  1361. const u8 *buffer,
  1362. int len)
  1363. {
  1364. int ret;
  1365. if (gspca_dev->usb_err < 0)
  1366. return;
  1367. PDEBUG(D_USBO, "reg_w [%04x] = %02x %02x ..",
  1368. value, buffer[0], buffer[1]);
  1369. #ifdef GSPCA_DEBUG
  1370. if (len > USB_BUF_SZ) {
  1371. pr_err("reg_w: buffer overflow\n");
  1372. return;
  1373. }
  1374. #endif
  1375. memcpy(gspca_dev->usb_buf, buffer, len);
  1376. ret = usb_control_msg(gspca_dev->dev,
  1377. usb_sndctrlpipe(gspca_dev->dev, 0),
  1378. 0x08,
  1379. USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
  1380. value, 0,
  1381. gspca_dev->usb_buf, len,
  1382. 500);
  1383. if (ret < 0) {
  1384. pr_err("reg_w err %d\n", ret);
  1385. gspca_dev->usb_err = ret;
  1386. }
  1387. }
  1388. /* I2C write 1 byte */
  1389. static void i2c_w1(struct gspca_dev *gspca_dev, u8 reg, u8 val)
  1390. {
  1391. struct sd *sd = (struct sd *) gspca_dev;
  1392. int ret;
  1393. if (gspca_dev->usb_err < 0)
  1394. return;
  1395. PDEBUG(D_USBO, "i2c_w1 [%02x] = %02x", reg, val);
  1396. switch (sd->sensor) {
  1397. case SENSOR_ADCM1700:
  1398. case SENSOR_OM6802:
  1399. case SENSOR_GC0307: /* i2c command = a0 (100 kHz) */
  1400. gspca_dev->usb_buf[0] = 0x80 | (2 << 4);
  1401. break;
  1402. default: /* i2c command = a1 (400 kHz) */
  1403. gspca_dev->usb_buf[0] = 0x81 | (2 << 4);
  1404. break;
  1405. }
  1406. gspca_dev->usb_buf[1] = sd->i2c_addr;
  1407. gspca_dev->usb_buf[2] = reg;
  1408. gspca_dev->usb_buf[3] = val;
  1409. gspca_dev->usb_buf[4] = 0;
  1410. gspca_dev->usb_buf[5] = 0;
  1411. gspca_dev->usb_buf[6] = 0;
  1412. gspca_dev->usb_buf[7] = 0x10;
  1413. ret = usb_control_msg(gspca_dev->dev,
  1414. usb_sndctrlpipe(gspca_dev->dev, 0),
  1415. 0x08,
  1416. USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
  1417. 0x08, /* value = i2c */
  1418. 0,
  1419. gspca_dev->usb_buf, 8,
  1420. 500);
  1421. if (ret < 0) {
  1422. pr_err("i2c_w1 err %d\n", ret);
  1423. gspca_dev->usb_err = ret;
  1424. }
  1425. }
  1426. /* I2C write 8 bytes */
  1427. static void i2c_w8(struct gspca_dev *gspca_dev,
  1428. const u8 *buffer)
  1429. {
  1430. int ret;
  1431. if (gspca_dev->usb_err < 0)
  1432. return;
  1433. PDEBUG(D_USBO, "i2c_w8 [%02x] = %02x ..",
  1434. buffer[2], buffer[3]);
  1435. memcpy(gspca_dev->usb_buf, buffer, 8);
  1436. ret = usb_control_msg(gspca_dev->dev,
  1437. usb_sndctrlpipe(gspca_dev->dev, 0),
  1438. 0x08,
  1439. USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
  1440. 0x08, 0, /* value, index */
  1441. gspca_dev->usb_buf, 8,
  1442. 500);
  1443. msleep(2);
  1444. if (ret < 0) {
  1445. pr_err("i2c_w8 err %d\n", ret);
  1446. gspca_dev->usb_err = ret;
  1447. }
  1448. }
  1449. /* sensor read 'len' (1..5) bytes in gspca_dev->usb_buf */
  1450. static void i2c_r(struct gspca_dev *gspca_dev, u8 reg, int len)
  1451. {
  1452. struct sd *sd = (struct sd *) gspca_dev;
  1453. u8 mode[8];
  1454. switch (sd->sensor) {
  1455. case SENSOR_ADCM1700:
  1456. case SENSOR_OM6802:
  1457. case SENSOR_GC0307: /* i2c command = a0 (100 kHz) */
  1458. mode[0] = 0x80 | 0x10;
  1459. break;
  1460. default: /* i2c command = 91 (400 kHz) */
  1461. mode[0] = 0x81 | 0x10;
  1462. break;
  1463. }
  1464. mode[1] = sd->i2c_addr;
  1465. mode[2] = reg;
  1466. mode[3] = 0;
  1467. mode[4] = 0;
  1468. mode[5] = 0;
  1469. mode[6] = 0;
  1470. mode[7] = 0x10;
  1471. i2c_w8(gspca_dev, mode);
  1472. msleep(2);
  1473. mode[0] = (mode[0] & 0x81) | (len << 4) | 0x02;
  1474. mode[2] = 0;
  1475. i2c_w8(gspca_dev, mode);
  1476. msleep(2);
  1477. reg_r(gspca_dev, 0x0a, 5);
  1478. }
  1479. static void i2c_w_seq(struct gspca_dev *gspca_dev,
  1480. const u8 (*data)[8])
  1481. {
  1482. while ((*data)[0] != 0) {
  1483. if ((*data)[0] != DELAY)
  1484. i2c_w8(gspca_dev, *data);
  1485. else
  1486. msleep((*data)[1]);
  1487. data++;
  1488. }
  1489. }
  1490. /* check the ID of the hv7131 sensor */
  1491. /* this sequence is needed because it activates the sensor */
  1492. static void hv7131r_probe(struct gspca_dev *gspca_dev)
  1493. {
  1494. i2c_w1(gspca_dev, 0x02, 0); /* sensor wakeup */
  1495. msleep(10);
  1496. reg_w1(gspca_dev, 0x02, 0x66); /* Gpio on */
  1497. msleep(10);
  1498. i2c_r(gspca_dev, 0, 5); /* read sensor id */
  1499. if (gspca_dev->usb_buf[0] == 0x02 /* chip ID (02 is R) */
  1500. && gspca_dev->usb_buf[1] == 0x09
  1501. && gspca_dev->usb_buf[2] == 0x01) {
  1502. PDEBUG(D_PROBE, "Sensor HV7131R found");
  1503. return;
  1504. }
  1505. pr_warn("Erroneous HV7131R ID 0x%02x 0x%02x 0x%02x\n",
  1506. gspca_dev->usb_buf[0], gspca_dev->usb_buf[1],
  1507. gspca_dev->usb_buf[2]);
  1508. }
  1509. static void mi0360_probe(struct gspca_dev *gspca_dev)
  1510. {
  1511. struct sd *sd = (struct sd *) gspca_dev;
  1512. int i, j;
  1513. u16 val = 0;
  1514. static const u8 probe_tb[][4][8] = {
  1515. { /* mi0360 */
  1516. {0xb0, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10},
  1517. {0x90, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
  1518. {0xa2, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
  1519. {0xb0, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10}
  1520. },
  1521. { /* mt9v111 */
  1522. {0xb0, 0x5c, 0x01, 0x00, 0x04, 0x00, 0x00, 0x10},
  1523. {0x90, 0x5c, 0x36, 0x00, 0x00, 0x00, 0x00, 0x10},
  1524. {0xa2, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10},
  1525. {}
  1526. },
  1527. };
  1528. for (i = 0; i < ARRAY_SIZE(probe_tb); i++) {
  1529. reg_w1(gspca_dev, 0x17, 0x62);
  1530. reg_w1(gspca_dev, 0x01, 0x08);
  1531. for (j = 0; j < 3; j++)
  1532. i2c_w8(gspca_dev, probe_tb[i][j]);
  1533. msleep(2);
  1534. reg_r(gspca_dev, 0x0a, 5);
  1535. val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
  1536. if (probe_tb[i][3][0] != 0)
  1537. i2c_w8(gspca_dev, probe_tb[i][3]);
  1538. reg_w1(gspca_dev, 0x01, 0x29);
  1539. reg_w1(gspca_dev, 0x17, 0x42);
  1540. if (val != 0xffff)
  1541. break;
  1542. }
  1543. if (gspca_dev->usb_err < 0)
  1544. return;
  1545. switch (val) {
  1546. case 0x8221:
  1547. PDEBUG(D_PROBE, "Sensor mi0360b");
  1548. sd->sensor = SENSOR_MI0360B;
  1549. break;
  1550. case 0x823a:
  1551. PDEBUG(D_PROBE, "Sensor mt9v111");
  1552. sd->sensor = SENSOR_MT9V111;
  1553. break;
  1554. case 0x8243:
  1555. PDEBUG(D_PROBE, "Sensor mi0360");
  1556. break;
  1557. default:
  1558. PDEBUG(D_PROBE, "Unknown sensor %04x - forced to mi0360", val);
  1559. break;
  1560. }
  1561. }
  1562. static void ov7630_probe(struct gspca_dev *gspca_dev)
  1563. {
  1564. struct sd *sd = (struct sd *) gspca_dev;
  1565. u16 val;
  1566. /* check ov76xx */
  1567. reg_w1(gspca_dev, 0x17, 0x62);
  1568. reg_w1(gspca_dev, 0x01, 0x08);
  1569. sd->i2c_addr = 0x21;
  1570. i2c_r(gspca_dev, 0x0a, 2);
  1571. val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
  1572. reg_w1(gspca_dev, 0x01, 0x29);
  1573. reg_w1(gspca_dev, 0x17, 0x42);
  1574. if (gspca_dev->usb_err < 0)
  1575. return;
  1576. if (val == 0x7628) { /* soi768 */
  1577. sd->sensor = SENSOR_SOI768;
  1578. /*fixme: only valid for 0c45:613e?*/
  1579. gspca_dev->cam.input_flags =
  1580. V4L2_IN_ST_VFLIP | V4L2_IN_ST_HFLIP;
  1581. PDEBUG(D_PROBE, "Sensor soi768");
  1582. return;
  1583. }
  1584. PDEBUG(D_PROBE, "Sensor ov%04x", val);
  1585. }
  1586. static void ov7648_probe(struct gspca_dev *gspca_dev)
  1587. {
  1588. struct sd *sd = (struct sd *) gspca_dev;
  1589. u16 val;
  1590. /* check ov76xx */
  1591. reg_w1(gspca_dev, 0x17, 0x62);
  1592. reg_w1(gspca_dev, 0x01, 0x08);
  1593. sd->i2c_addr = 0x21;
  1594. i2c_r(gspca_dev, 0x0a, 2);
  1595. val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
  1596. reg_w1(gspca_dev, 0x01, 0x29);
  1597. reg_w1(gspca_dev, 0x17, 0x42);
  1598. if ((val & 0xff00) == 0x7600) { /* ov76xx */
  1599. PDEBUG(D_PROBE, "Sensor ov%04x", val);
  1600. return;
  1601. }
  1602. /* check po1030 */
  1603. reg_w1(gspca_dev, 0x17, 0x62);
  1604. reg_w1(gspca_dev, 0x01, 0x08);
  1605. sd->i2c_addr = 0x6e;
  1606. i2c_r(gspca_dev, 0x00, 2);
  1607. val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
  1608. reg_w1(gspca_dev, 0x01, 0x29);
  1609. reg_w1(gspca_dev, 0x17, 0x42);
  1610. if (gspca_dev->usb_err < 0)
  1611. return;
  1612. if (val == 0x1030) { /* po1030 */
  1613. PDEBUG(D_PROBE, "Sensor po1030");
  1614. sd->sensor = SENSOR_PO1030;
  1615. return;
  1616. }
  1617. pr_err("Unknown sensor %04x\n", val);
  1618. }
  1619. /* 0c45:6142 sensor may be po2030n, gc0305 or gc0307 */
  1620. static void po2030n_probe(struct gspca_dev *gspca_dev)
  1621. {
  1622. struct sd *sd = (struct sd *) gspca_dev;
  1623. u16 val;
  1624. /* check gc0307 */
  1625. reg_w1(gspca_dev, 0x17, 0x62);
  1626. reg_w1(gspca_dev, 0x01, 0x08);
  1627. reg_w1(gspca_dev, 0x02, 0x22);
  1628. sd->i2c_addr = 0x21;
  1629. i2c_r(gspca_dev, 0x00, 1);
  1630. val = gspca_dev->usb_buf[4];
  1631. reg_w1(gspca_dev, 0x01, 0x29); /* reset */
  1632. reg_w1(gspca_dev, 0x17, 0x42);
  1633. if (val == 0x99) { /* gc0307 (?) */
  1634. PDEBUG(D_PROBE, "Sensor gc0307");
  1635. sd->sensor = SENSOR_GC0307;
  1636. return;
  1637. }
  1638. /* check po2030n */
  1639. reg_w1(gspca_dev, 0x17, 0x62);
  1640. reg_w1(gspca_dev, 0x01, 0x0a);
  1641. sd->i2c_addr = 0x6e;
  1642. i2c_r(gspca_dev, 0x00, 2);
  1643. val = (gspca_dev->usb_buf[3] << 8) | gspca_dev->usb_buf[4];
  1644. reg_w1(gspca_dev, 0x01, 0x29);
  1645. reg_w1(gspca_dev, 0x17, 0x42);
  1646. if (gspca_dev->usb_err < 0)
  1647. return;
  1648. if (val == 0x2030) {
  1649. PDEBUG(D_PROBE, "Sensor po2030n");
  1650. /* sd->sensor = SENSOR_PO2030N; */
  1651. } else {
  1652. pr_err("Unknown sensor ID %04x\n", val);
  1653. }
  1654. }
  1655. /* this function is called at probe time */
  1656. static int sd_config(struct gspca_dev *gspca_dev,
  1657. const struct usb_device_id *id)
  1658. {
  1659. struct sd *sd = (struct sd *) gspca_dev;
  1660. struct cam *cam;
  1661. sd->bridge = id->driver_info >> 16;
  1662. sd->sensor = id->driver_info >> 8;
  1663. sd->flags = id->driver_info;
  1664. cam = &gspca_dev->cam;
  1665. if (sd->sensor == SENSOR_ADCM1700) {
  1666. cam->cam_mode = cif_mode;
  1667. cam->nmodes = ARRAY_SIZE(cif_mode);
  1668. } else {
  1669. cam->cam_mode = vga_mode;
  1670. cam->nmodes = ARRAY_SIZE(vga_mode);
  1671. }
  1672. cam->npkt = 24; /* 24 packets per ISOC message */
  1673. cam->ctrls = sd->ctrls;
  1674. sd->ag_cnt = -1;
  1675. sd->quality = QUALITY_DEF;
  1676. INIT_WORK(&sd->work, qual_upd);
  1677. return 0;
  1678. }
  1679. /* this function is called at probe and resume time */
  1680. static int sd_init(struct gspca_dev *gspca_dev)
  1681. {
  1682. struct sd *sd = (struct sd *) gspca_dev;
  1683. const u8 *sn9c1xx;
  1684. u8 regGpio[] = { 0x29, 0x70 }; /* no audio */
  1685. u8 regF1;
  1686. /* setup a selector by bridge */
  1687. reg_w1(gspca_dev, 0xf1, 0x01);
  1688. reg_r(gspca_dev, 0x00, 1);
  1689. reg_w1(gspca_dev, 0xf1, 0x00);
  1690. reg_r(gspca_dev, 0x00, 1); /* get sonix chip id */
  1691. regF1 = gspca_dev->usb_buf[0];
  1692. if (gspca_dev->usb_err < 0)
  1693. return gspca_dev->usb_err;
  1694. PDEBUG(D_PROBE, "Sonix chip id: %02x", regF1);
  1695. if (gspca_dev->audio)
  1696. regGpio[1] |= 0x04; /* with audio */
  1697. switch (sd->bridge) {
  1698. case BRIDGE_SN9C102P:
  1699. case BRIDGE_SN9C105:
  1700. if (regF1 != 0x11)
  1701. return -ENODEV;
  1702. break;
  1703. default:
  1704. /* case BRIDGE_SN9C110: */
  1705. /* case BRIDGE_SN9C120: */
  1706. if (regF1 != 0x12)
  1707. return -ENODEV;
  1708. }
  1709. switch (sd->sensor) {
  1710. case SENSOR_MI0360:
  1711. mi0360_probe(gspca_dev);
  1712. break;
  1713. case SENSOR_OV7630:
  1714. ov7630_probe(gspca_dev);
  1715. break;
  1716. case SENSOR_OV7648:
  1717. ov7648_probe(gspca_dev);
  1718. break;
  1719. case SENSOR_PO2030N:
  1720. po2030n_probe(gspca_dev);
  1721. break;
  1722. }
  1723. switch (sd->bridge) {
  1724. case BRIDGE_SN9C102P:
  1725. reg_w1(gspca_dev, 0x02, regGpio[1]);
  1726. break;
  1727. default:
  1728. reg_w(gspca_dev, 0x01, regGpio, 2);
  1729. break;
  1730. }
  1731. if (sd->sensor == SENSOR_OM6802)
  1732. sd->ctrls[SHARPNESS].def = 0x10;
  1733. /* Note we do not disable the sensor clock here (power saving mode),
  1734. as that also disables the button on the cam. */
  1735. reg_w1(gspca_dev, 0xf1, 0x00);
  1736. /* set the i2c address */
  1737. sn9c1xx = sn_tb[sd->sensor];
  1738. sd->i2c_addr = sn9c1xx[9];
  1739. gspca_dev->ctrl_dis = ctrl_dis[sd->sensor];
  1740. if (!(sd->flags & F_ILLUM))
  1741. gspca_dev->ctrl_dis |= (1 << ILLUM);
  1742. return gspca_dev->usb_err;
  1743. }
  1744. static u32 setexposure(struct gspca_dev *gspca_dev,
  1745. u32 expo)
  1746. {
  1747. struct sd *sd = (struct sd *) gspca_dev;
  1748. switch (sd->sensor) {
  1749. case SENSOR_GC0307: {
  1750. int a, b;
  1751. /* expo = 0..255 -> a = 19..43 */
  1752. a = 19 + expo * 25 / 256;
  1753. i2c_w1(gspca_dev, 0x68, a);
  1754. a -= 12;
  1755. b = a * a * 4; /* heuristic */
  1756. i2c_w1(gspca_dev, 0x03, b >> 8);
  1757. i2c_w1(gspca_dev, 0x04, b);
  1758. break;
  1759. }
  1760. case SENSOR_HV7131R: {
  1761. u8 Expodoit[] =
  1762. { 0xc1, 0x11, 0x25, 0x00, 0x00, 0x00, 0x00, 0x16 };
  1763. Expodoit[3] = expo >> 16;
  1764. Expodoit[4] = expo >> 8;
  1765. Expodoit[5] = expo;
  1766. i2c_w8(gspca_dev, Expodoit);
  1767. break;
  1768. }
  1769. case SENSOR_MI0360:
  1770. case SENSOR_MI0360B: {
  1771. u8 expoMi[] = /* exposure 0x0635 -> 4 fp/s 0x10 */
  1772. { 0xb1, 0x5d, 0x09, 0x00, 0x00, 0x00, 0x00, 0x16 };
  1773. static const u8 doit[] = /* update sensor */
  1774. { 0xb1, 0x5d, 0x07, 0x00, 0x03, 0x00, 0x00, 0x10 };
  1775. static const u8 sensorgo[] = /* sensor on */
  1776. { 0xb1, 0x5d, 0x07, 0x00, 0x02, 0x00, 0x00, 0x10 };
  1777. if (expo > 0x0635)
  1778. expo = 0x0635;
  1779. else if (expo < 0x0001)
  1780. expo = 0x0001;
  1781. expoMi[3] = expo >> 8;
  1782. expoMi[4] = expo;
  1783. i2c_w8(gspca_dev, expoMi);
  1784. i2c_w8(gspca_dev, doit);
  1785. i2c_w8(gspca_dev, sensorgo);
  1786. break;
  1787. }
  1788. case SENSOR_MO4000: {
  1789. u8 expoMof[] =
  1790. { 0xa1, 0x21, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x10 };
  1791. u8 expoMo10[] =
  1792. { 0xa1, 0x21, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10 };
  1793. static const u8 gainMo[] =
  1794. { 0xa1, 0x21, 0x00, 0x10, 0x00, 0x00, 0x00, 0x1d };
  1795. if (expo > 0x1fff)
  1796. expo = 0x1fff;
  1797. else if (expo < 0x0001)
  1798. expo = 0x0001;
  1799. expoMof[3] = (expo & 0x03fc) >> 2;
  1800. i2c_w8(gspca_dev, expoMof);
  1801. expoMo10[3] = ((expo & 0x1c00) >> 10)
  1802. | ((expo & 0x0003) << 4);
  1803. i2c_w8(gspca_dev, expoMo10);
  1804. i2c_w8(gspca_dev, gainMo);
  1805. PDEBUG(D_FRAM, "set exposure %d",
  1806. ((expoMo10[3] & 0x07) << 10)
  1807. | (expoMof[3] << 2)
  1808. | ((expoMo10[3] & 0x30) >> 4));
  1809. break;
  1810. }
  1811. case SENSOR_MT9V111: {
  1812. u8 expo_c1[] =
  1813. { 0xb1, 0x5c, 0x09, 0x00, 0x00, 0x00, 0x00, 0x10 };
  1814. if (expo > 0x0390)
  1815. expo = 0x0390;
  1816. else if (expo < 0x0060)
  1817. expo = 0x0060;
  1818. expo_c1[3] = expo >> 8;
  1819. expo_c1[4] = expo;
  1820. i2c_w8(gspca_dev, expo_c1);
  1821. break;
  1822. }
  1823. case SENSOR_OM6802: {
  1824. u8 gainOm[] =
  1825. { 0xa0, 0x34, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x10 };
  1826. /* preset AGC - works when AutoExpo = off */
  1827. if (expo > 0x03ff)
  1828. expo = 0x03ff;
  1829. if (expo < 0x0001)
  1830. expo = 0x0001;
  1831. gainOm[3] = expo >> 2;
  1832. i2c_w8(gspca_dev, gainOm);
  1833. reg_w1(gspca_dev, 0x96, expo >> 5);
  1834. PDEBUG(D_FRAM, "set exposure %d", gainOm[3]);
  1835. break;
  1836. }
  1837. }
  1838. return expo;
  1839. }
  1840. static void setbrightness(struct gspca_dev *gspca_dev)
  1841. {
  1842. struct sd *sd = (struct sd *) gspca_dev;
  1843. unsigned int expo;
  1844. int brightness;
  1845. u8 k2;
  1846. brightness = sd->ctrls[BRIGHTNESS].val;
  1847. k2 = (brightness - 0x80) >> 2;
  1848. switch (sd->sensor) {
  1849. case SENSOR_ADCM1700:
  1850. if (k2 > 0x1f)
  1851. k2 = 0; /* only positive Y offset */
  1852. break;
  1853. case SENSOR_HV7131R:
  1854. expo = brightness << 12;
  1855. if (expo > 0x002dc6c0)
  1856. expo = 0x002dc6c0;
  1857. else if (expo < 0x02a0)
  1858. expo = 0x02a0;
  1859. sd->exposure = setexposure(gspca_dev, expo);
  1860. break;
  1861. case SENSOR_MI0360:
  1862. case SENSOR_MO4000:
  1863. expo = brightness << 4;
  1864. sd->exposure = setexposure(gspca_dev, expo);
  1865. break;
  1866. case SENSOR_MI0360B:
  1867. expo = brightness << 2;
  1868. sd->exposure = setexposure(gspca_dev, expo);
  1869. break;
  1870. case SENSOR_GC0307:
  1871. expo = brightness;
  1872. sd->exposure = setexposure(gspca_dev, expo);
  1873. return; /* don't set the Y offset */
  1874. case SENSOR_MT9V111:
  1875. expo = brightness << 2;
  1876. sd->exposure = setexposure(gspca_dev, expo);
  1877. return; /* don't set the Y offset */
  1878. case SENSOR_OM6802:
  1879. expo = brightness << 2;
  1880. sd->exposure = setexposure(gspca_dev, expo);
  1881. return; /* Y offset already set */
  1882. }
  1883. reg_w1(gspca_dev, 0x96, k2); /* color matrix Y offset */
  1884. }
  1885. static void setcontrast(struct gspca_dev *gspca_dev)
  1886. {
  1887. struct sd *sd = (struct sd *) gspca_dev;
  1888. u8 k2;
  1889. u8 contrast[6];
  1890. k2 = sd->ctrls[CONTRAST].val * 37 / (CONTRAST_MAX + 1)
  1891. + 37; /* 37..73 */
  1892. contrast[0] = (k2 + 1) / 2; /* red */
  1893. contrast[1] = 0;
  1894. contrast[2] = k2; /* green */
  1895. contrast[3] = 0;
  1896. contrast[4] = k2 / 5; /* blue */
  1897. contrast[5] = 0;
  1898. reg_w(gspca_dev, 0x84, contrast, sizeof contrast);
  1899. }
  1900. static void setcolors(struct gspca_dev *gspca_dev)
  1901. {
  1902. struct sd *sd = (struct sd *) gspca_dev;
  1903. int i, v, colors;
  1904. const s16 *uv;
  1905. u8 reg8a[12]; /* U & V gains */
  1906. static const s16 uv_com[6] = { /* same as reg84 in signed decimal */
  1907. -24, -38, 64, /* UR UG UB */
  1908. 62, -51, -9 /* VR VG VB */
  1909. };
  1910. static const s16 uv_mi0360b[6] = {
  1911. -20, -38, 64, /* UR UG UB */
  1912. 60, -51, -9 /* VR VG VB */
  1913. };
  1914. colors = sd->ctrls[COLORS].val;
  1915. if (sd->sensor == SENSOR_MI0360B)
  1916. uv = uv_mi0360b;
  1917. else
  1918. uv = uv_com;
  1919. for (i = 0; i < 6; i++) {
  1920. v = uv[i] * colors / COLORS_DEF;
  1921. reg8a[i * 2] = v;
  1922. reg8a[i * 2 + 1] = (v >> 8) & 0x0f;
  1923. }
  1924. reg_w(gspca_dev, 0x8a, reg8a, sizeof reg8a);
  1925. }
  1926. static void setredblue(struct gspca_dev *gspca_dev)
  1927. {
  1928. struct sd *sd = (struct sd *) gspca_dev;
  1929. reg_w1(gspca_dev, 0x05, sd->ctrls[RED].val);
  1930. /* reg_w1(gspca_dev, 0x07, 32); */
  1931. reg_w1(gspca_dev, 0x06, sd->ctrls[BLUE].val);
  1932. }
  1933. static void setgamma(struct gspca_dev *gspca_dev)
  1934. {
  1935. struct sd *sd = (struct sd *) gspca_dev;
  1936. int i, val;
  1937. u8 gamma[17];
  1938. const u8 *gamma_base;
  1939. static const u8 delta[17] = {
  1940. 0x00, 0x14, 0x1c, 0x1c, 0x1c, 0x1c, 0x1b, 0x1a,
  1941. 0x18, 0x13, 0x10, 0x0e, 0x08, 0x07, 0x04, 0x02, 0x00
  1942. };
  1943. switch (sd->sensor) {
  1944. case SENSOR_ADCM1700:
  1945. gamma_base = gamma_spec_0;
  1946. break;
  1947. case SENSOR_HV7131R:
  1948. case SENSOR_MI0360B:
  1949. case SENSOR_MT9V111:
  1950. gamma_base = gamma_spec_1;
  1951. break;
  1952. case SENSOR_GC0307:
  1953. gamma_base = gamma_spec_2;
  1954. break;
  1955. case SENSOR_SP80708:
  1956. gamma_base = gamma_spec_3;
  1957. break;
  1958. default:
  1959. gamma_base = gamma_def;
  1960. break;
  1961. }
  1962. val = sd->ctrls[GAMMA].val;
  1963. for (i = 0; i < sizeof gamma; i++)
  1964. gamma[i] = gamma_base[i]
  1965. + delta[i] * (val - GAMMA_DEF) / 32;
  1966. reg_w(gspca_dev, 0x20, gamma, sizeof gamma);
  1967. }
  1968. static void setautogain(struct gspca_dev *gspca_dev)
  1969. {
  1970. struct sd *sd = (struct sd *) gspca_dev;
  1971. if (gspca_dev->ctrl_dis & (1 << AUTOGAIN))
  1972. return;
  1973. switch (sd->sensor) {
  1974. case SENSOR_OV7630:
  1975. case SENSOR_OV7648: {
  1976. u8 comb;
  1977. if (sd->sensor == SENSOR_OV7630)
  1978. comb = 0xc0;
  1979. else
  1980. comb = 0xa0;
  1981. if (sd->ctrls[AUTOGAIN].val)
  1982. comb |= 0x03;
  1983. i2c_w1(&sd->gspca_dev, 0x13, comb);
  1984. return;
  1985. }
  1986. }
  1987. if (sd->ctrls[AUTOGAIN].val)
  1988. sd->ag_cnt = AG_CNT_START;
  1989. else
  1990. sd->ag_cnt = -1;
  1991. }
  1992. static void sethvflip(struct gspca_dev *gspca_dev)
  1993. {
  1994. struct sd *sd = (struct sd *) gspca_dev;
  1995. u8 comn;
  1996. switch (sd->sensor) {
  1997. case SENSOR_HV7131R:
  1998. comn = 0x18; /* clkdiv = 1, ablcen = 1 */
  1999. if (sd->ctrls[VFLIP].val)
  2000. comn |= 0x01;
  2001. i2c_w1(gspca_dev, 0x01, comn); /* sctra */
  2002. break;
  2003. case SENSOR_OV7630:
  2004. comn = 0x02;
  2005. if (!sd->ctrls[VFLIP].val)
  2006. comn |= 0x80;
  2007. i2c_w1(gspca_dev, 0x75, comn);
  2008. break;
  2009. case SENSOR_OV7648:
  2010. comn = 0x06;
  2011. if (sd->ctrls[VFLIP].val)
  2012. comn |= 0x80;
  2013. i2c_w1(gspca_dev, 0x75, comn);
  2014. break;
  2015. case SENSOR_PO2030N:
  2016. /* Reg. 0x1E: Timing Generator Control Register 2 (Tgcontrol2)
  2017. * (reset value: 0x0A)
  2018. * bit7: HM: Horizontal Mirror: 0: disable, 1: enable
  2019. * bit6: VM: Vertical Mirror: 0: disable, 1: enable
  2020. * bit5: ST: Shutter Selection: 0: electrical, 1: mechanical
  2021. * bit4: FT: Single Frame Transfer: 0: disable, 1: enable
  2022. * bit3-0: X
  2023. */
  2024. comn = 0x0a;
  2025. if (sd->ctrls[HFLIP].val)
  2026. comn |= 0x80;
  2027. if (sd->ctrls[VFLIP].val)
  2028. comn |= 0x40;
  2029. i2c_w1(&sd->gspca_dev, 0x1e, comn);
  2030. break;
  2031. }
  2032. }
  2033. static void setsharpness(struct gspca_dev *gspca_dev)
  2034. {
  2035. struct sd *sd = (struct sd *) gspca_dev;
  2036. reg_w1(gspca_dev, 0x99, sd->ctrls[SHARPNESS].val);
  2037. }
  2038. static void setillum(struct gspca_dev *gspca_dev)
  2039. {
  2040. struct sd *sd = (struct sd *) gspca_dev;
  2041. if (gspca_dev->ctrl_dis & (1 << ILLUM))
  2042. return;
  2043. switch (sd->sensor) {
  2044. case SENSOR_ADCM1700:
  2045. reg_w1(gspca_dev, 0x02, /* gpio */
  2046. sd->ctrls[ILLUM].val ? 0x64 : 0x60);
  2047. break;
  2048. case SENSOR_MT9V111:
  2049. reg_w1(gspca_dev, 0x02,
  2050. sd->ctrls[ILLUM].val ? 0x77 : 0x74);
  2051. /* should have been: */
  2052. /* 0x55 : 0x54); * 370i */
  2053. /* 0x66 : 0x64); * Clip */
  2054. break;
  2055. }
  2056. }
  2057. static void setfreq(struct gspca_dev *gspca_dev)
  2058. {
  2059. struct sd *sd = (struct sd *) gspca_dev;
  2060. if (gspca_dev->ctrl_dis & (1 << FREQ))
  2061. return;
  2062. if (sd->sensor == SENSOR_OV7660) {
  2063. u8 com8;
  2064. com8 = 0xdf; /* auto gain/wb/expo */
  2065. switch (sd->ctrls[FREQ].val) {
  2066. case 0: /* Banding filter disabled */
  2067. i2c_w1(gspca_dev, 0x13, com8 | 0x20);
  2068. break;
  2069. case 1: /* 50 hz */
  2070. i2c_w1(gspca_dev, 0x13, com8);
  2071. i2c_w1(gspca_dev, 0x3b, 0x0a);
  2072. break;
  2073. case 2: /* 60 hz */
  2074. i2c_w1(gspca_dev, 0x13, com8);
  2075. i2c_w1(gspca_dev, 0x3b, 0x02);
  2076. break;
  2077. }
  2078. } else {
  2079. u8 reg2a = 0, reg2b = 0, reg2d = 0;
  2080. /* Get reg2a / reg2d base values */
  2081. switch (sd->sensor) {
  2082. case SENSOR_OV7630:
  2083. reg2a = 0x08;
  2084. reg2d = 0x01;
  2085. break;
  2086. case SENSOR_OV7648:
  2087. reg2a = 0x11;
  2088. reg2d = 0x81;
  2089. break;
  2090. }
  2091. switch (sd->ctrls[FREQ].val) {
  2092. case 0: /* Banding filter disabled */
  2093. break;
  2094. case 1: /* 50 hz (filter on and framerate adj) */
  2095. reg2a |= 0x80;
  2096. reg2b = 0xac;
  2097. reg2d |= 0x04;
  2098. break;
  2099. case 2: /* 60 hz (filter on, no framerate adj) */
  2100. reg2a |= 0x80;
  2101. reg2d |= 0x04;
  2102. break;
  2103. }
  2104. i2c_w1(gspca_dev, 0x2a, reg2a);
  2105. i2c_w1(gspca_dev, 0x2b, reg2b);
  2106. i2c_w1(gspca_dev, 0x2d, reg2d);
  2107. }
  2108. }
  2109. static void setjpegqual(struct gspca_dev *gspca_dev)
  2110. {
  2111. struct sd *sd = (struct sd *) gspca_dev;
  2112. jpeg_set_qual(sd->jpeg_hdr, sd->quality);
  2113. #if USB_BUF_SZ < 64
  2114. #error "No room enough in usb_buf for quantization table"
  2115. #endif
  2116. memcpy(gspca_dev->usb_buf, &sd->jpeg_hdr[JPEG_QT0_OFFSET], 64);
  2117. usb_control_msg(gspca_dev->dev,
  2118. usb_sndctrlpipe(gspca_dev->dev, 0),
  2119. 0x08,
  2120. USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
  2121. 0x0100, 0,
  2122. gspca_dev->usb_buf, 64,
  2123. 500);
  2124. memcpy(gspca_dev->usb_buf, &sd->jpeg_hdr[JPEG_QT1_OFFSET], 64);
  2125. usb_control_msg(gspca_dev->dev,
  2126. usb_sndctrlpipe(gspca_dev->dev, 0),
  2127. 0x08,
  2128. USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
  2129. 0x0140, 0,
  2130. gspca_dev->usb_buf, 64,
  2131. 500);
  2132. sd->reg18 ^= 0x40;
  2133. reg_w1(gspca_dev, 0x18, sd->reg18);
  2134. }
  2135. /* JPEG quality update */
  2136. /* This function is executed from a work queue. */
  2137. static void qual_upd(struct work_struct *work)
  2138. {
  2139. struct sd *sd = container_of(work, struct sd, work);
  2140. struct gspca_dev *gspca_dev = &sd->gspca_dev;
  2141. mutex_lock(&gspca_dev->usb_lock);
  2142. PDEBUG(D_STREAM, "qual_upd %d%%", sd->quality);
  2143. setjpegqual(gspca_dev);
  2144. mutex_unlock(&gspca_dev->usb_lock);
  2145. }
  2146. /* -- start the camera -- */
  2147. static int sd_start(struct gspca_dev *gspca_dev)
  2148. {
  2149. struct sd *sd = (struct sd *) gspca_dev;
  2150. int i;
  2151. u8 reg01, reg17;
  2152. u8 reg0102[2];
  2153. const u8 *sn9c1xx;
  2154. const u8 (*init)[8];
  2155. const u8 *reg9a;
  2156. int mode;
  2157. static const u8 reg9a_def[] =
  2158. {0x00, 0x40, 0x20, 0x00, 0x00, 0x00};
  2159. static const u8 reg9a_spec[] =
  2160. {0x00, 0x40, 0x38, 0x30, 0x00, 0x20};
  2161. static const u8 regd4[] = {0x60, 0x00, 0x00};
  2162. static const u8 C0[] = { 0x2d, 0x2d, 0x3a, 0x05, 0x04, 0x3f };
  2163. static const u8 CA[] = { 0x28, 0xd8, 0x14, 0xec };
  2164. static const u8 CA_adcm1700[] =
  2165. { 0x14, 0xec, 0x0a, 0xf6 };
  2166. static const u8 CA_po2030n[] =
  2167. { 0x1e, 0xe2, 0x14, 0xec };
  2168. static const u8 CE[] = { 0x32, 0xdd, 0x2d, 0xdd }; /* MI0360 */
  2169. static const u8 CE_gc0307[] =
  2170. { 0x32, 0xce, 0x2d, 0xd3 };
  2171. static const u8 CE_ov76xx[] =
  2172. { 0x32, 0xdd, 0x32, 0xdd };
  2173. static const u8 CE_po2030n[] =
  2174. { 0x14, 0xe7, 0x1e, 0xdd };
  2175. /* create the JPEG header */
  2176. jpeg_define(sd->jpeg_hdr, gspca_dev->height, gspca_dev->width,
  2177. 0x21); /* JPEG 422 */
  2178. /* initialize the bridge */
  2179. sn9c1xx = sn_tb[sd->sensor];
  2180. /* sensor clock already enabled in sd_init */
  2181. /* reg_w1(gspca_dev, 0xf1, 0x00); */
  2182. reg01 = sn9c1xx[1];
  2183. if (sd->flags & F_PDN_INV)
  2184. reg01 ^= S_PDN_INV; /* power down inverted */
  2185. reg_w1(gspca_dev, 0x01, reg01);
  2186. /* configure gpio */
  2187. reg0102[0] = reg01;
  2188. reg0102[1] = sn9c1xx[2];
  2189. if (gspca_dev->audio)
  2190. reg0102[1] |= 0x04; /* keep the audio connection */
  2191. reg_w(gspca_dev, 0x01, reg0102, 2);
  2192. reg_w(gspca_dev, 0x08, &sn9c1xx[8], 2);
  2193. reg_w(gspca_dev, 0x17, &sn9c1xx[0x17], 5);
  2194. switch (sd->sensor) {
  2195. case SENSOR_GC0307:
  2196. case SENSOR_OV7660:
  2197. case SENSOR_PO1030:
  2198. case SENSOR_PO2030N:
  2199. case SENSOR_SOI768:
  2200. case SENSOR_SP80708:
  2201. reg9a = reg9a_spec;
  2202. break;
  2203. default:
  2204. reg9a = reg9a_def;
  2205. break;
  2206. }
  2207. reg_w(gspca_dev, 0x9a, reg9a, 6);
  2208. reg_w(gspca_dev, 0xd4, regd4, sizeof regd4);
  2209. reg_w(gspca_dev, 0x03, &sn9c1xx[3], 0x0f);
  2210. reg17 = sn9c1xx[0x17];
  2211. switch (sd->sensor) {
  2212. case SENSOR_GC0307:
  2213. msleep(50); /*fixme: is it useful? */
  2214. break;
  2215. case SENSOR_OM6802:
  2216. msleep(10);
  2217. reg_w1(gspca_dev, 0x02, 0x73);
  2218. reg17 |= SEN_CLK_EN;
  2219. reg_w1(gspca_dev, 0x17, reg17);
  2220. reg_w1(gspca_dev, 0x01, 0x22);
  2221. msleep(100);
  2222. reg01 = SCL_SEL_OD | S_PDN_INV;
  2223. reg17 &= ~MCK_SIZE_MASK;
  2224. reg17 |= 0x04; /* clock / 4 */
  2225. break;
  2226. }
  2227. reg01 |= SYS_SEL_48M;
  2228. reg_w1(gspca_dev, 0x01, reg01);
  2229. reg17 |= SEN_CLK_EN;
  2230. reg_w1(gspca_dev, 0x17, reg17);
  2231. reg01 &= ~S_PWR_DN; /* sensor power on */
  2232. reg_w1(gspca_dev, 0x01, reg01);
  2233. reg01 &= ~SYS_SEL_48M;
  2234. reg_w1(gspca_dev, 0x01, reg01);
  2235. switch (sd->sensor) {
  2236. case SENSOR_HV7131R:
  2237. hv7131r_probe(gspca_dev); /*fixme: is it useful? */
  2238. break;
  2239. case SENSOR_OM6802:
  2240. msleep(10);
  2241. reg_w1(gspca_dev, 0x01, reg01);
  2242. i2c_w8(gspca_dev, om6802_init0[0]);
  2243. i2c_w8(gspca_dev, om6802_init0[1]);
  2244. msleep(15);
  2245. reg_w1(gspca_dev, 0x02, 0x71);
  2246. msleep(150);
  2247. break;
  2248. case SENSOR_SP80708:
  2249. msleep(100);
  2250. reg_w1(gspca_dev, 0x02, 0x62);
  2251. break;
  2252. }
  2253. /* initialize the sensor */
  2254. i2c_w_seq(gspca_dev, sensor_init[sd->sensor]);
  2255. reg_w1(gspca_dev, 0x15, sn9c1xx[0x15]);
  2256. reg_w1(gspca_dev, 0x16, sn9c1xx[0x16]);
  2257. reg_w1(gspca_dev, 0x12, sn9c1xx[0x12]);
  2258. reg_w1(gspca_dev, 0x13, sn9c1xx[0x13]);
  2259. reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]);
  2260. if (sd->sensor == SENSOR_ADCM1700) {
  2261. reg_w1(gspca_dev, 0xd2, 0x3a); /* AE_H_SIZE = 116 */
  2262. reg_w1(gspca_dev, 0xd3, 0x30); /* AE_V_SIZE = 96 */
  2263. } else {
  2264. reg_w1(gspca_dev, 0xd2, 0x6a); /* AE_H_SIZE = 212 */
  2265. reg_w1(gspca_dev, 0xd3, 0x50); /* AE_V_SIZE = 160 */
  2266. }
  2267. reg_w1(gspca_dev, 0xc6, 0x00);
  2268. reg_w1(gspca_dev, 0xc7, 0x00);
  2269. if (sd->sensor == SENSOR_ADCM1700) {
  2270. reg_w1(gspca_dev, 0xc8, 0x2c); /* AW_H_STOP = 352 */
  2271. reg_w1(gspca_dev, 0xc9, 0x24); /* AW_V_STOP = 288 */
  2272. } else {
  2273. reg_w1(gspca_dev, 0xc8, 0x50); /* AW_H_STOP = 640 */
  2274. reg_w1(gspca_dev, 0xc9, 0x3c); /* AW_V_STOP = 480 */
  2275. }
  2276. reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]);
  2277. switch (sd->sensor) {
  2278. case SENSOR_OM6802:
  2279. /* case SENSOR_OV7648: * fixme: sometimes */
  2280. break;
  2281. default:
  2282. reg17 |= DEF_EN;
  2283. break;
  2284. }
  2285. reg_w1(gspca_dev, 0x17, reg17);
  2286. reg_w1(gspca_dev, 0x05, 0x00); /* red */
  2287. reg_w1(gspca_dev, 0x07, 0x00); /* green */
  2288. reg_w1(gspca_dev, 0x06, 0x00); /* blue */
  2289. reg_w1(gspca_dev, 0x14, sn9c1xx[0x14]);
  2290. setgamma(gspca_dev);
  2291. /*fixme: 8 times with all zeroes and 1 or 2 times with normal values */
  2292. for (i = 0; i < 8; i++)
  2293. reg_w(gspca_dev, 0x84, reg84, sizeof reg84);
  2294. switch (sd->sensor) {
  2295. case SENSOR_ADCM1700:
  2296. case SENSOR_OV7660:
  2297. case SENSOR_SP80708:
  2298. reg_w1(gspca_dev, 0x9a, 0x05);
  2299. break;
  2300. case SENSOR_GC0307:
  2301. case SENSOR_MT9V111:
  2302. case SENSOR_MI0360B:
  2303. reg_w1(gspca_dev, 0x9a, 0x07);
  2304. break;
  2305. case SENSOR_OV7630:
  2306. case SENSOR_OV7648:
  2307. reg_w1(gspca_dev, 0x9a, 0x0a);
  2308. break;
  2309. case SENSOR_PO2030N:
  2310. case SENSOR_SOI768:
  2311. reg_w1(gspca_dev, 0x9a, 0x06);
  2312. break;
  2313. default:
  2314. reg_w1(gspca_dev, 0x9a, 0x08);
  2315. break;
  2316. }
  2317. setsharpness(gspca_dev);
  2318. reg_w(gspca_dev, 0x84, reg84, sizeof reg84);
  2319. reg_w1(gspca_dev, 0x05, 0x20); /* red */
  2320. reg_w1(gspca_dev, 0x07, 0x20); /* green */
  2321. reg_w1(gspca_dev, 0x06, 0x20); /* blue */
  2322. init = NULL;
  2323. mode = gspca_dev->cam.cam_mode[gspca_dev->curr_mode].priv;
  2324. reg01 |= SYS_SEL_48M | V_TX_EN;
  2325. reg17 &= ~MCK_SIZE_MASK;
  2326. reg17 |= 0x02; /* clock / 2 */
  2327. switch (sd->sensor) {
  2328. case SENSOR_ADCM1700:
  2329. init = adcm1700_sensor_param1;
  2330. break;
  2331. case SENSOR_GC0307:
  2332. init = gc0307_sensor_param1;
  2333. break;
  2334. case SENSOR_HV7131R:
  2335. case SENSOR_MI0360:
  2336. if (!mode)
  2337. reg01 &= ~SYS_SEL_48M; /* 640x480: clk 24Mhz */
  2338. reg17 &= ~MCK_SIZE_MASK;
  2339. reg17 |= 0x01; /* clock / 1 */
  2340. break;
  2341. case SENSOR_MI0360B:
  2342. init = mi0360b_sensor_param1;
  2343. break;
  2344. case SENSOR_MO4000:
  2345. if (mode) { /* if 320x240 */
  2346. reg01 &= ~SYS_SEL_48M; /* clk 24Mz */
  2347. reg17 &= ~MCK_SIZE_MASK;
  2348. reg17 |= 0x01; /* clock / 1 */
  2349. }
  2350. break;
  2351. case SENSOR_MT9V111:
  2352. init = mt9v111_sensor_param1;
  2353. break;
  2354. case SENSOR_OM6802:
  2355. init = om6802_sensor_param1;
  2356. if (!mode) { /* if 640x480 */
  2357. reg17 &= ~MCK_SIZE_MASK;
  2358. reg17 |= 0x04; /* clock / 4 */
  2359. } else {
  2360. reg01 &= ~SYS_SEL_48M; /* clk 24Mz */
  2361. reg17 &= ~MCK_SIZE_MASK;
  2362. reg17 |= 0x02; /* clock / 2 */
  2363. }
  2364. break;
  2365. case SENSOR_OV7630:
  2366. init = ov7630_sensor_param1;
  2367. break;
  2368. case SENSOR_OV7648:
  2369. init = ov7648_sensor_param1;
  2370. reg17 &= ~MCK_SIZE_MASK;
  2371. reg17 |= 0x01; /* clock / 1 */
  2372. break;
  2373. case SENSOR_OV7660:
  2374. init = ov7660_sensor_param1;
  2375. break;
  2376. case SENSOR_PO1030:
  2377. init = po1030_sensor_param1;
  2378. break;
  2379. case SENSOR_PO2030N:
  2380. init = po2030n_sensor_param1;
  2381. break;
  2382. case SENSOR_SOI768:
  2383. init = soi768_sensor_param1;
  2384. break;
  2385. case SENSOR_SP80708:
  2386. init = sp80708_sensor_param1;
  2387. break;
  2388. }
  2389. /* more sensor initialization - param1 */
  2390. if (init != NULL) {
  2391. i2c_w_seq(gspca_dev, init);
  2392. /* init = NULL; */
  2393. }
  2394. reg_w(gspca_dev, 0xc0, C0, 6);
  2395. switch (sd->sensor) {
  2396. case SENSOR_ADCM1700:
  2397. case SENSOR_GC0307:
  2398. case SENSOR_SOI768:
  2399. reg_w(gspca_dev, 0xca, CA_adcm1700, 4);
  2400. break;
  2401. case SENSOR_PO2030N:
  2402. reg_w(gspca_dev, 0xca, CA_po2030n, 4);
  2403. break;
  2404. default:
  2405. reg_w(gspca_dev, 0xca, CA, 4);
  2406. break;
  2407. }
  2408. switch (sd->sensor) {
  2409. case SENSOR_ADCM1700:
  2410. case SENSOR_OV7630:
  2411. case SENSOR_OV7648:
  2412. case SENSOR_OV7660:
  2413. case SENSOR_SOI768:
  2414. reg_w(gspca_dev, 0xce, CE_ov76xx, 4);
  2415. break;
  2416. case SENSOR_GC0307:
  2417. reg_w(gspca_dev, 0xce, CE_gc0307, 4);
  2418. break;
  2419. case SENSOR_PO2030N:
  2420. reg_w(gspca_dev, 0xce, CE_po2030n, 4);
  2421. break;
  2422. default:
  2423. reg_w(gspca_dev, 0xce, CE, 4);
  2424. /* ?? {0x1e, 0xdd, 0x2d, 0xe7} */
  2425. break;
  2426. }
  2427. /* here change size mode 0 -> VGA; 1 -> CIF */
  2428. sd->reg18 = sn9c1xx[0x18] | (mode << 4) | 0x40;
  2429. reg_w1(gspca_dev, 0x18, sd->reg18);
  2430. setjpegqual(gspca_dev);
  2431. reg_w1(gspca_dev, 0x17, reg17);
  2432. reg_w1(gspca_dev, 0x01, reg01);
  2433. sd->reg01 = reg01;
  2434. sd->reg17 = reg17;
  2435. sethvflip(gspca_dev);
  2436. setbrightness(gspca_dev);
  2437. setcontrast(gspca_dev);
  2438. setcolors(gspca_dev);
  2439. setautogain(gspca_dev);
  2440. setfreq(gspca_dev);
  2441. sd->pktsz = sd->npkt = 0;
  2442. sd->nchg = sd->short_mark = 0;
  2443. sd->work_thread = create_singlethread_workqueue(MODULE_NAME);
  2444. return gspca_dev->usb_err;
  2445. }
  2446. static void sd_stopN(struct gspca_dev *gspca_dev)
  2447. {
  2448. struct sd *sd = (struct sd *) gspca_dev;
  2449. static const u8 stophv7131[] =
  2450. { 0xa1, 0x11, 0x02, 0x09, 0x00, 0x00, 0x00, 0x10 };
  2451. static const u8 stopmi0360[] =
  2452. { 0xb1, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10 };
  2453. static const u8 stopov7648[] =
  2454. { 0xa1, 0x21, 0x76, 0x20, 0x00, 0x00, 0x00, 0x10 };
  2455. static const u8 stopsoi768[] =
  2456. { 0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10 };
  2457. u8 reg01;
  2458. u8 reg17;
  2459. reg01 = sd->reg01;
  2460. reg17 = sd->reg17 & ~SEN_CLK_EN;
  2461. switch (sd->sensor) {
  2462. case SENSOR_ADCM1700:
  2463. case SENSOR_GC0307:
  2464. case SENSOR_PO2030N:
  2465. case SENSOR_SP80708:
  2466. reg01 |= LED;
  2467. reg_w1(gspca_dev, 0x01, reg01);
  2468. reg01 &= ~(LED | V_TX_EN);
  2469. reg_w1(gspca_dev, 0x01, reg01);
  2470. /* reg_w1(gspca_dev, 0x02, 0x??); * LED off ? */
  2471. break;
  2472. case SENSOR_HV7131R:
  2473. reg01 &= ~V_TX_EN;
  2474. reg_w1(gspca_dev, 0x01, reg01);
  2475. i2c_w8(gspca_dev, stophv7131);
  2476. break;
  2477. case SENSOR_MI0360:
  2478. case SENSOR_MI0360B:
  2479. reg01 &= ~V_TX_EN;
  2480. reg_w1(gspca_dev, 0x01, reg01);
  2481. /* reg_w1(gspca_dev, 0x02, 0x40); * LED off ? */
  2482. i2c_w8(gspca_dev, stopmi0360);
  2483. break;
  2484. case SENSOR_MT9V111:
  2485. case SENSOR_OM6802:
  2486. case SENSOR_PO1030:
  2487. reg01 &= ~V_TX_EN;
  2488. reg_w1(gspca_dev, 0x01, reg01);
  2489. break;
  2490. case SENSOR_OV7630:
  2491. case SENSOR_OV7648:
  2492. reg01 &= ~V_TX_EN;
  2493. reg_w1(gspca_dev, 0x01, reg01);
  2494. i2c_w8(gspca_dev, stopov7648);
  2495. break;
  2496. case SENSOR_OV7660:
  2497. reg01 &= ~V_TX_EN;
  2498. reg_w1(gspca_dev, 0x01, reg01);
  2499. break;
  2500. case SENSOR_SOI768:
  2501. i2c_w8(gspca_dev, stopsoi768);
  2502. break;
  2503. }
  2504. reg01 |= SCL_SEL_OD;
  2505. reg_w1(gspca_dev, 0x01, reg01);
  2506. reg01 |= S_PWR_DN; /* sensor power down */
  2507. reg_w1(gspca_dev, 0x01, reg01);
  2508. reg_w1(gspca_dev, 0x17, reg17);
  2509. reg01 &= ~SYS_SEL_48M; /* clock 24MHz */
  2510. reg_w1(gspca_dev, 0x01, reg01);
  2511. reg01 |= LED;
  2512. reg_w1(gspca_dev, 0x01, reg01);
  2513. /* Don't disable sensor clock as that disables the button on the cam */
  2514. /* reg_w1(gspca_dev, 0xf1, 0x01); */
  2515. }
  2516. /* called on streamoff with alt==0 and on disconnect */
  2517. /* the usb_lock is held at entry - restore on exit */
  2518. static void sd_stop0(struct gspca_dev *gspca_dev)
  2519. {
  2520. struct sd *sd = (struct sd *) gspca_dev;
  2521. if (sd->work_thread != NULL) {
  2522. mutex_unlock(&gspca_dev->usb_lock);
  2523. destroy_workqueue(sd->work_thread);
  2524. mutex_lock(&gspca_dev->usb_lock);
  2525. sd->work_thread = NULL;
  2526. }
  2527. }
  2528. static void do_autogain(struct gspca_dev *gspca_dev)
  2529. {
  2530. struct sd *sd = (struct sd *) gspca_dev;
  2531. int delta;
  2532. int expotimes;
  2533. u8 luma_mean = 130;
  2534. u8 luma_delta = 20;
  2535. /* Thanks S., without your advice, autobright should not work :) */
  2536. if (sd->ag_cnt < 0)
  2537. return;
  2538. if (--sd->ag_cnt >= 0)
  2539. return;
  2540. sd->ag_cnt = AG_CNT_START;
  2541. delta = atomic_read(&sd->avg_lum);
  2542. PDEBUG(D_FRAM, "mean lum %d", delta);
  2543. if (delta < luma_mean - luma_delta ||
  2544. delta > luma_mean + luma_delta) {
  2545. switch (sd->sensor) {
  2546. case SENSOR_GC0307:
  2547. expotimes = sd->exposure;
  2548. expotimes += (luma_mean - delta) >> 6;
  2549. if (expotimes < 0)
  2550. expotimes = 0;
  2551. sd->exposure = setexposure(gspca_dev,
  2552. (unsigned int) expotimes);
  2553. break;
  2554. case SENSOR_HV7131R:
  2555. expotimes = sd->exposure >> 8;
  2556. expotimes += (luma_mean - delta) >> 4;
  2557. if (expotimes < 0)
  2558. expotimes = 0;
  2559. sd->exposure = setexposure(gspca_dev,
  2560. (unsigned int) (expotimes << 8));
  2561. break;
  2562. case SENSOR_OM6802:
  2563. case SENSOR_MT9V111:
  2564. expotimes = sd->exposure;
  2565. expotimes += (luma_mean - delta) >> 2;
  2566. if (expotimes < 0)
  2567. expotimes = 0;
  2568. sd->exposure = setexposure(gspca_dev,
  2569. (unsigned int) expotimes);
  2570. setredblue(gspca_dev);
  2571. break;
  2572. default:
  2573. /* case SENSOR_MO4000: */
  2574. /* case SENSOR_MI0360: */
  2575. /* case SENSOR_MI0360B: */
  2576. expotimes = sd->exposure;
  2577. expotimes += (luma_mean - delta) >> 6;
  2578. if (expotimes < 0)
  2579. expotimes = 0;
  2580. sd->exposure = setexposure(gspca_dev,
  2581. (unsigned int) expotimes);
  2582. setredblue(gspca_dev);
  2583. break;
  2584. }
  2585. }
  2586. }
  2587. /* set the average luminosity from an isoc marker */
  2588. static void set_lum(struct sd *sd,
  2589. u8 *data)
  2590. {
  2591. int avg_lum;
  2592. /* w0 w1 w2
  2593. * w3 w4 w5
  2594. * w6 w7 w8
  2595. */
  2596. avg_lum = (data[27] << 8) + data[28] /* w3 */
  2597. + (data[31] << 8) + data[32] /* w5 */
  2598. + (data[23] << 8) + data[24] /* w1 */
  2599. + (data[35] << 8) + data[36] /* w7 */
  2600. + (data[29] << 10) + (data[30] << 2); /* w4 * 4 */
  2601. avg_lum >>= 10;
  2602. atomic_set(&sd->avg_lum, avg_lum);
  2603. }
  2604. /* scan the URB packets */
  2605. /* This function is run at interrupt level. */
  2606. static void sd_pkt_scan(struct gspca_dev *gspca_dev,
  2607. u8 *data, /* isoc packet */
  2608. int len) /* iso packet length */
  2609. {
  2610. struct sd *sd = (struct sd *) gspca_dev;
  2611. int i, new_qual;
  2612. /*
  2613. * A frame ends on the marker
  2614. * ff ff 00 c4 c4 96 ..
  2615. * which is 62 bytes long and is followed by various information
  2616. * including statuses and luminosity.
  2617. *
  2618. * A marker may be splitted on two packets.
  2619. *
  2620. * The 6th byte of a marker contains the bits:
  2621. * 0x08: USB full
  2622. * 0xc0: frame sequence
  2623. * When the bit 'USB full' is set, the frame must be discarded;
  2624. * this is also the case when the 2 bytes before the marker are
  2625. * not the JPEG end of frame ('ff d9').
  2626. */
  2627. /*fixme: assumption about the following code:
  2628. * - there can be only one marker in a packet
  2629. */
  2630. /* skip the remaining bytes of a short marker */
  2631. i = sd->short_mark;
  2632. if (i != 0) {
  2633. sd->short_mark = 0;
  2634. if (i < 0 /* if 'ff' at end of previous packet */
  2635. && data[0] == 0xff
  2636. && data[1] == 0x00)
  2637. goto marker_found;
  2638. if (data[0] == 0xff && data[1] == 0xff) {
  2639. i = 0;
  2640. goto marker_found;
  2641. }
  2642. len -= i;
  2643. if (len <= 0)
  2644. return;
  2645. data += i;
  2646. }
  2647. /* count the packets and their size */
  2648. sd->npkt++;
  2649. sd->pktsz += len;
  2650. /* search backwards if there is a marker in the packet */
  2651. for (i = len - 1; --i >= 0; ) {
  2652. if (data[i] != 0xff) {
  2653. i--;
  2654. continue;
  2655. }
  2656. if (data[i + 1] == 0xff) {
  2657. /* (there may be 'ff ff' inside a marker) */
  2658. if (i + 2 >= len || data[i + 2] == 0x00)
  2659. goto marker_found;
  2660. }
  2661. }
  2662. /* no marker found */
  2663. /* add the JPEG header if first fragment */
  2664. if (data[len - 1] == 0xff)
  2665. sd->short_mark = -1;
  2666. if (gspca_dev->last_packet_type == LAST_PACKET)
  2667. gspca_frame_add(gspca_dev, FIRST_PACKET,
  2668. sd->jpeg_hdr, JPEG_HDR_SZ);
  2669. gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
  2670. return;
  2671. /* marker found */
  2672. /* if some error, discard the frame and decrease the quality */
  2673. marker_found:
  2674. new_qual = 0;
  2675. if (i > 2) {
  2676. if (data[i - 2] != 0xff || data[i - 1] != 0xd9) {
  2677. gspca_dev->last_packet_type = DISCARD_PACKET;
  2678. new_qual = -3;
  2679. }
  2680. } else if (i + 6 < len) {
  2681. if (data[i + 6] & 0x08) {
  2682. gspca_dev->last_packet_type = DISCARD_PACKET;
  2683. new_qual = -5;
  2684. }
  2685. }
  2686. gspca_frame_add(gspca_dev, LAST_PACKET, data, i);
  2687. /* compute the filling rate and a new JPEG quality */
  2688. if (new_qual == 0) {
  2689. int r;
  2690. r = (sd->pktsz * 100) /
  2691. (sd->npkt *
  2692. gspca_dev->urb[0]->iso_frame_desc[0].length);
  2693. if (r >= 85)
  2694. new_qual = -3;
  2695. else if (r < 75)
  2696. new_qual = 2;
  2697. }
  2698. if (new_qual != 0) {
  2699. sd->nchg += new_qual;
  2700. if (sd->nchg < -6 || sd->nchg >= 12) {
  2701. sd->nchg = 0;
  2702. new_qual += sd->quality;
  2703. if (new_qual < QUALITY_MIN)
  2704. new_qual = QUALITY_MIN;
  2705. else if (new_qual > QUALITY_MAX)
  2706. new_qual = QUALITY_MAX;
  2707. if (new_qual != sd->quality) {
  2708. sd->quality = new_qual;
  2709. queue_work(sd->work_thread, &sd->work);
  2710. }
  2711. }
  2712. } else {
  2713. sd->nchg = 0;
  2714. }
  2715. sd->pktsz = sd->npkt = 0;
  2716. /* if the marker is smaller than 62 bytes,
  2717. * memorize the number of bytes to skip in the next packet */
  2718. if (i + 62 > len) { /* no more usable data */
  2719. sd->short_mark = i + 62 - len;
  2720. return;
  2721. }
  2722. if (sd->ag_cnt >= 0)
  2723. set_lum(sd, data + i);
  2724. /* if more data, start a new frame */
  2725. i += 62;
  2726. if (i < len) {
  2727. data += i;
  2728. len -= i;
  2729. gspca_frame_add(gspca_dev, FIRST_PACKET,
  2730. sd->jpeg_hdr, JPEG_HDR_SZ);
  2731. gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
  2732. }
  2733. }
  2734. static int sd_get_jcomp(struct gspca_dev *gspca_dev,
  2735. struct v4l2_jpegcompression *jcomp)
  2736. {
  2737. struct sd *sd = (struct sd *) gspca_dev;
  2738. memset(jcomp, 0, sizeof *jcomp);
  2739. jcomp->quality = sd->quality;
  2740. jcomp->jpeg_markers = V4L2_JPEG_MARKER_DHT
  2741. | V4L2_JPEG_MARKER_DQT;
  2742. return 0;
  2743. }
  2744. static int sd_querymenu(struct gspca_dev *gspca_dev,
  2745. struct v4l2_querymenu *menu)
  2746. {
  2747. switch (menu->id) {
  2748. case V4L2_CID_POWER_LINE_FREQUENCY:
  2749. switch (menu->index) {
  2750. case 0: /* V4L2_CID_POWER_LINE_FREQUENCY_DISABLED */
  2751. strcpy((char *) menu->name, "NoFliker");
  2752. return 0;
  2753. case 1: /* V4L2_CID_POWER_LINE_FREQUENCY_50HZ */
  2754. strcpy((char *) menu->name, "50 Hz");
  2755. return 0;
  2756. case 2: /* V4L2_CID_POWER_LINE_FREQUENCY_60HZ */
  2757. strcpy((char *) menu->name, "60 Hz");
  2758. return 0;
  2759. }
  2760. break;
  2761. }
  2762. return -EINVAL;
  2763. }
  2764. #if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
  2765. static int sd_int_pkt_scan(struct gspca_dev *gspca_dev,
  2766. u8 *data, /* interrupt packet data */
  2767. int len) /* interrupt packet length */
  2768. {
  2769. int ret = -EINVAL;
  2770. if (len == 1 && data[0] == 1) {
  2771. input_report_key(gspca_dev->input_dev, KEY_CAMERA, 1);
  2772. input_sync(gspca_dev->input_dev);
  2773. input_report_key(gspca_dev->input_dev, KEY_CAMERA, 0);
  2774. input_sync(gspca_dev->input_dev);
  2775. ret = 0;
  2776. }
  2777. return ret;
  2778. }
  2779. #endif
  2780. /* sub-driver description */
  2781. static const struct sd_desc sd_desc = {
  2782. .name = MODULE_NAME,
  2783. .ctrls = sd_ctrls,
  2784. .nctrls = NCTRLS,
  2785. .config = sd_config,
  2786. .init = sd_init,
  2787. .start = sd_start,
  2788. .stopN = sd_stopN,
  2789. .stop0 = sd_stop0,
  2790. .pkt_scan = sd_pkt_scan,
  2791. .dq_callback = do_autogain,
  2792. .get_jcomp = sd_get_jcomp,
  2793. .querymenu = sd_querymenu,
  2794. #if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
  2795. .int_pkt_scan = sd_int_pkt_scan,
  2796. #endif
  2797. };
  2798. /* -- module initialisation -- */
  2799. #define BS(bridge, sensor) \
  2800. .driver_info = (BRIDGE_ ## bridge << 16) \
  2801. | (SENSOR_ ## sensor << 8)
  2802. #define BSF(bridge, sensor, flags) \
  2803. .driver_info = (BRIDGE_ ## bridge << 16) \
  2804. | (SENSOR_ ## sensor << 8) \
  2805. | (flags)
  2806. static const struct usb_device_id device_table[] = {
  2807. {USB_DEVICE(0x0458, 0x7025), BS(SN9C120, MI0360)},
  2808. {USB_DEVICE(0x0458, 0x702e), BS(SN9C120, OV7660)},
  2809. {USB_DEVICE(0x045e, 0x00f5), BSF(SN9C105, OV7660, F_PDN_INV)},
  2810. {USB_DEVICE(0x045e, 0x00f7), BSF(SN9C105, OV7660, F_PDN_INV)},
  2811. {USB_DEVICE(0x0471, 0x0327), BS(SN9C105, MI0360)},
  2812. {USB_DEVICE(0x0471, 0x0328), BS(SN9C105, MI0360)},
  2813. {USB_DEVICE(0x0471, 0x0330), BS(SN9C105, MI0360)},
  2814. {USB_DEVICE(0x06f8, 0x3004), BS(SN9C105, OV7660)},
  2815. {USB_DEVICE(0x06f8, 0x3008), BS(SN9C105, OV7660)},
  2816. /* {USB_DEVICE(0x0c45, 0x603a), BS(SN9C102P, OV7648)}, */
  2817. {USB_DEVICE(0x0c45, 0x6040), BS(SN9C102P, HV7131R)},
  2818. /* {USB_DEVICE(0x0c45, 0x607a), BS(SN9C102P, OV7648)}, */
  2819. /* {USB_DEVICE(0x0c45, 0x607b), BS(SN9C102P, OV7660)}, */
  2820. {USB_DEVICE(0x0c45, 0x607c), BS(SN9C102P, HV7131R)},
  2821. /* {USB_DEVICE(0x0c45, 0x607e), BS(SN9C102P, OV7630)}, */
  2822. {USB_DEVICE(0x0c45, 0x60c0), BSF(SN9C105, MI0360, F_ILLUM)},
  2823. /* or MT9V111 */
  2824. /* {USB_DEVICE(0x0c45, 0x60c2), BS(SN9C105, P1030xC)}, */
  2825. /* {USB_DEVICE(0x0c45, 0x60c8), BS(SN9C105, OM6802)}, */
  2826. /* {USB_DEVICE(0x0c45, 0x60cc), BS(SN9C105, HV7131GP)}, */
  2827. {USB_DEVICE(0x0c45, 0x60ce), BS(SN9C105, SP80708)},
  2828. {USB_DEVICE(0x0c45, 0x60ec), BS(SN9C105, MO4000)},
  2829. /* {USB_DEVICE(0x0c45, 0x60ef), BS(SN9C105, ICM105C)}, */
  2830. /* {USB_DEVICE(0x0c45, 0x60fa), BS(SN9C105, OV7648)}, */
  2831. /* {USB_DEVICE(0x0c45, 0x60f2), BS(SN9C105, OV7660)}, */
  2832. {USB_DEVICE(0x0c45, 0x60fb), BS(SN9C105, OV7660)},
  2833. {USB_DEVICE(0x0c45, 0x60fc), BS(SN9C105, HV7131R)},
  2834. {USB_DEVICE(0x0c45, 0x60fe), BS(SN9C105, OV7630)},
  2835. {USB_DEVICE(0x0c45, 0x6100), BS(SN9C120, MI0360)}, /*sn9c128*/
  2836. {USB_DEVICE(0x0c45, 0x6102), BS(SN9C120, PO2030N)}, /* /GC0305*/
  2837. /* {USB_DEVICE(0x0c45, 0x6108), BS(SN9C120, OM6802)}, */
  2838. {USB_DEVICE(0x0c45, 0x610a), BS(SN9C120, OV7648)}, /*sn9c128*/
  2839. {USB_DEVICE(0x0c45, 0x610b), BS(SN9C120, OV7660)}, /*sn9c128*/
  2840. {USB_DEVICE(0x0c45, 0x610c), BS(SN9C120, HV7131R)}, /*sn9c128*/
  2841. {USB_DEVICE(0x0c45, 0x610e), BS(SN9C120, OV7630)}, /*sn9c128*/
  2842. /* {USB_DEVICE(0x0c45, 0x610f), BS(SN9C120, S5K53BEB)}, */
  2843. /* {USB_DEVICE(0x0c45, 0x6122), BS(SN9C110, ICM105C)}, */
  2844. /* {USB_DEVICE(0x0c45, 0x6123), BS(SN9C110, SanyoCCD)}, */
  2845. {USB_DEVICE(0x0c45, 0x6128), BS(SN9C120, OM6802)}, /*sn9c325?*/
  2846. /*bw600.inf:*/
  2847. {USB_DEVICE(0x0c45, 0x612a), BS(SN9C120, OV7648)}, /*sn9c325?*/
  2848. {USB_DEVICE(0x0c45, 0x612b), BS(SN9C110, ADCM1700)},
  2849. {USB_DEVICE(0x0c45, 0x612c), BS(SN9C110, MO4000)},
  2850. {USB_DEVICE(0x0c45, 0x612e), BS(SN9C110, OV7630)},
  2851. /* {USB_DEVICE(0x0c45, 0x612f), BS(SN9C110, ICM105C)}, */
  2852. {USB_DEVICE(0x0c45, 0x6130), BS(SN9C120, MI0360)},
  2853. /* or MT9V111 / MI0360B */
  2854. /* {USB_DEVICE(0x0c45, 0x6132), BS(SN9C120, OV7670)}, */
  2855. {USB_DEVICE(0x0c45, 0x6138), BS(SN9C120, MO4000)},
  2856. {USB_DEVICE(0x0c45, 0x613a), BS(SN9C120, OV7648)},
  2857. {USB_DEVICE(0x0c45, 0x613b), BS(SN9C120, OV7660)},
  2858. {USB_DEVICE(0x0c45, 0x613c), BS(SN9C120, HV7131R)},
  2859. {USB_DEVICE(0x0c45, 0x613e), BS(SN9C120, OV7630)},
  2860. {USB_DEVICE(0x0c45, 0x6142), BS(SN9C120, PO2030N)}, /*sn9c120b*/
  2861. /* or GC0305 / GC0307 */
  2862. {USB_DEVICE(0x0c45, 0x6143), BS(SN9C120, SP80708)}, /*sn9c120b*/
  2863. {USB_DEVICE(0x0c45, 0x6148), BS(SN9C120, OM6802)}, /*sn9c120b*/
  2864. {USB_DEVICE(0x0c45, 0x614a), BSF(SN9C120, ADCM1700, F_ILLUM)},
  2865. /* {USB_DEVICE(0x0c45, 0x614c), BS(SN9C120, GC0306)}, */ /*sn9c120b*/
  2866. {}
  2867. };
  2868. MODULE_DEVICE_TABLE(usb, device_table);
  2869. /* -- device connect -- */
  2870. static int sd_probe(struct usb_interface *intf,
  2871. const struct usb_device_id *id)
  2872. {
  2873. return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd),
  2874. THIS_MODULE);
  2875. }
  2876. static struct usb_driver sd_driver = {
  2877. .name = MODULE_NAME,
  2878. .id_table = device_table,
  2879. .probe = sd_probe,
  2880. .disconnect = gspca_disconnect,
  2881. #ifdef CONFIG_PM
  2882. .suspend = gspca_suspend,
  2883. .resume = gspca_resume,
  2884. #endif
  2885. };
  2886. /* -- module insert / remove -- */
  2887. static int __init sd_mod_init(void)
  2888. {
  2889. return usb_register(&sd_driver);
  2890. }
  2891. static void __exit sd_mod_exit(void)
  2892. {
  2893. usb_deregister(&sd_driver);
  2894. }
  2895. module_init(sd_mod_init);
  2896. module_exit(sd_mod_exit);