imx-ipu-v3.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  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 <media/v4l2-mediabus.h>
  18. struct ipu_soc;
  19. enum ipuv3_type {
  20. IPUV3EX,
  21. IPUV3M,
  22. IPUV3H,
  23. };
  24. #define IPU_PIX_FMT_GBR24 v4l2_fourcc('G', 'B', 'R', '3')
  25. /*
  26. * Bitfield of Display Interface signal polarities.
  27. */
  28. struct ipu_di_signal_cfg {
  29. unsigned datamask_en:1;
  30. unsigned interlaced:1;
  31. unsigned odd_field_first:1;
  32. unsigned clksel_en:1;
  33. unsigned clkidle_en:1;
  34. unsigned data_pol:1; /* true = inverted */
  35. unsigned clk_pol:1; /* true = rising edge */
  36. unsigned enable_pol:1;
  37. unsigned Hsync_pol:1; /* true = active high */
  38. unsigned Vsync_pol:1;
  39. u16 width;
  40. u16 height;
  41. u32 pixel_fmt;
  42. u16 h_start_width;
  43. u16 h_sync_width;
  44. u16 h_end_width;
  45. u16 v_start_width;
  46. u16 v_sync_width;
  47. u16 v_end_width;
  48. u32 v_to_h_sync;
  49. unsigned long pixelclock;
  50. #define IPU_DI_CLKMODE_SYNC (1 << 0)
  51. #define IPU_DI_CLKMODE_EXT (1 << 1)
  52. unsigned long clkflags;
  53. u8 hsync_pin;
  54. u8 vsync_pin;
  55. };
  56. /*
  57. * Enumeration of CSI destinations
  58. */
  59. enum ipu_csi_dest {
  60. IPU_CSI_DEST_IDMAC, /* to memory via SMFC */
  61. IPU_CSI_DEST_IC, /* to Image Converter */
  62. IPU_CSI_DEST_VDIC, /* to VDIC */
  63. };
  64. /*
  65. * Enumeration of IPU rotation modes
  66. */
  67. enum ipu_rotate_mode {
  68. IPU_ROTATE_NONE = 0,
  69. IPU_ROTATE_VERT_FLIP,
  70. IPU_ROTATE_HORIZ_FLIP,
  71. IPU_ROTATE_180,
  72. IPU_ROTATE_90_RIGHT,
  73. IPU_ROTATE_90_RIGHT_VFLIP,
  74. IPU_ROTATE_90_RIGHT_HFLIP,
  75. IPU_ROTATE_90_LEFT,
  76. };
  77. enum ipu_color_space {
  78. IPUV3_COLORSPACE_RGB,
  79. IPUV3_COLORSPACE_YUV,
  80. IPUV3_COLORSPACE_UNKNOWN,
  81. };
  82. struct ipuv3_channel;
  83. enum ipu_channel_irq {
  84. IPU_IRQ_EOF = 0,
  85. IPU_IRQ_NFACK = 64,
  86. IPU_IRQ_NFB4EOF = 128,
  87. IPU_IRQ_EOS = 192,
  88. };
  89. /*
  90. * Enumeration of IDMAC channels
  91. */
  92. #define IPUV3_CHANNEL_CSI0 0
  93. #define IPUV3_CHANNEL_CSI1 1
  94. #define IPUV3_CHANNEL_CSI2 2
  95. #define IPUV3_CHANNEL_CSI3 3
  96. #define IPUV3_CHANNEL_VDI_MEM_IC_VF 5
  97. #define IPUV3_CHANNEL_MEM_IC_PP 11
  98. #define IPUV3_CHANNEL_MEM_IC_PRP_VF 12
  99. #define IPUV3_CHANNEL_G_MEM_IC_PRP_VF 14
  100. #define IPUV3_CHANNEL_G_MEM_IC_PP 15
  101. #define IPUV3_CHANNEL_IC_PRP_ENC_MEM 20
  102. #define IPUV3_CHANNEL_IC_PRP_VF_MEM 21
  103. #define IPUV3_CHANNEL_IC_PP_MEM 22
  104. #define IPUV3_CHANNEL_MEM_BG_SYNC 23
  105. #define IPUV3_CHANNEL_MEM_BG_ASYNC 24
  106. #define IPUV3_CHANNEL_MEM_FG_SYNC 27
  107. #define IPUV3_CHANNEL_MEM_DC_SYNC 28
  108. #define IPUV3_CHANNEL_MEM_FG_ASYNC 29
  109. #define IPUV3_CHANNEL_MEM_FG_SYNC_ALPHA 31
  110. #define IPUV3_CHANNEL_MEM_DC_ASYNC 41
  111. #define IPUV3_CHANNEL_MEM_ROT_ENC 45
  112. #define IPUV3_CHANNEL_MEM_ROT_VF 46
  113. #define IPUV3_CHANNEL_MEM_ROT_PP 47
  114. #define IPUV3_CHANNEL_ROT_ENC_MEM 48
  115. #define IPUV3_CHANNEL_ROT_VF_MEM 49
  116. #define IPUV3_CHANNEL_ROT_PP_MEM 50
  117. #define IPUV3_CHANNEL_MEM_BG_SYNC_ALPHA 51
  118. int ipu_map_irq(struct ipu_soc *ipu, int irq);
  119. int ipu_idmac_channel_irq(struct ipu_soc *ipu, struct ipuv3_channel *channel,
  120. enum ipu_channel_irq irq);
  121. #define IPU_IRQ_DP_SF_START (448 + 2)
  122. #define IPU_IRQ_DP_SF_END (448 + 3)
  123. #define IPU_IRQ_BG_SF_END IPU_IRQ_DP_SF_END,
  124. #define IPU_IRQ_DC_FC_0 (448 + 8)
  125. #define IPU_IRQ_DC_FC_1 (448 + 9)
  126. #define IPU_IRQ_DC_FC_2 (448 + 10)
  127. #define IPU_IRQ_DC_FC_3 (448 + 11)
  128. #define IPU_IRQ_DC_FC_4 (448 + 12)
  129. #define IPU_IRQ_DC_FC_6 (448 + 13)
  130. #define IPU_IRQ_VSYNC_PRE_0 (448 + 14)
  131. #define IPU_IRQ_VSYNC_PRE_1 (448 + 15)
  132. /*
  133. * IPU Common functions
  134. */
  135. void ipu_set_csi_src_mux(struct ipu_soc *ipu, int csi_id, bool mipi_csi2);
  136. void ipu_set_ic_src_mux(struct ipu_soc *ipu, int csi_id, bool vdi);
  137. void ipu_dump(struct ipu_soc *ipu);
  138. /*
  139. * IPU Image DMA Controller (idmac) functions
  140. */
  141. struct ipuv3_channel *ipu_idmac_get(struct ipu_soc *ipu, unsigned channel);
  142. void ipu_idmac_put(struct ipuv3_channel *);
  143. int ipu_idmac_enable_channel(struct ipuv3_channel *channel);
  144. int ipu_idmac_disable_channel(struct ipuv3_channel *channel);
  145. void ipu_idmac_enable_watermark(struct ipuv3_channel *channel, bool enable);
  146. int ipu_idmac_lock_enable(struct ipuv3_channel *channel, int num_bursts);
  147. int ipu_idmac_wait_busy(struct ipuv3_channel *channel, int ms);
  148. void ipu_idmac_set_double_buffer(struct ipuv3_channel *channel,
  149. bool doublebuffer);
  150. int ipu_idmac_get_current_buffer(struct ipuv3_channel *channel);
  151. bool ipu_idmac_buffer_is_ready(struct ipuv3_channel *channel, u32 buf_num);
  152. void ipu_idmac_select_buffer(struct ipuv3_channel *channel, u32 buf_num);
  153. void ipu_idmac_clear_buffer(struct ipuv3_channel *channel, u32 buf_num);
  154. /*
  155. * IPU Channel Parameter Memory (cpmem) functions
  156. */
  157. struct ipu_rgb {
  158. struct fb_bitfield red;
  159. struct fb_bitfield green;
  160. struct fb_bitfield blue;
  161. struct fb_bitfield transp;
  162. int bits_per_pixel;
  163. };
  164. struct ipu_image {
  165. struct v4l2_pix_format pix;
  166. struct v4l2_rect rect;
  167. dma_addr_t phys0;
  168. dma_addr_t phys1;
  169. };
  170. void ipu_cpmem_zero(struct ipuv3_channel *ch);
  171. void ipu_cpmem_set_resolution(struct ipuv3_channel *ch, int xres, int yres);
  172. void ipu_cpmem_set_stride(struct ipuv3_channel *ch, int stride);
  173. void ipu_cpmem_set_high_priority(struct ipuv3_channel *ch);
  174. void ipu_cpmem_set_buffer(struct ipuv3_channel *ch, int bufnum, dma_addr_t buf);
  175. void ipu_cpmem_interlaced_scan(struct ipuv3_channel *ch, int stride);
  176. void ipu_cpmem_set_axi_id(struct ipuv3_channel *ch, u32 id);
  177. void ipu_cpmem_set_burstsize(struct ipuv3_channel *ch, int burstsize);
  178. void ipu_cpmem_set_block_mode(struct ipuv3_channel *ch);
  179. void ipu_cpmem_set_rotation(struct ipuv3_channel *ch,
  180. enum ipu_rotate_mode rot);
  181. int ipu_cpmem_set_format_rgb(struct ipuv3_channel *ch,
  182. const struct ipu_rgb *rgb);
  183. int ipu_cpmem_set_format_passthrough(struct ipuv3_channel *ch, int width);
  184. void ipu_cpmem_set_yuv_interleaved(struct ipuv3_channel *ch, u32 pixel_format);
  185. void ipu_cpmem_set_yuv_planar_full(struct ipuv3_channel *ch,
  186. u32 pixel_format, int stride,
  187. int u_offset, int v_offset);
  188. void ipu_cpmem_set_yuv_planar(struct ipuv3_channel *ch,
  189. u32 pixel_format, int stride, int height);
  190. int ipu_cpmem_set_fmt(struct ipuv3_channel *ch, u32 drm_fourcc);
  191. int ipu_cpmem_set_image(struct ipuv3_channel *ch, struct ipu_image *image);
  192. void ipu_cpmem_dump(struct ipuv3_channel *ch);
  193. /*
  194. * IPU Display Controller (dc) functions
  195. */
  196. struct ipu_dc;
  197. struct ipu_di;
  198. struct ipu_dc *ipu_dc_get(struct ipu_soc *ipu, int channel);
  199. void ipu_dc_put(struct ipu_dc *dc);
  200. int ipu_dc_init_sync(struct ipu_dc *dc, struct ipu_di *di, bool interlaced,
  201. u32 pixel_fmt, u32 width);
  202. void ipu_dc_enable(struct ipu_soc *ipu);
  203. void ipu_dc_enable_channel(struct ipu_dc *dc);
  204. void ipu_dc_disable_channel(struct ipu_dc *dc);
  205. void ipu_dc_disable(struct ipu_soc *ipu);
  206. /*
  207. * IPU Display Interface (di) functions
  208. */
  209. struct ipu_di *ipu_di_get(struct ipu_soc *ipu, int disp);
  210. void ipu_di_put(struct ipu_di *);
  211. int ipu_di_disable(struct ipu_di *);
  212. int ipu_di_enable(struct ipu_di *);
  213. int ipu_di_get_num(struct ipu_di *);
  214. int ipu_di_init_sync_panel(struct ipu_di *, struct ipu_di_signal_cfg *sig);
  215. /*
  216. * IPU Display Multi FIFO Controller (dmfc) functions
  217. */
  218. struct dmfc_channel;
  219. int ipu_dmfc_enable_channel(struct dmfc_channel *dmfc);
  220. void ipu_dmfc_disable_channel(struct dmfc_channel *dmfc);
  221. int ipu_dmfc_alloc_bandwidth(struct dmfc_channel *dmfc,
  222. unsigned long bandwidth_mbs, int burstsize);
  223. void ipu_dmfc_free_bandwidth(struct dmfc_channel *dmfc);
  224. int ipu_dmfc_init_channel(struct dmfc_channel *dmfc, int width);
  225. struct dmfc_channel *ipu_dmfc_get(struct ipu_soc *ipu, int ipuv3_channel);
  226. void ipu_dmfc_put(struct dmfc_channel *dmfc);
  227. /*
  228. * IPU Display Processor (dp) functions
  229. */
  230. #define IPU_DP_FLOW_SYNC_BG 0
  231. #define IPU_DP_FLOW_SYNC_FG 1
  232. #define IPU_DP_FLOW_ASYNC0_BG 2
  233. #define IPU_DP_FLOW_ASYNC0_FG 3
  234. #define IPU_DP_FLOW_ASYNC1_BG 4
  235. #define IPU_DP_FLOW_ASYNC1_FG 5
  236. struct ipu_dp *ipu_dp_get(struct ipu_soc *ipu, unsigned int flow);
  237. void ipu_dp_put(struct ipu_dp *);
  238. int ipu_dp_enable(struct ipu_soc *ipu);
  239. int ipu_dp_enable_channel(struct ipu_dp *dp);
  240. void ipu_dp_disable_channel(struct ipu_dp *dp);
  241. void ipu_dp_disable(struct ipu_soc *ipu);
  242. int ipu_dp_setup_channel(struct ipu_dp *dp,
  243. enum ipu_color_space in, enum ipu_color_space out);
  244. int ipu_dp_set_window_pos(struct ipu_dp *, u16 x_pos, u16 y_pos);
  245. int ipu_dp_set_global_alpha(struct ipu_dp *dp, bool enable, u8 alpha,
  246. bool bg_chan);
  247. /*
  248. * IPU CMOS Sensor Interface (csi) functions
  249. */
  250. struct ipu_csi;
  251. int ipu_csi_init_interface(struct ipu_csi *csi,
  252. struct v4l2_mbus_config *mbus_cfg,
  253. struct v4l2_mbus_framefmt *mbus_fmt);
  254. bool ipu_csi_is_interlaced(struct ipu_csi *csi);
  255. void ipu_csi_get_window(struct ipu_csi *csi, struct v4l2_rect *w);
  256. void ipu_csi_set_window(struct ipu_csi *csi, struct v4l2_rect *w);
  257. void ipu_csi_set_test_generator(struct ipu_csi *csi, bool active,
  258. u32 r_value, u32 g_value, u32 b_value,
  259. u32 pix_clk);
  260. int ipu_csi_set_mipi_datatype(struct ipu_csi *csi, u32 vc,
  261. struct v4l2_mbus_framefmt *mbus_fmt);
  262. int ipu_csi_set_skip_smfc(struct ipu_csi *csi, u32 skip,
  263. u32 max_ratio, u32 id);
  264. int ipu_csi_set_dest(struct ipu_csi *csi, enum ipu_csi_dest csi_dest);
  265. int ipu_csi_enable(struct ipu_csi *csi);
  266. int ipu_csi_disable(struct ipu_csi *csi);
  267. struct ipu_csi *ipu_csi_get(struct ipu_soc *ipu, int id);
  268. void ipu_csi_put(struct ipu_csi *csi);
  269. void ipu_csi_dump(struct ipu_csi *csi);
  270. /*
  271. * IPU Image Converter (ic) functions
  272. */
  273. enum ipu_ic_task {
  274. IC_TASK_ENCODER,
  275. IC_TASK_VIEWFINDER,
  276. IC_TASK_POST_PROCESSOR,
  277. IC_NUM_TASKS,
  278. };
  279. struct ipu_ic;
  280. int ipu_ic_task_init(struct ipu_ic *ic,
  281. int in_width, int in_height,
  282. int out_width, int out_height,
  283. enum ipu_color_space in_cs,
  284. enum ipu_color_space out_cs);
  285. int ipu_ic_task_graphics_init(struct ipu_ic *ic,
  286. enum ipu_color_space in_g_cs,
  287. bool galpha_en, u32 galpha,
  288. bool colorkey_en, u32 colorkey);
  289. void ipu_ic_task_enable(struct ipu_ic *ic);
  290. void ipu_ic_task_disable(struct ipu_ic *ic);
  291. int ipu_ic_task_idma_init(struct ipu_ic *ic, struct ipuv3_channel *channel,
  292. u32 width, u32 height, int burst_size,
  293. enum ipu_rotate_mode rot);
  294. int ipu_ic_enable(struct ipu_ic *ic);
  295. int ipu_ic_disable(struct ipu_ic *ic);
  296. struct ipu_ic *ipu_ic_get(struct ipu_soc *ipu, enum ipu_ic_task task);
  297. void ipu_ic_put(struct ipu_ic *ic);
  298. void ipu_ic_dump(struct ipu_ic *ic);
  299. /*
  300. * IPU Sensor Multiple FIFO Controller (SMFC) functions
  301. */
  302. struct ipu_smfc *ipu_smfc_get(struct ipu_soc *ipu, unsigned int chno);
  303. void ipu_smfc_put(struct ipu_smfc *smfc);
  304. int ipu_smfc_enable(struct ipu_smfc *smfc);
  305. int ipu_smfc_disable(struct ipu_smfc *smfc);
  306. int ipu_smfc_map_channel(struct ipu_smfc *smfc, int csi_id, int mipi_id);
  307. int ipu_smfc_set_burstsize(struct ipu_smfc *smfc, int burstsize);
  308. int ipu_smfc_set_watermark(struct ipu_smfc *smfc, u32 set_level, u32 clr_level);
  309. enum ipu_color_space ipu_drm_fourcc_to_colorspace(u32 drm_fourcc);
  310. enum ipu_color_space ipu_pixelformat_to_colorspace(u32 pixelformat);
  311. enum ipu_color_space ipu_mbus_code_to_colorspace(u32 mbus_code);
  312. int ipu_stride_to_bytes(u32 pixel_stride, u32 pixelformat);
  313. bool ipu_pixelformat_is_planar(u32 pixelformat);
  314. int ipu_degrees_to_rot_mode(enum ipu_rotate_mode *mode, int degrees,
  315. bool hflip, bool vflip);
  316. int ipu_rot_mode_to_degrees(int *degrees, enum ipu_rotate_mode mode,
  317. bool hflip, bool vflip);
  318. struct ipu_client_platformdata {
  319. int csi;
  320. int di;
  321. int dc;
  322. int dp;
  323. int dmfc;
  324. int dma[2];
  325. };
  326. #endif /* __DRM_IPU_H__ */