sh_mobile_ceu_camera.c 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331
  1. /*
  2. * V4L2 Driver for SuperH Mobile CEU interface
  3. *
  4. * Copyright (C) 2008 Magnus Damm
  5. *
  6. * Based on V4L2 Driver for PXA camera host - "pxa_camera.c",
  7. *
  8. * Copyright (C) 2006, Sascha Hauer, Pengutronix
  9. * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. */
  16. #include <linux/init.h>
  17. #include <linux/module.h>
  18. #include <linux/io.h>
  19. #include <linux/completion.h>
  20. #include <linux/delay.h>
  21. #include <linux/dma-mapping.h>
  22. #include <linux/errno.h>
  23. #include <linux/fs.h>
  24. #include <linux/interrupt.h>
  25. #include <linux/kernel.h>
  26. #include <linux/mm.h>
  27. #include <linux/moduleparam.h>
  28. #include <linux/time.h>
  29. #include <linux/slab.h>
  30. #include <linux/device.h>
  31. #include <linux/platform_device.h>
  32. #include <linux/videodev2.h>
  33. #include <linux/pm_runtime.h>
  34. #include <linux/sched.h>
  35. #include <media/v4l2-common.h>
  36. #include <media/v4l2-dev.h>
  37. #include <media/soc_camera.h>
  38. #include <media/sh_mobile_ceu.h>
  39. #include <media/sh_mobile_csi2.h>
  40. #include <media/videobuf2-dma-contig.h>
  41. #include <media/v4l2-mediabus.h>
  42. #include <media/soc_mediabus.h>
  43. /* register offsets for sh7722 / sh7723 */
  44. #define CAPSR 0x00 /* Capture start register */
  45. #define CAPCR 0x04 /* Capture control register */
  46. #define CAMCR 0x08 /* Capture interface control register */
  47. #define CMCYR 0x0c /* Capture interface cycle register */
  48. #define CAMOR 0x10 /* Capture interface offset register */
  49. #define CAPWR 0x14 /* Capture interface width register */
  50. #define CAIFR 0x18 /* Capture interface input format register */
  51. #define CSTCR 0x20 /* Camera strobe control register (<= sh7722) */
  52. #define CSECR 0x24 /* Camera strobe emission count register (<= sh7722) */
  53. #define CRCNTR 0x28 /* CEU register control register */
  54. #define CRCMPR 0x2c /* CEU register forcible control register */
  55. #define CFLCR 0x30 /* Capture filter control register */
  56. #define CFSZR 0x34 /* Capture filter size clip register */
  57. #define CDWDR 0x38 /* Capture destination width register */
  58. #define CDAYR 0x3c /* Capture data address Y register */
  59. #define CDACR 0x40 /* Capture data address C register */
  60. #define CDBYR 0x44 /* Capture data bottom-field address Y register */
  61. #define CDBCR 0x48 /* Capture data bottom-field address C register */
  62. #define CBDSR 0x4c /* Capture bundle destination size register */
  63. #define CFWCR 0x5c /* Firewall operation control register */
  64. #define CLFCR 0x60 /* Capture low-pass filter control register */
  65. #define CDOCR 0x64 /* Capture data output control register */
  66. #define CDDCR 0x68 /* Capture data complexity level register */
  67. #define CDDAR 0x6c /* Capture data complexity level address register */
  68. #define CEIER 0x70 /* Capture event interrupt enable register */
  69. #define CETCR 0x74 /* Capture event flag clear register */
  70. #define CSTSR 0x7c /* Capture status register */
  71. #define CSRTR 0x80 /* Capture software reset register */
  72. #define CDSSR 0x84 /* Capture data size register */
  73. #define CDAYR2 0x90 /* Capture data address Y register 2 */
  74. #define CDACR2 0x94 /* Capture data address C register 2 */
  75. #define CDBYR2 0x98 /* Capture data bottom-field address Y register 2 */
  76. #define CDBCR2 0x9c /* Capture data bottom-field address C register 2 */
  77. #undef DEBUG_GEOMETRY
  78. #ifdef DEBUG_GEOMETRY
  79. #define dev_geo dev_info
  80. #else
  81. #define dev_geo dev_dbg
  82. #endif
  83. /* per video frame buffer */
  84. struct sh_mobile_ceu_buffer {
  85. struct vb2_buffer vb; /* v4l buffer must be first */
  86. struct list_head queue;
  87. };
  88. struct sh_mobile_ceu_dev {
  89. struct soc_camera_host ici;
  90. struct soc_camera_device *icd;
  91. struct platform_device *csi2_pdev;
  92. unsigned int irq;
  93. void __iomem *base;
  94. size_t video_limit;
  95. size_t buf_total;
  96. spinlock_t lock; /* Protects video buffer lists */
  97. struct list_head capture;
  98. struct vb2_buffer *active;
  99. struct vb2_alloc_ctx *alloc_ctx;
  100. struct sh_mobile_ceu_info *pdata;
  101. struct completion complete;
  102. u32 cflcr;
  103. /* static max sizes either from platform data or default */
  104. int max_width;
  105. int max_height;
  106. enum v4l2_field field;
  107. int sequence;
  108. unsigned int image_mode:1;
  109. unsigned int is_16bit:1;
  110. unsigned int frozen:1;
  111. };
  112. struct sh_mobile_ceu_cam {
  113. /* CEU offsets within the camera output, before the CEU scaler */
  114. unsigned int ceu_left;
  115. unsigned int ceu_top;
  116. /* Client output, as seen by the CEU */
  117. unsigned int width;
  118. unsigned int height;
  119. /*
  120. * User window from S_CROP / G_CROP, produced by client cropping and
  121. * scaling, CEU scaling and CEU cropping, mapped back onto the client
  122. * input window
  123. */
  124. struct v4l2_rect subrect;
  125. /* Camera cropping rectangle */
  126. struct v4l2_rect rect;
  127. const struct soc_mbus_pixelfmt *extra_fmt;
  128. enum v4l2_mbus_pixelcode code;
  129. };
  130. static struct sh_mobile_ceu_buffer *to_ceu_vb(struct vb2_buffer *vb)
  131. {
  132. return container_of(vb, struct sh_mobile_ceu_buffer, vb);
  133. }
  134. static void ceu_write(struct sh_mobile_ceu_dev *priv,
  135. unsigned long reg_offs, u32 data)
  136. {
  137. iowrite32(data, priv->base + reg_offs);
  138. }
  139. static u32 ceu_read(struct sh_mobile_ceu_dev *priv, unsigned long reg_offs)
  140. {
  141. return ioread32(priv->base + reg_offs);
  142. }
  143. static int sh_mobile_ceu_soft_reset(struct sh_mobile_ceu_dev *pcdev)
  144. {
  145. int i, success = 0;
  146. struct soc_camera_device *icd = pcdev->icd;
  147. ceu_write(pcdev, CAPSR, 1 << 16); /* reset */
  148. /* wait CSTSR.CPTON bit */
  149. for (i = 0; i < 1000; i++) {
  150. if (!(ceu_read(pcdev, CSTSR) & 1)) {
  151. success++;
  152. break;
  153. }
  154. udelay(1);
  155. }
  156. /* wait CAPSR.CPKIL bit */
  157. for (i = 0; i < 1000; i++) {
  158. if (!(ceu_read(pcdev, CAPSR) & (1 << 16))) {
  159. success++;
  160. break;
  161. }
  162. udelay(1);
  163. }
  164. if (2 != success) {
  165. dev_warn(icd->pdev, "soft reset time out\n");
  166. return -EIO;
  167. }
  168. return 0;
  169. }
  170. /*
  171. * Videobuf operations
  172. */
  173. /*
  174. * .queue_setup() is called to check, whether the driver can accept the
  175. * requested number of buffers and to fill in plane sizes
  176. * for the current frame format if required
  177. */
  178. static int sh_mobile_ceu_videobuf_setup(struct vb2_queue *vq,
  179. const struct v4l2_format *fmt,
  180. unsigned int *count, unsigned int *num_planes,
  181. unsigned int sizes[], void *alloc_ctxs[])
  182. {
  183. struct soc_camera_device *icd = container_of(vq, struct soc_camera_device, vb2_vidq);
  184. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  185. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  186. if (fmt) {
  187. const struct soc_camera_format_xlate *xlate = soc_camera_xlate_by_fourcc(icd,
  188. fmt->fmt.pix.pixelformat);
  189. unsigned int bytes_per_line;
  190. int ret;
  191. if (!xlate)
  192. return -EINVAL;
  193. ret = soc_mbus_bytes_per_line(fmt->fmt.pix.width,
  194. xlate->host_fmt);
  195. if (ret < 0)
  196. return ret;
  197. bytes_per_line = max_t(u32, fmt->fmt.pix.bytesperline, ret);
  198. ret = soc_mbus_image_size(xlate->host_fmt, bytes_per_line,
  199. fmt->fmt.pix.height);
  200. if (ret < 0)
  201. return ret;
  202. sizes[0] = max_t(u32, fmt->fmt.pix.sizeimage, ret);
  203. } else {
  204. /* Called from VIDIOC_REQBUFS or in compatibility mode */
  205. sizes[0] = icd->sizeimage;
  206. }
  207. alloc_ctxs[0] = pcdev->alloc_ctx;
  208. if (!vq->num_buffers)
  209. pcdev->sequence = 0;
  210. if (!*count)
  211. *count = 2;
  212. /* If *num_planes != 0, we have already verified *count. */
  213. if (pcdev->video_limit && !*num_planes) {
  214. size_t size = PAGE_ALIGN(sizes[0]) * *count;
  215. if (size + pcdev->buf_total > pcdev->video_limit)
  216. *count = (pcdev->video_limit - pcdev->buf_total) /
  217. PAGE_ALIGN(sizes[0]);
  218. }
  219. *num_planes = 1;
  220. dev_dbg(icd->parent, "count=%d, size=%u\n", *count, sizes[0]);
  221. return 0;
  222. }
  223. #define CEU_CETCR_MAGIC 0x0317f313 /* acknowledge magical interrupt sources */
  224. #define CEU_CETCR_IGRW (1 << 4) /* prohibited register access interrupt bit */
  225. #define CEU_CEIER_CPEIE (1 << 0) /* one-frame capture end interrupt */
  226. #define CEU_CEIER_VBP (1 << 20) /* vbp error */
  227. #define CEU_CAPCR_CTNCP (1 << 16) /* continuous capture mode (if set) */
  228. #define CEU_CEIER_MASK (CEU_CEIER_CPEIE | CEU_CEIER_VBP)
  229. /*
  230. * return value doesn't reflex the success/failure to queue the new buffer,
  231. * but rather the status of the previous buffer.
  232. */
  233. static int sh_mobile_ceu_capture(struct sh_mobile_ceu_dev *pcdev)
  234. {
  235. struct soc_camera_device *icd = pcdev->icd;
  236. dma_addr_t phys_addr_top, phys_addr_bottom;
  237. unsigned long top1, top2;
  238. unsigned long bottom1, bottom2;
  239. u32 status;
  240. bool planar;
  241. int ret = 0;
  242. /*
  243. * The hardware is _very_ picky about this sequence. Especially
  244. * the CEU_CETCR_MAGIC value. It seems like we need to acknowledge
  245. * several not-so-well documented interrupt sources in CETCR.
  246. */
  247. ceu_write(pcdev, CEIER, ceu_read(pcdev, CEIER) & ~CEU_CEIER_MASK);
  248. status = ceu_read(pcdev, CETCR);
  249. ceu_write(pcdev, CETCR, ~status & CEU_CETCR_MAGIC);
  250. if (!pcdev->frozen)
  251. ceu_write(pcdev, CEIER, ceu_read(pcdev, CEIER) | CEU_CEIER_MASK);
  252. ceu_write(pcdev, CAPCR, ceu_read(pcdev, CAPCR) & ~CEU_CAPCR_CTNCP);
  253. ceu_write(pcdev, CETCR, CEU_CETCR_MAGIC ^ CEU_CETCR_IGRW);
  254. /*
  255. * When a VBP interrupt occurs, a capture end interrupt does not occur
  256. * and the image of that frame is not captured correctly. So, soft reset
  257. * is needed here.
  258. */
  259. if (status & CEU_CEIER_VBP) {
  260. sh_mobile_ceu_soft_reset(pcdev);
  261. ret = -EIO;
  262. }
  263. if (pcdev->frozen) {
  264. complete(&pcdev->complete);
  265. return ret;
  266. }
  267. if (!pcdev->active)
  268. return ret;
  269. if (V4L2_FIELD_INTERLACED_BT == pcdev->field) {
  270. top1 = CDBYR;
  271. top2 = CDBCR;
  272. bottom1 = CDAYR;
  273. bottom2 = CDACR;
  274. } else {
  275. top1 = CDAYR;
  276. top2 = CDACR;
  277. bottom1 = CDBYR;
  278. bottom2 = CDBCR;
  279. }
  280. phys_addr_top = vb2_dma_contig_plane_dma_addr(pcdev->active, 0);
  281. switch (icd->current_fmt->host_fmt->fourcc) {
  282. case V4L2_PIX_FMT_NV12:
  283. case V4L2_PIX_FMT_NV21:
  284. case V4L2_PIX_FMT_NV16:
  285. case V4L2_PIX_FMT_NV61:
  286. planar = true;
  287. break;
  288. default:
  289. planar = false;
  290. }
  291. ceu_write(pcdev, top1, phys_addr_top);
  292. if (V4L2_FIELD_NONE != pcdev->field) {
  293. phys_addr_bottom = phys_addr_top + icd->bytesperline;
  294. ceu_write(pcdev, bottom1, phys_addr_bottom);
  295. }
  296. if (planar) {
  297. phys_addr_top += icd->bytesperline * icd->user_height;
  298. ceu_write(pcdev, top2, phys_addr_top);
  299. if (V4L2_FIELD_NONE != pcdev->field) {
  300. phys_addr_bottom = phys_addr_top + icd->bytesperline;
  301. ceu_write(pcdev, bottom2, phys_addr_bottom);
  302. }
  303. }
  304. ceu_write(pcdev, CAPSR, 0x1); /* start capture */
  305. return ret;
  306. }
  307. static int sh_mobile_ceu_videobuf_prepare(struct vb2_buffer *vb)
  308. {
  309. struct sh_mobile_ceu_buffer *buf = to_ceu_vb(vb);
  310. /* Added list head initialization on alloc */
  311. WARN(!list_empty(&buf->queue), "Buffer %p on queue!\n", vb);
  312. return 0;
  313. }
  314. static void sh_mobile_ceu_videobuf_queue(struct vb2_buffer *vb)
  315. {
  316. struct soc_camera_device *icd = container_of(vb->vb2_queue, struct soc_camera_device, vb2_vidq);
  317. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  318. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  319. struct sh_mobile_ceu_buffer *buf = to_ceu_vb(vb);
  320. unsigned long size;
  321. size = icd->sizeimage;
  322. if (vb2_plane_size(vb, 0) < size) {
  323. dev_err(icd->parent, "Buffer #%d too small (%lu < %lu)\n",
  324. vb->v4l2_buf.index, vb2_plane_size(vb, 0), size);
  325. goto error;
  326. }
  327. vb2_set_plane_payload(vb, 0, size);
  328. dev_dbg(icd->parent, "%s (vb=0x%p) 0x%p %lu\n", __func__,
  329. vb, vb2_plane_vaddr(vb, 0), vb2_get_plane_payload(vb, 0));
  330. #ifdef DEBUG
  331. /*
  332. * This can be useful if you want to see if we actually fill
  333. * the buffer with something
  334. */
  335. if (vb2_plane_vaddr(vb, 0))
  336. memset(vb2_plane_vaddr(vb, 0), 0xaa, vb2_get_plane_payload(vb, 0));
  337. #endif
  338. spin_lock_irq(&pcdev->lock);
  339. list_add_tail(&buf->queue, &pcdev->capture);
  340. if (!pcdev->active) {
  341. /*
  342. * Because there were no active buffer at this moment,
  343. * we are not interested in the return value of
  344. * sh_mobile_ceu_capture here.
  345. */
  346. pcdev->active = vb;
  347. sh_mobile_ceu_capture(pcdev);
  348. }
  349. spin_unlock_irq(&pcdev->lock);
  350. return;
  351. error:
  352. vb2_buffer_done(vb, VB2_BUF_STATE_ERROR);
  353. }
  354. static void sh_mobile_ceu_videobuf_release(struct vb2_buffer *vb)
  355. {
  356. struct soc_camera_device *icd = container_of(vb->vb2_queue, struct soc_camera_device, vb2_vidq);
  357. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  358. struct sh_mobile_ceu_buffer *buf = to_ceu_vb(vb);
  359. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  360. spin_lock_irq(&pcdev->lock);
  361. if (pcdev->active == vb) {
  362. /* disable capture (release DMA buffer), reset */
  363. ceu_write(pcdev, CAPSR, 1 << 16);
  364. pcdev->active = NULL;
  365. }
  366. /*
  367. * Doesn't hurt also if the list is empty, but it hurts, if queuing the
  368. * buffer failed, and .buf_init() hasn't been called
  369. */
  370. if (buf->queue.next)
  371. list_del_init(&buf->queue);
  372. pcdev->buf_total -= PAGE_ALIGN(vb2_plane_size(vb, 0));
  373. dev_dbg(icd->parent, "%s() %zu bytes buffers\n", __func__,
  374. pcdev->buf_total);
  375. spin_unlock_irq(&pcdev->lock);
  376. }
  377. static int sh_mobile_ceu_videobuf_init(struct vb2_buffer *vb)
  378. {
  379. struct soc_camera_device *icd = container_of(vb->vb2_queue, struct soc_camera_device, vb2_vidq);
  380. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  381. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  382. pcdev->buf_total += PAGE_ALIGN(vb2_plane_size(vb, 0));
  383. dev_dbg(icd->parent, "%s() %zu bytes buffers\n", __func__,
  384. pcdev->buf_total);
  385. /* This is for locking debugging only */
  386. INIT_LIST_HEAD(&to_ceu_vb(vb)->queue);
  387. return 0;
  388. }
  389. static int sh_mobile_ceu_stop_streaming(struct vb2_queue *q)
  390. {
  391. struct soc_camera_device *icd = container_of(q, struct soc_camera_device, vb2_vidq);
  392. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  393. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  394. struct list_head *buf_head, *tmp;
  395. spin_lock_irq(&pcdev->lock);
  396. pcdev->active = NULL;
  397. list_for_each_safe(buf_head, tmp, &pcdev->capture)
  398. list_del_init(buf_head);
  399. spin_unlock_irq(&pcdev->lock);
  400. return sh_mobile_ceu_soft_reset(pcdev);
  401. }
  402. static struct vb2_ops sh_mobile_ceu_videobuf_ops = {
  403. .queue_setup = sh_mobile_ceu_videobuf_setup,
  404. .buf_prepare = sh_mobile_ceu_videobuf_prepare,
  405. .buf_queue = sh_mobile_ceu_videobuf_queue,
  406. .buf_cleanup = sh_mobile_ceu_videobuf_release,
  407. .buf_init = sh_mobile_ceu_videobuf_init,
  408. .wait_prepare = soc_camera_unlock,
  409. .wait_finish = soc_camera_lock,
  410. .stop_streaming = sh_mobile_ceu_stop_streaming,
  411. };
  412. static irqreturn_t sh_mobile_ceu_irq(int irq, void *data)
  413. {
  414. struct sh_mobile_ceu_dev *pcdev = data;
  415. struct vb2_buffer *vb;
  416. int ret;
  417. spin_lock(&pcdev->lock);
  418. vb = pcdev->active;
  419. if (!vb)
  420. /* Stale interrupt from a released buffer */
  421. goto out;
  422. list_del_init(&to_ceu_vb(vb)->queue);
  423. if (!list_empty(&pcdev->capture))
  424. pcdev->active = &list_entry(pcdev->capture.next,
  425. struct sh_mobile_ceu_buffer, queue)->vb;
  426. else
  427. pcdev->active = NULL;
  428. ret = sh_mobile_ceu_capture(pcdev);
  429. do_gettimeofday(&vb->v4l2_buf.timestamp);
  430. if (!ret) {
  431. vb->v4l2_buf.field = pcdev->field;
  432. vb->v4l2_buf.sequence = pcdev->sequence++;
  433. }
  434. vb2_buffer_done(vb, ret < 0 ? VB2_BUF_STATE_ERROR : VB2_BUF_STATE_DONE);
  435. out:
  436. spin_unlock(&pcdev->lock);
  437. return IRQ_HANDLED;
  438. }
  439. static struct v4l2_subdev *find_csi2(struct sh_mobile_ceu_dev *pcdev)
  440. {
  441. struct v4l2_subdev *sd;
  442. if (!pcdev->csi2_pdev)
  443. return NULL;
  444. v4l2_device_for_each_subdev(sd, &pcdev->ici.v4l2_dev)
  445. if (&pcdev->csi2_pdev->dev == v4l2_get_subdevdata(sd))
  446. return sd;
  447. return NULL;
  448. }
  449. /* Called with .video_lock held */
  450. static int sh_mobile_ceu_add_device(struct soc_camera_device *icd)
  451. {
  452. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  453. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  454. struct v4l2_subdev *csi2_sd;
  455. int ret;
  456. if (pcdev->icd)
  457. return -EBUSY;
  458. dev_info(icd->parent,
  459. "SuperH Mobile CEU driver attached to camera %d\n",
  460. icd->devnum);
  461. pm_runtime_get_sync(ici->v4l2_dev.dev);
  462. pcdev->buf_total = 0;
  463. ret = sh_mobile_ceu_soft_reset(pcdev);
  464. csi2_sd = find_csi2(pcdev);
  465. if (csi2_sd) {
  466. csi2_sd->grp_id = soc_camera_grp_id(icd);
  467. v4l2_set_subdev_hostdata(csi2_sd, icd);
  468. }
  469. ret = v4l2_subdev_call(csi2_sd, core, s_power, 1);
  470. if (ret < 0 && ret != -ENOIOCTLCMD && ret != -ENODEV) {
  471. pm_runtime_put_sync(ici->v4l2_dev.dev);
  472. return ret;
  473. }
  474. /*
  475. * -ENODEV is special: either csi2_sd == NULL or the CSI-2 driver
  476. * has not found this soc-camera device among its clients
  477. */
  478. if (ret == -ENODEV && csi2_sd)
  479. csi2_sd->grp_id = 0;
  480. pcdev->icd = icd;
  481. return 0;
  482. }
  483. /* Called with .video_lock held */
  484. static void sh_mobile_ceu_remove_device(struct soc_camera_device *icd)
  485. {
  486. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  487. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  488. struct v4l2_subdev *csi2_sd = find_csi2(pcdev);
  489. BUG_ON(icd != pcdev->icd);
  490. v4l2_subdev_call(csi2_sd, core, s_power, 0);
  491. if (csi2_sd)
  492. csi2_sd->grp_id = 0;
  493. /* disable capture, disable interrupts */
  494. ceu_write(pcdev, CEIER, 0);
  495. sh_mobile_ceu_soft_reset(pcdev);
  496. /* make sure active buffer is canceled */
  497. spin_lock_irq(&pcdev->lock);
  498. if (pcdev->active) {
  499. list_del_init(&to_ceu_vb(pcdev->active)->queue);
  500. vb2_buffer_done(pcdev->active, VB2_BUF_STATE_ERROR);
  501. pcdev->active = NULL;
  502. }
  503. spin_unlock_irq(&pcdev->lock);
  504. pm_runtime_put_sync(ici->v4l2_dev.dev);
  505. dev_info(icd->parent,
  506. "SuperH Mobile CEU driver detached from camera %d\n",
  507. icd->devnum);
  508. pcdev->icd = NULL;
  509. }
  510. /*
  511. * See chapter 29.4.12 "Capture Filter Control Register (CFLCR)"
  512. * in SH7722 Hardware Manual
  513. */
  514. static unsigned int size_dst(unsigned int src, unsigned int scale)
  515. {
  516. unsigned int mant_pre = scale >> 12;
  517. if (!src || !scale)
  518. return src;
  519. return ((mant_pre + 2 * (src - 1)) / (2 * mant_pre) - 1) *
  520. mant_pre * 4096 / scale + 1;
  521. }
  522. static u16 calc_scale(unsigned int src, unsigned int *dst)
  523. {
  524. u16 scale;
  525. if (src == *dst)
  526. return 0;
  527. scale = (src * 4096 / *dst) & ~7;
  528. while (scale > 4096 && size_dst(src, scale) < *dst)
  529. scale -= 8;
  530. *dst = size_dst(src, scale);
  531. return scale;
  532. }
  533. /* rect is guaranteed to not exceed the scaled camera rectangle */
  534. static void sh_mobile_ceu_set_rect(struct soc_camera_device *icd)
  535. {
  536. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  537. struct sh_mobile_ceu_cam *cam = icd->host_priv;
  538. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  539. unsigned int height, width, cdwdr_width, in_width, in_height;
  540. unsigned int left_offset, top_offset;
  541. u32 camor;
  542. dev_geo(icd->parent, "Crop %ux%u@%u:%u\n",
  543. icd->user_width, icd->user_height, cam->ceu_left, cam->ceu_top);
  544. left_offset = cam->ceu_left;
  545. top_offset = cam->ceu_top;
  546. WARN_ON(icd->user_width & 3 || icd->user_height & 3);
  547. width = icd->user_width;
  548. if (pcdev->image_mode) {
  549. in_width = cam->width;
  550. if (!pcdev->is_16bit) {
  551. in_width *= 2;
  552. left_offset *= 2;
  553. }
  554. } else {
  555. unsigned int w_factor;
  556. switch (icd->current_fmt->host_fmt->packing) {
  557. case SOC_MBUS_PACKING_2X8_PADHI:
  558. w_factor = 2;
  559. break;
  560. default:
  561. w_factor = 1;
  562. }
  563. in_width = cam->width * w_factor;
  564. left_offset *= w_factor;
  565. }
  566. cdwdr_width = icd->bytesperline;
  567. height = icd->user_height;
  568. in_height = cam->height;
  569. if (V4L2_FIELD_NONE != pcdev->field) {
  570. height = (height / 2) & ~3;
  571. in_height /= 2;
  572. top_offset /= 2;
  573. cdwdr_width *= 2;
  574. }
  575. /* CSI2 special configuration */
  576. if (pcdev->pdata->csi2) {
  577. in_width = ((in_width - 2) * 2);
  578. left_offset *= 2;
  579. }
  580. /* Set CAMOR, CAPWR, CFSZR, take care of CDWDR */
  581. camor = left_offset | (top_offset << 16);
  582. dev_geo(icd->parent,
  583. "CAMOR 0x%x, CAPWR 0x%x, CFSZR 0x%x, CDWDR 0x%x\n", camor,
  584. (in_height << 16) | in_width, (height << 16) | width,
  585. cdwdr_width);
  586. ceu_write(pcdev, CAMOR, camor);
  587. ceu_write(pcdev, CAPWR, (in_height << 16) | in_width);
  588. /* CFSZR clipping is applied _after_ the scaling filter (CFLCR) */
  589. ceu_write(pcdev, CFSZR, (height << 16) | width);
  590. ceu_write(pcdev, CDWDR, cdwdr_width);
  591. }
  592. static u32 capture_save_reset(struct sh_mobile_ceu_dev *pcdev)
  593. {
  594. u32 capsr = ceu_read(pcdev, CAPSR);
  595. ceu_write(pcdev, CAPSR, 1 << 16); /* reset, stop capture */
  596. return capsr;
  597. }
  598. static void capture_restore(struct sh_mobile_ceu_dev *pcdev, u32 capsr)
  599. {
  600. unsigned long timeout = jiffies + 10 * HZ;
  601. /*
  602. * Wait until the end of the current frame. It can take a long time,
  603. * but if it has been aborted by a CAPSR reset, it shoule exit sooner.
  604. */
  605. while ((ceu_read(pcdev, CSTSR) & 1) && time_before(jiffies, timeout))
  606. msleep(1);
  607. if (time_after(jiffies, timeout)) {
  608. dev_err(pcdev->ici.v4l2_dev.dev,
  609. "Timeout waiting for frame end! Interface problem?\n");
  610. return;
  611. }
  612. /* Wait until reset clears, this shall not hang... */
  613. while (ceu_read(pcdev, CAPSR) & (1 << 16))
  614. udelay(10);
  615. /* Anything to restore? */
  616. if (capsr & ~(1 << 16))
  617. ceu_write(pcdev, CAPSR, capsr);
  618. }
  619. /* Find the bus subdevice driver, e.g., CSI2 */
  620. static struct v4l2_subdev *find_bus_subdev(struct sh_mobile_ceu_dev *pcdev,
  621. struct soc_camera_device *icd)
  622. {
  623. if (pcdev->csi2_pdev) {
  624. struct v4l2_subdev *csi2_sd = find_csi2(pcdev);
  625. if (csi2_sd && csi2_sd->grp_id == soc_camera_grp_id(icd))
  626. return csi2_sd;
  627. }
  628. return soc_camera_to_subdev(icd);
  629. }
  630. #define CEU_BUS_FLAGS (V4L2_MBUS_MASTER | \
  631. V4L2_MBUS_PCLK_SAMPLE_RISING | \
  632. V4L2_MBUS_HSYNC_ACTIVE_HIGH | \
  633. V4L2_MBUS_HSYNC_ACTIVE_LOW | \
  634. V4L2_MBUS_VSYNC_ACTIVE_HIGH | \
  635. V4L2_MBUS_VSYNC_ACTIVE_LOW | \
  636. V4L2_MBUS_DATA_ACTIVE_HIGH)
  637. /* Capture is not running, no interrupts, no locking needed */
  638. static int sh_mobile_ceu_set_bus_param(struct soc_camera_device *icd)
  639. {
  640. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  641. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  642. struct v4l2_subdev *sd = find_bus_subdev(pcdev, icd);
  643. struct sh_mobile_ceu_cam *cam = icd->host_priv;
  644. struct v4l2_mbus_config cfg = {.type = V4L2_MBUS_PARALLEL,};
  645. unsigned long value, common_flags = CEU_BUS_FLAGS;
  646. u32 capsr = capture_save_reset(pcdev);
  647. unsigned int yuv_lineskip;
  648. int ret;
  649. /*
  650. * If the client doesn't implement g_mbus_config, we just use our
  651. * platform data
  652. */
  653. ret = v4l2_subdev_call(sd, video, g_mbus_config, &cfg);
  654. if (!ret) {
  655. common_flags = soc_mbus_config_compatible(&cfg,
  656. common_flags);
  657. if (!common_flags)
  658. return -EINVAL;
  659. } else if (ret != -ENOIOCTLCMD) {
  660. return ret;
  661. }
  662. /* Make choises, based on platform preferences */
  663. if ((common_flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH) &&
  664. (common_flags & V4L2_MBUS_HSYNC_ACTIVE_LOW)) {
  665. if (pcdev->pdata->flags & SH_CEU_FLAG_HSYNC_LOW)
  666. common_flags &= ~V4L2_MBUS_HSYNC_ACTIVE_HIGH;
  667. else
  668. common_flags &= ~V4L2_MBUS_HSYNC_ACTIVE_LOW;
  669. }
  670. if ((common_flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH) &&
  671. (common_flags & V4L2_MBUS_VSYNC_ACTIVE_LOW)) {
  672. if (pcdev->pdata->flags & SH_CEU_FLAG_VSYNC_LOW)
  673. common_flags &= ~V4L2_MBUS_VSYNC_ACTIVE_HIGH;
  674. else
  675. common_flags &= ~V4L2_MBUS_VSYNC_ACTIVE_LOW;
  676. }
  677. cfg.flags = common_flags;
  678. ret = v4l2_subdev_call(sd, video, s_mbus_config, &cfg);
  679. if (ret < 0 && ret != -ENOIOCTLCMD)
  680. return ret;
  681. if (icd->current_fmt->host_fmt->bits_per_sample > 8)
  682. pcdev->is_16bit = 1;
  683. else
  684. pcdev->is_16bit = 0;
  685. ceu_write(pcdev, CRCNTR, 0);
  686. ceu_write(pcdev, CRCMPR, 0);
  687. value = 0x00000010; /* data fetch by default */
  688. yuv_lineskip = 0x10;
  689. switch (icd->current_fmt->host_fmt->fourcc) {
  690. case V4L2_PIX_FMT_NV12:
  691. case V4L2_PIX_FMT_NV21:
  692. /* convert 4:2:2 -> 4:2:0 */
  693. yuv_lineskip = 0; /* skip for NV12/21, no skip for NV16/61 */
  694. /* fall-through */
  695. case V4L2_PIX_FMT_NV16:
  696. case V4L2_PIX_FMT_NV61:
  697. switch (cam->code) {
  698. case V4L2_MBUS_FMT_UYVY8_2X8:
  699. value = 0x00000000; /* Cb0, Y0, Cr0, Y1 */
  700. break;
  701. case V4L2_MBUS_FMT_VYUY8_2X8:
  702. value = 0x00000100; /* Cr0, Y0, Cb0, Y1 */
  703. break;
  704. case V4L2_MBUS_FMT_YUYV8_2X8:
  705. value = 0x00000200; /* Y0, Cb0, Y1, Cr0 */
  706. break;
  707. case V4L2_MBUS_FMT_YVYU8_2X8:
  708. value = 0x00000300; /* Y0, Cr0, Y1, Cb0 */
  709. break;
  710. default:
  711. BUG();
  712. }
  713. }
  714. if (icd->current_fmt->host_fmt->fourcc == V4L2_PIX_FMT_NV21 ||
  715. icd->current_fmt->host_fmt->fourcc == V4L2_PIX_FMT_NV61)
  716. value ^= 0x00000100; /* swap U, V to change from NV1x->NVx1 */
  717. value |= common_flags & V4L2_MBUS_VSYNC_ACTIVE_LOW ? 1 << 1 : 0;
  718. value |= common_flags & V4L2_MBUS_HSYNC_ACTIVE_LOW ? 1 << 0 : 0;
  719. if (pcdev->pdata->csi2) /* CSI2 mode */
  720. value |= 3 << 12;
  721. else if (pcdev->is_16bit)
  722. value |= 1 << 12;
  723. else if (pcdev->pdata->flags & SH_CEU_FLAG_LOWER_8BIT)
  724. value |= 2 << 12;
  725. ceu_write(pcdev, CAMCR, value);
  726. ceu_write(pcdev, CAPCR, 0x00300000);
  727. switch (pcdev->field) {
  728. case V4L2_FIELD_INTERLACED_TB:
  729. value = 0x101;
  730. break;
  731. case V4L2_FIELD_INTERLACED_BT:
  732. value = 0x102;
  733. break;
  734. default:
  735. value = 0;
  736. break;
  737. }
  738. ceu_write(pcdev, CAIFR, value);
  739. sh_mobile_ceu_set_rect(icd);
  740. mdelay(1);
  741. dev_geo(icd->parent, "CFLCR 0x%x\n", pcdev->cflcr);
  742. ceu_write(pcdev, CFLCR, pcdev->cflcr);
  743. /*
  744. * A few words about byte order (observed in Big Endian mode)
  745. *
  746. * In data fetch mode bytes are received in chunks of 8 bytes.
  747. * D0, D1, D2, D3, D4, D5, D6, D7 (D0 received first)
  748. *
  749. * The data is however by default written to memory in reverse order:
  750. * D7, D6, D5, D4, D3, D2, D1, D0 (D7 written to lowest byte)
  751. *
  752. * The lowest three bits of CDOCR allows us to do swapping,
  753. * using 7 we swap the data bytes to match the incoming order:
  754. * D0, D1, D2, D3, D4, D5, D6, D7
  755. */
  756. value = 0x00000007 | yuv_lineskip;
  757. ceu_write(pcdev, CDOCR, value);
  758. ceu_write(pcdev, CFWCR, 0); /* keep "datafetch firewall" disabled */
  759. capture_restore(pcdev, capsr);
  760. /* not in bundle mode: skip CBDSR, CDAYR2, CDACR2, CDBYR2, CDBCR2 */
  761. return 0;
  762. }
  763. static int sh_mobile_ceu_try_bus_param(struct soc_camera_device *icd,
  764. unsigned char buswidth)
  765. {
  766. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  767. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  768. struct v4l2_subdev *sd = find_bus_subdev(pcdev, icd);
  769. unsigned long common_flags = CEU_BUS_FLAGS;
  770. struct v4l2_mbus_config cfg = {.type = V4L2_MBUS_PARALLEL,};
  771. int ret;
  772. ret = v4l2_subdev_call(sd, video, g_mbus_config, &cfg);
  773. if (!ret)
  774. common_flags = soc_mbus_config_compatible(&cfg,
  775. common_flags);
  776. else if (ret != -ENOIOCTLCMD)
  777. return ret;
  778. if (!common_flags || buswidth > 16)
  779. return -EINVAL;
  780. return 0;
  781. }
  782. static const struct soc_mbus_pixelfmt sh_mobile_ceu_formats[] = {
  783. {
  784. .fourcc = V4L2_PIX_FMT_NV12,
  785. .name = "NV12",
  786. .bits_per_sample = 8,
  787. .packing = SOC_MBUS_PACKING_1_5X8,
  788. .order = SOC_MBUS_ORDER_LE,
  789. .layout = SOC_MBUS_LAYOUT_PLANAR_2Y_C,
  790. }, {
  791. .fourcc = V4L2_PIX_FMT_NV21,
  792. .name = "NV21",
  793. .bits_per_sample = 8,
  794. .packing = SOC_MBUS_PACKING_1_5X8,
  795. .order = SOC_MBUS_ORDER_LE,
  796. .layout = SOC_MBUS_LAYOUT_PLANAR_2Y_C,
  797. }, {
  798. .fourcc = V4L2_PIX_FMT_NV16,
  799. .name = "NV16",
  800. .bits_per_sample = 8,
  801. .packing = SOC_MBUS_PACKING_2X8_PADHI,
  802. .order = SOC_MBUS_ORDER_LE,
  803. .layout = SOC_MBUS_LAYOUT_PLANAR_Y_C,
  804. }, {
  805. .fourcc = V4L2_PIX_FMT_NV61,
  806. .name = "NV61",
  807. .bits_per_sample = 8,
  808. .packing = SOC_MBUS_PACKING_2X8_PADHI,
  809. .order = SOC_MBUS_ORDER_LE,
  810. .layout = SOC_MBUS_LAYOUT_PLANAR_Y_C,
  811. },
  812. };
  813. /* This will be corrected as we get more formats */
  814. static bool sh_mobile_ceu_packing_supported(const struct soc_mbus_pixelfmt *fmt)
  815. {
  816. return fmt->packing == SOC_MBUS_PACKING_NONE ||
  817. (fmt->bits_per_sample == 8 &&
  818. fmt->packing == SOC_MBUS_PACKING_1_5X8) ||
  819. (fmt->bits_per_sample == 8 &&
  820. fmt->packing == SOC_MBUS_PACKING_2X8_PADHI) ||
  821. (fmt->bits_per_sample > 8 &&
  822. fmt->packing == SOC_MBUS_PACKING_EXTEND16);
  823. }
  824. static int client_g_rect(struct v4l2_subdev *sd, struct v4l2_rect *rect);
  825. static struct soc_camera_device *ctrl_to_icd(struct v4l2_ctrl *ctrl)
  826. {
  827. return container_of(ctrl->handler, struct soc_camera_device,
  828. ctrl_handler);
  829. }
  830. static int sh_mobile_ceu_s_ctrl(struct v4l2_ctrl *ctrl)
  831. {
  832. struct soc_camera_device *icd = ctrl_to_icd(ctrl);
  833. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  834. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  835. switch (ctrl->id) {
  836. case V4L2_CID_SHARPNESS:
  837. switch (icd->current_fmt->host_fmt->fourcc) {
  838. case V4L2_PIX_FMT_NV12:
  839. case V4L2_PIX_FMT_NV21:
  840. case V4L2_PIX_FMT_NV16:
  841. case V4L2_PIX_FMT_NV61:
  842. ceu_write(pcdev, CLFCR, !ctrl->val);
  843. return 0;
  844. }
  845. break;
  846. }
  847. return -EINVAL;
  848. }
  849. static const struct v4l2_ctrl_ops sh_mobile_ceu_ctrl_ops = {
  850. .s_ctrl = sh_mobile_ceu_s_ctrl,
  851. };
  852. static int sh_mobile_ceu_get_formats(struct soc_camera_device *icd, unsigned int idx,
  853. struct soc_camera_format_xlate *xlate)
  854. {
  855. struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
  856. struct device *dev = icd->parent;
  857. struct soc_camera_host *ici = to_soc_camera_host(dev);
  858. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  859. int ret, k, n;
  860. int formats = 0;
  861. struct sh_mobile_ceu_cam *cam;
  862. enum v4l2_mbus_pixelcode code;
  863. const struct soc_mbus_pixelfmt *fmt;
  864. ret = v4l2_subdev_call(sd, video, enum_mbus_fmt, idx, &code);
  865. if (ret < 0)
  866. /* No more formats */
  867. return 0;
  868. fmt = soc_mbus_get_fmtdesc(code);
  869. if (!fmt) {
  870. dev_warn(dev, "unsupported format code #%u: %d\n", idx, code);
  871. return 0;
  872. }
  873. if (!pcdev->pdata->csi2) {
  874. /* Are there any restrictions in the CSI-2 case? */
  875. ret = sh_mobile_ceu_try_bus_param(icd, fmt->bits_per_sample);
  876. if (ret < 0)
  877. return 0;
  878. }
  879. if (!icd->host_priv) {
  880. struct v4l2_mbus_framefmt mf;
  881. struct v4l2_rect rect;
  882. int shift = 0;
  883. /* Add our control */
  884. v4l2_ctrl_new_std(&icd->ctrl_handler, &sh_mobile_ceu_ctrl_ops,
  885. V4L2_CID_SHARPNESS, 0, 1, 1, 0);
  886. if (icd->ctrl_handler.error)
  887. return icd->ctrl_handler.error;
  888. /* FIXME: subwindow is lost between close / open */
  889. /* Cache current client geometry */
  890. ret = client_g_rect(sd, &rect);
  891. if (ret < 0)
  892. return ret;
  893. /* First time */
  894. ret = v4l2_subdev_call(sd, video, g_mbus_fmt, &mf);
  895. if (ret < 0)
  896. return ret;
  897. /*
  898. * All currently existing CEU implementations support 2560x1920
  899. * or larger frames. If the sensor is proposing too big a frame,
  900. * don't bother with possibly supportred by the CEU larger
  901. * sizes, just try VGA multiples. If needed, this can be
  902. * adjusted in the future.
  903. */
  904. while ((mf.width > pcdev->max_width ||
  905. mf.height > pcdev->max_height) && shift < 4) {
  906. /* Try 2560x1920, 1280x960, 640x480, 320x240 */
  907. mf.width = 2560 >> shift;
  908. mf.height = 1920 >> shift;
  909. ret = v4l2_device_call_until_err(sd->v4l2_dev,
  910. soc_camera_grp_id(icd), video,
  911. s_mbus_fmt, &mf);
  912. if (ret < 0)
  913. return ret;
  914. shift++;
  915. }
  916. if (shift == 4) {
  917. dev_err(dev, "Failed to configure the client below %ux%x\n",
  918. mf.width, mf.height);
  919. return -EIO;
  920. }
  921. dev_geo(dev, "camera fmt %ux%u\n", mf.width, mf.height);
  922. cam = kzalloc(sizeof(*cam), GFP_KERNEL);
  923. if (!cam)
  924. return -ENOMEM;
  925. /* We are called with current camera crop, initialise subrect with it */
  926. cam->rect = rect;
  927. cam->subrect = rect;
  928. cam->width = mf.width;
  929. cam->height = mf.height;
  930. icd->host_priv = cam;
  931. } else {
  932. cam = icd->host_priv;
  933. }
  934. /* Beginning of a pass */
  935. if (!idx)
  936. cam->extra_fmt = NULL;
  937. switch (code) {
  938. case V4L2_MBUS_FMT_UYVY8_2X8:
  939. case V4L2_MBUS_FMT_VYUY8_2X8:
  940. case V4L2_MBUS_FMT_YUYV8_2X8:
  941. case V4L2_MBUS_FMT_YVYU8_2X8:
  942. if (cam->extra_fmt)
  943. break;
  944. /*
  945. * Our case is simple so far: for any of the above four camera
  946. * formats we add all our four synthesized NV* formats, so,
  947. * just marking the device with a single flag suffices. If
  948. * the format generation rules are more complex, you would have
  949. * to actually hang your already added / counted formats onto
  950. * the host_priv pointer and check whether the format you're
  951. * going to add now is already there.
  952. */
  953. cam->extra_fmt = sh_mobile_ceu_formats;
  954. n = ARRAY_SIZE(sh_mobile_ceu_formats);
  955. formats += n;
  956. for (k = 0; xlate && k < n; k++) {
  957. xlate->host_fmt = &sh_mobile_ceu_formats[k];
  958. xlate->code = code;
  959. xlate++;
  960. dev_dbg(dev, "Providing format %s using code %d\n",
  961. sh_mobile_ceu_formats[k].name, code);
  962. }
  963. break;
  964. default:
  965. if (!sh_mobile_ceu_packing_supported(fmt))
  966. return 0;
  967. }
  968. /* Generic pass-through */
  969. formats++;
  970. if (xlate) {
  971. xlate->host_fmt = fmt;
  972. xlate->code = code;
  973. xlate++;
  974. dev_dbg(dev, "Providing format %s in pass-through mode\n",
  975. fmt->name);
  976. }
  977. return formats;
  978. }
  979. static void sh_mobile_ceu_put_formats(struct soc_camera_device *icd)
  980. {
  981. kfree(icd->host_priv);
  982. icd->host_priv = NULL;
  983. }
  984. /* Check if any dimension of r1 is smaller than respective one of r2 */
  985. static bool is_smaller(struct v4l2_rect *r1, struct v4l2_rect *r2)
  986. {
  987. return r1->width < r2->width || r1->height < r2->height;
  988. }
  989. /* Check if r1 fails to cover r2 */
  990. static bool is_inside(struct v4l2_rect *r1, struct v4l2_rect *r2)
  991. {
  992. return r1->left > r2->left || r1->top > r2->top ||
  993. r1->left + r1->width < r2->left + r2->width ||
  994. r1->top + r1->height < r2->top + r2->height;
  995. }
  996. static unsigned int scale_down(unsigned int size, unsigned int scale)
  997. {
  998. return (size * 4096 + scale / 2) / scale;
  999. }
  1000. static unsigned int calc_generic_scale(unsigned int input, unsigned int output)
  1001. {
  1002. return (input * 4096 + output / 2) / output;
  1003. }
  1004. /* Get and store current client crop */
  1005. static int client_g_rect(struct v4l2_subdev *sd, struct v4l2_rect *rect)
  1006. {
  1007. struct v4l2_crop crop;
  1008. struct v4l2_cropcap cap;
  1009. int ret;
  1010. crop.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  1011. ret = v4l2_subdev_call(sd, video, g_crop, &crop);
  1012. if (!ret) {
  1013. *rect = crop.c;
  1014. return ret;
  1015. }
  1016. /* Camera driver doesn't support .g_crop(), assume default rectangle */
  1017. cap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  1018. ret = v4l2_subdev_call(sd, video, cropcap, &cap);
  1019. if (!ret)
  1020. *rect = cap.defrect;
  1021. return ret;
  1022. }
  1023. /* Client crop has changed, update our sub-rectangle to remain within the area */
  1024. static void update_subrect(struct sh_mobile_ceu_cam *cam)
  1025. {
  1026. struct v4l2_rect *rect = &cam->rect, *subrect = &cam->subrect;
  1027. if (rect->width < subrect->width)
  1028. subrect->width = rect->width;
  1029. if (rect->height < subrect->height)
  1030. subrect->height = rect->height;
  1031. if (rect->left > subrect->left)
  1032. subrect->left = rect->left;
  1033. else if (rect->left + rect->width >
  1034. subrect->left + subrect->width)
  1035. subrect->left = rect->left + rect->width -
  1036. subrect->width;
  1037. if (rect->top > subrect->top)
  1038. subrect->top = rect->top;
  1039. else if (rect->top + rect->height >
  1040. subrect->top + subrect->height)
  1041. subrect->top = rect->top + rect->height -
  1042. subrect->height;
  1043. }
  1044. /*
  1045. * The common for both scaling and cropping iterative approach is:
  1046. * 1. try if the client can produce exactly what requested by the user
  1047. * 2. if (1) failed, try to double the client image until we get one big enough
  1048. * 3. if (2) failed, try to request the maximum image
  1049. */
  1050. static int client_s_crop(struct soc_camera_device *icd, struct v4l2_crop *crop,
  1051. struct v4l2_crop *cam_crop)
  1052. {
  1053. struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
  1054. struct v4l2_rect *rect = &crop->c, *cam_rect = &cam_crop->c;
  1055. struct device *dev = sd->v4l2_dev->dev;
  1056. struct sh_mobile_ceu_cam *cam = icd->host_priv;
  1057. struct v4l2_cropcap cap;
  1058. int ret;
  1059. unsigned int width, height;
  1060. v4l2_subdev_call(sd, video, s_crop, crop);
  1061. ret = client_g_rect(sd, cam_rect);
  1062. if (ret < 0)
  1063. return ret;
  1064. /*
  1065. * Now cam_crop contains the current camera input rectangle, and it must
  1066. * be within camera cropcap bounds
  1067. */
  1068. if (!memcmp(rect, cam_rect, sizeof(*rect))) {
  1069. /* Even if camera S_CROP failed, but camera rectangle matches */
  1070. dev_dbg(dev, "Camera S_CROP successful for %dx%d@%d:%d\n",
  1071. rect->width, rect->height, rect->left, rect->top);
  1072. cam->rect = *cam_rect;
  1073. return 0;
  1074. }
  1075. /* Try to fix cropping, that camera hasn't managed to set */
  1076. dev_geo(dev, "Fix camera S_CROP for %dx%d@%d:%d to %dx%d@%d:%d\n",
  1077. cam_rect->width, cam_rect->height,
  1078. cam_rect->left, cam_rect->top,
  1079. rect->width, rect->height, rect->left, rect->top);
  1080. /* We need sensor maximum rectangle */
  1081. ret = v4l2_subdev_call(sd, video, cropcap, &cap);
  1082. if (ret < 0)
  1083. return ret;
  1084. /* Put user requested rectangle within sensor bounds */
  1085. soc_camera_limit_side(&rect->left, &rect->width, cap.bounds.left, 2,
  1086. cap.bounds.width);
  1087. soc_camera_limit_side(&rect->top, &rect->height, cap.bounds.top, 4,
  1088. cap.bounds.height);
  1089. /*
  1090. * Popular special case - some cameras can only handle fixed sizes like
  1091. * QVGA, VGA,... Take care to avoid infinite loop.
  1092. */
  1093. width = max(cam_rect->width, 2);
  1094. height = max(cam_rect->height, 2);
  1095. /*
  1096. * Loop as long as sensor is not covering the requested rectangle and
  1097. * is still within its bounds
  1098. */
  1099. while (!ret && (is_smaller(cam_rect, rect) ||
  1100. is_inside(cam_rect, rect)) &&
  1101. (cap.bounds.width > width || cap.bounds.height > height)) {
  1102. width *= 2;
  1103. height *= 2;
  1104. cam_rect->width = width;
  1105. cam_rect->height = height;
  1106. /*
  1107. * We do not know what capabilities the camera has to set up
  1108. * left and top borders. We could try to be smarter in iterating
  1109. * them, e.g., if camera current left is to the right of the
  1110. * target left, set it to the middle point between the current
  1111. * left and minimum left. But that would add too much
  1112. * complexity: we would have to iterate each border separately.
  1113. * Instead we just drop to the left and top bounds.
  1114. */
  1115. if (cam_rect->left > rect->left)
  1116. cam_rect->left = cap.bounds.left;
  1117. if (cam_rect->left + cam_rect->width < rect->left + rect->width)
  1118. cam_rect->width = rect->left + rect->width -
  1119. cam_rect->left;
  1120. if (cam_rect->top > rect->top)
  1121. cam_rect->top = cap.bounds.top;
  1122. if (cam_rect->top + cam_rect->height < rect->top + rect->height)
  1123. cam_rect->height = rect->top + rect->height -
  1124. cam_rect->top;
  1125. v4l2_subdev_call(sd, video, s_crop, cam_crop);
  1126. ret = client_g_rect(sd, cam_rect);
  1127. dev_geo(dev, "Camera S_CROP %d for %dx%d@%d:%d\n", ret,
  1128. cam_rect->width, cam_rect->height,
  1129. cam_rect->left, cam_rect->top);
  1130. }
  1131. /* S_CROP must not modify the rectangle */
  1132. if (is_smaller(cam_rect, rect) || is_inside(cam_rect, rect)) {
  1133. /*
  1134. * The camera failed to configure a suitable cropping,
  1135. * we cannot use the current rectangle, set to max
  1136. */
  1137. *cam_rect = cap.bounds;
  1138. v4l2_subdev_call(sd, video, s_crop, cam_crop);
  1139. ret = client_g_rect(sd, cam_rect);
  1140. dev_geo(dev, "Camera S_CROP %d for max %dx%d@%d:%d\n", ret,
  1141. cam_rect->width, cam_rect->height,
  1142. cam_rect->left, cam_rect->top);
  1143. }
  1144. if (!ret) {
  1145. cam->rect = *cam_rect;
  1146. update_subrect(cam);
  1147. }
  1148. return ret;
  1149. }
  1150. /* Iterative s_mbus_fmt, also updates cached client crop on success */
  1151. static int client_s_fmt(struct soc_camera_device *icd,
  1152. struct v4l2_mbus_framefmt *mf, bool ceu_can_scale)
  1153. {
  1154. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  1155. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  1156. struct sh_mobile_ceu_cam *cam = icd->host_priv;
  1157. struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
  1158. struct device *dev = icd->parent;
  1159. unsigned int width = mf->width, height = mf->height, tmp_w, tmp_h;
  1160. unsigned int max_width, max_height;
  1161. struct v4l2_cropcap cap;
  1162. bool ceu_1to1;
  1163. int ret;
  1164. ret = v4l2_device_call_until_err(sd->v4l2_dev,
  1165. soc_camera_grp_id(icd), video,
  1166. s_mbus_fmt, mf);
  1167. if (ret < 0)
  1168. return ret;
  1169. dev_geo(dev, "camera scaled to %ux%u\n", mf->width, mf->height);
  1170. if (width == mf->width && height == mf->height) {
  1171. /* Perfect! The client has done it all. */
  1172. ceu_1to1 = true;
  1173. goto update_cache;
  1174. }
  1175. ceu_1to1 = false;
  1176. if (!ceu_can_scale)
  1177. goto update_cache;
  1178. cap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  1179. ret = v4l2_subdev_call(sd, video, cropcap, &cap);
  1180. if (ret < 0)
  1181. return ret;
  1182. max_width = min(cap.bounds.width, pcdev->max_width);
  1183. max_height = min(cap.bounds.height, pcdev->max_height);
  1184. /* Camera set a format, but geometry is not precise, try to improve */
  1185. tmp_w = mf->width;
  1186. tmp_h = mf->height;
  1187. /* width <= max_width && height <= max_height - guaranteed by try_fmt */
  1188. while ((width > tmp_w || height > tmp_h) &&
  1189. tmp_w < max_width && tmp_h < max_height) {
  1190. tmp_w = min(2 * tmp_w, max_width);
  1191. tmp_h = min(2 * tmp_h, max_height);
  1192. mf->width = tmp_w;
  1193. mf->height = tmp_h;
  1194. ret = v4l2_device_call_until_err(sd->v4l2_dev,
  1195. soc_camera_grp_id(icd), video,
  1196. s_mbus_fmt, mf);
  1197. dev_geo(dev, "Camera scaled to %ux%u\n",
  1198. mf->width, mf->height);
  1199. if (ret < 0) {
  1200. /* This shouldn't happen */
  1201. dev_err(dev, "Client failed to set format: %d\n", ret);
  1202. return ret;
  1203. }
  1204. }
  1205. update_cache:
  1206. /* Update cache */
  1207. ret = client_g_rect(sd, &cam->rect);
  1208. if (ret < 0)
  1209. return ret;
  1210. if (ceu_1to1)
  1211. cam->subrect = cam->rect;
  1212. else
  1213. update_subrect(cam);
  1214. return 0;
  1215. }
  1216. /**
  1217. * @width - on output: user width, mapped back to input
  1218. * @height - on output: user height, mapped back to input
  1219. * @mf - in- / output camera output window
  1220. */
  1221. static int client_scale(struct soc_camera_device *icd,
  1222. struct v4l2_mbus_framefmt *mf,
  1223. unsigned int *width, unsigned int *height,
  1224. bool ceu_can_scale)
  1225. {
  1226. struct sh_mobile_ceu_cam *cam = icd->host_priv;
  1227. struct device *dev = icd->parent;
  1228. struct v4l2_mbus_framefmt mf_tmp = *mf;
  1229. unsigned int scale_h, scale_v;
  1230. int ret;
  1231. /*
  1232. * 5. Apply iterative camera S_FMT for camera user window (also updates
  1233. * client crop cache and the imaginary sub-rectangle).
  1234. */
  1235. ret = client_s_fmt(icd, &mf_tmp, ceu_can_scale);
  1236. if (ret < 0)
  1237. return ret;
  1238. dev_geo(dev, "5: camera scaled to %ux%u\n",
  1239. mf_tmp.width, mf_tmp.height);
  1240. /* 6. Retrieve camera output window (g_fmt) */
  1241. /* unneeded - it is already in "mf_tmp" */
  1242. /* 7. Calculate new client scales. */
  1243. scale_h = calc_generic_scale(cam->rect.width, mf_tmp.width);
  1244. scale_v = calc_generic_scale(cam->rect.height, mf_tmp.height);
  1245. mf->width = mf_tmp.width;
  1246. mf->height = mf_tmp.height;
  1247. mf->colorspace = mf_tmp.colorspace;
  1248. /*
  1249. * 8. Calculate new CEU crop - apply camera scales to previously
  1250. * updated "effective" crop.
  1251. */
  1252. *width = scale_down(cam->subrect.width, scale_h);
  1253. *height = scale_down(cam->subrect.height, scale_v);
  1254. dev_geo(dev, "8: new client sub-window %ux%u\n", *width, *height);
  1255. return 0;
  1256. }
  1257. /*
  1258. * CEU can scale and crop, but we don't want to waste bandwidth and kill the
  1259. * framerate by always requesting the maximum image from the client. See
  1260. * Documentation/video4linux/sh_mobile_ceu_camera.txt for a description of
  1261. * scaling and cropping algorithms and for the meaning of referenced here steps.
  1262. */
  1263. static int sh_mobile_ceu_set_crop(struct soc_camera_device *icd,
  1264. struct v4l2_crop *a)
  1265. {
  1266. struct v4l2_rect *rect = &a->c;
  1267. struct device *dev = icd->parent;
  1268. struct soc_camera_host *ici = to_soc_camera_host(dev);
  1269. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  1270. struct v4l2_crop cam_crop;
  1271. struct sh_mobile_ceu_cam *cam = icd->host_priv;
  1272. struct v4l2_rect *cam_rect = &cam_crop.c;
  1273. struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
  1274. struct v4l2_mbus_framefmt mf;
  1275. unsigned int scale_cam_h, scale_cam_v, scale_ceu_h, scale_ceu_v,
  1276. out_width, out_height;
  1277. int interm_width, interm_height;
  1278. u32 capsr, cflcr;
  1279. int ret;
  1280. dev_geo(dev, "S_CROP(%ux%u@%u:%u)\n", rect->width, rect->height,
  1281. rect->left, rect->top);
  1282. /* During camera cropping its output window can change too, stop CEU */
  1283. capsr = capture_save_reset(pcdev);
  1284. dev_dbg(dev, "CAPSR 0x%x, CFLCR 0x%x\n", capsr, pcdev->cflcr);
  1285. /*
  1286. * 1. - 2. Apply iterative camera S_CROP for new input window, read back
  1287. * actual camera rectangle.
  1288. */
  1289. ret = client_s_crop(icd, a, &cam_crop);
  1290. if (ret < 0)
  1291. return ret;
  1292. dev_geo(dev, "1-2: camera cropped to %ux%u@%u:%u\n",
  1293. cam_rect->width, cam_rect->height,
  1294. cam_rect->left, cam_rect->top);
  1295. /* On success cam_crop contains current camera crop */
  1296. /* 3. Retrieve camera output window */
  1297. ret = v4l2_subdev_call(sd, video, g_mbus_fmt, &mf);
  1298. if (ret < 0)
  1299. return ret;
  1300. if (mf.width > pcdev->max_width || mf.height > pcdev->max_height)
  1301. return -EINVAL;
  1302. /* 4. Calculate camera scales */
  1303. scale_cam_h = calc_generic_scale(cam_rect->width, mf.width);
  1304. scale_cam_v = calc_generic_scale(cam_rect->height, mf.height);
  1305. /* Calculate intermediate window */
  1306. interm_width = scale_down(rect->width, scale_cam_h);
  1307. interm_height = scale_down(rect->height, scale_cam_v);
  1308. if (interm_width < icd->user_width) {
  1309. u32 new_scale_h;
  1310. new_scale_h = calc_generic_scale(rect->width, icd->user_width);
  1311. mf.width = scale_down(cam_rect->width, new_scale_h);
  1312. }
  1313. if (interm_height < icd->user_height) {
  1314. u32 new_scale_v;
  1315. new_scale_v = calc_generic_scale(rect->height, icd->user_height);
  1316. mf.height = scale_down(cam_rect->height, new_scale_v);
  1317. }
  1318. if (interm_width < icd->user_width || interm_height < icd->user_height) {
  1319. ret = v4l2_device_call_until_err(sd->v4l2_dev,
  1320. soc_camera_grp_id(icd), video,
  1321. s_mbus_fmt, &mf);
  1322. if (ret < 0)
  1323. return ret;
  1324. dev_geo(dev, "New camera output %ux%u\n", mf.width, mf.height);
  1325. scale_cam_h = calc_generic_scale(cam_rect->width, mf.width);
  1326. scale_cam_v = calc_generic_scale(cam_rect->height, mf.height);
  1327. interm_width = scale_down(rect->width, scale_cam_h);
  1328. interm_height = scale_down(rect->height, scale_cam_v);
  1329. }
  1330. /* Cache camera output window */
  1331. cam->width = mf.width;
  1332. cam->height = mf.height;
  1333. if (pcdev->image_mode) {
  1334. out_width = min(interm_width, icd->user_width);
  1335. out_height = min(interm_height, icd->user_height);
  1336. } else {
  1337. out_width = interm_width;
  1338. out_height = interm_height;
  1339. }
  1340. /*
  1341. * 5. Calculate CEU scales from camera scales from results of (5) and
  1342. * the user window
  1343. */
  1344. scale_ceu_h = calc_scale(interm_width, &out_width);
  1345. scale_ceu_v = calc_scale(interm_height, &out_height);
  1346. dev_geo(dev, "5: CEU scales %u:%u\n", scale_ceu_h, scale_ceu_v);
  1347. /* Apply CEU scales. */
  1348. cflcr = scale_ceu_h | (scale_ceu_v << 16);
  1349. if (cflcr != pcdev->cflcr) {
  1350. pcdev->cflcr = cflcr;
  1351. ceu_write(pcdev, CFLCR, cflcr);
  1352. }
  1353. icd->user_width = out_width & ~3;
  1354. icd->user_height = out_height & ~3;
  1355. /* Offsets are applied at the CEU scaling filter input */
  1356. cam->ceu_left = scale_down(rect->left - cam_rect->left, scale_cam_h) & ~1;
  1357. cam->ceu_top = scale_down(rect->top - cam_rect->top, scale_cam_v) & ~1;
  1358. /* 6. Use CEU cropping to crop to the new window. */
  1359. sh_mobile_ceu_set_rect(icd);
  1360. cam->subrect = *rect;
  1361. dev_geo(dev, "6: CEU cropped to %ux%u@%u:%u\n",
  1362. icd->user_width, icd->user_height,
  1363. cam->ceu_left, cam->ceu_top);
  1364. /* Restore capture. The CE bit can be cleared by the hardware */
  1365. if (pcdev->active)
  1366. capsr |= 1;
  1367. capture_restore(pcdev, capsr);
  1368. /* Even if only camera cropping succeeded */
  1369. return ret;
  1370. }
  1371. static int sh_mobile_ceu_get_crop(struct soc_camera_device *icd,
  1372. struct v4l2_crop *a)
  1373. {
  1374. struct sh_mobile_ceu_cam *cam = icd->host_priv;
  1375. a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  1376. a->c = cam->subrect;
  1377. return 0;
  1378. }
  1379. /*
  1380. * Calculate real client output window by applying new scales to the current
  1381. * client crop. New scales are calculated from the requested output format and
  1382. * CEU crop, mapped backed onto the client input (subrect).
  1383. */
  1384. static void calculate_client_output(struct soc_camera_device *icd,
  1385. const struct v4l2_pix_format *pix, struct v4l2_mbus_framefmt *mf)
  1386. {
  1387. struct sh_mobile_ceu_cam *cam = icd->host_priv;
  1388. struct device *dev = icd->parent;
  1389. struct v4l2_rect *cam_subrect = &cam->subrect;
  1390. unsigned int scale_v, scale_h;
  1391. if (cam_subrect->width == cam->rect.width &&
  1392. cam_subrect->height == cam->rect.height) {
  1393. /* No sub-cropping */
  1394. mf->width = pix->width;
  1395. mf->height = pix->height;
  1396. return;
  1397. }
  1398. /* 1.-2. Current camera scales and subwin - cached. */
  1399. dev_geo(dev, "2: subwin %ux%u@%u:%u\n",
  1400. cam_subrect->width, cam_subrect->height,
  1401. cam_subrect->left, cam_subrect->top);
  1402. /*
  1403. * 3. Calculate new combined scales from input sub-window to requested
  1404. * user window.
  1405. */
  1406. /*
  1407. * TODO: CEU cannot scale images larger than VGA to smaller than SubQCIF
  1408. * (128x96) or larger than VGA
  1409. */
  1410. scale_h = calc_generic_scale(cam_subrect->width, pix->width);
  1411. scale_v = calc_generic_scale(cam_subrect->height, pix->height);
  1412. dev_geo(dev, "3: scales %u:%u\n", scale_h, scale_v);
  1413. /*
  1414. * 4. Calculate desired client output window by applying combined scales
  1415. * to client (real) input window.
  1416. */
  1417. mf->width = scale_down(cam->rect.width, scale_h);
  1418. mf->height = scale_down(cam->rect.height, scale_v);
  1419. }
  1420. /* Similar to set_crop multistage iterative algorithm */
  1421. static int sh_mobile_ceu_set_fmt(struct soc_camera_device *icd,
  1422. struct v4l2_format *f)
  1423. {
  1424. struct device *dev = icd->parent;
  1425. struct soc_camera_host *ici = to_soc_camera_host(dev);
  1426. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  1427. struct sh_mobile_ceu_cam *cam = icd->host_priv;
  1428. struct v4l2_pix_format *pix = &f->fmt.pix;
  1429. struct v4l2_mbus_framefmt mf;
  1430. __u32 pixfmt = pix->pixelformat;
  1431. const struct soc_camera_format_xlate *xlate;
  1432. /* Keep Compiler Happy */
  1433. unsigned int ceu_sub_width = 0, ceu_sub_height = 0;
  1434. u16 scale_v, scale_h;
  1435. int ret;
  1436. bool image_mode;
  1437. enum v4l2_field field;
  1438. switch (pix->field) {
  1439. default:
  1440. pix->field = V4L2_FIELD_NONE;
  1441. /* fall-through */
  1442. case V4L2_FIELD_INTERLACED_TB:
  1443. case V4L2_FIELD_INTERLACED_BT:
  1444. case V4L2_FIELD_NONE:
  1445. field = pix->field;
  1446. break;
  1447. case V4L2_FIELD_INTERLACED:
  1448. field = V4L2_FIELD_INTERLACED_TB;
  1449. break;
  1450. }
  1451. xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
  1452. if (!xlate) {
  1453. dev_warn(dev, "Format %x not found\n", pixfmt);
  1454. return -EINVAL;
  1455. }
  1456. /* 1.-4. Calculate desired client output geometry */
  1457. calculate_client_output(icd, pix, &mf);
  1458. mf.field = pix->field;
  1459. mf.colorspace = pix->colorspace;
  1460. mf.code = xlate->code;
  1461. switch (pixfmt) {
  1462. case V4L2_PIX_FMT_NV12:
  1463. case V4L2_PIX_FMT_NV21:
  1464. case V4L2_PIX_FMT_NV16:
  1465. case V4L2_PIX_FMT_NV61:
  1466. image_mode = true;
  1467. break;
  1468. default:
  1469. image_mode = false;
  1470. }
  1471. dev_geo(dev, "S_FMT(pix=0x%x, fld 0x%x, code 0x%x, %ux%u)\n", pixfmt, mf.field, mf.code,
  1472. pix->width, pix->height);
  1473. dev_geo(dev, "4: request camera output %ux%u\n", mf.width, mf.height);
  1474. /* 5. - 9. */
  1475. ret = client_scale(icd, &mf, &ceu_sub_width, &ceu_sub_height,
  1476. image_mode && V4L2_FIELD_NONE == field);
  1477. dev_geo(dev, "5-9: client scale return %d\n", ret);
  1478. /* Done with the camera. Now see if we can improve the result */
  1479. dev_geo(dev, "fmt %ux%u, requested %ux%u\n",
  1480. mf.width, mf.height, pix->width, pix->height);
  1481. if (ret < 0)
  1482. return ret;
  1483. if (mf.code != xlate->code)
  1484. return -EINVAL;
  1485. /* 9. Prepare CEU crop */
  1486. cam->width = mf.width;
  1487. cam->height = mf.height;
  1488. /* 10. Use CEU scaling to scale to the requested user window. */
  1489. /* We cannot scale up */
  1490. if (pix->width > ceu_sub_width)
  1491. ceu_sub_width = pix->width;
  1492. if (pix->height > ceu_sub_height)
  1493. ceu_sub_height = pix->height;
  1494. pix->colorspace = mf.colorspace;
  1495. if (image_mode) {
  1496. /* Scale pix->{width x height} down to width x height */
  1497. scale_h = calc_scale(ceu_sub_width, &pix->width);
  1498. scale_v = calc_scale(ceu_sub_height, &pix->height);
  1499. } else {
  1500. pix->width = ceu_sub_width;
  1501. pix->height = ceu_sub_height;
  1502. scale_h = 0;
  1503. scale_v = 0;
  1504. }
  1505. pcdev->cflcr = scale_h | (scale_v << 16);
  1506. /*
  1507. * We have calculated CFLCR, the actual configuration will be performed
  1508. * in sh_mobile_ceu_set_bus_param()
  1509. */
  1510. dev_geo(dev, "10: W: %u : 0x%x = %u, H: %u : 0x%x = %u\n",
  1511. ceu_sub_width, scale_h, pix->width,
  1512. ceu_sub_height, scale_v, pix->height);
  1513. cam->code = xlate->code;
  1514. icd->current_fmt = xlate;
  1515. pcdev->field = field;
  1516. pcdev->image_mode = image_mode;
  1517. /* CFSZR requirement */
  1518. pix->width &= ~3;
  1519. pix->height &= ~3;
  1520. return 0;
  1521. }
  1522. #define CEU_CHDW_MAX 8188U /* Maximum line stride */
  1523. static int sh_mobile_ceu_try_fmt(struct soc_camera_device *icd,
  1524. struct v4l2_format *f)
  1525. {
  1526. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  1527. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  1528. const struct soc_camera_format_xlate *xlate;
  1529. struct v4l2_pix_format *pix = &f->fmt.pix;
  1530. struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
  1531. struct v4l2_mbus_framefmt mf;
  1532. __u32 pixfmt = pix->pixelformat;
  1533. int width, height;
  1534. int ret;
  1535. dev_geo(icd->parent, "TRY_FMT(pix=0x%x, %ux%u)\n",
  1536. pixfmt, pix->width, pix->height);
  1537. xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
  1538. if (!xlate) {
  1539. xlate = icd->current_fmt;
  1540. dev_dbg(icd->parent, "Format %x not found, keeping %x\n",
  1541. pixfmt, xlate->host_fmt->fourcc);
  1542. pixfmt = xlate->host_fmt->fourcc;
  1543. pix->pixelformat = pixfmt;
  1544. pix->colorspace = icd->colorspace;
  1545. }
  1546. /* FIXME: calculate using depth and bus width */
  1547. /* CFSZR requires height and width to be 4-pixel aligned */
  1548. v4l_bound_align_image(&pix->width, 2, pcdev->max_width, 2,
  1549. &pix->height, 4, pcdev->max_height, 2, 0);
  1550. width = pix->width;
  1551. height = pix->height;
  1552. /* limit to sensor capabilities */
  1553. mf.width = pix->width;
  1554. mf.height = pix->height;
  1555. mf.field = pix->field;
  1556. mf.code = xlate->code;
  1557. mf.colorspace = pix->colorspace;
  1558. ret = v4l2_device_call_until_err(sd->v4l2_dev, soc_camera_grp_id(icd),
  1559. video, try_mbus_fmt, &mf);
  1560. if (ret < 0)
  1561. return ret;
  1562. pix->width = mf.width;
  1563. pix->height = mf.height;
  1564. pix->field = mf.field;
  1565. pix->colorspace = mf.colorspace;
  1566. switch (pixfmt) {
  1567. case V4L2_PIX_FMT_NV12:
  1568. case V4L2_PIX_FMT_NV21:
  1569. case V4L2_PIX_FMT_NV16:
  1570. case V4L2_PIX_FMT_NV61:
  1571. /* FIXME: check against rect_max after converting soc-camera */
  1572. /* We can scale precisely, need a bigger image from camera */
  1573. if (pix->width < width || pix->height < height) {
  1574. /*
  1575. * We presume, the sensor behaves sanely, i.e., if
  1576. * requested a bigger rectangle, it will not return a
  1577. * smaller one.
  1578. */
  1579. mf.width = pcdev->max_width;
  1580. mf.height = pcdev->max_height;
  1581. ret = v4l2_device_call_until_err(sd->v4l2_dev,
  1582. soc_camera_grp_id(icd), video,
  1583. try_mbus_fmt, &mf);
  1584. if (ret < 0) {
  1585. /* Shouldn't actually happen... */
  1586. dev_err(icd->parent,
  1587. "FIXME: client try_fmt() = %d\n", ret);
  1588. return ret;
  1589. }
  1590. }
  1591. /* We will scale exactly */
  1592. if (mf.width > width)
  1593. pix->width = width;
  1594. if (mf.height > height)
  1595. pix->height = height;
  1596. pix->bytesperline = max(pix->bytesperline, pix->width);
  1597. pix->bytesperline = min(pix->bytesperline, CEU_CHDW_MAX);
  1598. pix->bytesperline &= ~3;
  1599. break;
  1600. default:
  1601. /* Configurable stride isn't supported in pass-through mode. */
  1602. pix->bytesperline = 0;
  1603. }
  1604. pix->width &= ~3;
  1605. pix->height &= ~3;
  1606. pix->sizeimage = 0;
  1607. dev_geo(icd->parent, "%s(): return %d, fmt 0x%x, %ux%u\n",
  1608. __func__, ret, pix->pixelformat, pix->width, pix->height);
  1609. return ret;
  1610. }
  1611. static int sh_mobile_ceu_set_livecrop(struct soc_camera_device *icd,
  1612. struct v4l2_crop *a)
  1613. {
  1614. struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
  1615. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  1616. struct sh_mobile_ceu_dev *pcdev = ici->priv;
  1617. u32 out_width = icd->user_width, out_height = icd->user_height;
  1618. int ret;
  1619. /* Freeze queue */
  1620. pcdev->frozen = 1;
  1621. /* Wait for frame */
  1622. ret = wait_for_completion_interruptible(&pcdev->complete);
  1623. /* Stop the client */
  1624. ret = v4l2_subdev_call(sd, video, s_stream, 0);
  1625. if (ret < 0)
  1626. dev_warn(icd->parent,
  1627. "Client failed to stop the stream: %d\n", ret);
  1628. else
  1629. /* Do the crop, if it fails, there's nothing more we can do */
  1630. sh_mobile_ceu_set_crop(icd, a);
  1631. dev_geo(icd->parent, "Output after crop: %ux%u\n", icd->user_width, icd->user_height);
  1632. if (icd->user_width != out_width || icd->user_height != out_height) {
  1633. struct v4l2_format f = {
  1634. .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
  1635. .fmt.pix = {
  1636. .width = out_width,
  1637. .height = out_height,
  1638. .pixelformat = icd->current_fmt->host_fmt->fourcc,
  1639. .field = pcdev->field,
  1640. .colorspace = icd->colorspace,
  1641. },
  1642. };
  1643. ret = sh_mobile_ceu_set_fmt(icd, &f);
  1644. if (!ret && (out_width != f.fmt.pix.width ||
  1645. out_height != f.fmt.pix.height))
  1646. ret = -EINVAL;
  1647. if (!ret) {
  1648. icd->user_width = out_width & ~3;
  1649. icd->user_height = out_height & ~3;
  1650. ret = sh_mobile_ceu_set_bus_param(icd);
  1651. }
  1652. }
  1653. /* Thaw the queue */
  1654. pcdev->frozen = 0;
  1655. spin_lock_irq(&pcdev->lock);
  1656. sh_mobile_ceu_capture(pcdev);
  1657. spin_unlock_irq(&pcdev->lock);
  1658. /* Start the client */
  1659. ret = v4l2_subdev_call(sd, video, s_stream, 1);
  1660. return ret;
  1661. }
  1662. static unsigned int sh_mobile_ceu_poll(struct file *file, poll_table *pt)
  1663. {
  1664. struct soc_camera_device *icd = file->private_data;
  1665. return vb2_poll(&icd->vb2_vidq, file, pt);
  1666. }
  1667. static int sh_mobile_ceu_querycap(struct soc_camera_host *ici,
  1668. struct v4l2_capability *cap)
  1669. {
  1670. strlcpy(cap->card, "SuperH_Mobile_CEU", sizeof(cap->card));
  1671. cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
  1672. return 0;
  1673. }
  1674. static int sh_mobile_ceu_init_videobuf(struct vb2_queue *q,
  1675. struct soc_camera_device *icd)
  1676. {
  1677. q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  1678. q->io_modes = VB2_MMAP | VB2_USERPTR;
  1679. q->drv_priv = icd;
  1680. q->ops = &sh_mobile_ceu_videobuf_ops;
  1681. q->mem_ops = &vb2_dma_contig_memops;
  1682. q->buf_struct_size = sizeof(struct sh_mobile_ceu_buffer);
  1683. return vb2_queue_init(q);
  1684. }
  1685. static struct soc_camera_host_ops sh_mobile_ceu_host_ops = {
  1686. .owner = THIS_MODULE,
  1687. .add = sh_mobile_ceu_add_device,
  1688. .remove = sh_mobile_ceu_remove_device,
  1689. .get_formats = sh_mobile_ceu_get_formats,
  1690. .put_formats = sh_mobile_ceu_put_formats,
  1691. .get_crop = sh_mobile_ceu_get_crop,
  1692. .set_crop = sh_mobile_ceu_set_crop,
  1693. .set_livecrop = sh_mobile_ceu_set_livecrop,
  1694. .set_fmt = sh_mobile_ceu_set_fmt,
  1695. .try_fmt = sh_mobile_ceu_try_fmt,
  1696. .poll = sh_mobile_ceu_poll,
  1697. .querycap = sh_mobile_ceu_querycap,
  1698. .set_bus_param = sh_mobile_ceu_set_bus_param,
  1699. .init_videobuf2 = sh_mobile_ceu_init_videobuf,
  1700. };
  1701. struct bus_wait {
  1702. struct notifier_block notifier;
  1703. struct completion completion;
  1704. struct device *dev;
  1705. };
  1706. static int bus_notify(struct notifier_block *nb,
  1707. unsigned long action, void *data)
  1708. {
  1709. struct device *dev = data;
  1710. struct bus_wait *wait = container_of(nb, struct bus_wait, notifier);
  1711. if (wait->dev != dev)
  1712. return NOTIFY_DONE;
  1713. switch (action) {
  1714. case BUS_NOTIFY_UNBOUND_DRIVER:
  1715. /* Protect from module unloading */
  1716. wait_for_completion(&wait->completion);
  1717. return NOTIFY_OK;
  1718. }
  1719. return NOTIFY_DONE;
  1720. }
  1721. static int __devinit sh_mobile_ceu_probe(struct platform_device *pdev)
  1722. {
  1723. struct sh_mobile_ceu_dev *pcdev;
  1724. struct resource *res;
  1725. void __iomem *base;
  1726. unsigned int irq;
  1727. int err = 0;
  1728. struct bus_wait wait = {
  1729. .completion = COMPLETION_INITIALIZER_ONSTACK(wait.completion),
  1730. .notifier.notifier_call = bus_notify,
  1731. };
  1732. struct sh_mobile_ceu_companion *csi2;
  1733. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  1734. irq = platform_get_irq(pdev, 0);
  1735. if (!res || (int)irq <= 0) {
  1736. dev_err(&pdev->dev, "Not enough CEU platform resources.\n");
  1737. err = -ENODEV;
  1738. goto exit;
  1739. }
  1740. pcdev = kzalloc(sizeof(*pcdev), GFP_KERNEL);
  1741. if (!pcdev) {
  1742. dev_err(&pdev->dev, "Could not allocate pcdev\n");
  1743. err = -ENOMEM;
  1744. goto exit;
  1745. }
  1746. INIT_LIST_HEAD(&pcdev->capture);
  1747. spin_lock_init(&pcdev->lock);
  1748. init_completion(&pcdev->complete);
  1749. pcdev->pdata = pdev->dev.platform_data;
  1750. if (!pcdev->pdata) {
  1751. err = -EINVAL;
  1752. dev_err(&pdev->dev, "CEU platform data not set.\n");
  1753. goto exit_kfree;
  1754. }
  1755. pcdev->max_width = pcdev->pdata->max_width ? : 2560;
  1756. pcdev->max_height = pcdev->pdata->max_height ? : 1920;
  1757. base = ioremap_nocache(res->start, resource_size(res));
  1758. if (!base) {
  1759. err = -ENXIO;
  1760. dev_err(&pdev->dev, "Unable to ioremap CEU registers.\n");
  1761. goto exit_kfree;
  1762. }
  1763. pcdev->irq = irq;
  1764. pcdev->base = base;
  1765. pcdev->video_limit = 0; /* only enabled if second resource exists */
  1766. res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
  1767. if (res) {
  1768. err = dma_declare_coherent_memory(&pdev->dev, res->start,
  1769. res->start,
  1770. resource_size(res),
  1771. DMA_MEMORY_MAP |
  1772. DMA_MEMORY_EXCLUSIVE);
  1773. if (!err) {
  1774. dev_err(&pdev->dev, "Unable to declare CEU memory.\n");
  1775. err = -ENXIO;
  1776. goto exit_iounmap;
  1777. }
  1778. pcdev->video_limit = resource_size(res);
  1779. }
  1780. /* request irq */
  1781. err = request_irq(pcdev->irq, sh_mobile_ceu_irq, IRQF_DISABLED,
  1782. dev_name(&pdev->dev), pcdev);
  1783. if (err) {
  1784. dev_err(&pdev->dev, "Unable to register CEU interrupt.\n");
  1785. goto exit_release_mem;
  1786. }
  1787. pm_suspend_ignore_children(&pdev->dev, true);
  1788. pm_runtime_enable(&pdev->dev);
  1789. pm_runtime_resume(&pdev->dev);
  1790. pcdev->ici.priv = pcdev;
  1791. pcdev->ici.v4l2_dev.dev = &pdev->dev;
  1792. pcdev->ici.nr = pdev->id;
  1793. pcdev->ici.drv_name = dev_name(&pdev->dev);
  1794. pcdev->ici.ops = &sh_mobile_ceu_host_ops;
  1795. pcdev->ici.capabilities = SOCAM_HOST_CAP_STRIDE;
  1796. pcdev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
  1797. if (IS_ERR(pcdev->alloc_ctx)) {
  1798. err = PTR_ERR(pcdev->alloc_ctx);
  1799. goto exit_free_clk;
  1800. }
  1801. err = soc_camera_host_register(&pcdev->ici);
  1802. if (err)
  1803. goto exit_free_ctx;
  1804. /* CSI2 interfacing */
  1805. csi2 = pcdev->pdata->csi2;
  1806. if (csi2) {
  1807. struct platform_device *csi2_pdev =
  1808. platform_device_alloc("sh-mobile-csi2", csi2->id);
  1809. struct sh_csi2_pdata *csi2_pdata = csi2->platform_data;
  1810. if (!csi2_pdev) {
  1811. err = -ENOMEM;
  1812. goto exit_host_unregister;
  1813. }
  1814. pcdev->csi2_pdev = csi2_pdev;
  1815. err = platform_device_add_data(csi2_pdev, csi2_pdata, sizeof(*csi2_pdata));
  1816. if (err < 0)
  1817. goto exit_pdev_put;
  1818. csi2_pdata = csi2_pdev->dev.platform_data;
  1819. csi2_pdata->v4l2_dev = &pcdev->ici.v4l2_dev;
  1820. csi2_pdev->resource = csi2->resource;
  1821. csi2_pdev->num_resources = csi2->num_resources;
  1822. err = platform_device_add(csi2_pdev);
  1823. if (err < 0)
  1824. goto exit_pdev_put;
  1825. wait.dev = &csi2_pdev->dev;
  1826. err = bus_register_notifier(&platform_bus_type, &wait.notifier);
  1827. if (err < 0)
  1828. goto exit_pdev_unregister;
  1829. /*
  1830. * From this point the driver module will not unload, until
  1831. * we complete the completion.
  1832. */
  1833. if (!csi2_pdev->dev.driver) {
  1834. complete(&wait.completion);
  1835. /* Either too late, or probing failed */
  1836. bus_unregister_notifier(&platform_bus_type, &wait.notifier);
  1837. err = -ENXIO;
  1838. goto exit_pdev_unregister;
  1839. }
  1840. /*
  1841. * The module is still loaded, in the worst case it is hanging
  1842. * in device release on our completion. So, _now_ dereferencing
  1843. * the "owner" is safe!
  1844. */
  1845. err = try_module_get(csi2_pdev->dev.driver->owner);
  1846. /* Let notifier complete, if it has been locked */
  1847. complete(&wait.completion);
  1848. bus_unregister_notifier(&platform_bus_type, &wait.notifier);
  1849. if (!err) {
  1850. err = -ENODEV;
  1851. goto exit_pdev_unregister;
  1852. }
  1853. }
  1854. return 0;
  1855. exit_pdev_unregister:
  1856. platform_device_del(pcdev->csi2_pdev);
  1857. exit_pdev_put:
  1858. pcdev->csi2_pdev->resource = NULL;
  1859. platform_device_put(pcdev->csi2_pdev);
  1860. exit_host_unregister:
  1861. soc_camera_host_unregister(&pcdev->ici);
  1862. exit_free_ctx:
  1863. vb2_dma_contig_cleanup_ctx(pcdev->alloc_ctx);
  1864. exit_free_clk:
  1865. pm_runtime_disable(&pdev->dev);
  1866. free_irq(pcdev->irq, pcdev);
  1867. exit_release_mem:
  1868. if (platform_get_resource(pdev, IORESOURCE_MEM, 1))
  1869. dma_release_declared_memory(&pdev->dev);
  1870. exit_iounmap:
  1871. iounmap(base);
  1872. exit_kfree:
  1873. kfree(pcdev);
  1874. exit:
  1875. return err;
  1876. }
  1877. static int __devexit sh_mobile_ceu_remove(struct platform_device *pdev)
  1878. {
  1879. struct soc_camera_host *soc_host = to_soc_camera_host(&pdev->dev);
  1880. struct sh_mobile_ceu_dev *pcdev = container_of(soc_host,
  1881. struct sh_mobile_ceu_dev, ici);
  1882. struct platform_device *csi2_pdev = pcdev->csi2_pdev;
  1883. soc_camera_host_unregister(soc_host);
  1884. pm_runtime_disable(&pdev->dev);
  1885. free_irq(pcdev->irq, pcdev);
  1886. if (platform_get_resource(pdev, IORESOURCE_MEM, 1))
  1887. dma_release_declared_memory(&pdev->dev);
  1888. iounmap(pcdev->base);
  1889. vb2_dma_contig_cleanup_ctx(pcdev->alloc_ctx);
  1890. if (csi2_pdev && csi2_pdev->dev.driver) {
  1891. struct module *csi2_drv = csi2_pdev->dev.driver->owner;
  1892. platform_device_del(csi2_pdev);
  1893. csi2_pdev->resource = NULL;
  1894. platform_device_put(csi2_pdev);
  1895. module_put(csi2_drv);
  1896. }
  1897. kfree(pcdev);
  1898. return 0;
  1899. }
  1900. static int sh_mobile_ceu_runtime_nop(struct device *dev)
  1901. {
  1902. /* Runtime PM callback shared between ->runtime_suspend()
  1903. * and ->runtime_resume(). Simply returns success.
  1904. *
  1905. * This driver re-initializes all registers after
  1906. * pm_runtime_get_sync() anyway so there is no need
  1907. * to save and restore registers here.
  1908. */
  1909. return 0;
  1910. }
  1911. static const struct dev_pm_ops sh_mobile_ceu_dev_pm_ops = {
  1912. .runtime_suspend = sh_mobile_ceu_runtime_nop,
  1913. .runtime_resume = sh_mobile_ceu_runtime_nop,
  1914. };
  1915. static struct platform_driver sh_mobile_ceu_driver = {
  1916. .driver = {
  1917. .name = "sh_mobile_ceu",
  1918. .pm = &sh_mobile_ceu_dev_pm_ops,
  1919. },
  1920. .probe = sh_mobile_ceu_probe,
  1921. .remove = __devexit_p(sh_mobile_ceu_remove),
  1922. };
  1923. static int __init sh_mobile_ceu_init(void)
  1924. {
  1925. /* Whatever return code */
  1926. request_module("sh_mobile_csi2");
  1927. return platform_driver_register(&sh_mobile_ceu_driver);
  1928. }
  1929. static void __exit sh_mobile_ceu_exit(void)
  1930. {
  1931. platform_driver_unregister(&sh_mobile_ceu_driver);
  1932. }
  1933. module_init(sh_mobile_ceu_init);
  1934. module_exit(sh_mobile_ceu_exit);
  1935. MODULE_DESCRIPTION("SuperH Mobile CEU driver");
  1936. MODULE_AUTHOR("Magnus Damm");
  1937. MODULE_LICENSE("GPL");
  1938. MODULE_VERSION("0.0.6");
  1939. MODULE_ALIAS("platform:sh_mobile_ceu");