blob: c36d3f632104a22c37b408805f056ccddec936c8 [file] [log] [blame]
Steven Tothd19770e2007-03-11 20:44:05 -03001/*
2 * Driver for the Conexant CX23885 PCIe bridge
3 *
Steven Toth6d897612008-09-03 17:12:12 -03004 * Copyright (c) 2006 Steven Toth <stoth@linuxtv.org>
Steven Tothd19770e2007-03-11 20:44:05 -03005 *
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/init.h>
23#include <linux/module.h>
24#include <linux/pci.h>
25#include <linux/delay.h>
Steven Toth7b888012008-01-10 03:40:49 -030026#include <media/cx25840.h>
Steven Tothd19770e2007-03-11 20:44:05 -030027
28#include "cx23885.h"
29
30/* ------------------------------------------------------------------ */
31/* board config info */
32
33struct cx23885_board cx23885_boards[] = {
34 [CX23885_BOARD_UNKNOWN] = {
35 .name = "UNKNOWN/GENERIC",
Steven Tothc7712612008-01-10 02:24:27 -030036 /* Ensure safe default for unknown boards */
37 .clk_freq = 0,
Steven Tothd19770e2007-03-11 20:44:05 -030038 .input = {{
39 .type = CX23885_VMUX_COMPOSITE1,
40 .vmux = 0,
41 },{
42 .type = CX23885_VMUX_COMPOSITE2,
43 .vmux = 1,
44 },{
45 .type = CX23885_VMUX_COMPOSITE3,
46 .vmux = 2,
47 },{
48 .type = CX23885_VMUX_COMPOSITE4,
49 .vmux = 3,
50 }},
51 },
52 [CX23885_BOARD_HAUPPAUGE_HVR1800lp] = {
53 .name = "Hauppauge WinTV-HVR1800lp",
Steven Tothd19770e2007-03-11 20:44:05 -030054 .portc = CX23885_MPEG_DVB,
55 .input = {{
56 .type = CX23885_VMUX_TELEVISION,
57 .vmux = 0,
58 .gpio0 = 0xff00,
59 },{
60 .type = CX23885_VMUX_DEBUG,
61 .vmux = 0,
62 .gpio0 = 0xff01,
63 },{
64 .type = CX23885_VMUX_COMPOSITE1,
65 .vmux = 1,
66 .gpio0 = 0xff02,
67 },{
68 .type = CX23885_VMUX_SVIDEO,
69 .vmux = 2,
70 .gpio0 = 0xff02,
71 }},
72 },
73 [CX23885_BOARD_HAUPPAUGE_HVR1800] = {
74 .name = "Hauppauge WinTV-HVR1800",
Steven Toth7b888012008-01-10 03:40:49 -030075 .porta = CX23885_ANALOG_VIDEO,
Steven Totha589b662008-01-13 23:44:47 -030076 .portb = CX23885_MPEG_ENCODER,
Steven Tothd19770e2007-03-11 20:44:05 -030077 .portc = CX23885_MPEG_DVB,
Steven Toth7b888012008-01-10 03:40:49 -030078 .tuner_type = TUNER_PHILIPS_TDA8290,
79 .tuner_addr = 0x42, /* 0x84 >> 1 */
Steven Tothd19770e2007-03-11 20:44:05 -030080 .input = {{
81 .type = CX23885_VMUX_TELEVISION,
Steven Toth7b888012008-01-10 03:40:49 -030082 .vmux = CX25840_VIN7_CH3 |
83 CX25840_VIN5_CH2 |
84 CX25840_VIN2_CH1,
85 .gpio0 = 0,
Steven Tothd19770e2007-03-11 20:44:05 -030086 },{
87 .type = CX23885_VMUX_COMPOSITE1,
Steven Toth7b888012008-01-10 03:40:49 -030088 .vmux = CX25840_VIN7_CH3 |
89 CX25840_VIN4_CH2 |
90 CX25840_VIN6_CH1,
91 .gpio0 = 0,
Steven Tothd19770e2007-03-11 20:44:05 -030092 },{
93 .type = CX23885_VMUX_SVIDEO,
Steven Toth7b888012008-01-10 03:40:49 -030094 .vmux = CX25840_VIN7_CH3 |
95 CX25840_VIN4_CH2 |
96 CX25840_VIN8_CH1 |
97 CX25840_SVIDEO_ON,
98 .gpio0 = 0,
Steven Tothd19770e2007-03-11 20:44:05 -030099 }},
100 },
Steven Totha77743b2007-08-22 21:01:20 -0300101 [CX23885_BOARD_HAUPPAUGE_HVR1250] = {
102 .name = "Hauppauge WinTV-HVR1250",
103 .portc = CX23885_MPEG_DVB,
104 .input = {{
105 .type = CX23885_VMUX_TELEVISION,
106 .vmux = 0,
107 .gpio0 = 0xff00,
108 },{
109 .type = CX23885_VMUX_DEBUG,
110 .vmux = 0,
111 .gpio0 = 0xff01,
112 },{
113 .type = CX23885_VMUX_COMPOSITE1,
114 .vmux = 1,
115 .gpio0 = 0xff02,
116 },{
117 .type = CX23885_VMUX_SVIDEO,
118 .vmux = 2,
119 .gpio0 = 0xff02,
120 }},
121 },
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300122 [CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP] = {
123 .name = "DViCO FusionHDTV5 Express",
Steven Totha6a3f142007-09-08 21:31:56 -0300124 .portb = CX23885_MPEG_DVB,
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300125 },
Steven Tothd1987d52007-12-18 01:57:06 -0300126 [CX23885_BOARD_HAUPPAUGE_HVR1500Q] = {
127 .name = "Hauppauge WinTV-HVR1500Q",
128 .portc = CX23885_MPEG_DVB,
129 },
Michael Krufky07b4a832007-12-18 01:09:11 -0300130 [CX23885_BOARD_HAUPPAUGE_HVR1500] = {
131 .name = "Hauppauge WinTV-HVR1500",
132 .portc = CX23885_MPEG_DVB,
133 },
Steven Tothb3ea0162008-04-19 01:14:19 -0300134 [CX23885_BOARD_HAUPPAUGE_HVR1200] = {
135 .name = "Hauppauge WinTV-HVR1200",
136 .portc = CX23885_MPEG_DVB,
137 },
Steven Totha780a312008-04-19 01:25:52 -0300138 [CX23885_BOARD_HAUPPAUGE_HVR1700] = {
139 .name = "Hauppauge WinTV-HVR1700",
140 .portc = CX23885_MPEG_DVB,
141 },
Steven Toth66762372008-04-22 15:38:26 -0300142 [CX23885_BOARD_HAUPPAUGE_HVR1400] = {
143 .name = "Hauppauge WinTV-HVR1400",
144 .portc = CX23885_MPEG_DVB,
145 },
Michael Krufky335377b2008-05-07 01:43:10 -0300146 [CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP] = {
147 .name = "DViCO FusionHDTV7 Dual Express",
Steven Tothaaadeac2008-06-30 20:58:38 -0300148 .portb = CX23885_MPEG_DVB,
Michael Krufky335377b2008-05-07 01:43:10 -0300149 .portc = CX23885_MPEG_DVB,
150 },
Steven Tothd19770e2007-03-11 20:44:05 -0300151};
152const unsigned int cx23885_bcount = ARRAY_SIZE(cx23885_boards);
153
154/* ------------------------------------------------------------------ */
155/* PCI subsystem IDs */
156
157struct cx23885_subid cx23885_subids[] = {
158 {
159 .subvendor = 0x0070,
160 .subdevice = 0x3400,
161 .card = CX23885_BOARD_UNKNOWN,
162 },{
163 .subvendor = 0x0070,
164 .subdevice = 0x7600,
165 .card = CX23885_BOARD_HAUPPAUGE_HVR1800lp,
166 },{
167 .subvendor = 0x0070,
168 .subdevice = 0x7800,
169 .card = CX23885_BOARD_HAUPPAUGE_HVR1800,
170 },{
171 .subvendor = 0x0070,
172 .subdevice = 0x7801,
173 .card = CX23885_BOARD_HAUPPAUGE_HVR1800,
Steven Totha77743b2007-08-22 21:01:20 -0300174 },{
175 .subvendor = 0x0070,
Michael Krufky6ccb8cf2007-12-27 21:46:34 -0300176 .subdevice = 0x7809,
177 .card = CX23885_BOARD_HAUPPAUGE_HVR1800,
178 },{
179 .subvendor = 0x0070,
Steven Totha77743b2007-08-22 21:01:20 -0300180 .subdevice = 0x7911,
181 .card = CX23885_BOARD_HAUPPAUGE_HVR1250,
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300182 },{
183 .subvendor = 0x18ac,
184 .subdevice = 0xd500,
185 .card = CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP,
Steven Tothd1987d52007-12-18 01:57:06 -0300186 },{
187 .subvendor = 0x0070,
Michael Krufkyb00fff02007-12-27 22:19:31 -0300188 .subdevice = 0x7790,
189 .card = CX23885_BOARD_HAUPPAUGE_HVR1500Q,
190 },{
191 .subvendor = 0x0070,
Steven Tothd1987d52007-12-18 01:57:06 -0300192 .subdevice = 0x7797,
193 .card = CX23885_BOARD_HAUPPAUGE_HVR1500Q,
Michael Krufky07b4a832007-12-18 01:09:11 -0300194 },{
195 .subvendor = 0x0070,
Michael Krufkyb00fff02007-12-27 22:19:31 -0300196 .subdevice = 0x7710,
197 .card = CX23885_BOARD_HAUPPAUGE_HVR1500,
198 },{
199 .subvendor = 0x0070,
Michael Krufky07b4a832007-12-18 01:09:11 -0300200 .subdevice = 0x7717,
201 .card = CX23885_BOARD_HAUPPAUGE_HVR1500,
Steven Tothb3ea0162008-04-19 01:14:19 -0300202 }, {
203 .subvendor = 0x0070,
204 .subdevice = 0x71d1,
205 .card = CX23885_BOARD_HAUPPAUGE_HVR1200,
Steven Totha780a312008-04-19 01:25:52 -0300206 }, {
207 .subvendor = 0x0070,
Michael Krufky3c3852c2008-05-02 16:12:44 -0300208 .subdevice = 0x71d3,
209 .card = CX23885_BOARD_HAUPPAUGE_HVR1200,
210 }, {
211 .subvendor = 0x0070,
Steven Totha780a312008-04-19 01:25:52 -0300212 .subdevice = 0x8101,
213 .card = CX23885_BOARD_HAUPPAUGE_HVR1700,
Steven Toth66762372008-04-22 15:38:26 -0300214 }, {
215 .subvendor = 0x0070,
216 .subdevice = 0x8010,
217 .card = CX23885_BOARD_HAUPPAUGE_HVR1400,
Michael Krufky335377b2008-05-07 01:43:10 -0300218 },{
219 .subvendor = 0x18ac,
220 .subdevice = 0xd618,
221 .card = CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP,
Steven Tothd19770e2007-03-11 20:44:05 -0300222 },
223};
224const unsigned int cx23885_idcount = ARRAY_SIZE(cx23885_subids);
225
226void cx23885_card_list(struct cx23885_dev *dev)
227{
228 int i;
229
230 if (0 == dev->pci->subsystem_vendor &&
231 0 == dev->pci->subsystem_device) {
232 printk("%s: Your board has no valid PCIe Subsystem ID and thus can't\n"
233 "%s: be autodetected. Please pass card=<n> insmod option to\n"
234 "%s: workaround that. Redirect complaints to the vendor of\n"
235 "%s: the TV card. Best regards,\n"
236 "%s: -- tux\n",
237 dev->name, dev->name, dev->name, dev->name, dev->name);
238 } else {
239 printk("%s: Your board isn't known (yet) to the driver. You can\n"
240 "%s: try to pick one of the existing card configs via\n"
241 "%s: card=<n> insmod option. Updating to the latest\n"
242 "%s: version might help as well.\n",
243 dev->name, dev->name, dev->name, dev->name);
244 }
245 printk("%s: Here is a list of valid choices for the card=<n> insmod option:\n",
246 dev->name);
247 for (i = 0; i < cx23885_bcount; i++)
248 printk("%s: card=%d -> %s\n",
249 dev->name, i, cx23885_boards[i].name);
250}
251
252static void hauppauge_eeprom(struct cx23885_dev *dev, u8 *eeprom_data)
253{
254 struct tveeprom tv;
255
256 tveeprom_hauppauge_analog(&dev->i2c_bus[0].i2c_client, &tv, eeprom_data);
257
Steven Tothd19770e2007-03-11 20:44:05 -0300258 /* Make sure we support the board model */
259 switch (tv.model)
260 {
Michael Krufky36396c82008-05-02 16:14:33 -0300261 case 71009:
262 /* WinTV-HVR1200 (PCIe, Retail, full height)
263 * DVB-T and basic analog */
264 case 71359:
265 /* WinTV-HVR1200 (PCIe, OEM, half height)
266 * DVB-T and basic analog */
267 case 71439:
268 /* WinTV-HVR1200 (PCIe, OEM, half height)
269 * DVB-T and basic analog */
270 case 71449:
271 /* WinTV-HVR1200 (PCIe, OEM, full height)
272 * DVB-T and basic analog */
273 case 71939:
274 /* WinTV-HVR1200 (PCIe, OEM, half height)
275 * DVB-T and basic analog */
276 case 71949:
277 /* WinTV-HVR1200 (PCIe, OEM, full height)
278 * DVB-T and basic analog */
279 case 71959:
280 /* WinTV-HVR1200 (PCIe, OEM, full height)
281 * DVB-T and basic analog */
282 case 71979:
283 /* WinTV-HVR1200 (PCIe, OEM, half height)
284 * DVB-T and basic analog */
285 case 71999:
286 /* WinTV-HVR1200 (PCIe, OEM, full height)
287 * DVB-T and basic analog */
Steven Tothd19770e2007-03-11 20:44:05 -0300288 case 76601: /* WinTV-HVR1800lp (PCIe, Retail, No IR, Dual channel ATSC and MPEG2 HW Encoder */
Michael Krufky29a7b4c2007-12-27 22:22:16 -0300289 case 77001: /* WinTV-HVR1500 (Express Card, OEM, No IR, ATSC and Basic analog */
290 case 77011: /* WinTV-HVR1500 (Express Card, Retail, No IR, ATSC and Basic analog */
291 case 77041: /* WinTV-HVR1500Q (Express Card, OEM, No IR, ATSC/QAM and Basic analog */
292 case 77051: /* WinTV-HVR1500Q (Express Card, Retail, No IR, ATSC/QAM and Basic analog */
Michael Krufky6a0a9622007-12-27 21:47:50 -0300293 case 78011: /* WinTV-HVR1800 (PCIe, Retail, 3.5mm in, IR, No FM, Dual channel ATSC and MPEG2 HW Encoder */
294 case 78501: /* WinTV-HVR1800 (PCIe, OEM, RCA in, No IR, FM, Dual channel ATSC and MPEG2 HW Encoder */
295 case 78521: /* WinTV-HVR1800 (PCIe, OEM, RCA in, No IR, FM, Dual channel ATSC and MPEG2 HW Encoder */
296 case 78531: /* WinTV-HVR1800 (PCIe, OEM, RCA in, No IR, No FM, Dual channel ATSC and MPEG2 HW Encoder */
297 case 78631: /* WinTV-HVR1800 (PCIe, OEM, No IR, No FM, Dual channel ATSC and MPEG2 HW Encoder */
Michael Krufky68370cf2007-12-27 22:02:38 -0300298 case 79001: /* WinTV-HVR1250 (PCIe, Retail, IR, full height, ATSC and Basic analog */
299 case 79101: /* WinTV-HVR1250 (PCIe, Retail, IR, half height, ATSC and Basic analog */
Steven Toth4b15b5e2008-03-29 17:37:00 -0300300 case 79561: /* WinTV-HVR1250 (PCIe, OEM, No IR, half height, ATSC and Basic analog */
Michael Krufky68370cf2007-12-27 22:02:38 -0300301 case 79571: /* WinTV-HVR1250 (PCIe, OEM, No IR, full height, ATSC and Basic analog */
302 case 79671: /* WinTV-HVR1250 (PCIe, OEM, No IR, half height, ATSC and Basic analog */
Steven Toth66762372008-04-22 15:38:26 -0300303 case 80019:
304 /* WinTV-HVR1400 (Express Card, Retail, IR,
305 * DVB-T and Basic analog */
Michael Krufky36396c82008-05-02 16:14:33 -0300306 case 81509:
307 /* WinTV-HVR1700 (PCIe, OEM, No IR, half height)
308 * DVB-T and MPEG2 HW Encoder */
Steven Totha780a312008-04-19 01:25:52 -0300309 case 81519:
Michael Krufky36396c82008-05-02 16:14:33 -0300310 /* WinTV-HVR1700 (PCIe, OEM, No IR, full height)
Steven Totha780a312008-04-19 01:25:52 -0300311 * DVB-T and MPEG2 HW Encoder */
Steven Tothd19770e2007-03-11 20:44:05 -0300312 break;
313 default:
314 printk("%s: warning: unknown hauppauge model #%d\n", dev->name, tv.model);
315 break;
316 }
317
318 printk(KERN_INFO "%s: hauppauge eeprom: model=%d\n",
319 dev->name, tv.model);
320}
321
Steven Toth8c700172008-01-05 16:55:45 -0300322/* Tuner callback function for cx23885 boards. Currently only needed
323 * for HVR1500Q, which has an xc5000 tuner.
324 */
Steven Toth73c993a2008-01-05 17:08:05 -0300325int cx23885_tuner_callback(void *priv, int command, int arg)
Steven Toth8c700172008-01-05 16:55:45 -0300326{
Steven Toth73c993a2008-01-05 17:08:05 -0300327 struct cx23885_i2c *bus = priv;
Steven Toth8c700172008-01-05 16:55:45 -0300328 struct cx23885_dev *dev = bus->dev;
Steven Toth6df51692008-06-30 22:17:05 -0300329 u32 bitmask = 0;
330
331 if (command != 0) {
332 printk(KERN_ERR "%s(): Unknown command 0x%x.\n",
333 __func__, command);
334 return -EINVAL;
335 }
Steven Toth8c700172008-01-05 16:55:45 -0300336
337 switch(dev->board) {
338 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
Steven Toth6df51692008-06-30 22:17:05 -0300339 /* Tuner Reset Command from xc5000 */
340 if (command == 0)
341 bitmask = 0x04;
342 break;
343 case CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP:
344 if (command == 0) {
345
346 /* Two identical tuners on two different i2c buses,
347 * we need to reset the correct gpio. */
348 if (bus->nr == 0)
349 bitmask = 0x01;
350 else if (bus->nr == 1)
351 bitmask = 0x04;
Steven Toth8c700172008-01-05 16:55:45 -0300352 }
353 break;
354 }
355
Steven Toth6df51692008-06-30 22:17:05 -0300356 if (bitmask) {
357 /* Drive the tuner into reset and back out */
358 cx_clear(GP0_IO, bitmask);
359 mdelay(200);
360 cx_set(GP0_IO, bitmask);
361 }
362
363 return 0;
Steven Toth8c700172008-01-05 16:55:45 -0300364}
Steven Toth73c993a2008-01-05 17:08:05 -0300365
Steven Totha6a3f142007-09-08 21:31:56 -0300366void cx23885_gpio_setup(struct cx23885_dev *dev)
367{
368 switch(dev->board) {
369 case CX23885_BOARD_HAUPPAUGE_HVR1250:
370 /* GPIO-0 cx24227 demodulator reset */
371 cx_set(GP0_IO, 0x00010001); /* Bring the part out of reset */
372 break;
Michael Krufky07b4a832007-12-18 01:09:11 -0300373 case CX23885_BOARD_HAUPPAUGE_HVR1500:
374 /* GPIO-0 cx24227 demodulator */
375 /* GPIO-2 xc3028 tuner */
376
377 /* Put the parts into reset */
378 cx_set(GP0_IO, 0x00050000);
379 cx_clear(GP0_IO, 0x00000005);
380 msleep(5);
381
382 /* Bring the parts out of reset */
383 cx_set(GP0_IO, 0x00050005);
384 break;
Steven Tothd1987d52007-12-18 01:57:06 -0300385 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
386 /* GPIO-0 cx24227 demodulator reset */
387 /* GPIO-2 xc5000 tuner reset */
388 cx_set(GP0_IO, 0x00050005); /* Bring the part out of reset */
389 break;
Steven Totha6a3f142007-09-08 21:31:56 -0300390 case CX23885_BOARD_HAUPPAUGE_HVR1800:
391 /* GPIO-0 656_CLK */
392 /* GPIO-1 656_D0 */
393 /* GPIO-2 8295A Reset */
394 /* GPIO-3-10 cx23417 data0-7 */
395 /* GPIO-11-14 cx23417 addr0-3 */
396 /* GPIO-15-18 cx23417 READY, CS, RD, WR */
397 /* GPIO-19 IR_RX */
Michael Krufky3ba71d22007-12-07 01:40:36 -0300398
Steven Totha589b662008-01-13 23:44:47 -0300399 /* CX23417 GPIO's */
400 /* EIO15 Zilog Reset */
401 /* EIO14 S5H1409/CX24227 Reset */
402
Steven Toth5206d6e2008-01-10 02:09:27 -0300403 /* Force the TDA8295A into reset and back */
404 cx_set(GP0_IO, 0x00040004);
405 mdelay(20);
406 cx_clear(GP0_IO, 0x00000004);
407 mdelay(20);
408 cx_set(GP0_IO, 0x00040004);
409 mdelay(20);
Steven Totha6a3f142007-09-08 21:31:56 -0300410 break;
Steven Tothb3ea0162008-04-19 01:14:19 -0300411 case CX23885_BOARD_HAUPPAUGE_HVR1200:
412 /* GPIO-0 tda10048 demodulator reset */
413 /* GPIO-2 tda18271 tuner reset */
414
415 /* Put the parts into reset and back */
416 cx_set(GP0_IO, 0x00050000);
417 mdelay(20);
418 cx_clear(GP0_IO, 0x00000005);
419 mdelay(20);
420 cx_set(GP0_IO, 0x00050005);
421 break;
Steven Totha780a312008-04-19 01:25:52 -0300422 case CX23885_BOARD_HAUPPAUGE_HVR1700:
423 /* GPIO-0 TDA10048 demodulator reset */
424 /* GPIO-2 TDA8295A Reset */
425 /* GPIO-3-10 cx23417 data0-7 */
426 /* GPIO-11-14 cx23417 addr0-3 */
427 /* GPIO-15-18 cx23417 READY, CS, RD, WR */
428
429 /* The following GPIO's are on the interna AVCore (cx25840) */
430 /* GPIO-19 IR_RX */
431 /* GPIO-20 IR_TX 416/DVBT Select */
432 /* GPIO-21 IIS DAT */
433 /* GPIO-22 IIS WCLK */
434 /* GPIO-23 IIS BCLK */
435
436 /* Put the parts into reset and back */
437 cx_set(GP0_IO, 0x00050000);
438 mdelay(20);
439 cx_clear(GP0_IO, 0x00000005);
440 mdelay(20);
441 cx_set(GP0_IO, 0x00050005);
442 break;
Steven Toth66762372008-04-22 15:38:26 -0300443 case CX23885_BOARD_HAUPPAUGE_HVR1400:
444 /* GPIO-0 Dibcom7000p demodulator reset */
445 /* GPIO-2 xc3028L tuner reset */
446 /* GPIO-13 LED */
447
448 /* Put the parts into reset and back */
449 cx_set(GP0_IO, 0x00050000);
450 mdelay(20);
451 cx_clear(GP0_IO, 0x00000005);
452 mdelay(20);
453 cx_set(GP0_IO, 0x00050005);
454 break;
Steven Toth1ecc5ae2008-06-30 21:23:50 -0300455 case CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP:
456 /* GPIO-0 xc5000 tuner reset i2c bus 0 */
457 /* GPIO-1 s5h1409 demod reset i2c bus 0 */
458 /* GPIO-2 xc5000 tuner reset i2c bus 1 */
459 /* GPIO-3 s5h1409 demod reset i2c bus 0 */
460
461 /* Put the parts into reset and back */
462 cx_set(GP0_IO, 0x000f0000);
463 mdelay(20);
464 cx_clear(GP0_IO, 0x0000000f);
465 mdelay(20);
466 cx_set(GP0_IO, 0x000f000f);
467 break;
Steven Totha6a3f142007-09-08 21:31:56 -0300468 }
469}
470
471int cx23885_ir_init(struct cx23885_dev *dev)
472{
473 switch (dev->board) {
474 case CX23885_BOARD_HAUPPAUGE_HVR1250:
Michael Krufky07b4a832007-12-18 01:09:11 -0300475 case CX23885_BOARD_HAUPPAUGE_HVR1500:
Steven Tothd1987d52007-12-18 01:57:06 -0300476 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
Steven Totha6a3f142007-09-08 21:31:56 -0300477 case CX23885_BOARD_HAUPPAUGE_HVR1800:
Steven Tothb3ea0162008-04-19 01:14:19 -0300478 case CX23885_BOARD_HAUPPAUGE_HVR1200:
Steven Toth66762372008-04-22 15:38:26 -0300479 case CX23885_BOARD_HAUPPAUGE_HVR1400:
Steven Totha6a3f142007-09-08 21:31:56 -0300480 /* FIXME: Implement me */
481 break;
482 }
483
484 return 0;
485}
486
Steven Tothd19770e2007-03-11 20:44:05 -0300487void cx23885_card_setup(struct cx23885_dev *dev)
488{
Steven Totha6a3f142007-09-08 21:31:56 -0300489 struct cx23885_tsport *ts1 = &dev->ts1;
490 struct cx23885_tsport *ts2 = &dev->ts2;
491
Steven Tothd19770e2007-03-11 20:44:05 -0300492 static u8 eeprom[256];
493
494 if (dev->i2c_bus[0].i2c_rc == 0) {
495 dev->i2c_bus[0].i2c_client.addr = 0xa0 >> 1;
Michael Krufky44a64812007-03-20 23:00:18 -0300496 tveeprom_read(&dev->i2c_bus[0].i2c_client,
497 eeprom, sizeof(eeprom));
Steven Tothd19770e2007-03-11 20:44:05 -0300498 }
499
500 switch (dev->board) {
Steven Totha77743b2007-08-22 21:01:20 -0300501 case CX23885_BOARD_HAUPPAUGE_HVR1250:
Michael Krufky07b4a832007-12-18 01:09:11 -0300502 case CX23885_BOARD_HAUPPAUGE_HVR1500:
Steven Tothd1987d52007-12-18 01:57:06 -0300503 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
Steven Toth66762372008-04-22 15:38:26 -0300504 case CX23885_BOARD_HAUPPAUGE_HVR1400:
Steven Tothc88133e2008-03-29 17:36:09 -0300505 if (dev->i2c_bus[0].i2c_rc == 0)
506 hauppauge_eeprom(dev, eeprom+0x80);
507 break;
Steven Tothd19770e2007-03-11 20:44:05 -0300508 case CX23885_BOARD_HAUPPAUGE_HVR1800:
509 case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
Steven Tothb3ea0162008-04-19 01:14:19 -0300510 case CX23885_BOARD_HAUPPAUGE_HVR1200:
Steven Totha780a312008-04-19 01:25:52 -0300511 case CX23885_BOARD_HAUPPAUGE_HVR1700:
Steven Tothd19770e2007-03-11 20:44:05 -0300512 if (dev->i2c_bus[0].i2c_rc == 0)
Steven Tothc88133e2008-03-29 17:36:09 -0300513 hauppauge_eeprom(dev, eeprom+0xc0);
Steven Tothd19770e2007-03-11 20:44:05 -0300514 break;
515 }
Steven Totha6a3f142007-09-08 21:31:56 -0300516
517 switch (dev->board) {
Michael Krufky335377b2008-05-07 01:43:10 -0300518 case CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP:
519 ts2->gen_ctrl_val = 0xc; /* Serial bus + punctured clock */
520 ts2->ts_clk_en_val = 0x1; /* Enable TS_CLK */
521 ts2->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;
522 /* break omitted intentionally */
Steven Totha6a3f142007-09-08 21:31:56 -0300523 case CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP:
524 ts1->gen_ctrl_val = 0xc; /* Serial bus + punctured clock */
525 ts1->ts_clk_en_val = 0x1; /* Enable TS_CLK */
526 ts1->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;
527 break;
Steven Totha589b662008-01-13 23:44:47 -0300528 case CX23885_BOARD_HAUPPAUGE_HVR1800:
529 /* Defaults for VID B - Analog encoder */
530 /* DREQ_POL, SMODE, PUNC_CLK, MCLK_POL Serial bus + punc clk */
531 ts1->gen_ctrl_val = 0x10e;
532 ts1->ts_clk_en_val = 0x1; /* Enable TS_CLK */
533 ts1->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;
534
535 /* APB_TSVALERR_POL (active low)*/
536 ts1->vld_misc_val = 0x2000;
537 ts1->hw_sop_ctrl_val = (0x47 << 16 | 188 << 4 | 0xc);
538
539 /* Defaults for VID C */
540 ts2->gen_ctrl_val = 0xc; /* Serial bus + punctured clock */
541 ts2->ts_clk_en_val = 0x1; /* Enable TS_CLK */
542 ts2->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;
543 break;
Steven Totha6a3f142007-09-08 21:31:56 -0300544 case CX23885_BOARD_HAUPPAUGE_HVR1250:
Michael Krufky07b4a832007-12-18 01:09:11 -0300545 case CX23885_BOARD_HAUPPAUGE_HVR1500:
Steven Tothd1987d52007-12-18 01:57:06 -0300546 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
Steven Totha6a3f142007-09-08 21:31:56 -0300547 case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
Steven Tothb3ea0162008-04-19 01:14:19 -0300548 case CX23885_BOARD_HAUPPAUGE_HVR1200:
Steven Totha780a312008-04-19 01:25:52 -0300549 case CX23885_BOARD_HAUPPAUGE_HVR1700:
Steven Toth66762372008-04-22 15:38:26 -0300550 case CX23885_BOARD_HAUPPAUGE_HVR1400:
Steven Totha6a3f142007-09-08 21:31:56 -0300551 default:
552 ts2->gen_ctrl_val = 0xc; /* Serial bus + punctured clock */
553 ts2->ts_clk_en_val = 0x1; /* Enable TS_CLK */
554 ts2->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO;
555 }
556
Steven Tothce89cfb2008-04-19 01:36:06 -0300557 /* Certain boards support analog, or require the avcore to be
558 * loaded, ensure this happens.
559 */
560 switch (dev->board) {
561 case CX23885_BOARD_HAUPPAUGE_HVR1800:
562 case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
563 case CX23885_BOARD_HAUPPAUGE_HVR1700:
564 request_module("cx25840");
565 break;
566 }
Steven Tothd19770e2007-03-11 20:44:05 -0300567}
568
569/* ------------------------------------------------------------------ */
570
Steven Tothd19770e2007-03-11 20:44:05 -0300571/*
572 * Local variables:
573 * c-basic-offset: 8
574 * End:
575 * 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
576 */