5efe609abd20eb54192f4298296e7085ee1596f5
[firefly-linux-kernel-4.4.55.git] / drivers / media / dvb-frontends / rtl2832_sdr.h
1 /*
2  * Realtek RTL2832U SDR driver
3  *
4  * Copyright (C) 2013 Antti Palosaari <crope@iki.fi>
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  * GNU Radio plugin "gr-kernel" for device usage will be on:
21  * http://git.linuxtv.org/anttip/gr-kernel.git
22  *
23  * TODO:
24  * Help is very highly welcome for these + all the others you could imagine:
25  * - move controls to V4L2 API
26  * - use libv4l2 for stream format conversions
27  * - gr-kernel: switch to v4l2_mmap (current read eats a lot of cpu)
28  * - SDRSharp support
29  */
30
31 #ifndef RTL2832_SDR_H
32 #define RTL2832_SDR_H
33
34 #include <linux/kconfig.h>
35 #include <linux/i2c.h>
36 #include <media/v4l2-subdev.h>
37 #include "dvb_frontend.h"
38 #include "rtl2832.h"
39
40 struct rtl2832_sdr_platform_data {
41         /*
42          * Clock frequency.
43          * Hz
44          * 4000000, 16000000, 25000000, 28800000
45          */
46         u32 clk;
47
48         /*
49          * Tuner.
50          * XXX: This list must be kept sync with dvb_usb_rtl28xxu USB IF driver.
51          */
52 #define RTL2832_SDR_TUNER_TUA9001   0x24
53 #define RTL2832_SDR_TUNER_FC0012    0x26
54 #define RTL2832_SDR_TUNER_E4000     0x27
55 #define RTL2832_SDR_TUNER_FC0013    0x29
56 #define RTL2832_SDR_TUNER_R820T     0x2a
57 #define RTL2832_SDR_TUNER_R828D     0x2b
58         u8 tuner;
59
60         struct i2c_client *i2c_client;
61         int (*bulk_read)(struct i2c_client *, unsigned int, void *, size_t);
62         int (*bulk_write)(struct i2c_client *, unsigned int, const void *, size_t);
63         int (*update_bits)(struct i2c_client *, unsigned int, unsigned int, unsigned int);
64         struct dvb_frontend *dvb_frontend;
65         struct v4l2_subdev *v4l2_subdev;
66         struct dvb_usb_device *dvb_usb_device;
67 };
68
69
70 static inline struct dvb_frontend *rtl2832_sdr_attach(struct dvb_frontend *fe,
71         struct i2c_adapter *i2c, const struct rtl2832_config *cfg,
72         struct v4l2_subdev *sd)
73 {
74         dev_warn(&i2c->dev, "%s: driver disabled!\n", __func__);
75         return NULL;
76 }
77
78 #endif /* RTL2832_SDR_H */