qm1d1b0004.h 562 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Sharp QM1D1B0004 satellite tuner
  4. *
  5. * Copyright (C) 2014 Akihiro Tsukada <tskd08@gmail.com>
  6. */
  7. #ifndef QM1D1B0004_H
  8. #define QM1D1B0004_H
  9. #include <media/dvb_frontend.h>
  10. struct qm1d1b0004_config {
  11. struct dvb_frontend *fe;
  12. u32 lpf_freq; /* LPF frequency[kHz]. Default: symbol rate */
  13. bool half_step; /* use PLL frequency step of 500Hz instead of 1000Hz */
  14. };
  15. /* special values indicating to use the default in qm1d1b0004_config */
  16. #define QM1D1B0004_CFG_PLL_DFLT 0
  17. #define QM1D1B0004_CFG_LPF_DFLT 0
  18. #endif