blob: a4f4958699b17bb2f860ad8fb6b56d747ec42351 [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
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030028#include <media/v4l2-common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <media/tuner.h>
30#include <media/tveeprom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <media/video-buf.h>
Hans Verkuilf0221562006-06-18 16:11:06 -030032#include <media/cx2341x.h>
Steven Toth30579062006-09-25 12:43:42 -030033#include <media/audiochip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <media/video-buf-dvb.h>
35
36#include "btcx-risc.h"
37#include "cx88-reg.h"
38
Mauro Carvalho Chehab10b89ee32005-09-09 13:04:03 -070039#include <linux/version.h>
Ingo Molnar3593cab2006-02-07 06:49:14 -020040#include <linux/mutex.h>
Michael Schimek419ac5d2006-05-22 10:32:11 -030041#define CX88_VERSION_CODE KERNEL_VERSION(0,0,6)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#define UNSET (-1U)
44
45#define CX88_MAXBOARDS 8
46
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -070047/* Max number of inputs by card */
48#define MAX_CX88_INPUT 8
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* ----------------------------------------------------------- */
51/* defines and enums */
52
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -030053/* Currently unsupported by the driver: PAL/H, NTSC/Kr, SECAM B/G/H/LC */
54#define CX88_NORMS (\
55 V4L2_STD_NTSC_M| V4L2_STD_NTSC_M_JP| V4L2_STD_NTSC_443 | \
56 V4L2_STD_PAL_BG| V4L2_STD_PAL_DK | V4L2_STD_PAL_I | \
57 V4L2_STD_PAL_M | V4L2_STD_PAL_N | V4L2_STD_PAL_Nc | \
58 V4L2_STD_PAL_60| V4L2_STD_SECAM_L | V4L2_STD_SECAM_DK )
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define FORMAT_FLAGS_PACKED 0x01
61#define FORMAT_FLAGS_PLANAR 0x02
62
63#define VBI_LINE_COUNT 17
64#define VBI_LINE_LENGTH 2048
65
66/* need "shadow" registers for some write-only ones ... */
67#define SHADOW_AUD_VOL_CTL 1
68#define SHADOW_AUD_BAL_CTL 2
Ian Pickworthcef4e7a2006-03-09 12:03:40 -030069#define SHADOW_MAX 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -070071/* FM Radio deemphasis type */
72enum cx88_deemph_type {
73 FM_NO_DEEMPH = 0,
74 FM_DEEMPH_50,
75 FM_DEEMPH_75
76};
77
Steven Toth3a5ba522006-09-25 12:43:45 -030078enum cx88_board_type {
79 CX88_BOARD_NONE = 0,
Michael Krufky48d5e802006-09-25 14:09:10 -030080 CX88_MPEG_DVB,
81 CX88_MPEG_BLACKBIRD
Steven Toth3a5ba522006-09-25 12:43:45 -030082};
83
Steven Toth6c5be742006-12-02 21:15:51 -020084enum cx8802_board_access {
85 CX8802_DRVCTL_SHARED = 1,
86 CX8802_DRVCTL_EXCLUSIVE = 2,
87};
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/* ----------------------------------------------------------- */
90/* tv norms */
91
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -030092static unsigned int inline norm_maxw(v4l2_std_id norm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -030094 return (norm & (V4L2_STD_MN & ~V4L2_STD_PAL_Nc)) ? 720 : 768;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070097
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -030098static unsigned int inline norm_maxh(v4l2_std_id norm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -0300100 return (norm & V4L2_STD_625_50) ? 576 : 480;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103/* ----------------------------------------------------------- */
104/* static data */
105
106struct cx8800_fmt {
107 char *name;
108 u32 fourcc; /* v4l2 format id */
109 int depth;
110 int flags;
111 u32 cxformat;
112};
113
114struct cx88_ctrl {
115 struct v4l2_queryctrl v;
116 u32 off;
117 u32 reg;
118 u32 sreg;
119 u32 mask;
120 u32 shift;
121};
122
123/* ----------------------------------------------------------- */
124/* SRAM memory management data (see cx88-core.c) */
125
126#define SRAM_CH21 0 /* video */
127#define SRAM_CH22 1
128#define SRAM_CH23 2
129#define SRAM_CH24 3 /* vbi */
130#define SRAM_CH25 4 /* audio */
131#define SRAM_CH26 5
132#define SRAM_CH28 6 /* mpeg */
133/* more */
134
135struct sram_channel {
136 char *name;
137 u32 cmds_start;
138 u32 ctrl_start;
139 u32 cdt;
140 u32 fifo_start;
141 u32 fifo_size;
142 u32 ptr1_reg;
143 u32 ptr2_reg;
144 u32 cnt1_reg;
145 u32 cnt2_reg;
146};
147extern struct sram_channel cx88_sram_channels[];
148
149/* ----------------------------------------------------------- */
150/* card configuration */
151
152#define CX88_BOARD_NOAUTO UNSET
153#define CX88_BOARD_UNKNOWN 0
154#define CX88_BOARD_HAUPPAUGE 1
155#define CX88_BOARD_GDI 2
156#define CX88_BOARD_PIXELVIEW 3
157#define CX88_BOARD_ATI_WONDER_PRO 4
158#define CX88_BOARD_WINFAST2000XP_EXPERT 5
Lubomir Bulej7418f342005-11-08 21:38:34 -0800159#define CX88_BOARD_AVERTV_STUDIO_303 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#define CX88_BOARD_MSI_TVANYWHERE_MASTER 7
161#define CX88_BOARD_WINFAST_DV2000 8
162#define CX88_BOARD_LEADTEK_PVR2000 9
163#define CX88_BOARD_IODATA_GVVCP3PCI 10
164#define CX88_BOARD_PROLINK_PLAYTVPVR 11
165#define CX88_BOARD_ASUS_PVR_416 12
166#define CX88_BOARD_MSI_TVANYWHERE 13
167#define CX88_BOARD_KWORLD_DVB_T 14
168#define CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1 15
169#define CX88_BOARD_KWORLD_LTV883 16
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700170#define CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q 17
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#define CX88_BOARD_HAUPPAUGE_DVB_T1 18
172#define CX88_BOARD_CONEXANT_DVB_T1 19
173#define CX88_BOARD_PROVIDEO_PV259 20
174#define CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS 21
175#define CX88_BOARD_PCHDTV_HD3000 22
176#define CX88_BOARD_DNTV_LIVE_DVB_T 23
177#define CX88_BOARD_HAUPPAUGE_ROSLYN 24
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700178#define CX88_BOARD_DIGITALLOGIC_MEC 25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179#define CX88_BOARD_IODATA_GVBCTV7E 26
Manuel Capinha239df2e2005-06-23 22:04:53 -0700180#define CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO 27
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700181#define CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T 28
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700182#define CX88_BOARD_ADSTECH_DVB_T_PCI 29
Michael Krufkye057ee12005-07-07 17:58:40 -0700183#define CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1 30
Michael Krufky9fef07c2005-07-31 22:34:46 -0700184#define CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD 31
Nickolay V. Shmyrevd45170e2005-11-08 21:36:15 -0800185#define CX88_BOARD_AVERMEDIA_ULTRATV_MC_550 32
Alexander Wold0bcc37c2005-11-08 21:36:58 -0800186#define CX88_BOARD_KWORLD_VSTREAM_EXPERT_DVD 33
Kirk Lapraye976f9372005-11-08 21:37:04 -0800187#define CX88_BOARD_ATI_HDTVWONDER 34
David Shirley2b5200a2005-11-08 21:37:22 -0800188#define CX88_BOARD_WINFAST_DTV1000 35
Lubomir Bulej7418f342005-11-08 21:38:34 -0800189#define CX88_BOARD_AVERTV_303 36
Steven Toth0fa14aa2006-01-09 15:25:02 -0200190#define CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1 37
191#define CX88_BOARD_HAUPPAUGE_NOVASE2_S1 38
Vadim Catana0e0351e2006-01-09 15:25:02 -0200192#define CX88_BOARD_KWORLD_DVBS_100 39
Steven Toth611900c2006-01-09 15:25:12 -0200193#define CX88_BOARD_HAUPPAUGE_HVR1100 40
194#define CX88_BOARD_HAUPPAUGE_HVR1100LP 41
Chris Pascoefc40b262006-01-09 15:25:35 -0200195#define CX88_BOARD_DNTV_LIVE_DVB_T_PRO 42
Manenti Marcof39624f2006-01-09 15:32:45 -0200196#define CX88_BOARD_KWORLD_DVB_T_CX22702 43
Chris Pascoe43eabb42006-01-09 18:21:28 -0200197#define CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL 44
Michael Krufky44256de2006-02-07 06:49:14 -0200198#define CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT 45
Chris Pascoe780dfef2006-02-28 08:34:59 -0300199#define CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID 46
Rusty Scottda215d22006-04-07 02:21:31 -0300200#define CX88_BOARD_PCHDTV_HD5500 47
Valentin Zagurab3038302006-04-13 12:41:43 -0300201#define CX88_BOARD_KWORLD_MCE200_DELUXE 48
Angelo Marconia3124622006-05-09 18:27:48 -0300202#define CX88_BOARD_PIXELVIEW_PLAYTV_P7000 49
Ricardo Cerqueirabe4f4512006-06-08 17:36:17 -0300203#define CX88_BOARD_NPGTECH_REALTV_TOP10FM 50
Malcolm Valentine4bd6e9d2006-05-29 13:51:59 -0300204#define CX88_BOARD_WINFAST_DTV2000H 51
Saqeb Akhterc02a34f2006-06-29 20:29:33 -0300205#define CX88_BOARD_GENIATECH_DVBS 52
Eric Thomasad10c932006-08-08 09:10:04 -0300206#define CX88_BOARD_HAUPPAUGE_HVR3000 53
Peter Naullsd1009bd2006-08-08 09:10:05 -0300207#define CX88_BOARD_NORWOOD_MICRO 54
David Bussenschutt2acadef2006-08-08 09:10:05 -0300208#define CX88_BOARD_TE_DTV_250_OEM_SWANN 55
Steven Tothaa481a62006-09-14 15:41:13 -0300209#define CX88_BOARD_HAUPPAUGE_HVR1300 56
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211enum cx88_itype {
212 CX88_VMUX_COMPOSITE1 = 1,
213 CX88_VMUX_COMPOSITE2,
214 CX88_VMUX_COMPOSITE3,
215 CX88_VMUX_COMPOSITE4,
216 CX88_VMUX_SVIDEO,
217 CX88_VMUX_TELEVISION,
218 CX88_VMUX_CABLE,
219 CX88_VMUX_DVB,
220 CX88_VMUX_DEBUG,
221 CX88_RADIO,
222};
223
224struct cx88_input {
225 enum cx88_itype type;
226 unsigned int vmux;
227 u32 gpio0, gpio1, gpio2, gpio3;
Michael Krufkyf24546a2006-10-16 16:51:11 -0300228 unsigned int extadc:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229};
230
231struct cx88_board {
232 char *name;
233 unsigned int tuner_type;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700234 unsigned int radio_type;
235 unsigned char tuner_addr;
236 unsigned char radio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 int tda9887_conf;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700238 struct cx88_input input[MAX_CX88_INPUT];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 struct cx88_input radio;
Steven Toth3a5ba522006-09-25 12:43:45 -0300240 enum cx88_board_type mpeg;
Steven Toth30579062006-09-25 12:43:42 -0300241 enum audiochip audio_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242};
243
244struct cx88_subid {
245 u16 subvendor;
246 u16 subdevice;
247 u32 card;
248};
249
250#define INPUT(nr) (&cx88_boards[core->board].input[nr])
251
252/* ----------------------------------------------------------- */
253/* device / file handle status */
254
255#define RESOURCE_OVERLAY 1
256#define RESOURCE_VIDEO 2
257#define RESOURCE_VBI 4
258
259#define BUFFER_TIMEOUT (HZ/2) /* 0.5 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261/* buffer for one video frame */
262struct cx88_buffer {
263 /* common v4l buffer stuff -- must be first */
264 struct videobuf_buffer vb;
265
266 /* cx88 specific */
267 unsigned int bpl;
268 struct btcx_riscmem risc;
269 struct cx8800_fmt *fmt;
270 u32 count;
271};
272
273struct cx88_dmaqueue {
274 struct list_head active;
275 struct list_head queued;
276 struct timer_list timeout;
277 struct btcx_riscmem stopper;
278 u32 count;
279};
280
281struct cx88_core {
282 struct list_head devlist;
283 atomic_t refcount;
284
285 /* board name */
286 int nr;
287 char name[32];
288
289 /* pci stuff */
290 int pci_bus;
291 int pci_slot;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800292 u32 __iomem *lmmio;
293 u8 __iomem *bmmio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 u32 shadow[SHADOW_MAX];
295 int pci_irqmask;
296
297 /* i2c i/o */
298 struct i2c_adapter i2c_adap;
299 struct i2c_algo_bit_data i2c_algo;
300 struct i2c_client i2c_client;
301 u32 i2c_state, i2c_rc;
302
303 /* config info -- analog */
304 unsigned int board;
305 unsigned int tuner_type;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700306 unsigned int radio_type;
307 unsigned char tuner_addr;
308 unsigned char radio_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 unsigned int tda9887_conf;
310 unsigned int has_radio;
311
Steven Toth0345c382006-01-09 15:25:17 -0200312 /* Supported V4L _STD_ tuner formats */
313 unsigned int tuner_formats;
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 /* config info -- dvb */
316 struct dvb_pll_desc *pll_desc;
317 unsigned int pll_addr;
Andrew de Quinceycd20ca92006-05-12 20:31:51 -0300318 int (*prev_set_voltage)(struct dvb_frontend* fe, fe_sec_voltage_t voltage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 /* state info */
321 struct task_struct *kthread;
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -0300322 v4l2_std_id tvnorm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 u32 tvaudio;
324 u32 audiomode_manual;
325 u32 audiomode_current;
326 u32 input;
327 u32 astat;
Torsten Seebothb1706b92005-11-08 21:36:27 -0800328 u32 use_nicam;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 /* IR remote control state */
331 struct cx88_IR *ir;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700332
Ingo Molnar3593cab2006-02-07 06:49:14 -0200333 struct mutex lock;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700334 /* various v4l controls */
335 u32 freq;
Steven Toth611900c2006-01-09 15:25:12 -0200336
337 /* cx88-video needs to access cx8802 for hybrid tuner pll access. */
338 struct cx8802_dev *dvbdev;
Steven Toth6c5be742006-12-02 21:15:51 -0200339 enum cx88_board_type active_type_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340};
341
342struct cx8800_dev;
343struct cx8802_dev;
344
345/* ----------------------------------------------------------- */
346/* function 0: video stuff */
347
348struct cx8800_fh {
349 struct cx8800_dev *dev;
350 enum v4l2_buf_type type;
351 int radio;
352 unsigned int resources;
353
354 /* video overlay */
355 struct v4l2_window win;
356 struct v4l2_clip *clips;
357 unsigned int nclips;
358
359 /* video capture */
360 struct cx8800_fmt *fmt;
361 unsigned int width,height;
362 struct videobuf_queue vidq;
363
364 /* vbi capture */
365 struct videobuf_queue vbiq;
366};
367
368struct cx8800_suspend_state {
369 int disabled;
370};
371
372struct cx8800_dev {
373 struct cx88_core *core;
374 struct list_head devlist;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700375 spinlock_t slock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 /* various device info */
378 unsigned int resources;
379 struct video_device *video_dev;
380 struct video_device *vbi_dev;
381 struct video_device *radio_dev;
382
383 /* pci i/o */
384 struct pci_dev *pci;
385 unsigned char pci_rev,pci_lat;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 /* capture queues */
389 struct cx88_dmaqueue vidq;
390 struct cx88_dmaqueue vbiq;
391
392 /* various v4l controls */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 /* other global state info */
395 struct cx8800_suspend_state state;
396};
397
398/* ----------------------------------------------------------- */
399/* function 1: audio/alsa stuff */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700400/* =============> moved to cx88-alsa.c <====================== */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403/* ----------------------------------------------------------- */
404/* function 2: mpeg stuff */
405
406struct cx8802_fh {
407 struct cx8802_dev *dev;
408 struct videobuf_queue mpegq;
409};
410
411struct cx8802_suspend_state {
412 int disabled;
413};
414
Steven Toth6c5be742006-12-02 21:15:51 -0200415struct cx8802_driver {
416 struct cx88_core *core;
417 struct list_head devlist;
418
419 /* Type of driver and access required */
420 enum cx88_board_type type_id;
421 enum cx8802_board_access hw_access;
422
423 /* MPEG 8802 internal only */
424 int (*suspend)(struct pci_dev *pci_dev, pm_message_t state);
425 int (*resume)(struct pci_dev *pci_dev);
426
427 /* MPEG 8802 -> mini driver - Driver probe and configuration */
428 int (*probe)(struct cx8802_driver *drv);
429 int (*remove)(struct cx8802_driver *drv);
430
431 /* MPEG 8802 -> mini driver - Access for hardware control */
432 int (*advise_acquire)(struct cx8802_driver *drv);
433 int (*advise_release)(struct cx8802_driver *drv);
434
435 /* MPEG 8802 <- mini driver - Access for hardware control */
436 int (*request_acquire)(struct cx8802_driver *drv);
437 int (*request_release)(struct cx8802_driver *drv);
438};
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440struct cx8802_dev {
441 struct cx88_core *core;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700442 spinlock_t slock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 /* pci i/o */
445 struct pci_dev *pci;
446 unsigned char pci_rev,pci_lat;
447
448 /* dma queues */
449 struct cx88_dmaqueue mpegq;
450 u32 ts_packet_size;
451 u32 ts_packet_count;
452
453 /* other global state info */
454 struct cx8802_suspend_state state;
455
456 /* for blackbird only */
457 struct list_head devlist;
458 struct video_device *mpeg_dev;
459 u32 mailbox;
460 int width;
461 int height;
462
463 /* for dvb only */
464 struct videobuf_dvb dvb;
465 void* fe_handle;
466 int (*fe_release)(void *handle);
Chris Pascoefc40b262006-01-09 15:25:35 -0200467
468 void *card_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /* for switching modulation types */
470 unsigned char ts_gen_cntrl;
Catalin Climov31629422005-11-08 21:36:17 -0800471
472 /* mpeg params */
Hans Verkuilf0221562006-06-18 16:11:06 -0300473 struct cx2341x_mpeg_params params;
Steven Toth6c5be742006-12-02 21:15:51 -0200474
475 /* List of attached drivers */
476 struct cx8802_driver drvlist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477};
478
479/* ----------------------------------------------------------- */
480
481#define cx_read(reg) readl(core->lmmio + ((reg)>>2))
482#define cx_write(reg,value) writel((value), core->lmmio + ((reg)>>2))
483#define cx_writeb(reg,value) writeb((value), core->bmmio + (reg))
484
485#define cx_andor(reg,mask,value) \
486 writel((readl(core->lmmio+((reg)>>2)) & ~(mask)) |\
487 ((value) & (mask)), core->lmmio+((reg)>>2))
488#define cx_set(reg,bit) cx_andor((reg),(bit),(bit))
489#define cx_clear(reg,bit) cx_andor((reg),(bit),0)
490
491#define cx_wait(d) { if (need_resched()) schedule(); else udelay(d); }
492
493/* shadow registers */
494#define cx_sread(sreg) (core->shadow[sreg])
495#define cx_swrite(sreg,reg,value) \
496 (core->shadow[sreg] = value, \
497 writel(core->shadow[sreg], core->lmmio + ((reg)>>2)))
498#define cx_sandor(sreg,reg,mask,value) \
499 (core->shadow[sreg] = (core->shadow[sreg] & ~(mask)) | ((value) & (mask)), \
500 writel(core->shadow[sreg], core->lmmio + ((reg)>>2)))
501
502/* ----------------------------------------------------------- */
503/* cx88-core.c */
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505extern void cx88_print_irqbits(char *name, char *tag, char **strings,
506 u32 bits, u32 mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508extern int cx88_core_irq(struct cx88_core *core, u32 status);
509extern void cx88_wakeup(struct cx88_core *core,
510 struct cx88_dmaqueue *q, u32 count);
511extern void cx88_shutdown(struct cx88_core *core);
512extern int cx88_reset(struct cx88_core *core);
513
514extern int
515cx88_risc_buffer(struct pci_dev *pci, struct btcx_riscmem *risc,
516 struct scatterlist *sglist,
517 unsigned int top_offset, unsigned int bottom_offset,
518 unsigned int bpl, unsigned int padding, unsigned int lines);
519extern int
520cx88_risc_databuffer(struct pci_dev *pci, struct btcx_riscmem *risc,
521 struct scatterlist *sglist, unsigned int bpl,
522 unsigned int lines);
523extern int
524cx88_risc_stopper(struct pci_dev *pci, struct btcx_riscmem *risc,
525 u32 reg, u32 mask, u32 value);
526extern void
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300527cx88_free_buffer(struct videobuf_queue *q, struct cx88_buffer *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529extern void cx88_risc_disasm(struct cx88_core *core,
530 struct btcx_riscmem *risc);
531extern int cx88_sram_channel_setup(struct cx88_core *core,
532 struct sram_channel *ch,
533 unsigned int bpl, u32 risc);
534extern void cx88_sram_channel_dump(struct cx88_core *core,
535 struct sram_channel *ch);
536
537extern int cx88_set_scale(struct cx88_core *core, unsigned int width,
538 unsigned int height, enum v4l2_field field);
Mauro Carvalho Chehab63ab1bd2007-01-20 13:58:33 -0300539extern int cx88_set_tvnorm(struct cx88_core *core, v4l2_std_id norm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541extern struct video_device *cx88_vdev_init(struct cx88_core *core,
542 struct pci_dev *pci,
543 struct video_device *template,
544 char *type);
545extern struct cx88_core* cx88_core_get(struct pci_dev *pci);
546extern void cx88_core_put(struct cx88_core *core,
547 struct pci_dev *pci);
548
Mauro Carvalho Chehab6f502b82005-12-01 00:51:34 -0800549extern int cx88_start_audio_dma(struct cx88_core *core);
550extern int cx88_stop_audio_dma(struct cx88_core *core);
551
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553/* ----------------------------------------------------------- */
554/* cx88-vbi.c */
555
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300556/* Can be used as g_vbi_fmt, try_vbi_fmt and s_vbi_fmt */
557int cx8800_vbi_fmt (struct file *file, void *priv,
558 struct v4l2_format *f);
559
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700560/*
561int cx8800_start_vbi_dma(struct cx8800_dev *dev,
562 struct cx88_dmaqueue *q,
563 struct cx88_buffer *buf);
564*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565int cx8800_stop_vbi_dma(struct cx8800_dev *dev);
566int cx8800_restart_vbi_queue(struct cx8800_dev *dev,
567 struct cx88_dmaqueue *q);
568void cx8800_vbi_timeout(unsigned long data);
569
570extern struct videobuf_queue_ops cx8800_vbi_qops;
571
572/* ----------------------------------------------------------- */
573/* cx88-i2c.c */
574
575extern int cx88_i2c_init(struct cx88_core *core, struct pci_dev *pci);
576extern void cx88_call_i2c_clients(struct cx88_core *core,
577 unsigned int cmd, void *arg);
578
579
580/* ----------------------------------------------------------- */
581/* cx88-cards.c */
582
583extern struct cx88_board cx88_boards[];
584extern const unsigned int cx88_bcount;
585
586extern struct cx88_subid cx88_subids[];
587extern const unsigned int cx88_idcount;
588
589extern void cx88_card_list(struct cx88_core *core, struct pci_dev *pci);
590extern void cx88_card_setup(struct cx88_core *core);
Steven Tothaa481a62006-09-14 15:41:13 -0300591extern void cx88_card_setup_pre_i2c(struct cx88_core *core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593/* ----------------------------------------------------------- */
594/* cx88-tvaudio.c */
595
596#define WW_NONE 1
597#define WW_BTSC 2
Torsten Seebothb1706b92005-11-08 21:36:27 -0800598#define WW_BG 3
599#define WW_DK 4
600#define WW_I 5
601#define WW_L 6
602#define WW_EIAJ 7
603#define WW_I2SPT 8
604#define WW_FM 9
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606void cx88_set_tvaudio(struct cx88_core *core);
607void cx88_newstation(struct cx88_core *core);
608void cx88_get_stereo(struct cx88_core *core, struct v4l2_tuner *t);
609void cx88_set_stereo(struct cx88_core *core, u32 mode, int manual);
610int cx88_audio_thread(void *data);
611
Steven Toth6c5be742006-12-02 21:15:51 -0200612int cx8802_register_driver(struct cx8802_driver *drv);
613int cx8802_unregister_driver(struct cx8802_driver *drv);
614struct cx8802_dev * cx8802_get_device(struct inode *inode);
615struct cx8802_driver * cx8802_get_driver(struct cx8802_dev *dev, enum cx88_board_type btype);
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617/* ----------------------------------------------------------- */
618/* cx88-input.c */
619
620int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci);
621int cx88_ir_fini(struct cx88_core *core);
622void cx88_ir_irq(struct cx88_core *core);
623
624/* ----------------------------------------------------------- */
625/* cx88-mpeg.c */
626
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300627int cx8802_buf_prepare(struct videobuf_queue *q,struct cx8802_dev *dev,
628 struct cx88_buffer *buf, enum v4l2_field field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf);
630void cx8802_cancel_buffers(struct cx8802_dev *dev);
631
632int cx8802_init_common(struct cx8802_dev *dev);
633void cx8802_fini_common(struct cx8802_dev *dev);
634
635int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state);
636int cx8802_resume_common(struct pci_dev *pci_dev);
637
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700638/* ----------------------------------------------------------- */
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -0300639/* cx88-video.c*/
Michael Krufky38a27132006-06-26 23:42:39 -0300640extern const u32 cx88_user_ctrls[];
641extern int cx8800_ctrl_query(struct v4l2_queryctrl *qctrl);
Mauro Carvalho Chehab54da49f2007-01-20 13:58:26 -0300642int cx88_enum_input (struct cx88_core *core,struct v4l2_input *i);
643int cx88_set_freq (struct cx88_core *core,struct v4l2_frequency *f);
644int cx88_get_control(struct cx88_core *core, struct v4l2_control *ctl);
645int cx88_set_control(struct cx88_core *core, struct v4l2_control *ctl);
646int cx88_video_mux(struct cx88_core *core, unsigned int input);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700647
Steven Toth6c5be742006-12-02 21:15:51 -0200648/* ----------------------------------------------------------- */
649/* cx88-blackbird.c */
650/* used by cx88-ivtv ioctl emulation layer */
651extern int (*cx88_ioctl_hook)(struct inode *inode, struct file *file,
652 unsigned int cmd, void *arg);
653extern unsigned int (*cx88_ioctl_translator)(unsigned int cmd);
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655/*
656 * Local variables:
657 * c-basic-offset: 8
658 * End:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700659 * 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 -0700660 */