qm1d1c0042.h 798 B

12345678910111213141516171819202122232425262728
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Sharp QM1D1C0042 8PSK tuner driver
  4. *
  5. * Copyright (C) 2014 Akihiro Tsukada <tskd08@gmail.com>
  6. */
  7. #ifndef QM1D1C0042_H
  8. #define QM1D1C0042_H
  9. #include <media/dvb_frontend.h>
  10. struct qm1d1c0042_config {
  11. struct dvb_frontend *fe;
  12. u32 xtal_freq; /* [kHz] */ /* currently ignored */
  13. bool lpf; /* enable LPF */
  14. bool fast_srch; /* enable fast search mode, no LPF */
  15. u32 lpf_wait; /* wait in tuning with LPF enabled. [ms] */
  16. u32 fast_srch_wait; /* with fast-search mode, no LPF. [ms] */
  17. u32 normal_srch_wait; /* with no LPF/fast-search mode. [ms] */
  18. };
  19. /* special values indicating to use the default in qm1d1c0042_config */
  20. #define QM1D1C0042_CFG_XTAL_DFLT 0
  21. #define QM1D1C0042_CFG_WAIT_DFLT 0
  22. #endif /* QM1D1C0042_H */