ispccdc.c 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742
  1. /*
  2. * ispccdc.c
  3. *
  4. * TI OMAP3 ISP - CCDC module
  5. *
  6. * Copyright (C) 2009-2010 Nokia Corporation
  7. * Copyright (C) 2009 Texas Instruments, Inc.
  8. *
  9. * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
  10. * Sakari Ailus <sakari.ailus@iki.fi>
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License version 2 as
  14. * published by the Free Software Foundation.
  15. */
  16. #include <linux/module.h>
  17. #include <linux/uaccess.h>
  18. #include <linux/delay.h>
  19. #include <linux/device.h>
  20. #include <linux/dma-mapping.h>
  21. #include <linux/mm.h>
  22. #include <linux/sched.h>
  23. #include <linux/slab.h>
  24. #include <media/v4l2-event.h>
  25. #include "isp.h"
  26. #include "ispreg.h"
  27. #include "ispccdc.h"
  28. #define CCDC_MIN_WIDTH 32
  29. #define CCDC_MIN_HEIGHT 32
  30. static struct v4l2_mbus_framefmt *
  31. __ccdc_get_format(struct isp_ccdc_device *ccdc, struct v4l2_subdev_pad_config *cfg,
  32. unsigned int pad, enum v4l2_subdev_format_whence which);
  33. static const unsigned int ccdc_fmts[] = {
  34. MEDIA_BUS_FMT_Y8_1X8,
  35. MEDIA_BUS_FMT_Y10_1X10,
  36. MEDIA_BUS_FMT_Y12_1X12,
  37. MEDIA_BUS_FMT_SGRBG8_1X8,
  38. MEDIA_BUS_FMT_SRGGB8_1X8,
  39. MEDIA_BUS_FMT_SBGGR8_1X8,
  40. MEDIA_BUS_FMT_SGBRG8_1X8,
  41. MEDIA_BUS_FMT_SGRBG10_1X10,
  42. MEDIA_BUS_FMT_SRGGB10_1X10,
  43. MEDIA_BUS_FMT_SBGGR10_1X10,
  44. MEDIA_BUS_FMT_SGBRG10_1X10,
  45. MEDIA_BUS_FMT_SGRBG12_1X12,
  46. MEDIA_BUS_FMT_SRGGB12_1X12,
  47. MEDIA_BUS_FMT_SBGGR12_1X12,
  48. MEDIA_BUS_FMT_SGBRG12_1X12,
  49. MEDIA_BUS_FMT_YUYV8_2X8,
  50. MEDIA_BUS_FMT_UYVY8_2X8,
  51. };
  52. /*
  53. * ccdc_print_status - Print current CCDC Module register values.
  54. * @ccdc: Pointer to ISP CCDC device.
  55. *
  56. * Also prints other debug information stored in the CCDC module.
  57. */
  58. #define CCDC_PRINT_REGISTER(isp, name)\
  59. dev_dbg(isp->dev, "###CCDC " #name "=0x%08x\n", \
  60. isp_reg_readl(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_##name))
  61. static void ccdc_print_status(struct isp_ccdc_device *ccdc)
  62. {
  63. struct isp_device *isp = to_isp_device(ccdc);
  64. dev_dbg(isp->dev, "-------------CCDC Register dump-------------\n");
  65. CCDC_PRINT_REGISTER(isp, PCR);
  66. CCDC_PRINT_REGISTER(isp, SYN_MODE);
  67. CCDC_PRINT_REGISTER(isp, HD_VD_WID);
  68. CCDC_PRINT_REGISTER(isp, PIX_LINES);
  69. CCDC_PRINT_REGISTER(isp, HORZ_INFO);
  70. CCDC_PRINT_REGISTER(isp, VERT_START);
  71. CCDC_PRINT_REGISTER(isp, VERT_LINES);
  72. CCDC_PRINT_REGISTER(isp, CULLING);
  73. CCDC_PRINT_REGISTER(isp, HSIZE_OFF);
  74. CCDC_PRINT_REGISTER(isp, SDOFST);
  75. CCDC_PRINT_REGISTER(isp, SDR_ADDR);
  76. CCDC_PRINT_REGISTER(isp, CLAMP);
  77. CCDC_PRINT_REGISTER(isp, DCSUB);
  78. CCDC_PRINT_REGISTER(isp, COLPTN);
  79. CCDC_PRINT_REGISTER(isp, BLKCMP);
  80. CCDC_PRINT_REGISTER(isp, FPC);
  81. CCDC_PRINT_REGISTER(isp, FPC_ADDR);
  82. CCDC_PRINT_REGISTER(isp, VDINT);
  83. CCDC_PRINT_REGISTER(isp, ALAW);
  84. CCDC_PRINT_REGISTER(isp, REC656IF);
  85. CCDC_PRINT_REGISTER(isp, CFG);
  86. CCDC_PRINT_REGISTER(isp, FMTCFG);
  87. CCDC_PRINT_REGISTER(isp, FMT_HORZ);
  88. CCDC_PRINT_REGISTER(isp, FMT_VERT);
  89. CCDC_PRINT_REGISTER(isp, PRGEVEN0);
  90. CCDC_PRINT_REGISTER(isp, PRGEVEN1);
  91. CCDC_PRINT_REGISTER(isp, PRGODD0);
  92. CCDC_PRINT_REGISTER(isp, PRGODD1);
  93. CCDC_PRINT_REGISTER(isp, VP_OUT);
  94. CCDC_PRINT_REGISTER(isp, LSC_CONFIG);
  95. CCDC_PRINT_REGISTER(isp, LSC_INITIAL);
  96. CCDC_PRINT_REGISTER(isp, LSC_TABLE_BASE);
  97. CCDC_PRINT_REGISTER(isp, LSC_TABLE_OFFSET);
  98. dev_dbg(isp->dev, "--------------------------------------------\n");
  99. }
  100. /*
  101. * omap3isp_ccdc_busy - Get busy state of the CCDC.
  102. * @ccdc: Pointer to ISP CCDC device.
  103. */
  104. int omap3isp_ccdc_busy(struct isp_ccdc_device *ccdc)
  105. {
  106. struct isp_device *isp = to_isp_device(ccdc);
  107. return isp_reg_readl(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_PCR) &
  108. ISPCCDC_PCR_BUSY;
  109. }
  110. /* -----------------------------------------------------------------------------
  111. * Lens Shading Compensation
  112. */
  113. /*
  114. * ccdc_lsc_validate_config - Check that LSC configuration is valid.
  115. * @ccdc: Pointer to ISP CCDC device.
  116. * @lsc_cfg: the LSC configuration to check.
  117. *
  118. * Returns 0 if the LSC configuration is valid, or -EINVAL if invalid.
  119. */
  120. static int ccdc_lsc_validate_config(struct isp_ccdc_device *ccdc,
  121. struct omap3isp_ccdc_lsc_config *lsc_cfg)
  122. {
  123. struct isp_device *isp = to_isp_device(ccdc);
  124. struct v4l2_mbus_framefmt *format;
  125. unsigned int paxel_width, paxel_height;
  126. unsigned int paxel_shift_x, paxel_shift_y;
  127. unsigned int min_width, min_height, min_size;
  128. unsigned int input_width, input_height;
  129. paxel_shift_x = lsc_cfg->gain_mode_m;
  130. paxel_shift_y = lsc_cfg->gain_mode_n;
  131. if ((paxel_shift_x < 2) || (paxel_shift_x > 6) ||
  132. (paxel_shift_y < 2) || (paxel_shift_y > 6)) {
  133. dev_dbg(isp->dev, "CCDC: LSC: Invalid paxel size\n");
  134. return -EINVAL;
  135. }
  136. if (lsc_cfg->offset & 3) {
  137. dev_dbg(isp->dev,
  138. "CCDC: LSC: Offset must be a multiple of 4\n");
  139. return -EINVAL;
  140. }
  141. if ((lsc_cfg->initial_x & 1) || (lsc_cfg->initial_y & 1)) {
  142. dev_dbg(isp->dev, "CCDC: LSC: initial_x and y must be even\n");
  143. return -EINVAL;
  144. }
  145. format = __ccdc_get_format(ccdc, NULL, CCDC_PAD_SINK,
  146. V4L2_SUBDEV_FORMAT_ACTIVE);
  147. input_width = format->width;
  148. input_height = format->height;
  149. /* Calculate minimum bytesize for validation */
  150. paxel_width = 1 << paxel_shift_x;
  151. min_width = ((input_width + lsc_cfg->initial_x + paxel_width - 1)
  152. >> paxel_shift_x) + 1;
  153. paxel_height = 1 << paxel_shift_y;
  154. min_height = ((input_height + lsc_cfg->initial_y + paxel_height - 1)
  155. >> paxel_shift_y) + 1;
  156. min_size = 4 * min_width * min_height;
  157. if (min_size > lsc_cfg->size) {
  158. dev_dbg(isp->dev, "CCDC: LSC: too small table\n");
  159. return -EINVAL;
  160. }
  161. if (lsc_cfg->offset < (min_width * 4)) {
  162. dev_dbg(isp->dev, "CCDC: LSC: Offset is too small\n");
  163. return -EINVAL;
  164. }
  165. if ((lsc_cfg->size / lsc_cfg->offset) < min_height) {
  166. dev_dbg(isp->dev, "CCDC: LSC: Wrong size/offset combination\n");
  167. return -EINVAL;
  168. }
  169. return 0;
  170. }
  171. /*
  172. * ccdc_lsc_program_table - Program Lens Shading Compensation table address.
  173. * @ccdc: Pointer to ISP CCDC device.
  174. */
  175. static void ccdc_lsc_program_table(struct isp_ccdc_device *ccdc,
  176. dma_addr_t addr)
  177. {
  178. isp_reg_writel(to_isp_device(ccdc), addr,
  179. OMAP3_ISP_IOMEM_CCDC, ISPCCDC_LSC_TABLE_BASE);
  180. }
  181. /*
  182. * ccdc_lsc_setup_regs - Configures the lens shading compensation module
  183. * @ccdc: Pointer to ISP CCDC device.
  184. */
  185. static void ccdc_lsc_setup_regs(struct isp_ccdc_device *ccdc,
  186. struct omap3isp_ccdc_lsc_config *cfg)
  187. {
  188. struct isp_device *isp = to_isp_device(ccdc);
  189. int reg;
  190. isp_reg_writel(isp, cfg->offset, OMAP3_ISP_IOMEM_CCDC,
  191. ISPCCDC_LSC_TABLE_OFFSET);
  192. reg = 0;
  193. reg |= cfg->gain_mode_n << ISPCCDC_LSC_GAIN_MODE_N_SHIFT;
  194. reg |= cfg->gain_mode_m << ISPCCDC_LSC_GAIN_MODE_M_SHIFT;
  195. reg |= cfg->gain_format << ISPCCDC_LSC_GAIN_FORMAT_SHIFT;
  196. isp_reg_writel(isp, reg, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_LSC_CONFIG);
  197. reg = 0;
  198. reg &= ~ISPCCDC_LSC_INITIAL_X_MASK;
  199. reg |= cfg->initial_x << ISPCCDC_LSC_INITIAL_X_SHIFT;
  200. reg &= ~ISPCCDC_LSC_INITIAL_Y_MASK;
  201. reg |= cfg->initial_y << ISPCCDC_LSC_INITIAL_Y_SHIFT;
  202. isp_reg_writel(isp, reg, OMAP3_ISP_IOMEM_CCDC,
  203. ISPCCDC_LSC_INITIAL);
  204. }
  205. static int ccdc_lsc_wait_prefetch(struct isp_ccdc_device *ccdc)
  206. {
  207. struct isp_device *isp = to_isp_device(ccdc);
  208. unsigned int wait;
  209. isp_reg_writel(isp, IRQ0STATUS_CCDC_LSC_PREF_COMP_IRQ,
  210. OMAP3_ISP_IOMEM_MAIN, ISP_IRQ0STATUS);
  211. /* timeout 1 ms */
  212. for (wait = 0; wait < 1000; wait++) {
  213. if (isp_reg_readl(isp, OMAP3_ISP_IOMEM_MAIN, ISP_IRQ0STATUS) &
  214. IRQ0STATUS_CCDC_LSC_PREF_COMP_IRQ) {
  215. isp_reg_writel(isp, IRQ0STATUS_CCDC_LSC_PREF_COMP_IRQ,
  216. OMAP3_ISP_IOMEM_MAIN, ISP_IRQ0STATUS);
  217. return 0;
  218. }
  219. rmb();
  220. udelay(1);
  221. }
  222. return -ETIMEDOUT;
  223. }
  224. /*
  225. * __ccdc_lsc_enable - Enables/Disables the Lens Shading Compensation module.
  226. * @ccdc: Pointer to ISP CCDC device.
  227. * @enable: 0 Disables LSC, 1 Enables LSC.
  228. */
  229. static int __ccdc_lsc_enable(struct isp_ccdc_device *ccdc, int enable)
  230. {
  231. struct isp_device *isp = to_isp_device(ccdc);
  232. const struct v4l2_mbus_framefmt *format =
  233. __ccdc_get_format(ccdc, NULL, CCDC_PAD_SINK,
  234. V4L2_SUBDEV_FORMAT_ACTIVE);
  235. if ((format->code != MEDIA_BUS_FMT_SGRBG10_1X10) &&
  236. (format->code != MEDIA_BUS_FMT_SRGGB10_1X10) &&
  237. (format->code != MEDIA_BUS_FMT_SBGGR10_1X10) &&
  238. (format->code != MEDIA_BUS_FMT_SGBRG10_1X10))
  239. return -EINVAL;
  240. if (enable)
  241. omap3isp_sbl_enable(isp, OMAP3_ISP_SBL_CCDC_LSC_READ);
  242. isp_reg_clr_set(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_LSC_CONFIG,
  243. ISPCCDC_LSC_ENABLE, enable ? ISPCCDC_LSC_ENABLE : 0);
  244. if (enable) {
  245. if (ccdc_lsc_wait_prefetch(ccdc) < 0) {
  246. isp_reg_clr(isp, OMAP3_ISP_IOMEM_CCDC,
  247. ISPCCDC_LSC_CONFIG, ISPCCDC_LSC_ENABLE);
  248. ccdc->lsc.state = LSC_STATE_STOPPED;
  249. dev_warn(to_device(ccdc), "LSC prefetch timeout\n");
  250. return -ETIMEDOUT;
  251. }
  252. ccdc->lsc.state = LSC_STATE_RUNNING;
  253. } else {
  254. ccdc->lsc.state = LSC_STATE_STOPPING;
  255. }
  256. return 0;
  257. }
  258. static int ccdc_lsc_busy(struct isp_ccdc_device *ccdc)
  259. {
  260. struct isp_device *isp = to_isp_device(ccdc);
  261. return isp_reg_readl(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_LSC_CONFIG) &
  262. ISPCCDC_LSC_BUSY;
  263. }
  264. /* __ccdc_lsc_configure - Apply a new configuration to the LSC engine
  265. * @ccdc: Pointer to ISP CCDC device
  266. * @req: New configuration request
  267. *
  268. * context: in_interrupt()
  269. */
  270. static int __ccdc_lsc_configure(struct isp_ccdc_device *ccdc,
  271. struct ispccdc_lsc_config_req *req)
  272. {
  273. if (!req->enable)
  274. return -EINVAL;
  275. if (ccdc_lsc_validate_config(ccdc, &req->config) < 0) {
  276. dev_dbg(to_device(ccdc), "Discard LSC configuration\n");
  277. return -EINVAL;
  278. }
  279. if (ccdc_lsc_busy(ccdc))
  280. return -EBUSY;
  281. ccdc_lsc_setup_regs(ccdc, &req->config);
  282. ccdc_lsc_program_table(ccdc, req->table.dma);
  283. return 0;
  284. }
  285. /*
  286. * ccdc_lsc_error_handler - Handle LSC prefetch error scenario.
  287. * @ccdc: Pointer to ISP CCDC device.
  288. *
  289. * Disables LSC, and defers enablement to shadow registers update time.
  290. */
  291. static void ccdc_lsc_error_handler(struct isp_ccdc_device *ccdc)
  292. {
  293. struct isp_device *isp = to_isp_device(ccdc);
  294. /*
  295. * From OMAP3 TRM: When this event is pending, the module
  296. * goes into transparent mode (output =input). Normal
  297. * operation can be resumed at the start of the next frame
  298. * after:
  299. * 1) Clearing this event
  300. * 2) Disabling the LSC module
  301. * 3) Enabling it
  302. */
  303. isp_reg_clr(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_LSC_CONFIG,
  304. ISPCCDC_LSC_ENABLE);
  305. ccdc->lsc.state = LSC_STATE_STOPPED;
  306. }
  307. static void ccdc_lsc_free_request(struct isp_ccdc_device *ccdc,
  308. struct ispccdc_lsc_config_req *req)
  309. {
  310. struct isp_device *isp = to_isp_device(ccdc);
  311. if (req == NULL)
  312. return;
  313. if (req->table.addr) {
  314. sg_free_table(&req->table.sgt);
  315. dma_free_coherent(isp->dev, req->config.size, req->table.addr,
  316. req->table.dma);
  317. }
  318. kfree(req);
  319. }
  320. static void ccdc_lsc_free_queue(struct isp_ccdc_device *ccdc,
  321. struct list_head *queue)
  322. {
  323. struct ispccdc_lsc_config_req *req, *n;
  324. unsigned long flags;
  325. spin_lock_irqsave(&ccdc->lsc.req_lock, flags);
  326. list_for_each_entry_safe(req, n, queue, list) {
  327. list_del(&req->list);
  328. spin_unlock_irqrestore(&ccdc->lsc.req_lock, flags);
  329. ccdc_lsc_free_request(ccdc, req);
  330. spin_lock_irqsave(&ccdc->lsc.req_lock, flags);
  331. }
  332. spin_unlock_irqrestore(&ccdc->lsc.req_lock, flags);
  333. }
  334. static void ccdc_lsc_free_table_work(struct work_struct *work)
  335. {
  336. struct isp_ccdc_device *ccdc;
  337. struct ispccdc_lsc *lsc;
  338. lsc = container_of(work, struct ispccdc_lsc, table_work);
  339. ccdc = container_of(lsc, struct isp_ccdc_device, lsc);
  340. ccdc_lsc_free_queue(ccdc, &lsc->free_queue);
  341. }
  342. /*
  343. * ccdc_lsc_config - Configure the LSC module from a userspace request
  344. *
  345. * Store the request LSC configuration in the LSC engine request pointer. The
  346. * configuration will be applied to the hardware when the CCDC will be enabled,
  347. * or at the next LSC interrupt if the CCDC is already running.
  348. */
  349. static int ccdc_lsc_config(struct isp_ccdc_device *ccdc,
  350. struct omap3isp_ccdc_update_config *config)
  351. {
  352. struct isp_device *isp = to_isp_device(ccdc);
  353. struct ispccdc_lsc_config_req *req;
  354. unsigned long flags;
  355. u16 update;
  356. int ret;
  357. update = config->update &
  358. (OMAP3ISP_CCDC_CONFIG_LSC | OMAP3ISP_CCDC_TBL_LSC);
  359. if (!update)
  360. return 0;
  361. if (update != (OMAP3ISP_CCDC_CONFIG_LSC | OMAP3ISP_CCDC_TBL_LSC)) {
  362. dev_dbg(to_device(ccdc),
  363. "%s: Both LSC configuration and table need to be supplied\n",
  364. __func__);
  365. return -EINVAL;
  366. }
  367. req = kzalloc(sizeof(*req), GFP_KERNEL);
  368. if (req == NULL)
  369. return -ENOMEM;
  370. if (config->flag & OMAP3ISP_CCDC_CONFIG_LSC) {
  371. if (copy_from_user(&req->config, config->lsc_cfg,
  372. sizeof(req->config))) {
  373. ret = -EFAULT;
  374. goto done;
  375. }
  376. req->enable = 1;
  377. req->table.addr = dma_alloc_coherent(isp->dev, req->config.size,
  378. &req->table.dma,
  379. GFP_KERNEL);
  380. if (req->table.addr == NULL) {
  381. ret = -ENOMEM;
  382. goto done;
  383. }
  384. ret = dma_get_sgtable(isp->dev, &req->table.sgt,
  385. req->table.addr, req->table.dma,
  386. req->config.size);
  387. if (ret < 0)
  388. goto done;
  389. dma_sync_sg_for_cpu(isp->dev, req->table.sgt.sgl,
  390. req->table.sgt.nents, DMA_TO_DEVICE);
  391. if (copy_from_user(req->table.addr, config->lsc,
  392. req->config.size)) {
  393. ret = -EFAULT;
  394. goto done;
  395. }
  396. dma_sync_sg_for_device(isp->dev, req->table.sgt.sgl,
  397. req->table.sgt.nents, DMA_TO_DEVICE);
  398. }
  399. spin_lock_irqsave(&ccdc->lsc.req_lock, flags);
  400. if (ccdc->lsc.request) {
  401. list_add_tail(&ccdc->lsc.request->list, &ccdc->lsc.free_queue);
  402. schedule_work(&ccdc->lsc.table_work);
  403. }
  404. ccdc->lsc.request = req;
  405. spin_unlock_irqrestore(&ccdc->lsc.req_lock, flags);
  406. ret = 0;
  407. done:
  408. if (ret < 0)
  409. ccdc_lsc_free_request(ccdc, req);
  410. return ret;
  411. }
  412. static inline int ccdc_lsc_is_configured(struct isp_ccdc_device *ccdc)
  413. {
  414. unsigned long flags;
  415. int ret;
  416. spin_lock_irqsave(&ccdc->lsc.req_lock, flags);
  417. ret = ccdc->lsc.active != NULL;
  418. spin_unlock_irqrestore(&ccdc->lsc.req_lock, flags);
  419. return ret;
  420. }
  421. static int ccdc_lsc_enable(struct isp_ccdc_device *ccdc)
  422. {
  423. struct ispccdc_lsc *lsc = &ccdc->lsc;
  424. if (lsc->state != LSC_STATE_STOPPED)
  425. return -EINVAL;
  426. if (lsc->active) {
  427. list_add_tail(&lsc->active->list, &lsc->free_queue);
  428. lsc->active = NULL;
  429. }
  430. if (__ccdc_lsc_configure(ccdc, lsc->request) < 0) {
  431. omap3isp_sbl_disable(to_isp_device(ccdc),
  432. OMAP3_ISP_SBL_CCDC_LSC_READ);
  433. list_add_tail(&lsc->request->list, &lsc->free_queue);
  434. lsc->request = NULL;
  435. goto done;
  436. }
  437. lsc->active = lsc->request;
  438. lsc->request = NULL;
  439. __ccdc_lsc_enable(ccdc, 1);
  440. done:
  441. if (!list_empty(&lsc->free_queue))
  442. schedule_work(&lsc->table_work);
  443. return 0;
  444. }
  445. /* -----------------------------------------------------------------------------
  446. * Parameters configuration
  447. */
  448. /*
  449. * ccdc_configure_clamp - Configure optical-black or digital clamping
  450. * @ccdc: Pointer to ISP CCDC device.
  451. *
  452. * The CCDC performs either optical-black or digital clamp. Configure and enable
  453. * the selected clamp method.
  454. */
  455. static void ccdc_configure_clamp(struct isp_ccdc_device *ccdc)
  456. {
  457. struct isp_device *isp = to_isp_device(ccdc);
  458. u32 clamp;
  459. if (ccdc->obclamp) {
  460. clamp = ccdc->clamp.obgain << ISPCCDC_CLAMP_OBGAIN_SHIFT;
  461. clamp |= ccdc->clamp.oblen << ISPCCDC_CLAMP_OBSLEN_SHIFT;
  462. clamp |= ccdc->clamp.oblines << ISPCCDC_CLAMP_OBSLN_SHIFT;
  463. clamp |= ccdc->clamp.obstpixel << ISPCCDC_CLAMP_OBST_SHIFT;
  464. isp_reg_writel(isp, clamp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_CLAMP);
  465. } else {
  466. isp_reg_writel(isp, ccdc->clamp.dcsubval,
  467. OMAP3_ISP_IOMEM_CCDC, ISPCCDC_DCSUB);
  468. }
  469. isp_reg_clr_set(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_CLAMP,
  470. ISPCCDC_CLAMP_CLAMPEN,
  471. ccdc->obclamp ? ISPCCDC_CLAMP_CLAMPEN : 0);
  472. }
  473. /*
  474. * ccdc_configure_fpc - Configure Faulty Pixel Correction
  475. * @ccdc: Pointer to ISP CCDC device.
  476. */
  477. static void ccdc_configure_fpc(struct isp_ccdc_device *ccdc)
  478. {
  479. struct isp_device *isp = to_isp_device(ccdc);
  480. isp_reg_clr(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_FPC, ISPCCDC_FPC_FPCEN);
  481. if (!ccdc->fpc_en)
  482. return;
  483. isp_reg_writel(isp, ccdc->fpc.dma, OMAP3_ISP_IOMEM_CCDC,
  484. ISPCCDC_FPC_ADDR);
  485. /* The FPNUM field must be set before enabling FPC. */
  486. isp_reg_writel(isp, (ccdc->fpc.fpnum << ISPCCDC_FPC_FPNUM_SHIFT),
  487. OMAP3_ISP_IOMEM_CCDC, ISPCCDC_FPC);
  488. isp_reg_writel(isp, (ccdc->fpc.fpnum << ISPCCDC_FPC_FPNUM_SHIFT) |
  489. ISPCCDC_FPC_FPCEN, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_FPC);
  490. }
  491. /*
  492. * ccdc_configure_black_comp - Configure Black Level Compensation.
  493. * @ccdc: Pointer to ISP CCDC device.
  494. */
  495. static void ccdc_configure_black_comp(struct isp_ccdc_device *ccdc)
  496. {
  497. struct isp_device *isp = to_isp_device(ccdc);
  498. u32 blcomp;
  499. blcomp = ccdc->blcomp.b_mg << ISPCCDC_BLKCMP_B_MG_SHIFT;
  500. blcomp |= ccdc->blcomp.gb_g << ISPCCDC_BLKCMP_GB_G_SHIFT;
  501. blcomp |= ccdc->blcomp.gr_cy << ISPCCDC_BLKCMP_GR_CY_SHIFT;
  502. blcomp |= ccdc->blcomp.r_ye << ISPCCDC_BLKCMP_R_YE_SHIFT;
  503. isp_reg_writel(isp, blcomp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_BLKCMP);
  504. }
  505. /*
  506. * ccdc_configure_lpf - Configure Low-Pass Filter (LPF).
  507. * @ccdc: Pointer to ISP CCDC device.
  508. */
  509. static void ccdc_configure_lpf(struct isp_ccdc_device *ccdc)
  510. {
  511. struct isp_device *isp = to_isp_device(ccdc);
  512. isp_reg_clr_set(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_SYN_MODE,
  513. ISPCCDC_SYN_MODE_LPF,
  514. ccdc->lpf ? ISPCCDC_SYN_MODE_LPF : 0);
  515. }
  516. /*
  517. * ccdc_configure_alaw - Configure A-law compression.
  518. * @ccdc: Pointer to ISP CCDC device.
  519. */
  520. static void ccdc_configure_alaw(struct isp_ccdc_device *ccdc)
  521. {
  522. struct isp_device *isp = to_isp_device(ccdc);
  523. const struct isp_format_info *info;
  524. u32 alaw = 0;
  525. info = omap3isp_video_format_info(ccdc->formats[CCDC_PAD_SINK].code);
  526. switch (info->width) {
  527. case 8:
  528. return;
  529. case 10:
  530. alaw = ISPCCDC_ALAW_GWDI_9_0;
  531. break;
  532. case 11:
  533. alaw = ISPCCDC_ALAW_GWDI_10_1;
  534. break;
  535. case 12:
  536. alaw = ISPCCDC_ALAW_GWDI_11_2;
  537. break;
  538. case 13:
  539. alaw = ISPCCDC_ALAW_GWDI_12_3;
  540. break;
  541. }
  542. if (ccdc->alaw)
  543. alaw |= ISPCCDC_ALAW_CCDTBL;
  544. isp_reg_writel(isp, alaw, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_ALAW);
  545. }
  546. /*
  547. * ccdc_config_imgattr - Configure sensor image specific attributes.
  548. * @ccdc: Pointer to ISP CCDC device.
  549. * @colptn: Color pattern of the sensor.
  550. */
  551. static void ccdc_config_imgattr(struct isp_ccdc_device *ccdc, u32 colptn)
  552. {
  553. struct isp_device *isp = to_isp_device(ccdc);
  554. isp_reg_writel(isp, colptn, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_COLPTN);
  555. }
  556. /*
  557. * ccdc_config - Set CCDC configuration from userspace
  558. * @ccdc: Pointer to ISP CCDC device.
  559. * @ccdc_struct: Structure containing CCDC configuration sent from userspace.
  560. *
  561. * Returns 0 if successful, -EINVAL if the pointer to the configuration
  562. * structure is null, or the copy_from_user function fails to copy user space
  563. * memory to kernel space memory.
  564. */
  565. static int ccdc_config(struct isp_ccdc_device *ccdc,
  566. struct omap3isp_ccdc_update_config *ccdc_struct)
  567. {
  568. struct isp_device *isp = to_isp_device(ccdc);
  569. unsigned long flags;
  570. spin_lock_irqsave(&ccdc->lock, flags);
  571. ccdc->shadow_update = 1;
  572. spin_unlock_irqrestore(&ccdc->lock, flags);
  573. if (OMAP3ISP_CCDC_ALAW & ccdc_struct->update) {
  574. ccdc->alaw = !!(OMAP3ISP_CCDC_ALAW & ccdc_struct->flag);
  575. ccdc->update |= OMAP3ISP_CCDC_ALAW;
  576. }
  577. if (OMAP3ISP_CCDC_LPF & ccdc_struct->update) {
  578. ccdc->lpf = !!(OMAP3ISP_CCDC_LPF & ccdc_struct->flag);
  579. ccdc->update |= OMAP3ISP_CCDC_LPF;
  580. }
  581. if (OMAP3ISP_CCDC_BLCLAMP & ccdc_struct->update) {
  582. if (copy_from_user(&ccdc->clamp, ccdc_struct->bclamp,
  583. sizeof(ccdc->clamp))) {
  584. ccdc->shadow_update = 0;
  585. return -EFAULT;
  586. }
  587. ccdc->obclamp = !!(OMAP3ISP_CCDC_BLCLAMP & ccdc_struct->flag);
  588. ccdc->update |= OMAP3ISP_CCDC_BLCLAMP;
  589. }
  590. if (OMAP3ISP_CCDC_BCOMP & ccdc_struct->update) {
  591. if (copy_from_user(&ccdc->blcomp, ccdc_struct->blcomp,
  592. sizeof(ccdc->blcomp))) {
  593. ccdc->shadow_update = 0;
  594. return -EFAULT;
  595. }
  596. ccdc->update |= OMAP3ISP_CCDC_BCOMP;
  597. }
  598. ccdc->shadow_update = 0;
  599. if (OMAP3ISP_CCDC_FPC & ccdc_struct->update) {
  600. struct omap3isp_ccdc_fpc fpc;
  601. struct ispccdc_fpc fpc_old = { .addr = NULL, };
  602. struct ispccdc_fpc fpc_new;
  603. u32 size;
  604. if (ccdc->state != ISP_PIPELINE_STREAM_STOPPED)
  605. return -EBUSY;
  606. ccdc->fpc_en = !!(OMAP3ISP_CCDC_FPC & ccdc_struct->flag);
  607. if (ccdc->fpc_en) {
  608. if (copy_from_user(&fpc, ccdc_struct->fpc, sizeof(fpc)))
  609. return -EFAULT;
  610. size = fpc.fpnum * 4;
  611. /*
  612. * The table address must be 64-bytes aligned, which is
  613. * guaranteed by dma_alloc_coherent().
  614. */
  615. fpc_new.fpnum = fpc.fpnum;
  616. fpc_new.addr = dma_alloc_coherent(isp->dev, size,
  617. &fpc_new.dma,
  618. GFP_KERNEL);
  619. if (fpc_new.addr == NULL)
  620. return -ENOMEM;
  621. if (copy_from_user(fpc_new.addr,
  622. (__force void __user *)fpc.fpcaddr,
  623. size)) {
  624. dma_free_coherent(isp->dev, size, fpc_new.addr,
  625. fpc_new.dma);
  626. return -EFAULT;
  627. }
  628. fpc_old = ccdc->fpc;
  629. ccdc->fpc = fpc_new;
  630. }
  631. ccdc_configure_fpc(ccdc);
  632. if (fpc_old.addr != NULL)
  633. dma_free_coherent(isp->dev, fpc_old.fpnum * 4,
  634. fpc_old.addr, fpc_old.dma);
  635. }
  636. return ccdc_lsc_config(ccdc, ccdc_struct);
  637. }
  638. static void ccdc_apply_controls(struct isp_ccdc_device *ccdc)
  639. {
  640. if (ccdc->update & OMAP3ISP_CCDC_ALAW) {
  641. ccdc_configure_alaw(ccdc);
  642. ccdc->update &= ~OMAP3ISP_CCDC_ALAW;
  643. }
  644. if (ccdc->update & OMAP3ISP_CCDC_LPF) {
  645. ccdc_configure_lpf(ccdc);
  646. ccdc->update &= ~OMAP3ISP_CCDC_LPF;
  647. }
  648. if (ccdc->update & OMAP3ISP_CCDC_BLCLAMP) {
  649. ccdc_configure_clamp(ccdc);
  650. ccdc->update &= ~OMAP3ISP_CCDC_BLCLAMP;
  651. }
  652. if (ccdc->update & OMAP3ISP_CCDC_BCOMP) {
  653. ccdc_configure_black_comp(ccdc);
  654. ccdc->update &= ~OMAP3ISP_CCDC_BCOMP;
  655. }
  656. }
  657. /*
  658. * omap3isp_ccdc_restore_context - Restore values of the CCDC module registers
  659. * @isp: Pointer to ISP device
  660. */
  661. void omap3isp_ccdc_restore_context(struct isp_device *isp)
  662. {
  663. struct isp_ccdc_device *ccdc = &isp->isp_ccdc;
  664. isp_reg_set(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_CFG, ISPCCDC_CFG_VDLC);
  665. ccdc->update = OMAP3ISP_CCDC_ALAW | OMAP3ISP_CCDC_LPF
  666. | OMAP3ISP_CCDC_BLCLAMP | OMAP3ISP_CCDC_BCOMP;
  667. ccdc_apply_controls(ccdc);
  668. ccdc_configure_fpc(ccdc);
  669. }
  670. /* -----------------------------------------------------------------------------
  671. * Format- and pipeline-related configuration helpers
  672. */
  673. /*
  674. * ccdc_config_vp - Configure the Video Port.
  675. * @ccdc: Pointer to ISP CCDC device.
  676. */
  677. static void ccdc_config_vp(struct isp_ccdc_device *ccdc)
  678. {
  679. struct isp_pipeline *pipe = to_isp_pipeline(&ccdc->subdev.entity);
  680. struct isp_device *isp = to_isp_device(ccdc);
  681. const struct isp_format_info *info;
  682. struct v4l2_mbus_framefmt *format;
  683. unsigned long l3_ick = pipe->l3_ick;
  684. unsigned int max_div = isp->revision == ISP_REVISION_15_0 ? 64 : 8;
  685. unsigned int div = 0;
  686. u32 fmtcfg = ISPCCDC_FMTCFG_VPEN;
  687. format = &ccdc->formats[CCDC_PAD_SOURCE_VP];
  688. if (!format->code) {
  689. /* Disable the video port when the input format isn't supported.
  690. * This is indicated by a pixel code set to 0.
  691. */
  692. isp_reg_writel(isp, 0, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_FMTCFG);
  693. return;
  694. }
  695. isp_reg_writel(isp, (0 << ISPCCDC_FMT_HORZ_FMTSPH_SHIFT) |
  696. (format->width << ISPCCDC_FMT_HORZ_FMTLNH_SHIFT),
  697. OMAP3_ISP_IOMEM_CCDC, ISPCCDC_FMT_HORZ);
  698. isp_reg_writel(isp, (0 << ISPCCDC_FMT_VERT_FMTSLV_SHIFT) |
  699. ((format->height + 1) << ISPCCDC_FMT_VERT_FMTLNV_SHIFT),
  700. OMAP3_ISP_IOMEM_CCDC, ISPCCDC_FMT_VERT);
  701. isp_reg_writel(isp, (format->width << ISPCCDC_VP_OUT_HORZ_NUM_SHIFT) |
  702. (format->height << ISPCCDC_VP_OUT_VERT_NUM_SHIFT),
  703. OMAP3_ISP_IOMEM_CCDC, ISPCCDC_VP_OUT);
  704. info = omap3isp_video_format_info(ccdc->formats[CCDC_PAD_SINK].code);
  705. switch (info->width) {
  706. case 8:
  707. case 10:
  708. fmtcfg |= ISPCCDC_FMTCFG_VPIN_9_0;
  709. break;
  710. case 11:
  711. fmtcfg |= ISPCCDC_FMTCFG_VPIN_10_1;
  712. break;
  713. case 12:
  714. fmtcfg |= ISPCCDC_FMTCFG_VPIN_11_2;
  715. break;
  716. case 13:
  717. fmtcfg |= ISPCCDC_FMTCFG_VPIN_12_3;
  718. break;
  719. }
  720. if (pipe->input)
  721. div = DIV_ROUND_UP(l3_ick, pipe->max_rate);
  722. else if (pipe->external_rate)
  723. div = l3_ick / pipe->external_rate;
  724. div = clamp(div, 2U, max_div);
  725. fmtcfg |= (div - 2) << ISPCCDC_FMTCFG_VPIF_FRQ_SHIFT;
  726. isp_reg_writel(isp, fmtcfg, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_FMTCFG);
  727. }
  728. /*
  729. * ccdc_config_outlineoffset - Configure memory saving output line offset
  730. * @ccdc: Pointer to ISP CCDC device.
  731. * @bpl: Number of bytes per line when stored in memory.
  732. * @field: Field order when storing interlaced formats in memory.
  733. *
  734. * Configure the offsets for the line output control:
  735. *
  736. * - The horizontal line offset is defined as the number of bytes between the
  737. * start of two consecutive lines in memory. Set it to the given bytes per
  738. * line value.
  739. *
  740. * - The field offset value is defined as the number of lines to offset the
  741. * start of the field identified by FID = 1. Set it to one.
  742. *
  743. * - The line offset values are defined as the number of lines (as defined by
  744. * the horizontal line offset) between the start of two consecutive lines for
  745. * all combinations of odd/even lines in odd/even fields. When interleaving
  746. * fields set them all to two lines, and to one line otherwise.
  747. */
  748. static void ccdc_config_outlineoffset(struct isp_ccdc_device *ccdc,
  749. unsigned int bpl,
  750. enum v4l2_field field)
  751. {
  752. struct isp_device *isp = to_isp_device(ccdc);
  753. u32 sdofst = 0;
  754. isp_reg_writel(isp, bpl & 0xffff, OMAP3_ISP_IOMEM_CCDC,
  755. ISPCCDC_HSIZE_OFF);
  756. switch (field) {
  757. case V4L2_FIELD_INTERLACED_TB:
  758. case V4L2_FIELD_INTERLACED_BT:
  759. /* When interleaving fields in memory offset field one by one
  760. * line and set the line offset to two lines.
  761. */
  762. sdofst |= (1 << ISPCCDC_SDOFST_LOFST0_SHIFT)
  763. | (1 << ISPCCDC_SDOFST_LOFST1_SHIFT)
  764. | (1 << ISPCCDC_SDOFST_LOFST2_SHIFT)
  765. | (1 << ISPCCDC_SDOFST_LOFST3_SHIFT);
  766. break;
  767. default:
  768. /* In all other cases set the line offsets to one line. */
  769. break;
  770. }
  771. isp_reg_writel(isp, sdofst, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_SDOFST);
  772. }
  773. /*
  774. * ccdc_set_outaddr - Set memory address to save output image
  775. * @ccdc: Pointer to ISP CCDC device.
  776. * @addr: ISP MMU Mapped 32-bit memory address aligned on 32 byte boundary.
  777. *
  778. * Sets the memory address where the output will be saved.
  779. */
  780. static void ccdc_set_outaddr(struct isp_ccdc_device *ccdc, u32 addr)
  781. {
  782. struct isp_device *isp = to_isp_device(ccdc);
  783. isp_reg_writel(isp, addr, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_SDR_ADDR);
  784. }
  785. /*
  786. * omap3isp_ccdc_max_rate - Calculate maximum input data rate based on the input
  787. * @ccdc: Pointer to ISP CCDC device.
  788. * @max_rate: Maximum calculated data rate.
  789. *
  790. * Returns in *max_rate less value between calculated and passed
  791. */
  792. void omap3isp_ccdc_max_rate(struct isp_ccdc_device *ccdc,
  793. unsigned int *max_rate)
  794. {
  795. struct isp_pipeline *pipe = to_isp_pipeline(&ccdc->subdev.entity);
  796. unsigned int rate;
  797. if (pipe == NULL)
  798. return;
  799. /*
  800. * TRM says that for parallel sensors the maximum data rate
  801. * should be 90% form L3/2 clock, otherwise just L3/2.
  802. */
  803. if (ccdc->input == CCDC_INPUT_PARALLEL)
  804. rate = pipe->l3_ick / 2 * 9 / 10;
  805. else
  806. rate = pipe->l3_ick / 2;
  807. *max_rate = min(*max_rate, rate);
  808. }
  809. /*
  810. * ccdc_config_sync_if - Set CCDC sync interface configuration
  811. * @ccdc: Pointer to ISP CCDC device.
  812. * @parcfg: Parallel interface platform data (may be NULL)
  813. * @data_size: Data size
  814. */
  815. static void ccdc_config_sync_if(struct isp_ccdc_device *ccdc,
  816. struct isp_parallel_cfg *parcfg,
  817. unsigned int data_size)
  818. {
  819. struct isp_device *isp = to_isp_device(ccdc);
  820. const struct v4l2_mbus_framefmt *format;
  821. u32 syn_mode = ISPCCDC_SYN_MODE_VDHDEN;
  822. format = &ccdc->formats[CCDC_PAD_SINK];
  823. if (format->code == MEDIA_BUS_FMT_YUYV8_2X8 ||
  824. format->code == MEDIA_BUS_FMT_UYVY8_2X8) {
  825. /* According to the OMAP3 TRM the input mode only affects SYNC
  826. * mode, enabling BT.656 mode should take precedence. However,
  827. * in practice setting the input mode to YCbCr data on 8 bits
  828. * seems to be required in BT.656 mode. In SYNC mode set it to
  829. * YCbCr on 16 bits as the bridge is enabled in that case.
  830. */
  831. if (ccdc->bt656)
  832. syn_mode |= ISPCCDC_SYN_MODE_INPMOD_YCBCR8;
  833. else
  834. syn_mode |= ISPCCDC_SYN_MODE_INPMOD_YCBCR16;
  835. }
  836. switch (data_size) {
  837. case 8:
  838. syn_mode |= ISPCCDC_SYN_MODE_DATSIZ_8;
  839. break;
  840. case 10:
  841. syn_mode |= ISPCCDC_SYN_MODE_DATSIZ_10;
  842. break;
  843. case 11:
  844. syn_mode |= ISPCCDC_SYN_MODE_DATSIZ_11;
  845. break;
  846. case 12:
  847. syn_mode |= ISPCCDC_SYN_MODE_DATSIZ_12;
  848. break;
  849. }
  850. if (parcfg && parcfg->data_pol)
  851. syn_mode |= ISPCCDC_SYN_MODE_DATAPOL;
  852. if (parcfg && parcfg->hs_pol)
  853. syn_mode |= ISPCCDC_SYN_MODE_HDPOL;
  854. /* The polarity of the vertical sync signal output by the BT.656
  855. * decoder is not documented and seems to be active low.
  856. */
  857. if ((parcfg && parcfg->vs_pol) || ccdc->bt656)
  858. syn_mode |= ISPCCDC_SYN_MODE_VDPOL;
  859. if (parcfg && parcfg->fld_pol)
  860. syn_mode |= ISPCCDC_SYN_MODE_FLDPOL;
  861. isp_reg_writel(isp, syn_mode, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_SYN_MODE);
  862. /* The CCDC_CFG.Y8POS bit is used in YCbCr8 input mode only. The
  863. * hardware seems to ignore it in all other input modes.
  864. */
  865. if (format->code == MEDIA_BUS_FMT_UYVY8_2X8)
  866. isp_reg_set(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_CFG,
  867. ISPCCDC_CFG_Y8POS);
  868. else
  869. isp_reg_clr(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_CFG,
  870. ISPCCDC_CFG_Y8POS);
  871. /* Enable or disable BT.656 mode, including error correction for the
  872. * synchronization codes.
  873. */
  874. if (ccdc->bt656)
  875. isp_reg_set(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_REC656IF,
  876. ISPCCDC_REC656IF_R656ON | ISPCCDC_REC656IF_ECCFVH);
  877. else
  878. isp_reg_clr(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_REC656IF,
  879. ISPCCDC_REC656IF_R656ON | ISPCCDC_REC656IF_ECCFVH);
  880. }
  881. /* CCDC formats descriptions */
  882. static const u32 ccdc_sgrbg_pattern =
  883. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP0PLC0_SHIFT |
  884. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP0PLC1_SHIFT |
  885. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP0PLC2_SHIFT |
  886. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP0PLC3_SHIFT |
  887. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP1PLC0_SHIFT |
  888. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP1PLC1_SHIFT |
  889. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP1PLC2_SHIFT |
  890. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP1PLC3_SHIFT |
  891. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP2PLC0_SHIFT |
  892. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP2PLC1_SHIFT |
  893. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP2PLC2_SHIFT |
  894. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP2PLC3_SHIFT |
  895. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP3PLC0_SHIFT |
  896. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP3PLC1_SHIFT |
  897. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP3PLC2_SHIFT |
  898. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP3PLC3_SHIFT;
  899. static const u32 ccdc_srggb_pattern =
  900. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP0PLC0_SHIFT |
  901. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP0PLC1_SHIFT |
  902. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP0PLC2_SHIFT |
  903. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP0PLC3_SHIFT |
  904. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP1PLC0_SHIFT |
  905. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP1PLC1_SHIFT |
  906. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP1PLC2_SHIFT |
  907. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP1PLC3_SHIFT |
  908. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP2PLC0_SHIFT |
  909. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP2PLC1_SHIFT |
  910. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP2PLC2_SHIFT |
  911. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP2PLC3_SHIFT |
  912. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP3PLC0_SHIFT |
  913. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP3PLC1_SHIFT |
  914. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP3PLC2_SHIFT |
  915. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP3PLC3_SHIFT;
  916. static const u32 ccdc_sbggr_pattern =
  917. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP0PLC0_SHIFT |
  918. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP0PLC1_SHIFT |
  919. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP0PLC2_SHIFT |
  920. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP0PLC3_SHIFT |
  921. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP1PLC0_SHIFT |
  922. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP1PLC1_SHIFT |
  923. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP1PLC2_SHIFT |
  924. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP1PLC3_SHIFT |
  925. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP2PLC0_SHIFT |
  926. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP2PLC1_SHIFT |
  927. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP2PLC2_SHIFT |
  928. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP2PLC3_SHIFT |
  929. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP3PLC0_SHIFT |
  930. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP3PLC1_SHIFT |
  931. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP3PLC2_SHIFT |
  932. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP3PLC3_SHIFT;
  933. static const u32 ccdc_sgbrg_pattern =
  934. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP0PLC0_SHIFT |
  935. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP0PLC1_SHIFT |
  936. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP0PLC2_SHIFT |
  937. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP0PLC3_SHIFT |
  938. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP1PLC0_SHIFT |
  939. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP1PLC1_SHIFT |
  940. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP1PLC2_SHIFT |
  941. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP1PLC3_SHIFT |
  942. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP2PLC0_SHIFT |
  943. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP2PLC1_SHIFT |
  944. ISPCCDC_COLPTN_Gb_G << ISPCCDC_COLPTN_CP2PLC2_SHIFT |
  945. ISPCCDC_COLPTN_B_Mg << ISPCCDC_COLPTN_CP2PLC3_SHIFT |
  946. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP3PLC0_SHIFT |
  947. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP3PLC1_SHIFT |
  948. ISPCCDC_COLPTN_R_Ye << ISPCCDC_COLPTN_CP3PLC2_SHIFT |
  949. ISPCCDC_COLPTN_Gr_Cy << ISPCCDC_COLPTN_CP3PLC3_SHIFT;
  950. static void ccdc_configure(struct isp_ccdc_device *ccdc)
  951. {
  952. struct isp_device *isp = to_isp_device(ccdc);
  953. struct isp_parallel_cfg *parcfg = NULL;
  954. struct v4l2_subdev *sensor;
  955. struct v4l2_mbus_framefmt *format;
  956. const struct v4l2_rect *crop;
  957. const struct isp_format_info *fmt_info;
  958. struct v4l2_subdev_format fmt_src;
  959. unsigned int depth_out;
  960. unsigned int depth_in = 0;
  961. struct media_pad *pad;
  962. unsigned long flags;
  963. unsigned int bridge;
  964. unsigned int shift;
  965. unsigned int nph;
  966. unsigned int sph;
  967. u32 syn_mode;
  968. u32 ccdc_pattern;
  969. ccdc->bt656 = false;
  970. ccdc->fields = 0;
  971. pad = media_entity_remote_pad(&ccdc->pads[CCDC_PAD_SINK]);
  972. sensor = media_entity_to_v4l2_subdev(pad->entity);
  973. if (ccdc->input == CCDC_INPUT_PARALLEL) {
  974. struct v4l2_subdev *sd =
  975. to_isp_pipeline(&ccdc->subdev.entity)->external;
  976. parcfg = &v4l2_subdev_to_bus_cfg(sd)->bus.parallel;
  977. ccdc->bt656 = parcfg->bt656;
  978. }
  979. /* CCDC_PAD_SINK */
  980. format = &ccdc->formats[CCDC_PAD_SINK];
  981. /* Compute the lane shifter shift value and enable the bridge when the
  982. * input format is a non-BT.656 YUV variant.
  983. */
  984. fmt_src.pad = pad->index;
  985. fmt_src.which = V4L2_SUBDEV_FORMAT_ACTIVE;
  986. if (!v4l2_subdev_call(sensor, pad, get_fmt, NULL, &fmt_src)) {
  987. fmt_info = omap3isp_video_format_info(fmt_src.format.code);
  988. depth_in = fmt_info->width;
  989. }
  990. fmt_info = omap3isp_video_format_info(format->code);
  991. depth_out = fmt_info->width;
  992. shift = depth_in - depth_out;
  993. if (ccdc->bt656)
  994. bridge = ISPCTRL_PAR_BRIDGE_DISABLE;
  995. else if (fmt_info->code == MEDIA_BUS_FMT_YUYV8_2X8)
  996. bridge = ISPCTRL_PAR_BRIDGE_LENDIAN;
  997. else if (fmt_info->code == MEDIA_BUS_FMT_UYVY8_2X8)
  998. bridge = ISPCTRL_PAR_BRIDGE_BENDIAN;
  999. else
  1000. bridge = ISPCTRL_PAR_BRIDGE_DISABLE;
  1001. omap3isp_configure_bridge(isp, ccdc->input, parcfg, shift, bridge);
  1002. /* Configure the sync interface. */
  1003. ccdc_config_sync_if(ccdc, parcfg, depth_out);
  1004. syn_mode = isp_reg_readl(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_SYN_MODE);
  1005. /* Use the raw, unprocessed data when writing to memory. The H3A and
  1006. * histogram modules are still fed with lens shading corrected data.
  1007. */
  1008. syn_mode &= ~ISPCCDC_SYN_MODE_VP2SDR;
  1009. if (ccdc->output & CCDC_OUTPUT_MEMORY)
  1010. syn_mode |= ISPCCDC_SYN_MODE_WEN;
  1011. else
  1012. syn_mode &= ~ISPCCDC_SYN_MODE_WEN;
  1013. if (ccdc->output & CCDC_OUTPUT_RESIZER)
  1014. syn_mode |= ISPCCDC_SYN_MODE_SDR2RSZ;
  1015. else
  1016. syn_mode &= ~ISPCCDC_SYN_MODE_SDR2RSZ;
  1017. /* Mosaic filter */
  1018. switch (format->code) {
  1019. case MEDIA_BUS_FMT_SRGGB10_1X10:
  1020. case MEDIA_BUS_FMT_SRGGB12_1X12:
  1021. ccdc_pattern = ccdc_srggb_pattern;
  1022. break;
  1023. case MEDIA_BUS_FMT_SBGGR10_1X10:
  1024. case MEDIA_BUS_FMT_SBGGR12_1X12:
  1025. ccdc_pattern = ccdc_sbggr_pattern;
  1026. break;
  1027. case MEDIA_BUS_FMT_SGBRG10_1X10:
  1028. case MEDIA_BUS_FMT_SGBRG12_1X12:
  1029. ccdc_pattern = ccdc_sgbrg_pattern;
  1030. break;
  1031. default:
  1032. /* Use GRBG */
  1033. ccdc_pattern = ccdc_sgrbg_pattern;
  1034. break;
  1035. }
  1036. ccdc_config_imgattr(ccdc, ccdc_pattern);
  1037. /* Generate VD0 on the last line of the image and VD1 on the
  1038. * 2/3 height line.
  1039. */
  1040. isp_reg_writel(isp, ((format->height - 2) << ISPCCDC_VDINT_0_SHIFT) |
  1041. ((format->height * 2 / 3) << ISPCCDC_VDINT_1_SHIFT),
  1042. OMAP3_ISP_IOMEM_CCDC, ISPCCDC_VDINT);
  1043. /* CCDC_PAD_SOURCE_OF */
  1044. format = &ccdc->formats[CCDC_PAD_SOURCE_OF];
  1045. crop = &ccdc->crop;
  1046. /* The horizontal coordinates are expressed in pixel clock cycles. We
  1047. * need two cycles per pixel in BT.656 mode, and one cycle per pixel in
  1048. * SYNC mode regardless of the format as the bridge is enabled for YUV
  1049. * formats in that case.
  1050. */
  1051. if (ccdc->bt656) {
  1052. sph = crop->left * 2;
  1053. nph = crop->width * 2 - 1;
  1054. } else {
  1055. sph = crop->left;
  1056. nph = crop->width - 1;
  1057. }
  1058. isp_reg_writel(isp, (sph << ISPCCDC_HORZ_INFO_SPH_SHIFT) |
  1059. (nph << ISPCCDC_HORZ_INFO_NPH_SHIFT),
  1060. OMAP3_ISP_IOMEM_CCDC, ISPCCDC_HORZ_INFO);
  1061. isp_reg_writel(isp, (crop->top << ISPCCDC_VERT_START_SLV0_SHIFT) |
  1062. (crop->top << ISPCCDC_VERT_START_SLV1_SHIFT),
  1063. OMAP3_ISP_IOMEM_CCDC, ISPCCDC_VERT_START);
  1064. isp_reg_writel(isp, (crop->height - 1)
  1065. << ISPCCDC_VERT_LINES_NLV_SHIFT,
  1066. OMAP3_ISP_IOMEM_CCDC, ISPCCDC_VERT_LINES);
  1067. ccdc_config_outlineoffset(ccdc, ccdc->video_out.bpl_value,
  1068. format->field);
  1069. /* When interleaving fields enable processing of the field input signal.
  1070. * This will cause the line output control module to apply the field
  1071. * offset to field 1.
  1072. */
  1073. if (ccdc->formats[CCDC_PAD_SINK].field == V4L2_FIELD_ALTERNATE &&
  1074. (format->field == V4L2_FIELD_INTERLACED_TB ||
  1075. format->field == V4L2_FIELD_INTERLACED_BT))
  1076. syn_mode |= ISPCCDC_SYN_MODE_FLDMODE;
  1077. /* The CCDC outputs data in UYVY order by default. Swap bytes to get
  1078. * YUYV.
  1079. */
  1080. if (format->code == MEDIA_BUS_FMT_YUYV8_1X16)
  1081. isp_reg_set(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_CFG,
  1082. ISPCCDC_CFG_BSWD);
  1083. else
  1084. isp_reg_clr(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_CFG,
  1085. ISPCCDC_CFG_BSWD);
  1086. /* Use PACK8 mode for 1byte per pixel formats. Check for BT.656 mode
  1087. * explicitly as the driver reports 1X16 instead of 2X8 at the OF pad
  1088. * for simplicity.
  1089. */
  1090. if (omap3isp_video_format_info(format->code)->width <= 8 || ccdc->bt656)
  1091. syn_mode |= ISPCCDC_SYN_MODE_PACK8;
  1092. else
  1093. syn_mode &= ~ISPCCDC_SYN_MODE_PACK8;
  1094. isp_reg_writel(isp, syn_mode, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_SYN_MODE);
  1095. /* CCDC_PAD_SOURCE_VP */
  1096. ccdc_config_vp(ccdc);
  1097. /* Lens shading correction. */
  1098. spin_lock_irqsave(&ccdc->lsc.req_lock, flags);
  1099. if (ccdc->lsc.request == NULL)
  1100. goto unlock;
  1101. WARN_ON(ccdc->lsc.active);
  1102. /* Get last good LSC configuration. If it is not supported for
  1103. * the current active resolution discard it.
  1104. */
  1105. if (ccdc->lsc.active == NULL &&
  1106. __ccdc_lsc_configure(ccdc, ccdc->lsc.request) == 0) {
  1107. ccdc->lsc.active = ccdc->lsc.request;
  1108. } else {
  1109. list_add_tail(&ccdc->lsc.request->list, &ccdc->lsc.free_queue);
  1110. schedule_work(&ccdc->lsc.table_work);
  1111. }
  1112. ccdc->lsc.request = NULL;
  1113. unlock:
  1114. spin_unlock_irqrestore(&ccdc->lsc.req_lock, flags);
  1115. ccdc_apply_controls(ccdc);
  1116. }
  1117. static void __ccdc_enable(struct isp_ccdc_device *ccdc, int enable)
  1118. {
  1119. struct isp_device *isp = to_isp_device(ccdc);
  1120. isp_reg_clr_set(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_PCR,
  1121. ISPCCDC_PCR_EN, enable ? ISPCCDC_PCR_EN : 0);
  1122. ccdc->running = enable;
  1123. }
  1124. static int ccdc_disable(struct isp_ccdc_device *ccdc)
  1125. {
  1126. unsigned long flags;
  1127. int ret = 0;
  1128. spin_lock_irqsave(&ccdc->lock, flags);
  1129. if (ccdc->state == ISP_PIPELINE_STREAM_CONTINUOUS)
  1130. ccdc->stopping = CCDC_STOP_REQUEST;
  1131. if (!ccdc->running)
  1132. ccdc->stopping = CCDC_STOP_FINISHED;
  1133. spin_unlock_irqrestore(&ccdc->lock, flags);
  1134. ret = wait_event_timeout(ccdc->wait,
  1135. ccdc->stopping == CCDC_STOP_FINISHED,
  1136. msecs_to_jiffies(2000));
  1137. if (ret == 0) {
  1138. ret = -ETIMEDOUT;
  1139. dev_warn(to_device(ccdc), "CCDC stop timeout!\n");
  1140. }
  1141. omap3isp_sbl_disable(to_isp_device(ccdc), OMAP3_ISP_SBL_CCDC_LSC_READ);
  1142. mutex_lock(&ccdc->ioctl_lock);
  1143. ccdc_lsc_free_request(ccdc, ccdc->lsc.request);
  1144. ccdc->lsc.request = ccdc->lsc.active;
  1145. ccdc->lsc.active = NULL;
  1146. cancel_work_sync(&ccdc->lsc.table_work);
  1147. ccdc_lsc_free_queue(ccdc, &ccdc->lsc.free_queue);
  1148. mutex_unlock(&ccdc->ioctl_lock);
  1149. ccdc->stopping = CCDC_STOP_NOT_REQUESTED;
  1150. return ret > 0 ? 0 : ret;
  1151. }
  1152. static void ccdc_enable(struct isp_ccdc_device *ccdc)
  1153. {
  1154. if (ccdc_lsc_is_configured(ccdc))
  1155. __ccdc_lsc_enable(ccdc, 1);
  1156. __ccdc_enable(ccdc, 1);
  1157. }
  1158. /* -----------------------------------------------------------------------------
  1159. * Interrupt handling
  1160. */
  1161. /*
  1162. * ccdc_sbl_busy - Poll idle state of CCDC and related SBL memory write bits
  1163. * @ccdc: Pointer to ISP CCDC device.
  1164. *
  1165. * Returns zero if the CCDC is idle and the image has been written to
  1166. * memory, too.
  1167. */
  1168. static int ccdc_sbl_busy(struct isp_ccdc_device *ccdc)
  1169. {
  1170. struct isp_device *isp = to_isp_device(ccdc);
  1171. return omap3isp_ccdc_busy(ccdc)
  1172. | (isp_reg_readl(isp, OMAP3_ISP_IOMEM_SBL, ISPSBL_CCDC_WR_0) &
  1173. ISPSBL_CCDC_WR_0_DATA_READY)
  1174. | (isp_reg_readl(isp, OMAP3_ISP_IOMEM_SBL, ISPSBL_CCDC_WR_1) &
  1175. ISPSBL_CCDC_WR_0_DATA_READY)
  1176. | (isp_reg_readl(isp, OMAP3_ISP_IOMEM_SBL, ISPSBL_CCDC_WR_2) &
  1177. ISPSBL_CCDC_WR_0_DATA_READY)
  1178. | (isp_reg_readl(isp, OMAP3_ISP_IOMEM_SBL, ISPSBL_CCDC_WR_3) &
  1179. ISPSBL_CCDC_WR_0_DATA_READY);
  1180. }
  1181. /*
  1182. * ccdc_sbl_wait_idle - Wait until the CCDC and related SBL are idle
  1183. * @ccdc: Pointer to ISP CCDC device.
  1184. * @max_wait: Max retry count in us for wait for idle/busy transition.
  1185. */
  1186. static int ccdc_sbl_wait_idle(struct isp_ccdc_device *ccdc,
  1187. unsigned int max_wait)
  1188. {
  1189. unsigned int wait = 0;
  1190. if (max_wait == 0)
  1191. max_wait = 10000; /* 10 ms */
  1192. for (wait = 0; wait <= max_wait; wait++) {
  1193. if (!ccdc_sbl_busy(ccdc))
  1194. return 0;
  1195. rmb();
  1196. udelay(1);
  1197. }
  1198. return -EBUSY;
  1199. }
  1200. /* ccdc_handle_stopping - Handle CCDC and/or LSC stopping sequence
  1201. * @ccdc: Pointer to ISP CCDC device.
  1202. * @event: Pointing which event trigger handler
  1203. *
  1204. * Return 1 when the event and stopping request combination is satisfied,
  1205. * zero otherwise.
  1206. */
  1207. static int ccdc_handle_stopping(struct isp_ccdc_device *ccdc, u32 event)
  1208. {
  1209. int rval = 0;
  1210. switch ((ccdc->stopping & 3) | event) {
  1211. case CCDC_STOP_REQUEST | CCDC_EVENT_VD1:
  1212. if (ccdc->lsc.state != LSC_STATE_STOPPED)
  1213. __ccdc_lsc_enable(ccdc, 0);
  1214. __ccdc_enable(ccdc, 0);
  1215. ccdc->stopping = CCDC_STOP_EXECUTED;
  1216. return 1;
  1217. case CCDC_STOP_EXECUTED | CCDC_EVENT_VD0:
  1218. ccdc->stopping |= CCDC_STOP_CCDC_FINISHED;
  1219. if (ccdc->lsc.state == LSC_STATE_STOPPED)
  1220. ccdc->stopping |= CCDC_STOP_LSC_FINISHED;
  1221. rval = 1;
  1222. break;
  1223. case CCDC_STOP_EXECUTED | CCDC_EVENT_LSC_DONE:
  1224. ccdc->stopping |= CCDC_STOP_LSC_FINISHED;
  1225. rval = 1;
  1226. break;
  1227. case CCDC_STOP_EXECUTED | CCDC_EVENT_VD1:
  1228. return 1;
  1229. }
  1230. if (ccdc->stopping == CCDC_STOP_FINISHED) {
  1231. wake_up(&ccdc->wait);
  1232. rval = 1;
  1233. }
  1234. return rval;
  1235. }
  1236. static void ccdc_hs_vs_isr(struct isp_ccdc_device *ccdc)
  1237. {
  1238. struct isp_pipeline *pipe = to_isp_pipeline(&ccdc->subdev.entity);
  1239. struct video_device *vdev = ccdc->subdev.devnode;
  1240. struct v4l2_event event;
  1241. /* Frame number propagation */
  1242. atomic_inc(&pipe->frame_number);
  1243. memset(&event, 0, sizeof(event));
  1244. event.type = V4L2_EVENT_FRAME_SYNC;
  1245. event.u.frame_sync.frame_sequence = atomic_read(&pipe->frame_number);
  1246. v4l2_event_queue(vdev, &event);
  1247. }
  1248. /*
  1249. * ccdc_lsc_isr - Handle LSC events
  1250. * @ccdc: Pointer to ISP CCDC device.
  1251. * @events: LSC events
  1252. */
  1253. static void ccdc_lsc_isr(struct isp_ccdc_device *ccdc, u32 events)
  1254. {
  1255. unsigned long flags;
  1256. if (events & IRQ0STATUS_CCDC_LSC_PREF_ERR_IRQ) {
  1257. struct isp_pipeline *pipe =
  1258. to_isp_pipeline(&ccdc->subdev.entity);
  1259. ccdc_lsc_error_handler(ccdc);
  1260. pipe->error = true;
  1261. dev_dbg(to_device(ccdc), "lsc prefetch error\n");
  1262. }
  1263. if (!(events & IRQ0STATUS_CCDC_LSC_DONE_IRQ))
  1264. return;
  1265. /* LSC_DONE interrupt occur, there are two cases
  1266. * 1. stopping for reconfiguration
  1267. * 2. stopping because of STREAM OFF command
  1268. */
  1269. spin_lock_irqsave(&ccdc->lsc.req_lock, flags);
  1270. if (ccdc->lsc.state == LSC_STATE_STOPPING)
  1271. ccdc->lsc.state = LSC_STATE_STOPPED;
  1272. if (ccdc_handle_stopping(ccdc, CCDC_EVENT_LSC_DONE))
  1273. goto done;
  1274. if (ccdc->lsc.state != LSC_STATE_RECONFIG)
  1275. goto done;
  1276. /* LSC is in STOPPING state, change to the new state */
  1277. ccdc->lsc.state = LSC_STATE_STOPPED;
  1278. /* This is an exception. Start of frame and LSC_DONE interrupt
  1279. * have been received on the same time. Skip this event and wait
  1280. * for better times.
  1281. */
  1282. if (events & IRQ0STATUS_HS_VS_IRQ)
  1283. goto done;
  1284. /* The LSC engine is stopped at this point. Enable it if there's a
  1285. * pending request.
  1286. */
  1287. if (ccdc->lsc.request == NULL)
  1288. goto done;
  1289. ccdc_lsc_enable(ccdc);
  1290. done:
  1291. spin_unlock_irqrestore(&ccdc->lsc.req_lock, flags);
  1292. }
  1293. /*
  1294. * Check whether the CCDC has captured all fields necessary to complete the
  1295. * buffer.
  1296. */
  1297. static bool ccdc_has_all_fields(struct isp_ccdc_device *ccdc)
  1298. {
  1299. struct isp_pipeline *pipe = to_isp_pipeline(&ccdc->subdev.entity);
  1300. struct isp_device *isp = to_isp_device(ccdc);
  1301. enum v4l2_field of_field = ccdc->formats[CCDC_PAD_SOURCE_OF].field;
  1302. enum v4l2_field field;
  1303. /* When the input is progressive fields don't matter. */
  1304. if (of_field == V4L2_FIELD_NONE)
  1305. return true;
  1306. /* Read the current field identifier. */
  1307. field = isp_reg_readl(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_SYN_MODE)
  1308. & ISPCCDC_SYN_MODE_FLDSTAT
  1309. ? V4L2_FIELD_BOTTOM : V4L2_FIELD_TOP;
  1310. /* When capturing fields in alternate order just store the current field
  1311. * identifier in the pipeline.
  1312. */
  1313. if (of_field == V4L2_FIELD_ALTERNATE) {
  1314. pipe->field = field;
  1315. return true;
  1316. }
  1317. /* The format is interlaced. Make sure we've captured both fields. */
  1318. ccdc->fields |= field == V4L2_FIELD_BOTTOM
  1319. ? CCDC_FIELD_BOTTOM : CCDC_FIELD_TOP;
  1320. if (ccdc->fields != CCDC_FIELD_BOTH)
  1321. return false;
  1322. /* Verify that the field just captured corresponds to the last field
  1323. * needed based on the desired field order.
  1324. */
  1325. if ((of_field == V4L2_FIELD_INTERLACED_TB && field == V4L2_FIELD_TOP) ||
  1326. (of_field == V4L2_FIELD_INTERLACED_BT && field == V4L2_FIELD_BOTTOM))
  1327. return false;
  1328. /* The buffer can be completed, reset the fields for the next buffer. */
  1329. ccdc->fields = 0;
  1330. return true;
  1331. }
  1332. static int ccdc_isr_buffer(struct isp_ccdc_device *ccdc)
  1333. {
  1334. struct isp_pipeline *pipe = to_isp_pipeline(&ccdc->subdev.entity);
  1335. struct isp_device *isp = to_isp_device(ccdc);
  1336. struct isp_buffer *buffer;
  1337. /* The CCDC generates VD0 interrupts even when disabled (the datasheet
  1338. * doesn't explicitly state if that's supposed to happen or not, so it
  1339. * can be considered as a hardware bug or as a feature, but we have to
  1340. * deal with it anyway). Disabling the CCDC when no buffer is available
  1341. * would thus not be enough, we need to handle the situation explicitly.
  1342. */
  1343. if (list_empty(&ccdc->video_out.dmaqueue))
  1344. return 0;
  1345. /* We're in continuous mode, and memory writes were disabled due to a
  1346. * buffer underrun. Reenable them now that we have a buffer. The buffer
  1347. * address has been set in ccdc_video_queue.
  1348. */
  1349. if (ccdc->state == ISP_PIPELINE_STREAM_CONTINUOUS && ccdc->underrun) {
  1350. ccdc->underrun = 0;
  1351. return 1;
  1352. }
  1353. /* Wait for the CCDC to become idle. */
  1354. if (ccdc_sbl_wait_idle(ccdc, 1000)) {
  1355. dev_info(isp->dev, "CCDC won't become idle!\n");
  1356. media_entity_enum_set(&isp->crashed, &ccdc->subdev.entity);
  1357. omap3isp_pipeline_cancel_stream(pipe);
  1358. return 0;
  1359. }
  1360. if (!ccdc_has_all_fields(ccdc))
  1361. return 1;
  1362. buffer = omap3isp_video_buffer_next(&ccdc->video_out);
  1363. if (buffer != NULL)
  1364. ccdc_set_outaddr(ccdc, buffer->dma);
  1365. pipe->state |= ISP_PIPELINE_IDLE_OUTPUT;
  1366. if (ccdc->state == ISP_PIPELINE_STREAM_SINGLESHOT &&
  1367. isp_pipeline_ready(pipe))
  1368. omap3isp_pipeline_set_stream(pipe,
  1369. ISP_PIPELINE_STREAM_SINGLESHOT);
  1370. return buffer != NULL;
  1371. }
  1372. /*
  1373. * ccdc_vd0_isr - Handle VD0 event
  1374. * @ccdc: Pointer to ISP CCDC device.
  1375. *
  1376. * Executes LSC deferred enablement before next frame starts.
  1377. */
  1378. static void ccdc_vd0_isr(struct isp_ccdc_device *ccdc)
  1379. {
  1380. unsigned long flags;
  1381. int restart = 0;
  1382. /* In BT.656 mode the CCDC doesn't generate an HS/VS interrupt. We thus
  1383. * need to increment the frame counter here.
  1384. */
  1385. if (ccdc->bt656) {
  1386. struct isp_pipeline *pipe =
  1387. to_isp_pipeline(&ccdc->subdev.entity);
  1388. atomic_inc(&pipe->frame_number);
  1389. }
  1390. /* Emulate a VD1 interrupt for BT.656 mode, as we can't stop the CCDC in
  1391. * the VD1 interrupt handler in that mode without risking a CCDC stall
  1392. * if a short frame is received.
  1393. */
  1394. if (ccdc->bt656) {
  1395. spin_lock_irqsave(&ccdc->lock, flags);
  1396. if (ccdc->state == ISP_PIPELINE_STREAM_CONTINUOUS &&
  1397. ccdc->output & CCDC_OUTPUT_MEMORY) {
  1398. if (ccdc->lsc.state != LSC_STATE_STOPPED)
  1399. __ccdc_lsc_enable(ccdc, 0);
  1400. __ccdc_enable(ccdc, 0);
  1401. }
  1402. ccdc_handle_stopping(ccdc, CCDC_EVENT_VD1);
  1403. spin_unlock_irqrestore(&ccdc->lock, flags);
  1404. }
  1405. if (ccdc->output & CCDC_OUTPUT_MEMORY)
  1406. restart = ccdc_isr_buffer(ccdc);
  1407. spin_lock_irqsave(&ccdc->lock, flags);
  1408. if (ccdc_handle_stopping(ccdc, CCDC_EVENT_VD0)) {
  1409. spin_unlock_irqrestore(&ccdc->lock, flags);
  1410. return;
  1411. }
  1412. if (!ccdc->shadow_update)
  1413. ccdc_apply_controls(ccdc);
  1414. spin_unlock_irqrestore(&ccdc->lock, flags);
  1415. if (restart)
  1416. ccdc_enable(ccdc);
  1417. }
  1418. /*
  1419. * ccdc_vd1_isr - Handle VD1 event
  1420. * @ccdc: Pointer to ISP CCDC device.
  1421. */
  1422. static void ccdc_vd1_isr(struct isp_ccdc_device *ccdc)
  1423. {
  1424. unsigned long flags;
  1425. /* In BT.656 mode the synchronization signals are generated by the CCDC
  1426. * from the embedded sync codes. The VD0 and VD1 interrupts are thus
  1427. * only triggered when the CCDC is enabled, unlike external sync mode
  1428. * where the line counter runs even when the CCDC is stopped. We can't
  1429. * disable the CCDC at VD1 time, as no VD0 interrupt would be generated
  1430. * for a short frame, which would result in the CCDC being stopped and
  1431. * no VD interrupt generated anymore. The CCDC is stopped from the VD0
  1432. * interrupt handler instead for BT.656.
  1433. */
  1434. if (ccdc->bt656)
  1435. return;
  1436. spin_lock_irqsave(&ccdc->lsc.req_lock, flags);
  1437. /*
  1438. * Depending on the CCDC pipeline state, CCDC stopping should be
  1439. * handled differently. In SINGLESHOT we emulate an internal CCDC
  1440. * stopping because the CCDC hw works only in continuous mode.
  1441. * When CONTINUOUS pipeline state is used and the CCDC writes it's
  1442. * data to memory the CCDC and LSC are stopped immediately but
  1443. * without change the CCDC stopping state machine. The CCDC
  1444. * stopping state machine should be used only when user request
  1445. * for stopping is received (SINGLESHOT is an exeption).
  1446. */
  1447. switch (ccdc->state) {
  1448. case ISP_PIPELINE_STREAM_SINGLESHOT:
  1449. ccdc->stopping = CCDC_STOP_REQUEST;
  1450. break;
  1451. case ISP_PIPELINE_STREAM_CONTINUOUS:
  1452. if (ccdc->output & CCDC_OUTPUT_MEMORY) {
  1453. if (ccdc->lsc.state != LSC_STATE_STOPPED)
  1454. __ccdc_lsc_enable(ccdc, 0);
  1455. __ccdc_enable(ccdc, 0);
  1456. }
  1457. break;
  1458. case ISP_PIPELINE_STREAM_STOPPED:
  1459. break;
  1460. }
  1461. if (ccdc_handle_stopping(ccdc, CCDC_EVENT_VD1))
  1462. goto done;
  1463. if (ccdc->lsc.request == NULL)
  1464. goto done;
  1465. /*
  1466. * LSC need to be reconfigured. Stop it here and on next LSC_DONE IRQ
  1467. * do the appropriate changes in registers
  1468. */
  1469. if (ccdc->lsc.state == LSC_STATE_RUNNING) {
  1470. __ccdc_lsc_enable(ccdc, 0);
  1471. ccdc->lsc.state = LSC_STATE_RECONFIG;
  1472. goto done;
  1473. }
  1474. /* LSC has been in STOPPED state, enable it */
  1475. if (ccdc->lsc.state == LSC_STATE_STOPPED)
  1476. ccdc_lsc_enable(ccdc);
  1477. done:
  1478. spin_unlock_irqrestore(&ccdc->lsc.req_lock, flags);
  1479. }
  1480. /*
  1481. * omap3isp_ccdc_isr - Configure CCDC during interframe time.
  1482. * @ccdc: Pointer to ISP CCDC device.
  1483. * @events: CCDC events
  1484. */
  1485. int omap3isp_ccdc_isr(struct isp_ccdc_device *ccdc, u32 events)
  1486. {
  1487. if (ccdc->state == ISP_PIPELINE_STREAM_STOPPED)
  1488. return 0;
  1489. if (events & IRQ0STATUS_CCDC_VD1_IRQ)
  1490. ccdc_vd1_isr(ccdc);
  1491. ccdc_lsc_isr(ccdc, events);
  1492. if (events & IRQ0STATUS_CCDC_VD0_IRQ)
  1493. ccdc_vd0_isr(ccdc);
  1494. if (events & IRQ0STATUS_HS_VS_IRQ)
  1495. ccdc_hs_vs_isr(ccdc);
  1496. return 0;
  1497. }
  1498. /* -----------------------------------------------------------------------------
  1499. * ISP video operations
  1500. */
  1501. static int ccdc_video_queue(struct isp_video *video, struct isp_buffer *buffer)
  1502. {
  1503. struct isp_ccdc_device *ccdc = &video->isp->isp_ccdc;
  1504. unsigned long flags;
  1505. bool restart = false;
  1506. if (!(ccdc->output & CCDC_OUTPUT_MEMORY))
  1507. return -ENODEV;
  1508. ccdc_set_outaddr(ccdc, buffer->dma);
  1509. /* We now have a buffer queued on the output, restart the pipeline
  1510. * on the next CCDC interrupt if running in continuous mode (or when
  1511. * starting the stream) in external sync mode, or immediately in BT.656
  1512. * sync mode as no CCDC interrupt is generated when the CCDC is stopped
  1513. * in that case.
  1514. */
  1515. spin_lock_irqsave(&ccdc->lock, flags);
  1516. if (ccdc->state == ISP_PIPELINE_STREAM_CONTINUOUS && !ccdc->running &&
  1517. ccdc->bt656)
  1518. restart = true;
  1519. else
  1520. ccdc->underrun = 1;
  1521. spin_unlock_irqrestore(&ccdc->lock, flags);
  1522. if (restart)
  1523. ccdc_enable(ccdc);
  1524. return 0;
  1525. }
  1526. static const struct isp_video_operations ccdc_video_ops = {
  1527. .queue = ccdc_video_queue,
  1528. };
  1529. /* -----------------------------------------------------------------------------
  1530. * V4L2 subdev operations
  1531. */
  1532. /*
  1533. * ccdc_ioctl - CCDC module private ioctl's
  1534. * @sd: ISP CCDC V4L2 subdevice
  1535. * @cmd: ioctl command
  1536. * @arg: ioctl argument
  1537. *
  1538. * Return 0 on success or a negative error code otherwise.
  1539. */
  1540. static long ccdc_ioctl(struct v4l2_subdev *sd, unsigned int cmd, void *arg)
  1541. {
  1542. struct isp_ccdc_device *ccdc = v4l2_get_subdevdata(sd);
  1543. int ret;
  1544. switch (cmd) {
  1545. case VIDIOC_OMAP3ISP_CCDC_CFG:
  1546. mutex_lock(&ccdc->ioctl_lock);
  1547. ret = ccdc_config(ccdc, arg);
  1548. mutex_unlock(&ccdc->ioctl_lock);
  1549. break;
  1550. default:
  1551. return -ENOIOCTLCMD;
  1552. }
  1553. return ret;
  1554. }
  1555. static int ccdc_subscribe_event(struct v4l2_subdev *sd, struct v4l2_fh *fh,
  1556. struct v4l2_event_subscription *sub)
  1557. {
  1558. if (sub->type != V4L2_EVENT_FRAME_SYNC)
  1559. return -EINVAL;
  1560. /* line number is zero at frame start */
  1561. if (sub->id != 0)
  1562. return -EINVAL;
  1563. return v4l2_event_subscribe(fh, sub, OMAP3ISP_CCDC_NEVENTS, NULL);
  1564. }
  1565. static int ccdc_unsubscribe_event(struct v4l2_subdev *sd, struct v4l2_fh *fh,
  1566. struct v4l2_event_subscription *sub)
  1567. {
  1568. return v4l2_event_unsubscribe(fh, sub);
  1569. }
  1570. /*
  1571. * ccdc_set_stream - Enable/Disable streaming on the CCDC module
  1572. * @sd: ISP CCDC V4L2 subdevice
  1573. * @enable: Enable/disable stream
  1574. *
  1575. * When writing to memory, the CCDC hardware can't be enabled without a memory
  1576. * buffer to write to. As the s_stream operation is called in response to a
  1577. * STREAMON call without any buffer queued yet, just update the enabled field
  1578. * and return immediately. The CCDC will be enabled in ccdc_isr_buffer().
  1579. *
  1580. * When not writing to memory enable the CCDC immediately.
  1581. */
  1582. static int ccdc_set_stream(struct v4l2_subdev *sd, int enable)
  1583. {
  1584. struct isp_ccdc_device *ccdc = v4l2_get_subdevdata(sd);
  1585. struct isp_device *isp = to_isp_device(ccdc);
  1586. int ret = 0;
  1587. if (ccdc->state == ISP_PIPELINE_STREAM_STOPPED) {
  1588. if (enable == ISP_PIPELINE_STREAM_STOPPED)
  1589. return 0;
  1590. omap3isp_subclk_enable(isp, OMAP3_ISP_SUBCLK_CCDC);
  1591. isp_reg_set(isp, OMAP3_ISP_IOMEM_CCDC, ISPCCDC_CFG,
  1592. ISPCCDC_CFG_VDLC);
  1593. ccdc_configure(ccdc);
  1594. ccdc_print_status(ccdc);
  1595. }
  1596. switch (enable) {
  1597. case ISP_PIPELINE_STREAM_CONTINUOUS:
  1598. if (ccdc->output & CCDC_OUTPUT_MEMORY)
  1599. omap3isp_sbl_enable(isp, OMAP3_ISP_SBL_CCDC_WRITE);
  1600. if (ccdc->underrun || !(ccdc->output & CCDC_OUTPUT_MEMORY))
  1601. ccdc_enable(ccdc);
  1602. ccdc->underrun = 0;
  1603. break;
  1604. case ISP_PIPELINE_STREAM_SINGLESHOT:
  1605. if (ccdc->output & CCDC_OUTPUT_MEMORY &&
  1606. ccdc->state != ISP_PIPELINE_STREAM_SINGLESHOT)
  1607. omap3isp_sbl_enable(isp, OMAP3_ISP_SBL_CCDC_WRITE);
  1608. ccdc_enable(ccdc);
  1609. break;
  1610. case ISP_PIPELINE_STREAM_STOPPED:
  1611. ret = ccdc_disable(ccdc);
  1612. if (ccdc->output & CCDC_OUTPUT_MEMORY)
  1613. omap3isp_sbl_disable(isp, OMAP3_ISP_SBL_CCDC_WRITE);
  1614. omap3isp_subclk_disable(isp, OMAP3_ISP_SUBCLK_CCDC);
  1615. ccdc->underrun = 0;
  1616. break;
  1617. }
  1618. ccdc->state = enable;
  1619. return ret;
  1620. }
  1621. static struct v4l2_mbus_framefmt *
  1622. __ccdc_get_format(struct isp_ccdc_device *ccdc, struct v4l2_subdev_pad_config *cfg,
  1623. unsigned int pad, enum v4l2_subdev_format_whence which)
  1624. {
  1625. if (which == V4L2_SUBDEV_FORMAT_TRY)
  1626. return v4l2_subdev_get_try_format(&ccdc->subdev, cfg, pad);
  1627. else
  1628. return &ccdc->formats[pad];
  1629. }
  1630. static struct v4l2_rect *
  1631. __ccdc_get_crop(struct isp_ccdc_device *ccdc, struct v4l2_subdev_pad_config *cfg,
  1632. enum v4l2_subdev_format_whence which)
  1633. {
  1634. if (which == V4L2_SUBDEV_FORMAT_TRY)
  1635. return v4l2_subdev_get_try_crop(&ccdc->subdev, cfg, CCDC_PAD_SOURCE_OF);
  1636. else
  1637. return &ccdc->crop;
  1638. }
  1639. /*
  1640. * ccdc_try_format - Try video format on a pad
  1641. * @ccdc: ISP CCDC device
  1642. * @cfg : V4L2 subdev pad configuration
  1643. * @pad: Pad number
  1644. * @fmt: Format
  1645. */
  1646. static void
  1647. ccdc_try_format(struct isp_ccdc_device *ccdc, struct v4l2_subdev_pad_config *cfg,
  1648. unsigned int pad, struct v4l2_mbus_framefmt *fmt,
  1649. enum v4l2_subdev_format_whence which)
  1650. {
  1651. const struct isp_format_info *info;
  1652. u32 pixelcode;
  1653. unsigned int width = fmt->width;
  1654. unsigned int height = fmt->height;
  1655. struct v4l2_rect *crop;
  1656. enum v4l2_field field;
  1657. unsigned int i;
  1658. switch (pad) {
  1659. case CCDC_PAD_SINK:
  1660. for (i = 0; i < ARRAY_SIZE(ccdc_fmts); i++) {
  1661. if (fmt->code == ccdc_fmts[i])
  1662. break;
  1663. }
  1664. /* If not found, use SGRBG10 as default */
  1665. if (i >= ARRAY_SIZE(ccdc_fmts))
  1666. fmt->code = MEDIA_BUS_FMT_SGRBG10_1X10;
  1667. /* Clamp the input size. */
  1668. fmt->width = clamp_t(u32, width, 32, 4096);
  1669. fmt->height = clamp_t(u32, height, 32, 4096);
  1670. /* Default to progressive field order. */
  1671. if (fmt->field == V4L2_FIELD_ANY)
  1672. fmt->field = V4L2_FIELD_NONE;
  1673. break;
  1674. case CCDC_PAD_SOURCE_OF:
  1675. pixelcode = fmt->code;
  1676. field = fmt->field;
  1677. *fmt = *__ccdc_get_format(ccdc, cfg, CCDC_PAD_SINK, which);
  1678. /* In SYNC mode the bridge converts YUV formats from 2X8 to
  1679. * 1X16. In BT.656 no such conversion occurs. As we don't know
  1680. * at this point whether the source will use SYNC or BT.656 mode
  1681. * let's pretend the conversion always occurs. The CCDC will be
  1682. * configured to pack bytes in BT.656, hiding the inaccuracy.
  1683. * In all cases bytes can be swapped.
  1684. */
  1685. if (fmt->code == MEDIA_BUS_FMT_YUYV8_2X8 ||
  1686. fmt->code == MEDIA_BUS_FMT_UYVY8_2X8) {
  1687. /* Use the user requested format if YUV. */
  1688. if (pixelcode == MEDIA_BUS_FMT_YUYV8_2X8 ||
  1689. pixelcode == MEDIA_BUS_FMT_UYVY8_2X8 ||
  1690. pixelcode == MEDIA_BUS_FMT_YUYV8_1X16 ||
  1691. pixelcode == MEDIA_BUS_FMT_UYVY8_1X16)
  1692. fmt->code = pixelcode;
  1693. if (fmt->code == MEDIA_BUS_FMT_YUYV8_2X8)
  1694. fmt->code = MEDIA_BUS_FMT_YUYV8_1X16;
  1695. else if (fmt->code == MEDIA_BUS_FMT_UYVY8_2X8)
  1696. fmt->code = MEDIA_BUS_FMT_UYVY8_1X16;
  1697. }
  1698. /* Hardcode the output size to the crop rectangle size. */
  1699. crop = __ccdc_get_crop(ccdc, cfg, which);
  1700. fmt->width = crop->width;
  1701. fmt->height = crop->height;
  1702. /* When input format is interlaced with alternating fields the
  1703. * CCDC can interleave the fields.
  1704. */
  1705. if (fmt->field == V4L2_FIELD_ALTERNATE &&
  1706. (field == V4L2_FIELD_INTERLACED_TB ||
  1707. field == V4L2_FIELD_INTERLACED_BT)) {
  1708. fmt->field = field;
  1709. fmt->height *= 2;
  1710. }
  1711. break;
  1712. case CCDC_PAD_SOURCE_VP:
  1713. *fmt = *__ccdc_get_format(ccdc, cfg, CCDC_PAD_SINK, which);
  1714. /* The video port interface truncates the data to 10 bits. */
  1715. info = omap3isp_video_format_info(fmt->code);
  1716. fmt->code = info->truncated;
  1717. /* YUV formats are not supported by the video port. */
  1718. if (fmt->code == MEDIA_BUS_FMT_YUYV8_2X8 ||
  1719. fmt->code == MEDIA_BUS_FMT_UYVY8_2X8)
  1720. fmt->code = 0;
  1721. /* The number of lines that can be clocked out from the video
  1722. * port output must be at least one line less than the number
  1723. * of input lines.
  1724. */
  1725. fmt->width = clamp_t(u32, width, 32, fmt->width);
  1726. fmt->height = clamp_t(u32, height, 32, fmt->height - 1);
  1727. break;
  1728. }
  1729. /* Data is written to memory unpacked, each 10-bit or 12-bit pixel is
  1730. * stored on 2 bytes.
  1731. */
  1732. fmt->colorspace = V4L2_COLORSPACE_SRGB;
  1733. }
  1734. /*
  1735. * ccdc_try_crop - Validate a crop rectangle
  1736. * @ccdc: ISP CCDC device
  1737. * @sink: format on the sink pad
  1738. * @crop: crop rectangle to be validated
  1739. */
  1740. static void ccdc_try_crop(struct isp_ccdc_device *ccdc,
  1741. const struct v4l2_mbus_framefmt *sink,
  1742. struct v4l2_rect *crop)
  1743. {
  1744. const struct isp_format_info *info;
  1745. unsigned int max_width;
  1746. /* For Bayer formats, restrict left/top and width/height to even values
  1747. * to keep the Bayer pattern.
  1748. */
  1749. info = omap3isp_video_format_info(sink->code);
  1750. if (info->flavor != MEDIA_BUS_FMT_Y8_1X8) {
  1751. crop->left &= ~1;
  1752. crop->top &= ~1;
  1753. }
  1754. crop->left = clamp_t(u32, crop->left, 0, sink->width - CCDC_MIN_WIDTH);
  1755. crop->top = clamp_t(u32, crop->top, 0, sink->height - CCDC_MIN_HEIGHT);
  1756. /* The data formatter truncates the number of horizontal output pixels
  1757. * to a multiple of 16. To avoid clipping data, allow callers to request
  1758. * an output size bigger than the input size up to the nearest multiple
  1759. * of 16.
  1760. */
  1761. max_width = (sink->width - crop->left + 15) & ~15;
  1762. crop->width = clamp_t(u32, crop->width, CCDC_MIN_WIDTH, max_width)
  1763. & ~15;
  1764. crop->height = clamp_t(u32, crop->height, CCDC_MIN_HEIGHT,
  1765. sink->height - crop->top);
  1766. /* Odd width/height values don't make sense for Bayer formats. */
  1767. if (info->flavor != MEDIA_BUS_FMT_Y8_1X8) {
  1768. crop->width &= ~1;
  1769. crop->height &= ~1;
  1770. }
  1771. }
  1772. /*
  1773. * ccdc_enum_mbus_code - Handle pixel format enumeration
  1774. * @sd : pointer to v4l2 subdev structure
  1775. * @cfg : V4L2 subdev pad configuration
  1776. * @code : pointer to v4l2_subdev_mbus_code_enum structure
  1777. * return -EINVAL or zero on success
  1778. */
  1779. static int ccdc_enum_mbus_code(struct v4l2_subdev *sd,
  1780. struct v4l2_subdev_pad_config *cfg,
  1781. struct v4l2_subdev_mbus_code_enum *code)
  1782. {
  1783. struct isp_ccdc_device *ccdc = v4l2_get_subdevdata(sd);
  1784. struct v4l2_mbus_framefmt *format;
  1785. switch (code->pad) {
  1786. case CCDC_PAD_SINK:
  1787. if (code->index >= ARRAY_SIZE(ccdc_fmts))
  1788. return -EINVAL;
  1789. code->code = ccdc_fmts[code->index];
  1790. break;
  1791. case CCDC_PAD_SOURCE_OF:
  1792. format = __ccdc_get_format(ccdc, cfg, code->pad,
  1793. code->which);
  1794. if (format->code == MEDIA_BUS_FMT_YUYV8_2X8 ||
  1795. format->code == MEDIA_BUS_FMT_UYVY8_2X8) {
  1796. /* In YUV mode the CCDC can swap bytes. */
  1797. if (code->index == 0)
  1798. code->code = MEDIA_BUS_FMT_YUYV8_1X16;
  1799. else if (code->index == 1)
  1800. code->code = MEDIA_BUS_FMT_UYVY8_1X16;
  1801. else
  1802. return -EINVAL;
  1803. } else {
  1804. /* In raw mode, no configurable format confversion is
  1805. * available.
  1806. */
  1807. if (code->index == 0)
  1808. code->code = format->code;
  1809. else
  1810. return -EINVAL;
  1811. }
  1812. break;
  1813. case CCDC_PAD_SOURCE_VP:
  1814. /* The CCDC supports no configurable format conversion
  1815. * compatible with the video port. Enumerate a single output
  1816. * format code.
  1817. */
  1818. if (code->index != 0)
  1819. return -EINVAL;
  1820. format = __ccdc_get_format(ccdc, cfg, code->pad,
  1821. code->which);
  1822. /* A pixel code equal to 0 means that the video port doesn't
  1823. * support the input format. Don't enumerate any pixel code.
  1824. */
  1825. if (format->code == 0)
  1826. return -EINVAL;
  1827. code->code = format->code;
  1828. break;
  1829. default:
  1830. return -EINVAL;
  1831. }
  1832. return 0;
  1833. }
  1834. static int ccdc_enum_frame_size(struct v4l2_subdev *sd,
  1835. struct v4l2_subdev_pad_config *cfg,
  1836. struct v4l2_subdev_frame_size_enum *fse)
  1837. {
  1838. struct isp_ccdc_device *ccdc = v4l2_get_subdevdata(sd);
  1839. struct v4l2_mbus_framefmt format;
  1840. if (fse->index != 0)
  1841. return -EINVAL;
  1842. format.code = fse->code;
  1843. format.width = 1;
  1844. format.height = 1;
  1845. ccdc_try_format(ccdc, cfg, fse->pad, &format, fse->which);
  1846. fse->min_width = format.width;
  1847. fse->min_height = format.height;
  1848. if (format.code != fse->code)
  1849. return -EINVAL;
  1850. format.code = fse->code;
  1851. format.width = -1;
  1852. format.height = -1;
  1853. ccdc_try_format(ccdc, cfg, fse->pad, &format, fse->which);
  1854. fse->max_width = format.width;
  1855. fse->max_height = format.height;
  1856. return 0;
  1857. }
  1858. /*
  1859. * ccdc_get_selection - Retrieve a selection rectangle on a pad
  1860. * @sd: ISP CCDC V4L2 subdevice
  1861. * @cfg: V4L2 subdev pad configuration
  1862. * @sel: Selection rectangle
  1863. *
  1864. * The only supported rectangles are the crop rectangles on the output formatter
  1865. * source pad.
  1866. *
  1867. * Return 0 on success or a negative error code otherwise.
  1868. */
  1869. static int ccdc_get_selection(struct v4l2_subdev *sd, struct v4l2_subdev_pad_config *cfg,
  1870. struct v4l2_subdev_selection *sel)
  1871. {
  1872. struct isp_ccdc_device *ccdc = v4l2_get_subdevdata(sd);
  1873. struct v4l2_mbus_framefmt *format;
  1874. if (sel->pad != CCDC_PAD_SOURCE_OF)
  1875. return -EINVAL;
  1876. switch (sel->target) {
  1877. case V4L2_SEL_TGT_CROP_BOUNDS:
  1878. sel->r.left = 0;
  1879. sel->r.top = 0;
  1880. sel->r.width = INT_MAX;
  1881. sel->r.height = INT_MAX;
  1882. format = __ccdc_get_format(ccdc, cfg, CCDC_PAD_SINK, sel->which);
  1883. ccdc_try_crop(ccdc, format, &sel->r);
  1884. break;
  1885. case V4L2_SEL_TGT_CROP:
  1886. sel->r = *__ccdc_get_crop(ccdc, cfg, sel->which);
  1887. break;
  1888. default:
  1889. return -EINVAL;
  1890. }
  1891. return 0;
  1892. }
  1893. /*
  1894. * ccdc_set_selection - Set a selection rectangle on a pad
  1895. * @sd: ISP CCDC V4L2 subdevice
  1896. * @cfg: V4L2 subdev pad configuration
  1897. * @sel: Selection rectangle
  1898. *
  1899. * The only supported rectangle is the actual crop rectangle on the output
  1900. * formatter source pad.
  1901. *
  1902. * Return 0 on success or a negative error code otherwise.
  1903. */
  1904. static int ccdc_set_selection(struct v4l2_subdev *sd, struct v4l2_subdev_pad_config *cfg,
  1905. struct v4l2_subdev_selection *sel)
  1906. {
  1907. struct isp_ccdc_device *ccdc = v4l2_get_subdevdata(sd);
  1908. struct v4l2_mbus_framefmt *format;
  1909. if (sel->target != V4L2_SEL_TGT_CROP ||
  1910. sel->pad != CCDC_PAD_SOURCE_OF)
  1911. return -EINVAL;
  1912. /* The crop rectangle can't be changed while streaming. */
  1913. if (ccdc->state != ISP_PIPELINE_STREAM_STOPPED)
  1914. return -EBUSY;
  1915. /* Modifying the crop rectangle always changes the format on the source
  1916. * pad. If the KEEP_CONFIG flag is set, just return the current crop
  1917. * rectangle.
  1918. */
  1919. if (sel->flags & V4L2_SEL_FLAG_KEEP_CONFIG) {
  1920. sel->r = *__ccdc_get_crop(ccdc, cfg, sel->which);
  1921. return 0;
  1922. }
  1923. format = __ccdc_get_format(ccdc, cfg, CCDC_PAD_SINK, sel->which);
  1924. ccdc_try_crop(ccdc, format, &sel->r);
  1925. *__ccdc_get_crop(ccdc, cfg, sel->which) = sel->r;
  1926. /* Update the source format. */
  1927. format = __ccdc_get_format(ccdc, cfg, CCDC_PAD_SOURCE_OF, sel->which);
  1928. ccdc_try_format(ccdc, cfg, CCDC_PAD_SOURCE_OF, format, sel->which);
  1929. return 0;
  1930. }
  1931. /*
  1932. * ccdc_get_format - Retrieve the video format on a pad
  1933. * @sd : ISP CCDC V4L2 subdevice
  1934. * @cfg: V4L2 subdev pad configuration
  1935. * @fmt: Format
  1936. *
  1937. * Return 0 on success or -EINVAL if the pad is invalid or doesn't correspond
  1938. * to the format type.
  1939. */
  1940. static int ccdc_get_format(struct v4l2_subdev *sd, struct v4l2_subdev_pad_config *cfg,
  1941. struct v4l2_subdev_format *fmt)
  1942. {
  1943. struct isp_ccdc_device *ccdc = v4l2_get_subdevdata(sd);
  1944. struct v4l2_mbus_framefmt *format;
  1945. format = __ccdc_get_format(ccdc, cfg, fmt->pad, fmt->which);
  1946. if (format == NULL)
  1947. return -EINVAL;
  1948. fmt->format = *format;
  1949. return 0;
  1950. }
  1951. /*
  1952. * ccdc_set_format - Set the video format on a pad
  1953. * @sd : ISP CCDC V4L2 subdevice
  1954. * @cfg: V4L2 subdev pad configuration
  1955. * @fmt: Format
  1956. *
  1957. * Return 0 on success or -EINVAL if the pad is invalid or doesn't correspond
  1958. * to the format type.
  1959. */
  1960. static int ccdc_set_format(struct v4l2_subdev *sd, struct v4l2_subdev_pad_config *cfg,
  1961. struct v4l2_subdev_format *fmt)
  1962. {
  1963. struct isp_ccdc_device *ccdc = v4l2_get_subdevdata(sd);
  1964. struct v4l2_mbus_framefmt *format;
  1965. struct v4l2_rect *crop;
  1966. format = __ccdc_get_format(ccdc, cfg, fmt->pad, fmt->which);
  1967. if (format == NULL)
  1968. return -EINVAL;
  1969. ccdc_try_format(ccdc, cfg, fmt->pad, &fmt->format, fmt->which);
  1970. *format = fmt->format;
  1971. /* Propagate the format from sink to source */
  1972. if (fmt->pad == CCDC_PAD_SINK) {
  1973. /* Reset the crop rectangle. */
  1974. crop = __ccdc_get_crop(ccdc, cfg, fmt->which);
  1975. crop->left = 0;
  1976. crop->top = 0;
  1977. crop->width = fmt->format.width;
  1978. crop->height = fmt->format.height;
  1979. ccdc_try_crop(ccdc, &fmt->format, crop);
  1980. /* Update the source formats. */
  1981. format = __ccdc_get_format(ccdc, cfg, CCDC_PAD_SOURCE_OF,
  1982. fmt->which);
  1983. *format = fmt->format;
  1984. ccdc_try_format(ccdc, cfg, CCDC_PAD_SOURCE_OF, format,
  1985. fmt->which);
  1986. format = __ccdc_get_format(ccdc, cfg, CCDC_PAD_SOURCE_VP,
  1987. fmt->which);
  1988. *format = fmt->format;
  1989. ccdc_try_format(ccdc, cfg, CCDC_PAD_SOURCE_VP, format,
  1990. fmt->which);
  1991. }
  1992. return 0;
  1993. }
  1994. /*
  1995. * Decide whether desired output pixel code can be obtained with
  1996. * the lane shifter by shifting the input pixel code.
  1997. * @in: input pixelcode to shifter
  1998. * @out: output pixelcode from shifter
  1999. * @additional_shift: # of bits the sensor's LSB is offset from CAMEXT[0]
  2000. *
  2001. * return true if the combination is possible
  2002. * return false otherwise
  2003. */
  2004. static bool ccdc_is_shiftable(u32 in, u32 out, unsigned int additional_shift)
  2005. {
  2006. const struct isp_format_info *in_info, *out_info;
  2007. if (in == out)
  2008. return true;
  2009. in_info = omap3isp_video_format_info(in);
  2010. out_info = omap3isp_video_format_info(out);
  2011. if ((in_info->flavor == 0) || (out_info->flavor == 0))
  2012. return false;
  2013. if (in_info->flavor != out_info->flavor)
  2014. return false;
  2015. return in_info->width - out_info->width + additional_shift <= 6;
  2016. }
  2017. static int ccdc_link_validate(struct v4l2_subdev *sd,
  2018. struct media_link *link,
  2019. struct v4l2_subdev_format *source_fmt,
  2020. struct v4l2_subdev_format *sink_fmt)
  2021. {
  2022. struct isp_ccdc_device *ccdc = v4l2_get_subdevdata(sd);
  2023. unsigned long parallel_shift;
  2024. /* Check if the two ends match */
  2025. if (source_fmt->format.width != sink_fmt->format.width ||
  2026. source_fmt->format.height != sink_fmt->format.height)
  2027. return -EPIPE;
  2028. /* We've got a parallel sensor here. */
  2029. if (ccdc->input == CCDC_INPUT_PARALLEL) {
  2030. struct v4l2_subdev *sd =
  2031. media_entity_to_v4l2_subdev(link->source->entity);
  2032. struct isp_bus_cfg *bus_cfg = v4l2_subdev_to_bus_cfg(sd);
  2033. parallel_shift = bus_cfg->bus.parallel.data_lane_shift;
  2034. } else {
  2035. parallel_shift = 0;
  2036. }
  2037. /* Lane shifter may be used to drop bits on CCDC sink pad */
  2038. if (!ccdc_is_shiftable(source_fmt->format.code,
  2039. sink_fmt->format.code, parallel_shift))
  2040. return -EPIPE;
  2041. return 0;
  2042. }
  2043. /*
  2044. * ccdc_init_formats - Initialize formats on all pads
  2045. * @sd: ISP CCDC V4L2 subdevice
  2046. * @fh: V4L2 subdev file handle
  2047. *
  2048. * Initialize all pad formats with default values. If fh is not NULL, try
  2049. * formats are initialized on the file handle. Otherwise active formats are
  2050. * initialized on the device.
  2051. */
  2052. static int ccdc_init_formats(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
  2053. {
  2054. struct v4l2_subdev_format format;
  2055. memset(&format, 0, sizeof(format));
  2056. format.pad = CCDC_PAD_SINK;
  2057. format.which = fh ? V4L2_SUBDEV_FORMAT_TRY : V4L2_SUBDEV_FORMAT_ACTIVE;
  2058. format.format.code = MEDIA_BUS_FMT_SGRBG10_1X10;
  2059. format.format.width = 4096;
  2060. format.format.height = 4096;
  2061. ccdc_set_format(sd, fh ? fh->pad : NULL, &format);
  2062. return 0;
  2063. }
  2064. /* V4L2 subdev core operations */
  2065. static const struct v4l2_subdev_core_ops ccdc_v4l2_core_ops = {
  2066. .ioctl = ccdc_ioctl,
  2067. .subscribe_event = ccdc_subscribe_event,
  2068. .unsubscribe_event = ccdc_unsubscribe_event,
  2069. };
  2070. /* V4L2 subdev video operations */
  2071. static const struct v4l2_subdev_video_ops ccdc_v4l2_video_ops = {
  2072. .s_stream = ccdc_set_stream,
  2073. };
  2074. /* V4L2 subdev pad operations */
  2075. static const struct v4l2_subdev_pad_ops ccdc_v4l2_pad_ops = {
  2076. .enum_mbus_code = ccdc_enum_mbus_code,
  2077. .enum_frame_size = ccdc_enum_frame_size,
  2078. .get_fmt = ccdc_get_format,
  2079. .set_fmt = ccdc_set_format,
  2080. .get_selection = ccdc_get_selection,
  2081. .set_selection = ccdc_set_selection,
  2082. .link_validate = ccdc_link_validate,
  2083. };
  2084. /* V4L2 subdev operations */
  2085. static const struct v4l2_subdev_ops ccdc_v4l2_ops = {
  2086. .core = &ccdc_v4l2_core_ops,
  2087. .video = &ccdc_v4l2_video_ops,
  2088. .pad = &ccdc_v4l2_pad_ops,
  2089. };
  2090. /* V4L2 subdev internal operations */
  2091. static const struct v4l2_subdev_internal_ops ccdc_v4l2_internal_ops = {
  2092. .open = ccdc_init_formats,
  2093. };
  2094. /* -----------------------------------------------------------------------------
  2095. * Media entity operations
  2096. */
  2097. /*
  2098. * ccdc_link_setup - Setup CCDC connections
  2099. * @entity: CCDC media entity
  2100. * @local: Pad at the local end of the link
  2101. * @remote: Pad at the remote end of the link
  2102. * @flags: Link flags
  2103. *
  2104. * return -EINVAL or zero on success
  2105. */
  2106. static int ccdc_link_setup(struct media_entity *entity,
  2107. const struct media_pad *local,
  2108. const struct media_pad *remote, u32 flags)
  2109. {
  2110. struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity);
  2111. struct isp_ccdc_device *ccdc = v4l2_get_subdevdata(sd);
  2112. struct isp_device *isp = to_isp_device(ccdc);
  2113. unsigned int index = local->index;
  2114. /* FIXME: this is actually a hack! */
  2115. if (is_media_entity_v4l2_subdev(remote->entity))
  2116. index |= 2 << 16;
  2117. switch (index) {
  2118. case CCDC_PAD_SINK | 2 << 16:
  2119. /* Read from the sensor (parallel interface), CCP2, CSI2a or
  2120. * CSI2c.
  2121. */
  2122. if (!(flags & MEDIA_LNK_FL_ENABLED)) {
  2123. ccdc->input = CCDC_INPUT_NONE;
  2124. break;
  2125. }
  2126. if (ccdc->input != CCDC_INPUT_NONE)
  2127. return -EBUSY;
  2128. if (remote->entity == &isp->isp_ccp2.subdev.entity)
  2129. ccdc->input = CCDC_INPUT_CCP2B;
  2130. else if (remote->entity == &isp->isp_csi2a.subdev.entity)
  2131. ccdc->input = CCDC_INPUT_CSI2A;
  2132. else if (remote->entity == &isp->isp_csi2c.subdev.entity)
  2133. ccdc->input = CCDC_INPUT_CSI2C;
  2134. else
  2135. ccdc->input = CCDC_INPUT_PARALLEL;
  2136. break;
  2137. /*
  2138. * The ISP core doesn't support pipelines with multiple video outputs.
  2139. * Revisit this when it will be implemented, and return -EBUSY for now.
  2140. */
  2141. case CCDC_PAD_SOURCE_VP | 2 << 16:
  2142. /* Write to preview engine, histogram and H3A. When none of
  2143. * those links are active, the video port can be disabled.
  2144. */
  2145. if (flags & MEDIA_LNK_FL_ENABLED) {
  2146. if (ccdc->output & ~CCDC_OUTPUT_PREVIEW)
  2147. return -EBUSY;
  2148. ccdc->output |= CCDC_OUTPUT_PREVIEW;
  2149. } else {
  2150. ccdc->output &= ~CCDC_OUTPUT_PREVIEW;
  2151. }
  2152. break;
  2153. case CCDC_PAD_SOURCE_OF:
  2154. /* Write to memory */
  2155. if (flags & MEDIA_LNK_FL_ENABLED) {
  2156. if (ccdc->output & ~CCDC_OUTPUT_MEMORY)
  2157. return -EBUSY;
  2158. ccdc->output |= CCDC_OUTPUT_MEMORY;
  2159. } else {
  2160. ccdc->output &= ~CCDC_OUTPUT_MEMORY;
  2161. }
  2162. break;
  2163. case CCDC_PAD_SOURCE_OF | 2 << 16:
  2164. /* Write to resizer */
  2165. if (flags & MEDIA_LNK_FL_ENABLED) {
  2166. if (ccdc->output & ~CCDC_OUTPUT_RESIZER)
  2167. return -EBUSY;
  2168. ccdc->output |= CCDC_OUTPUT_RESIZER;
  2169. } else {
  2170. ccdc->output &= ~CCDC_OUTPUT_RESIZER;
  2171. }
  2172. break;
  2173. default:
  2174. return -EINVAL;
  2175. }
  2176. return 0;
  2177. }
  2178. /* media operations */
  2179. static const struct media_entity_operations ccdc_media_ops = {
  2180. .link_setup = ccdc_link_setup,
  2181. .link_validate = v4l2_subdev_link_validate,
  2182. };
  2183. void omap3isp_ccdc_unregister_entities(struct isp_ccdc_device *ccdc)
  2184. {
  2185. v4l2_device_unregister_subdev(&ccdc->subdev);
  2186. omap3isp_video_unregister(&ccdc->video_out);
  2187. }
  2188. int omap3isp_ccdc_register_entities(struct isp_ccdc_device *ccdc,
  2189. struct v4l2_device *vdev)
  2190. {
  2191. int ret;
  2192. /* Register the subdev and video node. */
  2193. ccdc->subdev.dev = vdev->mdev->dev;
  2194. ret = v4l2_device_register_subdev(vdev, &ccdc->subdev);
  2195. if (ret < 0)
  2196. goto error;
  2197. ret = omap3isp_video_register(&ccdc->video_out, vdev);
  2198. if (ret < 0)
  2199. goto error;
  2200. return 0;
  2201. error:
  2202. omap3isp_ccdc_unregister_entities(ccdc);
  2203. return ret;
  2204. }
  2205. /* -----------------------------------------------------------------------------
  2206. * ISP CCDC initialisation and cleanup
  2207. */
  2208. /*
  2209. * ccdc_init_entities - Initialize V4L2 subdev and media entity
  2210. * @ccdc: ISP CCDC module
  2211. *
  2212. * Return 0 on success and a negative error code on failure.
  2213. */
  2214. static int ccdc_init_entities(struct isp_ccdc_device *ccdc)
  2215. {
  2216. struct v4l2_subdev *sd = &ccdc->subdev;
  2217. struct media_pad *pads = ccdc->pads;
  2218. struct media_entity *me = &sd->entity;
  2219. int ret;
  2220. ccdc->input = CCDC_INPUT_NONE;
  2221. v4l2_subdev_init(sd, &ccdc_v4l2_ops);
  2222. sd->internal_ops = &ccdc_v4l2_internal_ops;
  2223. strlcpy(sd->name, "OMAP3 ISP CCDC", sizeof(sd->name));
  2224. sd->grp_id = 1 << 16; /* group ID for isp subdevs */
  2225. v4l2_set_subdevdata(sd, ccdc);
  2226. sd->flags |= V4L2_SUBDEV_FL_HAS_EVENTS | V4L2_SUBDEV_FL_HAS_DEVNODE;
  2227. pads[CCDC_PAD_SINK].flags = MEDIA_PAD_FL_SINK
  2228. | MEDIA_PAD_FL_MUST_CONNECT;
  2229. pads[CCDC_PAD_SOURCE_VP].flags = MEDIA_PAD_FL_SOURCE;
  2230. pads[CCDC_PAD_SOURCE_OF].flags = MEDIA_PAD_FL_SOURCE;
  2231. me->ops = &ccdc_media_ops;
  2232. ret = media_entity_pads_init(me, CCDC_PADS_NUM, pads);
  2233. if (ret < 0)
  2234. return ret;
  2235. ccdc_init_formats(sd, NULL);
  2236. ccdc->video_out.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  2237. ccdc->video_out.ops = &ccdc_video_ops;
  2238. ccdc->video_out.isp = to_isp_device(ccdc);
  2239. ccdc->video_out.capture_mem = PAGE_ALIGN(4096 * 4096) * 3;
  2240. ccdc->video_out.bpl_alignment = 32;
  2241. ret = omap3isp_video_init(&ccdc->video_out, "CCDC");
  2242. if (ret < 0)
  2243. goto error;
  2244. return 0;
  2245. error:
  2246. media_entity_cleanup(me);
  2247. return ret;
  2248. }
  2249. /*
  2250. * omap3isp_ccdc_init - CCDC module initialization.
  2251. * @isp: Device pointer specific to the OMAP3 ISP.
  2252. *
  2253. * TODO: Get the initialisation values from platform data.
  2254. *
  2255. * Return 0 on success or a negative error code otherwise.
  2256. */
  2257. int omap3isp_ccdc_init(struct isp_device *isp)
  2258. {
  2259. struct isp_ccdc_device *ccdc = &isp->isp_ccdc;
  2260. int ret;
  2261. spin_lock_init(&ccdc->lock);
  2262. init_waitqueue_head(&ccdc->wait);
  2263. mutex_init(&ccdc->ioctl_lock);
  2264. ccdc->stopping = CCDC_STOP_NOT_REQUESTED;
  2265. INIT_WORK(&ccdc->lsc.table_work, ccdc_lsc_free_table_work);
  2266. ccdc->lsc.state = LSC_STATE_STOPPED;
  2267. INIT_LIST_HEAD(&ccdc->lsc.free_queue);
  2268. spin_lock_init(&ccdc->lsc.req_lock);
  2269. ccdc->clamp.oblen = 0;
  2270. ccdc->clamp.dcsubval = 0;
  2271. ccdc->update = OMAP3ISP_CCDC_BLCLAMP;
  2272. ccdc_apply_controls(ccdc);
  2273. ret = ccdc_init_entities(ccdc);
  2274. if (ret < 0) {
  2275. mutex_destroy(&ccdc->ioctl_lock);
  2276. return ret;
  2277. }
  2278. return 0;
  2279. }
  2280. /*
  2281. * omap3isp_ccdc_cleanup - CCDC module cleanup.
  2282. * @isp: Device pointer specific to the OMAP3 ISP.
  2283. */
  2284. void omap3isp_ccdc_cleanup(struct isp_device *isp)
  2285. {
  2286. struct isp_ccdc_device *ccdc = &isp->isp_ccdc;
  2287. omap3isp_video_cleanup(&ccdc->video_out);
  2288. media_entity_cleanup(&ccdc->subdev.entity);
  2289. /* Free LSC requests. As the CCDC is stopped there's no active request,
  2290. * so only the pending request and the free queue need to be handled.
  2291. */
  2292. ccdc_lsc_free_request(ccdc, ccdc->lsc.request);
  2293. cancel_work_sync(&ccdc->lsc.table_work);
  2294. ccdc_lsc_free_queue(ccdc, &ccdc->lsc.free_queue);
  2295. if (ccdc->fpc.addr != NULL)
  2296. dma_free_coherent(isp->dev, ccdc->fpc.fpnum * 4, ccdc->fpc.addr,
  2297. ccdc->fpc.dma);
  2298. mutex_destroy(&ccdc->ioctl_lock);
  2299. }