2 * zoran - Iomega Buz driver
4 * Copyright (C) 1999 Rainer Johanni <Rainer@Johanni.de>
8 * zoran.0.0.3 Copyright (C) 1998 Dave Perks <dperks@ibm.net>
12 * bttv - Bt848 frame grabber driver
13 * Copyright (C) 1996,97,98 Ralph Metzler (rjkm@thp.uni-koeln.de)
14 * & Marcus Metzler (mocm@thp.uni-koeln.de)
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
34 #include <media/v4l2-device.h>
37 unsigned long frame
; /* number of buffer that has been free'd */
38 unsigned long length
; /* number of code bytes in buffer (capture only) */
39 unsigned long seq
; /* frame sequence number */
40 struct timeval timestamp
; /* timestamp */
44 #define MAJOR_VERSION 0 /* driver major version */
45 #define MINOR_VERSION 10 /* driver minor version */
46 #define RELEASE_VERSION 0 /* release version */
48 #define ZORAN_NAME "ZORAN" /* name of the device */
50 #define ZR_DEVNAME(zr) ((zr)->name)
52 #define BUZ_MAX_WIDTH (zr->timing->Wa)
53 #define BUZ_MAX_HEIGHT (zr->timing->Ha)
54 #define BUZ_MIN_WIDTH 32 /* never display less than 32 pixels */
55 #define BUZ_MIN_HEIGHT 24 /* never display less than 24 rows */
57 #define BUZ_NUM_STAT_COM 4
58 #define BUZ_MASK_STAT_COM 3
60 #define BUZ_MAX_FRAME 256 /* Must be a power of 2 */
61 #define BUZ_MASK_FRAME 255 /* Must be BUZ_MAX_FRAME-1 */
63 #define BUZ_MAX_INPUT 16
65 #if VIDEO_MAX_FRAME <= 32
66 # define V4L_MAX_FRAME 32
67 #elif VIDEO_MAX_FRAME <= 64
68 # define V4L_MAX_FRAME 64
70 # error "Too many video frame buffers to handle"
72 #define V4L_MASK_FRAME (V4L_MAX_FRAME - 1)
74 #define MAX_FRAME (BUZ_MAX_FRAME > VIDEO_MAX_FRAME ? BUZ_MAX_FRAME : VIDEO_MAX_FRAME)
82 DC10_old
, /* DC30 like */
83 DC10_new
, /* DC10plus like */
88 /* Linux Media Labs */
98 /* total number of cards */
102 enum zoran_codec_mode
{
103 BUZ_MODE_IDLE
, /* nothing going on */
104 BUZ_MODE_MOTION_COMPRESS
, /* grabbing frames */
105 BUZ_MODE_MOTION_DECOMPRESS
, /* playing frames */
106 BUZ_MODE_STILL_COMPRESS
, /* still frame conversion */
107 BUZ_MODE_STILL_DECOMPRESS
/* still frame conversion */
110 enum zoran_buffer_state
{
111 BUZ_STATE_USER
, /* buffer is owned by application */
112 BUZ_STATE_PEND
, /* buffer is queued in pend[] ready to feed to I/O */
113 BUZ_STATE_DMA
, /* buffer is queued in dma[] for I/O */
114 BUZ_STATE_DONE
/* buffer is ready to return to application */
117 enum zoran_map_mode
{
119 ZORAN_MAP_MODE_JPG_REC
,
120 #define ZORAN_MAP_MODE_JPG ZORAN_MAP_MODE_JPG_REC
121 ZORAN_MAP_MODE_JPG_PLAY
,
125 ZR_GPIO_JPEG_SLEEP
= 0,
142 struct zoran_format
{
151 #define ZORAN_FORMAT_COMPRESSED 1<<0
152 #define ZORAN_FORMAT_OVERLAY 1<<1
153 #define ZORAN_FORMAT_CAPTURE 1<<2
154 #define ZORAN_FORMAT_PLAYBACK 1<<3
156 /* overlay-settings */
157 struct zoran_overlay_settings
{
159 int x
, y
, width
, height
; /* position */
160 int clipcount
; /* position and number of clips */
161 const struct zoran_format
*format
; /* overlay format */
164 /* v4l-capture settings */
165 struct zoran_v4l_settings
{
166 int width
, height
, bytesperline
; /* capture size */
167 const struct zoran_format
*format
; /* capture format */
170 /* jpg-capture/-playback settings */
171 struct zoran_jpg_settings
{
172 int decimation
; /* this bit is used to set everything to default */
173 int HorDcm
, VerDcm
, TmpDcm
; /* capture decimation settings (TmpDcm=1 means both fields) */
174 int field_per_buff
, odd_even
; /* field-settings (odd_even=1 (+TmpDcm=1) means top-field-first) */
175 int img_x
, img_y
, img_width
, img_height
; /* crop settings (subframe capture) */
176 struct v4l2_jpegcompression jpg_comp
; /* JPEG-specific capture settings */
179 struct zoran_mapping
{
184 struct zoran_buffer
{
185 struct zoran_mapping
*map
;
186 enum zoran_buffer_state state
; /* state: unused/pending/dma/done */
187 struct zoran_sync bs
; /* DONE: info to return to application */
190 __le32
*frag_tab
; /* addresses of frag table */
191 u32 frag_tab_bus
; /* same value cached to save time in ISR */
194 char *fbuffer
; /* virtual address of frame buffer */
195 unsigned long fbuffer_phys
;/* physical address of frame buffer */
196 unsigned long fbuffer_bus
;/* bus address of frame buffer */
201 enum zoran_lock_activity
{
202 ZORAN_FREE
, /* free for use */
203 ZORAN_ACTIVE
, /* active but unlocked */
204 ZORAN_LOCKED
, /* locked */
207 /* buffer collections */
208 struct zoran_buffer_col
{
209 enum zoran_lock_activity active
; /* feature currently in use? */
210 unsigned int num_buffers
, buffer_size
;
211 struct zoran_buffer buffer
[MAX_FRAME
]; /* buffers */
212 u8 allocated
; /* Flag if buffers are allocated */
213 u8 need_contiguous
; /* Flag if contiguous buffers are needed */
214 /* only applies to jpg buffers, raw buffers are always contiguous */
219 /* zoran_fh contains per-open() settings */
223 enum zoran_map_mode map_mode
; /* Flag which bufferset will map by next mmap() */
225 struct zoran_overlay_settings overlay_settings
;
226 u32
*overlay_mask
; /* overlay mask */
227 enum zoran_lock_activity overlay_active
;/* feature currently in use? */
229 struct zoran_buffer_col buffers
; /* buffers' info */
231 struct zoran_v4l_settings v4l_settings
; /* structure with a lot of things to play with */
232 struct zoran_jpg_settings jpg_settings
; /* structure with a lot of things to play with */
238 const char *i2c_decoder
; /* i2c decoder device */
239 const unsigned short *addrs_decoder
;
240 const char *i2c_encoder
; /* i2c encoder device */
241 const unsigned short *addrs_encoder
;
242 u16 video_vfe
, video_codec
; /* videocodec types */
243 u16 audio_chip
; /* audio type */
245 int inputs
; /* number of video inputs */
249 } input
[BUZ_MAX_INPUT
];
252 struct tvnorm
*tvn
[3]; /* supported TV norms */
254 u32 jpeg_int
; /* JPEG interrupt */
255 u32 vsync_int
; /* VSYNC interrupt */
256 s8 gpio
[ZR_GPIO_MAX
];
259 struct vfe_polarity vfe_pol
;
260 u8 gpio_pol
[ZR_GPIO_MAX
];
262 /* is the /GWS line conected? */
263 u8 gws_not_connected
;
265 /* avs6eyes mux setting */
268 void (*init
) (struct zoran
* zr
);
272 struct v4l2_device v4l2_dev
;
273 struct video_device
*video_dev
;
275 struct i2c_adapter i2c_adapter
; /* */
276 struct i2c_algo_bit_data i2c_algo
; /* */
279 struct v4l2_subdev
*decoder
; /* video decoder sub-device */
280 struct v4l2_subdev
*encoder
; /* video encoder sub-device */
282 struct videocodec
*codec
; /* video codec */
283 struct videocodec
*vfe
; /* video front end */
285 struct mutex resource_lock
; /* prevent evil stuff */
286 struct mutex other_lock
; /* please merge with above */
288 u8 initialized
; /* flag if zoran has been correctly initialized */
289 int user
; /* number of current users */
290 struct card_info card
;
291 struct tvnorm
*timing
;
293 unsigned short id
; /* number of this device */
294 char name
[32]; /* name of this device */
295 struct pci_dev
*pci_dev
; /* PCI device */
296 unsigned char revision
; /* revision of zr36057 */
297 unsigned char __iomem
*zr36057_mem
;/* pointer to mapped IO memory */
299 spinlock_t spinlock
; /* Spinlock */
301 /* Video for Linux parameters */
302 int input
; /* card's norm and input */
305 /* Current buffer params */
307 int vbuf_height
, vbuf_width
;
309 int vbuf_bytesperline
;
311 struct zoran_overlay_settings overlay_settings
;
312 u32
*overlay_mask
; /* overlay mask */
313 enum zoran_lock_activity overlay_active
; /* feature currently in use? */
315 wait_queue_head_t v4l_capq
;
317 int v4l_overlay_active
; /* Overlay grab is activated */
318 int v4l_memgrab_active
; /* Memory grab is activated */
320 int v4l_grab_frame
; /* Frame number being currently grabbed */
321 #define NO_GRAB_ACTIVE (-1)
322 unsigned long v4l_grab_seq
; /* Number of frames grabbed */
323 struct zoran_v4l_settings v4l_settings
; /* structure with a lot of things to play with */
325 /* V4L grab queue of frames pending */
326 unsigned long v4l_pend_head
;
327 unsigned long v4l_pend_tail
;
328 unsigned long v4l_sync_tail
;
329 int v4l_pend
[V4L_MAX_FRAME
];
330 struct zoran_buffer_col v4l_buffers
; /* V4L buffers' info */
332 /* Buz MJPEG parameters */
333 enum zoran_codec_mode codec_mode
; /* status of codec */
334 struct zoran_jpg_settings jpg_settings
; /* structure with a lot of things to play with */
336 wait_queue_head_t jpg_capq
; /* wait here for grab to finish */
338 /* grab queue counts/indices, mask with BUZ_MASK_STAT_COM before using as index */
339 /* (dma_head - dma_tail) is number active in DMA, must be <= BUZ_NUM_STAT_COM */
340 /* (value & BUZ_MASK_STAT_COM) corresponds to index in stat_com table */
341 unsigned long jpg_que_head
; /* Index where to put next buffer which is queued */
342 unsigned long jpg_dma_head
; /* Index of next buffer which goes into stat_com */
343 unsigned long jpg_dma_tail
; /* Index of last buffer in stat_com */
344 unsigned long jpg_que_tail
; /* Index of last buffer in queue */
345 unsigned long jpg_seq_num
; /* count of frames since grab/play started */
346 unsigned long jpg_err_seq
; /* last seq_num before error */
347 unsigned long jpg_err_shift
;
348 unsigned long jpg_queued_num
; /* count of frames queued since grab/play started */
350 /* zr36057's code buffer table */
351 __le32
*stat_com
; /* stat_com[i] is indexed by dma_head/tail & BUZ_MASK_STAT_COM */
353 /* (value & BUZ_MASK_FRAME) corresponds to index in pend[] queue */
354 int jpg_pend
[BUZ_MAX_FRAME
];
356 /* array indexed by frame number */
357 struct zoran_buffer_col jpg_buffers
; /* MJPEG buffers' info */
359 /* Additional stuff for testing */
360 #ifdef CONFIG_PROC_FS
361 struct proc_dir_entry
*zoran_proc
;
367 int intr_counter_GIRQ1
;
368 int intr_counter_GIRQ0
;
369 int intr_counter_CodRepIRQ
;
370 int intr_counter_JPEGRepIRQ
;
378 int END_event_missed
;
386 unsigned long frame_num
;
388 wait_queue_head_t test_q
;
391 static inline struct zoran
*to_zoran(struct v4l2_device
*v4l2_dev
)
393 return container_of(v4l2_dev
, struct zoran
, v4l2_dev
);
396 /* There was something called _ALPHA_BUZ that used the PCI address instead of
397 * the kernel iomapped address for btread/btwrite. */
398 #define btwrite(dat,adr) writel((dat), zr->zr36057_mem+(adr))
399 #define btread(adr) readl(zr->zr36057_mem+(adr))
401 #define btand(dat,adr) btwrite((dat) & btread(adr), adr)
402 #define btor(dat,adr) btwrite((dat) | btread(adr), adr)
403 #define btaor(dat,mask,adr) btwrite((dat) | ((mask) & btread(adr)), adr)