2010-03-13 23:53:58 +03:00
/*
* ngene - cards . c : nGene PCIe bridge driver - card specific info
*
* Copyright ( C ) 2005 - 2007 Micronas
*
* Copyright ( C ) 2008 - 2009 Ralph Metzler < rjkm @ metzlerbros . de >
* Modifications for new nGene firmware ,
* support for EEPROM - copying ,
* support for new dual DVB - S2 card prototype
*
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public License
* version 2 only , as published by the Free Software Foundation .
*
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
2016-10-28 14:31:20 +03:00
* To obtain the license , point your browser to
* http : //www.gnu.org/copyleft/gpl.html
2010-03-13 23:53:58 +03:00
*/
# include <linux/module.h>
# include <linux/init.h>
# include <linux/pci.h>
# include <linux/pci_ids.h>
# include "ngene.h"
/* demods/tuners */
# include "stv6110x.h"
# include "stv090x.h"
# include "lnbh24.h"
# include "lgdt330x.h"
# include "mt2131.h"
2011-07-03 20:56:28 +04:00
# include "tda18271c2dd.h"
2011-07-03 20:55:06 +04:00
# include "drxk.h"
2012-07-31 22:34:29 +04:00
# include "drxd.h"
# include "dvb-pll.h"
2010-03-13 23:53:58 +03:00
/****************************************************************************/
/* Demod/tuner attachment ***************************************************/
/****************************************************************************/
static int tuner_attach_stv6110 ( struct ngene_channel * chan )
{
2011-01-10 12:36:13 +03:00
struct i2c_adapter * i2c ;
2010-03-13 23:53:58 +03:00
struct stv090x_config * feconf = ( struct stv090x_config * )
chan - > dev - > card_info - > fe_config [ chan - > number ] ;
struct stv6110x_config * tunerconf = ( struct stv6110x_config * )
chan - > dev - > card_info - > tuner_config [ chan - > number ] ;
2015-12-06 18:34:26 +03:00
const struct stv6110x_devctl * ctl ;
2010-03-13 23:53:58 +03:00
2011-01-10 12:36:13 +03:00
/* tuner 1+2: i2c adapter #0, tuner 3+4: i2c adapter #1 */
if ( chan - > number < 2 )
i2c = & chan - > dev - > channel [ 0 ] . i2c_adapter ;
else
i2c = & chan - > dev - > channel [ 1 ] . i2c_adapter ;
ctl = dvb_attach ( stv6110x_attach , chan - > fe , tunerconf , i2c ) ;
2010-03-13 23:53:58 +03:00
if ( ctl = = NULL ) {
printk ( KERN_ERR DEVICE_NAME " : No STV6110X found! \n " ) ;
return - ENODEV ;
}
feconf - > tuner_init = ctl - > tuner_init ;
2011-01-10 12:36:13 +03:00
feconf - > tuner_sleep = ctl - > tuner_sleep ;
2010-03-13 23:53:58 +03:00
feconf - > tuner_set_mode = ctl - > tuner_set_mode ;
feconf - > tuner_set_frequency = ctl - > tuner_set_frequency ;
feconf - > tuner_get_frequency = ctl - > tuner_get_frequency ;
feconf - > tuner_set_bandwidth = ctl - > tuner_set_bandwidth ;
feconf - > tuner_get_bandwidth = ctl - > tuner_get_bandwidth ;
feconf - > tuner_set_bbgain = ctl - > tuner_set_bbgain ;
feconf - > tuner_get_bbgain = ctl - > tuner_get_bbgain ;
feconf - > tuner_set_refclk = ctl - > tuner_set_refclk ;
feconf - > tuner_get_status = ctl - > tuner_get_status ;
return 0 ;
}
2011-07-03 20:55:06 +04:00
static int drxk_gate_ctrl ( struct dvb_frontend * fe , int enable )
{
struct ngene_channel * chan = fe - > sec_priv ;
int status ;
if ( enable ) {
down ( & chan - > dev - > pll_mutex ) ;
status = chan - > gate_ctrl ( fe , 1 ) ;
} else {
status = chan - > gate_ctrl ( fe , 0 ) ;
up ( & chan - > dev - > pll_mutex ) ;
}
return status ;
}
static int tuner_attach_tda18271 ( struct ngene_channel * chan )
{
struct i2c_adapter * i2c ;
struct dvb_frontend * fe ;
i2c = & chan - > dev - > channel [ 0 ] . i2c_adapter ;
if ( chan - > fe - > ops . i2c_gate_ctrl )
chan - > fe - > ops . i2c_gate_ctrl ( chan - > fe , 1 ) ;
fe = dvb_attach ( tda18271c2dd_attach , chan - > fe , i2c , 0x60 ) ;
if ( chan - > fe - > ops . i2c_gate_ctrl )
chan - > fe - > ops . i2c_gate_ctrl ( chan - > fe , 0 ) ;
if ( ! fe ) {
2011-07-03 20:56:28 +04:00
printk ( KERN_ERR " No TDA18271 found! \n " ) ;
2011-07-03 20:55:06 +04:00
return - ENODEV ;
}
return 0 ;
}
static int tuner_attach_probe ( struct ngene_channel * chan )
{
if ( chan - > demod_type = = 0 )
return tuner_attach_stv6110 ( chan ) ;
if ( chan - > demod_type = = 1 )
return tuner_attach_tda18271 ( chan ) ;
return - EINVAL ;
}
2010-03-13 23:53:58 +03:00
static int demod_attach_stv0900 ( struct ngene_channel * chan )
{
2011-01-10 12:36:13 +03:00
struct i2c_adapter * i2c ;
2010-03-13 23:53:58 +03:00
struct stv090x_config * feconf = ( struct stv090x_config * )
chan - > dev - > card_info - > fe_config [ chan - > number ] ;
2011-01-10 12:36:13 +03:00
/* tuner 1+2: i2c adapter #0, tuner 3+4: i2c adapter #1 */
/* Note: Both adapters share the same i2c bus, but the demod */
/* driver requires that each demod has its own i2c adapter */
if ( chan - > number < 2 )
i2c = & chan - > dev - > channel [ 0 ] . i2c_adapter ;
else
i2c = & chan - > dev - > channel [ 1 ] . i2c_adapter ;
chan - > fe = dvb_attach ( stv090x_attach , feconf , i2c ,
( chan - > number & 1 ) = = 0 ? STV090x_DEMODULATOR_0
: STV090x_DEMODULATOR_1 ) ;
2010-03-13 23:53:58 +03:00
if ( chan - > fe = = NULL ) {
printk ( KERN_ERR DEVICE_NAME " : No STV0900 found! \n " ) ;
return - ENODEV ;
}
2011-01-10 12:36:13 +03:00
/* store channel info */
if ( feconf - > tuner_i2c_lock )
chan - > fe - > analog_demod_priv = chan ;
if ( ! dvb_attach ( lnbh24_attach , chan - > fe , i2c , 0 ,
2010-03-13 23:53:58 +03:00
0 , chan - > dev - > card_info - > lnb [ chan - > number ] ) ) {
printk ( KERN_ERR DEVICE_NAME " : No LNBH24 found! \n " ) ;
dvb_frontend_detach ( chan - > fe ) ;
2011-01-10 12:36:14 +03:00
chan - > fe = NULL ;
2010-03-13 23:53:58 +03:00
return - ENODEV ;
}
return 0 ;
}
2011-01-10 12:36:13 +03:00
static void cineS2_tuner_i2c_lock ( struct dvb_frontend * fe , int lock )
{
struct ngene_channel * chan = fe - > analog_demod_priv ;
if ( lock )
down ( & chan - > dev - > pll_mutex ) ;
else
up ( & chan - > dev - > pll_mutex ) ;
}
2011-07-03 20:55:06 +04:00
static int i2c_read ( struct i2c_adapter * adapter , u8 adr , u8 * val )
{
struct i2c_msg msgs [ 1 ] = { { . addr = adr , . flags = I2C_M_RD ,
2011-07-03 20:56:28 +04:00
. buf = val , . len = 1 } } ;
2011-07-03 20:55:06 +04:00
return ( i2c_transfer ( adapter , msgs , 1 ) = = 1 ) ? 0 : - 1 ;
}
static int i2c_read_reg16 ( struct i2c_adapter * adapter , u8 adr ,
u16 reg , u8 * val )
{
u8 msg [ 2 ] = { reg > > 8 , reg & 0xff } ;
struct i2c_msg msgs [ 2 ] = { { . addr = adr , . flags = 0 ,
. buf = msg , . len = 2 } ,
{ . addr = adr , . flags = I2C_M_RD ,
2011-07-03 20:56:28 +04:00
. buf = val , . len = 1 } } ;
2011-07-03 20:55:06 +04:00
return ( i2c_transfer ( adapter , msgs , 2 ) = = 2 ) ? 0 : - 1 ;
}
static int port_has_stv0900 ( struct i2c_adapter * i2c , int port )
{
u8 val ;
if ( i2c_read_reg16 ( i2c , 0x68 + port / 2 , 0xf100 , & val ) < 0 )
return 0 ;
return 1 ;
}
static int port_has_drxk ( struct i2c_adapter * i2c , int port )
{
u8 val ;
if ( i2c_read ( i2c , 0x29 + port , & val ) < 0 )
return 0 ;
return 1 ;
}
static int demod_attach_drxk ( struct ngene_channel * chan ,
struct i2c_adapter * i2c )
{
2011-07-09 19:36:58 +04:00
struct drxk_config config ;
memset ( & config , 0 , sizeof ( config ) ) ;
2011-07-24 16:25:39 +04:00
config . microcode_name = " drxk_a3.mc " ;
2012-07-05 00:36:55 +04:00
config . qam_demod_parameter_count = 4 ;
2011-07-09 19:36:58 +04:00
config . adr = 0x29 + ( chan - > number ^ 2 ) ;
2012-01-05 14:07:32 +04:00
chan - > fe = dvb_attach ( drxk_attach , & config , i2c ) ;
2011-07-03 20:55:06 +04:00
if ( ! chan - > fe ) {
2011-07-03 20:56:28 +04:00
printk ( KERN_ERR " No DRXK found! \n " ) ;
2011-07-03 20:55:06 +04:00
return - ENODEV ;
}
2011-07-03 20:56:28 +04:00
chan - > fe - > sec_priv = chan ;
chan - > gate_ctrl = chan - > fe - > ops . i2c_gate_ctrl ;
chan - > fe - > ops . i2c_gate_ctrl = drxk_gate_ctrl ;
2011-07-03 20:55:06 +04:00
return 0 ;
}
2011-01-10 12:36:13 +03:00
static int cineS2_probe ( struct ngene_channel * chan )
{
struct i2c_adapter * i2c ;
struct stv090x_config * fe_conf ;
u8 buf [ 3 ] ;
struct i2c_msg i2c_msg = { . flags = 0 , . buf = buf } ;
int rc ;
/* tuner 1+2: i2c adapter #0, tuner 3+4: i2c adapter #1 */
if ( chan - > number < 2 )
i2c = & chan - > dev - > channel [ 0 ] . i2c_adapter ;
else
i2c = & chan - > dev - > channel [ 1 ] . i2c_adapter ;
2011-07-03 20:55:06 +04:00
if ( port_has_stv0900 ( i2c , chan - > number ) ) {
2011-07-03 20:56:28 +04:00
chan - > demod_type = 0 ;
2011-07-03 20:55:06 +04:00
fe_conf = chan - > dev - > card_info - > fe_config [ chan - > number ] ;
/* demod found, attach it */
rc = demod_attach_stv0900 ( chan ) ;
if ( rc < 0 | | chan - > number < 2 )
return rc ;
2011-07-03 20:56:28 +04:00
2011-07-03 20:55:06 +04:00
/* demod #2: reprogram outputs DPN1 & DPN2 */
i2c_msg . addr = fe_conf - > address ;
i2c_msg . len = 3 ;
buf [ 0 ] = 0xf1 ;
2011-07-03 20:56:28 +04:00
switch ( chan - > number ) {
2011-07-03 20:55:06 +04:00
case 2 :
buf [ 1 ] = 0x5c ;
buf [ 2 ] = 0xc2 ;
break ;
case 3 :
buf [ 1 ] = 0x61 ;
buf [ 2 ] = 0xcc ;
break ;
default :
return - ENODEV ;
}
rc = i2c_transfer ( i2c , & i2c_msg , 1 ) ;
if ( rc ! = 1 ) {
printk ( KERN_ERR DEVICE_NAME " : could not setup DPNx \n " ) ;
return - EIO ;
}
} else if ( port_has_drxk ( i2c , chan - > number ^ 2 ) ) {
2011-07-03 20:56:28 +04:00
chan - > demod_type = 1 ;
2011-07-03 20:55:06 +04:00
demod_attach_drxk ( chan , i2c ) ;
} else {
2011-07-03 20:56:28 +04:00
printk ( KERN_ERR " No demod found on chan %d \n " , chan - > number ) ;
2011-07-03 20:57:26 +04:00
return - ENODEV ;
2011-01-10 12:36:13 +03:00
}
return 0 ;
}
2010-03-13 23:53:58 +03:00
static struct lgdt330x_config aver_m780 = {
. demod_address = 0xb2 > > 1 ,
. demod_chip = LGDT3303 ,
. serial_mpeg = 0x00 , /* PARALLEL */
. clock_polarity_flip = 1 ,
} ;
static struct mt2131_config m780_tunerconfig = {
0xc0 > > 1
} ;
/* A single func to attach the demo and tuner, rather than
* use two sep funcs like the current design mandates .
*/
static int demod_attach_lg330x ( struct ngene_channel * chan )
{
chan - > fe = dvb_attach ( lgdt330x_attach , & aver_m780 , & chan - > i2c_adapter ) ;
if ( chan - > fe = = NULL ) {
printk ( KERN_ERR DEVICE_NAME " : No LGDT330x found! \n " ) ;
return - ENODEV ;
}
dvb_attach ( mt2131_attach , chan - > fe , & chan - > i2c_adapter ,
& m780_tunerconfig , 0 ) ;
return ( chan - > fe ) ? 0 : - ENODEV ;
}
2012-07-31 22:34:29 +04:00
static int demod_attach_drxd ( struct ngene_channel * chan )
{
struct drxd_config * feconf ;
feconf = chan - > dev - > card_info - > fe_config [ chan - > number ] ;
chan - > fe = dvb_attach ( drxd_attach , feconf , chan ,
& chan - > i2c_adapter , & chan - > dev - > pci_dev - > dev ) ;
if ( ! chan - > fe ) {
pr_err ( " No DRXD found! \n " ) ;
return - ENODEV ;
}
2012-12-16 02:11:43 +04:00
return 0 ;
}
static int tuner_attach_dtt7520x ( struct ngene_channel * chan )
{
struct drxd_config * feconf ;
feconf = chan - > dev - > card_info - > fe_config [ chan - > number ] ;
2012-07-31 22:34:29 +04:00
if ( ! dvb_attach ( dvb_pll_attach , chan - > fe , feconf - > pll_address ,
& chan - > i2c_adapter ,
feconf - > pll_type ) ) {
pr_err ( " No pll(%d) found! \n " , feconf - > pll_type ) ;
return - ENODEV ;
}
return 0 ;
}
/****************************************************************************/
/* EEPROM TAGS **************************************************************/
/****************************************************************************/
# define MICNG_EE_START 0x0100
# define MICNG_EE_END 0x0FF0
# define MICNG_EETAG_END0 0x0000
# define MICNG_EETAG_END1 0xFFFF
/* 0x0001 - 0x000F reserved for housekeeping */
/* 0xFFFF - 0xFFFE reserved for housekeeping */
/* Micronas assigned tags
EEProm tags for hardware support */
# define MICNG_EETAG_DRXD1_OSCDEVIATION 0x1000 /* 2 Bytes data */
# define MICNG_EETAG_DRXD2_OSCDEVIATION 0x1001 /* 2 Bytes data */
# define MICNG_EETAG_MT2060_1_1STIF 0x1100 /* 2 Bytes data */
# define MICNG_EETAG_MT2060_2_1STIF 0x1101 /* 2 Bytes data */
/* Tag range for OEMs */
# define MICNG_EETAG_OEM_FIRST 0xC000
# define MICNG_EETAG_OEM_LAST 0xFFEF
static int i2c_write_eeprom ( struct i2c_adapter * adapter ,
u8 adr , u16 reg , u8 data )
{
u8 m [ 3 ] = { ( reg > > 8 ) , ( reg & 0xff ) , data } ;
struct i2c_msg msg = { . addr = adr , . flags = 0 , . buf = m ,
. len = sizeof ( m ) } ;
if ( i2c_transfer ( adapter , & msg , 1 ) ! = 1 ) {
pr_err ( DEVICE_NAME " : Error writing EEPROM! \n " ) ;
return - EIO ;
}
return 0 ;
}
static int i2c_read_eeprom ( struct i2c_adapter * adapter ,
u8 adr , u16 reg , u8 * data , int len )
{
u8 msg [ 2 ] = { ( reg > > 8 ) , ( reg & 0xff ) } ;
struct i2c_msg msgs [ 2 ] = { { . addr = adr , . flags = 0 ,
. buf = msg , . len = 2 } ,
{ . addr = adr , . flags = I2C_M_RD ,
. buf = data , . len = len } } ;
if ( i2c_transfer ( adapter , msgs , 2 ) ! = 2 ) {
pr_err ( DEVICE_NAME " : Error reading EEPROM \n " ) ;
return - EIO ;
}
return 0 ;
}
static int ReadEEProm ( struct i2c_adapter * adapter ,
u16 Tag , u32 MaxLen , u8 * data , u32 * pLength )
{
int status = 0 ;
u16 Addr = MICNG_EE_START , Length , tag = 0 ;
u8 EETag [ 3 ] ;
while ( Addr + sizeof ( u16 ) + 1 < MICNG_EE_END ) {
if ( i2c_read_eeprom ( adapter , 0x50 , Addr , EETag , sizeof ( EETag ) ) )
return - 1 ;
tag = ( EETag [ 0 ] < < 8 ) | EETag [ 1 ] ;
if ( tag = = MICNG_EETAG_END0 | | tag = = MICNG_EETAG_END1 )
return - 1 ;
if ( tag = = Tag )
break ;
Addr + = sizeof ( u16 ) + 1 + EETag [ 2 ] ;
}
if ( Addr + sizeof ( u16 ) + 1 + EETag [ 2 ] > MICNG_EE_END ) {
pr_err ( DEVICE_NAME
" : Reached EOEE @ Tag = %04x Length = %3d \n " ,
tag , EETag [ 2 ] ) ;
return - 1 ;
}
Length = EETag [ 2 ] ;
if ( Length > MaxLen )
Length = ( u16 ) MaxLen ;
if ( Length > 0 ) {
Addr + = sizeof ( u16 ) + 1 ;
status = i2c_read_eeprom ( adapter , 0x50 , Addr , data , Length ) ;
if ( ! status ) {
* pLength = EETag [ 2 ] ;
2012-10-27 23:17:39 +04:00
#if 0
2012-07-31 22:34:29 +04:00
if ( Length < EETag [ 2 ] )
2012-10-27 23:17:39 +04:00
status = STATUS_BUFFER_OVERFLOW ;
# endif
2012-07-31 22:34:29 +04:00
}
}
return status ;
}
static int WriteEEProm ( struct i2c_adapter * adapter ,
u16 Tag , u32 Length , u8 * data )
{
int status = 0 ;
u16 Addr = MICNG_EE_START ;
u8 EETag [ 3 ] ;
u16 tag = 0 ;
int retry , i ;
while ( Addr + sizeof ( u16 ) + 1 < MICNG_EE_END ) {
if ( i2c_read_eeprom ( adapter , 0x50 , Addr , EETag , sizeof ( EETag ) ) )
return - 1 ;
tag = ( EETag [ 0 ] < < 8 ) | EETag [ 1 ] ;
if ( tag = = MICNG_EETAG_END0 | | tag = = MICNG_EETAG_END1 )
return - 1 ;
if ( tag = = Tag )
break ;
Addr + = sizeof ( u16 ) + 1 + EETag [ 2 ] ;
}
if ( Addr + sizeof ( u16 ) + 1 + EETag [ 2 ] > MICNG_EE_END ) {
pr_err ( DEVICE_NAME
" : Reached EOEE @ Tag = %04x Length = %3d \n " ,
tag , EETag [ 2 ] ) ;
return - 1 ;
}
if ( Length > EETag [ 2 ] )
return - EINVAL ;
/* Note: We write the data one byte at a time to avoid
issues with page sizes . ( which are different for
each manufacture and eeprom size )
*/
Addr + = sizeof ( u16 ) + 1 ;
for ( i = 0 ; i < Length ; i + + , Addr + + ) {
status = i2c_write_eeprom ( adapter , 0x50 , Addr , data [ i ] ) ;
if ( status )
break ;
/* Poll for finishing write cycle */
retry = 10 ;
while ( retry ) {
u8 Tmp ;
msleep ( 50 ) ;
status = i2c_read_eeprom ( adapter , 0x50 , Addr , & Tmp , 1 ) ;
if ( status )
break ;
if ( Tmp ! = data [ i ] )
pr_err ( DEVICE_NAME
" eeprom write error \n " ) ;
retry - = 1 ;
}
if ( status ) {
pr_err ( DEVICE_NAME
" : Timeout polling eeprom \n " ) ;
break ;
}
}
return status ;
}
static int eeprom_read_ushort ( struct i2c_adapter * adapter , u16 tag , u16 * data )
{
int stat ;
u8 buf [ 2 ] ;
u32 len = 0 ;
stat = ReadEEProm ( adapter , tag , 2 , buf , & len ) ;
if ( stat )
return stat ;
if ( len ! = 2 )
return - EINVAL ;
* data = ( buf [ 0 ] < < 8 ) | buf [ 1 ] ;
return 0 ;
}
static int eeprom_write_ushort ( struct i2c_adapter * adapter , u16 tag , u16 data )
{
int stat ;
u8 buf [ 2 ] ;
buf [ 0 ] = data > > 8 ;
buf [ 1 ] = data & 0xff ;
stat = WriteEEProm ( adapter , tag , 2 , buf ) ;
if ( stat )
return stat ;
return 0 ;
}
static s16 osc_deviation ( void * priv , s16 deviation , int flag )
{
struct ngene_channel * chan = priv ;
struct i2c_adapter * adap = & chan - > i2c_adapter ;
u16 data = 0 ;
if ( flag ) {
data = ( u16 ) deviation ;
pr_info ( DEVICE_NAME " : write deviation %d \n " ,
deviation ) ;
eeprom_write_ushort ( adap , 0x1000 + chan - > number , data ) ;
} else {
if ( eeprom_read_ushort ( adap , 0x1000 + chan - > number , & data ) )
data = 0 ;
pr_info ( DEVICE_NAME " : read deviation %d \n " ,
( s16 ) data ) ;
}
return ( s16 ) data ;
}
2010-03-13 23:53:58 +03:00
/****************************************************************************/
/* Switch control (I2C gates, etc.) *****************************************/
/****************************************************************************/
static struct stv090x_config fe_cineS2 = {
. device = STV0900 ,
. demod_mode = STV090x_DUAL ,
. clk_mode = STV090x_CLK_EXT ,
. xtal = 27000000 ,
. address = 0x68 ,
. ts1_mode = STV090x_TSMODE_SERIAL_PUNCTURED ,
. ts2_mode = STV090x_TSMODE_SERIAL_PUNCTURED ,
. repeater_level = STV090x_RPTLEVEL_16 ,
. adc1_range = STV090x_ADC_1Vpp ,
. adc2_range = STV090x_ADC_1Vpp ,
. diseqc_envelope_mode = true ,
2011-01-10 12:36:13 +03:00
. tuner_i2c_lock = cineS2_tuner_i2c_lock ,
} ;
static struct stv090x_config fe_cineS2_2 = {
. device = STV0900 ,
. demod_mode = STV090x_DUAL ,
. clk_mode = STV090x_CLK_EXT ,
. xtal = 27000000 ,
. address = 0x69 ,
. ts1_mode = STV090x_TSMODE_SERIAL_PUNCTURED ,
. ts2_mode = STV090x_TSMODE_SERIAL_PUNCTURED ,
. repeater_level = STV090x_RPTLEVEL_16 ,
. adc1_range = STV090x_ADC_1Vpp ,
. adc2_range = STV090x_ADC_1Vpp ,
. diseqc_envelope_mode = true ,
. tuner_i2c_lock = cineS2_tuner_i2c_lock ,
2010-03-13 23:53:58 +03:00
} ;
static struct stv6110x_config tuner_cineS2_0 = {
. addr = 0x60 ,
. refclk = 27000000 ,
. clk_div = 1 ,
} ;
static struct stv6110x_config tuner_cineS2_1 = {
. addr = 0x63 ,
. refclk = 27000000 ,
. clk_div = 1 ,
} ;
2016-09-11 16:05:55 +03:00
static const struct ngene_info ngene_info_cineS2 = {
2010-03-13 23:53:58 +03:00
. type = NGENE_SIDEWINDER ,
. name = " Linux4Media cineS2 DVB-S2 Twin Tuner " ,
. io_type = { NGENE_IO_TSIN , NGENE_IO_TSIN } ,
. demod_attach = { demod_attach_stv0900 , demod_attach_stv0900 } ,
. tuner_attach = { tuner_attach_stv6110 , tuner_attach_stv6110 } ,
. fe_config = { & fe_cineS2 , & fe_cineS2 } ,
. tuner_config = { & tuner_cineS2_0 , & tuner_cineS2_1 } ,
. lnb = { 0x0b , 0x08 } ,
. tsf = { 3 , 3 } ,
2011-01-10 12:36:13 +03:00
. fw_version = 18 ,
. msi_supported = true ,
2010-03-13 23:53:58 +03:00
} ;
2016-09-11 16:05:55 +03:00
static const struct ngene_info ngene_info_satixS2 = {
2010-03-13 23:53:58 +03:00
. type = NGENE_SIDEWINDER ,
. name = " Mystique SaTiX-S2 Dual " ,
. io_type = { NGENE_IO_TSIN , NGENE_IO_TSIN } ,
. demod_attach = { demod_attach_stv0900 , demod_attach_stv0900 } ,
. tuner_attach = { tuner_attach_stv6110 , tuner_attach_stv6110 } ,
. fe_config = { & fe_cineS2 , & fe_cineS2 } ,
. tuner_config = { & tuner_cineS2_0 , & tuner_cineS2_1 } ,
. lnb = { 0x0b , 0x08 } ,
. tsf = { 3 , 3 } ,
2011-01-10 12:36:13 +03:00
. fw_version = 18 ,
. msi_supported = true ,
2010-03-13 23:53:58 +03:00
} ;
2016-09-11 16:05:55 +03:00
static const struct ngene_info ngene_info_satixS2v2 = {
2010-03-13 23:53:58 +03:00
. type = NGENE_SIDEWINDER ,
. name = " Mystique SaTiX-S2 Dual (v2) " ,
2011-01-10 12:36:18 +03:00
. io_type = { NGENE_IO_TSIN , NGENE_IO_TSIN , NGENE_IO_TSIN , NGENE_IO_TSIN ,
NGENE_IO_TSOUT } ,
2011-01-10 12:36:13 +03:00
. demod_attach = { demod_attach_stv0900 , demod_attach_stv0900 , cineS2_probe , cineS2_probe } ,
2011-07-03 20:59:30 +04:00
. tuner_attach = { tuner_attach_stv6110 , tuner_attach_stv6110 , tuner_attach_probe , tuner_attach_probe } ,
2011-01-10 12:36:13 +03:00
. fe_config = { & fe_cineS2 , & fe_cineS2 , & fe_cineS2_2 , & fe_cineS2_2 } ,
. tuner_config = { & tuner_cineS2_0 , & tuner_cineS2_1 , & tuner_cineS2_0 , & tuner_cineS2_1 } ,
. lnb = { 0x0a , 0x08 , 0x0b , 0x09 } ,
2010-03-13 23:53:58 +03:00
. tsf = { 3 , 3 } ,
2011-01-10 12:36:13 +03:00
. fw_version = 18 ,
. msi_supported = true ,
2010-03-13 23:53:58 +03:00
} ;
2016-09-11 16:05:55 +03:00
static const struct ngene_info ngene_info_cineS2v5 = {
2010-03-13 23:53:58 +03:00
. type = NGENE_SIDEWINDER ,
. name = " Linux4Media cineS2 DVB-S2 Twin Tuner (v5) " ,
2011-01-10 12:36:15 +03:00
. io_type = { NGENE_IO_TSIN , NGENE_IO_TSIN , NGENE_IO_TSIN , NGENE_IO_TSIN ,
NGENE_IO_TSOUT } ,
2011-01-10 12:36:13 +03:00
. demod_attach = { demod_attach_stv0900 , demod_attach_stv0900 , cineS2_probe , cineS2_probe } ,
2011-07-03 20:59:30 +04:00
. tuner_attach = { tuner_attach_stv6110 , tuner_attach_stv6110 , tuner_attach_probe , tuner_attach_probe } ,
2011-01-10 12:36:13 +03:00
. fe_config = { & fe_cineS2 , & fe_cineS2 , & fe_cineS2_2 , & fe_cineS2_2 } ,
. tuner_config = { & tuner_cineS2_0 , & tuner_cineS2_1 , & tuner_cineS2_0 , & tuner_cineS2_1 } ,
. lnb = { 0x0a , 0x08 , 0x0b , 0x09 } ,
2010-03-13 23:53:58 +03:00
. tsf = { 3 , 3 } ,
2011-01-10 12:36:13 +03:00
. fw_version = 18 ,
. msi_supported = true ,
2010-03-13 23:53:58 +03:00
} ;
2011-01-10 12:36:13 +03:00
2016-09-11 16:05:55 +03:00
static const struct ngene_info ngene_info_duoFlex = {
2010-05-16 12:08:49 +04:00
. type = NGENE_SIDEWINDER ,
2011-07-03 20:58:22 +04:00
. name = " Digital Devices DuoFlex PCIe or miniPCIe " ,
2011-01-10 12:36:15 +03:00
. io_type = { NGENE_IO_TSIN , NGENE_IO_TSIN , NGENE_IO_TSIN , NGENE_IO_TSIN ,
NGENE_IO_TSOUT } ,
2011-01-10 12:36:13 +03:00
. demod_attach = { cineS2_probe , cineS2_probe , cineS2_probe , cineS2_probe } ,
2011-07-03 20:55:06 +04:00
. tuner_attach = { tuner_attach_probe , tuner_attach_probe , tuner_attach_probe , tuner_attach_probe } ,
2011-01-10 12:36:13 +03:00
. fe_config = { & fe_cineS2 , & fe_cineS2 , & fe_cineS2_2 , & fe_cineS2_2 } ,
. tuner_config = { & tuner_cineS2_0 , & tuner_cineS2_1 , & tuner_cineS2_0 , & tuner_cineS2_1 } ,
. lnb = { 0x0a , 0x08 , 0x0b , 0x09 } ,
2010-05-16 12:08:49 +04:00
. tsf = { 3 , 3 } ,
2011-01-10 12:36:13 +03:00
. fw_version = 18 ,
. msi_supported = true ,
2010-05-16 12:08:49 +04:00
} ;
2016-09-11 16:05:55 +03:00
static const struct ngene_info ngene_info_m780 = {
2010-03-13 23:53:58 +03:00
. type = NGENE_APP ,
. name = " Aver M780 ATSC/QAM-B " ,
/* Channel 0 is analog, which is currently unsupported */
. io_type = { NGENE_IO_NONE , NGENE_IO_TSIN } ,
. demod_attach = { NULL , demod_attach_lg330x } ,
/* Ensure these are NULL else the frame will call them (as funcs) */
2014-08-21 00:43:22 +04:00
. tuner_attach = { NULL , NULL , NULL , NULL } ,
2010-03-13 23:53:58 +03:00
. fe_config = { NULL , & aver_m780 } ,
. avf = { 0 } ,
/* A custom electrical interface config for the demod to bridge */
. tsf = { 4 , 4 } ,
. fw_version = 15 ,
} ;
2012-07-31 22:34:29 +04:00
static struct drxd_config fe_terratec_dvbt_0 = {
. index = 0 ,
. demod_address = 0x70 ,
. demod_revision = 0xa2 ,
. demoda_address = 0x00 ,
. pll_address = 0x60 ,
. pll_type = DVB_PLL_THOMSON_DTT7520X ,
. clock = 20000 ,
. osc_deviation = osc_deviation ,
} ;
static struct drxd_config fe_terratec_dvbt_1 = {
. index = 1 ,
. demod_address = 0x71 ,
. demod_revision = 0xa2 ,
. demoda_address = 0x00 ,
. pll_address = 0x60 ,
. pll_type = DVB_PLL_THOMSON_DTT7520X ,
. clock = 20000 ,
. osc_deviation = osc_deviation ,
} ;
2016-09-11 16:05:55 +03:00
static const struct ngene_info ngene_info_terratec = {
2012-07-31 22:34:29 +04:00
. type = NGENE_TERRATEC ,
. name = " Terratec Integra/Cinergy2400i Dual DVB-T " ,
. io_type = { NGENE_IO_TSIN , NGENE_IO_TSIN } ,
. demod_attach = { demod_attach_drxd , demod_attach_drxd } ,
2013-01-05 08:03:14 +04:00
. tuner_attach = { tuner_attach_dtt7520x , tuner_attach_dtt7520x } ,
2012-07-31 22:34:29 +04:00
. fe_config = { & fe_terratec_dvbt_0 , & fe_terratec_dvbt_1 } ,
. i2c_access = 1 ,
} ;
2010-03-13 23:53:58 +03:00
/****************************************************************************/
/****************************************************************************/
/* PCI Subsystem ID *********************************************************/
/****************************************************************************/
# define NGENE_ID(_subvend, _subdev, _driverdata) { \
. vendor = NGENE_VID , . device = NGENE_PID , \
. subvendor = _subvend , . subdevice = _subdev , \
. driver_data = ( unsigned long ) & _driverdata }
/****************************************************************************/
2012-12-22 01:17:53 +04:00
static const struct pci_device_id ngene_id_tbl [ ] = {
2010-03-13 23:53:58 +03:00
NGENE_ID ( 0x18c3 , 0xabc3 , ngene_info_cineS2 ) ,
NGENE_ID ( 0x18c3 , 0xabc4 , ngene_info_cineS2 ) ,
NGENE_ID ( 0x18c3 , 0xdb01 , ngene_info_satixS2 ) ,
NGENE_ID ( 0x18c3 , 0xdb02 , ngene_info_satixS2v2 ) ,
NGENE_ID ( 0x18c3 , 0xdd00 , ngene_info_cineS2v5 ) ,
2011-07-03 20:58:22 +04:00
NGENE_ID ( 0x18c3 , 0xdd10 , ngene_info_duoFlex ) ,
NGENE_ID ( 0x18c3 , 0xdd20 , ngene_info_duoFlex ) ,
2010-03-13 23:53:58 +03:00
NGENE_ID ( 0x1461 , 0x062e , ngene_info_m780 ) ,
2012-07-31 22:34:29 +04:00
NGENE_ID ( 0x153b , 0x1167 , ngene_info_terratec ) ,
2010-03-13 23:53:58 +03:00
{ 0 }
} ;
MODULE_DEVICE_TABLE ( pci , ngene_id_tbl ) ;
/****************************************************************************/
/* Init/Exit ****************************************************************/
/****************************************************************************/
static pci_ers_result_t ngene_error_detected ( struct pci_dev * dev ,
2011-07-03 20:56:28 +04:00
enum pci_channel_state state )
2010-03-13 23:53:58 +03:00
{
printk ( KERN_ERR DEVICE_NAME " : PCI error \n " ) ;
if ( state = = pci_channel_io_perm_failure )
return PCI_ERS_RESULT_DISCONNECT ;
if ( state = = pci_channel_io_frozen )
return PCI_ERS_RESULT_NEED_RESET ;
return PCI_ERS_RESULT_CAN_RECOVER ;
}
static pci_ers_result_t ngene_slot_reset ( struct pci_dev * dev )
{
printk ( KERN_INFO DEVICE_NAME " : slot reset \n " ) ;
return 0 ;
}
static void ngene_resume ( struct pci_dev * dev )
{
printk ( KERN_INFO DEVICE_NAME " : resume \n " ) ;
}
2012-09-07 20:33:17 +04:00
static const struct pci_error_handlers ngene_errors = {
2010-03-13 23:53:58 +03:00
. error_detected = ngene_error_detected ,
. slot_reset = ngene_slot_reset ,
. resume = ngene_resume ,
} ;
static struct pci_driver ngene_pci_driver = {
. name = " ngene " ,
. id_table = ngene_id_tbl ,
. probe = ngene_probe ,
2012-12-22 01:17:53 +04:00
. remove = ngene_remove ,
2010-03-13 23:53:58 +03:00
. err_handler = & ngene_errors ,
2011-01-10 12:36:16 +03:00
. shutdown = ngene_shutdown ,
2010-03-13 23:53:58 +03:00
} ;
static __init int module_init_ngene ( void )
{
printk ( KERN_INFO
" nGene PCIE bridge driver, Copyright (C) 2005-2007 Micronas \n " ) ;
return pci_register_driver ( & ngene_pci_driver ) ;
}
static __exit void module_exit_ngene ( void )
{
pci_unregister_driver ( & ngene_pci_driver ) ;
}
module_init ( module_init_ngene ) ;
module_exit ( module_exit_ngene ) ;
MODULE_DESCRIPTION ( " nGene " ) ;
MODULE_AUTHOR ( " Micronas, Ralph Metzler, Manfred Voelkel " ) ;
MODULE_LICENSE ( " GPL " ) ;