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/init.h>
23 #include <linux/module.h>
24 #include <linux/pci.h>
25 #include <linux/delay.h>
26 #include <media/cx25840.h>
30 /* ------------------------------------------------------------------ */
31 /* board config info */
33 struct cx23885_board cx23885_boards
[] = {
34 [CX23885_BOARD_UNKNOWN
] = {
35 .name
= "UNKNOWN/GENERIC",
36 /* Ensure safe default for unknown boards */
39 .type
= CX23885_VMUX_COMPOSITE1
,
42 .type
= CX23885_VMUX_COMPOSITE2
,
45 .type
= CX23885_VMUX_COMPOSITE3
,
48 .type
= CX23885_VMUX_COMPOSITE4
,
52 [CX23885_BOARD_HAUPPAUGE_HVR1800lp
] = {
53 .name
= "Hauppauge WinTV-HVR1800lp",
54 .portc
= CX23885_MPEG_DVB
,
56 .type
= CX23885_VMUX_TELEVISION
,
60 .type
= CX23885_VMUX_DEBUG
,
64 .type
= CX23885_VMUX_COMPOSITE1
,
68 .type
= CX23885_VMUX_SVIDEO
,
73 [CX23885_BOARD_HAUPPAUGE_HVR1800
] = {
74 .name
= "Hauppauge WinTV-HVR1800",
75 .porta
= CX23885_ANALOG_VIDEO
,
76 .portc
= CX23885_MPEG_DVB
,
77 .tuner_type
= TUNER_PHILIPS_TDA8290
,
78 .tuner_addr
= 0x42, /* 0x84 >> 1 */
80 .type
= CX23885_VMUX_TELEVISION
,
81 .vmux
= CX25840_VIN7_CH3
|
86 .type
= CX23885_VMUX_COMPOSITE1
,
87 .vmux
= CX25840_VIN7_CH3
|
92 .type
= CX23885_VMUX_SVIDEO
,
93 .vmux
= CX25840_VIN7_CH3
|
100 [CX23885_BOARD_HAUPPAUGE_HVR1250
] = {
101 .name
= "Hauppauge WinTV-HVR1250",
102 .portc
= CX23885_MPEG_DVB
,
104 .type
= CX23885_VMUX_TELEVISION
,
108 .type
= CX23885_VMUX_DEBUG
,
112 .type
= CX23885_VMUX_COMPOSITE1
,
116 .type
= CX23885_VMUX_SVIDEO
,
121 [CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP
] = {
122 .name
= "DViCO FusionHDTV5 Express",
123 .portb
= CX23885_MPEG_DVB
,
125 [CX23885_BOARD_HAUPPAUGE_HVR1500Q
] = {
126 .name
= "Hauppauge WinTV-HVR1500Q",
127 .portc
= CX23885_MPEG_DVB
,
129 [CX23885_BOARD_HAUPPAUGE_HVR1500
] = {
130 .name
= "Hauppauge WinTV-HVR1500",
131 .portc
= CX23885_MPEG_DVB
,
134 const unsigned int cx23885_bcount
= ARRAY_SIZE(cx23885_boards
);
136 /* ------------------------------------------------------------------ */
137 /* PCI subsystem IDs */
139 struct cx23885_subid cx23885_subids
[] = {
143 .card
= CX23885_BOARD_UNKNOWN
,
147 .card
= CX23885_BOARD_HAUPPAUGE_HVR1800lp
,
151 .card
= CX23885_BOARD_HAUPPAUGE_HVR1800
,
155 .card
= CX23885_BOARD_HAUPPAUGE_HVR1800
,
159 .card
= CX23885_BOARD_HAUPPAUGE_HVR1800
,
163 .card
= CX23885_BOARD_HAUPPAUGE_HVR1250
,
167 .card
= CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP
,
171 .card
= CX23885_BOARD_HAUPPAUGE_HVR1500Q
,
175 .card
= CX23885_BOARD_HAUPPAUGE_HVR1500Q
,
179 .card
= CX23885_BOARD_HAUPPAUGE_HVR1500
,
183 .card
= CX23885_BOARD_HAUPPAUGE_HVR1500
,
186 const unsigned int cx23885_idcount
= ARRAY_SIZE(cx23885_subids
);
188 void cx23885_card_list(struct cx23885_dev
*dev
)
192 if (0 == dev
->pci
->subsystem_vendor
&&
193 0 == dev
->pci
->subsystem_device
) {
194 printk("%s: Your board has no valid PCIe Subsystem ID and thus can't\n"
195 "%s: be autodetected. Please pass card=<n> insmod option to\n"
196 "%s: workaround that. Redirect complaints to the vendor of\n"
197 "%s: the TV card. Best regards,\n"
199 dev
->name
, dev
->name
, dev
->name
, dev
->name
, dev
->name
);
201 printk("%s: Your board isn't known (yet) to the driver. You can\n"
202 "%s: try to pick one of the existing card configs via\n"
203 "%s: card=<n> insmod option. Updating to the latest\n"
204 "%s: version might help as well.\n",
205 dev
->name
, dev
->name
, dev
->name
, dev
->name
);
207 printk("%s: Here is a list of valid choices for the card=<n> insmod option:\n",
209 for (i
= 0; i
< cx23885_bcount
; i
++)
210 printk("%s: card=%d -> %s\n",
211 dev
->name
, i
, cx23885_boards
[i
].name
);
214 static void hauppauge_eeprom(struct cx23885_dev
*dev
, u8
*eeprom_data
)
218 tveeprom_hauppauge_analog(&dev
->i2c_bus
[0].i2c_client
, &tv
, eeprom_data
);
220 /* Make sure we support the board model */
223 case 76601: /* WinTV-HVR1800lp (PCIe, Retail, No IR, Dual channel ATSC and MPEG2 HW Encoder */
224 case 77001: /* WinTV-HVR1500 (Express Card, OEM, No IR, ATSC and Basic analog */
225 case 77011: /* WinTV-HVR1500 (Express Card, Retail, No IR, ATSC and Basic analog */
226 case 77041: /* WinTV-HVR1500Q (Express Card, OEM, No IR, ATSC/QAM and Basic analog */
227 case 77051: /* WinTV-HVR1500Q (Express Card, Retail, No IR, ATSC/QAM and Basic analog */
228 case 78011: /* WinTV-HVR1800 (PCIe, Retail, 3.5mm in, IR, No FM, Dual channel ATSC and MPEG2 HW Encoder */
229 case 78501: /* WinTV-HVR1800 (PCIe, OEM, RCA in, No IR, FM, Dual channel ATSC and MPEG2 HW Encoder */
230 case 78521: /* WinTV-HVR1800 (PCIe, OEM, RCA in, No IR, FM, Dual channel ATSC and MPEG2 HW Encoder */
231 case 78531: /* WinTV-HVR1800 (PCIe, OEM, RCA in, No IR, No FM, Dual channel ATSC and MPEG2 HW Encoder */
232 case 78631: /* WinTV-HVR1800 (PCIe, OEM, No IR, No FM, Dual channel ATSC and MPEG2 HW Encoder */
233 case 79001: /* WinTV-HVR1250 (PCIe, Retail, IR, full height, ATSC and Basic analog */
234 case 79101: /* WinTV-HVR1250 (PCIe, Retail, IR, half height, ATSC and Basic analog */
235 case 79571: /* WinTV-HVR1250 (PCIe, OEM, No IR, full height, ATSC and Basic analog */
236 case 79671: /* WinTV-HVR1250 (PCIe, OEM, No IR, half height, ATSC and Basic analog */
239 printk("%s: warning: unknown hauppauge model #%d\n", dev
->name
, tv
.model
);
243 printk(KERN_INFO
"%s: hauppauge eeprom: model=%d\n",
244 dev
->name
, tv
.model
);
247 /* Tuner callback function for cx23885 boards. Currently only needed
248 * for HVR1500Q, which has an xc5000 tuner.
250 int cx23885_tuner_callback(void *priv
, int command
, int arg
)
252 struct cx23885_i2c
*bus
= priv
;
253 struct cx23885_dev
*dev
= bus
->dev
;
256 case CX23885_BOARD_HAUPPAUGE_HVR1500Q
:
257 if(command
== 0) { /* Tuner Reset Command from xc5000 */
258 /* Drive the tuner into reset and out */
259 cx_clear(GP0_IO
, 0x00000004);
261 cx_set(GP0_IO
, 0x00000004);
266 "%s(): Unknow command.\n", __FUNCTION__
);
272 return 0; /* Should never be here */
275 void cx23885_gpio_setup(struct cx23885_dev
*dev
)
278 case CX23885_BOARD_HAUPPAUGE_HVR1250
:
279 /* GPIO-0 cx24227 demodulator reset */
280 cx_set(GP0_IO
, 0x00010001); /* Bring the part out of reset */
282 case CX23885_BOARD_HAUPPAUGE_HVR1500
:
283 /* GPIO-0 cx24227 demodulator */
284 /* GPIO-2 xc3028 tuner */
286 /* Put the parts into reset */
287 cx_set(GP0_IO
, 0x00050000);
288 cx_clear(GP0_IO
, 0x00000005);
291 /* Bring the parts out of reset */
292 cx_set(GP0_IO
, 0x00050005);
294 case CX23885_BOARD_HAUPPAUGE_HVR1500Q
:
295 /* GPIO-0 cx24227 demodulator reset */
296 /* GPIO-2 xc5000 tuner reset */
297 cx_set(GP0_IO
, 0x00050005); /* Bring the part out of reset */
299 case CX23885_BOARD_HAUPPAUGE_HVR1800
:
302 /* GPIO-2 8295A Reset */
303 /* GPIO-3-10 cx23417 data0-7 */
304 /* GPIO-11-14 cx23417 addr0-3 */
305 /* GPIO-15-18 cx23417 READY, CS, RD, WR */
308 /* Force the TDA8295A into reset and back */
309 cx_set(GP0_IO
, 0x00040004);
311 cx_clear(GP0_IO
, 0x00000004);
313 cx_set(GP0_IO
, 0x00040004);
319 int cx23885_ir_init(struct cx23885_dev
*dev
)
321 switch (dev
->board
) {
322 case CX23885_BOARD_HAUPPAUGE_HVR1250
:
323 case CX23885_BOARD_HAUPPAUGE_HVR1500
:
324 case CX23885_BOARD_HAUPPAUGE_HVR1500Q
:
325 case CX23885_BOARD_HAUPPAUGE_HVR1800
:
326 /* FIXME: Implement me */
333 void cx23885_card_setup(struct cx23885_dev
*dev
)
335 struct cx23885_tsport
*ts1
= &dev
->ts1
;
336 struct cx23885_tsport
*ts2
= &dev
->ts2
;
338 static u8 eeprom
[256];
340 if (dev
->i2c_bus
[0].i2c_rc
== 0) {
341 dev
->i2c_bus
[0].i2c_client
.addr
= 0xa0 >> 1;
342 tveeprom_read(&dev
->i2c_bus
[0].i2c_client
,
343 eeprom
, sizeof(eeprom
));
346 switch (dev
->board
) {
347 case CX23885_BOARD_HAUPPAUGE_HVR1250
:
348 case CX23885_BOARD_HAUPPAUGE_HVR1500
:
349 case CX23885_BOARD_HAUPPAUGE_HVR1500Q
:
350 case CX23885_BOARD_HAUPPAUGE_HVR1800
:
351 case CX23885_BOARD_HAUPPAUGE_HVR1800lp
:
352 if (dev
->i2c_bus
[0].i2c_rc
== 0)
353 hauppauge_eeprom(dev
, eeprom
+0x80);
357 switch (dev
->board
) {
358 case CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP
:
359 ts1
->gen_ctrl_val
= 0xc; /* Serial bus + punctured clock */
360 ts1
->ts_clk_en_val
= 0x1; /* Enable TS_CLK */
361 ts1
->src_sel_val
= CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO
;
363 case CX23885_BOARD_HAUPPAUGE_HVR1250
:
364 case CX23885_BOARD_HAUPPAUGE_HVR1500
:
365 case CX23885_BOARD_HAUPPAUGE_HVR1500Q
:
366 case CX23885_BOARD_HAUPPAUGE_HVR1800
:
367 case CX23885_BOARD_HAUPPAUGE_HVR1800lp
:
369 ts2
->gen_ctrl_val
= 0xc; /* Serial bus + punctured clock */
370 ts2
->ts_clk_en_val
= 0x1; /* Enable TS_CLK */
371 ts2
->src_sel_val
= CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO
;
376 /* ------------------------------------------------------------------ */
382 * 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