blob: 5bcbb4cc7c2a53e0656d56be53441ad085fb0874 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * device driver for Conexant 2388x based TV cards
4 * card-specific stuff.
5 *
6 * (c) 2003 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23#include <linux/init.h>
24#include <linux/module.h>
25#include <linux/pci.h>
26#include <linux/delay.h>
27
28#include "cx88.h"
Mauro Carvalho Chehab55c88612007-10-19 06:59:33 -030029#include "tea5767.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Trent Piephobbc83592007-08-15 14:41:58 -030031static unsigned int tuner[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
32static unsigned int radio[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
33static unsigned int card[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
34
35module_param_array(tuner, int, NULL, 0444);
36module_param_array(radio, int, NULL, 0444);
37module_param_array(card, int, NULL, 0444);
38
39MODULE_PARM_DESC(tuner,"tuner type");
40MODULE_PARM_DESC(radio,"radio tuner type");
41MODULE_PARM_DESC(card,"card type");
42
43static unsigned int latency = UNSET;
44module_param(latency,int,0444);
45MODULE_PARM_DESC(latency,"pci latency timer");
46
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -030047#define info_printk(core, fmt, arg...) \
48 printk(KERN_INFO "%s: " fmt, core->name , ## arg)
49
50#define warn_printk(core, fmt, arg...) \
51 printk(KERN_WARNING "%s: " fmt, core->name , ## arg)
52
53#define err_printk(core, fmt, arg...) \
54 printk(KERN_ERR "%s: " fmt, core->name , ## arg)
55
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/* ------------------------------------------------------------------ */
58/* board config info */
59
Mauro Carvalho Chehab4bf12262008-04-26 11:55:09 -030060/* If radio_type !=UNSET, radio_addr should be specified
61 */
62
Trent Piephobbc83592007-08-15 14:41:58 -030063static const struct cx88_board cx88_boards[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 [CX88_BOARD_UNKNOWN] = {
65 .name = "UNKNOWN/GENERIC",
66 .tuner_type = UNSET,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -070067 .radio_type = UNSET,
68 .tuner_addr = ADDR_UNSET,
69 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 .input = {{
71 .type = CX88_VMUX_COMPOSITE1,
72 .vmux = 0,
73 },{
74 .type = CX88_VMUX_COMPOSITE2,
75 .vmux = 1,
76 },{
77 .type = CX88_VMUX_COMPOSITE3,
78 .vmux = 2,
79 },{
80 .type = CX88_VMUX_COMPOSITE4,
81 .vmux = 3,
82 }},
83 },
84 [CX88_BOARD_HAUPPAUGE] = {
85 .name = "Hauppauge WinTV 34xxx models",
86 .tuner_type = UNSET,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -070087 .radio_type = UNSET,
88 .tuner_addr = ADDR_UNSET,
89 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 .tda9887_conf = TDA9887_PRESENT,
91 .input = {{
92 .type = CX88_VMUX_TELEVISION,
93 .vmux = 0,
94 .gpio0 = 0xff00, // internal decoder
95 },{
96 .type = CX88_VMUX_DEBUG,
97 .vmux = 0,
98 .gpio0 = 0xff01, // mono from tuner chip
99 },{
100 .type = CX88_VMUX_COMPOSITE1,
101 .vmux = 1,
102 .gpio0 = 0xff02,
103 },{
104 .type = CX88_VMUX_SVIDEO,
105 .vmux = 2,
106 .gpio0 = 0xff02,
107 }},
108 .radio = {
109 .type = CX88_RADIO,
110 .gpio0 = 0xff01,
111 },
112 },
113 [CX88_BOARD_GDI] = {
114 .name = "GDI Black Gold",
115 .tuner_type = UNSET,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700116 .radio_type = UNSET,
117 .tuner_addr = ADDR_UNSET,
118 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 .input = {{
120 .type = CX88_VMUX_TELEVISION,
121 .vmux = 0,
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700122 },{
123 .type = CX88_VMUX_SVIDEO,
124 .vmux = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }},
126 },
127 [CX88_BOARD_PIXELVIEW] = {
128 .name = "PixelView",
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700129 .tuner_type = TUNER_PHILIPS_PAL,
130 .radio_type = UNSET,
131 .tuner_addr = ADDR_UNSET,
132 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 .input = {{
134 .type = CX88_VMUX_TELEVISION,
135 .vmux = 0,
136 .gpio0 = 0xff00, // internal decoder
137 },{
138 .type = CX88_VMUX_COMPOSITE1,
139 .vmux = 1,
140 },{
141 .type = CX88_VMUX_SVIDEO,
142 .vmux = 2,
143 }},
144 .radio = {
145 .type = CX88_RADIO,
146 .gpio0 = 0xff10,
Michael Krufky47ee2f32006-06-06 15:51:38 -0300147 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 },
149 [CX88_BOARD_ATI_WONDER_PRO] = {
150 .name = "ATI TV Wonder Pro",
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700151 .tuner_type = TUNER_PHILIPS_4IN1,
152 .radio_type = UNSET,
153 .tuner_addr = ADDR_UNSET,
154 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 .tda9887_conf = TDA9887_PRESENT | TDA9887_INTERCARRIER,
156 .input = {{
157 .type = CX88_VMUX_TELEVISION,
158 .vmux = 0,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800159 .gpio0 = 0x03ff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 },{
161 .type = CX88_VMUX_COMPOSITE1,
162 .vmux = 1,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800163 .gpio0 = 0x03fe,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 },{
165 .type = CX88_VMUX_SVIDEO,
166 .vmux = 2,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800167 .gpio0 = 0x03fe,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }},
169 },
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800170 [CX88_BOARD_WINFAST2000XP_EXPERT] = {
171 .name = "Leadtek Winfast 2000XP Expert",
172 .tuner_type = TUNER_PHILIPS_4IN1,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700173 .radio_type = UNSET,
174 .tuner_addr = ADDR_UNSET,
175 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .tda9887_conf = TDA9887_PRESENT,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800177 .input = {{
178 .type = CX88_VMUX_TELEVISION,
179 .vmux = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 .gpio0 = 0x00F5e700,
181 .gpio1 = 0x00003004,
182 .gpio2 = 0x00F5e700,
183 .gpio3 = 0x02000000,
184 },{
185 .type = CX88_VMUX_COMPOSITE1,
186 .vmux = 1,
187 .gpio0 = 0x00F5c700,
188 .gpio1 = 0x00003004,
189 .gpio2 = 0x00F5c700,
190 .gpio3 = 0x02000000,
191 },{
192 .type = CX88_VMUX_SVIDEO,
193 .vmux = 2,
194 .gpio0 = 0x00F5c700,
195 .gpio1 = 0x00003004,
196 .gpio2 = 0x00F5c700,
197 .gpio3 = 0x02000000,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800198 }},
199 .radio = {
200 .type = CX88_RADIO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 .gpio0 = 0x00F5d700,
202 .gpio1 = 0x00003004,
203 .gpio2 = 0x00F5d700,
204 .gpio3 = 0x02000000,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800205 },
206 },
Lubomir Bulej7418f342005-11-08 21:38:34 -0800207 [CX88_BOARD_AVERTV_STUDIO_303] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 .name = "AverTV Studio 303 (M126)",
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700209 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
210 .radio_type = UNSET,
211 .tuner_addr = ADDR_UNSET,
212 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 .tda9887_conf = TDA9887_PRESENT,
214 .input = {{
215 .type = CX88_VMUX_TELEVISION,
216 .vmux = 0,
Marcin Rudowski4aca4832006-03-09 16:09:51 -0300217 .gpio1 = 0xe09f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 },{
219 .type = CX88_VMUX_COMPOSITE1,
220 .vmux = 1,
Marcin Rudowski4aca4832006-03-09 16:09:51 -0300221 .gpio1 = 0xe05f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 },{
223 .type = CX88_VMUX_SVIDEO,
224 .vmux = 2,
Marcin Rudowski4aca4832006-03-09 16:09:51 -0300225 .gpio1 = 0xe05f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }},
227 .radio = {
Marcin Rudowski4aca4832006-03-09 16:09:51 -0300228 .gpio1 = 0xe0df,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 .type = CX88_RADIO,
230 },
231 },
232 [CX88_BOARD_MSI_TVANYWHERE_MASTER] = {
233 // added gpio values thanks to Michal
234 // values for PAL from DScaler
235 .name = "MSI TV-@nywhere Master",
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700236 .tuner_type = TUNER_MT2032,
237 .radio_type = UNSET,
238 .tuner_addr = ADDR_UNSET,
239 .radio_addr = ADDR_UNSET,
Nickolay V. Shmyrev3ae1adc2005-11-08 21:37:39 -0800240 .tda9887_conf = TDA9887_PRESENT | TDA9887_INTERCARRIER_NTSC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 .input = {{
242 .type = CX88_VMUX_TELEVISION,
243 .vmux = 0,
244 .gpio0 = 0x000040bf,
245 .gpio1 = 0x000080c0,
246 .gpio2 = 0x0000ff40,
247 },{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800248 .type = CX88_VMUX_COMPOSITE1,
249 .vmux = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 .gpio0 = 0x000040bf,
251 .gpio1 = 0x000080c0,
252 .gpio2 = 0x0000ff40,
253 },{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800254 .type = CX88_VMUX_SVIDEO,
255 .vmux = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 .gpio0 = 0x000040bf,
257 .gpio1 = 0x000080c0,
258 .gpio2 = 0x0000ff40,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800259 }},
260 .radio = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 .type = CX88_RADIO,
Mauro Carvalho Chehab55c88612007-10-19 06:59:33 -0300262 .vmux = 3,
263 .gpio0 = 0x000040bf,
264 .gpio1 = 0x000080c0,
265 .gpio2 = 0x0000ff20,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800266 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 },
268 [CX88_BOARD_WINFAST_DV2000] = {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800269 .name = "Leadtek Winfast DV2000",
270 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700271 .radio_type = UNSET,
272 .tuner_addr = ADDR_UNSET,
273 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 .tda9887_conf = TDA9887_PRESENT,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800275 .input = {{
276 .type = CX88_VMUX_TELEVISION,
277 .vmux = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 .gpio0 = 0x0035e700,
279 .gpio1 = 0x00003004,
280 .gpio2 = 0x0035e700,
281 .gpio3 = 0x02000000,
282 },{
283
284 .type = CX88_VMUX_COMPOSITE1,
285 .vmux = 1,
286 .gpio0 = 0x0035c700,
287 .gpio1 = 0x00003004,
288 .gpio2 = 0x0035c700,
289 .gpio3 = 0x02000000,
290 },{
291 .type = CX88_VMUX_SVIDEO,
292 .vmux = 2,
293 .gpio0 = 0x0035c700,
294 .gpio1 = 0x0035c700,
295 .gpio2 = 0x02000000,
296 .gpio3 = 0x02000000,
297 }},
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800298 .radio = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 .type = CX88_RADIO,
300 .gpio0 = 0x0035d700,
301 .gpio1 = 0x00007004,
302 .gpio2 = 0x0035d700,
303 .gpio3 = 0x02000000,
Michael Krufky47ee2f32006-06-06 15:51:38 -0300304 },
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800305 },
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700306 [CX88_BOARD_LEADTEK_PVR2000] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 // gpio values for PAL version from regspy by DScaler
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700308 .name = "Leadtek PVR 2000",
309 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
310 .radio_type = UNSET,
311 .tuner_addr = ADDR_UNSET,
312 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 .tda9887_conf = TDA9887_PRESENT,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700314 .input = {{
315 .type = CX88_VMUX_TELEVISION,
316 .vmux = 0,
317 .gpio0 = 0x0000bde2,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300318 .audioroute = 1,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700319 },{
320 .type = CX88_VMUX_COMPOSITE1,
321 .vmux = 1,
322 .gpio0 = 0x0000bde6,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300323 .audioroute = 1,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700324 },{
325 .type = CX88_VMUX_SVIDEO,
326 .vmux = 2,
327 .gpio0 = 0x0000bde6,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300328 .audioroute = 1,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700329 }},
330 .radio = {
331 .type = CX88_RADIO,
332 .gpio0 = 0x0000bd62,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300333 .audioroute = 1,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700334 },
Michael Krufky48d5e802006-09-25 14:09:10 -0300335 .mpeg = CX88_MPEG_BLACKBIRD,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700336 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 [CX88_BOARD_IODATA_GVVCP3PCI] = {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800338 .name = "IODATA GV-VCP3/PCI",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 .tuner_type = TUNER_ABSENT,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800340 .radio_type = UNSET,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700341 .tuner_addr = ADDR_UNSET,
342 .radio_addr = ADDR_UNSET,
343 .input = {{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800344 .type = CX88_VMUX_COMPOSITE1,
345 .vmux = 0,
346 },{
347 .type = CX88_VMUX_COMPOSITE2,
348 .vmux = 1,
349 },{
350 .type = CX88_VMUX_SVIDEO,
351 .vmux = 2,
352 }},
353 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 [CX88_BOARD_PROLINK_PLAYTVPVR] = {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800355 .name = "Prolink PlayTV PVR",
356 .tuner_type = TUNER_PHILIPS_FM1236_MK3,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700357 .radio_type = UNSET,
358 .tuner_addr = ADDR_UNSET,
359 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 .tda9887_conf = TDA9887_PRESENT,
361 .input = {{
362 .type = CX88_VMUX_TELEVISION,
363 .vmux = 0,
Michael Krufkyfc34f162006-03-13 03:41:44 -0300364 .gpio0 = 0xbff0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 },{
366 .type = CX88_VMUX_COMPOSITE1,
367 .vmux = 1,
Michael Krufkyfc34f162006-03-13 03:41:44 -0300368 .gpio0 = 0xbff3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 },{
370 .type = CX88_VMUX_SVIDEO,
371 .vmux = 2,
Michael Krufkyfc34f162006-03-13 03:41:44 -0300372 .gpio0 = 0xbff3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }},
374 .radio = {
375 .type = CX88_RADIO,
Michael Krufkyfc34f162006-03-13 03:41:44 -0300376 .gpio0 = 0xbff0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 },
378 },
379 [CX88_BOARD_ASUS_PVR_416] = {
380 .name = "ASUS PVR-416",
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700381 .tuner_type = TUNER_PHILIPS_FM1236_MK3,
382 .radio_type = UNSET,
383 .tuner_addr = ADDR_UNSET,
384 .radio_addr = ADDR_UNSET,
385 .tda9887_conf = TDA9887_PRESENT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 .input = {{
387 .type = CX88_VMUX_TELEVISION,
388 .vmux = 0,
389 .gpio0 = 0x0000fde6,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800390 },{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 .type = CX88_VMUX_SVIDEO,
392 .vmux = 2,
393 .gpio0 = 0x0000fde6, // 0x0000fda6 L,R RCA audio in?
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300394 .audioroute = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }},
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800396 .radio = {
397 .type = CX88_RADIO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 .gpio0 = 0x0000fde2,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800399 },
Michael Krufky48d5e802006-09-25 14:09:10 -0300400 .mpeg = CX88_MPEG_BLACKBIRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 },
402 [CX88_BOARD_MSI_TVANYWHERE] = {
403 .name = "MSI TV-@nywhere",
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700404 .tuner_type = TUNER_MT2032,
405 .radio_type = UNSET,
406 .tuner_addr = ADDR_UNSET,
407 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 .tda9887_conf = TDA9887_PRESENT,
409 .input = {{
410 .type = CX88_VMUX_TELEVISION,
411 .vmux = 0,
412 .gpio0 = 0x00000fbf,
413 .gpio2 = 0x0000fc08,
414 },{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800415 .type = CX88_VMUX_COMPOSITE1,
416 .vmux = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 .gpio0 = 0x00000fbf,
418 .gpio2 = 0x0000fc68,
419 },{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800420 .type = CX88_VMUX_SVIDEO,
421 .vmux = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 .gpio0 = 0x00000fbf,
423 .gpio2 = 0x0000fc68,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800424 }},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 },
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800426 [CX88_BOARD_KWORLD_DVB_T] = {
427 .name = "KWorld/VStream XPert DVB-T",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 .tuner_type = TUNER_ABSENT,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700429 .radio_type = UNSET,
430 .tuner_addr = ADDR_UNSET,
431 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800432 .input = {{
433 .type = CX88_VMUX_COMPOSITE1,
434 .vmux = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 .gpio0 = 0x0700,
436 .gpio2 = 0x0101,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800437 },{
438 .type = CX88_VMUX_SVIDEO,
439 .vmux = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 .gpio0 = 0x0700,
441 .gpio2 = 0x0101,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800442 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300443 .mpeg = CX88_MPEG_DVB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 },
445 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1] = {
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700446 .name = "DViCO FusionHDTV DVB-T1",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 .tuner_type = TUNER_ABSENT, /* No analog tuner */
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700448 .radio_type = UNSET,
449 .tuner_addr = ADDR_UNSET,
450 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 .input = {{
452 .type = CX88_VMUX_COMPOSITE1,
453 .vmux = 1,
454 .gpio0 = 0x000027df,
Michael Krufky47ee2f32006-06-06 15:51:38 -0300455 },{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 .type = CX88_VMUX_SVIDEO,
457 .vmux = 2,
458 .gpio0 = 0x000027df,
459 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300460 .mpeg = CX88_MPEG_DVB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 },
462 [CX88_BOARD_KWORLD_LTV883] = {
463 .name = "KWorld LTV883RF",
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700464 .tuner_type = TUNER_TNF_8831BGFF,
465 .radio_type = UNSET,
466 .tuner_addr = ADDR_UNSET,
467 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800468 .input = {{
469 .type = CX88_VMUX_TELEVISION,
470 .vmux = 0,
471 .gpio0 = 0x07f8,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 },{
473 .type = CX88_VMUX_DEBUG,
474 .vmux = 0,
475 .gpio0 = 0x07f9, // mono from tuner chip
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800476 },{
477 .type = CX88_VMUX_COMPOSITE1,
478 .vmux = 1,
479 .gpio0 = 0x000007fa,
480 },{
481 .type = CX88_VMUX_SVIDEO,
482 .vmux = 2,
483 .gpio0 = 0x000007fa,
484 }},
485 .radio = {
486 .type = CX88_RADIO,
487 .gpio0 = 0x000007f8,
488 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 },
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700490 [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q] = {
491 .name = "DViCO FusionHDTV 3 Gold-Q",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 .tuner_type = TUNER_MICROTUNE_4042FI5,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700493 .radio_type = UNSET,
494 .tuner_addr = ADDR_UNSET,
495 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /*
497 GPIO[0] resets DT3302 DTV receiver
498 0 - reset asserted
499 1 - normal operation
500 GPIO[1] mutes analog audio output connector
501 0 - enable selected source
502 1 - mute
503 GPIO[2] selects source for analog audio output connector
504 0 - analog audio input connector on tab
505 1 - analog DAC output from CX23881 chip
506 GPIO[3] selects RF input connector on tuner module
507 0 - RF connector labeled CABLE
508 1 - RF connector labeled ANT
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700509 GPIO[4] selects high RF for QAM256 mode
510 0 - normal RF
511 1 - high RF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 */
513 .input = {{
514 .type = CX88_VMUX_TELEVISION,
515 .vmux = 0,
516 .gpio0 = 0x0f0d,
517 },{
518 .type = CX88_VMUX_CABLE,
519 .vmux = 0,
520 .gpio0 = 0x0f05,
521 },{
522 .type = CX88_VMUX_COMPOSITE1,
523 .vmux = 1,
524 .gpio0 = 0x0f00,
525 },{
526 .type = CX88_VMUX_SVIDEO,
527 .vmux = 2,
528 .gpio0 = 0x0f00,
529 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300530 .mpeg = CX88_MPEG_DVB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 },
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800532 [CX88_BOARD_HAUPPAUGE_DVB_T1] = {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700533 .name = "Hauppauge Nova-T DVB-T",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 .tuner_type = TUNER_ABSENT,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700535 .radio_type = UNSET,
536 .tuner_addr = ADDR_UNSET,
537 .radio_addr = ADDR_UNSET,
538 .input = {{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800539 .type = CX88_VMUX_DVB,
540 .vmux = 0,
541 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300542 .mpeg = CX88_MPEG_DVB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 },
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800544 [CX88_BOARD_CONEXANT_DVB_T1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 .name = "Conexant DVB-T reference design",
546 .tuner_type = TUNER_ABSENT,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700547 .radio_type = UNSET,
548 .tuner_addr = ADDR_UNSET,
549 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800550 .input = {{
551 .type = CX88_VMUX_DVB,
552 .vmux = 0,
553 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300554 .mpeg = CX88_MPEG_DVB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 },
556 [CX88_BOARD_PROVIDEO_PV259] = {
557 .name = "Provideo PV259",
558 .tuner_type = TUNER_PHILIPS_FQ1216ME,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700559 .radio_type = UNSET,
560 .tuner_addr = ADDR_UNSET,
561 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 .input = {{
563 .type = CX88_VMUX_TELEVISION,
564 .vmux = 0,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300565 .audioroute = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300567 .mpeg = CX88_MPEG_BLACKBIRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 },
569 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS] = {
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700570 .name = "DViCO FusionHDTV DVB-T Plus",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 .tuner_type = TUNER_ABSENT, /* No analog tuner */
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700572 .radio_type = UNSET,
573 .tuner_addr = ADDR_UNSET,
574 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 .input = {{
576 .type = CX88_VMUX_COMPOSITE1,
577 .vmux = 1,
578 .gpio0 = 0x000027df,
Michael Krufky47ee2f32006-06-06 15:51:38 -0300579 },{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 .type = CX88_VMUX_SVIDEO,
581 .vmux = 2,
582 .gpio0 = 0x000027df,
583 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300584 .mpeg = CX88_MPEG_DVB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 },
586 [CX88_BOARD_DNTV_LIVE_DVB_T] = {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800587 .name = "digitalnow DNTV Live! DVB-T",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 .tuner_type = TUNER_ABSENT,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700589 .radio_type = UNSET,
590 .tuner_addr = ADDR_UNSET,
591 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800592 .input = {{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 .type = CX88_VMUX_COMPOSITE1,
594 .vmux = 1,
595 .gpio0 = 0x00000700,
596 .gpio2 = 0x00000101,
597 },{
598 .type = CX88_VMUX_SVIDEO,
599 .vmux = 2,
600 .gpio0 = 0x00000700,
601 .gpio2 = 0x00000101,
602 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300603 .mpeg = CX88_MPEG_DVB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 },
605 [CX88_BOARD_PCHDTV_HD3000] = {
606 .name = "pcHDTV HD3000 HDTV",
Trent Piepho9175b852006-04-10 09:40:37 -0300607 .tuner_type = TUNER_THOMSON_DTT761X,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700608 .radio_type = UNSET,
609 .tuner_addr = ADDR_UNSET,
610 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehabe4f5c822005-12-04 12:41:54 -0200611 .tda9887_conf = TDA9887_PRESENT,
Trent Piepho19dc74b2007-07-31 23:06:50 -0300612 /* GPIO[2] = audio source for analog audio out connector
613 * 0 = analog audio input connector
614 * 1 = CX88 audio DACs
615 *
616 * GPIO[7] = input to CX88's audio/chroma ADC
617 * 0 = FM 10.7 MHz IF
618 * 1 = Sound 4.5 MHz IF
619 *
620 * GPIO[1,5,6] = Oren 51132 pins 27,35,28 respectively
621 *
622 * GPIO[16] = Remote control input
623 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 .input = {{
625 .type = CX88_VMUX_TELEVISION,
626 .vmux = 0,
627 .gpio0 = 0x00008484,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 },{
629 .type = CX88_VMUX_COMPOSITE1,
630 .vmux = 1,
631 .gpio0 = 0x00008400,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 },{
633 .type = CX88_VMUX_SVIDEO,
634 .vmux = 2,
635 .gpio0 = 0x00008400,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }},
637 .radio = {
638 .type = CX88_RADIO,
Trent Piepho19dc74b2007-07-31 23:06:50 -0300639 .gpio0 = 0x00008404,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 },
Michael Krufky48d5e802006-09-25 14:09:10 -0300641 .mpeg = CX88_MPEG_DVB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 },
643 [CX88_BOARD_HAUPPAUGE_ROSLYN] = {
644 // entry added by Kaustubh D. Bhalerao <bhalerao.1@osu.edu>
645 // GPIO values obtained from regspy, courtesy Sean Covel
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700646 .name = "Hauppauge WinTV 28xxx (Roslyn) models",
647 .tuner_type = UNSET,
648 .radio_type = UNSET,
649 .tuner_addr = ADDR_UNSET,
650 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 .input = {{
652 .type = CX88_VMUX_TELEVISION,
653 .vmux = 0,
Steven Toth0345c382006-01-09 15:25:17 -0200654 .gpio0 = 0xed1a,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 .gpio2 = 0x00ff,
656 },{
657 .type = CX88_VMUX_DEBUG,
658 .vmux = 0,
Steven Toth0345c382006-01-09 15:25:17 -0200659 .gpio0 = 0xff01,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 },{
661 .type = CX88_VMUX_COMPOSITE1,
662 .vmux = 1,
663 .gpio0 = 0xff02,
664 },{
665 .type = CX88_VMUX_SVIDEO,
666 .vmux = 2,
667 .gpio0 = 0xed92,
668 .gpio2 = 0x00ff,
669 }},
670 .radio = {
671 .type = CX88_RADIO,
672 .gpio0 = 0xed96,
673 .gpio2 = 0x00ff,
674 },
Michael Krufky48d5e802006-09-25 14:09:10 -0300675 .mpeg = CX88_MPEG_BLACKBIRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 },
677 [CX88_BOARD_DIGITALLOGIC_MEC] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 .name = "Digital-Logic MICROSPACE Entertainment Center (MEC)",
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700679 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
680 .radio_type = UNSET,
681 .tuner_addr = ADDR_UNSET,
682 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 .tda9887_conf = TDA9887_PRESENT,
684 .input = {{
685 .type = CX88_VMUX_TELEVISION,
686 .vmux = 0,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700687 .gpio0 = 0x00009d80,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300688 .audioroute = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 },{
690 .type = CX88_VMUX_COMPOSITE1,
691 .vmux = 1,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700692 .gpio0 = 0x00009d76,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300693 .audioroute = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 },{
695 .type = CX88_VMUX_SVIDEO,
696 .vmux = 2,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700697 .gpio0 = 0x00009d76,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300698 .audioroute = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }},
700 .radio = {
701 .type = CX88_RADIO,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700702 .gpio0 = 0x00009d00,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300703 .audioroute = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 },
Michael Krufky48d5e802006-09-25 14:09:10 -0300705 .mpeg = CX88_MPEG_BLACKBIRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 },
707 [CX88_BOARD_IODATA_GVBCTV7E] = {
708 .name = "IODATA GV/BCTV7E",
709 .tuner_type = TUNER_PHILIPS_FQ1286,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700710 .radio_type = UNSET,
711 .tuner_addr = ADDR_UNSET,
712 .radio_addr = ADDR_UNSET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 .tda9887_conf = TDA9887_PRESENT,
714 .input = {{
715 .type = CX88_VMUX_TELEVISION,
716 .vmux = 1,
717 .gpio1 = 0x0000e03f,
718 },{
719 .type = CX88_VMUX_COMPOSITE1,
720 .vmux = 2,
721 .gpio1 = 0x0000e07f,
722 },{
723 .type = CX88_VMUX_SVIDEO,
724 .vmux = 3,
725 .gpio1 = 0x0000e07f,
726 }}
727 },
Manuel Capinha239df2e2005-06-23 22:04:53 -0700728 [CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO] = {
729 .name = "PixelView PlayTV Ultra Pro (Stereo)",
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700730 /* May be also TUNER_YMEC_TVF_5533MF for NTSC/M or PAL/M */
731 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
Mauro Carvalho Chehabc5287ba2005-07-15 03:56:28 -0700732 .radio_type = UNSET,
733 .tuner_addr = ADDR_UNSET,
734 .radio_addr = ADDR_UNSET,
Manuel Capinha239df2e2005-06-23 22:04:53 -0700735 .input = {{
736 .type = CX88_VMUX_TELEVISION,
737 .vmux = 0,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700738 .gpio0 = 0xbf61, /* internal decoder */
Manuel Capinha239df2e2005-06-23 22:04:53 -0700739 },{
740 .type = CX88_VMUX_COMPOSITE1,
741 .vmux = 1,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700742 .gpio0 = 0xbf63,
Manuel Capinha239df2e2005-06-23 22:04:53 -0700743 },{
744 .type = CX88_VMUX_SVIDEO,
745 .vmux = 2,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700746 .gpio0 = 0xbf63,
Manuel Capinha239df2e2005-06-23 22:04:53 -0700747 }},
748 .radio = {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700749 .type = CX88_RADIO,
750 .gpio0 = 0xbf60,
751 },
Manuel Capinha239df2e2005-06-23 22:04:53 -0700752 },
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800753 [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T] = {
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700754 .name = "DViCO FusionHDTV 3 Gold-T",
Michael Krufky83ac87222006-01-09 15:25:29 -0200755 .tuner_type = TUNER_THOMSON_DTT761X,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700756 .radio_type = UNSET,
757 .tuner_addr = ADDR_UNSET,
758 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehabe4f5c822005-12-04 12:41:54 -0200759 .tda9887_conf = TDA9887_PRESENT,
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700760 .input = {{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800761 .type = CX88_VMUX_TELEVISION,
762 .vmux = 0,
763 .gpio0 = 0x97ed,
764 },{
765 .type = CX88_VMUX_COMPOSITE1,
766 .vmux = 1,
767 .gpio0 = 0x97e9,
768 },{
769 .type = CX88_VMUX_SVIDEO,
770 .vmux = 2,
771 .gpio0 = 0x97e9,
772 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300773 .mpeg = CX88_MPEG_DVB,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800774 },
775 [CX88_BOARD_ADSTECH_DVB_T_PCI] = {
776 .name = "ADS Tech Instant TV DVB-T PCI",
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700777 .tuner_type = TUNER_ABSENT,
778 .radio_type = UNSET,
779 .tuner_addr = ADDR_UNSET,
780 .radio_addr = ADDR_UNSET,
781 .input = {{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800782 .type = CX88_VMUX_COMPOSITE1,
783 .vmux = 1,
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700784 .gpio0 = 0x0700,
785 .gpio2 = 0x0101,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800786 },{
787 .type = CX88_VMUX_SVIDEO,
788 .vmux = 2,
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700789 .gpio0 = 0x0700,
790 .gpio2 = 0x0101,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800791 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300792 .mpeg = CX88_MPEG_DVB,
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700793 },
Michael Krufkye057ee12005-07-07 17:58:40 -0700794 [CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1] = {
795 .name = "TerraTec Cinergy 1400 DVB-T",
796 .tuner_type = TUNER_ABSENT,
797 .input = {{
798 .type = CX88_VMUX_DVB,
799 .vmux = 0,
Heiko Baums05eda242007-01-21 05:58:19 -0300800 },{
801 .type = CX88_VMUX_COMPOSITE1,
802 .vmux = 2,
803 },{
804 .type = CX88_VMUX_SVIDEO,
805 .vmux = 2,
Michael Krufkye057ee12005-07-07 17:58:40 -0700806 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300807 .mpeg = CX88_MPEG_DVB,
Michael Krufkye057ee12005-07-07 17:58:40 -0700808 },
Michael Krufky9fef07c2005-07-31 22:34:46 -0700809 [CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD] = {
810 .name = "DViCO FusionHDTV 5 Gold",
Michael Krufky9c26c8b2006-04-27 01:29:17 -0300811 .tuner_type = TUNER_LG_TDVS_H06XF, /* TDVS-H062F */
Michael Krufky9fef07c2005-07-31 22:34:46 -0700812 .radio_type = UNSET,
813 .tuner_addr = ADDR_UNSET,
814 .radio_addr = ADDR_UNSET,
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700815 .tda9887_conf = TDA9887_PRESENT,
Michael Krufky9fef07c2005-07-31 22:34:46 -0700816 .input = {{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800817 .type = CX88_VMUX_TELEVISION,
818 .vmux = 0,
819 .gpio0 = 0x87fd,
820 },{
821 .type = CX88_VMUX_COMPOSITE1,
822 .vmux = 1,
823 .gpio0 = 0x87f9,
824 },{
825 .type = CX88_VMUX_SVIDEO,
826 .vmux = 2,
827 .gpio0 = 0x87f9,
828 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300829 .mpeg = CX88_MPEG_DVB,
Michael Krufky9fef07c2005-07-31 22:34:46 -0700830 },
Nickolay V. Shmyrevd45170e2005-11-08 21:36:15 -0800831 [CX88_BOARD_AVERMEDIA_ULTRATV_MC_550] = {
832 .name = "AverMedia UltraTV Media Center PCI 550",
833 .tuner_type = TUNER_PHILIPS_FM1236_MK3,
834 .radio_type = UNSET,
835 .tuner_addr = ADDR_UNSET,
836 .radio_addr = ADDR_UNSET,
837 .tda9887_conf = TDA9887_PRESENT,
Nickolay V. Shmyrevd45170e2005-11-08 21:36:15 -0800838 .input = {{
839 .type = CX88_VMUX_COMPOSITE1,
840 .vmux = 0,
841 .gpio0 = 0x0000cd73,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300842 .audioroute = 1,
Nickolay V. Shmyrevd45170e2005-11-08 21:36:15 -0800843 },{
844 .type = CX88_VMUX_SVIDEO,
845 .vmux = 1,
846 .gpio0 = 0x0000cd73,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300847 .audioroute = 1,
Nickolay V. Shmyrevd45170e2005-11-08 21:36:15 -0800848 },{
849 .type = CX88_VMUX_TELEVISION,
850 .vmux = 3,
851 .gpio0 = 0x0000cdb3,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300852 .audioroute = 1,
Nickolay V. Shmyrevd45170e2005-11-08 21:36:15 -0800853 }},
854 .radio = {
855 .type = CX88_RADIO,
856 .vmux = 2,
857 .gpio0 = 0x0000cdf3,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -0300858 .audioroute = 1,
Nickolay V. Shmyrevd45170e2005-11-08 21:36:15 -0800859 },
Michael Krufky5b26c822006-10-16 16:07:51 -0300860 .mpeg = CX88_MPEG_BLACKBIRD,
Nickolay V. Shmyrevd45170e2005-11-08 21:36:15 -0800861 },
Alexander Wold0bcc37c2005-11-08 21:36:58 -0800862 [CX88_BOARD_KWORLD_VSTREAM_EXPERT_DVD] = {
863 /* Alexander Wold <awold@bigfoot.com> */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800864 .name = "Kworld V-Stream Xpert DVD",
865 .tuner_type = UNSET,
866 .input = {{
867 .type = CX88_VMUX_COMPOSITE1,
868 .vmux = 1,
869 .gpio0 = 0x03000000,
Alexander Wold0bcc37c2005-11-08 21:36:58 -0800870 .gpio1 = 0x01000000,
871 .gpio2 = 0x02000000,
872 .gpio3 = 0x00100000,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800873 },{
874 .type = CX88_VMUX_SVIDEO,
875 .vmux = 2,
876 .gpio0 = 0x03000000,
877 .gpio1 = 0x01000000,
878 .gpio2 = 0x02000000,
879 .gpio3 = 0x00100000,
880 }},
Alexander Wold0bcc37c2005-11-08 21:36:58 -0800881 },
Kirk Lapraye976f9372005-11-08 21:37:04 -0800882 [CX88_BOARD_ATI_HDTVWONDER] = {
883 .name = "ATI HDTV Wonder",
884 .tuner_type = TUNER_PHILIPS_TUV1236D,
885 .radio_type = UNSET,
886 .tuner_addr = ADDR_UNSET,
887 .radio_addr = ADDR_UNSET,
888 .input = {{
889 .type = CX88_VMUX_TELEVISION,
890 .vmux = 0,
891 .gpio0 = 0x00000ff7,
892 .gpio1 = 0x000000ff,
893 .gpio2 = 0x00000001,
894 .gpio3 = 0x00000000,
895 },{
896 .type = CX88_VMUX_COMPOSITE1,
897 .vmux = 1,
898 .gpio0 = 0x00000ffe,
899 .gpio1 = 0x000000ff,
900 .gpio2 = 0x00000001,
901 .gpio3 = 0x00000000,
902 },{
903 .type = CX88_VMUX_SVIDEO,
904 .vmux = 2,
905 .gpio0 = 0x00000ffe,
906 .gpio1 = 0x000000ff,
907 .gpio2 = 0x00000001,
908 .gpio3 = 0x00000000,
909 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300910 .mpeg = CX88_MPEG_DVB,
Kirk Lapraye976f9372005-11-08 21:37:04 -0800911 },
David Shirley2b5200a2005-11-08 21:37:22 -0800912 [CX88_BOARD_WINFAST_DTV1000] = {
913 .name = "WinFast DTV1000-T",
914 .tuner_type = TUNER_ABSENT,
915 .radio_type = UNSET,
916 .tuner_addr = ADDR_UNSET,
917 .radio_addr = ADDR_UNSET,
918 .input = {{
919 .type = CX88_VMUX_DVB,
920 .vmux = 0,
Jean Delvaree8f4e752007-03-31 10:34:59 -0300921 },{
922 .type = CX88_VMUX_COMPOSITE1,
923 .vmux = 1,
924 },{
925 .type = CX88_VMUX_SVIDEO,
926 .vmux = 2,
David Shirley2b5200a2005-11-08 21:37:22 -0800927 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300928 .mpeg = CX88_MPEG_DVB,
David Shirley2b5200a2005-11-08 21:37:22 -0800929 },
Lubomir Bulej7418f342005-11-08 21:38:34 -0800930 [CX88_BOARD_AVERTV_303] = {
931 .name = "AVerTV 303 (M126)",
932 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
933 .radio_type = UNSET,
934 .tuner_addr = ADDR_UNSET,
935 .radio_addr = ADDR_UNSET,
936 .tda9887_conf = TDA9887_PRESENT,
937 .input = {{
938 .type = CX88_VMUX_TELEVISION,
939 .vmux = 0,
940 .gpio0 = 0x00ff,
941 .gpio1 = 0xe09f,
942 .gpio2 = 0x0010,
943 .gpio3 = 0x0000,
944 },{
945 .type = CX88_VMUX_COMPOSITE1,
946 .vmux = 1,
947 .gpio0 = 0x00ff,
948 .gpio1 = 0xe05f,
949 .gpio2 = 0x0010,
950 .gpio3 = 0x0000,
951 },{
952 .type = CX88_VMUX_SVIDEO,
953 .vmux = 2,
954 .gpio0 = 0x00ff,
955 .gpio1 = 0xe05f,
956 .gpio2 = 0x0010,
957 .gpio3 = 0x0000,
958 }},
959 },
Steven Toth0fa14aa2006-01-09 15:25:02 -0200960 [CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1] = {
961 .name = "Hauppauge Nova-S-Plus DVB-S",
962 .tuner_type = TUNER_ABSENT,
963 .radio_type = UNSET,
964 .tuner_addr = ADDR_UNSET,
965 .radio_addr = ADDR_UNSET,
Steven Toth0fa14aa2006-01-09 15:25:02 -0200966 .input = {{
967 .type = CX88_VMUX_DVB,
968 .vmux = 0,
969 },{
970 .type = CX88_VMUX_COMPOSITE1,
971 .vmux = 1,
972 },{
973 .type = CX88_VMUX_SVIDEO,
974 .vmux = 2,
975 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300976 .mpeg = CX88_MPEG_DVB,
Steven Toth0fa14aa2006-01-09 15:25:02 -0200977 },
978 [CX88_BOARD_HAUPPAUGE_NOVASE2_S1] = {
979 .name = "Hauppauge Nova-SE2 DVB-S",
980 .tuner_type = TUNER_ABSENT,
981 .radio_type = UNSET,
982 .tuner_addr = ADDR_UNSET,
983 .radio_addr = ADDR_UNSET,
984 .input = {{
985 .type = CX88_VMUX_DVB,
986 .vmux = 0,
987 }},
Michael Krufky48d5e802006-09-25 14:09:10 -0300988 .mpeg = CX88_MPEG_DVB,
Steven Toth0fa14aa2006-01-09 15:25:02 -0200989 },
Vadim Catana0e0351e2006-01-09 15:25:02 -0200990 [CX88_BOARD_KWORLD_DVBS_100] = {
991 .name = "KWorld DVB-S 100",
992 .tuner_type = TUNER_ABSENT,
993 .radio_type = UNSET,
994 .tuner_addr = ADDR_UNSET,
995 .radio_addr = ADDR_UNSET,
996 .input = {{
997 .type = CX88_VMUX_DVB,
998 .vmux = 0,
999 },{
1000 .type = CX88_VMUX_COMPOSITE1,
1001 .vmux = 1,
1002 },{
1003 .type = CX88_VMUX_SVIDEO,
1004 .vmux = 2,
1005 }},
Michael Krufky48d5e802006-09-25 14:09:10 -03001006 .mpeg = CX88_MPEG_DVB,
Vadim Catana0e0351e2006-01-09 15:25:02 -02001007 },
Steven Toth611900c2006-01-09 15:25:12 -02001008 [CX88_BOARD_HAUPPAUGE_HVR1100] = {
1009 .name = "Hauppauge WinTV-HVR1100 DVB-T/Hybrid",
1010 .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
1011 .radio_type = UNSET,
1012 .tuner_addr = ADDR_UNSET,
1013 .radio_addr = ADDR_UNSET,
1014 .tda9887_conf = TDA9887_PRESENT,
1015 .input = {{
1016 .type = CX88_VMUX_TELEVISION,
1017 .vmux = 0,
1018 },{
1019 .type = CX88_VMUX_COMPOSITE1,
1020 .vmux = 1,
1021 },{
1022 .type = CX88_VMUX_SVIDEO,
1023 .vmux = 2,
1024 }},
1025 /* fixme: Add radio support */
Michael Krufky48d5e802006-09-25 14:09:10 -03001026 .mpeg = CX88_MPEG_DVB,
Steven Toth611900c2006-01-09 15:25:12 -02001027 },
1028 [CX88_BOARD_HAUPPAUGE_HVR1100LP] = {
1029 .name = "Hauppauge WinTV-HVR1100 DVB-T/Hybrid (Low Profile)",
1030 .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
1031 .radio_type = UNSET,
1032 .tuner_addr = ADDR_UNSET,
1033 .radio_addr = ADDR_UNSET,
1034 .tda9887_conf = TDA9887_PRESENT,
1035 .input = {{
1036 .type = CX88_VMUX_TELEVISION,
1037 .vmux = 0,
1038 },{
1039 .type = CX88_VMUX_COMPOSITE1,
1040 .vmux = 1,
1041 }},
1042 /* fixme: Add radio support */
Michael Krufky48d5e802006-09-25 14:09:10 -03001043 .mpeg = CX88_MPEG_DVB,
Steven Toth611900c2006-01-09 15:25:12 -02001044 },
Chris Pascoefc40b262006-01-09 15:25:35 -02001045 [CX88_BOARD_DNTV_LIVE_DVB_T_PRO] = {
1046 .name = "digitalnow DNTV Live! DVB-T Pro",
1047 .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
1048 .radio_type = UNSET,
1049 .tuner_addr = ADDR_UNSET,
1050 .radio_addr = ADDR_UNSET,
1051 .tda9887_conf = TDA9887_PRESENT | TDA9887_PORT1_ACTIVE |
1052 TDA9887_PORT2_ACTIVE,
1053 .input = {{
1054 .type = CX88_VMUX_TELEVISION,
1055 .vmux = 0,
1056 .gpio0 = 0xf80808,
1057 },{
1058 .type = CX88_VMUX_COMPOSITE1,
1059 .vmux = 1,
1060 .gpio0 = 0xf80808,
1061 },{
1062 .type = CX88_VMUX_SVIDEO,
1063 .vmux = 2,
1064 .gpio0 = 0xf80808,
1065 }},
1066 .radio = {
1067 .type = CX88_RADIO,
1068 .gpio0 = 0xf80808,
1069 },
Michael Krufky48d5e802006-09-25 14:09:10 -03001070 .mpeg = CX88_MPEG_DVB,
Chris Pascoefc40b262006-01-09 15:25:35 -02001071 },
Manenti Marcof39624f2006-01-09 15:32:45 -02001072 [CX88_BOARD_KWORLD_DVB_T_CX22702] = {
1073 /* Kworld V-stream Xpert DVB-T with Thomson tuner */
1074 /* DTT 7579 Conexant CX22702-19 Conexant CX2388x */
1075 /* Manenti Marco <marco_manenti@colman.it> */
1076 .name = "KWorld/VStream XPert DVB-T with cx22702",
1077 .tuner_type = TUNER_ABSENT,
1078 .radio_type = UNSET,
1079 .tuner_addr = ADDR_UNSET,
1080 .radio_addr = ADDR_UNSET,
1081 .input = {{
1082 .type = CX88_VMUX_COMPOSITE1,
1083 .vmux = 1,
1084 .gpio0 = 0x0700,
1085 .gpio2 = 0x0101,
1086 },{
1087 .type = CX88_VMUX_SVIDEO,
1088 .vmux = 2,
1089 .gpio0 = 0x0700,
1090 .gpio2 = 0x0101,
1091 }},
Michael Krufky48d5e802006-09-25 14:09:10 -03001092 .mpeg = CX88_MPEG_DVB,
Manenti Marcof39624f2006-01-09 15:32:45 -02001093 },
Chris Pascoe43eabb42006-01-09 18:21:28 -02001094 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL] = {
1095 .name = "DViCO FusionHDTV DVB-T Dual Digital",
1096 .tuner_type = TUNER_ABSENT, /* No analog tuner */
1097 .radio_type = UNSET,
1098 .tuner_addr = ADDR_UNSET,
1099 .radio_addr = ADDR_UNSET,
1100 .input = {{
1101 .type = CX88_VMUX_COMPOSITE1,
1102 .vmux = 1,
Chris Pascoed536e9c2006-08-10 03:22:21 -03001103 .gpio0 = 0x000067df,
Chris Pascoe43eabb42006-01-09 18:21:28 -02001104 },{
1105 .type = CX88_VMUX_SVIDEO,
1106 .vmux = 2,
Chris Pascoed536e9c2006-08-10 03:22:21 -03001107 .gpio0 = 0x000067df,
Chris Pascoe43eabb42006-01-09 18:21:28 -02001108 }},
Michael Krufky48d5e802006-09-25 14:09:10 -03001109 .mpeg = CX88_MPEG_DVB,
Chris Pascoe43eabb42006-01-09 18:21:28 -02001110 },
Michael Krufky44256de2006-02-07 06:49:14 -02001111 [CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT] = {
Michael Krufky44256de2006-02-07 06:49:14 -02001112 .name = "KWorld HardwareMpegTV XPert",
1113 .tuner_type = TUNER_PHILIPS_TDA8290,
1114 .radio_type = UNSET,
1115 .tuner_addr = ADDR_UNSET,
1116 .radio_addr = ADDR_UNSET,
1117 .input = {{
1118 .type = CX88_VMUX_TELEVISION,
1119 .vmux = 0,
Michael Krufkye2798212006-02-27 00:07:58 -03001120 .gpio0 = 0x3de2,
Michael Krufky24da4e42006-02-27 00:08:01 -03001121 .gpio2 = 0x00ff,
Michael Krufkybc53f782006-05-28 01:43:35 -03001122 },{
1123 .type = CX88_VMUX_COMPOSITE1,
1124 .vmux = 1,
1125 .gpio0 = 0x3de6,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -03001126 .audioroute = 1,
Michael Krufkybc53f782006-05-28 01:43:35 -03001127 },{
1128 .type = CX88_VMUX_SVIDEO,
1129 .vmux = 2,
1130 .gpio0 = 0x3de6,
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -03001131 .audioroute = 1,
Michael Krufky44256de2006-02-07 06:49:14 -02001132 }},
Michael Krufkye2798212006-02-27 00:07:58 -03001133 .radio = {
1134 .type = CX88_RADIO,
1135 .gpio0 = 0x3de6,
Michael Krufky24da4e42006-02-27 00:08:01 -03001136 .gpio2 = 0x00ff,
Michael Krufkye2798212006-02-27 00:07:58 -03001137 },
Michael Krufky48d5e802006-09-25 14:09:10 -03001138 .mpeg = CX88_MPEG_BLACKBIRD,
Michael Krufky44256de2006-02-07 06:49:14 -02001139 },
Chris Pascoe780dfef2006-02-28 08:34:59 -03001140 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID] = {
1141 .name = "DViCO FusionHDTV DVB-T Hybrid",
Michael Krufky91ae3292006-03-01 00:04:42 -03001142 .tuner_type = TUNER_THOMSON_FE6600,
Chris Pascoe780dfef2006-02-28 08:34:59 -03001143 .radio_type = UNSET,
1144 .tuner_addr = ADDR_UNSET,
1145 .radio_addr = ADDR_UNSET,
1146 .input = {{
1147 .type = CX88_VMUX_TELEVISION,
1148 .vmux = 0,
1149 .gpio0 = 0x0000a75f,
1150 },{
1151 .type = CX88_VMUX_COMPOSITE1,
1152 .vmux = 1,
1153 .gpio0 = 0x0000a75b,
1154 },{
1155 .type = CX88_VMUX_SVIDEO,
1156 .vmux = 2,
1157 .gpio0 = 0x0000a75b,
1158 }},
Michael Krufky48d5e802006-09-25 14:09:10 -03001159 .mpeg = CX88_MPEG_DVB,
Chris Pascoe780dfef2006-02-28 08:34:59 -03001160 },
Michael Krufkye142e7c2006-04-07 03:24:54 -03001161 [CX88_BOARD_PCHDTV_HD5500] = {
1162 .name = "pcHDTV HD5500 HDTV",
Michael Krufky9c26c8b2006-04-27 01:29:17 -03001163 .tuner_type = TUNER_LG_TDVS_H06XF, /* TDVS-H064F */
Michael Krufkye142e7c2006-04-07 03:24:54 -03001164 .radio_type = UNSET,
1165 .tuner_addr = ADDR_UNSET,
1166 .radio_addr = ADDR_UNSET,
1167 .tda9887_conf = TDA9887_PRESENT,
1168 .input = {{
1169 .type = CX88_VMUX_TELEVISION,
1170 .vmux = 0,
1171 .gpio0 = 0x87fd,
1172 },{
1173 .type = CX88_VMUX_COMPOSITE1,
1174 .vmux = 1,
1175 .gpio0 = 0x87f9,
1176 },{
1177 .type = CX88_VMUX_SVIDEO,
1178 .vmux = 2,
1179 .gpio0 = 0x87f9,
1180 }},
Michael Krufky48d5e802006-09-25 14:09:10 -03001181 .mpeg = CX88_MPEG_DVB,
Michael Krufkye142e7c2006-04-07 03:24:54 -03001182 },
Valentin Zagurab3038302006-04-13 12:41:43 -03001183 [CX88_BOARD_KWORLD_MCE200_DELUXE] = {
1184 /* FIXME: tested TV input only, disabled composite,
1185 svideo and radio until they can be tested also. */
1186 .name = "Kworld MCE 200 Deluxe",
1187 .tuner_type = TUNER_TENA_9533_DI,
1188 .radio_type = UNSET,
1189 .tda9887_conf = TDA9887_PRESENT,
1190 .tuner_addr = ADDR_UNSET,
1191 .radio_addr = ADDR_UNSET,
1192 .input = {{
1193 .type = CX88_VMUX_TELEVISION,
1194 .vmux = 0,
1195 .gpio0 = 0x0000BDE6
1196 }},
Michael Krufky48d5e802006-09-25 14:09:10 -03001197 .mpeg = CX88_MPEG_BLACKBIRD,
Valentin Zagurab3038302006-04-13 12:41:43 -03001198 },
Angelo Marconia3124622006-05-09 18:27:48 -03001199 [CX88_BOARD_PIXELVIEW_PLAYTV_P7000] = {
1200 /* FIXME: SVideo, Composite and FM inputs are untested */
1201 .name = "PixelView PlayTV P7000",
1202 .tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
1203 .radio_type = UNSET,
1204 .tuner_addr = ADDR_UNSET,
1205 .radio_addr = ADDR_UNSET,
1206 .tda9887_conf = TDA9887_PRESENT | TDA9887_PORT1_ACTIVE |
1207 TDA9887_PORT2_ACTIVE,
1208 .input = {{
1209 .type = CX88_VMUX_TELEVISION,
1210 .vmux = 0,
1211 .gpio0 = 0x5da6,
1212 }},
Michael Krufky48d5e802006-09-25 14:09:10 -03001213 .mpeg = CX88_MPEG_BLACKBIRD,
Angelo Marconia3124622006-05-09 18:27:48 -03001214 },
Ricardo Cerqueirabe4f4512006-06-08 17:36:17 -03001215 [CX88_BOARD_NPGTECH_REALTV_TOP10FM] = {
1216 .name = "NPG Tech Real TV FM Top 10",
1217 .tuner_type = TUNER_TNF_5335MF, /* Actually a TNF9535 */
Ricardo Cerqueira680543c2006-05-22 07:44:02 -03001218 .radio_type = UNSET,
1219 .tuner_addr = ADDR_UNSET,
1220 .radio_addr = ADDR_UNSET,
1221 .input = {{
1222 .type = CX88_VMUX_TELEVISION,
1223 .vmux = 0,
1224 .gpio0 = 0x0788,
1225 },{
1226 .type = CX88_VMUX_COMPOSITE1,
1227 .vmux = 1,
1228 .gpio0 = 0x078b,
1229 },{
1230 .type = CX88_VMUX_SVIDEO,
1231 .vmux = 2,
Ricardo Cerqueirabe4f4512006-06-08 17:36:17 -03001232 .gpio0 = 0x078b,
Ricardo Cerqueira680543c2006-05-22 07:44:02 -03001233 }},
1234 .radio = {
1235 .type = CX88_RADIO,
1236 .gpio0 = 0x074a,
1237 },
1238 },
Malcolm Valentine4bd6e9d2006-05-29 13:51:59 -03001239 [CX88_BOARD_WINFAST_DTV2000H] = {
1240 /* video inputs and radio still in testing */
1241 .name = "WinFast DTV2000 H",
1242 .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
1243 .radio_type = UNSET,
1244 .tuner_addr = ADDR_UNSET,
1245 .radio_addr = ADDR_UNSET,
1246 .tda9887_conf = TDA9887_PRESENT,
1247 .input = {{
1248 .type = CX88_VMUX_TELEVISION,
1249 .vmux = 0,
1250 .gpio0 = 0x00017304,
1251 .gpio1 = 0x00008203,
1252 .gpio2 = 0x00017304,
1253 .gpio3 = 0x02000000,
1254 }},
Michael Krufky48d5e802006-09-25 14:09:10 -03001255 .mpeg = CX88_MPEG_DVB,
Malcolm Valentine4bd6e9d2006-05-29 13:51:59 -03001256 },
Saqeb Akhterc02a34f2006-06-29 20:29:33 -03001257 [CX88_BOARD_GENIATECH_DVBS] = {
1258 .name = "Geniatech DVB-S",
1259 .tuner_type = TUNER_ABSENT,
1260 .radio_type = UNSET,
1261 .tuner_addr = ADDR_UNSET,
1262 .radio_addr = ADDR_UNSET,
1263 .input = {{
1264 .type = CX88_VMUX_DVB,
1265 .vmux = 0,
1266 },{
1267 .type = CX88_VMUX_COMPOSITE1,
1268 .vmux = 1,
1269 }},
Michael Krufky48d5e802006-09-25 14:09:10 -03001270 .mpeg = CX88_MPEG_DVB,
Saqeb Akhterc02a34f2006-06-29 20:29:33 -03001271 },
Eric Thomasad10c932006-08-08 09:10:04 -03001272 [CX88_BOARD_HAUPPAUGE_HVR3000] = {
Eric Thomasad10c932006-08-08 09:10:04 -03001273 .name = "Hauppauge WinTV-HVR3000 TriMode Analog/DVB-S/DVB-T",
1274 .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
1275 .radio_type = UNSET,
1276 .tuner_addr = ADDR_UNSET,
1277 .radio_addr = ADDR_UNSET,
1278 .tda9887_conf = TDA9887_PRESENT,
Darron Broad923ac7f2008-10-11 11:49:30 -03001279 .audio_chip = V4L2_IDENT_WM8775,
Eric Thomasad10c932006-08-08 09:10:04 -03001280 .input = {{
1281 .type = CX88_VMUX_TELEVISION,
1282 .vmux = 0,
1283 .gpio0 = 0x84bf,
Darron Broad649e13a2008-10-15 14:12:30 -03001284 /* 1: TV Audio / FM Mono */
Darron Broad923ac7f2008-10-11 11:49:30 -03001285 .audioroute = 1,
Eric Thomasad10c932006-08-08 09:10:04 -03001286 },{
1287 .type = CX88_VMUX_COMPOSITE1,
1288 .vmux = 1,
1289 .gpio0 = 0x84bf,
Darron Broad649e13a2008-10-15 14:12:30 -03001290 /* 2: Line-In */
Darron Broad923ac7f2008-10-11 11:49:30 -03001291 .audioroute = 2,
Eric Thomasad10c932006-08-08 09:10:04 -03001292 },{
1293 .type = CX88_VMUX_SVIDEO,
1294 .vmux = 2,
1295 .gpio0 = 0x84bf,
Darron Broad649e13a2008-10-15 14:12:30 -03001296 /* 2: Line-In */
Darron Broad923ac7f2008-10-11 11:49:30 -03001297 .audioroute = 2,
Eric Thomasad10c932006-08-08 09:10:04 -03001298 }},
Darron Broad63248f22008-10-11 11:57:59 -03001299 .radio = {
1300 .type = CX88_RADIO,
1301 .gpio0 = 0x84bf,
Darron Broad649e13a2008-10-15 14:12:30 -03001302 /* 4: FM Stereo (untested) */
1303 .audioroute = 8,
Darron Broad63248f22008-10-11 11:57:59 -03001304 },
Steven Toth76dc82a2006-09-30 00:43:58 -03001305 .mpeg = CX88_MPEG_DVB,
Steven Toth363c35f2008-10-11 11:05:50 -03001306 .num_frontends = 2,
Eric Thomasad10c932006-08-08 09:10:04 -03001307 },
Peter Naullsd1009bd2006-08-08 09:10:05 -03001308 [CX88_BOARD_NORWOOD_MICRO] = {
1309 .name = "Norwood Micro TV Tuner",
1310 .tuner_type = TUNER_TNF_5335MF,
1311 .radio_type = UNSET,
1312 .tuner_addr = ADDR_UNSET,
1313 .radio_addr = ADDR_UNSET,
1314 .input = {{
1315 .type = CX88_VMUX_TELEVISION,
1316 .vmux = 0,
1317 .gpio0 = 0x0709,
1318 },{
1319 .type = CX88_VMUX_COMPOSITE1,
1320 .vmux = 1,
1321 .gpio0 = 0x070b,
1322 },{
1323 .type = CX88_VMUX_SVIDEO,
1324 .vmux = 2,
1325 .gpio0 = 0x070b,
1326 }},
1327 },
Michael Krufky5b26c822006-10-16 16:07:51 -03001328 [CX88_BOARD_TE_DTV_250_OEM_SWANN] = {
1329 .name = "Shenzhen Tungsten Ages Tech TE-DTV-250 / Swann OEM",
1330 .tuner_type = TUNER_LG_PAL_NEW_TAPC,
1331 .radio_type = UNSET,
1332 .tuner_addr = ADDR_UNSET,
1333 .radio_addr = ADDR_UNSET,
1334 .input = {{
1335 .type = CX88_VMUX_TELEVISION,
1336 .vmux = 0,
1337 .gpio0 = 0x003fffff,
1338 .gpio1 = 0x00e00000,
1339 .gpio2 = 0x003fffff,
1340 .gpio3 = 0x02000000,
David Bussenschutt2acadef2006-08-08 09:10:05 -03001341 },{
Michael Krufky5b26c822006-10-16 16:07:51 -03001342 .type = CX88_VMUX_COMPOSITE1,
1343 .vmux = 1,
1344 .gpio0 = 0x003fffff,
1345 .gpio1 = 0x00e00000,
1346 .gpio2 = 0x003fffff,
1347 .gpio3 = 0x02000000,
1348 },{
1349 .type = CX88_VMUX_SVIDEO,
1350 .vmux = 2,
1351 .gpio0 = 0x003fffff,
1352 .gpio1 = 0x00e00000,
1353 .gpio2 = 0x003fffff,
1354 .gpio3 = 0x02000000,
1355 }},
1356 },
Steven Tothaa481a62006-09-14 15:41:13 -03001357 [CX88_BOARD_HAUPPAUGE_HVR1300] = {
1358 .name = "Hauppauge WinTV-HVR1300 DVB-T/Hybrid MPEG Encoder",
1359 .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
1360 .radio_type = UNSET,
1361 .tuner_addr = ADDR_UNSET,
1362 .radio_addr = ADDR_UNSET,
1363 .tda9887_conf = TDA9887_PRESENT,
Hans Verkuil38f9d302008-07-23 05:09:15 -03001364 .audio_chip = V4L2_IDENT_WM8775,
Steven Toth2491fbb2008-09-22 01:48:13 -03001365 /*
1366 * gpio0 as reported by Mike Crash <mike AT mikecrash.com>
1367 */
Steven Tothaa481a62006-09-14 15:41:13 -03001368 .input = {{
1369 .type = CX88_VMUX_TELEVISION,
1370 .vmux = 0,
Steven Toth2491fbb2008-09-22 01:48:13 -03001371 .gpio0 = 0xef88,
Darron Broad649e13a2008-10-15 14:12:30 -03001372 /* 1: TV Audio / FM Mono */
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -03001373 .audioroute = 1,
Steven Tothaa481a62006-09-14 15:41:13 -03001374 },{
1375 .type = CX88_VMUX_COMPOSITE1,
1376 .vmux = 1,
Steven Toth2491fbb2008-09-22 01:48:13 -03001377 .gpio0 = 0xef88,
Darron Broad649e13a2008-10-15 14:12:30 -03001378 /* 2: Line-In */
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -03001379 .audioroute = 2,
Steven Tothaa481a62006-09-14 15:41:13 -03001380 },{
1381 .type = CX88_VMUX_SVIDEO,
1382 .vmux = 2,
Steven Toth2491fbb2008-09-22 01:48:13 -03001383 .gpio0 = 0xef88,
Darron Broad649e13a2008-10-15 14:12:30 -03001384 /* 2: Line-In */
Ricardo Cerqueira7b27d452007-09-30 13:02:49 -03001385 .audioroute = 2,
Steven Tothaa481a62006-09-14 15:41:13 -03001386 }},
Steven Toth6c5be742006-12-02 21:15:51 -02001387 .mpeg = CX88_MPEG_DVB | CX88_MPEG_BLACKBIRD,
Steven Toth6b92b3b2008-04-05 16:45:57 -03001388 .radio = {
1389 .type = CX88_RADIO,
Steven Toth2491fbb2008-09-22 01:48:13 -03001390 .gpio0 = 0xef88,
Darron Broad649e13a2008-10-15 14:12:30 -03001391 /* 4: FM Stereo (untested) */
1392 .audioroute = 8,
Steven Toth6b92b3b2008-04-05 16:45:57 -03001393 },
Steven Tothaa481a62006-09-14 15:41:13 -03001394 },
Daniel Gimpelevich7cb47a142007-05-17 18:10:17 -03001395 [CX88_BOARD_ADSTECH_PTV_390] = {
1396 .name = "ADS Tech Instant Video PCI",
1397 .tuner_type = TUNER_ABSENT,
1398 .radio_type = UNSET,
1399 .tuner_addr = ADDR_UNSET,
1400 .radio_addr = ADDR_UNSET,
1401 .input = {{
1402 .type = CX88_VMUX_DEBUG,
1403 .vmux = 3,
1404 .gpio0 = 0x04ff,
1405 },{
1406 .type = CX88_VMUX_COMPOSITE1,
1407 .vmux = 1,
1408 .gpio0 = 0x07fa,
1409 },{
1410 .type = CX88_VMUX_SVIDEO,
1411 .vmux = 2,
1412 .gpio0 = 0x07fa,
1413 }},
1414 },
Steven Toth60464da2008-01-05 16:53:01 -03001415 [CX88_BOARD_PINNACLE_PCTV_HD_800i] = {
1416 .name = "Pinnacle PCTV HD 800i",
1417 .tuner_type = TUNER_XC5000,
1418 .radio_type = UNSET,
1419 .tuner_addr = ADDR_UNSET,
1420 .radio_addr = ADDR_UNSET,
1421 .input = {{
1422 .type = CX88_VMUX_TELEVISION,
1423 .vmux = 0,
1424 .gpio0 = 0x04fb,
1425 .gpio1 = 0x10ff,
1426 },{
1427 .type = CX88_VMUX_COMPOSITE1,
1428 .vmux = 1,
1429 .gpio0 = 0x04fb,
1430 .gpio1 = 0x10ef,
1431 .audioroute = 1,
1432 },{
1433 .type = CX88_VMUX_SVIDEO,
1434 .vmux = 2,
1435 .gpio0 = 0x04fb,
1436 .gpio1 = 0x10ef,
1437 .audioroute = 1,
1438 }},
1439 .mpeg = CX88_MPEG_DVB,
1440 },
Steven Toth5c00fac2008-04-22 14:45:14 -03001441 [CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO] = {
Michael Krufky8efd2e22008-04-22 14:45:14 -03001442 .name = "DViCO FusionHDTV 5 PCI nano",
1443 /* xc3008 tuner, digital only for now */
Steven Toth5c00fac2008-04-22 14:45:14 -03001444 .tuner_type = TUNER_ABSENT,
1445 .radio_type = UNSET,
1446 .tuner_addr = ADDR_UNSET,
1447 .radio_addr = ADDR_UNSET,
1448 .input = {{
1449 .type = CX88_VMUX_TELEVISION,
1450 .vmux = 0,
1451 .gpio0 = 0x000027df, /* Unconfirmed */
1452 }, {
1453 .type = CX88_VMUX_COMPOSITE1,
1454 .vmux = 1,
1455 .gpio0 = 0x000027df, /* Unconfirmed */
1456 .audioroute = 1,
1457 }, {
1458 .type = CX88_VMUX_SVIDEO,
1459 .vmux = 2,
1460 .gpio0 = 0x000027df, /* Unconfirmed */
1461 .audioroute = 1,
1462 } },
1463 .mpeg = CX88_MPEG_DVB,
1464 },
Mauro Carvalho Chehab95079012008-04-22 14:45:15 -03001465 [CX88_BOARD_PINNACLE_HYBRID_PCTV] = {
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001466 .name = "Pinnacle Hybrid PCTV",
1467 .tuner_type = TUNER_XC2028,
1468 .tuner_addr = 0x61,
Stéphane Voltz3f6014f2008-09-05 14:33:54 -03001469 .radio_type = TUNER_XC2028,
1470 .radio_addr = 0x61,
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001471 .input = { {
1472 .type = CX88_VMUX_TELEVISION,
1473 .vmux = 0,
Stéphane Voltz3f6014f2008-09-05 14:33:54 -03001474 .gpio0 = 0x004ff,
1475 .gpio1 = 0x010ff,
1476 .gpio2 = 0x00001,
Chris Pascoeb3fb91d2008-04-22 14:45:15 -03001477 }, {
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001478 .type = CX88_VMUX_COMPOSITE1,
1479 .vmux = 1,
Stéphane Voltz3f6014f2008-09-05 14:33:54 -03001480 .gpio0 = 0x004fb,
1481 .gpio1 = 0x010ef,
1482 .audioroute = 1,
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001483 }, {
1484 .type = CX88_VMUX_SVIDEO,
1485 .vmux = 2,
Stéphane Voltz3f6014f2008-09-05 14:33:54 -03001486 .gpio0 = 0x004fb,
1487 .gpio1 = 0x010ef,
1488 .audioroute = 1,
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001489 } },
1490 .radio = {
1491 .type = CX88_RADIO,
1492 .gpio0 = 0x004ff,
1493 .gpio1 = 0x010ff,
1494 .gpio2 = 0x0ff,
1495 },
Stéphane Voltz3f6014f2008-09-05 14:33:54 -03001496 .mpeg = CX88_MPEG_DVB,
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001497 },
1498 [CX88_BOARD_WINFAST_TV2000_XP_GLOBAL] = {
1499 .name = "Winfast TV2000 XP Global",
1500 .tuner_type = TUNER_XC2028,
1501 .tuner_addr = 0x61,
1502 .input = { {
1503 .type = CX88_VMUX_TELEVISION,
1504 .vmux = 0,
1505 .gpio0 = 0x0400, /* pin 2:mute = 0 (off?) */
1506 .gpio1 = 0x0000,
1507 .gpio2 = 0x0800, /* pin 19:audio = 0 (tv) */
1508
1509 }, {
1510 .type = CX88_VMUX_COMPOSITE1,
1511 .vmux = 1,
1512 .gpio0 = 0x0400, /* probably? or 0x0404 to turn mute on */
1513 .gpio1 = 0x0000,
1514 .gpio2 = 0x0808, /* pin 19:audio = 1 (line) */
1515
1516 }, {
1517 .type = CX88_VMUX_SVIDEO,
1518 .vmux = 2,
1519 } },
1520 .radio = {
1521 .type = CX88_RADIO,
1522 .gpio0 = 0x004ff,
1523 .gpio1 = 0x010ff,
1524 .gpio2 = 0x0ff,
1525 },
1526 },
1527 [CX88_BOARD_POWERCOLOR_REAL_ANGEL] = {
Daniel Gimpelevicha9606ce2008-06-03 21:29:45 -03001528 .name = "PowerColor RA330", /* Long names may confuse LIRC. */
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001529 .tuner_type = TUNER_XC2028,
1530 .tuner_addr = 0x61,
1531 .input = { {
Daniel Gimpelevicha9606ce2008-06-03 21:29:45 -03001532 .type = CX88_VMUX_DEBUG,
1533 .vmux = 3, /* Due to the way the cx88 driver is written, */
1534 .gpio0 = 0x00ff, /* there is no way to deactivate audio pass- */
1535 .gpio1 = 0xf39d, /* through without this entry. Furthermore, if */
1536 .gpio3 = 0x0000, /* the TV mux entry is first, you get audio */
1537 }, { /* from the tuner on boot for a little while. */
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001538 .type = CX88_VMUX_TELEVISION,
1539 .vmux = 0,
Dâniel Fragaab364982008-04-08 19:54:49 -03001540 .gpio0 = 0x00ff,
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001541 .gpio1 = 0xf35d,
Dâniel Fragaab364982008-04-08 19:54:49 -03001542 .gpio3 = 0x0000,
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001543 }, {
1544 .type = CX88_VMUX_COMPOSITE1,
1545 .vmux = 1,
Dâniel Fragaab364982008-04-08 19:54:49 -03001546 .gpio0 = 0x00ff,
1547 .gpio1 = 0xf37d,
1548 .gpio3 = 0x0000,
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001549 }, {
1550 .type = CX88_VMUX_SVIDEO,
1551 .vmux = 2,
1552 .gpio0 = 0x000ff,
1553 .gpio1 = 0x0f37d,
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001554 .gpio3 = 0x00000,
1555 } },
1556 .radio = {
1557 .type = CX88_RADIO,
1558 .gpio0 = 0x000ff,
1559 .gpio1 = 0x0f35d,
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001560 .gpio3 = 0x00000,
1561 },
1562 },
1563 [CX88_BOARD_GENIATECH_X8000_MT] = {
1564 /* Also PowerColor Real Angel 330 and Geniatech X800 OEM */
1565 .name = "Geniatech X8000-MT DVBT",
1566 .tuner_type = TUNER_XC2028,
1567 .tuner_addr = 0x61,
1568 .input = { {
1569 .type = CX88_VMUX_TELEVISION,
1570 .vmux = 0,
1571 .gpio0 = 0x00000000,
1572 .gpio1 = 0x00e3e341,
1573 .gpio2 = 0x00000000,
1574 .gpio3 = 0x00000000,
1575 }, {
1576 .type = CX88_VMUX_COMPOSITE1,
1577 .vmux = 1,
1578 .gpio0 = 0x00000000,
1579 .gpio1 = 0x00e3e361,
1580 .gpio2 = 0x00000000,
1581 .gpio3 = 0x00000000,
1582 }, {
1583 .type = CX88_VMUX_SVIDEO,
1584 .vmux = 2,
1585 .gpio0 = 0x00000000,
1586 .gpio1 = 0x00e3e361,
1587 .gpio2 = 0x00000000,
1588 .gpio3 = 0x00000000,
1589 } },
1590 .radio = {
1591 .type = CX88_RADIO,
1592 .gpio0 = 0x00000000,
1593 .gpio1 = 0x00e3e341,
1594 .gpio2 = 0x00000000,
1595 .gpio3 = 0x00000000,
1596 },
1597 .mpeg = CX88_MPEG_DVB,
1598 },
1599 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO] = {
1600 .name = "DViCO FusionHDTV DVB-T PRO",
Tim Farrington19c309e2008-10-11 12:44:38 -03001601 .tuner_type = TUNER_XC2028,
1602 .tuner_addr = 0x61,
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001603 .radio_type = UNSET,
Mauro Carvalho Chehab000e27a2008-04-22 14:45:46 -03001604 .radio_addr = ADDR_UNSET,
1605 .input = { {
1606 .type = CX88_VMUX_COMPOSITE1,
1607 .vmux = 1,
1608 .gpio0 = 0x000067df,
1609 }, {
1610 .type = CX88_VMUX_SVIDEO,
1611 .vmux = 2,
1612 .gpio0 = 0x000067df,
1613 } },
1614 .mpeg = CX88_MPEG_DVB,
1615 },
Steven Toth1117d6b2008-04-22 14:45:34 -03001616 [CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD] = {
Michael Krufky76464d42008-04-22 14:45:35 -03001617 .name = "DViCO FusionHDTV 7 Gold",
Steven Toth1117d6b2008-04-22 14:45:34 -03001618 .tuner_type = TUNER_XC5000,
1619 .radio_type = UNSET,
1620 .tuner_addr = ADDR_UNSET,
1621 .radio_addr = ADDR_UNSET,
1622 .input = {{
1623 .type = CX88_VMUX_TELEVISION,
1624 .vmux = 0,
Michael Krufky76464d42008-04-22 14:45:35 -03001625 .gpio0 = 0x10df,
Steven Toth1117d6b2008-04-22 14:45:34 -03001626 },{
1627 .type = CX88_VMUX_COMPOSITE1,
1628 .vmux = 1,
Michael Krufky76464d42008-04-22 14:45:35 -03001629 .gpio0 = 0x16d9,
Steven Toth1117d6b2008-04-22 14:45:34 -03001630 },{
1631 .type = CX88_VMUX_SVIDEO,
1632 .vmux = 2,
Michael Krufky76464d42008-04-22 14:45:35 -03001633 .gpio0 = 0x16d9,
Steven Toth1117d6b2008-04-22 14:45:34 -03001634 }},
Steven Tothd893d5d2008-04-25 03:46:43 -03001635 .mpeg = CX88_MPEG_DVB,
Steven Toth1117d6b2008-04-22 14:45:34 -03001636 },
Mauro Carvalho Chehab2422a9b2008-04-22 14:46:00 -03001637 [CX88_BOARD_PROLINK_PV_8000GT] = {
1638 .name = "Prolink Pixelview MPEG 8000GT",
1639 .tuner_type = TUNER_XC2028,
1640 .tuner_addr = 0x61,
1641 .input = { {
1642 .type = CX88_VMUX_TELEVISION,
1643 .vmux = 0,
1644 .gpio0 = 0x0ff,
1645 .gpio2 = 0x0cfb,
1646 }, {
1647 .type = CX88_VMUX_COMPOSITE1,
1648 .vmux = 1,
1649 .gpio2 = 0x0cfb,
1650 }, {
1651 .type = CX88_VMUX_SVIDEO,
1652 .vmux = 2,
1653 .gpio2 = 0x0cfb,
1654 } },
1655 .radio = {
1656 .type = CX88_RADIO,
1657 .gpio2 = 0x0cfb,
1658 },
1659 },
Mauro Carvalho Chehaba31d2bb2008-09-29 12:08:29 -03001660 [CX88_BOARD_PROLINK_PV_GLOBAL_XTREME] = {
1661 .name = "Prolink Pixelview Global Extreme",
1662 .tuner_type = TUNER_XC2028,
1663 .tuner_addr = 0x61,
1664 .input = { {
1665 .type = CX88_VMUX_TELEVISION,
1666 .vmux = 0,
1667 .gpio0 = 0x04fb,
1668 .gpio1 = 0x04080,
1669 .gpio2 = 0x0cf7,
1670 }, {
1671 .type = CX88_VMUX_COMPOSITE1,
1672 .vmux = 1,
1673 .gpio0 = 0x04fb,
1674 .gpio1 = 0x04080,
1675 .gpio2 = 0x0cfb,
1676 }, {
1677 .type = CX88_VMUX_SVIDEO,
1678 .vmux = 2,
1679 .gpio0 = 0x04fb,
1680 .gpio1 = 0x04080,
1681 .gpio2 = 0x0cfb,
1682 } },
1683 .radio = {
1684 .type = CX88_RADIO,
1685 .gpio0 = 0x04ff,
1686 .gpio1 = 0x04080,
1687 .gpio2 = 0x0cf7,
1688 },
1689 },
Mauro Carvalho Chehab99e09ea2008-03-27 23:18:30 -03001690 /* Both radio, analog and ATSC work with this board.
1691 However, for analog to work, s5h1409 gate should be open,
1692 otherwise, tuner-xc3028 won't be detected.
1693 A proper fix require using the newer i2c methods to add
1694 tuner-xc3028 without doing an i2c probe.
1695 */
1696 [CX88_BOARD_KWORLD_ATSC_120] = {
1697 .name = "Kworld PlusTV HD PCI 120 (ATSC 120)",
1698 .tuner_type = TUNER_XC2028,
1699 .radio_type = UNSET,
1700 .tuner_addr = ADDR_UNSET,
1701 .radio_addr = ADDR_UNSET,
1702 .input = { {
1703 .type = CX88_VMUX_TELEVISION,
1704 .vmux = 0,
1705 .gpio0 = 0x000000ff,
1706 .gpio1 = 0x0000f35d,
1707 .gpio2 = 0x00000000,
1708 }, {
1709 .type = CX88_VMUX_COMPOSITE1,
1710 .vmux = 1,
1711 .gpio0 = 0x000000ff,
1712 .gpio1 = 0x0000f37e,
1713 .gpio2 = 0x00000000,
1714 }, {
1715 .type = CX88_VMUX_SVIDEO,
1716 .vmux = 2,
1717 .gpio0 = 0x000000ff,
1718 .gpio1 = 0x0000f37e,
1719 .gpio2 = 0x00000000,
1720 } },
1721 .radio = {
1722 .type = CX88_RADIO,
1723 .gpio0 = 0x000000ff,
1724 .gpio1 = 0x0000f35d,
1725 .gpio2 = 0x00000000,
1726 },
1727 .mpeg = CX88_MPEG_DVB,
1728 },
Steven Toth5bd1b662008-09-04 01:17:33 -03001729 [CX88_BOARD_HAUPPAUGE_HVR4000] = {
1730 .name = "Hauppauge WinTV-HVR4000 DVB-S/S2/T/Hybrid",
1731 .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3,
1732 .radio_type = UNSET,
1733 .tuner_addr = ADDR_UNSET,
1734 .radio_addr = ADDR_UNSET,
1735 .tda9887_conf = TDA9887_PRESENT,
Darron Broad923ac7f2008-10-11 11:49:30 -03001736 .audio_chip = V4L2_IDENT_WM8775,
Steven Toth5bd1b662008-09-04 01:17:33 -03001737 /*
1738 * GPIO0 (WINTV2000)
1739 *
1740 * Analogue SAT DVB-T
1741 * Antenna 0xc4bf 0xc4bb
1742 * Composite 0xc4bf 0xc4bb
1743 * S-Video 0xc4bf 0xc4bb
1744 * Composite1 0xc4ff 0xc4fb
1745 * S-Video1 0xc4ff 0xc4fb
Steven Toth2491fbb2008-09-22 01:48:13 -03001746 *
1747 * BIT VALUE FUNCTION GP{x}_IO
1748 * 0 1 I:?
1749 * 1 1 I:?
Darron Broad63248f22008-10-11 11:57:59 -03001750 * 2 1 O:MPEG PORT 0=DVB-T 1=DVB-S
Steven Toth2491fbb2008-09-22 01:48:13 -03001751 * 3 1 I:?
1752 * 4 1 I:?
1753 * 5 1 I:?
1754 * 6 0 O:INPUT SELECTOR 0=INTERNAL 1=EXPANSION
1755 * 7 1 O:DVB-T DEMOD RESET LOW
1756 *
1757 * BIT VALUE FUNCTION GP{x}_OE
1758 * 8 0 I
1759 * 9 0 I
1760 * a 1 O
1761 * b 0 I
1762 * c 0 I
1763 * d 0 I
1764 * e 1 O
1765 * f 1 O
Darron Broad649e13a2008-10-15 14:12:30 -03001766 *
1767 * WM8775 ADC
1768 *
1769 * 1: TV Audio / FM Mono
1770 * 2: Line-In
1771 * 3: Line-In Expansion
1772 * 4: FM Stereo
Steven Toth5bd1b662008-09-04 01:17:33 -03001773 */
1774 .input = {{
1775 .type = CX88_VMUX_TELEVISION,
1776 .vmux = 0,
1777 .gpio0 = 0xc4bf,
Darron Broad649e13a2008-10-15 14:12:30 -03001778 /* 1: TV Audio / FM Mono */
Darron Broad923ac7f2008-10-11 11:49:30 -03001779 .audioroute = 1,
Steven Toth5bd1b662008-09-04 01:17:33 -03001780 }, {
1781 .type = CX88_VMUX_COMPOSITE1,
1782 .vmux = 1,
1783 .gpio0 = 0xc4bf,
Darron Broad649e13a2008-10-15 14:12:30 -03001784 /* 2: Line-In */
Darron Broad923ac7f2008-10-11 11:49:30 -03001785 .audioroute = 2,
Steven Toth5bd1b662008-09-04 01:17:33 -03001786 }, {
1787 .type = CX88_VMUX_SVIDEO,
1788 .vmux = 2,
1789 .gpio0 = 0xc4bf,
Darron Broad649e13a2008-10-15 14:12:30 -03001790 /* 2: Line-In */
Darron Broad923ac7f2008-10-11 11:49:30 -03001791 .audioroute = 2,
Steven Toth5bd1b662008-09-04 01:17:33 -03001792 } },
Darron Broad63248f22008-10-11 11:57:59 -03001793 .radio = {
1794 .type = CX88_RADIO,
1795 .gpio0 = 0xc4bf,
Darron Broad649e13a2008-10-15 14:12:30 -03001796 /* 4: FM Stereo */
1797 .audioroute = 8,
Darron Broad63248f22008-10-11 11:57:59 -03001798 },
Steven Toth5bd1b662008-09-04 01:17:33 -03001799 .mpeg = CX88_MPEG_DVB,
Steven Toth363c35f2008-10-11 11:05:50 -03001800 .num_frontends = 2,
Steven Toth5bd1b662008-09-04 01:17:33 -03001801 },
1802 [CX88_BOARD_HAUPPAUGE_HVR4000LITE] = {
1803 .name = "Hauppauge WinTV-HVR4000(Lite) DVB-S/S2",
1804 .tuner_type = UNSET,
1805 .radio_type = UNSET,
1806 .tuner_addr = ADDR_UNSET,
1807 .radio_addr = ADDR_UNSET,
1808 .input = {{
1809 .type = CX88_VMUX_DVB,
1810 .vmux = 0,
1811 } },
1812 .mpeg = CX88_MPEG_DVB,
1813 },
Igor M. Liplianine4aab642008-09-23 15:43:57 -03001814 [CX88_BOARD_TEVII_S420] = {
1815 .name = "TeVii S420 DVB-S",
1816 .tuner_type = UNSET,
1817 .radio_type = UNSET,
1818 .tuner_addr = ADDR_UNSET,
1819 .radio_addr = ADDR_UNSET,
1820 .input = {{
1821 .type = CX88_VMUX_DVB,
1822 .vmux = 0,
1823 } },
1824 .mpeg = CX88_MPEG_DVB,
1825 },
Igor M. Liplianinaf832622008-09-04 17:24:14 -03001826 [CX88_BOARD_TEVII_S460] = {
1827 .name = "TeVii S460 DVB-S/S2",
1828 .tuner_type = UNSET,
1829 .radio_type = UNSET,
1830 .tuner_addr = ADDR_UNSET,
1831 .radio_addr = ADDR_UNSET,
1832 .input = {{
1833 .type = CX88_VMUX_DVB,
1834 .vmux = 0,
1835 } },
1836 .mpeg = CX88_MPEG_DVB,
1837 },
Oleg Roitburd4cd7fb82008-09-17 11:30:21 -03001838 [CX88_BOARD_OMICOM_SS4_PCI] = {
1839 .name = "Omicom SS4 DVB-S/S2 PCI",
1840 .tuner_type = UNSET,
1841 .radio_type = UNSET,
1842 .tuner_addr = ADDR_UNSET,
1843 .radio_addr = ADDR_UNSET,
1844 .input = {{
1845 .type = CX88_VMUX_DVB,
1846 .vmux = 0,
1847 } },
1848 .mpeg = CX88_MPEG_DVB,
1849 },
Oleg Roitburdee730422008-09-17 11:58:33 -03001850 [CX88_BOARD_TBS_8920] = {
1851 .name = "TBS 8920 DVB-S/S2",
1852 .tuner_type = TUNER_ABSENT,
1853 .radio_type = UNSET,
1854 .tuner_addr = ADDR_UNSET,
1855 .radio_addr = ADDR_UNSET,
1856 .input = {{
1857 .type = CX88_VMUX_DVB,
1858 .vmux = 1,
1859 } },
1860 .mpeg = CX88_MPEG_DVB,
1861 },
Oleg Roitburd57f51db2008-10-08 06:48:08 -03001862 [CX88_BOARD_PROF_7300] = {
1863 .name = "PROF 7300 DVB-S/S2",
1864 .tuner_type = UNSET,
1865 .radio_type = UNSET,
1866 .tuner_addr = ADDR_UNSET,
1867 .radio_addr = ADDR_UNSET,
1868 .input = {{
1869 .type = CX88_VMUX_DVB,
1870 .vmux = 0,
1871 } },
1872 .mpeg = CX88_MPEG_DVB,
1873 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
1876/* ------------------------------------------------------------------ */
1877/* PCI subsystem IDs */
1878
Trent Piephobbc83592007-08-15 14:41:58 -03001879static const struct cx88_subid cx88_subids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 {
1881 .subvendor = 0x0070,
1882 .subdevice = 0x3400,
1883 .card = CX88_BOARD_HAUPPAUGE,
1884 },{
1885 .subvendor = 0x0070,
1886 .subdevice = 0x3401,
1887 .card = CX88_BOARD_HAUPPAUGE,
1888 },{
1889 .subvendor = 0x14c7,
1890 .subdevice = 0x0106,
1891 .card = CX88_BOARD_GDI,
1892 },{
1893 .subvendor = 0x14c7,
1894 .subdevice = 0x0107, /* with mpeg encoder */
1895 .card = CX88_BOARD_GDI,
1896 },{
1897 .subvendor = PCI_VENDOR_ID_ATI,
1898 .subdevice = 0x00f8,
1899 .card = CX88_BOARD_ATI_WONDER_PRO,
1900 },{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001901 .subvendor = 0x107d,
1902 .subdevice = 0x6611,
1903 .card = CX88_BOARD_WINFAST2000XP_EXPERT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 },{
1905 .subvendor = 0x107d,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001906 .subdevice = 0x6613, /* NTSC */
1907 .card = CX88_BOARD_WINFAST2000XP_EXPERT,
1908 },{
1909 .subvendor = 0x107d,
1910 .subdevice = 0x6620,
1911 .card = CX88_BOARD_WINFAST_DV2000,
1912 },{
1913 .subvendor = 0x107d,
1914 .subdevice = 0x663b,
1915 .card = CX88_BOARD_LEADTEK_PVR2000,
1916 },{
1917 .subvendor = 0x107d,
Michael Krufky8dd86ee2006-09-16 19:09:38 -03001918 .subdevice = 0x663c,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001919 .card = CX88_BOARD_LEADTEK_PVR2000,
1920 },{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 .subvendor = 0x1461,
1922 .subdevice = 0x000b,
Lubomir Bulej7418f342005-11-08 21:38:34 -08001923 .card = CX88_BOARD_AVERTV_STUDIO_303,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 },{
1925 .subvendor = 0x1462,
1926 .subdevice = 0x8606,
1927 .card = CX88_BOARD_MSI_TVANYWHERE_MASTER,
1928 },{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001929 .subvendor = 0x10fc,
1930 .subdevice = 0xd003,
1931 .card = CX88_BOARD_IODATA_GVVCP3PCI,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 },{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001933 .subvendor = 0x1043,
1934 .subdevice = 0x4823, /* with mpeg encoder */
1935 .card = CX88_BOARD_ASUS_PVR_416,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 },{
1937 .subvendor = 0x17de,
1938 .subdevice = 0x08a6,
1939 .card = CX88_BOARD_KWORLD_DVB_T,
1940 },{
1941 .subvendor = 0x18ac,
1942 .subdevice = 0xd810,
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -07001943 .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 },{
Michael Krufky097b7502005-06-23 22:04:43 -07001945 .subvendor = 0x18ac,
1946 .subdevice = 0xd820,
Michael Krufky80d34362005-06-23 22:04:55 -07001947 .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T,
Michael Krufky097b7502005-06-23 22:04:43 -07001948 },{
Michael Krufky7df64e82005-11-08 21:36:16 -08001949 .subvendor = 0x18ac,
1950 .subdevice = 0xdb00,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001952 },{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 .subvendor = 0x0070,
1954 .subdevice = 0x9002,
1955 .card = CX88_BOARD_HAUPPAUGE_DVB_T1,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001956 },{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 .subvendor = 0x14f1,
1958 .subdevice = 0x0187,
1959 .card = CX88_BOARD_CONEXANT_DVB_T1,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001960 },{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 .subvendor = 0x1540,
1962 .subdevice = 0x2580,
1963 .card = CX88_BOARD_PROVIDEO_PV259,
1964 },{
Michael Krufky7df64e82005-11-08 21:36:16 -08001965 .subvendor = 0x18ac,
1966 .subdevice = 0xdb10,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS,
1968 },{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001969 .subvendor = 0x1554,
1970 .subdevice = 0x4811,
1971 .card = CX88_BOARD_PIXELVIEW,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 },{
1973 .subvendor = 0x7063,
1974 .subdevice = 0x3000, /* HD-3000 card */
1975 .card = CX88_BOARD_PCHDTV_HD3000,
1976 },{
Michael Krufky7df64e82005-11-08 21:36:16 -08001977 .subvendor = 0x17de,
1978 .subdevice = 0xa8a6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 .card = CX88_BOARD_DNTV_LIVE_DVB_T,
1980 },{
1981 .subvendor = 0x0070,
1982 .subdevice = 0x2801,
1983 .card = CX88_BOARD_HAUPPAUGE_ROSLYN,
1984 },{
Michael Krufky7df64e82005-11-08 21:36:16 -08001985 .subvendor = 0x14f1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 .subdevice = 0x0342,
1987 .card = CX88_BOARD_DIGITALLOGIC_MEC,
1988 },{
1989 .subvendor = 0x10fc,
1990 .subdevice = 0xd035,
1991 .card = CX88_BOARD_IODATA_GVBCTV7E,
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -07001992 },{
1993 .subvendor = 0x1421,
1994 .subdevice = 0x0334,
1995 .card = CX88_BOARD_ADSTECH_DVB_T_PCI,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001996 },{
Michael Krufkye057ee12005-07-07 17:58:40 -07001997 .subvendor = 0x153b,
1998 .subdevice = 0x1166,
1999 .card = CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08002000 },{
Michael Krufky9fef07c2005-07-31 22:34:46 -07002001 .subvendor = 0x18ac,
2002 .subdevice = 0xd500,
2003 .card = CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08002004 },{
Nickolay V. Shmyrevd45170e2005-11-08 21:36:15 -08002005 .subvendor = 0x1461,
2006 .subdevice = 0x8011,
2007 .card = CX88_BOARD_AVERMEDIA_ULTRATV_MC_550,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08002008 },{
Kirk Lapraye976f9372005-11-08 21:37:04 -08002009 .subvendor = PCI_VENDOR_ID_ATI,
2010 .subdevice = 0xa101,
2011 .card = CX88_BOARD_ATI_HDTVWONDER,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08002012 },{
David Shirley2b5200a2005-11-08 21:37:22 -08002013 .subvendor = 0x107d,
2014 .subdevice = 0x665f,
2015 .card = CX88_BOARD_WINFAST_DTV1000,
Lubomir Bulej7418f342005-11-08 21:38:34 -08002016 },{
2017 .subvendor = 0x1461,
2018 .subdevice = 0x000a,
2019 .card = CX88_BOARD_AVERTV_303,
Steven Toth0fa14aa2006-01-09 15:25:02 -02002020 },{
2021 .subvendor = 0x0070,
2022 .subdevice = 0x9200,
Steven Tothfb56cb62006-01-09 15:25:02 -02002023 .card = CX88_BOARD_HAUPPAUGE_NOVASE2_S1,
2024 },{
2025 .subvendor = 0x0070,
2026 .subdevice = 0x9201,
Steven Toth0fa14aa2006-01-09 15:25:02 -02002027 .card = CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1,
2028 },{
2029 .subvendor = 0x0070,
2030 .subdevice = 0x9202,
Steven Tothfb56cb62006-01-09 15:25:02 -02002031 .card = CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1,
Vadim Catana0e0351e2006-01-09 15:25:02 -02002032 },{
2033 .subvendor = 0x17de,
2034 .subdevice = 0x08b2,
2035 .card = CX88_BOARD_KWORLD_DVBS_100,
Steven Toth611900c2006-01-09 15:25:12 -02002036 },{
2037 .subvendor = 0x0070,
2038 .subdevice = 0x9400,
2039 .card = CX88_BOARD_HAUPPAUGE_HVR1100,
2040 },{
2041 .subvendor = 0x0070,
2042 .subdevice = 0x9402,
2043 .card = CX88_BOARD_HAUPPAUGE_HVR1100,
2044 },{
2045 .subvendor = 0x0070,
2046 .subdevice = 0x9800,
2047 .card = CX88_BOARD_HAUPPAUGE_HVR1100LP,
2048 },{
2049 .subvendor = 0x0070,
2050 .subdevice = 0x9802,
2051 .card = CX88_BOARD_HAUPPAUGE_HVR1100LP,
Steven Tothc432a072006-01-09 15:25:13 -02002052 },{
2053 .subvendor = 0x0070,
2054 .subdevice = 0x9001,
2055 .card = CX88_BOARD_HAUPPAUGE_DVB_T1,
Chris Pascoefc40b262006-01-09 15:25:35 -02002056 },{
2057 .subvendor = 0x1822,
2058 .subdevice = 0x0025,
2059 .card = CX88_BOARD_DNTV_LIVE_DVB_T_PRO,
Manenti Marcof39624f2006-01-09 15:32:45 -02002060 },{
Chris Pascoeb9f4ad52006-01-09 18:21:39 -02002061 .subvendor = 0x17de,
2062 .subdevice = 0x08a1,
2063 .card = CX88_BOARD_KWORLD_DVB_T_CX22702,
Chris Pascoe43eabb42006-01-09 18:21:28 -02002064 },{
2065 .subvendor = 0x18ac,
2066 .subdevice = 0xdb50,
2067 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL,
Michael Krufky6bfb2e12006-01-11 22:52:28 -02002068 },{
2069 .subvendor = 0x18ac,
Michael Krufkyf74a6b32006-01-17 03:50:23 -02002070 .subdevice = 0xdb54,
2071 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL,
2072 /* Re-branded DViCO: DigitalNow DVB-T Dual */
2073 },{
2074 .subvendor = 0x18ac,
Michael Krufky6bfb2e12006-01-11 22:52:28 -02002075 .subdevice = 0xdb11,
2076 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS,
2077 /* Re-branded DViCO: UltraView DVB-T Plus */
Chris Pascoeb3fb91d2008-04-22 14:45:15 -03002078 }, {
2079 .subvendor = 0x18ac,
2080 .subdevice = 0xdb30,
2081 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO,
2082 }, {
Michael Krufky44256de2006-02-07 06:49:14 -02002083 .subvendor = 0x17de,
2084 .subdevice = 0x0840,
Michael Krufky923da8a2007-03-11 12:52:48 -03002085 .card = CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT,
2086 },{
2087 .subvendor = 0x1421,
2088 .subdevice = 0x0305,
Michael Krufky44256de2006-02-07 06:49:14 -02002089 .card = CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT,
Chris Pascoe780dfef2006-02-28 08:34:59 -03002090 },{
2091 .subvendor = 0x18ac,
2092 .subdevice = 0xdb40,
2093 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID,
2094 },{
2095 .subvendor = 0x18ac,
2096 .subdevice = 0xdb44,
2097 .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID,
Rusty Scottda215d22006-04-07 02:21:31 -03002098 },{
2099 .subvendor = 0x7063,
2100 .subdevice = 0x5500,
2101 .card = CX88_BOARD_PCHDTV_HD5500,
Valentin Zagurab3038302006-04-13 12:41:43 -03002102 },{
2103 .subvendor = 0x17de,
2104 .subdevice = 0x0841,
2105 .card = CX88_BOARD_KWORLD_MCE200_DELUXE,
Michael Krufkyfc066472006-05-22 10:32:05 -03002106 },{
2107 .subvendor = 0x1822,
2108 .subdevice = 0x0019,
2109 .card = CX88_BOARD_DNTV_LIVE_DVB_T_PRO,
Angelo Marconia3124622006-05-09 18:27:48 -03002110 },{
2111 .subvendor = 0x1554,
2112 .subdevice = 0x4813,
2113 .card = CX88_BOARD_PIXELVIEW_PLAYTV_P7000,
Ricardo Cerqueira680543c2006-05-22 07:44:02 -03002114 },{
2115 .subvendor = 0x14f1,
2116 .subdevice = 0x0842,
Ricardo Cerqueirabe4f4512006-06-08 17:36:17 -03002117 .card = CX88_BOARD_NPGTECH_REALTV_TOP10FM,
Malcolm Valentine4bd6e9d2006-05-29 13:51:59 -03002118 },{
2119 .subvendor = 0x107d,
2120 .subdevice = 0x665e,
2121 .card = CX88_BOARD_WINFAST_DTV2000H,
Michael Krufky65271bf2006-06-21 16:04:33 -03002122 },{
2123 .subvendor = 0x18ac,
2124 .subdevice = 0xd800, /* FusionHDTV 3 Gold (original revision) */
2125 .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q,
Saqeb Akhterc02a34f2006-06-29 20:29:33 -03002126 },{
2127 .subvendor = 0x14f1,
2128 .subdevice = 0x0084,
2129 .card = CX88_BOARD_GENIATECH_DVBS,
Eric Thomasad10c932006-08-08 09:10:04 -03002130 },{
2131 .subvendor = 0x0070,
2132 .subdevice = 0x1404,
2133 .card = CX88_BOARD_HAUPPAUGE_HVR3000,
Michael Krufky5dbaa2c2006-08-08 09:10:04 -03002134 },{
2135 .subvendor = 0x1461,
2136 .subdevice = 0xc111, /* AverMedia M150-D */
2137 /* This board is known to work with the ASUS PVR416 config */
2138 .card = CX88_BOARD_ASUS_PVR_416,
David Bussenschutt2acadef2006-08-08 09:10:05 -03002139 },{
2140 .subvendor = 0xc180,
2141 .subdevice = 0xc980,
2142 .card = CX88_BOARD_TE_DTV_250_OEM_SWANN,
Steven Tothaa481a62006-09-14 15:41:13 -03002143 },{
2144 .subvendor = 0x0070,
2145 .subdevice = 0x9600,
2146 .card = CX88_BOARD_HAUPPAUGE_HVR1300,
2147 },{
2148 .subvendor = 0x0070,
2149 .subdevice = 0x9601,
2150 .card = CX88_BOARD_HAUPPAUGE_HVR1300,
2151 },{
2152 .subvendor = 0x0070,
2153 .subdevice = 0x9602,
2154 .card = CX88_BOARD_HAUPPAUGE_HVR1300,
Michael Krufkydab489d2006-09-15 15:41:23 -03002155 },{
2156 .subvendor = 0x107d,
2157 .subdevice = 0x6632,
2158 .card = CX88_BOARD_LEADTEK_PVR2000,
Michael Krufky4508f592006-09-25 14:14:24 -03002159 },{
2160 .subvendor = 0x12ab,
2161 .subdevice = 0x2300, /* Club3D Zap TV2100 */
2162 .card = CX88_BOARD_KWORLD_DVB_T_CX22702,
Steven Toth3979ecc2006-09-29 22:37:07 -03002163 },{
2164 .subvendor = 0x0070,
2165 .subdevice = 0x9000,
2166 .card = CX88_BOARD_HAUPPAUGE_DVB_T1,
Steven Toth76dc82a2006-09-30 00:43:58 -03002167 },{
2168 .subvendor = 0x0070,
2169 .subdevice = 0x1400,
2170 .card = CX88_BOARD_HAUPPAUGE_HVR3000,
2171 },{
2172 .subvendor = 0x0070,
2173 .subdevice = 0x1401,
2174 .card = CX88_BOARD_HAUPPAUGE_HVR3000,
2175 },{
2176 .subvendor = 0x0070,
2177 .subdevice = 0x1402,
2178 .card = CX88_BOARD_HAUPPAUGE_HVR3000,
Michael Krufky733aeaf2007-03-11 12:48:04 -03002179 },{
2180 .subvendor = 0x1421,
2181 .subdevice = 0x0341, /* ADS Tech InstantTV DVB-S */
2182 .card = CX88_BOARD_KWORLD_DVBS_100,
Daniel Gimpelevich7cb47a142007-05-17 18:10:17 -03002183 },{
2184 .subvendor = 0x1421,
2185 .subdevice = 0x0390,
2186 .card = CX88_BOARD_ADSTECH_PTV_390,
Steven Toth60464da2008-01-05 16:53:01 -03002187 },{
2188 .subvendor = 0x11bd,
2189 .subdevice = 0x0051,
2190 .card = CX88_BOARD_PINNACLE_PCTV_HD_800i,
Steven Toth5c00fac2008-04-22 14:45:14 -03002191 }, {
2192 .subvendor = 0x18ac,
2193 .subdevice = 0xd530,
2194 .card = CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO,
Mauro Carvalho Chehab95079012008-04-22 14:45:15 -03002195 }, {
2196 .subvendor = 0x12ab,
2197 .subdevice = 0x1788,
2198 .card = CX88_BOARD_PINNACLE_HYBRID_PCTV,
2199 }, {
2200 .subvendor = 0x14f1,
2201 .subdevice = 0xea3d,
2202 .card = CX88_BOARD_POWERCOLOR_REAL_ANGEL,
2203 }, {
2204 .subvendor = 0x107d,
2205 .subdevice = 0x6f18,
2206 .card = CX88_BOARD_WINFAST_TV2000_XP_GLOBAL,
2207 }, {
2208 .subvendor = 0x14f1,
2209 .subdevice = 0x8852,
2210 .card = CX88_BOARD_GENIATECH_X8000_MT,
Mauro Carvalho Chehab2422a9b2008-04-22 14:46:00 -03002211 }, {
Steven Toth1117d6b2008-04-22 14:45:34 -03002212 .subvendor = 0x18ac,
2213 .subdevice = 0xd610,
2214 .card = CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD,
Mauro Carvalho Chehab2422a9b2008-04-22 14:46:00 -03002215 }, {
2216 .subvendor = 0x1554,
2217 .subdevice = 0x4935,
2218 .card = CX88_BOARD_PROLINK_PV_8000GT,
Mauro Carvalho Chehab99e09ea2008-03-27 23:18:30 -03002219 }, {
Mauro Carvalho Chehaba31d2bb2008-09-29 12:08:29 -03002220 .subvendor = 0x1554,
2221 .subdevice = 0x4976,
2222 .card = CX88_BOARD_PROLINK_PV_GLOBAL_XTREME,
2223 }, {
Mauro Carvalho Chehab99e09ea2008-03-27 23:18:30 -03002224 .subvendor = 0x17de,
2225 .subdevice = 0x08c1,
2226 .card = CX88_BOARD_KWORLD_ATSC_120,
Steven Toth5bd1b662008-09-04 01:17:33 -03002227 }, {
2228 .subvendor = 0x0070,
2229 .subdevice = 0x6900,
2230 .card = CX88_BOARD_HAUPPAUGE_HVR4000,
2231 }, {
2232 .subvendor = 0x0070,
2233 .subdevice = 0x6904,
2234 .card = CX88_BOARD_HAUPPAUGE_HVR4000,
2235 }, {
2236 .subvendor = 0x0070,
2237 .subdevice = 0x6902,
2238 .card = CX88_BOARD_HAUPPAUGE_HVR4000,
2239 }, {
2240 .subvendor = 0x0070,
2241 .subdevice = 0x6905,
2242 .card = CX88_BOARD_HAUPPAUGE_HVR4000LITE,
2243 }, {
2244 .subvendor = 0x0070,
2245 .subdevice = 0x6906,
2246 .card = CX88_BOARD_HAUPPAUGE_HVR4000LITE,
Igor M. Liplianinaf832622008-09-04 17:24:14 -03002247 }, {
Igor M. Liplianine4aab642008-09-23 15:43:57 -03002248 .subvendor = 0xd420,
2249 .subdevice = 0x9022,
2250 .card = CX88_BOARD_TEVII_S420,
2251 }, {
2252 .subvendor = 0xd460,
Igor M. Liplianinaf832622008-09-04 17:24:14 -03002253 .subdevice = 0x9022,
2254 .card = CX88_BOARD_TEVII_S460,
Oleg Roitburd4cd7fb82008-09-17 11:30:21 -03002255 }, {
2256 .subvendor = 0xA044,
2257 .subdevice = 0x2011,
2258 .card = CX88_BOARD_OMICOM_SS4_PCI,
Oleg Roitburdee730422008-09-17 11:58:33 -03002259 }, {
2260 .subvendor = 0x8920,
2261 .subdevice = 0x8888,
2262 .card = CX88_BOARD_TBS_8920,
Oleg Roitburd57f51db2008-10-08 06:48:08 -03002263 }, {
2264 .subvendor = 0xB033,
2265 .subdevice = 0x3033,
2266 .card = CX88_BOARD_PROF_7300,
Mauro Carvalho Chehab2422a9b2008-04-22 14:46:00 -03002267 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270/* ----------------------------------------------------------------------- */
2271/* some leadtek specific stuff */
2272
Jean Delvare69f7e75a92006-12-23 14:11:03 -03002273static void leadtek_eeprom(struct cx88_core *core, u8 *eeprom_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
2275 /* This is just for the "Winfast 2000XP Expert" board ATM; I don't have data on
2276 * any others.
2277 *
2278 * Byte 0 is 1 on the NTSC board.
2279 */
2280
2281 if (eeprom_data[4] != 0x7d ||
2282 eeprom_data[5] != 0x10 ||
2283 eeprom_data[7] != 0x66) {
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002284 warn_printk(core, "Leadtek eeprom invalid.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 return;
2286 }
2287
Trent Piepho6a59d642007-08-15 14:41:57 -03002288 core->board.tuner_type = (eeprom_data[6] == 0x13) ?
2289 TUNER_PHILIPS_FM1236_MK3 : TUNER_PHILIPS_FM1216ME_MK3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002291 info_printk(core, "Leadtek Winfast 2000XP Expert config: "
2292 "tuner=%d, eeprom[0]=0x%02x\n",
2293 core->board.tuner_type, eeprom_data[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294}
2295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296static void hauppauge_eeprom(struct cx88_core *core, u8 *eeprom_data)
2297{
2298 struct tveeprom tv;
2299
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -07002300 tveeprom_hauppauge_analog(&core->i2c_client, &tv, eeprom_data);
Trent Piepho6a59d642007-08-15 14:41:57 -03002301 core->board.tuner_type = tv.tuner_type;
Steven Toth0345c382006-01-09 15:25:17 -02002302 core->tuner_formats = tv.tuner_formats;
Trent Piepho6a59d642007-08-15 14:41:57 -03002303 core->board.radio.type = tv.has_radio ? CX88_RADIO : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
2305 /* Make sure we support the board model */
Steven Toth3ca0ea92005-12-01 00:51:27 -08002306 switch (tv.model)
2307 {
Steven Toth76dc82a2006-09-30 00:43:58 -03002308 case 14009: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in) */
2309 case 14019: /* WinTV-HVR3000 (Retail, IR Blaster, b/panel video, 3.5mm audio in) */
2310 case 14029: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in - 880 bridge) */
2311 case 14109: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in - low profile) */
2312 case 14129: /* WinTV-HVR3000 (Retail, IR, b/panel video, 3.5mm audio in - 880 bridge - LP) */
2313 case 14559: /* WinTV-HVR3000 (OEM, no IR, b/panel video, 3.5mm audio in) */
Eric Thomasad10c932006-08-08 09:10:04 -03002314 case 14569: /* WinTV-HVR3000 (OEM, no IR, no back panel video) */
Steven Toth76dc82a2006-09-30 00:43:58 -03002315 case 14659: /* WinTV-HVR3000 (OEM, no IR, b/panel video, RCA audio in - Low profile) */
2316 case 14669: /* WinTV-HVR3000 (OEM, no IR, no b/panel video - Low profile) */
Steven Toth0345c382006-01-09 15:25:17 -02002317 case 28552: /* WinTV-PVR 'Roslyn' (No IR) */
Ian Pickworth42d2b6e2006-01-23 17:11:07 -02002318 case 34519: /* WinTV-PCI-FM */
Steven Toth5bd1b662008-09-04 01:17:33 -03002319 case 69009:
2320 /* WinTV-HVR4000 (DVBS/S2/T, Video and IR, back panel inputs) */
2321 case 69100: /* WinTV-HVR4000LITE (DVBS/S2, IR) */
2322 case 69500: /* WinTV-HVR4000LITE (DVBS/S2, No IR) */
2323 case 69559:
2324 /* WinTV-HVR4000 (DVBS/S2/T, Video no IR, back panel inputs) */
2325 case 69569: /* WinTV-HVR4000 (DVBS/S2/T, Video no IR) */
Steven Toth759324c2005-12-01 00:51:26 -08002326 case 90002: /* Nova-T-PCI (9002) */
Steven Toth0fe22862005-12-01 00:51:41 -08002327 case 92001: /* Nova-S-Plus (Video and IR) */
2328 case 92002: /* Nova-S-Plus (Video and IR) */
2329 case 90003: /* Nova-T-PCI (9002 No RF out) */
Steven Toth759324c2005-12-01 00:51:26 -08002330 case 90500: /* Nova-T-PCI (oem) */
2331 case 90501: /* Nova-T-PCI (oem/IR) */
Steven Toth3ca0ea92005-12-01 00:51:27 -08002332 case 92000: /* Nova-SE2 (OEM, No Video or IR) */
Steven Toth611900c2006-01-09 15:25:12 -02002333 case 94009: /* WinTV-HVR1100 (Video and IR Retail) */
2334 case 94501: /* WinTV-HVR1100 (Video and IR OEM) */
Steven Tothaa481a62006-09-14 15:41:13 -03002335 case 96009: /* WinTV-HVR1300 (PAL Video, MPEG Video and IR RX) */
2336 case 96019: /* WinTV-HVR1300 (PAL Video, MPEG Video and IR RX/TX) */
2337 case 96559: /* WinTV-HVR1300 (PAL Video, MPEG Video no IR) */
2338 case 96569: /* WinTV-HVR1300 () */
2339 case 96659: /* WinTV-HVR1300 () */
Steven Toth611900c2006-01-09 15:25:12 -02002340 case 98559: /* WinTV-HVR1100LP (Video no IR, Retail - Low Profile) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 /* known */
2342 break;
2343 default:
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002344 warn_printk(core, "warning: unknown hauppauge model #%d\n",
2345 tv.model);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 break;
2347 }
2348
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002349 info_printk(core, "hauppauge eeprom: model=%d\n", tv.model);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350}
2351
2352/* ----------------------------------------------------------------------- */
2353/* some GDI (was: Modular Technology) specific stuff */
2354
2355static struct {
2356 int id;
2357 int fm;
2358 char *name;
2359} gdi_tuner[] = {
2360 [ 0x01 ] = { .id = TUNER_ABSENT,
2361 .name = "NTSC_M" },
2362 [ 0x02 ] = { .id = TUNER_ABSENT,
2363 .name = "PAL_B" },
2364 [ 0x03 ] = { .id = TUNER_ABSENT,
2365 .name = "PAL_I" },
2366 [ 0x04 ] = { .id = TUNER_ABSENT,
2367 .name = "PAL_D" },
2368 [ 0x05 ] = { .id = TUNER_ABSENT,
2369 .name = "SECAM" },
2370
2371 [ 0x10 ] = { .id = TUNER_ABSENT,
2372 .fm = 1,
2373 .name = "TEMIC_4049" },
2374 [ 0x11 ] = { .id = TUNER_TEMIC_4136FY5,
2375 .name = "TEMIC_4136" },
2376 [ 0x12 ] = { .id = TUNER_ABSENT,
2377 .name = "TEMIC_4146" },
2378
2379 [ 0x20 ] = { .id = TUNER_PHILIPS_FQ1216ME,
2380 .fm = 1,
2381 .name = "PHILIPS_FQ1216_MK3" },
2382 [ 0x21 ] = { .id = TUNER_ABSENT, .fm = 1,
2383 .name = "PHILIPS_FQ1236_MK3" },
2384 [ 0x22 ] = { .id = TUNER_ABSENT,
2385 .name = "PHILIPS_FI1236_MK3" },
2386 [ 0x23 ] = { .id = TUNER_ABSENT,
2387 .name = "PHILIPS_FI1216_MK3" },
2388};
2389
2390static void gdi_eeprom(struct cx88_core *core, u8 *eeprom_data)
2391{
2392 char *name = (eeprom_data[0x0d] < ARRAY_SIZE(gdi_tuner))
2393 ? gdi_tuner[eeprom_data[0x0d]].name : NULL;
2394
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002395 info_printk(core, "GDI: tuner=%s\n", name ? name : "unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 if (NULL == name)
2397 return;
Trent Piepho6a59d642007-08-15 14:41:57 -03002398 core->board.tuner_type = gdi_tuner[eeprom_data[0x0d]].id;
2399 core->board.radio.type = gdi_tuner[eeprom_data[0x0d]].fm ?
2400 CX88_RADIO : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401}
2402
Chris Pascoeb3fb91d2008-04-22 14:45:15 -03002403/* ------------------------------------------------------------------- */
2404/* some Divco specific stuff */
Mauro Carvalho Chehab0be51b42008-04-22 14:46:10 -03002405static int cx88_dvico_xc2028_callback(struct cx88_core *core,
2406 int command, int arg)
Chris Pascoeb3fb91d2008-04-22 14:45:15 -03002407{
Chris Pascoeb3fb91d2008-04-22 14:45:15 -03002408 switch (command) {
2409 case XC2028_TUNER_RESET:
Michael Krufkyd7cba042008-09-12 13:31:45 -03002410 switch (core->boardnr) {
2411 case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO:
2412 /* GPIO-4 xc3028 tuner */
2413
2414 cx_set(MO_GP0_IO, 0x00001000);
2415 cx_clear(MO_GP0_IO, 0x00000010);
2416 msleep(100);
2417 cx_set(MO_GP0_IO, 0x00000010);
2418 msleep(100);
2419 break;
2420 default:
2421 cx_write(MO_GP0_IO, 0x101000);
2422 mdelay(5);
2423 cx_set(MO_GP0_IO, 0x101010);
2424 }
Chris Pascoeb3fb91d2008-04-22 14:45:15 -03002425 break;
2426 default:
2427 return -EINVAL;
2428 }
2429
2430 return 0;
2431}
2432
2433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434/* ----------------------------------------------------------------------- */
Mauro Carvalho Chehab95079012008-04-22 14:45:15 -03002435/* some Geniatech specific stuff */
2436
Mauro Carvalho Chehab0be51b42008-04-22 14:46:10 -03002437static int cx88_xc3028_geniatech_tuner_callback(struct cx88_core *core,
2438 int command, int mode)
Mauro Carvalho Chehab95079012008-04-22 14:45:15 -03002439{
Mauro Carvalho Chehab95079012008-04-22 14:45:15 -03002440 switch (command) {
2441 case XC2028_TUNER_RESET:
2442 switch (INPUT(core->input).type) {
2443 case CX88_RADIO:
Mauro Carvalho Chehabc450e502008-04-22 14:45:28 -03002444 break;
Mauro Carvalho Chehab95079012008-04-22 14:45:15 -03002445 case CX88_VMUX_DVB:
2446 cx_write(MO_GP1_IO, 0x030302);
2447 mdelay(50);
Mauro Carvalho Chehabc450e502008-04-22 14:45:28 -03002448 break;
Mauro Carvalho Chehab95079012008-04-22 14:45:15 -03002449 default:
2450 cx_write(MO_GP1_IO, 0x030301);
2451 mdelay(50);
Mauro Carvalho Chehabc450e502008-04-22 14:45:28 -03002452 }
2453 cx_write(MO_GP1_IO, 0x101010);
2454 mdelay(50);
2455 cx_write(MO_GP1_IO, 0x101000);
2456 mdelay(50);
2457 cx_write(MO_GP1_IO, 0x101010);
2458 mdelay(50);
2459 return 0;
Mauro Carvalho Chehab95079012008-04-22 14:45:15 -03002460 }
2461 return -EINVAL;
2462}
2463
Mauro Carvalho Chehab2422a9b2008-04-22 14:46:00 -03002464/* ------------------------------------------------------------------- */
2465/* some Divco specific stuff */
Mauro Carvalho Chehab0be51b42008-04-22 14:46:10 -03002466static int cx88_pv_8000gt_callback(struct cx88_core *core,
2467 int command, int arg)
Mauro Carvalho Chehab2422a9b2008-04-22 14:46:00 -03002468{
Mauro Carvalho Chehab2422a9b2008-04-22 14:46:00 -03002469 switch (command) {
2470 case XC2028_TUNER_RESET:
2471 cx_write(MO_GP2_IO, 0xcf7);
2472 mdelay(50);
2473 cx_write(MO_GP2_IO, 0xef5);
2474 mdelay(50);
2475 cx_write(MO_GP2_IO, 0xcf7);
2476 break;
2477 default:
2478 return -EINVAL;
2479 }
2480
2481 return 0;
2482}
2483
Mauro Carvalho Chehab95079012008-04-22 14:45:15 -03002484/* ----------------------------------------------------------------------- */
Chris Pascoe780dfef2006-02-28 08:34:59 -03002485/* some DViCO specific stuff */
2486
2487static void dvico_fusionhdtv_hybrid_init(struct cx88_core *core)
2488{
2489 struct i2c_msg msg = { .addr = 0x45, .flags = 0 };
2490 int i, err;
Chris Pascoe69b27e32006-02-28 20:23:11 -03002491 static u8 init_bufs[13][5] = {
Chris Pascoe780dfef2006-02-28 08:34:59 -03002492 { 0x10, 0x00, 0x20, 0x01, 0x03 },
2493 { 0x10, 0x10, 0x01, 0x00, 0x21 },
2494 { 0x10, 0x10, 0x10, 0x00, 0xCA },
2495 { 0x10, 0x10, 0x12, 0x00, 0x08 },
2496 { 0x10, 0x10, 0x13, 0x00, 0x0A },
2497 { 0x10, 0x10, 0x16, 0x01, 0xC0 },
2498 { 0x10, 0x10, 0x22, 0x01, 0x3D },
2499 { 0x10, 0x10, 0x73, 0x01, 0x2E },
2500 { 0x10, 0x10, 0x72, 0x00, 0xC5 },
2501 { 0x10, 0x10, 0x71, 0x01, 0x97 },
2502 { 0x10, 0x10, 0x70, 0x00, 0x0F },
2503 { 0x10, 0x10, 0xB0, 0x00, 0x01 },
2504 { 0x03, 0x0C },
2505 };
2506
Mauro Carvalho Chehab5b9c4e62007-03-28 22:37:26 -03002507 for (i = 0; i < ARRAY_SIZE(init_bufs); i++) {
Chris Pascoe780dfef2006-02-28 08:34:59 -03002508 msg.buf = init_bufs[i];
2509 msg.len = (i != 12 ? 5 : 2);
2510 err = i2c_transfer(&core->i2c_adap, &msg, 1);
2511 if (err != 1) {
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002512 warn_printk(core, "dvico_fusionhdtv_hybrid_init buf %d "
2513 "failed (err = %d)!\n", i, err);
Chris Pascoe780dfef2006-02-28 08:34:59 -03002514 return;
2515 }
2516 }
2517}
2518
Mauro Carvalho Chehab0be51b42008-04-22 14:46:10 -03002519static int cx88_xc2028_tuner_callback(struct cx88_core *core,
2520 int command, int arg)
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002521{
Mauro Carvalho Chehab95079012008-04-22 14:45:15 -03002522 /* Board-specific callbacks */
2523 switch (core->boardnr) {
2524 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
2525 case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
2526 case CX88_BOARD_GENIATECH_X8000_MT:
Mauro Carvalho Chehab99e09ea2008-03-27 23:18:30 -03002527 case CX88_BOARD_KWORLD_ATSC_120:
Mauro Carvalho Chehab0be51b42008-04-22 14:46:10 -03002528 return cx88_xc3028_geniatech_tuner_callback(core,
2529 command, arg);
Mauro Carvalho Chehab2422a9b2008-04-22 14:46:00 -03002530 case CX88_BOARD_PROLINK_PV_8000GT:
Mauro Carvalho Chehaba31d2bb2008-09-29 12:08:29 -03002531 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
Mauro Carvalho Chehab0be51b42008-04-22 14:46:10 -03002532 return cx88_pv_8000gt_callback(core, command, arg);
Chris Pascoeb3fb91d2008-04-22 14:45:15 -03002533 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO:
Michael Krufkyd7cba042008-09-12 13:31:45 -03002534 case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO:
Mauro Carvalho Chehab0be51b42008-04-22 14:46:10 -03002535 return cx88_dvico_xc2028_callback(core, command, arg);
Mauro Carvalho Chehab95079012008-04-22 14:45:15 -03002536 }
2537
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002538 switch (command) {
2539 case XC2028_TUNER_RESET:
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002540 switch (INPUT(core->input).type) {
2541 case CX88_RADIO:
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002542 info_printk(core, "setting GPIO to radio!\n");
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002543 cx_write(MO_GP0_IO, 0x4ff);
2544 mdelay(250);
2545 cx_write(MO_GP2_IO, 0xff);
2546 mdelay(250);
Mauro Carvalho Chehabc450e502008-04-22 14:45:28 -03002547 break;
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002548 case CX88_VMUX_DVB: /* Digital TV*/
2549 default: /* Analog TV */
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002550 info_printk(core, "setting GPIO to TV!\n");
Mauro Carvalho Chehabc450e502008-04-22 14:45:28 -03002551 break;
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002552 }
Mauro Carvalho Chehabc450e502008-04-22 14:45:28 -03002553 cx_write(MO_GP1_IO, 0x101010);
2554 mdelay(250);
2555 cx_write(MO_GP1_IO, 0x101000);
2556 mdelay(250);
2557 cx_write(MO_GP1_IO, 0x101010);
2558 mdelay(250);
2559 return 0;
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002560 }
2561 return -EINVAL;
2562}
2563
Chris Pascoe780dfef2006-02-28 08:34:59 -03002564/* ----------------------------------------------------------------------- */
Steven Toth60464da2008-01-05 16:53:01 -03002565/* Tuner callback function. Currently only needed for the Pinnacle *
2566 * PCTV HD 800i with an xc5000 sillicon tuner. This is used for both *
2567 * analog tuner attach (tuner-core.c) and dvb tuner attach (cx88-dvb.c) */
2568
Mauro Carvalho Chehab0be51b42008-04-22 14:46:10 -03002569static int cx88_xc5000_tuner_callback(struct cx88_core *core,
2570 int command, int arg)
Steven Toth60464da2008-01-05 16:53:01 -03002571{
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002572 switch (core->boardnr) {
Steven Toth60464da2008-01-05 16:53:01 -03002573 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002574 if (command == 0) { /* This is the reset command from xc5000 */
Steven Toth72e04f72008-01-22 01:03:10 -03002575 /* Reset XC5000 tuner via SYS_RSTO_pin */
2576 cx_write(MO_SRST_IO, 0);
2577 msleep(10);
2578 cx_write(MO_SRST_IO, 1);
Steven Toth60464da2008-01-05 16:53:01 -03002579 return 0;
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002580 } else {
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002581 err_printk(core, "xc5000: unknown tuner "
2582 "callback command.\n");
Steven Toth60464da2008-01-05 16:53:01 -03002583 return -EINVAL;
2584 }
2585 break;
Steven Toth1117d6b2008-04-22 14:45:34 -03002586 case CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD:
2587 if (command == 0) { /* This is the reset command from xc5000 */
2588 cx_clear(MO_GP0_IO, 0x00000010);
2589 msleep(10);
2590 cx_set(MO_GP0_IO, 0x00000010);
2591 return 0;
2592 } else {
2593 printk(KERN_ERR
2594 "xc5000: unknown tuner callback command.\n");
2595 return -EINVAL;
2596 }
2597 break;
Steven Toth60464da2008-01-05 16:53:01 -03002598 }
2599 return 0; /* Should never be here */
2600}
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002601
Michael Krufkyd7cba042008-09-12 13:31:45 -03002602int cx88_tuner_callback(void *priv, int component, int command, int arg)
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002603{
2604 struct i2c_algo_bit_data *i2c_algo = priv;
Mauro Carvalho Chehab0be51b42008-04-22 14:46:10 -03002605 struct cx88_core *core;
2606
2607 if (!i2c_algo) {
2608 printk(KERN_ERR "cx88: Error - i2c private data undefined.\n");
2609 return -EINVAL;
2610 }
2611
2612 core = i2c_algo->data;
2613
2614 if (!core) {
2615 printk(KERN_ERR "cx88: Error - device struct undefined.\n");
2616 return -EINVAL;
2617 }
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002618
Michael Krufkyd7cba042008-09-12 13:31:45 -03002619 if (component != DVB_FRONTEND_COMPONENT_TUNER)
2620 return -EINVAL;
2621
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002622 switch (core->board.tuner_type) {
2623 case TUNER_XC2028:
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002624 info_printk(core, "Calling XC2028/3028 callback\n");
Mauro Carvalho Chehab0be51b42008-04-22 14:46:10 -03002625 return cx88_xc2028_tuner_callback(core, command, arg);
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002626 case TUNER_XC5000:
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002627 info_printk(core, "Calling XC5000 callback\n");
Mauro Carvalho Chehab0be51b42008-04-22 14:46:10 -03002628 return cx88_xc5000_tuner_callback(core, command, arg);
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002629 }
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002630 err_printk(core, "Error: Calling callback for tuner %d\n",
2631 core->board.tuner_type);
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002632 return -EINVAL;
2633}
Steven Toth60464da2008-01-05 16:53:01 -03002634EXPORT_SYMBOL(cx88_tuner_callback);
2635
2636/* ----------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
Trent Piephobbc83592007-08-15 14:41:58 -03002638static void cx88_card_list(struct cx88_core *core, struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639{
2640 int i;
2641
2642 if (0 == pci->subsystem_vendor &&
2643 0 == pci->subsystem_device) {
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002644 printk(KERN_ERR
2645 "%s: Your board has no valid PCI Subsystem ID and thus can't\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 "%s: be autodetected. Please pass card=<n> insmod option to\n"
2647 "%s: workaround that. Redirect complaints to the vendor of\n"
2648 "%s: the TV card. Best regards,\n"
2649 "%s: -- tux\n",
2650 core->name,core->name,core->name,core->name,core->name);
2651 } else {
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002652 printk(KERN_ERR
2653 "%s: Your board isn't known (yet) to the driver. You can\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 "%s: try to pick one of the existing card configs via\n"
2655 "%s: card=<n> insmod option. Updating to the latest\n"
2656 "%s: version might help as well.\n",
2657 core->name,core->name,core->name,core->name);
2658 }
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002659 err_printk(core, "Here is a list of valid choices for the card=<n> "
2660 "insmod option:\n");
Trent Piephobbc83592007-08-15 14:41:58 -03002661 for (i = 0; i < ARRAY_SIZE(cx88_boards); i++)
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002662 printk(KERN_ERR "%s: card=%d -> %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 core->name, i, cx88_boards[i].name);
2664}
2665
Trent Piephobbc83592007-08-15 14:41:58 -03002666static void cx88_card_setup_pre_i2c(struct cx88_core *core)
Steven Tothaa481a62006-09-14 15:41:13 -03002667{
Trent Piepho6a59d642007-08-15 14:41:57 -03002668 switch (core->boardnr) {
Steven Tothaa481a62006-09-14 15:41:13 -03002669 case CX88_BOARD_HAUPPAUGE_HVR1300:
Steven Toth2491fbb2008-09-22 01:48:13 -03002670 /*
2671 * Bring the 702 demod up before i2c scanning/attach or devices are hidden
2672 * We leave here with the 702 on the bus
2673 *
2674 * "reset the IR receiver on GPIO[3]"
2675 * Reported by Mike Crash <mike AT mikecrash.com>
2676 */
2677 cx_write(MO_GP0_IO, 0x0000ef88);
Steven Tothaa481a62006-09-14 15:41:13 -03002678 udelay(1000);
Steven Toth2491fbb2008-09-22 01:48:13 -03002679 cx_clear(MO_GP0_IO, 0x00000088);
Steven Tothaa481a62006-09-14 15:41:13 -03002680 udelay(50);
Steven Toth2491fbb2008-09-22 01:48:13 -03002681 cx_set(MO_GP0_IO, 0x00000088); /* 702 out of reset */
Steven Tothaa481a62006-09-14 15:41:13 -03002682 udelay(1000);
2683 break;
Mauro Carvalho Chehab2422a9b2008-04-22 14:46:00 -03002684
Mauro Carvalho Chehaba31d2bb2008-09-29 12:08:29 -03002685 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
Mauro Carvalho Chehab2422a9b2008-04-22 14:46:00 -03002686 case CX88_BOARD_PROLINK_PV_8000GT:
2687 cx_write(MO_GP2_IO, 0xcf7);
2688 mdelay(50);
2689 cx_write(MO_GP2_IO, 0xef5);
2690 mdelay(50);
2691 cx_write(MO_GP2_IO, 0xcf7);
2692 msleep(10);
2693 break;
2694
Steven Toth2491fbb2008-09-22 01:48:13 -03002695 case CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD:
Steven Toth1117d6b2008-04-22 14:45:34 -03002696 /* Enable the xc5000 tuner */
2697 cx_set(MO_GP0_IO, 0x00001010);
2698 break;
Steven Toth2491fbb2008-09-22 01:48:13 -03002699
2700 case CX88_BOARD_HAUPPAUGE_HVR3000:
Steven Toth5bd1b662008-09-04 01:17:33 -03002701 case CX88_BOARD_HAUPPAUGE_HVR4000:
Steven Toth2491fbb2008-09-22 01:48:13 -03002702 /* Init GPIO */
2703 cx_write(MO_GP0_IO, core->board.input[0].gpio0);
Steven Toth5bd1b662008-09-04 01:17:33 -03002704 udelay(1000);
Darron Broad2f3af9e2008-10-11 11:35:56 -03002705 cx_clear(MO_GP0_IO, 0x00000080);
2706 udelay(50);
2707 cx_set(MO_GP0_IO, 0x00000080); /* 702 out of reset */
2708 udelay(1000);
Steven Toth2491fbb2008-09-22 01:48:13 -03002709 break;
Steven Tothaa481a62006-09-14 15:41:13 -03002710 }
2711}
2712
Mauro Carvalho Chehab99e09ea2008-03-27 23:18:30 -03002713/*
2714 * Sets board-dependent xc3028 configuration
2715 */
2716void cx88_setup_xc3028(struct cx88_core *core, struct xc2028_ctrl *ctl)
2717{
2718 memset(ctl, 0, sizeof(*ctl));
2719
2720 ctl->fname = XC2028_DEFAULT_FIRMWARE;
2721 ctl->max_len = 64;
2722
2723 switch (core->boardnr) {
2724 case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
Daniel Gimpelevicha9606ce2008-06-03 21:29:45 -03002725 /* Now works with firmware version 2.7 */
2726 if (core->i2c_algo.udelay < 16)
2727 core->i2c_algo.udelay = 16;
Mauro Carvalho Chehab99e09ea2008-03-27 23:18:30 -03002728 break;
2729 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO:
Tim Farrington19c309e2008-10-11 12:44:38 -03002730 ctl->demod = XC3028_FE_ZARLINK456;
Mauro Carvalho Chehab99e09ea2008-03-27 23:18:30 -03002731 break;
2732 case CX88_BOARD_KWORLD_ATSC_120:
2733 case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO:
2734 ctl->demod = XC3028_FE_OREN538;
2735 break;
Mauro Carvalho Chehaba31d2bb2008-09-29 12:08:29 -03002736 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
Mauro Carvalho Chehab99e09ea2008-03-27 23:18:30 -03002737 case CX88_BOARD_PROLINK_PV_8000GT:
2738 /*
Mauro Carvalho Chehaba31d2bb2008-09-29 12:08:29 -03002739 * Those boards uses non-MTS firmware
Mauro Carvalho Chehab99e09ea2008-03-27 23:18:30 -03002740 */
2741 break;
Stéphane Voltz3f6014f2008-09-05 14:33:54 -03002742 case CX88_BOARD_PINNACLE_HYBRID_PCTV:
2743 ctl->demod = XC3028_FE_ZARLINK456;
2744 ctl->mts = 1;
2745 break;
Mauro Carvalho Chehab99e09ea2008-03-27 23:18:30 -03002746 default:
2747 ctl->demod = XC3028_FE_OREN538;
2748 ctl->mts = 1;
2749 }
2750}
2751EXPORT_SYMBOL_GPL(cx88_setup_xc3028);
2752
Trent Piephobbc83592007-08-15 14:41:58 -03002753static void cx88_card_setup(struct cx88_core *core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754{
Steven Toth3ca0ea92005-12-01 00:51:27 -08002755 static u8 eeprom[256];
Mauro Carvalho Chehab4bf12262008-04-26 11:55:09 -03002756 struct tuner_setup tun_setup;
2757 unsigned int mode_mask = T_RADIO |
2758 T_ANALOG_TV |
2759 T_DIGITAL_TV;
2760
2761 memset(&tun_setup, 0, sizeof(tun_setup));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
2763 if (0 == core->i2c_rc) {
2764 core->i2c_client.addr = 0xa0 >> 1;
Mauro Carvalho Chehab4bf12262008-04-26 11:55:09 -03002765 tveeprom_read(&core->i2c_client, eeprom, sizeof(eeprom));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 }
2767
Trent Piepho6a59d642007-08-15 14:41:57 -03002768 switch (core->boardnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 case CX88_BOARD_HAUPPAUGE:
2770 case CX88_BOARD_HAUPPAUGE_ROSLYN:
2771 if (0 == core->i2c_rc)
Mauro Carvalho Chehab4bf12262008-04-26 11:55:09 -03002772 hauppauge_eeprom(core, eeprom+8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 break;
2774 case CX88_BOARD_GDI:
2775 if (0 == core->i2c_rc)
Mauro Carvalho Chehab4bf12262008-04-26 11:55:09 -03002776 gdi_eeprom(core, eeprom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 break;
2778 case CX88_BOARD_WINFAST2000XP_EXPERT:
2779 if (0 == core->i2c_rc)
Mauro Carvalho Chehab4bf12262008-04-26 11:55:09 -03002780 leadtek_eeprom(core, eeprom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 break;
Steven Toth0fa14aa2006-01-09 15:25:02 -02002782 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
2783 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Toth611900c2006-01-09 15:25:12 -02002785 case CX88_BOARD_HAUPPAUGE_HVR1100:
2786 case CX88_BOARD_HAUPPAUGE_HVR1100LP:
Eric Thomasad10c932006-08-08 09:10:04 -03002787 case CX88_BOARD_HAUPPAUGE_HVR3000:
Steven Tothaa481a62006-09-14 15:41:13 -03002788 case CX88_BOARD_HAUPPAUGE_HVR1300:
Steven Toth5bd1b662008-09-04 01:17:33 -03002789 case CX88_BOARD_HAUPPAUGE_HVR4000:
2790 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 if (0 == core->i2c_rc)
Mauro Carvalho Chehab4bf12262008-04-26 11:55:09 -03002792 hauppauge_eeprom(core, eeprom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 break;
Vadim Catana0e0351e2006-01-09 15:25:02 -02002794 case CX88_BOARD_KWORLD_DVBS_100:
2795 cx_write(MO_GP0_IO, 0x000007f8);
2796 cx_write(MO_GP1_IO, 0x00000001);
2797 break;
Chris Pascoe87655612008-04-22 14:45:15 -03002798 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO:
2799 /* GPIO0:0 is hooked to demod reset */
2800 /* GPIO0:4 is hooked to xc3028 reset */
2801 cx_write(MO_GP0_IO, 0x00111100);
2802 msleep(1);
2803 cx_write(MO_GP0_IO, 0x00111111);
2804 break;
Chris Pascoed536e9c2006-08-10 03:22:21 -03002805 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL:
2806 /* GPIO0:6 is hooked to FX2 reset pin */
2807 cx_set(MO_GP0_IO, 0x00004040);
2808 cx_clear(MO_GP0_IO, 0x00000040);
2809 msleep(1000);
2810 cx_set(MO_GP0_IO, 0x00004040);
2811 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1:
2813 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS:
Chris Pascoe780dfef2006-02-28 08:34:59 -03002814 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 /* GPIO0:0 is hooked to mt352 reset pin */
2816 cx_set(MO_GP0_IO, 0x00000101);
2817 cx_clear(MO_GP0_IO, 0x00000001);
2818 msleep(1);
2819 cx_set(MO_GP0_IO, 0x00000101);
Chris Pascoe780dfef2006-02-28 08:34:59 -03002820 if (0 == core->i2c_rc &&
Trent Piepho6a59d642007-08-15 14:41:57 -03002821 core->boardnr == CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID)
Chris Pascoe780dfef2006-02-28 08:34:59 -03002822 dvico_fusionhdtv_hybrid_init(core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 break;
2824 case CX88_BOARD_KWORLD_DVB_T:
2825 case CX88_BOARD_DNTV_LIVE_DVB_T:
2826 cx_set(MO_GP0_IO, 0x00000707);
2827 cx_set(MO_GP2_IO, 0x00000101);
2828 cx_clear(MO_GP2_IO, 0x00000001);
2829 msleep(1);
2830 cx_clear(MO_GP0_IO, 0x00000007);
2831 cx_set(MO_GP2_IO, 0x00000101);
2832 break;
Chris Pascoefc40b262006-01-09 15:25:35 -02002833 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
2834 cx_write(MO_GP0_IO, 0x00080808);
2835 break;
Kirk Lapraye976f9372005-11-08 21:37:04 -08002836 case CX88_BOARD_ATI_HDTVWONDER:
2837 if (0 == core->i2c_rc) {
2838 /* enable tuner */
2839 int i;
Mauro Carvalho Chehab5b9c4e62007-03-28 22:37:26 -03002840 static const u8 buffer [][2] = {
2841 {0x10,0x12},
2842 {0x13,0x04},
2843 {0x16,0x00},
2844 {0x14,0x04},
2845 {0x17,0x00}
2846 };
Kirk Lapraye976f9372005-11-08 21:37:04 -08002847 core->i2c_client.addr = 0x0a;
Kirk Lapraye976f9372005-11-08 21:37:04 -08002848
Mauro Carvalho Chehab5b9c4e62007-03-28 22:37:26 -03002849 for (i = 0; i < ARRAY_SIZE(buffer); i++)
2850 if (2 != i2c_master_send(&core->i2c_client,
2851 buffer[i],2))
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03002852 warn_printk(core, "Unable to enable "
2853 "tuner(%i).\n", i);
Kirk Lapraye976f9372005-11-08 21:37:04 -08002854 }
2855 break;
Mauro Carvalho Chehab55c88612007-10-19 06:59:33 -03002856 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
2857 {
2858 struct v4l2_priv_tun_config tea5767_cfg;
2859 struct tea5767_ctrl ctl;
2860
2861 memset(&ctl, 0, sizeof(ctl));
2862
2863 ctl.high_cut = 1;
2864 ctl.st_noise = 1;
2865 ctl.deemph_75 = 1;
2866 ctl.xtal_freq = TEA5767_HIGH_LO_13MHz;
2867
2868 tea5767_cfg.tuner = TUNER_TEA5767;
2869 tea5767_cfg.priv = &ctl;
2870
2871 cx88_call_i2c_clients(core, TUNER_SET_CONFIG, &tea5767_cfg);
Igor M. Liplianinaf832622008-09-04 17:24:14 -03002872 break;
Mauro Carvalho Chehab55c88612007-10-19 06:59:33 -03002873 }
Igor M. Liplianine4aab642008-09-23 15:43:57 -03002874 case CX88_BOARD_TEVII_S420:
Igor M. Liplianinaf832622008-09-04 17:24:14 -03002875 case CX88_BOARD_TEVII_S460:
Oleg Roitburd4cd7fb82008-09-17 11:30:21 -03002876 case CX88_BOARD_OMICOM_SS4_PCI:
Oleg Roitburdee730422008-09-17 11:58:33 -03002877 case CX88_BOARD_TBS_8920:
Oleg Roitburd57f51db2008-10-08 06:48:08 -03002878 case CX88_BOARD_PROF_7300:
Oleg Roitburdee730422008-09-17 11:58:33 -03002879 cx_write(MO_SRST_IO, 0);
2880 msleep(100);
2881 cx_write(MO_SRST_IO, 1);
2882 msleep(100);
2883 break;
Mauro Carvalho Chehab4bf12262008-04-26 11:55:09 -03002884 } /*end switch() */
2885
2886
2887 /* Setup tuners */
2888 if ((core->board.radio_type != UNSET)) {
2889 tun_setup.mode_mask = T_RADIO;
2890 tun_setup.type = core->board.radio_type;
2891 tun_setup.addr = core->board.radio_addr;
2892 tun_setup.tuner_callback = cx88_tuner_callback;
2893 cx88_call_i2c_clients(core, TUNER_SET_TYPE_ADDR, &tun_setup);
2894 mode_mask &= ~T_RADIO;
2895 }
2896
2897 if (core->board.tuner_type != TUNER_ABSENT) {
2898 tun_setup.mode_mask = mode_mask;
2899 tun_setup.type = core->board.tuner_type;
2900 tun_setup.addr = core->board.tuner_addr;
2901 tun_setup.tuner_callback = cx88_tuner_callback;
2902
2903 cx88_call_i2c_clients(core, TUNER_SET_TYPE_ADDR, &tun_setup);
2904 }
2905
2906 if (core->board.tda9887_conf) {
2907 struct v4l2_priv_tun_config tda9887_cfg;
2908
2909 tda9887_cfg.tuner = TUNER_TDA9887;
2910 tda9887_cfg.priv = &core->board.tda9887_conf;
2911
2912 cx88_call_i2c_clients(core, TUNER_SET_CONFIG, &tda9887_cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 }
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002914
2915 if (core->board.tuner_type == TUNER_XC2028) {
2916 struct v4l2_priv_tun_config xc2028_cfg;
2917 struct xc2028_ctrl ctl;
2918
Mauro Carvalho Chehab99e09ea2008-03-27 23:18:30 -03002919 /* Fills device-dependent initialization parameters */
2920 cx88_setup_xc3028(core, &ctl);
2921
2922 /* Sends parameters to xc2028/3028 tuner */
Mauro Carvalho Chehaba9317ab2008-04-22 14:45:46 -03002923 memset(&xc2028_cfg, 0, sizeof(xc2028_cfg));
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002924 xc2028_cfg.tuner = TUNER_XC2028;
2925 xc2028_cfg.priv = &ctl;
Mauro Carvalho Chehab64016332008-04-22 14:45:30 -03002926 info_printk(core, "Asking xc2028/3028 to load firmware %s\n",
2927 ctl.fname);
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -03002928 cx88_call_i2c_clients(core, TUNER_SET_CONFIG, &xc2028_cfg);
2929 }
Mauro Carvalho Chehab4bf12262008-04-26 11:55:09 -03002930 cx88_call_i2c_clients (core, TUNER_SET_STANDBY, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931}
2932
2933/* ------------------------------------------------------------------ */
2934
Trent Piephobbc83592007-08-15 14:41:58 -03002935static int cx88_pci_quirks(const char *name, struct pci_dev *pci)
2936{
2937 unsigned int lat = UNSET;
2938 u8 ctrl = 0;
2939 u8 value;
2940
2941 /* check pci quirks */
2942 if (pci_pci_problems & PCIPCI_TRITON) {
2943 printk(KERN_INFO "%s: quirk: PCIPCI_TRITON -- set TBFX\n",
2944 name);
2945 ctrl |= CX88X_EN_TBFX;
2946 }
2947 if (pci_pci_problems & PCIPCI_NATOMA) {
2948 printk(KERN_INFO "%s: quirk: PCIPCI_NATOMA -- set TBFX\n",
2949 name);
2950 ctrl |= CX88X_EN_TBFX;
2951 }
2952 if (pci_pci_problems & PCIPCI_VIAETBF) {
2953 printk(KERN_INFO "%s: quirk: PCIPCI_VIAETBF -- set TBFX\n",
2954 name);
2955 ctrl |= CX88X_EN_TBFX;
2956 }
2957 if (pci_pci_problems & PCIPCI_VSFX) {
2958 printk(KERN_INFO "%s: quirk: PCIPCI_VSFX -- set VSFX\n",
2959 name);
2960 ctrl |= CX88X_EN_VSFX;
2961 }
2962#ifdef PCIPCI_ALIMAGIK
2963 if (pci_pci_problems & PCIPCI_ALIMAGIK) {
2964 printk(KERN_INFO "%s: quirk: PCIPCI_ALIMAGIK -- latency fixup\n",
2965 name);
2966 lat = 0x0A;
2967 }
2968#endif
2969
2970 /* check insmod options */
2971 if (UNSET != latency)
2972 lat = latency;
2973
2974 /* apply stuff */
2975 if (ctrl) {
2976 pci_read_config_byte(pci, CX88X_DEVCTRL, &value);
2977 value |= ctrl;
2978 pci_write_config_byte(pci, CX88X_DEVCTRL, value);
2979 }
2980 if (UNSET != lat) {
2981 printk(KERN_INFO "%s: setting pci latency timer to %d\n",
2982 name, latency);
2983 pci_write_config_byte(pci, PCI_LATENCY_TIMER, latency);
2984 }
2985 return 0;
2986}
2987
2988int cx88_get_resources(const struct cx88_core *core, struct pci_dev *pci)
2989{
2990 if (request_mem_region(pci_resource_start(pci,0),
2991 pci_resource_len(pci,0),
2992 core->name))
2993 return 0;
2994 printk(KERN_ERR
2995 "%s/%d: Can't get MMIO memory @ 0x%llx, subsystem: %04x:%04x\n",
2996 core->name, PCI_FUNC(pci->devfn),
2997 (unsigned long long)pci_resource_start(pci, 0),
2998 pci->subsystem_vendor, pci->subsystem_device);
2999 return -EBUSY;
3000}
3001
3002/* Allocate and initialize the cx88 core struct. One should hold the
3003 * devlist mutex before calling this. */
3004struct cx88_core *cx88_core_create(struct pci_dev *pci, int nr)
3005{
3006 struct cx88_core *core;
3007 int i;
3008
3009 core = kzalloc(sizeof(*core), GFP_KERNEL);
3010
3011 atomic_inc(&core->refcount);
3012 core->pci_bus = pci->bus->number;
3013 core->pci_slot = PCI_SLOT(pci->devfn);
Trent Piepho8ddac9e2007-08-18 06:57:55 -03003014 core->pci_irqmask = PCI_INT_RISC_RD_BERRINT | PCI_INT_RISC_WR_BERRINT |
3015 PCI_INT_BRDG_BERRINT | PCI_INT_SRC_DMA_BERRINT |
3016 PCI_INT_DST_DMA_BERRINT | PCI_INT_IPB_DMA_BERRINT;
Trent Piephobbc83592007-08-15 14:41:58 -03003017 mutex_init(&core->lock);
3018
3019 core->nr = nr;
3020 sprintf(core->name, "cx88[%d]", core->nr);
3021 if (0 != cx88_get_resources(core, pci)) {
3022 kfree(core);
3023 return NULL;
3024 }
3025
3026 /* PCI stuff */
3027 cx88_pci_quirks(core->name, pci);
3028 core->lmmio = ioremap(pci_resource_start(pci, 0),
3029 pci_resource_len(pci, 0));
3030 core->bmmio = (u8 __iomem *)core->lmmio;
3031
3032 /* board config */
3033 core->boardnr = UNSET;
3034 if (card[core->nr] < ARRAY_SIZE(cx88_boards))
3035 core->boardnr = card[core->nr];
3036 for (i = 0; UNSET == core->boardnr && i < ARRAY_SIZE(cx88_subids); i++)
3037 if (pci->subsystem_vendor == cx88_subids[i].subvendor &&
3038 pci->subsystem_device == cx88_subids[i].subdevice)
3039 core->boardnr = cx88_subids[i].card;
3040 if (UNSET == core->boardnr) {
3041 core->boardnr = CX88_BOARD_UNKNOWN;
3042 cx88_card_list(core, pci);
3043 }
3044
3045 memcpy(&core->board, &cx88_boards[core->boardnr], sizeof(core->board));
3046
Mauro Carvalho Chehab30077032008-10-21 10:43:10 -03003047 if (!core->board.num_frontends && (core->board.mpeg & CX88_MPEG_DVB))
3048 core->board.num_frontends = 1;
Steven Toth363c35f2008-10-11 11:05:50 -03003049
3050 info_printk(core, "subsystem: %04x:%04x, board: %s [card=%d,%s], frontend(s): %d\n",
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03003051 pci->subsystem_vendor, pci->subsystem_device, core->board.name,
Trent Piephobbc83592007-08-15 14:41:58 -03003052 core->boardnr, card[core->nr] == core->boardnr ?
Steven Toth363c35f2008-10-11 11:05:50 -03003053 "insmod option" : "autodetected",
3054 core->board.num_frontends);
Trent Piephobbc83592007-08-15 14:41:58 -03003055
3056 if (tuner[core->nr] != UNSET)
3057 core->board.tuner_type = tuner[core->nr];
3058 if (radio[core->nr] != UNSET)
3059 core->board.radio_type = radio[core->nr];
3060
Mauro Carvalho Chehab0f19e652008-04-22 14:45:29 -03003061 info_printk(core, "TV tuner type %d, Radio tuner type %d\n",
3062 core->board.tuner_type, core->board.radio_type);
Trent Piephobbc83592007-08-15 14:41:58 -03003063
3064 /* init hardware */
3065 cx88_reset(core);
3066 cx88_card_setup_pre_i2c(core);
3067 cx88_i2c_init(core, pci);
Mauro Carvalho Chehab189bf5f2008-02-19 16:22:25 -03003068
3069 /* load tuner module, if needed */
3070 if (TUNER_ABSENT != core->board.tuner_type)
3071 request_module("tuner");
3072
Trent Piephobbc83592007-08-15 14:41:58 -03003073 cx88_card_setup(core);
3074 cx88_ir_init(core, pci);
3075
3076 return core;
3077}