blob: 120e5049a46f663009e455a7651b5345c38c33c3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * v4l2 device driver for cx2388x based TV cards
4 *
5 * (c) 2003,04 Gerd Knorr <kraxel@bytesex.org> [SUSE Labs]
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22#include <linux/pci.h>
23#include <linux/i2c.h>
24#include <linux/i2c-algo-bit.h>
Mauro Carvalho Chehab98f30ed2005-11-08 21:37:17 -080025#include <linux/videodev2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/kdev_t.h>
27
28#include <media/tuner.h>
29#include <media/tveeprom.h>
30#include <media/audiochip.h>
31#include <media/video-buf.h>
32#include <media/video-buf-dvb.h>
33
34#include "btcx-risc.h"
35#include "cx88-reg.h"
36
Mauro Carvalho Chehab10b89ee32005-09-09 13:04:03 -070037#include <linux/version.h>
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -070038#define CX88_VERSION_CODE KERNEL_VERSION(0,0,5)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#ifndef TRUE
41# define TRUE (1==1)
42#endif
43#ifndef FALSE
44# define FALSE (1==0)
45#endif
46#define UNSET (-1U)
47
48#define CX88_MAXBOARDS 8
49
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -070050/* Max number of inputs by card */
51#define MAX_CX88_INPUT 8
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/* ----------------------------------------------------------- */
54/* defines and enums */
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define FORMAT_FLAGS_PACKED 0x01
57#define FORMAT_FLAGS_PLANAR 0x02
58
59#define VBI_LINE_COUNT 17
60#define VBI_LINE_LENGTH 2048
61
62/* need "shadow" registers for some write-only ones ... */
63#define SHADOW_AUD_VOL_CTL 1
64#define SHADOW_AUD_BAL_CTL 2
65#define SHADOW_MAX 2
66
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -070067/* FM Radio deemphasis type */
68enum cx88_deemph_type {
69 FM_NO_DEEMPH = 0,
70 FM_DEEMPH_50,
71 FM_DEEMPH_75
72};
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/* ----------------------------------------------------------- */
75/* tv norms */
76
77struct cx88_tvnorm {
78 char *name;
79 v4l2_std_id id;
80 u32 cxiformat;
81 u32 cxoformat;
82};
83
84static unsigned int inline norm_maxw(struct cx88_tvnorm *norm)
85{
86 return (norm->id & V4L2_STD_625_50) ? 768 : 640;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static unsigned int inline norm_maxh(struct cx88_tvnorm *norm)
91{
92 return (norm->id & V4L2_STD_625_50) ? 576 : 480;
93}
94
95/* ----------------------------------------------------------- */
96/* static data */
97
98struct cx8800_fmt {
99 char *name;
100 u32 fourcc; /* v4l2 format id */
101 int depth;
102 int flags;
103 u32 cxformat;
104};
105
106struct cx88_ctrl {
107 struct v4l2_queryctrl v;
108 u32 off;
109 u32 reg;
110 u32 sreg;
111 u32 mask;
112 u32 shift;
113};
114
115/* ----------------------------------------------------------- */
116/* SRAM memory management data (see cx88-core.c) */
117
118#define SRAM_CH21 0 /* video */
119#define SRAM_CH22 1
120#define SRAM_CH23 2
121#define SRAM_CH24 3 /* vbi */
122#define SRAM_CH25 4 /* audio */
123#define SRAM_CH26 5
124#define SRAM_CH28 6 /* mpeg */
125/* more */
126
127struct sram_channel {
128 char *name;
129 u32 cmds_start;
130 u32 ctrl_start;
131 u32 cdt;
132 u32 fifo_start;
133 u32 fifo_size;
134 u32 ptr1_reg;
135 u32 ptr2_reg;
136 u32 cnt1_reg;
137 u32 cnt2_reg;
138};
139extern struct sram_channel cx88_sram_channels[];
140
141/* ----------------------------------------------------------- */
142/* card configuration */
143
144#define CX88_BOARD_NOAUTO UNSET
145#define CX88_BOARD_UNKNOWN 0
146#define CX88_BOARD_HAUPPAUGE 1
147#define CX88_BOARD_GDI 2
148#define CX88_BOARD_PIXELVIEW 3
149#define CX88_BOARD_ATI_WONDER_PRO 4
150#define CX88_BOARD_WINFAST2000XP_EXPERT 5
Lubomir Bulej7418f342005-11-08 21:38:34 -0800151#define CX88_BOARD_AVERTV_STUDIO_303 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#define CX88_BOARD_MSI_TVANYWHERE_MASTER 7
153#define CX88_BOARD_WINFAST_DV2000 8
154#define CX88_BOARD_LEADTEK_PVR2000 9
155#define CX88_BOARD_IODATA_GVVCP3PCI 10
156#define CX88_BOARD_PROLINK_PLAYTVPVR 11
157#define CX88_BOARD_ASUS_PVR_416 12
158#define CX88_BOARD_MSI_TVANYWHERE 13
159#define CX88_BOARD_KWORLD_DVB_T 14
160#define CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1 15
161#define CX88_BOARD_KWORLD_LTV883 16
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700162#define CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q 17
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#define CX88_BOARD_HAUPPAUGE_DVB_T1 18
164#define CX88_BOARD_CONEXANT_DVB_T1 19
165#define CX88_BOARD_PROVIDEO_PV259 20
166#define CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS 21
167#define CX88_BOARD_PCHDTV_HD3000 22
168#define CX88_BOARD_DNTV_LIVE_DVB_T 23
169#define CX88_BOARD_HAUPPAUGE_ROSLYN 24
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700170#define CX88_BOARD_DIGITALLOGIC_MEC 25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#define CX88_BOARD_IODATA_GVBCTV7E 26
Manuel Capinha239df2e2005-06-23 22:04:53 -0700172#define CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO 27
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700173#define CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T 28
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700174#define CX88_BOARD_ADSTECH_DVB_T_PCI 29
Michael Krufkye057ee12005-07-07 17:58:40 -0700175#define CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1 30
Michael Krufky9fef07c2005-07-31 22:34:46 -0700176#define CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD 31
Nickolay V. Shmyrevd45170e2005-11-08 21:36:15 -0800177#define CX88_BOARD_AVERMEDIA_ULTRATV_MC_550 32
Alexander Wold0bcc37c2005-11-08 21:36:58 -0800178#define CX88_BOARD_KWORLD_VSTREAM_EXPERT_DVD 33
Kirk Lapraye976f9372005-11-08 21:37:04 -0800179#define CX88_BOARD_ATI_HDTVWONDER 34
David Shirley2b5200a2005-11-08 21:37:22 -0800180#define CX88_BOARD_WINFAST_DTV1000 35
Lubomir Bulej7418f342005-11-08 21:38:34 -0800181#define CX88_BOARD_AVERTV_303 36
Steven Toth0fa14aa2006-01-09 15:25:02 -0200182#define CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1 37
183#define CX88_BOARD_HAUPPAUGE_NOVASE2_S1 38
Vadim Catana0e0351e2006-01-09 15:25:02 -0200184#define CX88_BOARD_KWORLD_DVBS_100 39
Steven Toth611900c2006-01-09 15:25:12 -0200185#define CX88_BOARD_HAUPPAUGE_HVR1100 40
186#define CX88_BOARD_HAUPPAUGE_HVR1100LP 41
Chris Pascoefc40b262006-01-09 15:25:35 -0200187#define CX88_BOARD_DNTV_LIVE_DVB_T_PRO 42
Manenti Marcof39624f2006-01-09 15:32:45 -0200188#define CX88_BOARD_KWORLD_DVB_T_CX22702 43
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190enum cx88_itype {
191 CX88_VMUX_COMPOSITE1 = 1,
192 CX88_VMUX_COMPOSITE2,
193 CX88_VMUX_COMPOSITE3,
194 CX88_VMUX_COMPOSITE4,
195 CX88_VMUX_SVIDEO,
196 CX88_VMUX_TELEVISION,
197 CX88_VMUX_CABLE,
198 CX88_VMUX_DVB,
199 CX88_VMUX_DEBUG,
200 CX88_RADIO,
201};
202
203struct cx88_input {
204 enum cx88_itype type;
205 unsigned int vmux;
206 u32 gpio0, gpio1, gpio2, gpio3;
207};
208
209struct cx88_board {
210 char *name;
211 unsigned int tuner_type;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700212 unsigned int radio_type;
213 unsigned char tuner_addr;
214 unsigned char radio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 int tda9887_conf;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700216 struct cx88_input input[MAX_CX88_INPUT];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 struct cx88_input radio;
Peter Hagervallf9e7a022005-11-08 21:36:29 -0800218 unsigned int blackbird:1;
219 unsigned int dvb:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220};
221
222struct cx88_subid {
223 u16 subvendor;
224 u16 subdevice;
225 u32 card;
226};
227
228#define INPUT(nr) (&cx88_boards[core->board].input[nr])
229
230/* ----------------------------------------------------------- */
231/* device / file handle status */
232
233#define RESOURCE_OVERLAY 1
234#define RESOURCE_VIDEO 2
235#define RESOURCE_VBI 4
236
237#define BUFFER_TIMEOUT (HZ/2) /* 0.5 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239/* buffer for one video frame */
240struct cx88_buffer {
241 /* common v4l buffer stuff -- must be first */
242 struct videobuf_buffer vb;
243
244 /* cx88 specific */
245 unsigned int bpl;
246 struct btcx_riscmem risc;
247 struct cx8800_fmt *fmt;
248 u32 count;
249};
250
251struct cx88_dmaqueue {
252 struct list_head active;
253 struct list_head queued;
254 struct timer_list timeout;
255 struct btcx_riscmem stopper;
256 u32 count;
257};
258
259struct cx88_core {
260 struct list_head devlist;
261 atomic_t refcount;
262
263 /* board name */
264 int nr;
265 char name[32];
266
267 /* pci stuff */
268 int pci_bus;
269 int pci_slot;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800270 u32 __iomem *lmmio;
271 u8 __iomem *bmmio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 u32 shadow[SHADOW_MAX];
273 int pci_irqmask;
274
275 /* i2c i/o */
276 struct i2c_adapter i2c_adap;
277 struct i2c_algo_bit_data i2c_algo;
278 struct i2c_client i2c_client;
279 u32 i2c_state, i2c_rc;
280
281 /* config info -- analog */
282 unsigned int board;
283 unsigned int tuner_type;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700284 unsigned int radio_type;
285 unsigned char tuner_addr;
286 unsigned char radio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 unsigned int tda9887_conf;
288 unsigned int has_radio;
289
Steven Toth0345c382006-01-09 15:25:17 -0200290 /* Supported V4L _STD_ tuner formats */
291 unsigned int tuner_formats;
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 /* config info -- dvb */
294 struct dvb_pll_desc *pll_desc;
295 unsigned int pll_addr;
296
297 /* state info */
298 struct task_struct *kthread;
299 struct cx88_tvnorm *tvnorm;
300 u32 tvaudio;
301 u32 audiomode_manual;
302 u32 audiomode_current;
303 u32 input;
304 u32 astat;
Torsten Seebothb1706b92005-11-08 21:36:27 -0800305 u32 use_nicam;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 /* IR remote control state */
308 struct cx88_IR *ir;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700309
310 struct semaphore lock;
311
312 /* various v4l controls */
313 u32 freq;
Steven Toth611900c2006-01-09 15:25:12 -0200314
315 /* cx88-video needs to access cx8802 for hybrid tuner pll access. */
316 struct cx8802_dev *dvbdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317};
318
319struct cx8800_dev;
320struct cx8802_dev;
321
322/* ----------------------------------------------------------- */
323/* function 0: video stuff */
324
325struct cx8800_fh {
326 struct cx8800_dev *dev;
327 enum v4l2_buf_type type;
328 int radio;
329 unsigned int resources;
330
331 /* video overlay */
332 struct v4l2_window win;
333 struct v4l2_clip *clips;
334 unsigned int nclips;
335
336 /* video capture */
337 struct cx8800_fmt *fmt;
338 unsigned int width,height;
339 struct videobuf_queue vidq;
340
341 /* vbi capture */
342 struct videobuf_queue vbiq;
343};
344
345struct cx8800_suspend_state {
346 int disabled;
347};
348
349struct cx8800_dev {
350 struct cx88_core *core;
351 struct list_head devlist;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700352 spinlock_t slock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 /* various device info */
355 unsigned int resources;
356 struct video_device *video_dev;
357 struct video_device *vbi_dev;
358 struct video_device *radio_dev;
359
360 /* pci i/o */
361 struct pci_dev *pci;
362 unsigned char pci_rev,pci_lat;
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* capture queues */
366 struct cx88_dmaqueue vidq;
367 struct cx88_dmaqueue vbiq;
368
369 /* various v4l controls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 /* other global state info */
372 struct cx8800_suspend_state state;
373};
374
375/* ----------------------------------------------------------- */
376/* function 1: audio/alsa stuff */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700377/* =============> moved to cx88-alsa.c <====================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380/* ----------------------------------------------------------- */
381/* function 2: mpeg stuff */
382
383struct cx8802_fh {
384 struct cx8802_dev *dev;
385 struct videobuf_queue mpegq;
386};
387
388struct cx8802_suspend_state {
389 int disabled;
390};
391
Catalin Climov31629422005-11-08 21:36:17 -0800392/* TODO: move this to struct v4l2_mpeg_compression ? */
393struct blackbird_dnr {
394 u32 mode;
395 u32 type;
396 u32 spatial;
397 u32 temporal;
398};
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400struct cx8802_dev {
401 struct cx88_core *core;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700402 spinlock_t slock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 /* pci i/o */
405 struct pci_dev *pci;
406 unsigned char pci_rev,pci_lat;
407
408 /* dma queues */
409 struct cx88_dmaqueue mpegq;
410 u32 ts_packet_size;
411 u32 ts_packet_count;
412
413 /* other global state info */
414 struct cx8802_suspend_state state;
415
416 /* for blackbird only */
417 struct list_head devlist;
418 struct video_device *mpeg_dev;
419 u32 mailbox;
420 int width;
421 int height;
422
423 /* for dvb only */
424 struct videobuf_dvb dvb;
425 void* fe_handle;
426 int (*fe_release)(void *handle);
Chris Pascoefc40b262006-01-09 15:25:35 -0200427
428 void *card_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 /* for switching modulation types */
430 unsigned char ts_gen_cntrl;
Catalin Climov31629422005-11-08 21:36:17 -0800431
432 /* mpeg params */
433 struct v4l2_mpeg_compression params;
434 struct blackbird_dnr dnr_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435};
436
437/* ----------------------------------------------------------- */
438
439#define cx_read(reg) readl(core->lmmio + ((reg)>>2))
440#define cx_write(reg,value) writel((value), core->lmmio + ((reg)>>2))
441#define cx_writeb(reg,value) writeb((value), core->bmmio + (reg))
442
443#define cx_andor(reg,mask,value) \
444 writel((readl(core->lmmio+((reg)>>2)) & ~(mask)) |\
445 ((value) & (mask)), core->lmmio+((reg)>>2))
446#define cx_set(reg,bit) cx_andor((reg),(bit),(bit))
447#define cx_clear(reg,bit) cx_andor((reg),(bit),0)
448
449#define cx_wait(d) { if (need_resched()) schedule(); else udelay(d); }
450
451/* shadow registers */
452#define cx_sread(sreg) (core->shadow[sreg])
453#define cx_swrite(sreg,reg,value) \
454 (core->shadow[sreg] = value, \
455 writel(core->shadow[sreg], core->lmmio + ((reg)>>2)))
456#define cx_sandor(sreg,reg,mask,value) \
457 (core->shadow[sreg] = (core->shadow[sreg] & ~(mask)) | ((value) & (mask)), \
458 writel(core->shadow[sreg], core->lmmio + ((reg)>>2)))
459
460/* ----------------------------------------------------------- */
461/* cx88-core.c */
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463extern void cx88_print_irqbits(char *name, char *tag, char **strings,
464 u32 bits, u32 mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466extern int cx88_core_irq(struct cx88_core *core, u32 status);
467extern void cx88_wakeup(struct cx88_core *core,
468 struct cx88_dmaqueue *q, u32 count);
469extern void cx88_shutdown(struct cx88_core *core);
470extern int cx88_reset(struct cx88_core *core);
471
472extern int
473cx88_risc_buffer(struct pci_dev *pci, struct btcx_riscmem *risc,
474 struct scatterlist *sglist,
475 unsigned int top_offset, unsigned int bottom_offset,
476 unsigned int bpl, unsigned int padding, unsigned int lines);
477extern int
478cx88_risc_databuffer(struct pci_dev *pci, struct btcx_riscmem *risc,
479 struct scatterlist *sglist, unsigned int bpl,
480 unsigned int lines);
481extern int
482cx88_risc_stopper(struct pci_dev *pci, struct btcx_riscmem *risc,
483 u32 reg, u32 mask, u32 value);
484extern void
485cx88_free_buffer(struct pci_dev *pci, struct cx88_buffer *buf);
486
487extern void cx88_risc_disasm(struct cx88_core *core,
488 struct btcx_riscmem *risc);
489extern int cx88_sram_channel_setup(struct cx88_core *core,
490 struct sram_channel *ch,
491 unsigned int bpl, u32 risc);
492extern void cx88_sram_channel_dump(struct cx88_core *core,
493 struct sram_channel *ch);
494
495extern int cx88_set_scale(struct cx88_core *core, unsigned int width,
496 unsigned int height, enum v4l2_field field);
497extern int cx88_set_tvnorm(struct cx88_core *core, struct cx88_tvnorm *norm);
498
499extern struct video_device *cx88_vdev_init(struct cx88_core *core,
500 struct pci_dev *pci,
501 struct video_device *template,
502 char *type);
503extern struct cx88_core* cx88_core_get(struct pci_dev *pci);
504extern void cx88_core_put(struct cx88_core *core,
505 struct pci_dev *pci);
506
Mauro Carvalho Chehab6f502b82005-12-01 00:51:34 -0800507extern int cx88_start_audio_dma(struct cx88_core *core);
508extern int cx88_stop_audio_dma(struct cx88_core *core);
509
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/* ----------------------------------------------------------- */
512/* cx88-vbi.c */
513
514void cx8800_vbi_fmt(struct cx8800_dev *dev, struct v4l2_format *f);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700515/*
516int cx8800_start_vbi_dma(struct cx8800_dev *dev,
517 struct cx88_dmaqueue *q,
518 struct cx88_buffer *buf);
519*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520int cx8800_stop_vbi_dma(struct cx8800_dev *dev);
521int cx8800_restart_vbi_queue(struct cx8800_dev *dev,
522 struct cx88_dmaqueue *q);
523void cx8800_vbi_timeout(unsigned long data);
524
525extern struct videobuf_queue_ops cx8800_vbi_qops;
526
527/* ----------------------------------------------------------- */
528/* cx88-i2c.c */
529
530extern int cx88_i2c_init(struct cx88_core *core, struct pci_dev *pci);
531extern void cx88_call_i2c_clients(struct cx88_core *core,
532 unsigned int cmd, void *arg);
533
534
535/* ----------------------------------------------------------- */
536/* cx88-cards.c */
537
538extern struct cx88_board cx88_boards[];
539extern const unsigned int cx88_bcount;
540
541extern struct cx88_subid cx88_subids[];
542extern const unsigned int cx88_idcount;
543
544extern void cx88_card_list(struct cx88_core *core, struct pci_dev *pci);
545extern void cx88_card_setup(struct cx88_core *core);
546
547/* ----------------------------------------------------------- */
548/* cx88-tvaudio.c */
549
550#define WW_NONE 1
551#define WW_BTSC 2
Torsten Seebothb1706b92005-11-08 21:36:27 -0800552#define WW_BG 3
553#define WW_DK 4
554#define WW_I 5
555#define WW_L 6
556#define WW_EIAJ 7
557#define WW_I2SPT 8
558#define WW_FM 9
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560void cx88_set_tvaudio(struct cx88_core *core);
561void cx88_newstation(struct cx88_core *core);
562void cx88_get_stereo(struct cx88_core *core, struct v4l2_tuner *t);
563void cx88_set_stereo(struct cx88_core *core, u32 mode, int manual);
564int cx88_audio_thread(void *data);
Torsten Seebothb1706b92005-11-08 21:36:27 -0800565int cx88_detect_nicam(struct cx88_core *core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567/* ----------------------------------------------------------- */
568/* cx88-input.c */
569
570int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci);
571int cx88_ir_fini(struct cx88_core *core);
572void cx88_ir_irq(struct cx88_core *core);
573
574/* ----------------------------------------------------------- */
575/* cx88-mpeg.c */
576
Catalin Climov31629422005-11-08 21:36:17 -0800577int cx8802_buf_prepare(struct cx8802_dev *dev, struct cx88_buffer *buf,
578 enum v4l2_field field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf);
580void cx8802_cancel_buffers(struct cx8802_dev *dev);
581
582int cx8802_init_common(struct cx8802_dev *dev);
583void cx8802_fini_common(struct cx8802_dev *dev);
584
585int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state);
586int cx8802_resume_common(struct pci_dev *pci_dev);
587
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700588/* ----------------------------------------------------------- */
589/* cx88-video.c */
590extern int cx88_do_ioctl(struct inode *inode, struct file *file, int radio,
591 struct cx88_core *core, unsigned int cmd,
592 void *arg, v4l2_kioctl driver_ioctl);
593
594/* ----------------------------------------------------------- */
595/* cx88-blackbird.c */
596extern int (*cx88_ioctl_hook)(struct inode *inode, struct file *file,
597 unsigned int cmd, void *arg);
598extern unsigned int (*cx88_ioctl_translator)(unsigned int cmd);
Catalin Climov31629422005-11-08 21:36:17 -0800599void blackbird_set_params(struct cx8802_dev *dev,
600 struct v4l2_mpeg_compression *params);
601void blackbird_set_dnr_params(struct cx8802_dev *dev,
602 struct blackbird_dnr* dnr_params);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604/*
605 * Local variables:
606 * c-basic-offset: 8
607 * End:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700608 * kate: eol "unix"; indent-width 3; remove-trailing-space on; replace-trailing-space-save on; tab-width 8; replace-tabs off; space-indent off; mixed-indent off
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 */