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 8 #ifndef QM1D1B0004_H 9 #define QM1D1B0004_H 10 11 #include <media/dvb_frontend.h> 12 13 struct qm1d1b0004_config { 14 struct dvb_frontend *fe; 15 16 u32 lpf_freq; /* LPF frequency[kHz]. Default: symbol rate */ 17 bool half_step; /* use PLL frequency step of 500Hz instead of 1000Hz */ 18 }; 19 20 /* special values indicating to use the default in qm1d1b0004_config */ 21 #define QM1D1B0004_CFG_PLL_DFLT 0 22 #define QM1D1B0004_CFG_LPF_DFLT 0 23 24 #endif 25