V4L/DVB (6898): cx23885: add support for Hauppauge WinTV HVR-1500
[deliverable/linux.git] / drivers / media / video / cx23885 / cx23885.h
1 /*
2 * Driver for the Conexant CX23885 PCIe bridge
3 *
4 * Copyright (c) 2006 Steven Toth <stoth@hauppauge.com>
5 *
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.
10 *
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
14 *
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>
25 #include <linux/kdev_t.h>
26
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>
32
33 #include "btcx-risc.h"
34 #include "cx23885-reg.h"
35
36 #include <linux/version.h>
37 #include <linux/mutex.h>
38
39 #define CX23885_VERSION_CODE KERNEL_VERSION(0,0,1)
40
41 #define UNSET (-1U)
42
43 #define CX23885_MAXBOARDS 8
44
45 /* Max number of inputs by card */
46 #define MAX_CX23885_INPUT 8
47
48 #define BUFFER_TIMEOUT (HZ) /* 0.5 seconds */
49
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
57 #define CX23885_BOARD_HAUPPAUGE_HVR1500 6
58
59 enum cx23885_itype {
60 CX23885_VMUX_COMPOSITE1 = 1,
61 CX23885_VMUX_COMPOSITE2,
62 CX23885_VMUX_COMPOSITE3,
63 CX23885_VMUX_COMPOSITE4,
64 CX23885_VMUX_SVIDEO,
65 CX23885_VMUX_TELEVISION,
66 CX23885_VMUX_CABLE,
67 CX23885_VMUX_DVB,
68 CX23885_VMUX_DEBUG,
69 CX23885_RADIO,
70 };
71
72 enum cx23885_src_sel_type {
73 CX23885_SRC_SEL_EXT_656_VIDEO = 0,
74 CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO
75 };
76
77 /* buffer for one video frame */
78 struct cx23885_buffer {
79 /* common v4l buffer stuff -- must be first */
80 struct videobuf_buffer vb;
81
82 /* cx23885 specific */
83 unsigned int bpl;
84 struct btcx_riscmem risc;
85 struct cx23885_fmt *fmt;
86 u32 count;
87 };
88
89 struct cx23885_input {
90 enum cx23885_itype type;
91 unsigned int vmux;
92 u32 gpio0, gpio1, gpio2, gpio3;
93 };
94
95 typedef enum {
96 CX23885_MPEG_UNDEFINED = 0,
97 CX23885_MPEG_DVB
98 } port_t;
99
100 struct cx23885_board {
101 char *name;
102 port_t portb, portc;
103 struct cx23885_input input[MAX_CX23885_INPUT];
104 };
105
106 struct cx23885_subid {
107 u16 subvendor;
108 u16 subdevice;
109 u32 card;
110 };
111
112 struct cx23885_i2c {
113 struct cx23885_dev *dev;
114
115 int nr;
116
117 /* i2c i/o */
118 struct i2c_adapter i2c_adap;
119 struct i2c_algo_bit_data i2c_algo;
120 struct i2c_client i2c_client;
121 u32 i2c_rc;
122
123 /* 885 registers used for raw addess */
124 u32 i2c_period;
125 u32 reg_ctrl;
126 u32 reg_stat;
127 u32 reg_addr;
128 u32 reg_rdata;
129 u32 reg_wdata;
130 };
131
132 struct cx23885_dmaqueue {
133 struct list_head active;
134 struct list_head queued;
135 struct timer_list timeout;
136 struct btcx_riscmem stopper;
137 u32 count;
138 };
139
140 struct cx23885_tsport {
141 struct cx23885_dev *dev;
142
143 int nr;
144 int sram_chno;
145
146 struct videobuf_dvb dvb;
147
148 /* dma queues */
149 struct cx23885_dmaqueue mpegq;
150 u32 ts_packet_size;
151 u32 ts_packet_count;
152
153 int width;
154 int height;
155
156 spinlock_t slock;
157
158 /* registers */
159 u32 reg_gpcnt;
160 u32 reg_gpcnt_ctl;
161 u32 reg_dma_ctl;
162 u32 reg_lngth;
163 u32 reg_hw_sop_ctrl;
164 u32 reg_gen_ctrl;
165 u32 reg_bd_pkt_status;
166 u32 reg_sop_status;
167 u32 reg_fifo_ovfl_stat;
168 u32 reg_vld_misc;
169 u32 reg_ts_clk_en;
170 u32 reg_ts_int_msk;
171 u32 reg_ts_int_stat;
172 u32 reg_src_sel;
173
174 /* Default register vals */
175 int pci_irqmask;
176 u32 dma_ctl_val;
177 u32 ts_int_msk_val;
178 u32 gen_ctrl_val;
179 u32 ts_clk_en_val;
180 u32 src_sel_val;
181 };
182
183 struct cx23885_dev {
184 struct list_head devlist;
185 atomic_t refcount;
186
187 /* pci stuff */
188 struct pci_dev *pci;
189 unsigned char pci_rev, pci_lat;
190 int pci_bus, pci_slot;
191 u32 __iomem *lmmio;
192 u8 __iomem *bmmio;
193 int pci_irqmask;
194
195 /* I2C adapters: Master 1 & 2 (External) & Master 3 (Internal only) */
196 struct cx23885_i2c i2c_bus[3];
197
198 int nr;
199 struct mutex lock;
200
201 /* board details */
202 unsigned int board;
203 char name[32];
204
205 struct cx23885_tsport ts1, ts2;
206
207 /* sram configuration */
208 struct sram_channel *sram_channels;
209
210 enum {
211 CX23885_BRIDGE_UNDEFINED = 0,
212 CX23885_BRIDGE_885 = 885,
213 CX23885_BRIDGE_887 = 887,
214 } bridge;
215 };
216
217 #define SRAM_CH01 0 /* Video A */
218 #define SRAM_CH02 1 /* VBI A */
219 #define SRAM_CH03 2 /* Video B */
220 #define SRAM_CH04 3 /* Transport via B */
221 #define SRAM_CH05 4 /* VBI B */
222 #define SRAM_CH06 5 /* Video C */
223 #define SRAM_CH07 6 /* Transport via C */
224 #define SRAM_CH08 7 /* Audio Internal A */
225 #define SRAM_CH09 8 /* Audio Internal B */
226 #define SRAM_CH10 9 /* Audio External */
227 #define SRAM_CH11 10 /* COMB_3D_N */
228 #define SRAM_CH12 11 /* Comb 3D N1 */
229 #define SRAM_CH13 12 /* Comb 3D N2 */
230 #define SRAM_CH14 13 /* MOE Vid */
231 #define SRAM_CH15 14 /* MOE RSLT */
232
233 struct sram_channel {
234 char *name;
235 u32 cmds_start;
236 u32 ctrl_start;
237 u32 cdt;
238 u32 fifo_start;;
239 u32 fifo_size;
240 u32 ptr1_reg;
241 u32 ptr2_reg;
242 u32 cnt1_reg;
243 u32 cnt2_reg;
244 u32 jumponly;
245 };
246
247 /* ----------------------------------------------------------- */
248
249 #define cx_read(reg) readl(dev->lmmio + ((reg)>>2))
250 #define cx_write(reg,value) writel((value), dev->lmmio + ((reg)>>2))
251
252 #define cx_andor(reg,mask,value) \
253 writel((readl(dev->lmmio+((reg)>>2)) & ~(mask)) |\
254 ((value) & (mask)), dev->lmmio+((reg)>>2))
255
256 #define cx_set(reg,bit) cx_andor((reg),(bit),(bit))
257 #define cx_clear(reg,bit) cx_andor((reg),(bit),0)
258
259 /* ----------------------------------------------------------- */
260 /* cx23885-cards.c */
261
262 extern struct cx23885_board cx23885_boards[];
263 extern const unsigned int cx23885_bcount;
264
265 extern struct cx23885_subid cx23885_subids[];
266 extern const unsigned int cx23885_idcount;
267
268 extern void cx23885_card_list(struct cx23885_dev *dev);
269 extern int cx23885_ir_init(struct cx23885_dev *dev);
270 extern void cx23885_gpio_setup(struct cx23885_dev *dev);
271 extern void cx23885_card_setup(struct cx23885_dev *dev);
272 extern void cx23885_card_setup_pre_i2c(struct cx23885_dev *dev);
273
274 extern int cx23885_dvb_register(struct cx23885_tsport *port);
275 extern int cx23885_dvb_unregister(struct cx23885_tsport *port);
276
277 extern int cx23885_buf_prepare(struct videobuf_queue *q,
278 struct cx23885_tsport *port,
279 struct cx23885_buffer *buf,
280 enum v4l2_field field);
281
282 extern void cx23885_buf_queue(struct cx23885_tsport *port,
283 struct cx23885_buffer *buf);
284 extern void cx23885_free_buffer(struct videobuf_queue *q,
285 struct cx23885_buffer *buf);
286
287 /* ----------------------------------------------------------- */
288 /* cx23885-i2c.c */
289 extern int cx23885_i2c_register(struct cx23885_i2c *bus);
290 extern int cx23885_i2c_unregister(struct cx23885_i2c *bus);
291 extern void cx23885_call_i2c_clients(struct cx23885_i2c *bus, unsigned int cmd,
292 void *arg);
293
294 /*
295 * Local variables:
296 * c-basic-offset: 8
297 * End:
298 * 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
299 */
This page took 0.080362 seconds and 5 git commands to generate.