2019-05-20 10:19:02 +03:00
/* SPDX-License-Identifier: GPL-2.0-or-later */
2008-01-26 00:20:48 +03:00
/*
STB6100 Silicon Tuner
Copyright ( C ) Manu Abraham ( abraham . manu @ gmail . com )
Copyright ( C ) ST Microelectronics
*/
2015-11-11 23:42:00 +03:00
# include <linux/dvb/frontend.h>
2017-12-28 21:03:51 +03:00
# include <media/dvb_frontend.h>
2015-11-11 23:42:00 +03:00
2008-01-26 00:20:48 +03:00
static int stb6100_get_frequency ( struct dvb_frontend * fe , u32 * frequency )
{
2014-06-25 01:42:27 +04:00
struct dvb_frontend_ops * frontend_ops = & fe - > ops ;
struct dvb_tuner_ops * tuner_ops = & frontend_ops - > tuner_ops ;
2008-01-26 00:20:48 +03:00
int err = 0 ;
2015-11-11 23:42:00 +03:00
if ( tuner_ops - > get_frequency ) {
err = tuner_ops - > get_frequency ( fe , frequency ) ;
2014-06-25 01:42:28 +04:00
if ( err < 0 ) {
2008-01-26 00:20:48 +03:00
printk ( " %s: Invalid parameter \n " , __func__ ) ;
return err ;
}
}
return 0 ;
}
static int stb6100_set_frequency ( struct dvb_frontend * fe , u32 frequency )
{
2014-06-25 01:42:27 +04:00
struct dvb_frontend_ops * frontend_ops = & fe - > ops ;
struct dvb_tuner_ops * tuner_ops = & frontend_ops - > tuner_ops ;
2015-11-11 23:42:00 +03:00
struct dtv_frontend_properties * c = & fe - > dtv_property_cache ;
u32 bw = c - > bandwidth_hz ;
2008-01-26 00:20:48 +03:00
int err = 0 ;
2015-11-11 23:42:00 +03:00
c - > frequency = frequency ;
c - > bandwidth_hz = 0 ; /* Don't adjust the bandwidth */
2014-06-25 01:42:27 +04:00
2015-11-11 23:42:00 +03:00
if ( tuner_ops - > set_params ) {
err = tuner_ops - > set_params ( fe ) ;
c - > bandwidth_hz = bw ;
2014-06-25 01:42:28 +04:00
if ( err < 0 ) {
2008-01-26 00:20:48 +03:00
printk ( " %s: Invalid parameter \n " , __func__ ) ;
return err ;
}
}
return 0 ;
}
static int stb6100_get_bandwidth ( struct dvb_frontend * fe , u32 * bandwidth )
{
struct dvb_frontend_ops * frontend_ops = & fe - > ops ;
struct dvb_tuner_ops * tuner_ops = & frontend_ops - > tuner_ops ;
int err = 0 ;
2015-11-11 23:42:00 +03:00
if ( tuner_ops - > get_bandwidth ) {
err = tuner_ops - > get_bandwidth ( fe , bandwidth ) ;
2014-06-25 01:42:28 +04:00
if ( err < 0 ) {
2008-01-26 00:20:48 +03:00
printk ( " %s: Invalid parameter \n " , __func__ ) ;
return err ;
}
}
return 0 ;
}
static int stb6100_set_bandwidth ( struct dvb_frontend * fe , u32 bandwidth )
{
2014-06-25 01:42:27 +04:00
struct dvb_frontend_ops * frontend_ops = & fe - > ops ;
struct dvb_tuner_ops * tuner_ops = & frontend_ops - > tuner_ops ;
2015-11-11 23:42:00 +03:00
struct dtv_frontend_properties * c = & fe - > dtv_property_cache ;
u32 freq = c - > frequency ;
2008-01-26 00:20:48 +03:00
int err = 0 ;
2015-11-11 23:42:00 +03:00
c - > bandwidth_hz = bandwidth ;
c - > frequency = 0 ; /* Don't adjust the frequency */
2014-06-25 01:42:27 +04:00
2015-11-11 23:42:00 +03:00
if ( tuner_ops - > set_params ) {
err = tuner_ops - > set_params ( fe ) ;
c - > frequency = freq ;
2014-06-25 01:42:28 +04:00
if ( err < 0 ) {
2008-01-26 00:20:48 +03:00
printk ( " %s: Invalid parameter \n " , __func__ ) ;
return err ;
}
}
return 0 ;
}