]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/video/imx-ipu-v3.h
Merge tag 'ktest-v3.18' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[mirror_ubuntu-artful-kernel.git] / include / video / imx-ipu-v3.h
CommitLineData
aecfbdb1
SH
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
12#ifndef __DRM_IPU_H__
13#define __DRM_IPU_H__
14
15#include <linux/types.h>
16#include <linux/videodev2.h>
17#include <linux/bitmap.h>
18#include <linux/fb.h>
aecfbdb1
SH
19
20struct ipu_soc;
21
22enum ipuv3_type {
23 IPUV3EX,
24 IPUV3M,
25 IPUV3H,
26};
27
7f4392aa
PZ
28#define IPU_PIX_FMT_GBR24 v4l2_fourcc('G', 'B', 'R', '3')
29
aecfbdb1
SH
30/*
31 * Bitfield of Display Interface signal polarities.
32 */
33struct ipu_di_signal_cfg {
34 unsigned datamask_en:1;
35 unsigned interlaced:1;
36 unsigned odd_field_first:1;
37 unsigned clksel_en:1;
38 unsigned clkidle_en:1;
39 unsigned data_pol:1; /* true = inverted */
40 unsigned clk_pol:1; /* true = rising edge */
41 unsigned enable_pol:1;
42 unsigned Hsync_pol:1; /* true = active high */
43 unsigned Vsync_pol:1;
44
45 u16 width;
46 u16 height;
47 u32 pixel_fmt;
48 u16 h_start_width;
49 u16 h_sync_width;
50 u16 h_end_width;
51 u16 v_start_width;
52 u16 v_sync_width;
53 u16 v_end_width;
54 u32 v_to_h_sync;
55 unsigned long pixelclock;
56#define IPU_DI_CLKMODE_SYNC (1 << 0)
57#define IPU_DI_CLKMODE_EXT (1 << 1)
58 unsigned long clkflags;
2ea42608
PZ
59
60 u8 hsync_pin;
61 u8 vsync_pin;
aecfbdb1
SH
62};
63
64enum ipu_color_space {
65 IPUV3_COLORSPACE_RGB,
66 IPUV3_COLORSPACE_YUV,
67 IPUV3_COLORSPACE_UNKNOWN,
68};
69
70struct ipuv3_channel;
71
72enum ipu_channel_irq {
73 IPU_IRQ_EOF = 0,
74 IPU_IRQ_NFACK = 64,
75 IPU_IRQ_NFB4EOF = 128,
76 IPU_IRQ_EOS = 192,
77};
78
861a50c1 79int ipu_map_irq(struct ipu_soc *ipu, int irq);
aecfbdb1
SH
80int ipu_idmac_channel_irq(struct ipu_soc *ipu, struct ipuv3_channel *channel,
81 enum ipu_channel_irq irq);
82
83#define IPU_IRQ_DP_SF_START (448 + 2)
84#define IPU_IRQ_DP_SF_END (448 + 3)
85#define IPU_IRQ_BG_SF_END IPU_IRQ_DP_SF_END,
86#define IPU_IRQ_DC_FC_0 (448 + 8)
87#define IPU_IRQ_DC_FC_1 (448 + 9)
88#define IPU_IRQ_DC_FC_2 (448 + 10)
89#define IPU_IRQ_DC_FC_3 (448 + 11)
90#define IPU_IRQ_DC_FC_4 (448 + 12)
91#define IPU_IRQ_DC_FC_6 (448 + 13)
92#define IPU_IRQ_VSYNC_PRE_0 (448 + 14)
93#define IPU_IRQ_VSYNC_PRE_1 (448 + 15)
94
95/*
96 * IPU Image DMA Controller (idmac) functions
97 */
98struct ipuv3_channel *ipu_idmac_get(struct ipu_soc *ipu, unsigned channel);
99void ipu_idmac_put(struct ipuv3_channel *);
100
101int ipu_idmac_enable_channel(struct ipuv3_channel *channel);
102int ipu_idmac_disable_channel(struct ipuv3_channel *channel);
fb822a39 103int ipu_idmac_wait_busy(struct ipuv3_channel *channel, int ms);
aecfbdb1
SH
104
105void ipu_idmac_set_double_buffer(struct ipuv3_channel *channel,
106 bool doublebuffer);
e9046097 107int ipu_idmac_get_current_buffer(struct ipuv3_channel *channel);
aecfbdb1
SH
108void ipu_idmac_select_buffer(struct ipuv3_channel *channel, u32 buf_num);
109
7d2691da
SL
110/*
111 * IPU Channel Parameter Memory (cpmem) functions
112 */
113struct ipu_rgb {
114 struct fb_bitfield red;
115 struct fb_bitfield green;
116 struct fb_bitfield blue;
117 struct fb_bitfield transp;
118 int bits_per_pixel;
119};
120
121struct ipu_image {
122 struct v4l2_pix_format pix;
123 struct v4l2_rect rect;
124 dma_addr_t phys;
125};
126
127void ipu_cpmem_zero(struct ipuv3_channel *ch);
128void ipu_cpmem_set_resolution(struct ipuv3_channel *ch, int xres, int yres);
129void ipu_cpmem_set_stride(struct ipuv3_channel *ch, int stride);
130void ipu_cpmem_set_high_priority(struct ipuv3_channel *ch);
131void ipu_cpmem_set_buffer(struct ipuv3_channel *ch, int bufnum, dma_addr_t buf);
132void ipu_cpmem_interlaced_scan(struct ipuv3_channel *ch, int stride);
133void ipu_cpmem_set_burstsize(struct ipuv3_channel *ch, int burstsize);
134int ipu_cpmem_set_format_rgb(struct ipuv3_channel *ch,
135 const struct ipu_rgb *rgb);
136int ipu_cpmem_set_format_passthrough(struct ipuv3_channel *ch, int width);
137void ipu_cpmem_set_yuv_interleaved(struct ipuv3_channel *ch, u32 pixel_format);
138void ipu_cpmem_set_yuv_planar_full(struct ipuv3_channel *ch,
139 u32 pixel_format, int stride,
140 int u_offset, int v_offset);
141void ipu_cpmem_set_yuv_planar(struct ipuv3_channel *ch,
142 u32 pixel_format, int stride, int height);
143int ipu_cpmem_set_fmt(struct ipuv3_channel *ch, u32 drm_fourcc);
144int ipu_cpmem_set_image(struct ipuv3_channel *ch, struct ipu_image *image);
145
aecfbdb1
SH
146/*
147 * IPU Display Controller (dc) functions
148 */
149struct ipu_dc;
150struct ipu_di;
151struct ipu_dc *ipu_dc_get(struct ipu_soc *ipu, int channel);
152void ipu_dc_put(struct ipu_dc *dc);
153int ipu_dc_init_sync(struct ipu_dc *dc, struct ipu_di *di, bool interlaced,
154 u32 pixel_fmt, u32 width);
1e6d486b 155void ipu_dc_enable(struct ipu_soc *ipu);
aecfbdb1
SH
156void ipu_dc_enable_channel(struct ipu_dc *dc);
157void ipu_dc_disable_channel(struct ipu_dc *dc);
1e6d486b 158void ipu_dc_disable(struct ipu_soc *ipu);
aecfbdb1
SH
159
160/*
161 * IPU Display Interface (di) functions
162 */
163struct ipu_di *ipu_di_get(struct ipu_soc *ipu, int disp);
164void ipu_di_put(struct ipu_di *);
165int ipu_di_disable(struct ipu_di *);
166int ipu_di_enable(struct ipu_di *);
167int ipu_di_get_num(struct ipu_di *);
168int ipu_di_init_sync_panel(struct ipu_di *, struct ipu_di_signal_cfg *sig);
169
170/*
171 * IPU Display Multi FIFO Controller (dmfc) functions
172 */
173struct dmfc_channel;
174int ipu_dmfc_enable_channel(struct dmfc_channel *dmfc);
175void ipu_dmfc_disable_channel(struct dmfc_channel *dmfc);
176int ipu_dmfc_alloc_bandwidth(struct dmfc_channel *dmfc,
177 unsigned long bandwidth_mbs, int burstsize);
178void ipu_dmfc_free_bandwidth(struct dmfc_channel *dmfc);
179int ipu_dmfc_init_channel(struct dmfc_channel *dmfc, int width);
180struct dmfc_channel *ipu_dmfc_get(struct ipu_soc *ipu, int ipuv3_channel);
181void ipu_dmfc_put(struct dmfc_channel *dmfc);
182
183/*
184 * IPU Display Processor (dp) functions
185 */
186#define IPU_DP_FLOW_SYNC_BG 0
187#define IPU_DP_FLOW_SYNC_FG 1
188#define IPU_DP_FLOW_ASYNC0_BG 2
189#define IPU_DP_FLOW_ASYNC0_FG 3
190#define IPU_DP_FLOW_ASYNC1_BG 4
191#define IPU_DP_FLOW_ASYNC1_FG 5
192
193struct ipu_dp *ipu_dp_get(struct ipu_soc *ipu, unsigned int flow);
194void ipu_dp_put(struct ipu_dp *);
285bbb01 195int ipu_dp_enable(struct ipu_soc *ipu);
aecfbdb1
SH
196int ipu_dp_enable_channel(struct ipu_dp *dp);
197void ipu_dp_disable_channel(struct ipu_dp *dp);
285bbb01 198void ipu_dp_disable(struct ipu_soc *ipu);
aecfbdb1
SH
199int ipu_dp_setup_channel(struct ipu_dp *dp,
200 enum ipu_color_space in, enum ipu_color_space out);
201int ipu_dp_set_window_pos(struct ipu_dp *, u16 x_pos, u16 y_pos);
202int ipu_dp_set_global_alpha(struct ipu_dp *dp, bool enable, u8 alpha,
203 bool bg_chan);
204
3f5a8a94
PZ
205/*
206 * IPU CMOS Sensor Interface (csi) functions
207 */
208int ipu_csi_enable(struct ipu_soc *ipu, int csi);
209int ipu_csi_disable(struct ipu_soc *ipu, int csi);
210
35de925f
PZ
211/*
212 * IPU Sensor Multiple FIFO Controller (SMFC) functions
213 */
3f5a8a94
PZ
214int ipu_smfc_enable(struct ipu_soc *ipu);
215int ipu_smfc_disable(struct ipu_soc *ipu);
35de925f
PZ
216int ipu_smfc_map_channel(struct ipu_soc *ipu, int channel, int csi_id, int mipi_id);
217int ipu_smfc_set_burstsize(struct ipu_soc *ipu, int channel, int burstsize);
218
7cb17797 219enum ipu_color_space ipu_drm_fourcc_to_colorspace(u32 drm_fourcc);
aecfbdb1
SH
220enum ipu_color_space ipu_pixelformat_to_colorspace(u32 pixelformat);
221
aecfbdb1 222struct ipu_client_platformdata {
d6ca8ca7 223 int csi;
aecfbdb1
SH
224 int di;
225 int dc;
226 int dp;
227 int dmfc;
228 int dma[2];
229};
230
231#endif /* __DRM_IPU_H__ */