Lines Matching refs:bw
613 static int dib8000_set_bandwidth(struct dvb_frontend *fe, u32 bw) in dib8000_set_bandwidth() argument
618 if (bw == 0) in dib8000_set_bandwidth()
619 bw = 6000; in dib8000_set_bandwidth()
668 …id dib8000_reset_pll_common(struct dib8000_state *state, const struct dibx000_bandwidth_config *bw) in dib8000_reset_pll_common() argument
670 dprintk("ifreq: %d %x, inversion: %d", bw->ifreq, bw->ifreq, bw->ifreq >> 25); in dib8000_reset_pll_common()
673 (u16) (((bw->internal * 1000) >> 16) & 0xffff)); in dib8000_reset_pll_common()
675 (u16) ((bw->internal * 1000) & 0xffff)); in dib8000_reset_pll_common()
677 dib8000_write_word(state, 23, (u16) (((bw->internal / 2 * 1000) >> 16) & 0xffff)); in dib8000_reset_pll_common()
679 (u16) ((bw->internal / 2 * 1000) & 0xffff)); in dib8000_reset_pll_common()
681 dib8000_write_word(state, 27, (u16) ((bw->ifreq >> 16) & 0x01ff)); in dib8000_reset_pll_common()
682 dib8000_write_word(state, 28, (u16) (bw->ifreq & 0xffff)); in dib8000_reset_pll_common()
683 dib8000_write_word(state, 26, (u16) ((bw->ifreq >> 25) & 0x0003)); in dib8000_reset_pll_common()
686 dib8000_write_word(state, 922, bw->sad_cfg); in dib8000_reset_pll_common()
742 struct dibx000_bandwidth_config *pll, u32 bw, u8 ratio) in dib8000_update_pll() argument
790 if (bw != state->current_demod_bw) { in dib8000_update_pll()
792 …Change %d MHz -> %d MHz (prediv: %d->%d)", state->current_demod_bw / 1000, bw / 1000, oldprediv, s… in dib8000_update_pll()
798 …dprintk("PLL: New Setting for %d MHz Bandwidth (prediv: %d, ratio: %d)", bw/1000, state->cfg.pll->… in dib8000_update_pll()
805 state->current_demod_bw = bw; in dib8000_update_pll()