Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cx2341x.h
Go to the documentation of this file.
1 /*
2  cx23415/6/8 header containing common defines.
3 
4  This program is free software; you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation; either version 2 of the License, or
7  (at your option) any later version.
8 
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with this program; if not, write to the Free Software
16  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  */
18 
19 #ifndef CX2341X_H
20 #define CX2341X_H
21 
22 #include <media/v4l2-ctrls.h>
23 
28 };
29 
34 };
35 
37  /* misc */
43 
44  /* stream */
48 
49  /* audio */
60 
61  /* video */
73 
74  /* encoding filters */
86 };
87 
88 #define CX2341X_MBOX_MAX_DATA 16
89 
90 extern const u32 cx2341x_mpeg_ctrls[];
91 typedef int (*cx2341x_mbox_func)(void *priv, u32 cmd, int in, int out,
94  const struct cx2341x_mpeg_params *old,
95  const struct cx2341x_mpeg_params *new);
97  struct v4l2_queryctrl *qctrl);
98 const char * const *cx2341x_ctrl_get_menu(const struct cx2341x_mpeg_params *p, u32 id);
100  struct v4l2_ext_controls *ctrls, unsigned int cmd);
102 void cx2341x_log_status(const struct cx2341x_mpeg_params *p, const char *prefix);
103 
104 struct cx2341x_handler;
105 
107  /* needed for the video clock freq */
109  /* needed for dualwatch */
111  /* needed for setting up the video resolution */
113  /* needed for setting up the sliced vbi insertion data structures */
115 };
116 
124 
126  void *priv;
128  const struct cx2341x_handler_ops *ops;
129 
131 
132  struct {
133  /* audio cluster */
142  };
143 
144  struct {
145  /* video gop cluster */
148  };
149 
150  struct {
151  /* stream type cluster */
157  };
158 
159  struct {
160  /* video mute cluster */
163  };
164 
165  struct {
166  /* video filter mode cluster */
170  };
171 
172  struct {
173  /* video filter type cluster */
176  };
177 
178  struct {
179  /* video filter cluster */
182  };
183 
184  struct {
185  /* video median cluster */
190  };
191 };
192 
193 int cx2341x_handler_init(struct cx2341x_handler *cxhdl,
194  unsigned nr_of_controls_hint);
195 void cx2341x_handler_set_50hz(struct cx2341x_handler *cxhdl, int is_50hz);
196 int cx2341x_handler_setup(struct cx2341x_handler *cxhdl);
197 void cx2341x_handler_set_busy(struct cx2341x_handler *cxhdl, int busy);
198 
199 /* Firmware names */
200 #define CX2341X_FIRM_ENC_FILENAME "v4l-cx2341x-enc.fw"
201 /* Decoder firmware for the cx23415 only */
202 #define CX2341X_FIRM_DEC_FILENAME "v4l-cx2341x-dec.fw"
203 
204 /* Firmware API commands */
205 
206 /* MPEG decoder API, specific to the cx23415 */
207 #define CX2341X_DEC_PING_FW 0x00
208 #define CX2341X_DEC_START_PLAYBACK 0x01
209 #define CX2341X_DEC_STOP_PLAYBACK 0x02
210 #define CX2341X_DEC_SET_PLAYBACK_SPEED 0x03
211 #define CX2341X_DEC_STEP_VIDEO 0x05
212 #define CX2341X_DEC_SET_DMA_BLOCK_SIZE 0x08
213 #define CX2341X_DEC_GET_XFER_INFO 0x09
214 #define CX2341X_DEC_GET_DMA_STATUS 0x0a
215 #define CX2341X_DEC_SCHED_DMA_FROM_HOST 0x0b
216 #define CX2341X_DEC_PAUSE_PLAYBACK 0x0d
217 #define CX2341X_DEC_HALT_FW 0x0e
218 #define CX2341X_DEC_SET_STANDARD 0x10
219 #define CX2341X_DEC_GET_VERSION 0x11
220 #define CX2341X_DEC_SET_STREAM_INPUT 0x14
221 #define CX2341X_DEC_GET_TIMING_INFO 0x15
222 #define CX2341X_DEC_SET_AUDIO_MODE 0x16
223 #define CX2341X_DEC_SET_EVENT_NOTIFICATION 0x17
224 #define CX2341X_DEC_SET_DISPLAY_BUFFERS 0x18
225 #define CX2341X_DEC_EXTRACT_VBI 0x19
226 #define CX2341X_DEC_SET_DECODER_SOURCE 0x1a
227 #define CX2341X_DEC_SET_PREBUFFERING 0x1e
228 
229 /* MPEG encoder API */
230 #define CX2341X_ENC_PING_FW 0x80
231 #define CX2341X_ENC_START_CAPTURE 0x81
232 #define CX2341X_ENC_STOP_CAPTURE 0x82
233 #define CX2341X_ENC_SET_AUDIO_ID 0x89
234 #define CX2341X_ENC_SET_VIDEO_ID 0x8b
235 #define CX2341X_ENC_SET_PCR_ID 0x8d
236 #define CX2341X_ENC_SET_FRAME_RATE 0x8f
237 #define CX2341X_ENC_SET_FRAME_SIZE 0x91
238 #define CX2341X_ENC_SET_BIT_RATE 0x95
239 #define CX2341X_ENC_SET_GOP_PROPERTIES 0x97
240 #define CX2341X_ENC_SET_ASPECT_RATIO 0x99
241 #define CX2341X_ENC_SET_DNR_FILTER_MODE 0x9b
242 #define CX2341X_ENC_SET_DNR_FILTER_PROPS 0x9d
243 #define CX2341X_ENC_SET_CORING_LEVELS 0x9f
244 #define CX2341X_ENC_SET_SPATIAL_FILTER_TYPE 0xa1
245 #define CX2341X_ENC_SET_VBI_LINE 0xb7
246 #define CX2341X_ENC_SET_STREAM_TYPE 0xb9
247 #define CX2341X_ENC_SET_OUTPUT_PORT 0xbb
248 #define CX2341X_ENC_SET_AUDIO_PROPERTIES 0xbd
249 #define CX2341X_ENC_HALT_FW 0xc3
250 #define CX2341X_ENC_GET_VERSION 0xc4
251 #define CX2341X_ENC_SET_GOP_CLOSURE 0xc5
252 #define CX2341X_ENC_GET_SEQ_END 0xc6
253 #define CX2341X_ENC_SET_PGM_INDEX_INFO 0xc7
254 #define CX2341X_ENC_SET_VBI_CONFIG 0xc8
255 #define CX2341X_ENC_SET_DMA_BLOCK_SIZE 0xc9
256 #define CX2341X_ENC_GET_PREV_DMA_INFO_MB_10 0xca
257 #define CX2341X_ENC_GET_PREV_DMA_INFO_MB_9 0xcb
258 #define CX2341X_ENC_SCHED_DMA_TO_HOST 0xcc
259 #define CX2341X_ENC_INITIALIZE_INPUT 0xcd
260 #define CX2341X_ENC_SET_FRAME_DROP_RATE 0xd0
261 #define CX2341X_ENC_PAUSE_ENCODER 0xd2
262 #define CX2341X_ENC_REFRESH_INPUT 0xd3
263 #define CX2341X_ENC_SET_COPYRIGHT 0xd4
264 #define CX2341X_ENC_SET_EVENT_NOTIFICATION 0xd5
265 #define CX2341X_ENC_SET_NUM_VSYNC_LINES 0xd6
266 #define CX2341X_ENC_SET_PLACEHOLDER 0xd7
267 #define CX2341X_ENC_MUTE_VIDEO 0xd9
268 #define CX2341X_ENC_MUTE_AUDIO 0xda
269 #define CX2341X_ENC_SET_VERT_CROP_LINE 0xdb
270 #define CX2341X_ENC_MISC 0xdc
271 
272 /* OSD API, specific to the cx23415 */
273 #define CX2341X_OSD_GET_FRAMEBUFFER 0x41
274 #define CX2341X_OSD_GET_PIXEL_FORMAT 0x42
275 #define CX2341X_OSD_SET_PIXEL_FORMAT 0x43
276 #define CX2341X_OSD_GET_STATE 0x44
277 #define CX2341X_OSD_SET_STATE 0x45
278 #define CX2341X_OSD_GET_OSD_COORDS 0x46
279 #define CX2341X_OSD_SET_OSD_COORDS 0x47
280 #define CX2341X_OSD_GET_SCREEN_COORDS 0x48
281 #define CX2341X_OSD_SET_SCREEN_COORDS 0x49
282 #define CX2341X_OSD_GET_GLOBAL_ALPHA 0x4a
283 #define CX2341X_OSD_SET_GLOBAL_ALPHA 0x4b
284 #define CX2341X_OSD_SET_BLEND_COORDS 0x4c
285 #define CX2341X_OSD_GET_FLICKER_STATE 0x4f
286 #define CX2341X_OSD_SET_FLICKER_STATE 0x50
287 #define CX2341X_OSD_BLT_COPY 0x52
288 #define CX2341X_OSD_BLT_FILL 0x53
289 #define CX2341X_OSD_BLT_TEXT 0x54
290 #define CX2341X_OSD_SET_FRAMEBUFFER_WINDOW 0x56
291 #define CX2341X_OSD_SET_CHROMA_KEY 0x60
292 #define CX2341X_OSD_GET_ALPHA_CONTENT_INDEX 0x61
293 #define CX2341X_OSD_SET_ALPHA_CONTENT_INDEX 0x62
294 
295 #endif /* CX2341X_H */