[media] rtl2832: cleanups and minor changes
[firefly-linux-kernel-4.4.55.git] / drivers / media / dvb-frontends / rtl2832.h
1 /*
2  * Realtek RTL2832 DVB-T demodulator driver
3  *
4  * Copyright (C) 2012 Thomas Mair <thomas.mair86@gmail.com>
5  *
6  *      This program is free software; you can redistribute it and/or modify
7  *      it under the terms of the GNU General Public License as published by
8  *      the Free Software Foundation; either version 2 of the License, or
9  *      (at your option) any later version.
10  *
11  *      This program is distributed in the hope that it will be useful,
12  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *      GNU General Public License for more details.
15  *
16  *      You should have received a copy of the GNU General Public License along
17  *      with this program; if not, write to the Free Software Foundation, Inc.,
18  *      51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  */
20
21 #ifndef RTL2832_H
22 #define RTL2832_H
23
24 #include <linux/dvb/frontend.h>
25 #include <linux/i2c-mux.h>
26
27 struct rtl2832_platform_data {
28         /*
29          * Clock frequency.
30          * Hz
31          * 4000000, 16000000, 25000000, 28800000
32          */
33         u32 clk;
34
35         /*
36          * Tuner.
37          * XXX: This list must be kept sync with dvb_usb_rtl28xxu USB IF driver.
38          */
39 #define RTL2832_TUNER_TUA9001   0x24
40 #define RTL2832_TUNER_FC0012    0x26
41 #define RTL2832_TUNER_E4000     0x27
42 #define RTL2832_TUNER_FC0013    0x29
43 #define RTL2832_TUNER_R820T     0x2a
44 #define RTL2832_TUNER_R828D     0x2b
45         u8 tuner;
46
47         /*
48          * Callbacks.
49          */
50         struct dvb_frontend* (*get_dvb_frontend)(struct i2c_client *);
51         struct i2c_adapter* (*get_i2c_adapter)(struct i2c_client *);
52         int (*enable_slave_ts)(struct i2c_client *);
53         int (*pid_filter)(struct dvb_frontend *, u8, u16, int);
54         int (*pid_filter_ctrl)(struct dvb_frontend *, int);
55         /* Register access for SDR module */
56         int (*bulk_read)(struct i2c_client *, unsigned int, void *, size_t);
57         int (*bulk_write)(struct i2c_client *, unsigned int, const void *, size_t);
58         int (*update_bits)(struct i2c_client *, unsigned int, unsigned int, unsigned int);
59 };
60
61 #endif /* RTL2832_H */