mx2_camera.c 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899
  1. /*
  2. * V4L2 Driver for i.MX27/i.MX25 camera host
  3. *
  4. * Copyright (C) 2008, Sascha Hauer, Pengutronix
  5. * Copyright (C) 2010, Baruch Siach, Orex Computed Radiography
  6. * Copyright (C) 2012, Javier Martin, Vista Silicon S.L.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. */
  13. #include <linux/init.h>
  14. #include <linux/module.h>
  15. #include <linux/io.h>
  16. #include <linux/delay.h>
  17. #include <linux/slab.h>
  18. #include <linux/dma-mapping.h>
  19. #include <linux/errno.h>
  20. #include <linux/fs.h>
  21. #include <linux/gcd.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/kernel.h>
  24. #include <linux/mm.h>
  25. #include <linux/moduleparam.h>
  26. #include <linux/time.h>
  27. #include <linux/device.h>
  28. #include <linux/platform_device.h>
  29. #include <linux/mutex.h>
  30. #include <linux/clk.h>
  31. #include <media/v4l2-common.h>
  32. #include <media/v4l2-dev.h>
  33. #include <media/videobuf2-core.h>
  34. #include <media/videobuf2-dma-contig.h>
  35. #include <media/soc_camera.h>
  36. #include <media/soc_mediabus.h>
  37. #include <linux/videodev2.h>
  38. #include <mach/mx2_cam.h>
  39. #include <mach/hardware.h>
  40. #include <asm/dma.h>
  41. #define MX2_CAM_DRV_NAME "mx2-camera"
  42. #define MX2_CAM_VERSION "0.0.6"
  43. #define MX2_CAM_DRIVER_DESCRIPTION "i.MX2x_Camera"
  44. /* reset values */
  45. #define CSICR1_RESET_VAL 0x40000800
  46. #define CSICR2_RESET_VAL 0x0
  47. #define CSICR3_RESET_VAL 0x0
  48. /* csi control reg 1 */
  49. #define CSICR1_SWAP16_EN (1 << 31)
  50. #define CSICR1_EXT_VSYNC (1 << 30)
  51. #define CSICR1_EOF_INTEN (1 << 29)
  52. #define CSICR1_PRP_IF_EN (1 << 28)
  53. #define CSICR1_CCIR_MODE (1 << 27)
  54. #define CSICR1_COF_INTEN (1 << 26)
  55. #define CSICR1_SF_OR_INTEN (1 << 25)
  56. #define CSICR1_RF_OR_INTEN (1 << 24)
  57. #define CSICR1_STATFF_LEVEL (3 << 22)
  58. #define CSICR1_STATFF_INTEN (1 << 21)
  59. #define CSICR1_RXFF_LEVEL(l) (((l) & 3) << 19) /* MX27 */
  60. #define CSICR1_FB2_DMA_INTEN (1 << 20) /* MX25 */
  61. #define CSICR1_FB1_DMA_INTEN (1 << 19) /* MX25 */
  62. #define CSICR1_RXFF_INTEN (1 << 18)
  63. #define CSICR1_SOF_POL (1 << 17)
  64. #define CSICR1_SOF_INTEN (1 << 16)
  65. #define CSICR1_MCLKDIV(d) (((d) & 0xF) << 12)
  66. #define CSICR1_HSYNC_POL (1 << 11)
  67. #define CSICR1_CCIR_EN (1 << 10)
  68. #define CSICR1_MCLKEN (1 << 9)
  69. #define CSICR1_FCC (1 << 8)
  70. #define CSICR1_PACK_DIR (1 << 7)
  71. #define CSICR1_CLR_STATFIFO (1 << 6)
  72. #define CSICR1_CLR_RXFIFO (1 << 5)
  73. #define CSICR1_GCLK_MODE (1 << 4)
  74. #define CSICR1_INV_DATA (1 << 3)
  75. #define CSICR1_INV_PCLK (1 << 2)
  76. #define CSICR1_REDGE (1 << 1)
  77. #define SHIFT_STATFF_LEVEL 22
  78. #define SHIFT_RXFF_LEVEL 19
  79. #define SHIFT_MCLKDIV 12
  80. /* control reg 3 */
  81. #define CSICR3_FRMCNT (0xFFFF << 16)
  82. #define CSICR3_FRMCNT_RST (1 << 15)
  83. #define CSICR3_DMA_REFLASH_RFF (1 << 14)
  84. #define CSICR3_DMA_REFLASH_SFF (1 << 13)
  85. #define CSICR3_DMA_REQ_EN_RFF (1 << 12)
  86. #define CSICR3_DMA_REQ_EN_SFF (1 << 11)
  87. #define CSICR3_RXFF_LEVEL(l) (((l) & 7) << 4) /* MX25 */
  88. #define CSICR3_CSI_SUP (1 << 3)
  89. #define CSICR3_ZERO_PACK_EN (1 << 2)
  90. #define CSICR3_ECC_INT_EN (1 << 1)
  91. #define CSICR3_ECC_AUTO_EN (1 << 0)
  92. #define SHIFT_FRMCNT 16
  93. /* csi status reg */
  94. #define CSISR_SFF_OR_INT (1 << 25)
  95. #define CSISR_RFF_OR_INT (1 << 24)
  96. #define CSISR_STATFF_INT (1 << 21)
  97. #define CSISR_DMA_TSF_FB2_INT (1 << 20) /* MX25 */
  98. #define CSISR_DMA_TSF_FB1_INT (1 << 19) /* MX25 */
  99. #define CSISR_RXFF_INT (1 << 18)
  100. #define CSISR_EOF_INT (1 << 17)
  101. #define CSISR_SOF_INT (1 << 16)
  102. #define CSISR_F2_INT (1 << 15)
  103. #define CSISR_F1_INT (1 << 14)
  104. #define CSISR_COF_INT (1 << 13)
  105. #define CSISR_ECC_INT (1 << 1)
  106. #define CSISR_DRDY (1 << 0)
  107. #define CSICR1 0x00
  108. #define CSICR2 0x04
  109. #define CSISR (cpu_is_mx27() ? 0x08 : 0x18)
  110. #define CSISTATFIFO 0x0c
  111. #define CSIRFIFO 0x10
  112. #define CSIRXCNT 0x14
  113. #define CSICR3 (cpu_is_mx27() ? 0x1C : 0x08)
  114. #define CSIDMASA_STATFIFO 0x20
  115. #define CSIDMATA_STATFIFO 0x24
  116. #define CSIDMASA_FB1 0x28
  117. #define CSIDMASA_FB2 0x2c
  118. #define CSIFBUF_PARA 0x30
  119. #define CSIIMAG_PARA 0x34
  120. /* EMMA PrP */
  121. #define PRP_CNTL 0x00
  122. #define PRP_INTR_CNTL 0x04
  123. #define PRP_INTRSTATUS 0x08
  124. #define PRP_SOURCE_Y_PTR 0x0c
  125. #define PRP_SOURCE_CB_PTR 0x10
  126. #define PRP_SOURCE_CR_PTR 0x14
  127. #define PRP_DEST_RGB1_PTR 0x18
  128. #define PRP_DEST_RGB2_PTR 0x1c
  129. #define PRP_DEST_Y_PTR 0x20
  130. #define PRP_DEST_CB_PTR 0x24
  131. #define PRP_DEST_CR_PTR 0x28
  132. #define PRP_SRC_FRAME_SIZE 0x2c
  133. #define PRP_DEST_CH1_LINE_STRIDE 0x30
  134. #define PRP_SRC_PIXEL_FORMAT_CNTL 0x34
  135. #define PRP_CH1_PIXEL_FORMAT_CNTL 0x38
  136. #define PRP_CH1_OUT_IMAGE_SIZE 0x3c
  137. #define PRP_CH2_OUT_IMAGE_SIZE 0x40
  138. #define PRP_SRC_LINE_STRIDE 0x44
  139. #define PRP_CSC_COEF_012 0x48
  140. #define PRP_CSC_COEF_345 0x4c
  141. #define PRP_CSC_COEF_678 0x50
  142. #define PRP_CH1_RZ_HORI_COEF1 0x54
  143. #define PRP_CH1_RZ_HORI_COEF2 0x58
  144. #define PRP_CH1_RZ_HORI_VALID 0x5c
  145. #define PRP_CH1_RZ_VERT_COEF1 0x60
  146. #define PRP_CH1_RZ_VERT_COEF2 0x64
  147. #define PRP_CH1_RZ_VERT_VALID 0x68
  148. #define PRP_CH2_RZ_HORI_COEF1 0x6c
  149. #define PRP_CH2_RZ_HORI_COEF2 0x70
  150. #define PRP_CH2_RZ_HORI_VALID 0x74
  151. #define PRP_CH2_RZ_VERT_COEF1 0x78
  152. #define PRP_CH2_RZ_VERT_COEF2 0x7c
  153. #define PRP_CH2_RZ_VERT_VALID 0x80
  154. #define PRP_CNTL_CH1EN (1 << 0)
  155. #define PRP_CNTL_CH2EN (1 << 1)
  156. #define PRP_CNTL_CSIEN (1 << 2)
  157. #define PRP_CNTL_DATA_IN_YUV420 (0 << 3)
  158. #define PRP_CNTL_DATA_IN_YUV422 (1 << 3)
  159. #define PRP_CNTL_DATA_IN_RGB16 (2 << 3)
  160. #define PRP_CNTL_DATA_IN_RGB32 (3 << 3)
  161. #define PRP_CNTL_CH1_OUT_RGB8 (0 << 5)
  162. #define PRP_CNTL_CH1_OUT_RGB16 (1 << 5)
  163. #define PRP_CNTL_CH1_OUT_RGB32 (2 << 5)
  164. #define PRP_CNTL_CH1_OUT_YUV422 (3 << 5)
  165. #define PRP_CNTL_CH2_OUT_YUV420 (0 << 7)
  166. #define PRP_CNTL_CH2_OUT_YUV422 (1 << 7)
  167. #define PRP_CNTL_CH2_OUT_YUV444 (2 << 7)
  168. #define PRP_CNTL_CH1_LEN (1 << 9)
  169. #define PRP_CNTL_CH2_LEN (1 << 10)
  170. #define PRP_CNTL_SKIP_FRAME (1 << 11)
  171. #define PRP_CNTL_SWRST (1 << 12)
  172. #define PRP_CNTL_CLKEN (1 << 13)
  173. #define PRP_CNTL_WEN (1 << 14)
  174. #define PRP_CNTL_CH1BYP (1 << 15)
  175. #define PRP_CNTL_IN_TSKIP(x) ((x) << 16)
  176. #define PRP_CNTL_CH1_TSKIP(x) ((x) << 19)
  177. #define PRP_CNTL_CH2_TSKIP(x) ((x) << 22)
  178. #define PRP_CNTL_INPUT_FIFO_LEVEL(x) ((x) << 25)
  179. #define PRP_CNTL_RZ_FIFO_LEVEL(x) ((x) << 27)
  180. #define PRP_CNTL_CH2B1EN (1 << 29)
  181. #define PRP_CNTL_CH2B2EN (1 << 30)
  182. #define PRP_CNTL_CH2FEN (1 << 31)
  183. /* IRQ Enable and status register */
  184. #define PRP_INTR_RDERR (1 << 0)
  185. #define PRP_INTR_CH1WERR (1 << 1)
  186. #define PRP_INTR_CH2WERR (1 << 2)
  187. #define PRP_INTR_CH1FC (1 << 3)
  188. #define PRP_INTR_CH2FC (1 << 5)
  189. #define PRP_INTR_LBOVF (1 << 7)
  190. #define PRP_INTR_CH2OVF (1 << 8)
  191. /* Resizing registers */
  192. #define PRP_RZ_VALID_TBL_LEN(x) ((x) << 24)
  193. #define PRP_RZ_VALID_BILINEAR (1 << 31)
  194. #define MAX_VIDEO_MEM 16
  195. #define RESIZE_NUM_MIN 1
  196. #define RESIZE_NUM_MAX 20
  197. #define BC_COEF 3
  198. #define SZ_COEF (1 << BC_COEF)
  199. #define RESIZE_DIR_H 0
  200. #define RESIZE_DIR_V 1
  201. #define RESIZE_ALGO_BILINEAR 0
  202. #define RESIZE_ALGO_AVERAGING 1
  203. struct mx2_prp_cfg {
  204. int channel;
  205. u32 in_fmt;
  206. u32 out_fmt;
  207. u32 src_pixel;
  208. u32 ch1_pixel;
  209. u32 irq_flags;
  210. };
  211. /* prp resizing parameters */
  212. struct emma_prp_resize {
  213. int algo; /* type of algorithm used */
  214. int len; /* number of coefficients */
  215. unsigned char s[RESIZE_NUM_MAX]; /* table of coefficients */
  216. };
  217. /* prp configuration for a client-host fmt pair */
  218. struct mx2_fmt_cfg {
  219. enum v4l2_mbus_pixelcode in_fmt;
  220. u32 out_fmt;
  221. struct mx2_prp_cfg cfg;
  222. };
  223. enum mx2_buffer_state {
  224. MX2_STATE_QUEUED,
  225. MX2_STATE_ACTIVE,
  226. MX2_STATE_DONE,
  227. };
  228. struct mx2_buf_internal {
  229. struct list_head queue;
  230. int bufnum;
  231. bool discard;
  232. };
  233. /* buffer for one video frame */
  234. struct mx2_buffer {
  235. /* common v4l buffer stuff -- must be first */
  236. struct vb2_buffer vb;
  237. enum mx2_buffer_state state;
  238. struct mx2_buf_internal internal;
  239. };
  240. struct mx2_camera_dev {
  241. struct device *dev;
  242. struct soc_camera_host soc_host;
  243. struct soc_camera_device *icd;
  244. struct clk *clk_csi, *clk_emma;
  245. unsigned int irq_csi, irq_emma;
  246. void __iomem *base_csi, *base_emma;
  247. unsigned long base_dma;
  248. struct mx2_camera_platform_data *pdata;
  249. struct resource *res_csi, *res_emma;
  250. unsigned long platform_flags;
  251. struct list_head capture;
  252. struct list_head active_bufs;
  253. struct list_head discard;
  254. spinlock_t lock;
  255. int dma;
  256. struct mx2_buffer *active;
  257. struct mx2_buffer *fb1_active;
  258. struct mx2_buffer *fb2_active;
  259. u32 csicr1;
  260. struct mx2_buf_internal buf_discard[2];
  261. void *discard_buffer;
  262. dma_addr_t discard_buffer_dma;
  263. size_t discard_size;
  264. struct mx2_fmt_cfg *emma_prp;
  265. struct emma_prp_resize resizing[2];
  266. unsigned int s_width, s_height;
  267. u32 frame_count;
  268. struct vb2_alloc_ctx *alloc_ctx;
  269. };
  270. static struct mx2_buffer *mx2_ibuf_to_buf(struct mx2_buf_internal *int_buf)
  271. {
  272. return container_of(int_buf, struct mx2_buffer, internal);
  273. }
  274. static struct mx2_fmt_cfg mx27_emma_prp_table[] = {
  275. /*
  276. * This is a generic configuration which is valid for most
  277. * prp input-output format combinations.
  278. * We set the incomming and outgoing pixelformat to a
  279. * 16 Bit wide format and adjust the bytesperline
  280. * accordingly. With this configuration the inputdata
  281. * will not be changed by the emma and could be any type
  282. * of 16 Bit Pixelformat.
  283. */
  284. {
  285. .in_fmt = 0,
  286. .out_fmt = 0,
  287. .cfg = {
  288. .channel = 1,
  289. .in_fmt = PRP_CNTL_DATA_IN_RGB16,
  290. .out_fmt = PRP_CNTL_CH1_OUT_RGB16,
  291. .src_pixel = 0x2ca00565, /* RGB565 */
  292. .ch1_pixel = 0x2ca00565, /* RGB565 */
  293. .irq_flags = PRP_INTR_RDERR | PRP_INTR_CH1WERR |
  294. PRP_INTR_CH1FC | PRP_INTR_LBOVF,
  295. }
  296. },
  297. {
  298. .in_fmt = V4L2_MBUS_FMT_YUYV8_2X8,
  299. .out_fmt = V4L2_PIX_FMT_YUV420,
  300. .cfg = {
  301. .channel = 2,
  302. .in_fmt = PRP_CNTL_DATA_IN_YUV422,
  303. .out_fmt = PRP_CNTL_CH2_OUT_YUV420,
  304. .src_pixel = 0x22000888, /* YUV422 (YUYV) */
  305. .irq_flags = PRP_INTR_RDERR | PRP_INTR_CH2WERR |
  306. PRP_INTR_CH2FC | PRP_INTR_LBOVF |
  307. PRP_INTR_CH2OVF,
  308. }
  309. },
  310. {
  311. .in_fmt = V4L2_MBUS_FMT_UYVY8_2X8,
  312. .out_fmt = V4L2_PIX_FMT_YUV420,
  313. .cfg = {
  314. .channel = 2,
  315. .in_fmt = PRP_CNTL_DATA_IN_YUV422,
  316. .out_fmt = PRP_CNTL_CH2_OUT_YUV420,
  317. .src_pixel = 0x22000888, /* YUV422 (YUYV) */
  318. .irq_flags = PRP_INTR_RDERR | PRP_INTR_CH2WERR |
  319. PRP_INTR_CH2FC | PRP_INTR_LBOVF |
  320. PRP_INTR_CH2OVF,
  321. }
  322. },
  323. };
  324. static struct mx2_fmt_cfg *mx27_emma_prp_get_format(
  325. enum v4l2_mbus_pixelcode in_fmt,
  326. u32 out_fmt)
  327. {
  328. int i;
  329. for (i = 1; i < ARRAY_SIZE(mx27_emma_prp_table); i++)
  330. if ((mx27_emma_prp_table[i].in_fmt == in_fmt) &&
  331. (mx27_emma_prp_table[i].out_fmt == out_fmt)) {
  332. return &mx27_emma_prp_table[i];
  333. }
  334. /* If no match return the most generic configuration */
  335. return &mx27_emma_prp_table[0];
  336. };
  337. static void mx27_update_emma_buf(struct mx2_camera_dev *pcdev,
  338. unsigned long phys, int bufnum)
  339. {
  340. struct mx2_fmt_cfg *prp = pcdev->emma_prp;
  341. if (prp->cfg.channel == 1) {
  342. writel(phys, pcdev->base_emma +
  343. PRP_DEST_RGB1_PTR + 4 * bufnum);
  344. } else {
  345. writel(phys, pcdev->base_emma +
  346. PRP_DEST_Y_PTR - 0x14 * bufnum);
  347. if (prp->out_fmt == V4L2_PIX_FMT_YUV420) {
  348. u32 imgsize = pcdev->icd->user_height *
  349. pcdev->icd->user_width;
  350. writel(phys + imgsize, pcdev->base_emma +
  351. PRP_DEST_CB_PTR - 0x14 * bufnum);
  352. writel(phys + ((5 * imgsize) / 4), pcdev->base_emma +
  353. PRP_DEST_CR_PTR - 0x14 * bufnum);
  354. }
  355. }
  356. }
  357. static void mx2_camera_deactivate(struct mx2_camera_dev *pcdev)
  358. {
  359. unsigned long flags;
  360. clk_disable(pcdev->clk_csi);
  361. writel(0, pcdev->base_csi + CSICR1);
  362. if (cpu_is_mx27()) {
  363. writel(0, pcdev->base_emma + PRP_CNTL);
  364. } else if (cpu_is_mx25()) {
  365. spin_lock_irqsave(&pcdev->lock, flags);
  366. pcdev->fb1_active = NULL;
  367. pcdev->fb2_active = NULL;
  368. writel(0, pcdev->base_csi + CSIDMASA_FB1);
  369. writel(0, pcdev->base_csi + CSIDMASA_FB2);
  370. spin_unlock_irqrestore(&pcdev->lock, flags);
  371. }
  372. }
  373. /*
  374. * The following two functions absolutely depend on the fact, that
  375. * there can be only one camera on mx2 camera sensor interface
  376. */
  377. static int mx2_camera_add_device(struct soc_camera_device *icd)
  378. {
  379. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  380. struct mx2_camera_dev *pcdev = ici->priv;
  381. int ret;
  382. u32 csicr1;
  383. if (pcdev->icd)
  384. return -EBUSY;
  385. ret = clk_enable(pcdev->clk_csi);
  386. if (ret < 0)
  387. return ret;
  388. csicr1 = CSICR1_MCLKEN;
  389. if (cpu_is_mx27()) {
  390. csicr1 |= CSICR1_PRP_IF_EN | CSICR1_FCC |
  391. CSICR1_RXFF_LEVEL(0);
  392. } else if (cpu_is_mx27())
  393. csicr1 |= CSICR1_SOF_INTEN | CSICR1_RXFF_LEVEL(2);
  394. pcdev->csicr1 = csicr1;
  395. writel(pcdev->csicr1, pcdev->base_csi + CSICR1);
  396. pcdev->icd = icd;
  397. pcdev->frame_count = 0;
  398. dev_info(icd->parent, "Camera driver attached to camera %d\n",
  399. icd->devnum);
  400. return 0;
  401. }
  402. static void mx2_camera_remove_device(struct soc_camera_device *icd)
  403. {
  404. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  405. struct mx2_camera_dev *pcdev = ici->priv;
  406. BUG_ON(icd != pcdev->icd);
  407. dev_info(icd->parent, "Camera driver detached from camera %d\n",
  408. icd->devnum);
  409. mx2_camera_deactivate(pcdev);
  410. pcdev->icd = NULL;
  411. }
  412. static void mx25_camera_frame_done(struct mx2_camera_dev *pcdev, int fb,
  413. int state)
  414. {
  415. struct vb2_buffer *vb;
  416. struct mx2_buffer *buf;
  417. struct mx2_buffer **fb_active = fb == 1 ? &pcdev->fb1_active :
  418. &pcdev->fb2_active;
  419. u32 fb_reg = fb == 1 ? CSIDMASA_FB1 : CSIDMASA_FB2;
  420. unsigned long flags;
  421. spin_lock_irqsave(&pcdev->lock, flags);
  422. if (*fb_active == NULL)
  423. goto out;
  424. vb = &(*fb_active)->vb;
  425. dev_dbg(pcdev->dev, "%s (vb=0x%p) 0x%p %lu\n", __func__,
  426. vb, vb2_plane_vaddr(vb, 0), vb2_get_plane_payload(vb, 0));
  427. do_gettimeofday(&vb->v4l2_buf.timestamp);
  428. vb->v4l2_buf.sequence++;
  429. vb2_buffer_done(vb, VB2_BUF_STATE_DONE);
  430. if (list_empty(&pcdev->capture)) {
  431. buf = NULL;
  432. writel(0, pcdev->base_csi + fb_reg);
  433. } else {
  434. buf = list_first_entry(&pcdev->capture, struct mx2_buffer,
  435. internal.queue);
  436. vb = &buf->vb;
  437. list_del(&buf->internal.queue);
  438. buf->state = MX2_STATE_ACTIVE;
  439. writel(vb2_dma_contig_plane_dma_addr(vb, 0),
  440. pcdev->base_csi + fb_reg);
  441. }
  442. *fb_active = buf;
  443. out:
  444. spin_unlock_irqrestore(&pcdev->lock, flags);
  445. }
  446. static irqreturn_t mx25_camera_irq(int irq_csi, void *data)
  447. {
  448. struct mx2_camera_dev *pcdev = data;
  449. u32 status = readl(pcdev->base_csi + CSISR);
  450. if (status & CSISR_DMA_TSF_FB1_INT)
  451. mx25_camera_frame_done(pcdev, 1, MX2_STATE_DONE);
  452. else if (status & CSISR_DMA_TSF_FB2_INT)
  453. mx25_camera_frame_done(pcdev, 2, MX2_STATE_DONE);
  454. /* FIXME: handle CSISR_RFF_OR_INT */
  455. writel(status, pcdev->base_csi + CSISR);
  456. return IRQ_HANDLED;
  457. }
  458. /*
  459. * Videobuf operations
  460. */
  461. static int mx2_videobuf_setup(struct vb2_queue *vq,
  462. const struct v4l2_format *fmt,
  463. unsigned int *count, unsigned int *num_planes,
  464. unsigned int sizes[], void *alloc_ctxs[])
  465. {
  466. struct soc_camera_device *icd = soc_camera_from_vb2q(vq);
  467. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  468. struct mx2_camera_dev *pcdev = ici->priv;
  469. int bytes_per_line = soc_mbus_bytes_per_line(icd->user_width,
  470. icd->current_fmt->host_fmt);
  471. dev_dbg(icd->parent, "count=%d, size=%d\n", *count, sizes[0]);
  472. /* TODO: support for VIDIOC_CREATE_BUFS not ready */
  473. if (fmt != NULL)
  474. return -ENOTTY;
  475. if (bytes_per_line < 0)
  476. return bytes_per_line;
  477. alloc_ctxs[0] = pcdev->alloc_ctx;
  478. sizes[0] = bytes_per_line * icd->user_height;
  479. if (0 == *count)
  480. *count = 32;
  481. if (!*num_planes &&
  482. sizes[0] * *count > MAX_VIDEO_MEM * 1024 * 1024)
  483. *count = (MAX_VIDEO_MEM * 1024 * 1024) / sizes[0];
  484. *num_planes = 1;
  485. return 0;
  486. }
  487. static int mx2_videobuf_prepare(struct vb2_buffer *vb)
  488. {
  489. struct soc_camera_device *icd = soc_camera_from_vb2q(vb->vb2_queue);
  490. int bytes_per_line = soc_mbus_bytes_per_line(icd->user_width,
  491. icd->current_fmt->host_fmt);
  492. int ret = 0;
  493. dev_dbg(icd->parent, "%s (vb=0x%p) 0x%p %lu\n", __func__,
  494. vb, vb2_plane_vaddr(vb, 0), vb2_get_plane_payload(vb, 0));
  495. if (bytes_per_line < 0)
  496. return bytes_per_line;
  497. #ifdef DEBUG
  498. /*
  499. * This can be useful if you want to see if we actually fill
  500. * the buffer with something
  501. */
  502. memset((void *)vb2_plane_vaddr(vb, 0),
  503. 0xaa, vb2_get_plane_payload(vb, 0));
  504. #endif
  505. vb2_set_plane_payload(vb, 0, bytes_per_line * icd->user_height);
  506. if (vb2_plane_vaddr(vb, 0) &&
  507. vb2_get_plane_payload(vb, 0) > vb2_plane_size(vb, 0)) {
  508. ret = -EINVAL;
  509. goto out;
  510. }
  511. return 0;
  512. out:
  513. return ret;
  514. }
  515. static void mx2_videobuf_queue(struct vb2_buffer *vb)
  516. {
  517. struct soc_camera_device *icd = soc_camera_from_vb2q(vb->vb2_queue);
  518. struct soc_camera_host *ici =
  519. to_soc_camera_host(icd->parent);
  520. struct mx2_camera_dev *pcdev = ici->priv;
  521. struct mx2_buffer *buf = container_of(vb, struct mx2_buffer, vb);
  522. unsigned long flags;
  523. dev_dbg(icd->parent, "%s (vb=0x%p) 0x%p %lu\n", __func__,
  524. vb, vb2_plane_vaddr(vb, 0), vb2_get_plane_payload(vb, 0));
  525. spin_lock_irqsave(&pcdev->lock, flags);
  526. buf->state = MX2_STATE_QUEUED;
  527. list_add_tail(&buf->internal.queue, &pcdev->capture);
  528. if (cpu_is_mx25()) {
  529. u32 csicr3, dma_inten = 0;
  530. if (pcdev->fb1_active == NULL) {
  531. writel(vb2_dma_contig_plane_dma_addr(vb, 0),
  532. pcdev->base_csi + CSIDMASA_FB1);
  533. pcdev->fb1_active = buf;
  534. dma_inten = CSICR1_FB1_DMA_INTEN;
  535. } else if (pcdev->fb2_active == NULL) {
  536. writel(vb2_dma_contig_plane_dma_addr(vb, 0),
  537. pcdev->base_csi + CSIDMASA_FB2);
  538. pcdev->fb2_active = buf;
  539. dma_inten = CSICR1_FB2_DMA_INTEN;
  540. }
  541. if (dma_inten) {
  542. list_del(&buf->internal.queue);
  543. buf->state = MX2_STATE_ACTIVE;
  544. csicr3 = readl(pcdev->base_csi + CSICR3);
  545. /* Reflash DMA */
  546. writel(csicr3 | CSICR3_DMA_REFLASH_RFF,
  547. pcdev->base_csi + CSICR3);
  548. /* clear & enable interrupts */
  549. writel(dma_inten, pcdev->base_csi + CSISR);
  550. pcdev->csicr1 |= dma_inten;
  551. writel(pcdev->csicr1, pcdev->base_csi + CSICR1);
  552. /* enable DMA */
  553. csicr3 |= CSICR3_DMA_REQ_EN_RFF | CSICR3_RXFF_LEVEL(1);
  554. writel(csicr3, pcdev->base_csi + CSICR3);
  555. }
  556. }
  557. spin_unlock_irqrestore(&pcdev->lock, flags);
  558. }
  559. static void mx2_videobuf_release(struct vb2_buffer *vb)
  560. {
  561. struct soc_camera_device *icd = soc_camera_from_vb2q(vb->vb2_queue);
  562. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  563. struct mx2_camera_dev *pcdev = ici->priv;
  564. struct mx2_buffer *buf = container_of(vb, struct mx2_buffer, vb);
  565. unsigned long flags;
  566. #ifdef DEBUG
  567. dev_dbg(icd->parent, "%s (vb=0x%p) 0x%p %lu\n", __func__,
  568. vb, vb2_plane_vaddr(vb, 0), vb2_get_plane_payload(vb, 0));
  569. switch (buf->state) {
  570. case MX2_STATE_ACTIVE:
  571. dev_info(icd->parent, "%s (active)\n", __func__);
  572. break;
  573. case MX2_STATE_QUEUED:
  574. dev_info(icd->parent, "%s (queued)\n", __func__);
  575. break;
  576. default:
  577. dev_info(icd->parent, "%s (unknown) %d\n", __func__,
  578. buf->state);
  579. break;
  580. }
  581. #endif
  582. /*
  583. * Terminate only queued but inactive buffers. Active buffers are
  584. * released when they become inactive after videobuf_waiton().
  585. *
  586. * FIXME: implement forced termination of active buffers for mx27 and
  587. * mx27 eMMA, so that the user won't get stuck in an uninterruptible
  588. * state. This requires a specific handling for each of the these DMA
  589. * types.
  590. */
  591. spin_lock_irqsave(&pcdev->lock, flags);
  592. if (cpu_is_mx25() && buf->state == MX2_STATE_ACTIVE) {
  593. if (pcdev->fb1_active == buf) {
  594. pcdev->csicr1 &= ~CSICR1_FB1_DMA_INTEN;
  595. writel(0, pcdev->base_csi + CSIDMASA_FB1);
  596. pcdev->fb1_active = NULL;
  597. } else if (pcdev->fb2_active == buf) {
  598. pcdev->csicr1 &= ~CSICR1_FB2_DMA_INTEN;
  599. writel(0, pcdev->base_csi + CSIDMASA_FB2);
  600. pcdev->fb2_active = NULL;
  601. }
  602. writel(pcdev->csicr1, pcdev->base_csi + CSICR1);
  603. }
  604. spin_unlock_irqrestore(&pcdev->lock, flags);
  605. }
  606. static void mx27_camera_emma_buf_init(struct soc_camera_device *icd,
  607. int bytesperline)
  608. {
  609. struct soc_camera_host *ici =
  610. to_soc_camera_host(icd->parent);
  611. struct mx2_camera_dev *pcdev = ici->priv;
  612. struct mx2_fmt_cfg *prp = pcdev->emma_prp;
  613. writel((pcdev->s_width << 16) | pcdev->s_height,
  614. pcdev->base_emma + PRP_SRC_FRAME_SIZE);
  615. writel(prp->cfg.src_pixel,
  616. pcdev->base_emma + PRP_SRC_PIXEL_FORMAT_CNTL);
  617. if (prp->cfg.channel == 1) {
  618. writel((icd->user_width << 16) | icd->user_height,
  619. pcdev->base_emma + PRP_CH1_OUT_IMAGE_SIZE);
  620. writel(bytesperline,
  621. pcdev->base_emma + PRP_DEST_CH1_LINE_STRIDE);
  622. writel(prp->cfg.ch1_pixel,
  623. pcdev->base_emma + PRP_CH1_PIXEL_FORMAT_CNTL);
  624. } else { /* channel 2 */
  625. writel((icd->user_width << 16) | icd->user_height,
  626. pcdev->base_emma + PRP_CH2_OUT_IMAGE_SIZE);
  627. }
  628. /* Enable interrupts */
  629. writel(prp->cfg.irq_flags, pcdev->base_emma + PRP_INTR_CNTL);
  630. }
  631. static void mx2_prp_resize_commit(struct mx2_camera_dev *pcdev)
  632. {
  633. int dir;
  634. for (dir = RESIZE_DIR_H; dir <= RESIZE_DIR_V; dir++) {
  635. unsigned char *s = pcdev->resizing[dir].s;
  636. int len = pcdev->resizing[dir].len;
  637. unsigned int coeff[2] = {0, 0};
  638. unsigned int valid = 0;
  639. int i;
  640. if (len == 0)
  641. continue;
  642. for (i = RESIZE_NUM_MAX - 1; i >= 0; i--) {
  643. int j;
  644. j = i > 9 ? 1 : 0;
  645. coeff[j] = (coeff[j] << BC_COEF) |
  646. (s[i] & (SZ_COEF - 1));
  647. if (i == 5 || i == 15)
  648. coeff[j] <<= 1;
  649. valid = (valid << 1) | (s[i] >> BC_COEF);
  650. }
  651. valid |= PRP_RZ_VALID_TBL_LEN(len);
  652. if (pcdev->resizing[dir].algo == RESIZE_ALGO_BILINEAR)
  653. valid |= PRP_RZ_VALID_BILINEAR;
  654. if (pcdev->emma_prp->cfg.channel == 1) {
  655. if (dir == RESIZE_DIR_H) {
  656. writel(coeff[0], pcdev->base_emma +
  657. PRP_CH1_RZ_HORI_COEF1);
  658. writel(coeff[1], pcdev->base_emma +
  659. PRP_CH1_RZ_HORI_COEF2);
  660. writel(valid, pcdev->base_emma +
  661. PRP_CH1_RZ_HORI_VALID);
  662. } else {
  663. writel(coeff[0], pcdev->base_emma +
  664. PRP_CH1_RZ_VERT_COEF1);
  665. writel(coeff[1], pcdev->base_emma +
  666. PRP_CH1_RZ_VERT_COEF2);
  667. writel(valid, pcdev->base_emma +
  668. PRP_CH1_RZ_VERT_VALID);
  669. }
  670. } else {
  671. if (dir == RESIZE_DIR_H) {
  672. writel(coeff[0], pcdev->base_emma +
  673. PRP_CH2_RZ_HORI_COEF1);
  674. writel(coeff[1], pcdev->base_emma +
  675. PRP_CH2_RZ_HORI_COEF2);
  676. writel(valid, pcdev->base_emma +
  677. PRP_CH2_RZ_HORI_VALID);
  678. } else {
  679. writel(coeff[0], pcdev->base_emma +
  680. PRP_CH2_RZ_VERT_COEF1);
  681. writel(coeff[1], pcdev->base_emma +
  682. PRP_CH2_RZ_VERT_COEF2);
  683. writel(valid, pcdev->base_emma +
  684. PRP_CH2_RZ_VERT_VALID);
  685. }
  686. }
  687. }
  688. }
  689. static int mx2_start_streaming(struct vb2_queue *q, unsigned int count)
  690. {
  691. struct soc_camera_device *icd = soc_camera_from_vb2q(q);
  692. struct soc_camera_host *ici =
  693. to_soc_camera_host(icd->parent);
  694. struct mx2_camera_dev *pcdev = ici->priv;
  695. struct mx2_fmt_cfg *prp = pcdev->emma_prp;
  696. struct vb2_buffer *vb;
  697. struct mx2_buffer *buf;
  698. unsigned long phys;
  699. int bytesperline;
  700. if (cpu_is_mx27()) {
  701. unsigned long flags;
  702. if (count < 2)
  703. return -EINVAL;
  704. spin_lock_irqsave(&pcdev->lock, flags);
  705. buf = list_first_entry(&pcdev->capture, struct mx2_buffer,
  706. internal.queue);
  707. buf->internal.bufnum = 0;
  708. vb = &buf->vb;
  709. buf->state = MX2_STATE_ACTIVE;
  710. phys = vb2_dma_contig_plane_dma_addr(vb, 0);
  711. mx27_update_emma_buf(pcdev, phys, buf->internal.bufnum);
  712. list_move_tail(pcdev->capture.next, &pcdev->active_bufs);
  713. buf = list_first_entry(&pcdev->capture, struct mx2_buffer,
  714. internal.queue);
  715. buf->internal.bufnum = 1;
  716. vb = &buf->vb;
  717. buf->state = MX2_STATE_ACTIVE;
  718. phys = vb2_dma_contig_plane_dma_addr(vb, 0);
  719. mx27_update_emma_buf(pcdev, phys, buf->internal.bufnum);
  720. list_move_tail(pcdev->capture.next, &pcdev->active_bufs);
  721. bytesperline = soc_mbus_bytes_per_line(icd->user_width,
  722. icd->current_fmt->host_fmt);
  723. if (bytesperline < 0)
  724. return bytesperline;
  725. /*
  726. * I didn't manage to properly enable/disable the prp
  727. * on a per frame basis during running transfers,
  728. * thus we allocate a buffer here and use it to
  729. * discard frames when no buffer is available.
  730. * Feel free to work on this ;)
  731. */
  732. pcdev->discard_size = icd->user_height * bytesperline;
  733. pcdev->discard_buffer = dma_alloc_coherent(ici->v4l2_dev.dev,
  734. pcdev->discard_size, &pcdev->discard_buffer_dma,
  735. GFP_KERNEL);
  736. if (!pcdev->discard_buffer)
  737. return -ENOMEM;
  738. pcdev->buf_discard[0].discard = true;
  739. list_add_tail(&pcdev->buf_discard[0].queue,
  740. &pcdev->discard);
  741. pcdev->buf_discard[1].discard = true;
  742. list_add_tail(&pcdev->buf_discard[1].queue,
  743. &pcdev->discard);
  744. mx2_prp_resize_commit(pcdev);
  745. mx27_camera_emma_buf_init(icd, bytesperline);
  746. if (prp->cfg.channel == 1) {
  747. writel(PRP_CNTL_CH1EN |
  748. PRP_CNTL_CSIEN |
  749. prp->cfg.in_fmt |
  750. prp->cfg.out_fmt |
  751. PRP_CNTL_CH1_LEN |
  752. PRP_CNTL_CH1BYP |
  753. PRP_CNTL_CH1_TSKIP(0) |
  754. PRP_CNTL_IN_TSKIP(0),
  755. pcdev->base_emma + PRP_CNTL);
  756. } else {
  757. writel(PRP_CNTL_CH2EN |
  758. PRP_CNTL_CSIEN |
  759. prp->cfg.in_fmt |
  760. prp->cfg.out_fmt |
  761. PRP_CNTL_CH2_LEN |
  762. PRP_CNTL_CH2_TSKIP(0) |
  763. PRP_CNTL_IN_TSKIP(0),
  764. pcdev->base_emma + PRP_CNTL);
  765. }
  766. spin_unlock_irqrestore(&pcdev->lock, flags);
  767. }
  768. return 0;
  769. }
  770. static int mx2_stop_streaming(struct vb2_queue *q)
  771. {
  772. struct soc_camera_device *icd = soc_camera_from_vb2q(q);
  773. struct soc_camera_host *ici =
  774. to_soc_camera_host(icd->parent);
  775. struct mx2_camera_dev *pcdev = ici->priv;
  776. struct mx2_fmt_cfg *prp = pcdev->emma_prp;
  777. unsigned long flags;
  778. void *b;
  779. u32 cntl;
  780. if (cpu_is_mx27()) {
  781. spin_lock_irqsave(&pcdev->lock, flags);
  782. cntl = readl(pcdev->base_emma + PRP_CNTL);
  783. if (prp->cfg.channel == 1) {
  784. writel(cntl & ~PRP_CNTL_CH1EN,
  785. pcdev->base_emma + PRP_CNTL);
  786. } else {
  787. writel(cntl & ~PRP_CNTL_CH2EN,
  788. pcdev->base_emma + PRP_CNTL);
  789. }
  790. INIT_LIST_HEAD(&pcdev->capture);
  791. INIT_LIST_HEAD(&pcdev->active_bufs);
  792. INIT_LIST_HEAD(&pcdev->discard);
  793. b = pcdev->discard_buffer;
  794. pcdev->discard_buffer = NULL;
  795. spin_unlock_irqrestore(&pcdev->lock, flags);
  796. dma_free_coherent(ici->v4l2_dev.dev,
  797. pcdev->discard_size, b, pcdev->discard_buffer_dma);
  798. }
  799. return 0;
  800. }
  801. static struct vb2_ops mx2_videobuf_ops = {
  802. .queue_setup = mx2_videobuf_setup,
  803. .buf_prepare = mx2_videobuf_prepare,
  804. .buf_queue = mx2_videobuf_queue,
  805. .buf_cleanup = mx2_videobuf_release,
  806. .start_streaming = mx2_start_streaming,
  807. .stop_streaming = mx2_stop_streaming,
  808. };
  809. static int mx2_camera_init_videobuf(struct vb2_queue *q,
  810. struct soc_camera_device *icd)
  811. {
  812. q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
  813. q->io_modes = VB2_MMAP | VB2_USERPTR;
  814. q->drv_priv = icd;
  815. q->ops = &mx2_videobuf_ops;
  816. q->mem_ops = &vb2_dma_contig_memops;
  817. q->buf_struct_size = sizeof(struct mx2_buffer);
  818. return vb2_queue_init(q);
  819. }
  820. #define MX2_BUS_FLAGS (V4L2_MBUS_MASTER | \
  821. V4L2_MBUS_VSYNC_ACTIVE_HIGH | \
  822. V4L2_MBUS_VSYNC_ACTIVE_LOW | \
  823. V4L2_MBUS_HSYNC_ACTIVE_HIGH | \
  824. V4L2_MBUS_HSYNC_ACTIVE_LOW | \
  825. V4L2_MBUS_PCLK_SAMPLE_RISING | \
  826. V4L2_MBUS_PCLK_SAMPLE_FALLING | \
  827. V4L2_MBUS_DATA_ACTIVE_HIGH | \
  828. V4L2_MBUS_DATA_ACTIVE_LOW)
  829. static int mx27_camera_emma_prp_reset(struct mx2_camera_dev *pcdev)
  830. {
  831. u32 cntl;
  832. int count = 0;
  833. cntl = readl(pcdev->base_emma + PRP_CNTL);
  834. writel(PRP_CNTL_SWRST, pcdev->base_emma + PRP_CNTL);
  835. while (count++ < 100) {
  836. if (!(readl(pcdev->base_emma + PRP_CNTL) & PRP_CNTL_SWRST))
  837. return 0;
  838. barrier();
  839. udelay(1);
  840. }
  841. return -ETIMEDOUT;
  842. }
  843. static int mx2_camera_set_bus_param(struct soc_camera_device *icd)
  844. {
  845. struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
  846. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  847. struct mx2_camera_dev *pcdev = ici->priv;
  848. struct v4l2_mbus_config cfg = {.type = V4L2_MBUS_PARALLEL,};
  849. const struct soc_camera_format_xlate *xlate;
  850. unsigned long common_flags;
  851. int ret;
  852. int bytesperline;
  853. u32 csicr1 = pcdev->csicr1;
  854. ret = v4l2_subdev_call(sd, video, g_mbus_config, &cfg);
  855. if (!ret) {
  856. common_flags = soc_mbus_config_compatible(&cfg, MX2_BUS_FLAGS);
  857. if (!common_flags) {
  858. dev_warn(icd->parent,
  859. "Flags incompatible: camera 0x%x, host 0x%x\n",
  860. cfg.flags, MX2_BUS_FLAGS);
  861. return -EINVAL;
  862. }
  863. } else if (ret != -ENOIOCTLCMD) {
  864. return ret;
  865. } else {
  866. common_flags = MX2_BUS_FLAGS;
  867. }
  868. if ((common_flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH) &&
  869. (common_flags & V4L2_MBUS_HSYNC_ACTIVE_LOW)) {
  870. if (pcdev->platform_flags & MX2_CAMERA_HSYNC_HIGH)
  871. common_flags &= ~V4L2_MBUS_HSYNC_ACTIVE_LOW;
  872. else
  873. common_flags &= ~V4L2_MBUS_HSYNC_ACTIVE_HIGH;
  874. }
  875. if ((common_flags & V4L2_MBUS_PCLK_SAMPLE_RISING) &&
  876. (common_flags & V4L2_MBUS_PCLK_SAMPLE_FALLING)) {
  877. if (pcdev->platform_flags & MX2_CAMERA_PCLK_SAMPLE_RISING)
  878. common_flags &= ~V4L2_MBUS_PCLK_SAMPLE_FALLING;
  879. else
  880. common_flags &= ~V4L2_MBUS_PCLK_SAMPLE_RISING;
  881. }
  882. cfg.flags = common_flags;
  883. ret = v4l2_subdev_call(sd, video, s_mbus_config, &cfg);
  884. if (ret < 0 && ret != -ENOIOCTLCMD) {
  885. dev_dbg(icd->parent, "camera s_mbus_config(0x%lx) returned %d\n",
  886. common_flags, ret);
  887. return ret;
  888. }
  889. xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
  890. if (!xlate) {
  891. dev_warn(icd->parent, "Format %x not found\n", pixfmt);
  892. return -EINVAL;
  893. }
  894. if (xlate->code == V4L2_MBUS_FMT_YUYV8_2X8) {
  895. csicr1 |= CSICR1_PACK_DIR;
  896. csicr1 &= ~CSICR1_SWAP16_EN;
  897. dev_dbg(icd->parent, "already yuyv format, don't convert\n");
  898. } else if (xlate->code == V4L2_MBUS_FMT_UYVY8_2X8) {
  899. csicr1 &= ~CSICR1_PACK_DIR;
  900. csicr1 |= CSICR1_SWAP16_EN;
  901. dev_dbg(icd->parent, "convert uyvy mbus format into yuyv\n");
  902. } else {
  903. dev_warn(icd->parent, "mbus format not supported\n");
  904. return -EINVAL;
  905. }
  906. if (common_flags & V4L2_MBUS_PCLK_SAMPLE_RISING)
  907. csicr1 |= CSICR1_REDGE;
  908. if (common_flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH)
  909. csicr1 |= CSICR1_SOF_POL;
  910. if (common_flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH)
  911. csicr1 |= CSICR1_HSYNC_POL;
  912. if (pcdev->platform_flags & MX2_CAMERA_EXT_VSYNC)
  913. csicr1 |= CSICR1_EXT_VSYNC;
  914. if (pcdev->platform_flags & MX2_CAMERA_CCIR)
  915. csicr1 |= CSICR1_CCIR_EN;
  916. if (pcdev->platform_flags & MX2_CAMERA_CCIR_INTERLACE)
  917. csicr1 |= CSICR1_CCIR_MODE;
  918. if (pcdev->platform_flags & MX2_CAMERA_GATED_CLOCK)
  919. csicr1 |= CSICR1_GCLK_MODE;
  920. if (pcdev->platform_flags & MX2_CAMERA_INV_DATA)
  921. csicr1 |= CSICR1_INV_DATA;
  922. pcdev->csicr1 = csicr1;
  923. bytesperline = soc_mbus_bytes_per_line(icd->user_width,
  924. icd->current_fmt->host_fmt);
  925. if (bytesperline < 0)
  926. return bytesperline;
  927. if (cpu_is_mx27()) {
  928. ret = mx27_camera_emma_prp_reset(pcdev);
  929. if (ret)
  930. return ret;
  931. } else if (cpu_is_mx25()) {
  932. writel((bytesperline * icd->user_height) >> 2,
  933. pcdev->base_csi + CSIRXCNT);
  934. writel((bytesperline << 16) | icd->user_height,
  935. pcdev->base_csi + CSIIMAG_PARA);
  936. }
  937. writel(pcdev->csicr1, pcdev->base_csi + CSICR1);
  938. return 0;
  939. }
  940. static int mx2_camera_set_crop(struct soc_camera_device *icd,
  941. struct v4l2_crop *a)
  942. {
  943. struct v4l2_rect *rect = &a->c;
  944. struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
  945. struct v4l2_mbus_framefmt mf;
  946. int ret;
  947. soc_camera_limit_side(&rect->left, &rect->width, 0, 2, 4096);
  948. soc_camera_limit_side(&rect->top, &rect->height, 0, 2, 4096);
  949. ret = v4l2_subdev_call(sd, video, s_crop, a);
  950. if (ret < 0)
  951. return ret;
  952. /* The capture device might have changed its output */
  953. ret = v4l2_subdev_call(sd, video, g_mbus_fmt, &mf);
  954. if (ret < 0)
  955. return ret;
  956. dev_dbg(icd->parent, "Sensor cropped %dx%d\n",
  957. mf.width, mf.height);
  958. icd->user_width = mf.width;
  959. icd->user_height = mf.height;
  960. return ret;
  961. }
  962. static int mx2_camera_get_formats(struct soc_camera_device *icd,
  963. unsigned int idx,
  964. struct soc_camera_format_xlate *xlate)
  965. {
  966. struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
  967. const struct soc_mbus_pixelfmt *fmt;
  968. struct device *dev = icd->parent;
  969. enum v4l2_mbus_pixelcode code;
  970. int ret, formats = 0;
  971. ret = v4l2_subdev_call(sd, video, enum_mbus_fmt, idx, &code);
  972. if (ret < 0)
  973. /* no more formats */
  974. return 0;
  975. fmt = soc_mbus_get_fmtdesc(code);
  976. if (!fmt) {
  977. dev_err(dev, "Invalid format code #%u: %d\n", idx, code);
  978. return 0;
  979. }
  980. if (code == V4L2_MBUS_FMT_YUYV8_2X8 ||
  981. code == V4L2_MBUS_FMT_UYVY8_2X8) {
  982. formats++;
  983. if (xlate) {
  984. /*
  985. * CH2 can output YUV420 which is a standard format in
  986. * soc_mediabus.c
  987. */
  988. xlate->host_fmt =
  989. soc_mbus_get_fmtdesc(V4L2_MBUS_FMT_YUYV8_1_5X8);
  990. xlate->code = code;
  991. dev_dbg(dev, "Providing host format %s for sensor code %d\n",
  992. xlate->host_fmt->name, code);
  993. xlate++;
  994. }
  995. }
  996. if (code == V4L2_MBUS_FMT_UYVY8_2X8) {
  997. formats++;
  998. if (xlate) {
  999. xlate->host_fmt =
  1000. soc_mbus_get_fmtdesc(V4L2_MBUS_FMT_YUYV8_2X8);
  1001. xlate->code = code;
  1002. dev_dbg(dev, "Providing host format %s for sensor code %d\n",
  1003. xlate->host_fmt->name, code);
  1004. xlate++;
  1005. }
  1006. }
  1007. /* Generic pass-trough */
  1008. formats++;
  1009. if (xlate) {
  1010. xlate->host_fmt = fmt;
  1011. xlate->code = code;
  1012. xlate++;
  1013. }
  1014. return formats;
  1015. }
  1016. static int mx2_emmaprp_resize(struct mx2_camera_dev *pcdev,
  1017. struct v4l2_mbus_framefmt *mf_in,
  1018. struct v4l2_pix_format *pix_out, bool apply)
  1019. {
  1020. int num, den;
  1021. unsigned long m;
  1022. int i, dir;
  1023. for (dir = RESIZE_DIR_H; dir <= RESIZE_DIR_V; dir++) {
  1024. struct emma_prp_resize tmprsz;
  1025. unsigned char *s = tmprsz.s;
  1026. int len = 0;
  1027. int in, out;
  1028. if (dir == RESIZE_DIR_H) {
  1029. in = mf_in->width;
  1030. out = pix_out->width;
  1031. } else {
  1032. in = mf_in->height;
  1033. out = pix_out->height;
  1034. }
  1035. if (in < out)
  1036. return -EINVAL;
  1037. else if (in == out)
  1038. continue;
  1039. /* Calculate ratio */
  1040. m = gcd(in, out);
  1041. num = in / m;
  1042. den = out / m;
  1043. if (num > RESIZE_NUM_MAX)
  1044. return -EINVAL;
  1045. if ((num >= 2 * den) && (den == 1) &&
  1046. (num < 9) && (!(num & 0x01))) {
  1047. int sum = 0;
  1048. int j;
  1049. /* Average scaling for >= 2:1 ratios */
  1050. /* Support can be added for num >=9 and odd values */
  1051. tmprsz.algo = RESIZE_ALGO_AVERAGING;
  1052. len = num;
  1053. for (i = 0; i < (len / 2); i++)
  1054. s[i] = 8;
  1055. do {
  1056. for (i = 0; i < (len / 2); i++) {
  1057. s[i] = s[i] >> 1;
  1058. sum = 0;
  1059. for (j = 0; j < (len / 2); j++)
  1060. sum += s[j];
  1061. if (sum == 4)
  1062. break;
  1063. }
  1064. } while (sum != 4);
  1065. for (i = (len / 2); i < len; i++)
  1066. s[i] = s[len - i - 1];
  1067. s[len - 1] |= SZ_COEF;
  1068. } else {
  1069. /* bilinear scaling for < 2:1 ratios */
  1070. int v; /* overflow counter */
  1071. int coeff, nxt; /* table output */
  1072. int in_pos_inc = 2 * den;
  1073. int out_pos = num;
  1074. int out_pos_inc = 2 * num;
  1075. int init_carry = num - den;
  1076. int carry = init_carry;
  1077. tmprsz.algo = RESIZE_ALGO_BILINEAR;
  1078. v = den + in_pos_inc;
  1079. do {
  1080. coeff = v - out_pos;
  1081. out_pos += out_pos_inc;
  1082. carry += out_pos_inc;
  1083. for (nxt = 0; v < out_pos; nxt++) {
  1084. v += in_pos_inc;
  1085. carry -= in_pos_inc;
  1086. }
  1087. if (len > RESIZE_NUM_MAX)
  1088. return -EINVAL;
  1089. coeff = ((coeff << BC_COEF) +
  1090. (in_pos_inc >> 1)) / in_pos_inc;
  1091. if (coeff >= (SZ_COEF - 1))
  1092. coeff--;
  1093. coeff |= SZ_COEF;
  1094. s[len] = (unsigned char)coeff;
  1095. len++;
  1096. for (i = 1; i < nxt; i++) {
  1097. if (len >= RESIZE_NUM_MAX)
  1098. return -EINVAL;
  1099. s[len] = 0;
  1100. len++;
  1101. }
  1102. } while (carry != init_carry);
  1103. }
  1104. tmprsz.len = len;
  1105. if (dir == RESIZE_DIR_H)
  1106. mf_in->width = pix_out->width;
  1107. else
  1108. mf_in->height = pix_out->height;
  1109. if (apply)
  1110. memcpy(&pcdev->resizing[dir], &tmprsz, sizeof(tmprsz));
  1111. }
  1112. return 0;
  1113. }
  1114. static int mx2_camera_set_fmt(struct soc_camera_device *icd,
  1115. struct v4l2_format *f)
  1116. {
  1117. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  1118. struct mx2_camera_dev *pcdev = ici->priv;
  1119. struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
  1120. const struct soc_camera_format_xlate *xlate;
  1121. struct v4l2_pix_format *pix = &f->fmt.pix;
  1122. struct v4l2_mbus_framefmt mf;
  1123. int ret;
  1124. dev_dbg(icd->parent, "%s: requested params: width = %d, height = %d\n",
  1125. __func__, pix->width, pix->height);
  1126. xlate = soc_camera_xlate_by_fourcc(icd, pix->pixelformat);
  1127. if (!xlate) {
  1128. dev_warn(icd->parent, "Format %x not found\n",
  1129. pix->pixelformat);
  1130. return -EINVAL;
  1131. }
  1132. mf.width = pix->width;
  1133. mf.height = pix->height;
  1134. mf.field = pix->field;
  1135. mf.colorspace = pix->colorspace;
  1136. mf.code = xlate->code;
  1137. ret = v4l2_subdev_call(sd, video, s_mbus_fmt, &mf);
  1138. if (ret < 0 && ret != -ENOIOCTLCMD)
  1139. return ret;
  1140. /* Store width and height returned by the sensor for resizing */
  1141. pcdev->s_width = mf.width;
  1142. pcdev->s_height = mf.height;
  1143. dev_dbg(icd->parent, "%s: sensor params: width = %d, height = %d\n",
  1144. __func__, pcdev->s_width, pcdev->s_height);
  1145. pcdev->emma_prp = mx27_emma_prp_get_format(xlate->code,
  1146. xlate->host_fmt->fourcc);
  1147. memset(pcdev->resizing, 0, sizeof(pcdev->resizing));
  1148. if ((mf.width != pix->width || mf.height != pix->height) &&
  1149. pcdev->emma_prp->cfg.in_fmt == PRP_CNTL_DATA_IN_YUV422) {
  1150. if (mx2_emmaprp_resize(pcdev, &mf, pix, true) < 0)
  1151. dev_dbg(icd->parent, "%s: can't resize\n", __func__);
  1152. }
  1153. if (mf.code != xlate->code)
  1154. return -EINVAL;
  1155. pix->width = mf.width;
  1156. pix->height = mf.height;
  1157. pix->field = mf.field;
  1158. pix->colorspace = mf.colorspace;
  1159. icd->current_fmt = xlate;
  1160. dev_dbg(icd->parent, "%s: returned params: width = %d, height = %d\n",
  1161. __func__, pix->width, pix->height);
  1162. return 0;
  1163. }
  1164. static int mx2_camera_try_fmt(struct soc_camera_device *icd,
  1165. struct v4l2_format *f)
  1166. {
  1167. struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
  1168. const struct soc_camera_format_xlate *xlate;
  1169. struct v4l2_pix_format *pix = &f->fmt.pix;
  1170. struct v4l2_mbus_framefmt mf;
  1171. __u32 pixfmt = pix->pixelformat;
  1172. struct soc_camera_host *ici = to_soc_camera_host(icd->parent);
  1173. struct mx2_camera_dev *pcdev = ici->priv;
  1174. unsigned int width_limit;
  1175. int ret;
  1176. dev_dbg(icd->parent, "%s: requested params: width = %d, height = %d\n",
  1177. __func__, pix->width, pix->height);
  1178. xlate = soc_camera_xlate_by_fourcc(icd, pixfmt);
  1179. if (pixfmt && !xlate) {
  1180. dev_warn(icd->parent, "Format %x not found\n", pixfmt);
  1181. return -EINVAL;
  1182. }
  1183. /* FIXME: implement MX27 limits */
  1184. /* limit to MX25 hardware capabilities */
  1185. if (cpu_is_mx25()) {
  1186. if (xlate->host_fmt->bits_per_sample <= 8)
  1187. width_limit = 0xffff * 4;
  1188. else
  1189. width_limit = 0xffff * 2;
  1190. /* CSIIMAG_PARA limit */
  1191. if (pix->width > width_limit)
  1192. pix->width = width_limit;
  1193. if (pix->height > 0xffff)
  1194. pix->height = 0xffff;
  1195. pix->bytesperline = soc_mbus_bytes_per_line(pix->width,
  1196. xlate->host_fmt);
  1197. if (pix->bytesperline < 0)
  1198. return pix->bytesperline;
  1199. pix->sizeimage = pix->height * pix->bytesperline;
  1200. /* Check against the CSIRXCNT limit */
  1201. if (pix->sizeimage > 4 * 0x3ffff) {
  1202. /* Adjust geometry, preserve aspect ratio */
  1203. unsigned int new_height = int_sqrt(4 * 0x3ffff *
  1204. pix->height / pix->bytesperline);
  1205. pix->width = new_height * pix->width / pix->height;
  1206. pix->height = new_height;
  1207. pix->bytesperline = soc_mbus_bytes_per_line(pix->width,
  1208. xlate->host_fmt);
  1209. BUG_ON(pix->bytesperline < 0);
  1210. pix->sizeimage = pix->height * pix->bytesperline;
  1211. }
  1212. }
  1213. /* limit to sensor capabilities */
  1214. mf.width = pix->width;
  1215. mf.height = pix->height;
  1216. mf.field = pix->field;
  1217. mf.colorspace = pix->colorspace;
  1218. mf.code = xlate->code;
  1219. ret = v4l2_subdev_call(sd, video, try_mbus_fmt, &mf);
  1220. if (ret < 0)
  1221. return ret;
  1222. dev_dbg(icd->parent, "%s: sensor params: width = %d, height = %d\n",
  1223. __func__, pcdev->s_width, pcdev->s_height);
  1224. /* If the sensor does not support image size try PrP resizing */
  1225. pcdev->emma_prp = mx27_emma_prp_get_format(xlate->code,
  1226. xlate->host_fmt->fourcc);
  1227. memset(pcdev->resizing, 0, sizeof(pcdev->resizing));
  1228. if ((mf.width != pix->width || mf.height != pix->height) &&
  1229. pcdev->emma_prp->cfg.in_fmt == PRP_CNTL_DATA_IN_YUV422) {
  1230. if (mx2_emmaprp_resize(pcdev, &mf, pix, false) < 0)
  1231. dev_dbg(icd->parent, "%s: can't resize\n", __func__);
  1232. }
  1233. if (mf.field == V4L2_FIELD_ANY)
  1234. mf.field = V4L2_FIELD_NONE;
  1235. /*
  1236. * Driver supports interlaced images provided they have
  1237. * both fields so that they can be processed as if they
  1238. * were progressive.
  1239. */
  1240. if (mf.field != V4L2_FIELD_NONE && !V4L2_FIELD_HAS_BOTH(mf.field)) {
  1241. dev_err(icd->parent, "Field type %d unsupported.\n",
  1242. mf.field);
  1243. return -EINVAL;
  1244. }
  1245. pix->width = mf.width;
  1246. pix->height = mf.height;
  1247. pix->field = mf.field;
  1248. pix->colorspace = mf.colorspace;
  1249. dev_dbg(icd->parent, "%s: returned params: width = %d, height = %d\n",
  1250. __func__, pix->width, pix->height);
  1251. return 0;
  1252. }
  1253. static int mx2_camera_querycap(struct soc_camera_host *ici,
  1254. struct v4l2_capability *cap)
  1255. {
  1256. /* cap->name is set by the friendly caller:-> */
  1257. strlcpy(cap->card, MX2_CAM_DRIVER_DESCRIPTION, sizeof(cap->card));
  1258. cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
  1259. return 0;
  1260. }
  1261. static unsigned int mx2_camera_poll(struct file *file, poll_table *pt)
  1262. {
  1263. struct soc_camera_device *icd = file->private_data;
  1264. return vb2_poll(&icd->vb2_vidq, file, pt);
  1265. }
  1266. static struct soc_camera_host_ops mx2_soc_camera_host_ops = {
  1267. .owner = THIS_MODULE,
  1268. .add = mx2_camera_add_device,
  1269. .remove = mx2_camera_remove_device,
  1270. .set_fmt = mx2_camera_set_fmt,
  1271. .set_crop = mx2_camera_set_crop,
  1272. .get_formats = mx2_camera_get_formats,
  1273. .try_fmt = mx2_camera_try_fmt,
  1274. .init_videobuf2 = mx2_camera_init_videobuf,
  1275. .poll = mx2_camera_poll,
  1276. .querycap = mx2_camera_querycap,
  1277. .set_bus_param = mx2_camera_set_bus_param,
  1278. };
  1279. static void mx27_camera_frame_done_emma(struct mx2_camera_dev *pcdev,
  1280. int bufnum, bool err)
  1281. {
  1282. #ifdef DEBUG
  1283. struct mx2_fmt_cfg *prp = pcdev->emma_prp;
  1284. #endif
  1285. struct mx2_buf_internal *ibuf;
  1286. struct mx2_buffer *buf;
  1287. struct vb2_buffer *vb;
  1288. unsigned long phys;
  1289. ibuf = list_first_entry(&pcdev->active_bufs, struct mx2_buf_internal,
  1290. queue);
  1291. BUG_ON(ibuf->bufnum != bufnum);
  1292. if (ibuf->discard) {
  1293. /*
  1294. * Discard buffer must not be returned to user space.
  1295. * Just return it to the discard queue.
  1296. */
  1297. list_move_tail(pcdev->active_bufs.next, &pcdev->discard);
  1298. } else {
  1299. buf = mx2_ibuf_to_buf(ibuf);
  1300. vb = &buf->vb;
  1301. #ifdef DEBUG
  1302. phys = vb2_dma_contig_plane_dma_addr(vb, 0);
  1303. if (prp->cfg.channel == 1) {
  1304. if (readl(pcdev->base_emma + PRP_DEST_RGB1_PTR +
  1305. 4 * bufnum) != phys) {
  1306. dev_err(pcdev->dev, "%lx != %x\n", phys,
  1307. readl(pcdev->base_emma +
  1308. PRP_DEST_RGB1_PTR + 4 * bufnum));
  1309. }
  1310. } else {
  1311. if (readl(pcdev->base_emma + PRP_DEST_Y_PTR -
  1312. 0x14 * bufnum) != phys) {
  1313. dev_err(pcdev->dev, "%lx != %x\n", phys,
  1314. readl(pcdev->base_emma +
  1315. PRP_DEST_Y_PTR - 0x14 * bufnum));
  1316. }
  1317. }
  1318. #endif
  1319. dev_dbg(pcdev->dev, "%s (vb=0x%p) 0x%p %lu\n", __func__, vb,
  1320. vb2_plane_vaddr(vb, 0),
  1321. vb2_get_plane_payload(vb, 0));
  1322. list_del_init(&buf->internal.queue);
  1323. do_gettimeofday(&vb->v4l2_buf.timestamp);
  1324. vb->v4l2_buf.sequence = pcdev->frame_count;
  1325. if (err)
  1326. vb2_buffer_done(vb, VB2_BUF_STATE_ERROR);
  1327. else
  1328. vb2_buffer_done(vb, VB2_BUF_STATE_DONE);
  1329. }
  1330. pcdev->frame_count++;
  1331. if (list_empty(&pcdev->capture)) {
  1332. if (list_empty(&pcdev->discard)) {
  1333. dev_warn(pcdev->dev, "%s: trying to access empty discard list\n",
  1334. __func__);
  1335. return;
  1336. }
  1337. ibuf = list_first_entry(&pcdev->discard,
  1338. struct mx2_buf_internal, queue);
  1339. ibuf->bufnum = bufnum;
  1340. list_move_tail(pcdev->discard.next, &pcdev->active_bufs);
  1341. mx27_update_emma_buf(pcdev, pcdev->discard_buffer_dma, bufnum);
  1342. return;
  1343. }
  1344. buf = list_first_entry(&pcdev->capture, struct mx2_buffer,
  1345. internal.queue);
  1346. buf->internal.bufnum = bufnum;
  1347. list_move_tail(pcdev->capture.next, &pcdev->active_bufs);
  1348. vb = &buf->vb;
  1349. buf->state = MX2_STATE_ACTIVE;
  1350. phys = vb2_dma_contig_plane_dma_addr(vb, 0);
  1351. mx27_update_emma_buf(pcdev, phys, bufnum);
  1352. }
  1353. static irqreturn_t mx27_camera_emma_irq(int irq_emma, void *data)
  1354. {
  1355. struct mx2_camera_dev *pcdev = data;
  1356. unsigned int status = readl(pcdev->base_emma + PRP_INTRSTATUS);
  1357. struct mx2_buf_internal *ibuf;
  1358. spin_lock(&pcdev->lock);
  1359. if (list_empty(&pcdev->active_bufs)) {
  1360. dev_warn(pcdev->dev, "%s: called while active list is empty\n",
  1361. __func__);
  1362. if (!status) {
  1363. spin_unlock(&pcdev->lock);
  1364. return IRQ_NONE;
  1365. }
  1366. }
  1367. if (status & (1 << 7)) { /* overflow */
  1368. u32 cntl = readl(pcdev->base_emma + PRP_CNTL);
  1369. writel(cntl & ~(PRP_CNTL_CH1EN | PRP_CNTL_CH2EN),
  1370. pcdev->base_emma + PRP_CNTL);
  1371. writel(cntl, pcdev->base_emma + PRP_CNTL);
  1372. ibuf = list_first_entry(&pcdev->active_bufs,
  1373. struct mx2_buf_internal, queue);
  1374. mx27_camera_frame_done_emma(pcdev,
  1375. ibuf->bufnum, true);
  1376. status &= ~(1 << 7);
  1377. } else if (((status & (3 << 5)) == (3 << 5)) ||
  1378. ((status & (3 << 3)) == (3 << 3))) {
  1379. /*
  1380. * Both buffers have triggered, process the one we're expecting
  1381. * to first
  1382. */
  1383. ibuf = list_first_entry(&pcdev->active_bufs,
  1384. struct mx2_buf_internal, queue);
  1385. mx27_camera_frame_done_emma(pcdev, ibuf->bufnum, false);
  1386. status &= ~(1 << (6 - ibuf->bufnum)); /* mark processed */
  1387. } else if ((status & (1 << 6)) || (status & (1 << 4))) {
  1388. mx27_camera_frame_done_emma(pcdev, 0, false);
  1389. } else if ((status & (1 << 5)) || (status & (1 << 3))) {
  1390. mx27_camera_frame_done_emma(pcdev, 1, false);
  1391. }
  1392. spin_unlock(&pcdev->lock);
  1393. writel(status, pcdev->base_emma + PRP_INTRSTATUS);
  1394. return IRQ_HANDLED;
  1395. }
  1396. static int __devinit mx27_camera_emma_init(struct mx2_camera_dev *pcdev)
  1397. {
  1398. struct resource *res_emma = pcdev->res_emma;
  1399. int err = 0;
  1400. if (!request_mem_region(res_emma->start, resource_size(res_emma),
  1401. MX2_CAM_DRV_NAME)) {
  1402. err = -EBUSY;
  1403. goto out;
  1404. }
  1405. pcdev->base_emma = ioremap(res_emma->start, resource_size(res_emma));
  1406. if (!pcdev->base_emma) {
  1407. err = -ENOMEM;
  1408. goto exit_release;
  1409. }
  1410. err = request_irq(pcdev->irq_emma, mx27_camera_emma_irq, 0,
  1411. MX2_CAM_DRV_NAME, pcdev);
  1412. if (err) {
  1413. dev_err(pcdev->dev, "Camera EMMA interrupt register failed \n");
  1414. goto exit_iounmap;
  1415. }
  1416. pcdev->clk_emma = clk_get(NULL, "emma");
  1417. if (IS_ERR(pcdev->clk_emma)) {
  1418. err = PTR_ERR(pcdev->clk_emma);
  1419. goto exit_free_irq;
  1420. }
  1421. clk_enable(pcdev->clk_emma);
  1422. err = mx27_camera_emma_prp_reset(pcdev);
  1423. if (err)
  1424. goto exit_clk_emma_put;
  1425. return err;
  1426. exit_clk_emma_put:
  1427. clk_disable(pcdev->clk_emma);
  1428. clk_put(pcdev->clk_emma);
  1429. exit_free_irq:
  1430. free_irq(pcdev->irq_emma, pcdev);
  1431. exit_iounmap:
  1432. iounmap(pcdev->base_emma);
  1433. exit_release:
  1434. release_mem_region(res_emma->start, resource_size(res_emma));
  1435. out:
  1436. return err;
  1437. }
  1438. static int __devinit mx2_camera_probe(struct platform_device *pdev)
  1439. {
  1440. struct mx2_camera_dev *pcdev;
  1441. struct resource *res_csi, *res_emma;
  1442. void __iomem *base_csi;
  1443. int irq_csi, irq_emma;
  1444. int err = 0;
  1445. dev_dbg(&pdev->dev, "initialising\n");
  1446. res_csi = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  1447. irq_csi = platform_get_irq(pdev, 0);
  1448. if (res_csi == NULL || irq_csi < 0) {
  1449. dev_err(&pdev->dev, "Missing platform resources data\n");
  1450. err = -ENODEV;
  1451. goto exit;
  1452. }
  1453. pcdev = kzalloc(sizeof(*pcdev), GFP_KERNEL);
  1454. if (!pcdev) {
  1455. dev_err(&pdev->dev, "Could not allocate pcdev\n");
  1456. err = -ENOMEM;
  1457. goto exit;
  1458. }
  1459. pcdev->clk_csi = clk_get(&pdev->dev, NULL);
  1460. if (IS_ERR(pcdev->clk_csi)) {
  1461. dev_err(&pdev->dev, "Could not get csi clock\n");
  1462. err = PTR_ERR(pcdev->clk_csi);
  1463. goto exit_kfree;
  1464. }
  1465. pcdev->res_csi = res_csi;
  1466. pcdev->pdata = pdev->dev.platform_data;
  1467. if (pcdev->pdata) {
  1468. long rate;
  1469. pcdev->platform_flags = pcdev->pdata->flags;
  1470. rate = clk_round_rate(pcdev->clk_csi, pcdev->pdata->clk * 2);
  1471. if (rate <= 0) {
  1472. err = -ENODEV;
  1473. goto exit_dma_free;
  1474. }
  1475. err = clk_set_rate(pcdev->clk_csi, rate);
  1476. if (err < 0)
  1477. goto exit_dma_free;
  1478. }
  1479. INIT_LIST_HEAD(&pcdev->capture);
  1480. INIT_LIST_HEAD(&pcdev->active_bufs);
  1481. INIT_LIST_HEAD(&pcdev->discard);
  1482. spin_lock_init(&pcdev->lock);
  1483. /*
  1484. * Request the regions.
  1485. */
  1486. if (!request_mem_region(res_csi->start, resource_size(res_csi),
  1487. MX2_CAM_DRV_NAME)) {
  1488. err = -EBUSY;
  1489. goto exit_dma_free;
  1490. }
  1491. base_csi = ioremap(res_csi->start, resource_size(res_csi));
  1492. if (!base_csi) {
  1493. err = -ENOMEM;
  1494. goto exit_release;
  1495. }
  1496. pcdev->irq_csi = irq_csi;
  1497. pcdev->base_csi = base_csi;
  1498. pcdev->base_dma = res_csi->start;
  1499. pcdev->dev = &pdev->dev;
  1500. if (cpu_is_mx25()) {
  1501. err = request_irq(pcdev->irq_csi, mx25_camera_irq, 0,
  1502. MX2_CAM_DRV_NAME, pcdev);
  1503. if (err) {
  1504. dev_err(pcdev->dev, "Camera interrupt register failed \n");
  1505. goto exit_iounmap;
  1506. }
  1507. }
  1508. if (cpu_is_mx27()) {
  1509. /* EMMA support */
  1510. res_emma = platform_get_resource(pdev, IORESOURCE_MEM, 1);
  1511. irq_emma = platform_get_irq(pdev, 1);
  1512. if (!res_emma || !irq_emma) {
  1513. dev_err(&pdev->dev, "no EMMA resources\n");
  1514. goto exit_free_irq;
  1515. }
  1516. pcdev->res_emma = res_emma;
  1517. pcdev->irq_emma = irq_emma;
  1518. if (mx27_camera_emma_init(pcdev))
  1519. goto exit_free_irq;
  1520. }
  1521. pcdev->soc_host.drv_name = MX2_CAM_DRV_NAME,
  1522. pcdev->soc_host.ops = &mx2_soc_camera_host_ops,
  1523. pcdev->soc_host.priv = pcdev;
  1524. pcdev->soc_host.v4l2_dev.dev = &pdev->dev;
  1525. pcdev->soc_host.nr = pdev->id;
  1526. pcdev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev);
  1527. if (IS_ERR(pcdev->alloc_ctx)) {
  1528. err = PTR_ERR(pcdev->alloc_ctx);
  1529. goto eallocctx;
  1530. }
  1531. err = soc_camera_host_register(&pcdev->soc_host);
  1532. if (err)
  1533. goto exit_free_emma;
  1534. dev_info(&pdev->dev, "MX2 Camera (CSI) driver probed, clock frequency: %ld\n",
  1535. clk_get_rate(pcdev->clk_csi));
  1536. return 0;
  1537. exit_free_emma:
  1538. vb2_dma_contig_cleanup_ctx(pcdev->alloc_ctx);
  1539. eallocctx:
  1540. if (cpu_is_mx27()) {
  1541. free_irq(pcdev->irq_emma, pcdev);
  1542. clk_disable(pcdev->clk_emma);
  1543. clk_put(pcdev->clk_emma);
  1544. iounmap(pcdev->base_emma);
  1545. release_mem_region(pcdev->res_emma->start, resource_size(pcdev->res_emma));
  1546. }
  1547. exit_free_irq:
  1548. if (cpu_is_mx25())
  1549. free_irq(pcdev->irq_csi, pcdev);
  1550. exit_iounmap:
  1551. iounmap(base_csi);
  1552. exit_release:
  1553. release_mem_region(res_csi->start, resource_size(res_csi));
  1554. exit_dma_free:
  1555. clk_put(pcdev->clk_csi);
  1556. exit_kfree:
  1557. kfree(pcdev);
  1558. exit:
  1559. return err;
  1560. }
  1561. static int __devexit mx2_camera_remove(struct platform_device *pdev)
  1562. {
  1563. struct soc_camera_host *soc_host = to_soc_camera_host(&pdev->dev);
  1564. struct mx2_camera_dev *pcdev = container_of(soc_host,
  1565. struct mx2_camera_dev, soc_host);
  1566. struct resource *res;
  1567. clk_put(pcdev->clk_csi);
  1568. if (cpu_is_mx25())
  1569. free_irq(pcdev->irq_csi, pcdev);
  1570. if (cpu_is_mx27())
  1571. free_irq(pcdev->irq_emma, pcdev);
  1572. soc_camera_host_unregister(&pcdev->soc_host);
  1573. vb2_dma_contig_cleanup_ctx(pcdev->alloc_ctx);
  1574. iounmap(pcdev->base_csi);
  1575. if (cpu_is_mx27()) {
  1576. clk_disable(pcdev->clk_emma);
  1577. clk_put(pcdev->clk_emma);
  1578. iounmap(pcdev->base_emma);
  1579. res = pcdev->res_emma;
  1580. release_mem_region(res->start, resource_size(res));
  1581. }
  1582. res = pcdev->res_csi;
  1583. release_mem_region(res->start, resource_size(res));
  1584. kfree(pcdev);
  1585. dev_info(&pdev->dev, "MX2 Camera driver unloaded\n");
  1586. return 0;
  1587. }
  1588. static struct platform_driver mx2_camera_driver = {
  1589. .driver = {
  1590. .name = MX2_CAM_DRV_NAME,
  1591. },
  1592. .remove = __devexit_p(mx2_camera_remove),
  1593. };
  1594. static int __init mx2_camera_init(void)
  1595. {
  1596. return platform_driver_probe(&mx2_camera_driver, &mx2_camera_probe);
  1597. }
  1598. static void __exit mx2_camera_exit(void)
  1599. {
  1600. return platform_driver_unregister(&mx2_camera_driver);
  1601. }
  1602. module_init(mx2_camera_init);
  1603. module_exit(mx2_camera_exit);
  1604. MODULE_DESCRIPTION("i.MX27/i.MX25 SoC Camera Host driver");
  1605. MODULE_AUTHOR("Sascha Hauer <sha@pengutronix.de>");
  1606. MODULE_LICENSE("GPL");
  1607. MODULE_VERSION(MX2_CAM_VERSION);