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 ZORAN_NAME "ZORAN" /* name of the device */
46 #define ZR_DEVNAME(zr) ((zr)->name)
48 #define BUZ_MAX_WIDTH (zr->timing->Wa)
49 #define BUZ_MAX_HEIGHT (zr->timing->Ha)
50 #define BUZ_MIN_WIDTH 32 /* never display less than 32 pixels */
51 #define BUZ_MIN_HEIGHT 24 /* never display less than 24 rows */
53 #define BUZ_NUM_STAT_COM 4
54 #define BUZ_MASK_STAT_COM 3
56 #define BUZ_MAX_FRAME 256 /* Must be a power of 2 */
57 #define BUZ_MASK_FRAME 255 /* Must be BUZ_MAX_FRAME-1 */
59 #define BUZ_MAX_INPUT 16
61 #if VIDEO_MAX_FRAME <= 32
62 # define V4L_MAX_FRAME 32
63 #elif VIDEO_MAX_FRAME <= 64
64 # define V4L_MAX_FRAME 64
66 # error "Too many video frame buffers to handle"
68 #define V4L_MASK_FRAME (V4L_MAX_FRAME - 1)
70 #define MAX_FRAME (BUZ_MAX_FRAME > VIDEO_MAX_FRAME ? BUZ_MAX_FRAME : VIDEO_MAX_FRAME)
78 DC10_old
, /* DC30 like */
79 DC10_new
, /* DC10plus like */
84 /* Linux Media Labs */
94 /* total number of cards */
98 enum zoran_codec_mode
{
99 BUZ_MODE_IDLE
, /* nothing going on */
100 BUZ_MODE_MOTION_COMPRESS
, /* grabbing frames */
101 BUZ_MODE_MOTION_DECOMPRESS
, /* playing frames */
102 BUZ_MODE_STILL_COMPRESS
, /* still frame conversion */
103 BUZ_MODE_STILL_DECOMPRESS
/* still frame conversion */
106 enum zoran_buffer_state
{
107 BUZ_STATE_USER
, /* buffer is owned by application */
108 BUZ_STATE_PEND
, /* buffer is queued in pend[] ready to feed to I/O */
109 BUZ_STATE_DMA
, /* buffer is queued in dma[] for I/O */
110 BUZ_STATE_DONE
/* buffer is ready to return to application */
113 enum zoran_map_mode
{
115 ZORAN_MAP_MODE_JPG_REC
,
116 #define ZORAN_MAP_MODE_JPG ZORAN_MAP_MODE_JPG_REC
117 ZORAN_MAP_MODE_JPG_PLAY
,
121 ZR_GPIO_JPEG_SLEEP
= 0,
138 struct zoran_format
{
147 #define ZORAN_FORMAT_COMPRESSED 1<<0
148 #define ZORAN_FORMAT_OVERLAY 1<<1
149 #define ZORAN_FORMAT_CAPTURE 1<<2
150 #define ZORAN_FORMAT_PLAYBACK 1<<3
152 /* overlay-settings */
153 struct zoran_overlay_settings
{
155 int x
, y
, width
, height
; /* position */
156 int clipcount
; /* position and number of clips */
157 const struct zoran_format
*format
; /* overlay format */
160 /* v4l-capture settings */
161 struct zoran_v4l_settings
{
162 int width
, height
, bytesperline
; /* capture size */
163 const struct zoran_format
*format
; /* capture format */
166 /* jpg-capture/-playback settings */
167 struct zoran_jpg_settings
{
168 int decimation
; /* this bit is used to set everything to default */
169 int HorDcm
, VerDcm
, TmpDcm
; /* capture decimation settings (TmpDcm=1 means both fields) */
170 int field_per_buff
, odd_even
; /* field-settings (odd_even=1 (+TmpDcm=1) means top-field-first) */
171 int img_x
, img_y
, img_width
, img_height
; /* crop settings (subframe capture) */
172 struct v4l2_jpegcompression jpg_comp
; /* JPEG-specific capture settings */
177 struct zoran_mapping
{
182 struct zoran_buffer
{
183 struct zoran_mapping
*map
;
184 enum zoran_buffer_state state
; /* state: unused/pending/dma/done */
185 struct zoran_sync bs
; /* DONE: info to return to application */
188 __le32
*frag_tab
; /* addresses of frag table */
189 u32 frag_tab_bus
; /* same value cached to save time in ISR */
192 char *fbuffer
; /* virtual address of frame buffer */
193 unsigned long fbuffer_phys
;/* physical address of frame buffer */
194 unsigned long fbuffer_bus
;/* bus address of frame buffer */
199 enum zoran_lock_activity
{
200 ZORAN_FREE
, /* free for use */
201 ZORAN_ACTIVE
, /* active but unlocked */
202 ZORAN_LOCKED
, /* locked */
205 /* buffer collections */
206 struct zoran_buffer_col
{
207 enum zoran_lock_activity active
; /* feature currently in use? */
208 unsigned int num_buffers
, buffer_size
;
209 struct zoran_buffer buffer
[MAX_FRAME
]; /* buffers */
210 u8 allocated
; /* Flag if buffers are allocated */
211 u8 need_contiguous
; /* Flag if contiguous buffers are needed */
212 /* only applies to jpg buffers, raw buffers are always contiguous */
217 /* zoran_fh contains per-open() settings */
221 enum zoran_map_mode map_mode
; /* Flag which bufferset will map by next mmap() */
223 struct zoran_overlay_settings overlay_settings
;
224 u32
*overlay_mask
; /* overlay mask */
225 enum zoran_lock_activity overlay_active
;/* feature currently in use? */
227 struct zoran_buffer_col buffers
; /* buffers' info */
229 struct zoran_v4l_settings v4l_settings
; /* structure with a lot of things to play with */
230 struct zoran_jpg_settings jpg_settings
; /* structure with a lot of things to play with */
236 const char *i2c_decoder
; /* i2c decoder device */
237 const unsigned short *addrs_decoder
;
238 const char *i2c_encoder
; /* i2c encoder device */
239 const unsigned short *addrs_encoder
;
240 u16 video_vfe
, video_codec
; /* videocodec types */
241 u16 audio_chip
; /* audio type */
243 int inputs
; /* number of video inputs */
247 } input
[BUZ_MAX_INPUT
];
250 struct tvnorm
*tvn
[3]; /* supported TV norms */
252 u32 jpeg_int
; /* JPEG interrupt */
253 u32 vsync_int
; /* VSYNC interrupt */
254 s8 gpio
[ZR_GPIO_MAX
];
257 struct vfe_polarity vfe_pol
;
258 u8 gpio_pol
[ZR_GPIO_MAX
];
260 /* is the /GWS line connected? */
261 u8 gws_not_connected
;
263 /* avs6eyes mux setting */
266 void (*init
) (struct zoran
* zr
);
270 struct v4l2_device v4l2_dev
;
271 struct video_device
*video_dev
;
273 struct i2c_adapter i2c_adapter
; /* */
274 struct i2c_algo_bit_data i2c_algo
; /* */
277 struct v4l2_subdev
*decoder
; /* video decoder sub-device */
278 struct v4l2_subdev
*encoder
; /* video encoder sub-device */
280 struct videocodec
*codec
; /* video codec */
281 struct videocodec
*vfe
; /* video front end */
283 struct mutex resource_lock
; /* prevent evil stuff */
284 struct mutex other_lock
; /* please merge with above */
286 u8 initialized
; /* flag if zoran has been correctly initialized */
287 int user
; /* number of current users */
288 struct card_info card
;
289 struct tvnorm
*timing
;
291 unsigned short id
; /* number of this device */
292 char name
[32]; /* name of this device */
293 struct pci_dev
*pci_dev
; /* PCI device */
294 unsigned char revision
; /* revision of zr36057 */
295 unsigned char __iomem
*zr36057_mem
;/* pointer to mapped IO memory */
297 spinlock_t spinlock
; /* Spinlock */
299 /* Video for Linux parameters */
300 int input
; /* card's norm and input */
303 /* Current buffer params */
305 int vbuf_height
, vbuf_width
;
307 int vbuf_bytesperline
;
309 struct zoran_overlay_settings overlay_settings
;
310 u32
*overlay_mask
; /* overlay mask */
311 enum zoran_lock_activity overlay_active
; /* feature currently in use? */
313 wait_queue_head_t v4l_capq
;
315 int v4l_overlay_active
; /* Overlay grab is activated */
316 int v4l_memgrab_active
; /* Memory grab is activated */
318 int v4l_grab_frame
; /* Frame number being currently grabbed */
319 #define NO_GRAB_ACTIVE (-1)
320 unsigned long v4l_grab_seq
; /* Number of frames grabbed */
321 struct zoran_v4l_settings v4l_settings
; /* structure with a lot of things to play with */
323 /* V4L grab queue of frames pending */
324 unsigned long v4l_pend_head
;
325 unsigned long v4l_pend_tail
;
326 unsigned long v4l_sync_tail
;
327 int v4l_pend
[V4L_MAX_FRAME
];
328 struct zoran_buffer_col v4l_buffers
; /* V4L buffers' info */
330 /* Buz MJPEG parameters */
331 enum zoran_codec_mode codec_mode
; /* status of codec */
332 struct zoran_jpg_settings jpg_settings
; /* structure with a lot of things to play with */
334 wait_queue_head_t jpg_capq
; /* wait here for grab to finish */
336 /* grab queue counts/indices, mask with BUZ_MASK_STAT_COM before using as index */
337 /* (dma_head - dma_tail) is number active in DMA, must be <= BUZ_NUM_STAT_COM */
338 /* (value & BUZ_MASK_STAT_COM) corresponds to index in stat_com table */
339 unsigned long jpg_que_head
; /* Index where to put next buffer which is queued */
340 unsigned long jpg_dma_head
; /* Index of next buffer which goes into stat_com */
341 unsigned long jpg_dma_tail
; /* Index of last buffer in stat_com */
342 unsigned long jpg_que_tail
; /* Index of last buffer in queue */
343 unsigned long jpg_seq_num
; /* count of frames since grab/play started */
344 unsigned long jpg_err_seq
; /* last seq_num before error */
345 unsigned long jpg_err_shift
;
346 unsigned long jpg_queued_num
; /* count of frames queued since grab/play started */
348 /* zr36057's code buffer table */
349 __le32
*stat_com
; /* stat_com[i] is indexed by dma_head/tail & BUZ_MASK_STAT_COM */
351 /* (value & BUZ_MASK_FRAME) corresponds to index in pend[] queue */
352 int jpg_pend
[BUZ_MAX_FRAME
];
354 /* array indexed by frame number */
355 struct zoran_buffer_col jpg_buffers
; /* MJPEG buffers' info */
357 /* Additional stuff for testing */
358 #ifdef CONFIG_PROC_FS
359 struct proc_dir_entry
*zoran_proc
;
365 int intr_counter_GIRQ1
;
366 int intr_counter_GIRQ0
;
367 int intr_counter_CodRepIRQ
;
368 int intr_counter_JPEGRepIRQ
;
376 int END_event_missed
;
384 unsigned long frame_num
;
386 wait_queue_head_t test_q
;
389 static inline struct zoran
*to_zoran(struct v4l2_device
*v4l2_dev
)
391 return container_of(v4l2_dev
, struct zoran
, v4l2_dev
);
394 /* There was something called _ALPHA_BUZ that used the PCI address instead of
395 * the kernel iomapped address for btread/btwrite. */
396 #define btwrite(dat,adr) writel((dat), zr->zr36057_mem+(adr))
397 #define btread(adr) readl(zr->zr36057_mem+(adr))
399 #define btand(dat,adr) btwrite((dat) & btread(adr), adr)
400 #define btor(dat,adr) btwrite((dat) | btread(adr), adr)
401 #define btaor(dat,mask,adr) btwrite((dat) | ((mask) & btread(adr)), adr)