fimc-capture.c 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  1. /*
  2. * Samsung S5P/EXYNOS4 SoC series camera interface (camera capture) driver
  3. *
  4. * Copyright (C) 2010 - 2012 Samsung Electronics Co., Ltd.
  5. * Sylwester Nawrocki <s.nawrocki@samsung.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/module.h>
  12. #include <linux/kernel.h>
  13. #include <linux/types.h>
  14. #include <linux/errno.h>
  15. #include <linux/bug.h>
  16. #include <linux/interrupt.h>
  17. #include <linux/device.h>
  18. #include <linux/pm_runtime.h>
  19. #include <linux/list.h>
  20. #include <linux/slab.h>
  21. #include <linux/videodev2.h>
  22. #include <media/v4l2-device.h>
  23. #include <media/v4l2-ioctl.h>
  24. #include <media/v4l2-mem2mem.h>
  25. #include <media/videobuf2-core.h>
  26. #include <media/videobuf2-dma-contig.h>
  27. #include "fimc-mdevice.h"
  28. #include "fimc-core.h"
  29. #include "fimc-reg.h"
  30. static int fimc_capture_hw_init(struct fimc_dev *fimc)
  31. {
  32. struct fimc_ctx *ctx = fimc->vid_cap.ctx;
  33. struct fimc_pipeline *p = &fimc->pipeline;
  34. struct fimc_sensor_info *sensor;
  35. unsigned long flags;
  36. int ret = 0;
  37. if (p->subdevs[IDX_SENSOR] == NULL || ctx == NULL)
  38. return -ENXIO;
  39. if (ctx->s_frame.fmt == NULL)
  40. return -EINVAL;
  41. sensor = v4l2_get_subdev_hostdata(p->subdevs[IDX_SENSOR]);
  42. spin_lock_irqsave(&fimc->slock, flags);
  43. fimc_prepare_dma_offset(ctx, &ctx->d_frame);
  44. fimc_set_yuv_order(ctx);
  45. fimc_hw_set_camera_polarity(fimc, &sensor->pdata);
  46. fimc_hw_set_camera_type(fimc, &sensor->pdata);
  47. fimc_hw_set_camera_source(fimc, &sensor->pdata);
  48. fimc_hw_set_camera_offset(fimc, &ctx->s_frame);
  49. ret = fimc_set_scaler_info(ctx);
  50. if (!ret) {
  51. fimc_hw_set_input_path(ctx);
  52. fimc_hw_set_prescaler(ctx);
  53. fimc_hw_set_mainscaler(ctx);
  54. fimc_hw_set_target_format(ctx);
  55. fimc_hw_set_rotation(ctx);
  56. fimc_hw_set_effect(ctx);
  57. fimc_hw_set_output_path(ctx);
  58. fimc_hw_set_out_dma(ctx);
  59. if (fimc->variant->has_alpha)
  60. fimc_hw_set_rgb_alpha(ctx);
  61. clear_bit(ST_CAPT_APPLY_CFG, &fimc->state);
  62. }
  63. spin_unlock_irqrestore(&fimc->slock, flags);
  64. return ret;
  65. }
  66. /*
  67. * Reinitialize the driver so it is ready to start the streaming again.
  68. * Set fimc->state to indicate stream off and the hardware shut down state.
  69. * If not suspending (@suspend is false), return any buffers to videobuf2.
  70. * Otherwise put any owned buffers onto the pending buffers queue, so they
  71. * can be re-spun when the device is being resumed. Also perform FIMC
  72. * software reset and disable streaming on the whole pipeline if required.
  73. */
  74. static int fimc_capture_state_cleanup(struct fimc_dev *fimc, bool suspend)
  75. {
  76. struct fimc_vid_cap *cap = &fimc->vid_cap;
  77. struct fimc_vid_buffer *buf;
  78. unsigned long flags;
  79. bool streaming;
  80. spin_lock_irqsave(&fimc->slock, flags);
  81. streaming = fimc->state & (1 << ST_CAPT_ISP_STREAM);
  82. fimc->state &= ~(1 << ST_CAPT_RUN | 1 << ST_CAPT_SHUT |
  83. 1 << ST_CAPT_STREAM | 1 << ST_CAPT_ISP_STREAM);
  84. if (suspend)
  85. fimc->state |= (1 << ST_CAPT_SUSPENDED);
  86. else
  87. fimc->state &= ~(1 << ST_CAPT_PEND | 1 << ST_CAPT_SUSPENDED);
  88. /* Release unused buffers */
  89. while (!suspend && !list_empty(&cap->pending_buf_q)) {
  90. buf = fimc_pending_queue_pop(cap);
  91. vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
  92. }
  93. /* If suspending put unused buffers onto pending queue */
  94. while (!list_empty(&cap->active_buf_q)) {
  95. buf = fimc_active_queue_pop(cap);
  96. if (suspend)
  97. fimc_pending_queue_add(cap, buf);
  98. else
  99. vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
  100. }
  101. fimc_hw_reset(fimc);
  102. cap->buf_index = 0;
  103. spin_unlock_irqrestore(&fimc->slock, flags);
  104. if (streaming)
  105. return fimc_pipeline_call(fimc, set_stream,
  106. &fimc->pipeline, 0);
  107. else
  108. return 0;
  109. }
  110. static int fimc_stop_capture(struct fimc_dev *fimc, bool suspend)
  111. {
  112. unsigned long flags;
  113. if (!fimc_capture_active(fimc))
  114. return 0;
  115. spin_lock_irqsave(&fimc->slock, flags);
  116. set_bit(ST_CAPT_SHUT, &fimc->state);
  117. fimc_deactivate_capture(fimc);
  118. spin_unlock_irqrestore(&fimc->slock, flags);
  119. wait_event_timeout(fimc->irq_queue,
  120. !test_bit(ST_CAPT_SHUT, &fimc->state),
  121. (2*HZ/10)); /* 200 ms */
  122. return fimc_capture_state_cleanup(fimc, suspend);
  123. }
  124. /**
  125. * fimc_capture_config_update - apply the camera interface configuration
  126. *
  127. * To be called from within the interrupt handler with fimc.slock
  128. * spinlock held. It updates the camera pixel crop, rotation and
  129. * image flip in H/W.
  130. */
  131. static int fimc_capture_config_update(struct fimc_ctx *ctx)
  132. {
  133. struct fimc_dev *fimc = ctx->fimc_dev;
  134. int ret;
  135. fimc_hw_set_camera_offset(fimc, &ctx->s_frame);
  136. ret = fimc_set_scaler_info(ctx);
  137. if (ret)
  138. return ret;
  139. fimc_hw_set_prescaler(ctx);
  140. fimc_hw_set_mainscaler(ctx);
  141. fimc_hw_set_target_format(ctx);
  142. fimc_hw_set_rotation(ctx);
  143. fimc_hw_set_effect(ctx);
  144. fimc_prepare_dma_offset(ctx, &ctx->d_frame);
  145. fimc_hw_set_out_dma(ctx);
  146. if (fimc->variant->has_alpha)
  147. fimc_hw_set_rgb_alpha(ctx);
  148. clear_bit(ST_CAPT_APPLY_CFG, &fimc->state);
  149. return ret;
  150. }
  151. void fimc_capture_irq_handler(struct fimc_dev *fimc, int deq_buf)
  152. {
  153. struct v4l2_subdev *csis = fimc->pipeline.subdevs[IDX_CSIS];
  154. struct fimc_vid_cap *cap = &fimc->vid_cap;
  155. struct fimc_frame *f = &cap->ctx->d_frame;
  156. struct fimc_vid_buffer *v_buf;
  157. struct timeval *tv;
  158. struct timespec ts;
  159. if (test_and_clear_bit(ST_CAPT_SHUT, &fimc->state)) {
  160. wake_up(&fimc->irq_queue);
  161. goto done;
  162. }
  163. if (!list_empty(&cap->active_buf_q) &&
  164. test_bit(ST_CAPT_RUN, &fimc->state) && deq_buf) {
  165. ktime_get_real_ts(&ts);
  166. v_buf = fimc_active_queue_pop(cap);
  167. tv = &v_buf->vb.v4l2_buf.timestamp;
  168. tv->tv_sec = ts.tv_sec;
  169. tv->tv_usec = ts.tv_nsec / NSEC_PER_USEC;
  170. v_buf->vb.v4l2_buf.sequence = cap->frame_count++;
  171. vb2_buffer_done(&v_buf->vb, VB2_BUF_STATE_DONE);
  172. }
  173. if (!list_empty(&cap->pending_buf_q)) {
  174. v_buf = fimc_pending_queue_pop(cap);
  175. fimc_hw_set_output_addr(fimc, &v_buf->paddr, cap->buf_index);
  176. v_buf->index = cap->buf_index;
  177. /* Move the buffer to the capture active queue */
  178. fimc_active_queue_add(cap, v_buf);
  179. dbg("next frame: %d, done frame: %d",
  180. fimc_hw_get_frame_index(fimc), v_buf->index);
  181. if (++cap->buf_index >= FIMC_MAX_OUT_BUFS)
  182. cap->buf_index = 0;
  183. }
  184. /*
  185. * Set up a buffer at MIPI-CSIS if current image format
  186. * requires the frame embedded data capture.
  187. */
  188. if (f->fmt->mdataplanes && !list_empty(&cap->active_buf_q)) {
  189. unsigned int plane = ffs(f->fmt->mdataplanes) - 1;
  190. unsigned int size = f->payload[plane];
  191. s32 index = fimc_hw_get_frame_index(fimc);
  192. void *vaddr;
  193. list_for_each_entry(v_buf, &cap->active_buf_q, list) {
  194. if (v_buf->index != index)
  195. continue;
  196. vaddr = vb2_plane_vaddr(&v_buf->vb, plane);
  197. v4l2_subdev_call(csis, video, s_rx_buffer,
  198. vaddr, &size);
  199. break;
  200. }
  201. }
  202. if (cap->active_buf_cnt == 0) {
  203. if (deq_buf)
  204. clear_bit(ST_CAPT_RUN, &fimc->state);
  205. if (++cap->buf_index >= FIMC_MAX_OUT_BUFS)
  206. cap->buf_index = 0;
  207. } else {
  208. set_bit(ST_CAPT_RUN, &fimc->state);
  209. }
  210. if (test_bit(ST_CAPT_APPLY_CFG, &fimc->state))
  211. fimc_capture_config_update(cap->ctx);
  212. done:
  213. if (cap->active_buf_cnt == 1) {
  214. fimc_deactivate_capture(fimc);
  215. clear_bit(ST_CAPT_STREAM, &fimc->state);
  216. }
  217. dbg("frame: %d, active_buf_cnt: %d",
  218. fimc_hw_get_frame_index(fimc), cap->active_buf_cnt);
  219. }
  220. static int start_streaming(struct vb2_queue *q, unsigned int count)
  221. {
  222. struct fimc_ctx *ctx = q->drv_priv;
  223. struct fimc_dev *fimc = ctx->fimc_dev;
  224. struct fimc_vid_cap *vid_cap = &fimc->vid_cap;
  225. int min_bufs;
  226. int ret;
  227. vid_cap->frame_count = 0;
  228. ret = fimc_capture_hw_init(fimc);
  229. if (ret) {
  230. fimc_capture_state_cleanup(fimc, false);
  231. return ret;
  232. }
  233. set_bit(ST_CAPT_PEND, &fimc->state);
  234. min_bufs = fimc->vid_cap.reqbufs_count > 1 ? 2 : 1;
  235. if (vid_cap->active_buf_cnt >= min_bufs &&
  236. !test_and_set_bit(ST_CAPT_STREAM, &fimc->state)) {
  237. fimc_activate_capture(ctx);
  238. if (!test_and_set_bit(ST_CAPT_ISP_STREAM, &fimc->state))
  239. fimc_pipeline_call(fimc, set_stream,
  240. &fimc->pipeline, 1);
  241. }
  242. return 0;
  243. }
  244. static int stop_streaming(struct vb2_queue *q)
  245. {
  246. struct fimc_ctx *ctx = q->drv_priv;
  247. struct fimc_dev *fimc = ctx->fimc_dev;
  248. if (!fimc_capture_active(fimc))
  249. return -EINVAL;
  250. return fimc_stop_capture(fimc, false);
  251. }
  252. int fimc_capture_suspend(struct fimc_dev *fimc)
  253. {
  254. bool suspend = fimc_capture_busy(fimc);
  255. int ret = fimc_stop_capture(fimc, suspend);
  256. if (ret)
  257. return ret;
  258. return fimc_pipeline_call(fimc, close, &fimc->pipeline);
  259. }
  260. static void buffer_queue(struct vb2_buffer *vb);
  261. int fimc_capture_resume(struct fimc_dev *fimc)
  262. {
  263. struct fimc_vid_cap *vid_cap = &fimc->vid_cap;
  264. struct fimc_vid_buffer *buf;
  265. int i;
  266. if (!test_and_clear_bit(ST_CAPT_SUSPENDED, &fimc->state))
  267. return 0;
  268. INIT_LIST_HEAD(&fimc->vid_cap.active_buf_q);
  269. vid_cap->buf_index = 0;
  270. fimc_pipeline_call(fimc, open, &fimc->pipeline,
  271. &vid_cap->vfd.entity, false);
  272. fimc_capture_hw_init(fimc);
  273. clear_bit(ST_CAPT_SUSPENDED, &fimc->state);
  274. for (i = 0; i < vid_cap->reqbufs_count; i++) {
  275. if (list_empty(&vid_cap->pending_buf_q))
  276. break;
  277. buf = fimc_pending_queue_pop(vid_cap);
  278. buffer_queue(&buf->vb);
  279. }
  280. return 0;
  281. }
  282. static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *pfmt,
  283. unsigned int *num_buffers, unsigned int *num_planes,
  284. unsigned int sizes[], void *allocators[])
  285. {
  286. const struct v4l2_pix_format_mplane *pixm = NULL;
  287. struct fimc_ctx *ctx = vq->drv_priv;
  288. struct fimc_frame *frame = &ctx->d_frame;
  289. struct fimc_fmt *fmt = frame->fmt;
  290. unsigned long wh;
  291. int i;
  292. if (pfmt) {
  293. pixm = &pfmt->fmt.pix_mp;
  294. fmt = fimc_find_format(&pixm->pixelformat, NULL,
  295. FMT_FLAGS_CAM | FMT_FLAGS_M2M, -1);
  296. wh = pixm->width * pixm->height;
  297. } else {
  298. wh = frame->f_width * frame->f_height;
  299. }
  300. if (fmt == NULL)
  301. return -EINVAL;
  302. *num_planes = fmt->memplanes;
  303. for (i = 0; i < fmt->memplanes; i++) {
  304. unsigned int size = (wh * fmt->depth[i]) / 8;
  305. if (pixm)
  306. sizes[i] = max(size, pixm->plane_fmt[i].sizeimage);
  307. else if (fimc_fmt_is_user_defined(fmt->color))
  308. sizes[i] = frame->payload[i];
  309. else
  310. sizes[i] = max_t(u32, size, frame->payload[i]);
  311. allocators[i] = ctx->fimc_dev->alloc_ctx;
  312. }
  313. return 0;
  314. }
  315. static int buffer_prepare(struct vb2_buffer *vb)
  316. {
  317. struct vb2_queue *vq = vb->vb2_queue;
  318. struct fimc_ctx *ctx = vq->drv_priv;
  319. int i;
  320. if (ctx->d_frame.fmt == NULL)
  321. return -EINVAL;
  322. for (i = 0; i < ctx->d_frame.fmt->memplanes; i++) {
  323. unsigned long size = ctx->d_frame.payload[i];
  324. if (vb2_plane_size(vb, i) < size) {
  325. v4l2_err(&ctx->fimc_dev->vid_cap.vfd,
  326. "User buffer too small (%ld < %ld)\n",
  327. vb2_plane_size(vb, i), size);
  328. return -EINVAL;
  329. }
  330. vb2_set_plane_payload(vb, i, size);
  331. }
  332. return 0;
  333. }
  334. static void buffer_queue(struct vb2_buffer *vb)
  335. {
  336. struct fimc_vid_buffer *buf
  337. = container_of(vb, struct fimc_vid_buffer, vb);
  338. struct fimc_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
  339. struct fimc_dev *fimc = ctx->fimc_dev;
  340. struct fimc_vid_cap *vid_cap = &fimc->vid_cap;
  341. unsigned long flags;
  342. int min_bufs;
  343. spin_lock_irqsave(&fimc->slock, flags);
  344. fimc_prepare_addr(ctx, &buf->vb, &ctx->d_frame, &buf->paddr);
  345. if (!test_bit(ST_CAPT_SUSPENDED, &fimc->state) &&
  346. !test_bit(ST_CAPT_STREAM, &fimc->state) &&
  347. vid_cap->active_buf_cnt < FIMC_MAX_OUT_BUFS) {
  348. /* Setup the buffer directly for processing. */
  349. int buf_id = (vid_cap->reqbufs_count == 1) ? -1 :
  350. vid_cap->buf_index;
  351. fimc_hw_set_output_addr(fimc, &buf->paddr, buf_id);
  352. buf->index = vid_cap->buf_index;
  353. fimc_active_queue_add(vid_cap, buf);
  354. if (++vid_cap->buf_index >= FIMC_MAX_OUT_BUFS)
  355. vid_cap->buf_index = 0;
  356. } else {
  357. fimc_pending_queue_add(vid_cap, buf);
  358. }
  359. min_bufs = vid_cap->reqbufs_count > 1 ? 2 : 1;
  360. if (vb2_is_streaming(&vid_cap->vbq) &&
  361. vid_cap->active_buf_cnt >= min_bufs &&
  362. !test_and_set_bit(ST_CAPT_STREAM, &fimc->state)) {
  363. fimc_activate_capture(ctx);
  364. spin_unlock_irqrestore(&fimc->slock, flags);
  365. if (!test_and_set_bit(ST_CAPT_ISP_STREAM, &fimc->state))
  366. fimc_pipeline_call(fimc, set_stream,
  367. &fimc->pipeline, 1);
  368. return;
  369. }
  370. spin_unlock_irqrestore(&fimc->slock, flags);
  371. }
  372. static void fimc_lock(struct vb2_queue *vq)
  373. {
  374. struct fimc_ctx *ctx = vb2_get_drv_priv(vq);
  375. mutex_lock(&ctx->fimc_dev->lock);
  376. }
  377. static void fimc_unlock(struct vb2_queue *vq)
  378. {
  379. struct fimc_ctx *ctx = vb2_get_drv_priv(vq);
  380. mutex_unlock(&ctx->fimc_dev->lock);
  381. }
  382. static struct vb2_ops fimc_capture_qops = {
  383. .queue_setup = queue_setup,
  384. .buf_prepare = buffer_prepare,
  385. .buf_queue = buffer_queue,
  386. .wait_prepare = fimc_unlock,
  387. .wait_finish = fimc_lock,
  388. .start_streaming = start_streaming,
  389. .stop_streaming = stop_streaming,
  390. };
  391. /**
  392. * fimc_capture_ctrls_create - initialize the control handler
  393. * Initialize the capture video node control handler and fill it
  394. * with the FIMC controls. Inherit any sensor's controls if the
  395. * 'user_subdev_api' flag is false (default behaviour).
  396. * This function need to be called with the graph mutex held.
  397. */
  398. int fimc_capture_ctrls_create(struct fimc_dev *fimc)
  399. {
  400. struct fimc_vid_cap *vid_cap = &fimc->vid_cap;
  401. struct v4l2_subdev *sensor = fimc->pipeline.subdevs[IDX_SENSOR];
  402. int ret;
  403. if (WARN_ON(vid_cap->ctx == NULL))
  404. return -ENXIO;
  405. if (vid_cap->ctx->ctrls.ready)
  406. return 0;
  407. ret = fimc_ctrls_create(vid_cap->ctx);
  408. if (ret || vid_cap->user_subdev_api || !sensor ||
  409. !vid_cap->ctx->ctrls.ready)
  410. return ret;
  411. return v4l2_ctrl_add_handler(&vid_cap->ctx->ctrls.handler,
  412. sensor->ctrl_handler, NULL);
  413. }
  414. static int fimc_capture_set_default_format(struct fimc_dev *fimc);
  415. static int fimc_capture_open(struct file *file)
  416. {
  417. struct fimc_dev *fimc = video_drvdata(file);
  418. int ret = -EBUSY;
  419. dbg("pid: %d, state: 0x%lx", task_pid_nr(current), fimc->state);
  420. fimc_md_graph_lock(fimc);
  421. mutex_lock(&fimc->lock);
  422. if (fimc_m2m_active(fimc))
  423. goto unlock;
  424. set_bit(ST_CAPT_BUSY, &fimc->state);
  425. ret = pm_runtime_get_sync(&fimc->pdev->dev);
  426. if (ret < 0)
  427. goto unlock;
  428. ret = v4l2_fh_open(file);
  429. if (ret) {
  430. pm_runtime_put(&fimc->pdev->dev);
  431. goto unlock;
  432. }
  433. if (++fimc->vid_cap.refcnt == 1) {
  434. ret = fimc_pipeline_call(fimc, open, &fimc->pipeline,
  435. &fimc->vid_cap.vfd.entity, true);
  436. if (!ret && !fimc->vid_cap.user_subdev_api)
  437. ret = fimc_capture_set_default_format(fimc);
  438. if (!ret)
  439. ret = fimc_capture_ctrls_create(fimc);
  440. if (ret < 0) {
  441. clear_bit(ST_CAPT_BUSY, &fimc->state);
  442. pm_runtime_put_sync(&fimc->pdev->dev);
  443. fimc->vid_cap.refcnt--;
  444. v4l2_fh_release(file);
  445. }
  446. }
  447. unlock:
  448. mutex_unlock(&fimc->lock);
  449. fimc_md_graph_unlock(fimc);
  450. return ret;
  451. }
  452. static int fimc_capture_close(struct file *file)
  453. {
  454. struct fimc_dev *fimc = video_drvdata(file);
  455. int ret;
  456. dbg("pid: %d, state: 0x%lx", task_pid_nr(current), fimc->state);
  457. mutex_lock(&fimc->lock);
  458. if (--fimc->vid_cap.refcnt == 0) {
  459. clear_bit(ST_CAPT_BUSY, &fimc->state);
  460. fimc_stop_capture(fimc, false);
  461. fimc_pipeline_call(fimc, close, &fimc->pipeline);
  462. clear_bit(ST_CAPT_SUSPENDED, &fimc->state);
  463. }
  464. pm_runtime_put(&fimc->pdev->dev);
  465. if (fimc->vid_cap.refcnt == 0) {
  466. vb2_queue_release(&fimc->vid_cap.vbq);
  467. fimc_ctrls_delete(fimc->vid_cap.ctx);
  468. }
  469. ret = v4l2_fh_release(file);
  470. mutex_unlock(&fimc->lock);
  471. return ret;
  472. }
  473. static unsigned int fimc_capture_poll(struct file *file,
  474. struct poll_table_struct *wait)
  475. {
  476. struct fimc_dev *fimc = video_drvdata(file);
  477. int ret;
  478. if (mutex_lock_interruptible(&fimc->lock))
  479. return POLL_ERR;
  480. ret = vb2_poll(&fimc->vid_cap.vbq, file, wait);
  481. mutex_unlock(&fimc->lock);
  482. return ret;
  483. }
  484. static int fimc_capture_mmap(struct file *file, struct vm_area_struct *vma)
  485. {
  486. struct fimc_dev *fimc = video_drvdata(file);
  487. int ret;
  488. if (mutex_lock_interruptible(&fimc->lock))
  489. return -ERESTARTSYS;
  490. ret = vb2_mmap(&fimc->vid_cap.vbq, vma);
  491. mutex_unlock(&fimc->lock);
  492. return ret;
  493. }
  494. static const struct v4l2_file_operations fimc_capture_fops = {
  495. .owner = THIS_MODULE,
  496. .open = fimc_capture_open,
  497. .release = fimc_capture_close,
  498. .poll = fimc_capture_poll,
  499. .unlocked_ioctl = video_ioctl2,
  500. .mmap = fimc_capture_mmap,
  501. };
  502. /*
  503. * Format and crop negotiation helpers
  504. */
  505. static struct fimc_fmt *fimc_capture_try_format(struct fimc_ctx *ctx,
  506. u32 *width, u32 *height,
  507. u32 *code, u32 *fourcc, int pad)
  508. {
  509. bool rotation = ctx->rotation == 90 || ctx->rotation == 270;
  510. struct fimc_dev *fimc = ctx->fimc_dev;
  511. const struct fimc_variant *var = fimc->variant;
  512. const struct fimc_pix_limit *pl = var->pix_limit;
  513. struct fimc_frame *dst = &ctx->d_frame;
  514. u32 depth, min_w, max_w, min_h, align_h = 3;
  515. u32 mask = FMT_FLAGS_CAM;
  516. struct fimc_fmt *ffmt;
  517. /* Conversion from/to JPEG or User Defined format is not supported */
  518. if (code && ctx->s_frame.fmt && pad == FIMC_SD_PAD_SOURCE &&
  519. fimc_fmt_is_user_defined(ctx->s_frame.fmt->color))
  520. *code = ctx->s_frame.fmt->mbus_code;
  521. if (fourcc && *fourcc != V4L2_PIX_FMT_JPEG && pad != FIMC_SD_PAD_SINK)
  522. mask |= FMT_FLAGS_M2M;
  523. ffmt = fimc_find_format(fourcc, code, mask, 0);
  524. if (WARN_ON(!ffmt))
  525. return NULL;
  526. if (code)
  527. *code = ffmt->mbus_code;
  528. if (fourcc)
  529. *fourcc = ffmt->fourcc;
  530. if (pad == FIMC_SD_PAD_SINK) {
  531. max_w = fimc_fmt_is_user_defined(ffmt->color) ?
  532. pl->scaler_dis_w : pl->scaler_en_w;
  533. /* Apply the camera input interface pixel constraints */
  534. v4l_bound_align_image(width, max_t(u32, *width, 32), max_w, 4,
  535. height, max_t(u32, *height, 32),
  536. FIMC_CAMIF_MAX_HEIGHT,
  537. fimc_fmt_is_user_defined(ffmt->color) ?
  538. 3 : 1,
  539. 0);
  540. return ffmt;
  541. }
  542. /* Can't scale or crop in transparent (JPEG) transfer mode */
  543. if (fimc_fmt_is_user_defined(ffmt->color)) {
  544. *width = ctx->s_frame.f_width;
  545. *height = ctx->s_frame.f_height;
  546. return ffmt;
  547. }
  548. /* Apply the scaler and the output DMA constraints */
  549. max_w = rotation ? pl->out_rot_en_w : pl->out_rot_dis_w;
  550. if (ctx->state & FIMC_COMPOSE) {
  551. min_w = dst->offs_h + dst->width;
  552. min_h = dst->offs_v + dst->height;
  553. } else {
  554. min_w = var->min_out_pixsize;
  555. min_h = var->min_out_pixsize;
  556. }
  557. if (var->min_vsize_align == 1 && !rotation)
  558. align_h = fimc_fmt_is_rgb(ffmt->color) ? 0 : 1;
  559. depth = fimc_get_format_depth(ffmt);
  560. v4l_bound_align_image(width, min_w, max_w,
  561. ffs(var->min_out_pixsize) - 1,
  562. height, min_h, FIMC_CAMIF_MAX_HEIGHT,
  563. align_h,
  564. 64/(ALIGN(depth, 8)));
  565. dbg("pad%d: code: 0x%x, %dx%d. dst fmt: %dx%d",
  566. pad, code ? *code : 0, *width, *height,
  567. dst->f_width, dst->f_height);
  568. return ffmt;
  569. }
  570. static void fimc_capture_try_selection(struct fimc_ctx *ctx,
  571. struct v4l2_rect *r,
  572. int target)
  573. {
  574. bool rotate = ctx->rotation == 90 || ctx->rotation == 270;
  575. struct fimc_dev *fimc = ctx->fimc_dev;
  576. const struct fimc_variant *var = fimc->variant;
  577. const struct fimc_pix_limit *pl = var->pix_limit;
  578. struct fimc_frame *sink = &ctx->s_frame;
  579. u32 max_w, max_h, min_w = 0, min_h = 0, min_sz;
  580. u32 align_sz = 0, align_h = 4;
  581. u32 max_sc_h, max_sc_v;
  582. /* In JPEG transparent transfer mode cropping is not supported */
  583. if (fimc_fmt_is_user_defined(ctx->d_frame.fmt->color)) {
  584. r->width = sink->f_width;
  585. r->height = sink->f_height;
  586. r->left = r->top = 0;
  587. return;
  588. }
  589. if (target == V4L2_SEL_TGT_COMPOSE) {
  590. if (ctx->rotation != 90 && ctx->rotation != 270)
  591. align_h = 1;
  592. max_sc_h = min(SCALER_MAX_HRATIO, 1 << (ffs(sink->width) - 3));
  593. max_sc_v = min(SCALER_MAX_VRATIO, 1 << (ffs(sink->height) - 1));
  594. min_sz = var->min_out_pixsize;
  595. } else {
  596. u32 depth = fimc_get_format_depth(sink->fmt);
  597. align_sz = 64/ALIGN(depth, 8);
  598. min_sz = var->min_inp_pixsize;
  599. min_w = min_h = min_sz;
  600. max_sc_h = max_sc_v = 1;
  601. }
  602. /*
  603. * For the compose rectangle the following constraints must be met:
  604. * - it must fit in the sink pad format rectangle (f_width/f_height);
  605. * - maximum downscaling ratio is 64;
  606. * - maximum crop size depends if the rotator is used or not;
  607. * - the sink pad format width/height must be 4 multiple of the
  608. * prescaler ratios determined by sink pad size and source pad crop,
  609. * the prescaler ratio is returned by fimc_get_scaler_factor().
  610. */
  611. max_w = min_t(u32,
  612. rotate ? pl->out_rot_en_w : pl->out_rot_dis_w,
  613. rotate ? sink->f_height : sink->f_width);
  614. max_h = min_t(u32, FIMC_CAMIF_MAX_HEIGHT, sink->f_height);
  615. if (target == V4L2_SEL_TGT_COMPOSE) {
  616. min_w = min_t(u32, max_w, sink->f_width / max_sc_h);
  617. min_h = min_t(u32, max_h, sink->f_height / max_sc_v);
  618. if (rotate) {
  619. swap(max_sc_h, max_sc_v);
  620. swap(min_w, min_h);
  621. }
  622. }
  623. v4l_bound_align_image(&r->width, min_w, max_w, ffs(min_sz) - 1,
  624. &r->height, min_h, max_h, align_h,
  625. align_sz);
  626. /* Adjust left/top if crop/compose rectangle is out of bounds */
  627. r->left = clamp_t(u32, r->left, 0, sink->f_width - r->width);
  628. r->top = clamp_t(u32, r->top, 0, sink->f_height - r->height);
  629. r->left = round_down(r->left, var->hor_offs_align);
  630. dbg("target %#x: (%d,%d)/%dx%d, sink fmt: %dx%d",
  631. target, r->left, r->top, r->width, r->height,
  632. sink->f_width, sink->f_height);
  633. }
  634. /*
  635. * The video node ioctl operations
  636. */
  637. static int fimc_vidioc_querycap_capture(struct file *file, void *priv,
  638. struct v4l2_capability *cap)
  639. {
  640. struct fimc_dev *fimc = video_drvdata(file);
  641. strncpy(cap->driver, fimc->pdev->name, sizeof(cap->driver) - 1);
  642. strncpy(cap->card, fimc->pdev->name, sizeof(cap->card) - 1);
  643. cap->bus_info[0] = 0;
  644. cap->capabilities = V4L2_CAP_STREAMING | V4L2_CAP_VIDEO_CAPTURE_MPLANE;
  645. return 0;
  646. }
  647. static int fimc_cap_enum_fmt_mplane(struct file *file, void *priv,
  648. struct v4l2_fmtdesc *f)
  649. {
  650. struct fimc_fmt *fmt;
  651. fmt = fimc_find_format(NULL, NULL, FMT_FLAGS_CAM | FMT_FLAGS_M2M,
  652. f->index);
  653. if (!fmt)
  654. return -EINVAL;
  655. strncpy(f->description, fmt->name, sizeof(f->description) - 1);
  656. f->pixelformat = fmt->fourcc;
  657. if (fmt->fourcc == V4L2_MBUS_FMT_JPEG_1X8)
  658. f->flags |= V4L2_FMT_FLAG_COMPRESSED;
  659. return 0;
  660. }
  661. static struct media_entity *fimc_pipeline_get_head(struct media_entity *me)
  662. {
  663. struct media_pad *pad = &me->pads[0];
  664. while (!(pad->flags & MEDIA_PAD_FL_SOURCE)) {
  665. pad = media_entity_remote_source(pad);
  666. if (!pad)
  667. break;
  668. me = pad->entity;
  669. pad = &me->pads[0];
  670. }
  671. return me;
  672. }
  673. /**
  674. * fimc_pipeline_try_format - negotiate and/or set formats at pipeline
  675. * elements
  676. * @ctx: FIMC capture context
  677. * @tfmt: media bus format to try/set on subdevs
  678. * @fmt_id: fimc pixel format id corresponding to returned @tfmt (output)
  679. * @set: true to set format on subdevs, false to try only
  680. */
  681. static int fimc_pipeline_try_format(struct fimc_ctx *ctx,
  682. struct v4l2_mbus_framefmt *tfmt,
  683. struct fimc_fmt **fmt_id,
  684. bool set)
  685. {
  686. struct fimc_dev *fimc = ctx->fimc_dev;
  687. struct v4l2_subdev *sd = fimc->pipeline.subdevs[IDX_SENSOR];
  688. struct v4l2_subdev_format sfmt;
  689. struct v4l2_mbus_framefmt *mf = &sfmt.format;
  690. struct media_entity *me;
  691. struct fimc_fmt *ffmt;
  692. struct media_pad *pad;
  693. int ret, i = 1;
  694. u32 fcc;
  695. if (WARN_ON(!sd || !tfmt))
  696. return -EINVAL;
  697. memset(&sfmt, 0, sizeof(sfmt));
  698. sfmt.format = *tfmt;
  699. sfmt.which = set ? V4L2_SUBDEV_FORMAT_ACTIVE : V4L2_SUBDEV_FORMAT_TRY;
  700. me = fimc_pipeline_get_head(&sd->entity);
  701. while (1) {
  702. ffmt = fimc_find_format(NULL, mf->code != 0 ? &mf->code : NULL,
  703. FMT_FLAGS_CAM, i++);
  704. if (ffmt == NULL) {
  705. /*
  706. * Notify user-space if common pixel code for
  707. * host and sensor does not exist.
  708. */
  709. return -EINVAL;
  710. }
  711. mf->code = tfmt->code = ffmt->mbus_code;
  712. /* set format on all pipeline subdevs */
  713. while (me != &fimc->vid_cap.subdev.entity) {
  714. sd = media_entity_to_v4l2_subdev(me);
  715. sfmt.pad = 0;
  716. ret = v4l2_subdev_call(sd, pad, set_fmt, NULL, &sfmt);
  717. if (ret)
  718. return ret;
  719. if (me->pads[0].flags & MEDIA_PAD_FL_SINK) {
  720. sfmt.pad = me->num_pads - 1;
  721. mf->code = tfmt->code;
  722. ret = v4l2_subdev_call(sd, pad, set_fmt, NULL,
  723. &sfmt);
  724. if (ret)
  725. return ret;
  726. }
  727. pad = media_entity_remote_source(&me->pads[sfmt.pad]);
  728. if (!pad)
  729. return -EINVAL;
  730. me = pad->entity;
  731. }
  732. if (mf->code != tfmt->code)
  733. continue;
  734. fcc = ffmt->fourcc;
  735. tfmt->width = mf->width;
  736. tfmt->height = mf->height;
  737. ffmt = fimc_capture_try_format(ctx, &tfmt->width, &tfmt->height,
  738. NULL, &fcc, FIMC_SD_PAD_SINK);
  739. ffmt = fimc_capture_try_format(ctx, &tfmt->width, &tfmt->height,
  740. NULL, &fcc, FIMC_SD_PAD_SOURCE);
  741. if (ffmt && ffmt->mbus_code)
  742. mf->code = ffmt->mbus_code;
  743. if (mf->width != tfmt->width || mf->height != tfmt->height)
  744. continue;
  745. tfmt->code = mf->code;
  746. break;
  747. }
  748. if (fmt_id && ffmt)
  749. *fmt_id = ffmt;
  750. *tfmt = *mf;
  751. return 0;
  752. }
  753. /**
  754. * fimc_get_sensor_frame_desc - query the sensor for media bus frame parameters
  755. * @sensor: pointer to the sensor subdev
  756. * @plane_fmt: provides plane sizes corresponding to the frame layout entries
  757. * @try: true to set the frame parameters, false to query only
  758. *
  759. * This function is used by this driver only for compressed/blob data formats.
  760. */
  761. static int fimc_get_sensor_frame_desc(struct v4l2_subdev *sensor,
  762. struct v4l2_plane_pix_format *plane_fmt,
  763. unsigned int num_planes, bool try)
  764. {
  765. struct v4l2_mbus_frame_desc fd;
  766. int i, ret;
  767. int pad;
  768. for (i = 0; i < num_planes; i++)
  769. fd.entry[i].length = plane_fmt[i].sizeimage;
  770. pad = sensor->entity.num_pads - 1;
  771. if (try)
  772. ret = v4l2_subdev_call(sensor, pad, set_frame_desc, pad, &fd);
  773. else
  774. ret = v4l2_subdev_call(sensor, pad, get_frame_desc, pad, &fd);
  775. if (ret < 0)
  776. return ret;
  777. if (num_planes != fd.num_entries)
  778. return -EINVAL;
  779. for (i = 0; i < num_planes; i++)
  780. plane_fmt[i].sizeimage = fd.entry[i].length;
  781. if (fd.entry[0].length > FIMC_MAX_JPEG_BUF_SIZE) {
  782. v4l2_err(sensor->v4l2_dev, "Unsupported buffer size: %u\n",
  783. fd.entry[0].length);
  784. return -EINVAL;
  785. }
  786. return 0;
  787. }
  788. static int fimc_cap_g_fmt_mplane(struct file *file, void *fh,
  789. struct v4l2_format *f)
  790. {
  791. struct fimc_dev *fimc = video_drvdata(file);
  792. __fimc_get_format(&fimc->vid_cap.ctx->d_frame, f);
  793. return 0;
  794. }
  795. static int fimc_cap_try_fmt_mplane(struct file *file, void *fh,
  796. struct v4l2_format *f)
  797. {
  798. struct v4l2_pix_format_mplane *pix = &f->fmt.pix_mp;
  799. struct fimc_dev *fimc = video_drvdata(file);
  800. struct fimc_ctx *ctx = fimc->vid_cap.ctx;
  801. struct v4l2_mbus_framefmt mf;
  802. struct fimc_fmt *ffmt = NULL;
  803. int ret = 0;
  804. fimc_md_graph_lock(fimc);
  805. mutex_lock(&fimc->lock);
  806. if (fimc_jpeg_fourcc(pix->pixelformat)) {
  807. fimc_capture_try_format(ctx, &pix->width, &pix->height,
  808. NULL, &pix->pixelformat,
  809. FIMC_SD_PAD_SINK);
  810. ctx->s_frame.f_width = pix->width;
  811. ctx->s_frame.f_height = pix->height;
  812. }
  813. ffmt = fimc_capture_try_format(ctx, &pix->width, &pix->height,
  814. NULL, &pix->pixelformat,
  815. FIMC_SD_PAD_SOURCE);
  816. if (!ffmt) {
  817. ret = -EINVAL;
  818. goto unlock;
  819. }
  820. if (!fimc->vid_cap.user_subdev_api) {
  821. mf.width = pix->width;
  822. mf.height = pix->height;
  823. mf.code = ffmt->mbus_code;
  824. fimc_pipeline_try_format(ctx, &mf, &ffmt, false);
  825. pix->width = mf.width;
  826. pix->height = mf.height;
  827. if (ffmt)
  828. pix->pixelformat = ffmt->fourcc;
  829. }
  830. fimc_adjust_mplane_format(ffmt, pix->width, pix->height, pix);
  831. if (ffmt->flags & FMT_FLAGS_COMPRESSED)
  832. fimc_get_sensor_frame_desc(fimc->pipeline.subdevs[IDX_SENSOR],
  833. pix->plane_fmt, ffmt->memplanes, true);
  834. unlock:
  835. mutex_unlock(&fimc->lock);
  836. fimc_md_graph_unlock(fimc);
  837. return ret;
  838. }
  839. static void fimc_capture_mark_jpeg_xfer(struct fimc_ctx *ctx,
  840. enum fimc_color_fmt color)
  841. {
  842. bool jpeg = fimc_fmt_is_user_defined(color);
  843. ctx->scaler.enabled = !jpeg;
  844. fimc_ctrls_activate(ctx, !jpeg);
  845. if (jpeg)
  846. set_bit(ST_CAPT_JPEG, &ctx->fimc_dev->state);
  847. else
  848. clear_bit(ST_CAPT_JPEG, &ctx->fimc_dev->state);
  849. }
  850. static int __fimc_capture_set_format(struct fimc_dev *fimc,
  851. struct v4l2_format *f)
  852. {
  853. struct fimc_ctx *ctx = fimc->vid_cap.ctx;
  854. struct v4l2_pix_format_mplane *pix = &f->fmt.pix_mp;
  855. struct v4l2_mbus_framefmt *mf = &fimc->vid_cap.mf;
  856. struct fimc_frame *ff = &ctx->d_frame;
  857. struct fimc_fmt *s_fmt = NULL;
  858. int ret, i;
  859. if (vb2_is_busy(&fimc->vid_cap.vbq))
  860. return -EBUSY;
  861. /* Pre-configure format at camera interface input, for JPEG only */
  862. if (fimc_jpeg_fourcc(pix->pixelformat)) {
  863. fimc_capture_try_format(ctx, &pix->width, &pix->height,
  864. NULL, &pix->pixelformat,
  865. FIMC_SD_PAD_SINK);
  866. ctx->s_frame.f_width = pix->width;
  867. ctx->s_frame.f_height = pix->height;
  868. }
  869. /* Try the format at the scaler and the DMA output */
  870. ff->fmt = fimc_capture_try_format(ctx, &pix->width, &pix->height,
  871. NULL, &pix->pixelformat,
  872. FIMC_SD_PAD_SOURCE);
  873. if (!ff->fmt)
  874. return -EINVAL;
  875. /* Update RGB Alpha control state and value range */
  876. fimc_alpha_ctrl_update(ctx);
  877. /* Try to match format at the host and the sensor */
  878. if (!fimc->vid_cap.user_subdev_api) {
  879. mf->code = ff->fmt->mbus_code;
  880. mf->width = pix->width;
  881. mf->height = pix->height;
  882. ret = fimc_pipeline_try_format(ctx, mf, &s_fmt, true);
  883. if (ret)
  884. return ret;
  885. pix->width = mf->width;
  886. pix->height = mf->height;
  887. }
  888. fimc_adjust_mplane_format(ff->fmt, pix->width, pix->height, pix);
  889. if (ff->fmt->flags & FMT_FLAGS_COMPRESSED) {
  890. ret = fimc_get_sensor_frame_desc(fimc->pipeline.subdevs[IDX_SENSOR],
  891. pix->plane_fmt, ff->fmt->memplanes,
  892. true);
  893. if (ret < 0)
  894. return ret;
  895. }
  896. for (i = 0; i < ff->fmt->memplanes; i++) {
  897. ff->bytesperline[i] = pix->plane_fmt[i].bytesperline;
  898. ff->payload[i] = pix->plane_fmt[i].sizeimage;
  899. }
  900. set_frame_bounds(ff, pix->width, pix->height);
  901. /* Reset the composition rectangle if not yet configured */
  902. if (!(ctx->state & FIMC_COMPOSE))
  903. set_frame_crop(ff, 0, 0, pix->width, pix->height);
  904. fimc_capture_mark_jpeg_xfer(ctx, ff->fmt->color);
  905. /* Reset cropping and set format at the camera interface input */
  906. if (!fimc->vid_cap.user_subdev_api) {
  907. ctx->s_frame.fmt = s_fmt;
  908. set_frame_bounds(&ctx->s_frame, pix->width, pix->height);
  909. set_frame_crop(&ctx->s_frame, 0, 0, pix->width, pix->height);
  910. }
  911. return ret;
  912. }
  913. static int fimc_cap_s_fmt_mplane(struct file *file, void *priv,
  914. struct v4l2_format *f)
  915. {
  916. struct fimc_dev *fimc = video_drvdata(file);
  917. int ret;
  918. fimc_md_graph_lock(fimc);
  919. mutex_lock(&fimc->lock);
  920. /*
  921. * The graph is walked within __fimc_capture_set_format() to set
  922. * the format at subdevs thus the graph mutex needs to be held at
  923. * this point and acquired before the video mutex, to avoid AB-BA
  924. * deadlock when fimc_md_link_notify() is called by other thread.
  925. * Ideally the graph walking and setting format at the whole pipeline
  926. * should be removed from this driver and handled in userspace only.
  927. */
  928. ret = __fimc_capture_set_format(fimc, f);
  929. mutex_unlock(&fimc->lock);
  930. fimc_md_graph_unlock(fimc);
  931. return ret;
  932. }
  933. static int fimc_cap_enum_input(struct file *file, void *priv,
  934. struct v4l2_input *i)
  935. {
  936. struct fimc_dev *fimc = video_drvdata(file);
  937. struct v4l2_subdev *sd = fimc->pipeline.subdevs[IDX_SENSOR];
  938. if (i->index != 0)
  939. return -EINVAL;
  940. i->type = V4L2_INPUT_TYPE_CAMERA;
  941. if (sd)
  942. strlcpy(i->name, sd->name, sizeof(i->name));
  943. return 0;
  944. }
  945. static int fimc_cap_s_input(struct file *file, void *priv, unsigned int i)
  946. {
  947. return i == 0 ? i : -EINVAL;
  948. }
  949. static int fimc_cap_g_input(struct file *file, void *priv, unsigned int *i)
  950. {
  951. *i = 0;
  952. return 0;
  953. }
  954. /**
  955. * fimc_pipeline_validate - check for formats inconsistencies
  956. * between source and sink pad of each link
  957. *
  958. * Return 0 if all formats match or -EPIPE otherwise.
  959. */
  960. static int fimc_pipeline_validate(struct fimc_dev *fimc)
  961. {
  962. struct v4l2_subdev_format sink_fmt, src_fmt;
  963. struct fimc_vid_cap *vid_cap = &fimc->vid_cap;
  964. struct v4l2_subdev *sd;
  965. struct media_pad *pad;
  966. int ret;
  967. /* Start with the video capture node pad */
  968. pad = media_entity_remote_source(&vid_cap->vd_pad);
  969. if (pad == NULL)
  970. return -EPIPE;
  971. /* FIMC.{N} subdevice */
  972. sd = media_entity_to_v4l2_subdev(pad->entity);
  973. while (1) {
  974. /* Retrieve format at the sink pad */
  975. pad = &sd->entity.pads[0];
  976. if (!(pad->flags & MEDIA_PAD_FL_SINK))
  977. break;
  978. /* Don't call FIMC subdev operation to avoid nested locking */
  979. if (sd == &fimc->vid_cap.subdev) {
  980. struct fimc_frame *ff = &vid_cap->ctx->s_frame;
  981. sink_fmt.format.width = ff->f_width;
  982. sink_fmt.format.height = ff->f_height;
  983. sink_fmt.format.code = ff->fmt ? ff->fmt->mbus_code : 0;
  984. } else {
  985. sink_fmt.pad = pad->index;
  986. sink_fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE;
  987. ret = v4l2_subdev_call(sd, pad, get_fmt, NULL, &sink_fmt);
  988. if (ret < 0 && ret != -ENOIOCTLCMD)
  989. return -EPIPE;
  990. }
  991. /* Retrieve format at the source pad */
  992. pad = media_entity_remote_source(pad);
  993. if (pad == NULL ||
  994. media_entity_type(pad->entity) != MEDIA_ENT_T_V4L2_SUBDEV)
  995. break;
  996. sd = media_entity_to_v4l2_subdev(pad->entity);
  997. src_fmt.pad = pad->index;
  998. src_fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE;
  999. ret = v4l2_subdev_call(sd, pad, get_fmt, NULL, &src_fmt);
  1000. if (ret < 0 && ret != -ENOIOCTLCMD)
  1001. return -EPIPE;
  1002. if (src_fmt.format.width != sink_fmt.format.width ||
  1003. src_fmt.format.height != sink_fmt.format.height ||
  1004. src_fmt.format.code != sink_fmt.format.code)
  1005. return -EPIPE;
  1006. if (sd == fimc->pipeline.subdevs[IDX_SENSOR] &&
  1007. fimc_user_defined_mbus_fmt(src_fmt.format.code)) {
  1008. struct v4l2_plane_pix_format plane_fmt[FIMC_MAX_PLANES];
  1009. struct fimc_frame *frame = &vid_cap->ctx->d_frame;
  1010. unsigned int i;
  1011. ret = fimc_get_sensor_frame_desc(sd, plane_fmt,
  1012. frame->fmt->memplanes,
  1013. false);
  1014. if (ret < 0)
  1015. return -EPIPE;
  1016. for (i = 0; i < frame->fmt->memplanes; i++)
  1017. if (frame->payload[i] < plane_fmt[i].sizeimage)
  1018. return -EPIPE;
  1019. }
  1020. }
  1021. return 0;
  1022. }
  1023. static int fimc_cap_streamon(struct file *file, void *priv,
  1024. enum v4l2_buf_type type)
  1025. {
  1026. struct fimc_dev *fimc = video_drvdata(file);
  1027. struct fimc_pipeline *p = &fimc->pipeline;
  1028. struct v4l2_subdev *sd = p->subdevs[IDX_SENSOR];
  1029. int ret;
  1030. if (fimc_capture_active(fimc))
  1031. return -EBUSY;
  1032. ret = media_entity_pipeline_start(&sd->entity, p->m_pipeline);
  1033. if (ret < 0)
  1034. return ret;
  1035. if (fimc->vid_cap.user_subdev_api) {
  1036. ret = fimc_pipeline_validate(fimc);
  1037. if (ret < 0) {
  1038. media_entity_pipeline_stop(&sd->entity);
  1039. return ret;
  1040. }
  1041. }
  1042. return vb2_streamon(&fimc->vid_cap.vbq, type);
  1043. }
  1044. static int fimc_cap_streamoff(struct file *file, void *priv,
  1045. enum v4l2_buf_type type)
  1046. {
  1047. struct fimc_dev *fimc = video_drvdata(file);
  1048. struct v4l2_subdev *sd = fimc->pipeline.subdevs[IDX_SENSOR];
  1049. int ret;
  1050. ret = vb2_streamoff(&fimc->vid_cap.vbq, type);
  1051. if (ret == 0)
  1052. media_entity_pipeline_stop(&sd->entity);
  1053. return ret;
  1054. }
  1055. static int fimc_cap_reqbufs(struct file *file, void *priv,
  1056. struct v4l2_requestbuffers *reqbufs)
  1057. {
  1058. struct fimc_dev *fimc = video_drvdata(file);
  1059. int ret = vb2_reqbufs(&fimc->vid_cap.vbq, reqbufs);
  1060. if (!ret)
  1061. fimc->vid_cap.reqbufs_count = reqbufs->count;
  1062. return ret;
  1063. }
  1064. static int fimc_cap_querybuf(struct file *file, void *priv,
  1065. struct v4l2_buffer *buf)
  1066. {
  1067. struct fimc_dev *fimc = video_drvdata(file);
  1068. return vb2_querybuf(&fimc->vid_cap.vbq, buf);
  1069. }
  1070. static int fimc_cap_qbuf(struct file *file, void *priv,
  1071. struct v4l2_buffer *buf)
  1072. {
  1073. struct fimc_dev *fimc = video_drvdata(file);
  1074. return vb2_qbuf(&fimc->vid_cap.vbq, buf);
  1075. }
  1076. static int fimc_cap_expbuf(struct file *file, void *priv,
  1077. struct v4l2_exportbuffer *eb)
  1078. {
  1079. struct fimc_dev *fimc = video_drvdata(file);
  1080. return vb2_expbuf(&fimc->vid_cap.vbq, eb);
  1081. }
  1082. static int fimc_cap_dqbuf(struct file *file, void *priv,
  1083. struct v4l2_buffer *buf)
  1084. {
  1085. struct fimc_dev *fimc = video_drvdata(file);
  1086. return vb2_dqbuf(&fimc->vid_cap.vbq, buf, file->f_flags & O_NONBLOCK);
  1087. }
  1088. static int fimc_cap_create_bufs(struct file *file, void *priv,
  1089. struct v4l2_create_buffers *create)
  1090. {
  1091. struct fimc_dev *fimc = video_drvdata(file);
  1092. return vb2_create_bufs(&fimc->vid_cap.vbq, create);
  1093. }
  1094. static int fimc_cap_prepare_buf(struct file *file, void *priv,
  1095. struct v4l2_buffer *b)
  1096. {
  1097. struct fimc_dev *fimc = video_drvdata(file);
  1098. return vb2_prepare_buf(&fimc->vid_cap.vbq, b);
  1099. }
  1100. static int fimc_cap_g_selection(struct file *file, void *fh,
  1101. struct v4l2_selection *s)
  1102. {
  1103. struct fimc_dev *fimc = video_drvdata(file);
  1104. struct fimc_ctx *ctx = fimc->vid_cap.ctx;
  1105. struct fimc_frame *f = &ctx->s_frame;
  1106. if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
  1107. return -EINVAL;
  1108. switch (s->target) {
  1109. case V4L2_SEL_TGT_COMPOSE_DEFAULT:
  1110. case V4L2_SEL_TGT_COMPOSE_BOUNDS:
  1111. f = &ctx->d_frame;
  1112. case V4L2_SEL_TGT_CROP_BOUNDS:
  1113. case V4L2_SEL_TGT_CROP_DEFAULT:
  1114. s->r.left = 0;
  1115. s->r.top = 0;
  1116. s->r.width = f->o_width;
  1117. s->r.height = f->o_height;
  1118. return 0;
  1119. case V4L2_SEL_TGT_COMPOSE:
  1120. f = &ctx->d_frame;
  1121. case V4L2_SEL_TGT_CROP:
  1122. s->r.left = f->offs_h;
  1123. s->r.top = f->offs_v;
  1124. s->r.width = f->width;
  1125. s->r.height = f->height;
  1126. return 0;
  1127. }
  1128. return -EINVAL;
  1129. }
  1130. /* Return 1 if rectangle a is enclosed in rectangle b, or 0 otherwise. */
  1131. static int enclosed_rectangle(struct v4l2_rect *a, struct v4l2_rect *b)
  1132. {
  1133. if (a->left < b->left || a->top < b->top)
  1134. return 0;
  1135. if (a->left + a->width > b->left + b->width)
  1136. return 0;
  1137. if (a->top + a->height > b->top + b->height)
  1138. return 0;
  1139. return 1;
  1140. }
  1141. static int fimc_cap_s_selection(struct file *file, void *fh,
  1142. struct v4l2_selection *s)
  1143. {
  1144. struct fimc_dev *fimc = video_drvdata(file);
  1145. struct fimc_ctx *ctx = fimc->vid_cap.ctx;
  1146. struct v4l2_rect rect = s->r;
  1147. struct fimc_frame *f;
  1148. unsigned long flags;
  1149. if (s->type != V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
  1150. return -EINVAL;
  1151. if (s->target == V4L2_SEL_TGT_COMPOSE)
  1152. f = &ctx->d_frame;
  1153. else if (s->target == V4L2_SEL_TGT_CROP)
  1154. f = &ctx->s_frame;
  1155. else
  1156. return -EINVAL;
  1157. fimc_capture_try_selection(ctx, &rect, s->target);
  1158. if (s->flags & V4L2_SEL_FLAG_LE &&
  1159. !enclosed_rectangle(&rect, &s->r))
  1160. return -ERANGE;
  1161. if (s->flags & V4L2_SEL_FLAG_GE &&
  1162. !enclosed_rectangle(&s->r, &rect))
  1163. return -ERANGE;
  1164. s->r = rect;
  1165. spin_lock_irqsave(&fimc->slock, flags);
  1166. set_frame_crop(f, s->r.left, s->r.top, s->r.width,
  1167. s->r.height);
  1168. spin_unlock_irqrestore(&fimc->slock, flags);
  1169. set_bit(ST_CAPT_APPLY_CFG, &fimc->state);
  1170. return 0;
  1171. }
  1172. static const struct v4l2_ioctl_ops fimc_capture_ioctl_ops = {
  1173. .vidioc_querycap = fimc_vidioc_querycap_capture,
  1174. .vidioc_enum_fmt_vid_cap_mplane = fimc_cap_enum_fmt_mplane,
  1175. .vidioc_try_fmt_vid_cap_mplane = fimc_cap_try_fmt_mplane,
  1176. .vidioc_s_fmt_vid_cap_mplane = fimc_cap_s_fmt_mplane,
  1177. .vidioc_g_fmt_vid_cap_mplane = fimc_cap_g_fmt_mplane,
  1178. .vidioc_reqbufs = fimc_cap_reqbufs,
  1179. .vidioc_querybuf = fimc_cap_querybuf,
  1180. .vidioc_qbuf = fimc_cap_qbuf,
  1181. .vidioc_dqbuf = fimc_cap_dqbuf,
  1182. .vidioc_expbuf = fimc_cap_expbuf,
  1183. .vidioc_prepare_buf = fimc_cap_prepare_buf,
  1184. .vidioc_create_bufs = fimc_cap_create_bufs,
  1185. .vidioc_streamon = fimc_cap_streamon,
  1186. .vidioc_streamoff = fimc_cap_streamoff,
  1187. .vidioc_g_selection = fimc_cap_g_selection,
  1188. .vidioc_s_selection = fimc_cap_s_selection,
  1189. .vidioc_enum_input = fimc_cap_enum_input,
  1190. .vidioc_s_input = fimc_cap_s_input,
  1191. .vidioc_g_input = fimc_cap_g_input,
  1192. };
  1193. /* Capture subdev media entity operations */
  1194. static int fimc_link_setup(struct media_entity *entity,
  1195. const struct media_pad *local,
  1196. const struct media_pad *remote, u32 flags)
  1197. {
  1198. struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity);
  1199. struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
  1200. if (media_entity_type(remote->entity) != MEDIA_ENT_T_V4L2_SUBDEV)
  1201. return -EINVAL;
  1202. if (WARN_ON(fimc == NULL))
  1203. return 0;
  1204. dbg("%s --> %s, flags: 0x%x. input: 0x%x",
  1205. local->entity->name, remote->entity->name, flags,
  1206. fimc->vid_cap.input);
  1207. if (flags & MEDIA_LNK_FL_ENABLED) {
  1208. if (fimc->vid_cap.input != 0)
  1209. return -EBUSY;
  1210. fimc->vid_cap.input = sd->grp_id;
  1211. return 0;
  1212. }
  1213. fimc->vid_cap.input = 0;
  1214. return 0;
  1215. }
  1216. static const struct media_entity_operations fimc_sd_media_ops = {
  1217. .link_setup = fimc_link_setup,
  1218. };
  1219. /**
  1220. * fimc_sensor_notify - v4l2_device notification from a sensor subdev
  1221. * @sd: pointer to a subdev generating the notification
  1222. * @notification: the notification type, must be S5P_FIMC_TX_END_NOTIFY
  1223. * @arg: pointer to an u32 type integer that stores the frame payload value
  1224. *
  1225. * The End Of Frame notification sent by sensor subdev in its still capture
  1226. * mode. If there is only a single VSYNC generated by the sensor at the
  1227. * beginning of a frame transmission, FIMC does not issue the LastIrq
  1228. * (end of frame) interrupt. And this notification is used to complete the
  1229. * frame capture and returning a buffer to user-space. Subdev drivers should
  1230. * call this notification from their last 'End of frame capture' interrupt.
  1231. */
  1232. void fimc_sensor_notify(struct v4l2_subdev *sd, unsigned int notification,
  1233. void *arg)
  1234. {
  1235. struct fimc_sensor_info *sensor;
  1236. struct fimc_vid_buffer *buf;
  1237. struct fimc_md *fmd;
  1238. struct fimc_dev *fimc;
  1239. unsigned long flags;
  1240. if (sd == NULL)
  1241. return;
  1242. sensor = v4l2_get_subdev_hostdata(sd);
  1243. fmd = entity_to_fimc_mdev(&sd->entity);
  1244. spin_lock_irqsave(&fmd->slock, flags);
  1245. fimc = sensor ? sensor->host : NULL;
  1246. if (fimc && arg && notification == S5P_FIMC_TX_END_NOTIFY &&
  1247. test_bit(ST_CAPT_PEND, &fimc->state)) {
  1248. unsigned long irq_flags;
  1249. spin_lock_irqsave(&fimc->slock, irq_flags);
  1250. if (!list_empty(&fimc->vid_cap.active_buf_q)) {
  1251. buf = list_entry(fimc->vid_cap.active_buf_q.next,
  1252. struct fimc_vid_buffer, list);
  1253. vb2_set_plane_payload(&buf->vb, 0, *((u32 *)arg));
  1254. }
  1255. fimc_capture_irq_handler(fimc, 1);
  1256. fimc_deactivate_capture(fimc);
  1257. spin_unlock_irqrestore(&fimc->slock, irq_flags);
  1258. }
  1259. spin_unlock_irqrestore(&fmd->slock, flags);
  1260. }
  1261. static int fimc_subdev_enum_mbus_code(struct v4l2_subdev *sd,
  1262. struct v4l2_subdev_fh *fh,
  1263. struct v4l2_subdev_mbus_code_enum *code)
  1264. {
  1265. struct fimc_fmt *fmt;
  1266. fmt = fimc_find_format(NULL, NULL, FMT_FLAGS_CAM, code->index);
  1267. if (!fmt)
  1268. return -EINVAL;
  1269. code->code = fmt->mbus_code;
  1270. return 0;
  1271. }
  1272. static int fimc_subdev_get_fmt(struct v4l2_subdev *sd,
  1273. struct v4l2_subdev_fh *fh,
  1274. struct v4l2_subdev_format *fmt)
  1275. {
  1276. struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
  1277. struct fimc_ctx *ctx = fimc->vid_cap.ctx;
  1278. struct v4l2_mbus_framefmt *mf;
  1279. struct fimc_frame *ff;
  1280. if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
  1281. mf = v4l2_subdev_get_try_format(fh, fmt->pad);
  1282. fmt->format = *mf;
  1283. return 0;
  1284. }
  1285. mf = &fmt->format;
  1286. mf->colorspace = V4L2_COLORSPACE_JPEG;
  1287. ff = fmt->pad == FIMC_SD_PAD_SINK ? &ctx->s_frame : &ctx->d_frame;
  1288. mutex_lock(&fimc->lock);
  1289. /* The pixel code is same on both input and output pad */
  1290. if (!WARN_ON(ctx->s_frame.fmt == NULL))
  1291. mf->code = ctx->s_frame.fmt->mbus_code;
  1292. mf->width = ff->f_width;
  1293. mf->height = ff->f_height;
  1294. mutex_unlock(&fimc->lock);
  1295. return 0;
  1296. }
  1297. static int fimc_subdev_set_fmt(struct v4l2_subdev *sd,
  1298. struct v4l2_subdev_fh *fh,
  1299. struct v4l2_subdev_format *fmt)
  1300. {
  1301. struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
  1302. struct v4l2_mbus_framefmt *mf = &fmt->format;
  1303. struct fimc_ctx *ctx = fimc->vid_cap.ctx;
  1304. struct fimc_frame *ff;
  1305. struct fimc_fmt *ffmt;
  1306. dbg("pad%d: code: 0x%x, %dx%d",
  1307. fmt->pad, mf->code, mf->width, mf->height);
  1308. if (fmt->pad == FIMC_SD_PAD_SOURCE &&
  1309. vb2_is_busy(&fimc->vid_cap.vbq))
  1310. return -EBUSY;
  1311. mutex_lock(&fimc->lock);
  1312. ffmt = fimc_capture_try_format(ctx, &mf->width, &mf->height,
  1313. &mf->code, NULL, fmt->pad);
  1314. mutex_unlock(&fimc->lock);
  1315. mf->colorspace = V4L2_COLORSPACE_JPEG;
  1316. if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
  1317. mf = v4l2_subdev_get_try_format(fh, fmt->pad);
  1318. *mf = fmt->format;
  1319. return 0;
  1320. }
  1321. /* There must be a bug in the driver if this happens */
  1322. if (WARN_ON(ffmt == NULL))
  1323. return -EINVAL;
  1324. /* Update RGB Alpha control state and value range */
  1325. fimc_alpha_ctrl_update(ctx);
  1326. fimc_capture_mark_jpeg_xfer(ctx, ffmt->color);
  1327. ff = fmt->pad == FIMC_SD_PAD_SINK ?
  1328. &ctx->s_frame : &ctx->d_frame;
  1329. mutex_lock(&fimc->lock);
  1330. set_frame_bounds(ff, mf->width, mf->height);
  1331. fimc->vid_cap.mf = *mf;
  1332. ff->fmt = ffmt;
  1333. /* Reset the crop rectangle if required. */
  1334. if (!(fmt->pad == FIMC_SD_PAD_SOURCE && (ctx->state & FIMC_COMPOSE)))
  1335. set_frame_crop(ff, 0, 0, mf->width, mf->height);
  1336. if (fmt->pad == FIMC_SD_PAD_SINK)
  1337. ctx->state &= ~FIMC_COMPOSE;
  1338. mutex_unlock(&fimc->lock);
  1339. return 0;
  1340. }
  1341. static int fimc_subdev_get_selection(struct v4l2_subdev *sd,
  1342. struct v4l2_subdev_fh *fh,
  1343. struct v4l2_subdev_selection *sel)
  1344. {
  1345. struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
  1346. struct fimc_ctx *ctx = fimc->vid_cap.ctx;
  1347. struct fimc_frame *f = &ctx->s_frame;
  1348. struct v4l2_rect *r = &sel->r;
  1349. struct v4l2_rect *try_sel;
  1350. if (sel->pad != FIMC_SD_PAD_SINK)
  1351. return -EINVAL;
  1352. mutex_lock(&fimc->lock);
  1353. switch (sel->target) {
  1354. case V4L2_SEL_TGT_COMPOSE_BOUNDS:
  1355. f = &ctx->d_frame;
  1356. case V4L2_SEL_TGT_CROP_BOUNDS:
  1357. r->width = f->o_width;
  1358. r->height = f->o_height;
  1359. r->left = 0;
  1360. r->top = 0;
  1361. mutex_unlock(&fimc->lock);
  1362. return 0;
  1363. case V4L2_SEL_TGT_CROP:
  1364. try_sel = v4l2_subdev_get_try_crop(fh, sel->pad);
  1365. break;
  1366. case V4L2_SEL_TGT_COMPOSE:
  1367. try_sel = v4l2_subdev_get_try_compose(fh, sel->pad);
  1368. f = &ctx->d_frame;
  1369. break;
  1370. default:
  1371. mutex_unlock(&fimc->lock);
  1372. return -EINVAL;
  1373. }
  1374. if (sel->which == V4L2_SUBDEV_FORMAT_TRY) {
  1375. sel->r = *try_sel;
  1376. } else {
  1377. r->left = f->offs_h;
  1378. r->top = f->offs_v;
  1379. r->width = f->width;
  1380. r->height = f->height;
  1381. }
  1382. dbg("target %#x: l:%d, t:%d, %dx%d, f_w: %d, f_h: %d",
  1383. sel->pad, r->left, r->top, r->width, r->height,
  1384. f->f_width, f->f_height);
  1385. mutex_unlock(&fimc->lock);
  1386. return 0;
  1387. }
  1388. static int fimc_subdev_set_selection(struct v4l2_subdev *sd,
  1389. struct v4l2_subdev_fh *fh,
  1390. struct v4l2_subdev_selection *sel)
  1391. {
  1392. struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
  1393. struct fimc_ctx *ctx = fimc->vid_cap.ctx;
  1394. struct fimc_frame *f = &ctx->s_frame;
  1395. struct v4l2_rect *r = &sel->r;
  1396. struct v4l2_rect *try_sel;
  1397. unsigned long flags;
  1398. if (sel->pad != FIMC_SD_PAD_SINK)
  1399. return -EINVAL;
  1400. mutex_lock(&fimc->lock);
  1401. fimc_capture_try_selection(ctx, r, V4L2_SEL_TGT_CROP);
  1402. switch (sel->target) {
  1403. case V4L2_SEL_TGT_CROP:
  1404. try_sel = v4l2_subdev_get_try_crop(fh, sel->pad);
  1405. break;
  1406. case V4L2_SEL_TGT_COMPOSE:
  1407. try_sel = v4l2_subdev_get_try_compose(fh, sel->pad);
  1408. f = &ctx->d_frame;
  1409. break;
  1410. default:
  1411. mutex_unlock(&fimc->lock);
  1412. return -EINVAL;
  1413. }
  1414. if (sel->which == V4L2_SUBDEV_FORMAT_TRY) {
  1415. *try_sel = sel->r;
  1416. } else {
  1417. spin_lock_irqsave(&fimc->slock, flags);
  1418. set_frame_crop(f, r->left, r->top, r->width, r->height);
  1419. set_bit(ST_CAPT_APPLY_CFG, &fimc->state);
  1420. if (sel->target == V4L2_SEL_TGT_COMPOSE)
  1421. ctx->state |= FIMC_COMPOSE;
  1422. spin_unlock_irqrestore(&fimc->slock, flags);
  1423. }
  1424. dbg("target %#x: (%d,%d)/%dx%d", sel->target, r->left, r->top,
  1425. r->width, r->height);
  1426. mutex_unlock(&fimc->lock);
  1427. return 0;
  1428. }
  1429. static struct v4l2_subdev_pad_ops fimc_subdev_pad_ops = {
  1430. .enum_mbus_code = fimc_subdev_enum_mbus_code,
  1431. .get_selection = fimc_subdev_get_selection,
  1432. .set_selection = fimc_subdev_set_selection,
  1433. .get_fmt = fimc_subdev_get_fmt,
  1434. .set_fmt = fimc_subdev_set_fmt,
  1435. };
  1436. static struct v4l2_subdev_ops fimc_subdev_ops = {
  1437. .pad = &fimc_subdev_pad_ops,
  1438. };
  1439. /* Set default format at the sensor and host interface */
  1440. static int fimc_capture_set_default_format(struct fimc_dev *fimc)
  1441. {
  1442. struct v4l2_format fmt = {
  1443. .type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE,
  1444. .fmt.pix_mp = {
  1445. .width = 640,
  1446. .height = 480,
  1447. .pixelformat = V4L2_PIX_FMT_YUYV,
  1448. .field = V4L2_FIELD_NONE,
  1449. .colorspace = V4L2_COLORSPACE_JPEG,
  1450. },
  1451. };
  1452. return __fimc_capture_set_format(fimc, &fmt);
  1453. }
  1454. /* fimc->lock must be already initialized */
  1455. static int fimc_register_capture_device(struct fimc_dev *fimc,
  1456. struct v4l2_device *v4l2_dev)
  1457. {
  1458. struct video_device *vfd = &fimc->vid_cap.vfd;
  1459. struct fimc_vid_cap *vid_cap;
  1460. struct fimc_ctx *ctx;
  1461. struct vb2_queue *q;
  1462. int ret = -ENOMEM;
  1463. ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
  1464. if (!ctx)
  1465. return -ENOMEM;
  1466. ctx->fimc_dev = fimc;
  1467. ctx->in_path = FIMC_IO_CAMERA;
  1468. ctx->out_path = FIMC_IO_DMA;
  1469. ctx->state = FIMC_CTX_CAP;
  1470. ctx->s_frame.fmt = fimc_find_format(NULL, NULL, FMT_FLAGS_CAM, 0);
  1471. ctx->d_frame.fmt = ctx->s_frame.fmt;
  1472. memset(vfd, 0, sizeof(*vfd));
  1473. snprintf(vfd->name, sizeof(vfd->name), "fimc.%d.capture", fimc->id);
  1474. vfd->fops = &fimc_capture_fops;
  1475. vfd->ioctl_ops = &fimc_capture_ioctl_ops;
  1476. vfd->v4l2_dev = v4l2_dev;
  1477. vfd->minor = -1;
  1478. vfd->release = video_device_release_empty;
  1479. vfd->lock = &fimc->lock;
  1480. video_set_drvdata(vfd, fimc);
  1481. vid_cap = &fimc->vid_cap;
  1482. vid_cap->active_buf_cnt = 0;
  1483. vid_cap->reqbufs_count = 0;
  1484. vid_cap->refcnt = 0;
  1485. INIT_LIST_HEAD(&vid_cap->pending_buf_q);
  1486. INIT_LIST_HEAD(&vid_cap->active_buf_q);
  1487. vid_cap->ctx = ctx;
  1488. q = &fimc->vid_cap.vbq;
  1489. memset(q, 0, sizeof(*q));
  1490. q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
  1491. q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF;
  1492. q->drv_priv = fimc->vid_cap.ctx;
  1493. q->ops = &fimc_capture_qops;
  1494. q->mem_ops = &vb2_dma_contig_memops;
  1495. q->buf_struct_size = sizeof(struct fimc_vid_buffer);
  1496. ret = vb2_queue_init(q);
  1497. if (ret)
  1498. goto err_ent;
  1499. vid_cap->vd_pad.flags = MEDIA_PAD_FL_SINK;
  1500. ret = media_entity_init(&vfd->entity, 1, &vid_cap->vd_pad, 0);
  1501. if (ret)
  1502. goto err_ent;
  1503. /*
  1504. * For proper order of acquiring/releasing the video
  1505. * and the graph mutex.
  1506. */
  1507. v4l2_disable_ioctl_locking(vfd, VIDIOC_TRY_FMT);
  1508. v4l2_disable_ioctl_locking(vfd, VIDIOC_S_FMT);
  1509. ret = video_register_device(vfd, VFL_TYPE_GRABBER, -1);
  1510. if (ret)
  1511. goto err_vd;
  1512. v4l2_info(v4l2_dev, "Registered %s as /dev/%s\n",
  1513. vfd->name, video_device_node_name(vfd));
  1514. vfd->ctrl_handler = &ctx->ctrls.handler;
  1515. return 0;
  1516. err_vd:
  1517. media_entity_cleanup(&vfd->entity);
  1518. err_ent:
  1519. kfree(ctx);
  1520. return ret;
  1521. }
  1522. static int fimc_capture_subdev_registered(struct v4l2_subdev *sd)
  1523. {
  1524. struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
  1525. int ret;
  1526. if (fimc == NULL)
  1527. return -ENXIO;
  1528. ret = fimc_register_m2m_device(fimc, sd->v4l2_dev);
  1529. if (ret)
  1530. return ret;
  1531. fimc->pipeline_ops = v4l2_get_subdev_hostdata(sd);
  1532. ret = fimc_register_capture_device(fimc, sd->v4l2_dev);
  1533. if (ret) {
  1534. fimc_unregister_m2m_device(fimc);
  1535. fimc->pipeline_ops = NULL;
  1536. }
  1537. return ret;
  1538. }
  1539. static void fimc_capture_subdev_unregistered(struct v4l2_subdev *sd)
  1540. {
  1541. struct fimc_dev *fimc = v4l2_get_subdevdata(sd);
  1542. if (fimc == NULL)
  1543. return;
  1544. fimc_unregister_m2m_device(fimc);
  1545. if (video_is_registered(&fimc->vid_cap.vfd)) {
  1546. video_unregister_device(&fimc->vid_cap.vfd);
  1547. media_entity_cleanup(&fimc->vid_cap.vfd.entity);
  1548. fimc->pipeline_ops = NULL;
  1549. }
  1550. kfree(fimc->vid_cap.ctx);
  1551. fimc->vid_cap.ctx = NULL;
  1552. }
  1553. static const struct v4l2_subdev_internal_ops fimc_capture_sd_internal_ops = {
  1554. .registered = fimc_capture_subdev_registered,
  1555. .unregistered = fimc_capture_subdev_unregistered,
  1556. };
  1557. int fimc_initialize_capture_subdev(struct fimc_dev *fimc)
  1558. {
  1559. struct v4l2_subdev *sd = &fimc->vid_cap.subdev;
  1560. int ret;
  1561. v4l2_subdev_init(sd, &fimc_subdev_ops);
  1562. sd->flags = V4L2_SUBDEV_FL_HAS_DEVNODE;
  1563. snprintf(sd->name, sizeof(sd->name), "FIMC.%d", fimc->pdev->id);
  1564. fimc->vid_cap.sd_pads[FIMC_SD_PAD_SINK].flags = MEDIA_PAD_FL_SINK;
  1565. fimc->vid_cap.sd_pads[FIMC_SD_PAD_SOURCE].flags = MEDIA_PAD_FL_SOURCE;
  1566. ret = media_entity_init(&sd->entity, FIMC_SD_PADS_NUM,
  1567. fimc->vid_cap.sd_pads, 0);
  1568. if (ret)
  1569. return ret;
  1570. sd->entity.ops = &fimc_sd_media_ops;
  1571. sd->internal_ops = &fimc_capture_sd_internal_ops;
  1572. v4l2_set_subdevdata(sd, fimc);
  1573. return 0;
  1574. }
  1575. void fimc_unregister_capture_subdev(struct fimc_dev *fimc)
  1576. {
  1577. struct v4l2_subdev *sd = &fimc->vid_cap.subdev;
  1578. v4l2_device_unregister_subdev(sd);
  1579. media_entity_cleanup(&sd->entity);
  1580. v4l2_set_subdevdata(sd, NULL);
  1581. }