Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ispcsi2.h
Go to the documentation of this file.
1 /*
2  * ispcsi2.h
3  *
4  * TI OMAP3 ISP - CSI2 module
5  *
6  * Copyright (C) 2010 Nokia Corporation
7  * Copyright (C) 2009 Texas Instruments, Inc.
8  *
9  * Contacts: Laurent Pinchart <[email protected]>
10  * Sakari Ailus <[email protected]>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License version 2 as
14  * published by the Free Software Foundation.
15  *
16  * This program is distributed in the hope that it will be useful, but
17  * WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
24  * 02110-1301 USA
25  */
26 
27 #ifndef OMAP3_ISP_CSI2_H
28 #define OMAP3_ISP_CSI2_H
29 
30 #include <linux/types.h>
31 #include <linux/videodev2.h>
32 
33 struct isp_csiphy;
34 
35 /* This is not an exhaustive list */
49 };
50 
52  OCP_ERR_IRQ = 0x4000,
53  SHORT_PACKET_IRQ = 0x2000,
58  FIFO_OVF_IRQ = 0x100,
59  CONTEXT7 = 0x80,
60  CONTEXT6 = 0x40,
61  CONTEXT5 = 0x20,
62  CONTEXT4 = 0x10,
63  CONTEXT3 = 0x8,
64  CONTEXT2 = 0x4,
65  CONTEXT1 = 0x2,
66  CONTEXT0 = 0x1,
67 };
68 
73  CTX_CS = 0x20,
74  CTX_LE = 0x8,
75  CTX_LS = 0x4,
76  CTX_FE = 0x2,
77  CTX_FS = 0x1,
78 };
79 
83 };
84 
85 #define ISP_CSI2_MAX_CTX_NUM 7
86 
88  u8 ctxnum; /* context number 0 - 7 */
90 
91  /* Fields in CSI2_CTx_CTRL2 - locked by CSI2_CTx_CTRL1.CTX_EN */
93  u16 format_id; /* as in CSI2_CTx_CTRL2[9:0] */
94  u8 dpcm_predictor; /* 1: simple, 0: advanced */
95 
96  /* Fields in CSI2_CTx_CTRL1/3 - Shadowed */
105 };
106 
108  u8 ionum; /* IO1 or IO2 as in CSI2_TIMING */
109  unsigned force_rx_mode:1;
110  unsigned stop_state_16x:1;
111  unsigned stop_state_4x:1;
113 };
114 
121  bool if_enable;
122 };
123 
124 #define CSI2_PAD_SINK 0
125 #define CSI2_PAD_SOURCE 1
126 #define CSI2_PADS_NUM 2
127 
128 #define CSI2_OUTPUT_CCDC (1 << 0)
129 #define CSI2_OUTPUT_MEMORY (1 << 1)
130 
134  struct v4l2_mbus_framefmt formats[CSI2_PADS_NUM];
135 
137  struct isp_device *isp;
138 
139  u8 available; /* Is the IP present on the silicon? */
140 
141  /* mem resources - enums as defined in enum isp_mem_resources */
144 
145  u32 output; /* output to CCDC, memory or both? */
147  unsigned int frame_skip;
148 
149  struct isp_csiphy *phy;
156 };
157 
158 void omap3isp_csi2_isr(struct isp_csi2_device *csi2);
159 int omap3isp_csi2_reset(struct isp_csi2_device *csi2);
160 int omap3isp_csi2_init(struct isp_device *isp);
161 void omap3isp_csi2_cleanup(struct isp_device *isp);
164  struct v4l2_device *vdev);
165 #endif /* OMAP3_ISP_CSI2_H */