• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/dvb/frontends/

Lines Matching defs:fe

29 #define TDA10045_DEFAULT_FIRMWARE "dvb-fe-tda10045.fw"
30 #define TDA10046_DEFAULT_FIRMWARE "dvb-fe-tda10046.fw"
387 static int tda10045_fwupload(struct dvb_frontend* fe)
389 struct tda1004x_state* state = fe->demodulator_priv;
399 ret = state->config->request_firmware(fe, &fw, TDA10045_DEFAULT_FIRMWARE);
427 static void tda10046_init_plls(struct dvb_frontend* fe)
429 struct tda1004x_state* state = fe->demodulator_priv;
481 static int tda10046_fwupload(struct dvb_frontend* fe)
483 struct tda1004x_state* state = fe->demodulator_priv;
506 tda10046_init_plls(fe);
539 ret = state->config->request_firmware(fe, &fw, TDA10046_DEFAULT_FIRMWARE);
542 ret = state->config->request_firmware(fe, &fw, TDA10045_DEFAULT_FIRMWARE);
601 static int tda1004x_write(struct dvb_frontend* fe, u8 *buf, int len)
603 struct tda1004x_state* state = fe->demodulator_priv;
611 static int tda10045_init(struct dvb_frontend* fe)
613 struct tda1004x_state* state = fe->demodulator_priv;
617 if (tda10045_fwupload(fe)) {
642 static int tda10046_init(struct dvb_frontend* fe)
644 struct tda1004x_state* state = fe->demodulator_priv;
647 if (tda10046_fwupload(fe)) {
700 static int tda1004x_set_fe(struct dvb_frontend* fe,
703 struct tda1004x_state* state = fe->demodulator_priv;
720 if (fe->ops.tuner_ops.set_params) {
721 fe->ops.tuner_ops.set_params(fe, fe_params);
722 if (fe->ops.i2c_gate_ctrl)
723 fe->ops.i2c_gate_ctrl(fe, 0);
898 static int tda1004x_get_fe(struct dvb_frontend* fe, struct dvb_frontend_parameters *fe_params)
900 struct tda1004x_state* state = fe->demodulator_priv;
1003 static int tda1004x_read_status(struct dvb_frontend* fe, fe_status_t * fe_status)
1005 struct tda1004x_state* state = fe->demodulator_priv;
1073 static int tda1004x_read_signal_strength(struct dvb_frontend* fe, u16 * signal)
1075 struct tda1004x_state* state = fe->demodulator_priv;
1102 static int tda1004x_read_snr(struct dvb_frontend* fe, u16 * snr)
1104 struct tda1004x_state* state = fe->demodulator_priv;
1120 static int tda1004x_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks)
1122 struct tda1004x_state* state = fe->demodulator_priv;
1157 static int tda1004x_read_ber(struct dvb_frontend* fe, u32* ber)
1159 struct tda1004x_state* state = fe->demodulator_priv;
1180 static int tda1004x_sleep(struct dvb_frontend* fe)
1182 struct tda1004x_state* state = fe->demodulator_priv;
1207 static int tda1004x_i2c_gate_ctrl(struct dvb_frontend* fe, int enable)
1209 struct tda1004x_state* state = fe->demodulator_priv;
1218 static int tda1004x_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fesettings)
1227 static void tda1004x_release(struct dvb_frontend* fe)
1229 struct tda1004x_state *state = fe->demodulator_priv;