1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Driver for Silicon Labs SI2165 DVB-C/-T Demodulator
5 * Copyright (C) 2013-2017 Matthias Schwarzott <zzam@gentoo.org>
8 * http://www.silabs.com/Support%20Documents/TechnicalDocs/Si2165-short.pdf
14 #include <linux/dvb/frontend.h>
17 SI2165_MODE_OFF
= 0x00,
18 SI2165_MODE_PLL_EXT
= 0x20,
19 SI2165_MODE_PLL_XTAL
= 0x21
23 * possible values: 0x64,0x65,0x66,0x67
25 struct si2165_platform_data
{
30 struct dvb_frontend
**fe
;
32 /* external clock or XTAL */
35 /* frequency of external clock or xtal in Hz
36 * possible values: 4000000, 16000000, 20000000, 240000000, 27000000
40 /* invert the spectrum */
44 #endif /* _DVB_SI2165_H */