imx-ipu-v3.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  1. /*
  2. * Copyright 2005-2009 Freescale Semiconductor, Inc.
  3. *
  4. * The code contained herein is licensed under the GNU Lesser General
  5. * Public License. You may obtain a copy of the GNU Lesser General
  6. * Public License Version 2.1 or later at the following locations:
  7. *
  8. * http://www.opensource.org/licenses/lgpl-license.html
  9. * http://www.gnu.org/copyleft/lgpl.html
  10. */
  11. #ifndef __DRM_IPU_H__
  12. #define __DRM_IPU_H__
  13. #include <linux/types.h>
  14. #include <linux/videodev2.h>
  15. #include <linux/bitmap.h>
  16. #include <linux/fb.h>
  17. #include <linux/of.h>
  18. #include <drm/drm_color_mgmt.h>
  19. #include <media/v4l2-mediabus.h>
  20. #include <video/videomode.h>
  21. struct ipu_soc;
  22. enum ipuv3_type {
  23. IPUV3EX,
  24. IPUV3M,
  25. IPUV3H,
  26. };
  27. #define IPU_PIX_FMT_GBR24 v4l2_fourcc('G', 'B', 'R', '3')
  28. /*
  29. * Bitfield of Display Interface signal polarities.
  30. */
  31. struct ipu_di_signal_cfg {
  32. unsigned data_pol:1; /* true = inverted */
  33. unsigned clk_pol:1; /* true = rising edge */
  34. unsigned enable_pol:1;
  35. struct videomode mode;
  36. u32 bus_format;
  37. u32 v_to_h_sync;
  38. #define IPU_DI_CLKMODE_SYNC (1 << 0)
  39. #define IPU_DI_CLKMODE_EXT (1 << 1)
  40. unsigned long clkflags;
  41. u8 hsync_pin;
  42. u8 vsync_pin;
  43. };
  44. /*
  45. * Enumeration of CSI destinations
  46. */
  47. enum ipu_csi_dest {
  48. IPU_CSI_DEST_IDMAC, /* to memory via SMFC */
  49. IPU_CSI_DEST_IC, /* to Image Converter */
  50. IPU_CSI_DEST_VDIC, /* to VDIC */
  51. };
  52. /*
  53. * Enumeration of IPU rotation modes
  54. */
  55. #define IPU_ROT_BIT_VFLIP (1 << 0)
  56. #define IPU_ROT_BIT_HFLIP (1 << 1)
  57. #define IPU_ROT_BIT_90 (1 << 2)
  58. enum ipu_rotate_mode {
  59. IPU_ROTATE_NONE = 0,
  60. IPU_ROTATE_VERT_FLIP = IPU_ROT_BIT_VFLIP,
  61. IPU_ROTATE_HORIZ_FLIP = IPU_ROT_BIT_HFLIP,
  62. IPU_ROTATE_180 = (IPU_ROT_BIT_VFLIP | IPU_ROT_BIT_HFLIP),
  63. IPU_ROTATE_90_RIGHT = IPU_ROT_BIT_90,
  64. IPU_ROTATE_90_RIGHT_VFLIP = (IPU_ROT_BIT_90 | IPU_ROT_BIT_VFLIP),
  65. IPU_ROTATE_90_RIGHT_HFLIP = (IPU_ROT_BIT_90 | IPU_ROT_BIT_HFLIP),
  66. IPU_ROTATE_90_LEFT = (IPU_ROT_BIT_90 |
  67. IPU_ROT_BIT_VFLIP | IPU_ROT_BIT_HFLIP),
  68. };
  69. /* 90-degree rotations require the IRT unit */
  70. #define ipu_rot_mode_is_irt(m) (((m) & IPU_ROT_BIT_90) != 0)
  71. enum ipu_color_space {
  72. IPUV3_COLORSPACE_RGB,
  73. IPUV3_COLORSPACE_YUV,
  74. IPUV3_COLORSPACE_UNKNOWN,
  75. };
  76. /*
  77. * Enumeration of VDI MOTION select
  78. */
  79. enum ipu_motion_sel {
  80. MOTION_NONE = 0,
  81. LOW_MOTION,
  82. MED_MOTION,
  83. HIGH_MOTION,
  84. };
  85. struct ipuv3_channel;
  86. enum ipu_channel_irq {
  87. IPU_IRQ_EOF = 0,
  88. IPU_IRQ_NFACK = 64,
  89. IPU_IRQ_NFB4EOF = 128,
  90. IPU_IRQ_EOS = 192,
  91. };
  92. /*
  93. * Enumeration of IDMAC channels
  94. */
  95. #define IPUV3_CHANNEL_CSI0 0
  96. #define IPUV3_CHANNEL_CSI1 1
  97. #define IPUV3_CHANNEL_CSI2 2
  98. #define IPUV3_CHANNEL_CSI3 3
  99. #define IPUV3_CHANNEL_VDI_MEM_IC_VF 5
  100. /*
  101. * NOTE: channels 6,7 are unused in the IPU and are not IDMAC channels,
  102. * but the direct CSI->VDI linking is handled the same way as IDMAC
  103. * channel linking in the FSU via the IPU_FS_PROC_FLOW registers, so
  104. * these channel names are used to support the direct CSI->VDI link.
  105. */
  106. #define IPUV3_CHANNEL_CSI_DIRECT 6
  107. #define IPUV3_CHANNEL_CSI_VDI_PREV 7
  108. #define IPUV3_CHANNEL_MEM_VDI_PREV 8
  109. #define IPUV3_CHANNEL_MEM_VDI_CUR 9
  110. #define IPUV3_CHANNEL_MEM_VDI_NEXT 10
  111. #define IPUV3_CHANNEL_MEM_IC_PP 11
  112. #define IPUV3_CHANNEL_MEM_IC_PRP_VF 12
  113. #define IPUV3_CHANNEL_VDI_MEM_RECENT 13
  114. #define IPUV3_CHANNEL_G_MEM_IC_PRP_VF 14
  115. #define IPUV3_CHANNEL_G_MEM_IC_PP 15
  116. #define IPUV3_CHANNEL_G_MEM_IC_PRP_VF_ALPHA 17
  117. #define IPUV3_CHANNEL_G_MEM_IC_PP_ALPHA 18
  118. #define IPUV3_CHANNEL_MEM_VDI_PLANE1_COMB_ALPHA 19
  119. #define IPUV3_CHANNEL_IC_PRP_ENC_MEM 20
  120. #define IPUV3_CHANNEL_IC_PRP_VF_MEM 21
  121. #define IPUV3_CHANNEL_IC_PP_MEM 22
  122. #define IPUV3_CHANNEL_MEM_BG_SYNC 23
  123. #define IPUV3_CHANNEL_MEM_BG_ASYNC 24
  124. #define IPUV3_CHANNEL_MEM_VDI_PLANE1_COMB 25
  125. #define IPUV3_CHANNEL_MEM_VDI_PLANE3_COMB 26
  126. #define IPUV3_CHANNEL_MEM_FG_SYNC 27
  127. #define IPUV3_CHANNEL_MEM_DC_SYNC 28
  128. #define IPUV3_CHANNEL_MEM_FG_ASYNC 29
  129. #define IPUV3_CHANNEL_MEM_FG_SYNC_ALPHA 31
  130. #define IPUV3_CHANNEL_MEM_FG_ASYNC_ALPHA 33
  131. #define IPUV3_CHANNEL_DC_MEM_READ 40
  132. #define IPUV3_CHANNEL_MEM_DC_ASYNC 41
  133. #define IPUV3_CHANNEL_MEM_DC_COMMAND 42
  134. #define IPUV3_CHANNEL_MEM_DC_COMMAND2 43
  135. #define IPUV3_CHANNEL_MEM_DC_OUTPUT_MASK 44
  136. #define IPUV3_CHANNEL_MEM_ROT_ENC 45
  137. #define IPUV3_CHANNEL_MEM_ROT_VF 46
  138. #define IPUV3_CHANNEL_MEM_ROT_PP 47
  139. #define IPUV3_CHANNEL_ROT_ENC_MEM 48
  140. #define IPUV3_CHANNEL_ROT_VF_MEM 49
  141. #define IPUV3_CHANNEL_ROT_PP_MEM 50
  142. #define IPUV3_CHANNEL_MEM_BG_SYNC_ALPHA 51
  143. #define IPUV3_CHANNEL_MEM_BG_ASYNC_ALPHA 52
  144. #define IPUV3_NUM_CHANNELS 64
  145. static inline int ipu_channel_alpha_channel(int ch_num)
  146. {
  147. switch (ch_num) {
  148. case IPUV3_CHANNEL_G_MEM_IC_PRP_VF:
  149. return IPUV3_CHANNEL_G_MEM_IC_PRP_VF_ALPHA;
  150. case IPUV3_CHANNEL_G_MEM_IC_PP:
  151. return IPUV3_CHANNEL_G_MEM_IC_PP_ALPHA;
  152. case IPUV3_CHANNEL_MEM_FG_SYNC:
  153. return IPUV3_CHANNEL_MEM_FG_SYNC_ALPHA;
  154. case IPUV3_CHANNEL_MEM_FG_ASYNC:
  155. return IPUV3_CHANNEL_MEM_FG_ASYNC_ALPHA;
  156. case IPUV3_CHANNEL_MEM_BG_SYNC:
  157. return IPUV3_CHANNEL_MEM_BG_SYNC_ALPHA;
  158. case IPUV3_CHANNEL_MEM_BG_ASYNC:
  159. return IPUV3_CHANNEL_MEM_BG_ASYNC_ALPHA;
  160. case IPUV3_CHANNEL_MEM_VDI_PLANE1_COMB:
  161. return IPUV3_CHANNEL_MEM_VDI_PLANE1_COMB_ALPHA;
  162. default:
  163. return -EINVAL;
  164. }
  165. }
  166. int ipu_map_irq(struct ipu_soc *ipu, int irq);
  167. int ipu_idmac_channel_irq(struct ipu_soc *ipu, struct ipuv3_channel *channel,
  168. enum ipu_channel_irq irq);
  169. #define IPU_IRQ_DP_SF_START (448 + 2)
  170. #define IPU_IRQ_DP_SF_END (448 + 3)
  171. #define IPU_IRQ_BG_SF_END IPU_IRQ_DP_SF_END,
  172. #define IPU_IRQ_DC_FC_0 (448 + 8)
  173. #define IPU_IRQ_DC_FC_1 (448 + 9)
  174. #define IPU_IRQ_DC_FC_2 (448 + 10)
  175. #define IPU_IRQ_DC_FC_3 (448 + 11)
  176. #define IPU_IRQ_DC_FC_4 (448 + 12)
  177. #define IPU_IRQ_DC_FC_6 (448 + 13)
  178. #define IPU_IRQ_VSYNC_PRE_0 (448 + 14)
  179. #define IPU_IRQ_VSYNC_PRE_1 (448 + 15)
  180. /*
  181. * IPU Common functions
  182. */
  183. int ipu_get_num(struct ipu_soc *ipu);
  184. void ipu_set_csi_src_mux(struct ipu_soc *ipu, int csi_id, bool mipi_csi2);
  185. void ipu_set_ic_src_mux(struct ipu_soc *ipu, int csi_id, bool vdi);
  186. void ipu_dump(struct ipu_soc *ipu);
  187. /*
  188. * IPU Image DMA Controller (idmac) functions
  189. */
  190. struct ipuv3_channel *ipu_idmac_get(struct ipu_soc *ipu, unsigned channel);
  191. void ipu_idmac_put(struct ipuv3_channel *);
  192. int ipu_idmac_enable_channel(struct ipuv3_channel *channel);
  193. int ipu_idmac_disable_channel(struct ipuv3_channel *channel);
  194. void ipu_idmac_enable_watermark(struct ipuv3_channel *channel, bool enable);
  195. int ipu_idmac_lock_enable(struct ipuv3_channel *channel, int num_bursts);
  196. int ipu_idmac_wait_busy(struct ipuv3_channel *channel, int ms);
  197. void ipu_idmac_set_double_buffer(struct ipuv3_channel *channel,
  198. bool doublebuffer);
  199. int ipu_idmac_get_current_buffer(struct ipuv3_channel *channel);
  200. bool ipu_idmac_buffer_is_ready(struct ipuv3_channel *channel, u32 buf_num);
  201. void ipu_idmac_select_buffer(struct ipuv3_channel *channel, u32 buf_num);
  202. void ipu_idmac_clear_buffer(struct ipuv3_channel *channel, u32 buf_num);
  203. int ipu_fsu_link(struct ipu_soc *ipu, int src_ch, int sink_ch);
  204. int ipu_fsu_unlink(struct ipu_soc *ipu, int src_ch, int sink_ch);
  205. int ipu_idmac_link(struct ipuv3_channel *src, struct ipuv3_channel *sink);
  206. int ipu_idmac_unlink(struct ipuv3_channel *src, struct ipuv3_channel *sink);
  207. /*
  208. * IPU Channel Parameter Memory (cpmem) functions
  209. */
  210. struct ipu_rgb {
  211. struct fb_bitfield red;
  212. struct fb_bitfield green;
  213. struct fb_bitfield blue;
  214. struct fb_bitfield transp;
  215. int bits_per_pixel;
  216. };
  217. struct ipu_image {
  218. struct v4l2_pix_format pix;
  219. struct v4l2_rect rect;
  220. dma_addr_t phys0;
  221. dma_addr_t phys1;
  222. /* chroma plane offset overrides */
  223. u32 u_offset;
  224. u32 v_offset;
  225. };
  226. void ipu_cpmem_zero(struct ipuv3_channel *ch);
  227. void ipu_cpmem_set_resolution(struct ipuv3_channel *ch, int xres, int yres);
  228. void ipu_cpmem_skip_odd_chroma_rows(struct ipuv3_channel *ch);
  229. void ipu_cpmem_set_stride(struct ipuv3_channel *ch, int stride);
  230. void ipu_cpmem_set_high_priority(struct ipuv3_channel *ch);
  231. void ipu_cpmem_set_buffer(struct ipuv3_channel *ch, int bufnum, dma_addr_t buf);
  232. void ipu_cpmem_set_uv_offset(struct ipuv3_channel *ch, u32 u_off, u32 v_off);
  233. void ipu_cpmem_interlaced_scan(struct ipuv3_channel *ch, int stride,
  234. u32 pixelformat);
  235. void ipu_cpmem_set_axi_id(struct ipuv3_channel *ch, u32 id);
  236. int ipu_cpmem_get_burstsize(struct ipuv3_channel *ch);
  237. void ipu_cpmem_set_burstsize(struct ipuv3_channel *ch, int burstsize);
  238. void ipu_cpmem_set_block_mode(struct ipuv3_channel *ch);
  239. void ipu_cpmem_set_rotation(struct ipuv3_channel *ch,
  240. enum ipu_rotate_mode rot);
  241. int ipu_cpmem_set_format_rgb(struct ipuv3_channel *ch,
  242. const struct ipu_rgb *rgb);
  243. int ipu_cpmem_set_format_passthrough(struct ipuv3_channel *ch, int width);
  244. void ipu_cpmem_set_yuv_interleaved(struct ipuv3_channel *ch, u32 pixel_format);
  245. void ipu_cpmem_set_yuv_planar_full(struct ipuv3_channel *ch,
  246. unsigned int uv_stride,
  247. unsigned int u_offset,
  248. unsigned int v_offset);
  249. int ipu_cpmem_set_fmt(struct ipuv3_channel *ch, u32 drm_fourcc);
  250. int ipu_cpmem_set_image(struct ipuv3_channel *ch, struct ipu_image *image);
  251. void ipu_cpmem_dump(struct ipuv3_channel *ch);
  252. /*
  253. * IPU Display Controller (dc) functions
  254. */
  255. struct ipu_dc;
  256. struct ipu_di;
  257. struct ipu_dc *ipu_dc_get(struct ipu_soc *ipu, int channel);
  258. void ipu_dc_put(struct ipu_dc *dc);
  259. int ipu_dc_init_sync(struct ipu_dc *dc, struct ipu_di *di, bool interlaced,
  260. u32 pixel_fmt, u32 width);
  261. void ipu_dc_enable(struct ipu_soc *ipu);
  262. void ipu_dc_enable_channel(struct ipu_dc *dc);
  263. void ipu_dc_disable_channel(struct ipu_dc *dc);
  264. void ipu_dc_disable(struct ipu_soc *ipu);
  265. /*
  266. * IPU Display Interface (di) functions
  267. */
  268. struct ipu_di *ipu_di_get(struct ipu_soc *ipu, int disp);
  269. void ipu_di_put(struct ipu_di *);
  270. int ipu_di_disable(struct ipu_di *);
  271. int ipu_di_enable(struct ipu_di *);
  272. int ipu_di_get_num(struct ipu_di *);
  273. int ipu_di_adjust_videomode(struct ipu_di *di, struct videomode *mode);
  274. int ipu_di_init_sync_panel(struct ipu_di *, struct ipu_di_signal_cfg *sig);
  275. /*
  276. * IPU Display Multi FIFO Controller (dmfc) functions
  277. */
  278. struct dmfc_channel;
  279. int ipu_dmfc_enable_channel(struct dmfc_channel *dmfc);
  280. void ipu_dmfc_disable_channel(struct dmfc_channel *dmfc);
  281. void ipu_dmfc_config_wait4eot(struct dmfc_channel *dmfc, int width);
  282. struct dmfc_channel *ipu_dmfc_get(struct ipu_soc *ipu, int ipuv3_channel);
  283. void ipu_dmfc_put(struct dmfc_channel *dmfc);
  284. /*
  285. * IPU Display Processor (dp) functions
  286. */
  287. #define IPU_DP_FLOW_SYNC_BG 0
  288. #define IPU_DP_FLOW_SYNC_FG 1
  289. #define IPU_DP_FLOW_ASYNC0_BG 2
  290. #define IPU_DP_FLOW_ASYNC0_FG 3
  291. #define IPU_DP_FLOW_ASYNC1_BG 4
  292. #define IPU_DP_FLOW_ASYNC1_FG 5
  293. struct ipu_dp *ipu_dp_get(struct ipu_soc *ipu, unsigned int flow);
  294. void ipu_dp_put(struct ipu_dp *);
  295. int ipu_dp_enable(struct ipu_soc *ipu);
  296. int ipu_dp_enable_channel(struct ipu_dp *dp);
  297. void ipu_dp_disable_channel(struct ipu_dp *dp, bool sync);
  298. void ipu_dp_disable(struct ipu_soc *ipu);
  299. int ipu_dp_setup_channel(struct ipu_dp *dp,
  300. enum drm_color_encoding ycbcr_enc, enum drm_color_range range,
  301. enum ipu_color_space in, enum ipu_color_space out);
  302. int ipu_dp_set_window_pos(struct ipu_dp *, u16 x_pos, u16 y_pos);
  303. int ipu_dp_set_global_alpha(struct ipu_dp *dp, bool enable, u8 alpha,
  304. bool bg_chan);
  305. /*
  306. * IPU Prefetch Resolve Gasket (prg) functions
  307. */
  308. int ipu_prg_max_active_channels(void);
  309. bool ipu_prg_present(struct ipu_soc *ipu);
  310. bool ipu_prg_format_supported(struct ipu_soc *ipu, uint32_t format,
  311. uint64_t modifier);
  312. int ipu_prg_enable(struct ipu_soc *ipu);
  313. void ipu_prg_disable(struct ipu_soc *ipu);
  314. void ipu_prg_channel_disable(struct ipuv3_channel *ipu_chan);
  315. int ipu_prg_channel_configure(struct ipuv3_channel *ipu_chan,
  316. unsigned int axi_id, unsigned int width,
  317. unsigned int height, unsigned int stride,
  318. u32 format, uint64_t modifier, unsigned long *eba);
  319. bool ipu_prg_channel_configure_pending(struct ipuv3_channel *ipu_chan);
  320. /*
  321. * IPU CMOS Sensor Interface (csi) functions
  322. */
  323. struct ipu_csi;
  324. int ipu_csi_init_interface(struct ipu_csi *csi,
  325. const struct v4l2_mbus_config *mbus_cfg,
  326. const struct v4l2_mbus_framefmt *infmt,
  327. const struct v4l2_mbus_framefmt *outfmt);
  328. bool ipu_csi_is_interlaced(struct ipu_csi *csi);
  329. void ipu_csi_get_window(struct ipu_csi *csi, struct v4l2_rect *w);
  330. void ipu_csi_set_window(struct ipu_csi *csi, struct v4l2_rect *w);
  331. void ipu_csi_set_downsize(struct ipu_csi *csi, bool horiz, bool vert);
  332. void ipu_csi_set_test_generator(struct ipu_csi *csi, bool active,
  333. u32 r_value, u32 g_value, u32 b_value,
  334. u32 pix_clk);
  335. int ipu_csi_set_mipi_datatype(struct ipu_csi *csi, u32 vc,
  336. struct v4l2_mbus_framefmt *mbus_fmt);
  337. int ipu_csi_set_skip_smfc(struct ipu_csi *csi, u32 skip,
  338. u32 max_ratio, u32 id);
  339. int ipu_csi_set_dest(struct ipu_csi *csi, enum ipu_csi_dest csi_dest);
  340. int ipu_csi_enable(struct ipu_csi *csi);
  341. int ipu_csi_disable(struct ipu_csi *csi);
  342. struct ipu_csi *ipu_csi_get(struct ipu_soc *ipu, int id);
  343. void ipu_csi_put(struct ipu_csi *csi);
  344. void ipu_csi_dump(struct ipu_csi *csi);
  345. /*
  346. * IPU Image Converter (ic) functions
  347. */
  348. enum ipu_ic_task {
  349. IC_TASK_ENCODER,
  350. IC_TASK_VIEWFINDER,
  351. IC_TASK_POST_PROCESSOR,
  352. IC_NUM_TASKS,
  353. };
  354. /*
  355. * The parameters that describe a colorspace according to the
  356. * Image Converter:
  357. * - Y'CbCr encoding
  358. * - quantization
  359. * - "colorspace" (RGB or YUV).
  360. */
  361. struct ipu_ic_colorspace {
  362. enum v4l2_ycbcr_encoding enc;
  363. enum v4l2_quantization quant;
  364. enum ipu_color_space cs;
  365. };
  366. static inline void
  367. ipu_ic_fill_colorspace(struct ipu_ic_colorspace *ic_cs,
  368. enum v4l2_ycbcr_encoding enc,
  369. enum v4l2_quantization quant,
  370. enum ipu_color_space cs)
  371. {
  372. ic_cs->enc = enc;
  373. ic_cs->quant = quant;
  374. ic_cs->cs = cs;
  375. }
  376. struct ipu_ic_csc_params {
  377. s16 coeff[3][3]; /* signed 9-bit integer coefficients */
  378. s16 offset[3]; /* signed 11+2-bit fixed point offset */
  379. u8 scale:2; /* scale coefficients * 2^(scale-1) */
  380. bool sat:1; /* saturate to (16, 235(Y) / 240(U, V)) */
  381. };
  382. struct ipu_ic_csc {
  383. struct ipu_ic_colorspace in_cs;
  384. struct ipu_ic_colorspace out_cs;
  385. struct ipu_ic_csc_params params;
  386. };
  387. struct ipu_ic;
  388. int __ipu_ic_calc_csc(struct ipu_ic_csc *csc);
  389. int ipu_ic_calc_csc(struct ipu_ic_csc *csc,
  390. enum v4l2_ycbcr_encoding in_enc,
  391. enum v4l2_quantization in_quant,
  392. enum ipu_color_space in_cs,
  393. enum v4l2_ycbcr_encoding out_enc,
  394. enum v4l2_quantization out_quant,
  395. enum ipu_color_space out_cs);
  396. int ipu_ic_task_init(struct ipu_ic *ic,
  397. const struct ipu_ic_csc *csc,
  398. int in_width, int in_height,
  399. int out_width, int out_height);
  400. int ipu_ic_task_init_rsc(struct ipu_ic *ic,
  401. const struct ipu_ic_csc *csc,
  402. int in_width, int in_height,
  403. int out_width, int out_height,
  404. u32 rsc);
  405. int ipu_ic_task_graphics_init(struct ipu_ic *ic,
  406. const struct ipu_ic_colorspace *g_in_cs,
  407. bool galpha_en, u32 galpha,
  408. bool colorkey_en, u32 colorkey);
  409. void ipu_ic_task_enable(struct ipu_ic *ic);
  410. void ipu_ic_task_disable(struct ipu_ic *ic);
  411. int ipu_ic_task_idma_init(struct ipu_ic *ic, struct ipuv3_channel *channel,
  412. u32 width, u32 height, int burst_size,
  413. enum ipu_rotate_mode rot);
  414. int ipu_ic_enable(struct ipu_ic *ic);
  415. int ipu_ic_disable(struct ipu_ic *ic);
  416. struct ipu_ic *ipu_ic_get(struct ipu_soc *ipu, enum ipu_ic_task task);
  417. void ipu_ic_put(struct ipu_ic *ic);
  418. void ipu_ic_dump(struct ipu_ic *ic);
  419. /*
  420. * IPU Video De-Interlacer (vdi) functions
  421. */
  422. struct ipu_vdi;
  423. void ipu_vdi_set_field_order(struct ipu_vdi *vdi, v4l2_std_id std, u32 field);
  424. void ipu_vdi_set_motion(struct ipu_vdi *vdi, enum ipu_motion_sel motion_sel);
  425. void ipu_vdi_setup(struct ipu_vdi *vdi, u32 code, int xres, int yres);
  426. void ipu_vdi_unsetup(struct ipu_vdi *vdi);
  427. int ipu_vdi_enable(struct ipu_vdi *vdi);
  428. int ipu_vdi_disable(struct ipu_vdi *vdi);
  429. struct ipu_vdi *ipu_vdi_get(struct ipu_soc *ipu);
  430. void ipu_vdi_put(struct ipu_vdi *vdi);
  431. /*
  432. * IPU Sensor Multiple FIFO Controller (SMFC) functions
  433. */
  434. struct ipu_smfc *ipu_smfc_get(struct ipu_soc *ipu, unsigned int chno);
  435. void ipu_smfc_put(struct ipu_smfc *smfc);
  436. int ipu_smfc_enable(struct ipu_smfc *smfc);
  437. int ipu_smfc_disable(struct ipu_smfc *smfc);
  438. int ipu_smfc_map_channel(struct ipu_smfc *smfc, int csi_id, int mipi_id);
  439. int ipu_smfc_set_burstsize(struct ipu_smfc *smfc, int burstsize);
  440. int ipu_smfc_set_watermark(struct ipu_smfc *smfc, u32 set_level, u32 clr_level);
  441. enum ipu_color_space ipu_drm_fourcc_to_colorspace(u32 drm_fourcc);
  442. enum ipu_color_space ipu_pixelformat_to_colorspace(u32 pixelformat);
  443. int ipu_degrees_to_rot_mode(enum ipu_rotate_mode *mode, int degrees,
  444. bool hflip, bool vflip);
  445. int ipu_rot_mode_to_degrees(int *degrees, enum ipu_rotate_mode mode,
  446. bool hflip, bool vflip);
  447. struct ipu_client_platformdata {
  448. int csi;
  449. int di;
  450. int dc;
  451. int dp;
  452. int dma[2];
  453. struct device_node *of_node;
  454. };
  455. #endif /* __DRM_IPU_H__ */