2 * ngene-cards.c: nGene PCIe bridge driver - card specific info
4 * Copyright (C) 2005-2007 Micronas
6 * Copyright (C) 2008-2009 Ralph Metzler <rjkm@metzlerbros.de>
7 * Modifications for new nGene firmware,
8 * support for EEPROM-copying,
9 * support for new dual DVB-S2 card prototype
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * version 2 only, as published by the Free Software Foundation.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
27 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
30 #include <linux/module.h>
31 #include <linux/init.h>
32 #include <linux/pci.h>
33 #include <linux/pci_ids.h>
43 #include "tda18271c2dd.h"
49 /****************************************************************************/
50 /* Demod/tuner attachment ***************************************************/
51 /****************************************************************************/
53 static int tuner_attach_stv6110(struct ngene_channel
*chan
)
55 struct i2c_adapter
*i2c
;
56 struct stv090x_config
*feconf
= (struct stv090x_config
*)
57 chan
->dev
->card_info
->fe_config
[chan
->number
];
58 struct stv6110x_config
*tunerconf
= (struct stv6110x_config
*)
59 chan
->dev
->card_info
->tuner_config
[chan
->number
];
60 const struct stv6110x_devctl
*ctl
;
62 /* tuner 1+2: i2c adapter #0, tuner 3+4: i2c adapter #1 */
64 i2c
= &chan
->dev
->channel
[0].i2c_adapter
;
66 i2c
= &chan
->dev
->channel
[1].i2c_adapter
;
68 ctl
= dvb_attach(stv6110x_attach
, chan
->fe
, tunerconf
, i2c
);
70 printk(KERN_ERR DEVICE_NAME
": No STV6110X found!\n");
74 feconf
->tuner_init
= ctl
->tuner_init
;
75 feconf
->tuner_sleep
= ctl
->tuner_sleep
;
76 feconf
->tuner_set_mode
= ctl
->tuner_set_mode
;
77 feconf
->tuner_set_frequency
= ctl
->tuner_set_frequency
;
78 feconf
->tuner_get_frequency
= ctl
->tuner_get_frequency
;
79 feconf
->tuner_set_bandwidth
= ctl
->tuner_set_bandwidth
;
80 feconf
->tuner_get_bandwidth
= ctl
->tuner_get_bandwidth
;
81 feconf
->tuner_set_bbgain
= ctl
->tuner_set_bbgain
;
82 feconf
->tuner_get_bbgain
= ctl
->tuner_get_bbgain
;
83 feconf
->tuner_set_refclk
= ctl
->tuner_set_refclk
;
84 feconf
->tuner_get_status
= ctl
->tuner_get_status
;
90 static int drxk_gate_ctrl(struct dvb_frontend
*fe
, int enable
)
92 struct ngene_channel
*chan
= fe
->sec_priv
;
96 down(&chan
->dev
->pll_mutex
);
97 status
= chan
->gate_ctrl(fe
, 1);
99 status
= chan
->gate_ctrl(fe
, 0);
100 up(&chan
->dev
->pll_mutex
);
105 static int tuner_attach_tda18271(struct ngene_channel
*chan
)
107 struct i2c_adapter
*i2c
;
108 struct dvb_frontend
*fe
;
110 i2c
= &chan
->dev
->channel
[0].i2c_adapter
;
111 if (chan
->fe
->ops
.i2c_gate_ctrl
)
112 chan
->fe
->ops
.i2c_gate_ctrl(chan
->fe
, 1);
113 fe
= dvb_attach(tda18271c2dd_attach
, chan
->fe
, i2c
, 0x60);
114 if (chan
->fe
->ops
.i2c_gate_ctrl
)
115 chan
->fe
->ops
.i2c_gate_ctrl(chan
->fe
, 0);
117 printk(KERN_ERR
"No TDA18271 found!\n");
124 static int tuner_attach_probe(struct ngene_channel
*chan
)
126 if (chan
->demod_type
== 0)
127 return tuner_attach_stv6110(chan
);
128 if (chan
->demod_type
== 1)
129 return tuner_attach_tda18271(chan
);
133 static int demod_attach_stv0900(struct ngene_channel
*chan
)
135 struct i2c_adapter
*i2c
;
136 struct stv090x_config
*feconf
= (struct stv090x_config
*)
137 chan
->dev
->card_info
->fe_config
[chan
->number
];
139 /* tuner 1+2: i2c adapter #0, tuner 3+4: i2c adapter #1 */
140 /* Note: Both adapters share the same i2c bus, but the demod */
141 /* driver requires that each demod has its own i2c adapter */
142 if (chan
->number
< 2)
143 i2c
= &chan
->dev
->channel
[0].i2c_adapter
;
145 i2c
= &chan
->dev
->channel
[1].i2c_adapter
;
147 chan
->fe
= dvb_attach(stv090x_attach
, feconf
, i2c
,
148 (chan
->number
& 1) == 0 ? STV090x_DEMODULATOR_0
149 : STV090x_DEMODULATOR_1
);
150 if (chan
->fe
== NULL
) {
151 printk(KERN_ERR DEVICE_NAME
": No STV0900 found!\n");
155 /* store channel info */
156 if (feconf
->tuner_i2c_lock
)
157 chan
->fe
->analog_demod_priv
= chan
;
159 if (!dvb_attach(lnbh24_attach
, chan
->fe
, i2c
, 0,
160 0, chan
->dev
->card_info
->lnb
[chan
->number
])) {
161 printk(KERN_ERR DEVICE_NAME
": No LNBH24 found!\n");
162 dvb_frontend_detach(chan
->fe
);
170 static void cineS2_tuner_i2c_lock(struct dvb_frontend
*fe
, int lock
)
172 struct ngene_channel
*chan
= fe
->analog_demod_priv
;
175 down(&chan
->dev
->pll_mutex
);
177 up(&chan
->dev
->pll_mutex
);
180 static int i2c_read(struct i2c_adapter
*adapter
, u8 adr
, u8
*val
)
182 struct i2c_msg msgs
[1] = {{.addr
= adr
, .flags
= I2C_M_RD
,
183 .buf
= val
, .len
= 1 } };
184 return (i2c_transfer(adapter
, msgs
, 1) == 1) ? 0 : -1;
187 static int i2c_read_reg16(struct i2c_adapter
*adapter
, u8 adr
,
190 u8 msg
[2] = {reg
>>8, reg
&0xff};
191 struct i2c_msg msgs
[2] = {{.addr
= adr
, .flags
= 0,
192 .buf
= msg
, .len
= 2},
193 {.addr
= adr
, .flags
= I2C_M_RD
,
194 .buf
= val
, .len
= 1} };
195 return (i2c_transfer(adapter
, msgs
, 2) == 2) ? 0 : -1;
198 static int port_has_stv0900(struct i2c_adapter
*i2c
, int port
)
201 if (i2c_read_reg16(i2c
, 0x68+port
/2, 0xf100, &val
) < 0)
206 static int port_has_drxk(struct i2c_adapter
*i2c
, int port
)
210 if (i2c_read(i2c
, 0x29+port
, &val
) < 0)
215 static int demod_attach_drxk(struct ngene_channel
*chan
,
216 struct i2c_adapter
*i2c
)
218 struct drxk_config config
;
220 memset(&config
, 0, sizeof(config
));
221 config
.microcode_name
= "drxk_a3.mc";
222 config
.qam_demod_parameter_count
= 4;
223 config
.adr
= 0x29 + (chan
->number
^ 2);
225 chan
->fe
= dvb_attach(drxk_attach
, &config
, i2c
);
227 printk(KERN_ERR
"No DRXK found!\n");
230 chan
->fe
->sec_priv
= chan
;
231 chan
->gate_ctrl
= chan
->fe
->ops
.i2c_gate_ctrl
;
232 chan
->fe
->ops
.i2c_gate_ctrl
= drxk_gate_ctrl
;
236 static int cineS2_probe(struct ngene_channel
*chan
)
238 struct i2c_adapter
*i2c
;
239 struct stv090x_config
*fe_conf
;
241 struct i2c_msg i2c_msg
= { .flags
= 0, .buf
= buf
};
244 /* tuner 1+2: i2c adapter #0, tuner 3+4: i2c adapter #1 */
245 if (chan
->number
< 2)
246 i2c
= &chan
->dev
->channel
[0].i2c_adapter
;
248 i2c
= &chan
->dev
->channel
[1].i2c_adapter
;
250 if (port_has_stv0900(i2c
, chan
->number
)) {
251 chan
->demod_type
= 0;
252 fe_conf
= chan
->dev
->card_info
->fe_config
[chan
->number
];
253 /* demod found, attach it */
254 rc
= demod_attach_stv0900(chan
);
255 if (rc
< 0 || chan
->number
< 2)
258 /* demod #2: reprogram outputs DPN1 & DPN2 */
259 i2c_msg
.addr
= fe_conf
->address
;
262 switch (chan
->number
) {
274 rc
= i2c_transfer(i2c
, &i2c_msg
, 1);
276 printk(KERN_ERR DEVICE_NAME
": could not setup DPNx\n");
279 } else if (port_has_drxk(i2c
, chan
->number
^2)) {
280 chan
->demod_type
= 1;
281 demod_attach_drxk(chan
, i2c
);
283 printk(KERN_ERR
"No demod found on chan %d\n", chan
->number
);
290 static struct lgdt330x_config aver_m780
= {
291 .demod_address
= 0xb2 >> 1,
292 .demod_chip
= LGDT3303
,
293 .serial_mpeg
= 0x00, /* PARALLEL */
294 .clock_polarity_flip
= 1,
297 static struct mt2131_config m780_tunerconfig
= {
301 /* A single func to attach the demo and tuner, rather than
302 * use two sep funcs like the current design mandates.
304 static int demod_attach_lg330x(struct ngene_channel
*chan
)
306 chan
->fe
= dvb_attach(lgdt330x_attach
, &aver_m780
, &chan
->i2c_adapter
);
307 if (chan
->fe
== NULL
) {
308 printk(KERN_ERR DEVICE_NAME
": No LGDT330x found!\n");
312 dvb_attach(mt2131_attach
, chan
->fe
, &chan
->i2c_adapter
,
313 &m780_tunerconfig
, 0);
315 return (chan
->fe
) ? 0 : -ENODEV
;
318 static int demod_attach_drxd(struct ngene_channel
*chan
)
320 struct drxd_config
*feconf
;
322 feconf
= chan
->dev
->card_info
->fe_config
[chan
->number
];
324 chan
->fe
= dvb_attach(drxd_attach
, feconf
, chan
,
325 &chan
->i2c_adapter
, &chan
->dev
->pci_dev
->dev
);
327 pr_err("No DRXD found!\n");
333 static int tuner_attach_dtt7520x(struct ngene_channel
*chan
)
335 struct drxd_config
*feconf
;
337 feconf
= chan
->dev
->card_info
->fe_config
[chan
->number
];
339 if (!dvb_attach(dvb_pll_attach
, chan
->fe
, feconf
->pll_address
,
342 pr_err("No pll(%d) found!\n", feconf
->pll_type
);
348 /****************************************************************************/
349 /* EEPROM TAGS **************************************************************/
350 /****************************************************************************/
352 #define MICNG_EE_START 0x0100
353 #define MICNG_EE_END 0x0FF0
355 #define MICNG_EETAG_END0 0x0000
356 #define MICNG_EETAG_END1 0xFFFF
358 /* 0x0001 - 0x000F reserved for housekeeping */
359 /* 0xFFFF - 0xFFFE reserved for housekeeping */
361 /* Micronas assigned tags
362 EEProm tags for hardware support */
364 #define MICNG_EETAG_DRXD1_OSCDEVIATION 0x1000 /* 2 Bytes data */
365 #define MICNG_EETAG_DRXD2_OSCDEVIATION 0x1001 /* 2 Bytes data */
367 #define MICNG_EETAG_MT2060_1_1STIF 0x1100 /* 2 Bytes data */
368 #define MICNG_EETAG_MT2060_2_1STIF 0x1101 /* 2 Bytes data */
370 /* Tag range for OEMs */
372 #define MICNG_EETAG_OEM_FIRST 0xC000
373 #define MICNG_EETAG_OEM_LAST 0xFFEF
375 static int i2c_write_eeprom(struct i2c_adapter
*adapter
,
376 u8 adr
, u16 reg
, u8 data
)
378 u8 m
[3] = {(reg
>> 8), (reg
& 0xff), data
};
379 struct i2c_msg msg
= {.addr
= adr
, .flags
= 0, .buf
= m
,
382 if (i2c_transfer(adapter
, &msg
, 1) != 1) {
383 pr_err(DEVICE_NAME
": Error writing EEPROM!\n");
389 static int i2c_read_eeprom(struct i2c_adapter
*adapter
,
390 u8 adr
, u16 reg
, u8
*data
, int len
)
392 u8 msg
[2] = {(reg
>> 8), (reg
& 0xff)};
393 struct i2c_msg msgs
[2] = {{.addr
= adr
, .flags
= 0,
394 .buf
= msg
, .len
= 2 },
395 {.addr
= adr
, .flags
= I2C_M_RD
,
396 .buf
= data
, .len
= len
} };
398 if (i2c_transfer(adapter
, msgs
, 2) != 2) {
399 pr_err(DEVICE_NAME
": Error reading EEPROM\n");
405 static int ReadEEProm(struct i2c_adapter
*adapter
,
406 u16 Tag
, u32 MaxLen
, u8
*data
, u32
*pLength
)
409 u16 Addr
= MICNG_EE_START
, Length
, tag
= 0;
412 while (Addr
+ sizeof(u16
) + 1 < MICNG_EE_END
) {
413 if (i2c_read_eeprom(adapter
, 0x50, Addr
, EETag
, sizeof(EETag
)))
415 tag
= (EETag
[0] << 8) | EETag
[1];
416 if (tag
== MICNG_EETAG_END0
|| tag
== MICNG_EETAG_END1
)
420 Addr
+= sizeof(u16
) + 1 + EETag
[2];
422 if (Addr
+ sizeof(u16
) + 1 + EETag
[2] > MICNG_EE_END
) {
424 ": Reached EOEE @ Tag = %04x Length = %3d\n",
430 Length
= (u16
) MaxLen
;
432 Addr
+= sizeof(u16
) + 1;
433 status
= i2c_read_eeprom(adapter
, 0x50, Addr
, data
, Length
);
437 if (Length
< EETag
[2])
438 status
= STATUS_BUFFER_OVERFLOW
;
445 static int WriteEEProm(struct i2c_adapter
*adapter
,
446 u16 Tag
, u32 Length
, u8
*data
)
449 u16 Addr
= MICNG_EE_START
;
454 while (Addr
+ sizeof(u16
) + 1 < MICNG_EE_END
) {
455 if (i2c_read_eeprom(adapter
, 0x50, Addr
, EETag
, sizeof(EETag
)))
457 tag
= (EETag
[0] << 8) | EETag
[1];
458 if (tag
== MICNG_EETAG_END0
|| tag
== MICNG_EETAG_END1
)
462 Addr
+= sizeof(u16
) + 1 + EETag
[2];
464 if (Addr
+ sizeof(u16
) + 1 + EETag
[2] > MICNG_EE_END
) {
466 ": Reached EOEE @ Tag = %04x Length = %3d\n",
471 if (Length
> EETag
[2])
473 /* Note: We write the data one byte at a time to avoid
474 issues with page sizes. (which are different for
475 each manufacture and eeprom size)
477 Addr
+= sizeof(u16
) + 1;
478 for (i
= 0; i
< Length
; i
++, Addr
++) {
479 status
= i2c_write_eeprom(adapter
, 0x50, Addr
, data
[i
]);
484 /* Poll for finishing write cycle */
490 status
= i2c_read_eeprom(adapter
, 0x50, Addr
, &Tmp
, 1);
495 "eeprom write error\n");
500 ": Timeout polling eeprom\n");
507 static int eeprom_read_ushort(struct i2c_adapter
*adapter
, u16 tag
, u16
*data
)
513 stat
= ReadEEProm(adapter
, tag
, 2, buf
, &len
);
519 *data
= (buf
[0] << 8) | buf
[1];
523 static int eeprom_write_ushort(struct i2c_adapter
*adapter
, u16 tag
, u16 data
)
529 buf
[1] = data
& 0xff;
530 stat
= WriteEEProm(adapter
, tag
, 2, buf
);
536 static s16
osc_deviation(void *priv
, s16 deviation
, int flag
)
538 struct ngene_channel
*chan
= priv
;
539 struct i2c_adapter
*adap
= &chan
->i2c_adapter
;
543 data
= (u16
) deviation
;
544 pr_info(DEVICE_NAME
": write deviation %d\n",
546 eeprom_write_ushort(adap
, 0x1000 + chan
->number
, data
);
548 if (eeprom_read_ushort(adap
, 0x1000 + chan
->number
, &data
))
550 pr_info(DEVICE_NAME
": read deviation %d\n",
557 /****************************************************************************/
558 /* Switch control (I2C gates, etc.) *****************************************/
559 /****************************************************************************/
562 static struct stv090x_config fe_cineS2
= {
564 .demod_mode
= STV090x_DUAL
,
565 .clk_mode
= STV090x_CLK_EXT
,
570 .ts1_mode
= STV090x_TSMODE_SERIAL_PUNCTURED
,
571 .ts2_mode
= STV090x_TSMODE_SERIAL_PUNCTURED
,
573 .repeater_level
= STV090x_RPTLEVEL_16
,
575 .adc1_range
= STV090x_ADC_1Vpp
,
576 .adc2_range
= STV090x_ADC_1Vpp
,
578 .diseqc_envelope_mode
= true,
580 .tuner_i2c_lock
= cineS2_tuner_i2c_lock
,
583 static struct stv090x_config fe_cineS2_2
= {
585 .demod_mode
= STV090x_DUAL
,
586 .clk_mode
= STV090x_CLK_EXT
,
591 .ts1_mode
= STV090x_TSMODE_SERIAL_PUNCTURED
,
592 .ts2_mode
= STV090x_TSMODE_SERIAL_PUNCTURED
,
594 .repeater_level
= STV090x_RPTLEVEL_16
,
596 .adc1_range
= STV090x_ADC_1Vpp
,
597 .adc2_range
= STV090x_ADC_1Vpp
,
599 .diseqc_envelope_mode
= true,
601 .tuner_i2c_lock
= cineS2_tuner_i2c_lock
,
604 static struct stv6110x_config tuner_cineS2_0
= {
610 static struct stv6110x_config tuner_cineS2_1
= {
616 static const struct ngene_info ngene_info_cineS2
= {
617 .type
= NGENE_SIDEWINDER
,
618 .name
= "Linux4Media cineS2 DVB-S2 Twin Tuner",
619 .io_type
= {NGENE_IO_TSIN
, NGENE_IO_TSIN
},
620 .demod_attach
= {demod_attach_stv0900
, demod_attach_stv0900
},
621 .tuner_attach
= {tuner_attach_stv6110
, tuner_attach_stv6110
},
622 .fe_config
= {&fe_cineS2
, &fe_cineS2
},
623 .tuner_config
= {&tuner_cineS2_0
, &tuner_cineS2_1
},
627 .msi_supported
= true,
630 static const struct ngene_info ngene_info_satixS2
= {
631 .type
= NGENE_SIDEWINDER
,
632 .name
= "Mystique SaTiX-S2 Dual",
633 .io_type
= {NGENE_IO_TSIN
, NGENE_IO_TSIN
},
634 .demod_attach
= {demod_attach_stv0900
, demod_attach_stv0900
},
635 .tuner_attach
= {tuner_attach_stv6110
, tuner_attach_stv6110
},
636 .fe_config
= {&fe_cineS2
, &fe_cineS2
},
637 .tuner_config
= {&tuner_cineS2_0
, &tuner_cineS2_1
},
641 .msi_supported
= true,
644 static const struct ngene_info ngene_info_satixS2v2
= {
645 .type
= NGENE_SIDEWINDER
,
646 .name
= "Mystique SaTiX-S2 Dual (v2)",
647 .io_type
= {NGENE_IO_TSIN
, NGENE_IO_TSIN
, NGENE_IO_TSIN
, NGENE_IO_TSIN
,
649 .demod_attach
= {demod_attach_stv0900
, demod_attach_stv0900
, cineS2_probe
, cineS2_probe
},
650 .tuner_attach
= {tuner_attach_stv6110
, tuner_attach_stv6110
, tuner_attach_probe
, tuner_attach_probe
},
651 .fe_config
= {&fe_cineS2
, &fe_cineS2
, &fe_cineS2_2
, &fe_cineS2_2
},
652 .tuner_config
= {&tuner_cineS2_0
, &tuner_cineS2_1
, &tuner_cineS2_0
, &tuner_cineS2_1
},
653 .lnb
= {0x0a, 0x08, 0x0b, 0x09},
656 .msi_supported
= true,
659 static const struct ngene_info ngene_info_cineS2v5
= {
660 .type
= NGENE_SIDEWINDER
,
661 .name
= "Linux4Media cineS2 DVB-S2 Twin Tuner (v5)",
662 .io_type
= {NGENE_IO_TSIN
, NGENE_IO_TSIN
, NGENE_IO_TSIN
, NGENE_IO_TSIN
,
664 .demod_attach
= {demod_attach_stv0900
, demod_attach_stv0900
, cineS2_probe
, cineS2_probe
},
665 .tuner_attach
= {tuner_attach_stv6110
, tuner_attach_stv6110
, tuner_attach_probe
, tuner_attach_probe
},
666 .fe_config
= {&fe_cineS2
, &fe_cineS2
, &fe_cineS2_2
, &fe_cineS2_2
},
667 .tuner_config
= {&tuner_cineS2_0
, &tuner_cineS2_1
, &tuner_cineS2_0
, &tuner_cineS2_1
},
668 .lnb
= {0x0a, 0x08, 0x0b, 0x09},
671 .msi_supported
= true,
675 static const struct ngene_info ngene_info_duoFlex
= {
676 .type
= NGENE_SIDEWINDER
,
677 .name
= "Digital Devices DuoFlex PCIe or miniPCIe",
678 .io_type
= {NGENE_IO_TSIN
, NGENE_IO_TSIN
, NGENE_IO_TSIN
, NGENE_IO_TSIN
,
680 .demod_attach
= {cineS2_probe
, cineS2_probe
, cineS2_probe
, cineS2_probe
},
681 .tuner_attach
= {tuner_attach_probe
, tuner_attach_probe
, tuner_attach_probe
, tuner_attach_probe
},
682 .fe_config
= {&fe_cineS2
, &fe_cineS2
, &fe_cineS2_2
, &fe_cineS2_2
},
683 .tuner_config
= {&tuner_cineS2_0
, &tuner_cineS2_1
, &tuner_cineS2_0
, &tuner_cineS2_1
},
684 .lnb
= {0x0a, 0x08, 0x0b, 0x09},
687 .msi_supported
= true,
690 static const struct ngene_info ngene_info_m780
= {
692 .name
= "Aver M780 ATSC/QAM-B",
694 /* Channel 0 is analog, which is currently unsupported */
695 .io_type
= { NGENE_IO_NONE
, NGENE_IO_TSIN
},
696 .demod_attach
= { NULL
, demod_attach_lg330x
},
698 /* Ensure these are NULL else the frame will call them (as funcs) */
699 .tuner_attach
= { NULL
, NULL
, NULL
, NULL
},
700 .fe_config
= { NULL
, &aver_m780
},
703 /* A custom electrical interface config for the demod to bridge */
708 static struct drxd_config fe_terratec_dvbt_0
= {
710 .demod_address
= 0x70,
711 .demod_revision
= 0xa2,
712 .demoda_address
= 0x00,
714 .pll_type
= DVB_PLL_THOMSON_DTT7520X
,
716 .osc_deviation
= osc_deviation
,
719 static struct drxd_config fe_terratec_dvbt_1
= {
721 .demod_address
= 0x71,
722 .demod_revision
= 0xa2,
723 .demoda_address
= 0x00,
725 .pll_type
= DVB_PLL_THOMSON_DTT7520X
,
727 .osc_deviation
= osc_deviation
,
730 static const struct ngene_info ngene_info_terratec
= {
731 .type
= NGENE_TERRATEC
,
732 .name
= "Terratec Integra/Cinergy2400i Dual DVB-T",
733 .io_type
= {NGENE_IO_TSIN
, NGENE_IO_TSIN
},
734 .demod_attach
= {demod_attach_drxd
, demod_attach_drxd
},
735 .tuner_attach
= {tuner_attach_dtt7520x
, tuner_attach_dtt7520x
},
736 .fe_config
= {&fe_terratec_dvbt_0
, &fe_terratec_dvbt_1
},
740 /****************************************************************************/
744 /****************************************************************************/
745 /* PCI Subsystem ID *********************************************************/
746 /****************************************************************************/
748 #define NGENE_ID(_subvend, _subdev, _driverdata) { \
749 .vendor = NGENE_VID, .device = NGENE_PID, \
750 .subvendor = _subvend, .subdevice = _subdev, \
751 .driver_data = (unsigned long) &_driverdata }
753 /****************************************************************************/
755 static const struct pci_device_id ngene_id_tbl
[] = {
756 NGENE_ID(0x18c3, 0xabc3, ngene_info_cineS2
),
757 NGENE_ID(0x18c3, 0xabc4, ngene_info_cineS2
),
758 NGENE_ID(0x18c3, 0xdb01, ngene_info_satixS2
),
759 NGENE_ID(0x18c3, 0xdb02, ngene_info_satixS2v2
),
760 NGENE_ID(0x18c3, 0xdd00, ngene_info_cineS2v5
),
761 NGENE_ID(0x18c3, 0xdd10, ngene_info_duoFlex
),
762 NGENE_ID(0x18c3, 0xdd20, ngene_info_duoFlex
),
763 NGENE_ID(0x1461, 0x062e, ngene_info_m780
),
764 NGENE_ID(0x153b, 0x1167, ngene_info_terratec
),
767 MODULE_DEVICE_TABLE(pci
, ngene_id_tbl
);
769 /****************************************************************************/
770 /* Init/Exit ****************************************************************/
771 /****************************************************************************/
773 static pci_ers_result_t
ngene_error_detected(struct pci_dev
*dev
,
774 enum pci_channel_state state
)
776 printk(KERN_ERR DEVICE_NAME
": PCI error\n");
777 if (state
== pci_channel_io_perm_failure
)
778 return PCI_ERS_RESULT_DISCONNECT
;
779 if (state
== pci_channel_io_frozen
)
780 return PCI_ERS_RESULT_NEED_RESET
;
781 return PCI_ERS_RESULT_CAN_RECOVER
;
784 static pci_ers_result_t
ngene_link_reset(struct pci_dev
*dev
)
786 printk(KERN_INFO DEVICE_NAME
": link reset\n");
790 static pci_ers_result_t
ngene_slot_reset(struct pci_dev
*dev
)
792 printk(KERN_INFO DEVICE_NAME
": slot reset\n");
796 static void ngene_resume(struct pci_dev
*dev
)
798 printk(KERN_INFO DEVICE_NAME
": resume\n");
801 static const struct pci_error_handlers ngene_errors
= {
802 .error_detected
= ngene_error_detected
,
803 .link_reset
= ngene_link_reset
,
804 .slot_reset
= ngene_slot_reset
,
805 .resume
= ngene_resume
,
808 static struct pci_driver ngene_pci_driver
= {
810 .id_table
= ngene_id_tbl
,
811 .probe
= ngene_probe
,
812 .remove
= ngene_remove
,
813 .err_handler
= &ngene_errors
,
814 .shutdown
= ngene_shutdown
,
817 static __init
int module_init_ngene(void)
820 "nGene PCIE bridge driver, Copyright (C) 2005-2007 Micronas\n");
821 return pci_register_driver(&ngene_pci_driver
);
824 static __exit
void module_exit_ngene(void)
826 pci_unregister_driver(&ngene_pci_driver
);
829 module_init(module_init_ngene
);
830 module_exit(module_exit_ngene
);
832 MODULE_DESCRIPTION("nGene");
833 MODULE_AUTHOR("Micronas, Ralph Metzler, Manfred Voelkel");
834 MODULE_LICENSE("GPL");