V4L/DVB (6885): Add support for the Hauppauge HVR1500Q
[linux-2.6/verdex.git] / drivers / media / video / cx23885 / cx23885.h
blob3f019f3cb2927214e504703807c6ef1b7546174c
1 /*
2 * Driver for the Conexant CX23885 PCIe bridge
4 * Copyright (c) 2006 Steven Toth <stoth@hauppauge.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
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.
22 #include <linux/pci.h>
23 #include <linux/i2c.h>
24 #include <linux/i2c-algo-bit.h>
25 #include <linux/kdev_t.h>
27 #include <media/v4l2-common.h>
28 #include <media/tuner.h>
29 #include <media/tveeprom.h>
30 #include <media/videobuf-dma-sg.h>
31 #include <media/videobuf-dvb.h>
33 #include "btcx-risc.h"
34 #include "cx23885-reg.h"
36 #include <linux/version.h>
37 #include <linux/mutex.h>
39 #define CX23885_VERSION_CODE KERNEL_VERSION(0,0,1)
41 #define UNSET (-1U)
43 #define CX23885_MAXBOARDS 8
45 /* Max number of inputs by card */
46 #define MAX_CX23885_INPUT 8
48 #define BUFFER_TIMEOUT (HZ) /* 0.5 seconds */
50 #define CX23885_BOARD_NOAUTO UNSET
51 #define CX23885_BOARD_UNKNOWN 0
52 #define CX23885_BOARD_HAUPPAUGE_HVR1800lp 1
53 #define CX23885_BOARD_HAUPPAUGE_HVR1800 2
54 #define CX23885_BOARD_HAUPPAUGE_HVR1250 3
55 #define CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP 4
56 #define CX23885_BOARD_HAUPPAUGE_HVR1500Q 5
58 enum cx23885_itype {
59 CX23885_VMUX_COMPOSITE1 = 1,
60 CX23885_VMUX_COMPOSITE2,
61 CX23885_VMUX_COMPOSITE3,
62 CX23885_VMUX_COMPOSITE4,
63 CX23885_VMUX_SVIDEO,
64 CX23885_VMUX_TELEVISION,
65 CX23885_VMUX_CABLE,
66 CX23885_VMUX_DVB,
67 CX23885_VMUX_DEBUG,
68 CX23885_RADIO,
71 enum cx23885_src_sel_type {
72 CX23885_SRC_SEL_EXT_656_VIDEO = 0,
73 CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO
76 /* buffer for one video frame */
77 struct cx23885_buffer {
78 /* common v4l buffer stuff -- must be first */
79 struct videobuf_buffer vb;
81 /* cx23885 specific */
82 unsigned int bpl;
83 struct btcx_riscmem risc;
84 struct cx23885_fmt *fmt;
85 u32 count;
88 struct cx23885_input {
89 enum cx23885_itype type;
90 unsigned int vmux;
91 u32 gpio0, gpio1, gpio2, gpio3;
94 typedef enum {
95 CX23885_MPEG_UNDEFINED = 0,
96 CX23885_MPEG_DVB
97 } port_t;
99 struct cx23885_board {
100 char *name;
101 port_t portb, portc;
102 struct cx23885_input input[MAX_CX23885_INPUT];
105 struct cx23885_subid {
106 u16 subvendor;
107 u16 subdevice;
108 u32 card;
111 struct cx23885_i2c {
112 struct cx23885_dev *dev;
114 int nr;
116 /* i2c i/o */
117 struct i2c_adapter i2c_adap;
118 struct i2c_algo_bit_data i2c_algo;
119 struct i2c_client i2c_client;
120 u32 i2c_rc;
122 /* 885 registers used for raw addess */
123 u32 i2c_period;
124 u32 reg_ctrl;
125 u32 reg_stat;
126 u32 reg_addr;
127 u32 reg_rdata;
128 u32 reg_wdata;
131 struct cx23885_dmaqueue {
132 struct list_head active;
133 struct list_head queued;
134 struct timer_list timeout;
135 struct btcx_riscmem stopper;
136 u32 count;
139 struct cx23885_tsport {
140 struct cx23885_dev *dev;
142 int nr;
143 int sram_chno;
145 struct videobuf_dvb dvb;
147 /* dma queues */
148 struct cx23885_dmaqueue mpegq;
149 u32 ts_packet_size;
150 u32 ts_packet_count;
152 int width;
153 int height;
155 spinlock_t slock;
157 /* registers */
158 u32 reg_gpcnt;
159 u32 reg_gpcnt_ctl;
160 u32 reg_dma_ctl;
161 u32 reg_lngth;
162 u32 reg_hw_sop_ctrl;
163 u32 reg_gen_ctrl;
164 u32 reg_bd_pkt_status;
165 u32 reg_sop_status;
166 u32 reg_fifo_ovfl_stat;
167 u32 reg_vld_misc;
168 u32 reg_ts_clk_en;
169 u32 reg_ts_int_msk;
170 u32 reg_ts_int_stat;
171 u32 reg_src_sel;
173 /* Default register vals */
174 int pci_irqmask;
175 u32 dma_ctl_val;
176 u32 ts_int_msk_val;
177 u32 gen_ctrl_val;
178 u32 ts_clk_en_val;
179 u32 src_sel_val;
182 struct cx23885_dev {
183 struct list_head devlist;
184 atomic_t refcount;
186 /* pci stuff */
187 struct pci_dev *pci;
188 unsigned char pci_rev, pci_lat;
189 int pci_bus, pci_slot;
190 u32 __iomem *lmmio;
191 u8 __iomem *bmmio;
192 int pci_irqmask;
194 /* I2C adapters: Master 1 & 2 (External) & Master 3 (Internal only) */
195 struct cx23885_i2c i2c_bus[3];
197 int nr;
198 struct mutex lock;
200 /* board details */
201 unsigned int board;
202 char name[32];
204 struct cx23885_tsport ts1, ts2;
206 /* sram configuration */
207 struct sram_channel *sram_channels;
209 enum {
210 CX23885_BRIDGE_UNDEFINED = 0,
211 CX23885_BRIDGE_885 = 885,
212 CX23885_BRIDGE_887 = 887,
213 } bridge;
216 #define SRAM_CH01 0 /* Video A */
217 #define SRAM_CH02 1 /* VBI A */
218 #define SRAM_CH03 2 /* Video B */
219 #define SRAM_CH04 3 /* Transport via B */
220 #define SRAM_CH05 4 /* VBI B */
221 #define SRAM_CH06 5 /* Video C */
222 #define SRAM_CH07 6 /* Transport via C */
223 #define SRAM_CH08 7 /* Audio Internal A */
224 #define SRAM_CH09 8 /* Audio Internal B */
225 #define SRAM_CH10 9 /* Audio External */
226 #define SRAM_CH11 10 /* COMB_3D_N */
227 #define SRAM_CH12 11 /* Comb 3D N1 */
228 #define SRAM_CH13 12 /* Comb 3D N2 */
229 #define SRAM_CH14 13 /* MOE Vid */
230 #define SRAM_CH15 14 /* MOE RSLT */
232 struct sram_channel {
233 char *name;
234 u32 cmds_start;
235 u32 ctrl_start;
236 u32 cdt;
237 u32 fifo_start;;
238 u32 fifo_size;
239 u32 ptr1_reg;
240 u32 ptr2_reg;
241 u32 cnt1_reg;
242 u32 cnt2_reg;
243 u32 jumponly;
246 /* ----------------------------------------------------------- */
248 #define cx_read(reg) readl(dev->lmmio + ((reg)>>2))
249 #define cx_write(reg,value) writel((value), dev->lmmio + ((reg)>>2))
251 #define cx_andor(reg,mask,value) \
252 writel((readl(dev->lmmio+((reg)>>2)) & ~(mask)) |\
253 ((value) & (mask)), dev->lmmio+((reg)>>2))
255 #define cx_set(reg,bit) cx_andor((reg),(bit),(bit))
256 #define cx_clear(reg,bit) cx_andor((reg),(bit),0)
258 /* ----------------------------------------------------------- */
259 /* cx23885-cards.c */
261 extern struct cx23885_board cx23885_boards[];
262 extern const unsigned int cx23885_bcount;
264 extern struct cx23885_subid cx23885_subids[];
265 extern const unsigned int cx23885_idcount;
267 extern void cx23885_card_list(struct cx23885_dev *dev);
268 extern int cx23885_ir_init(struct cx23885_dev *dev);
269 extern void cx23885_gpio_setup(struct cx23885_dev *dev);
270 extern void cx23885_card_setup(struct cx23885_dev *dev);
271 extern void cx23885_card_setup_pre_i2c(struct cx23885_dev *dev);
273 extern int cx23885_dvb_register(struct cx23885_tsport *port);
274 extern int cx23885_dvb_unregister(struct cx23885_tsport *port);
276 extern int cx23885_buf_prepare(struct videobuf_queue *q,
277 struct cx23885_tsport *port,
278 struct cx23885_buffer *buf,
279 enum v4l2_field field);
281 extern void cx23885_buf_queue(struct cx23885_tsport *port,
282 struct cx23885_buffer *buf);
283 extern void cx23885_free_buffer(struct videobuf_queue *q,
284 struct cx23885_buffer *buf);
286 /* ----------------------------------------------------------- */
287 /* cx23885-i2c.c */
288 extern int cx23885_i2c_register(struct cx23885_i2c *bus);
289 extern int cx23885_i2c_unregister(struct cx23885_i2c *bus);
290 extern void cx23885_call_i2c_clients(struct cx23885_i2c *bus, unsigned int cmd,
291 void *arg);
294 * Local variables:
295 * c-basic-offset: 8
296 * End:
297 * 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