1
2
3
4
5
6
7
8
9
10
11
12
13 #ifndef CXD2841ER_PRIV_H
14 #define CXD2841ER_PRIV_H
15
16 #define I2C_SLVX 0
17 #define I2C_SLVT 1
18
19 #define CXD2837ER_CHIP_ID 0xb1
20 #define CXD2838ER_CHIP_ID 0xb0
21 #define CXD2841ER_CHIP_ID 0xa7
22 #define CXD2843ER_CHIP_ID 0xa4
23 #define CXD2854ER_CHIP_ID 0xc1
24
25 #define CXD2841ER_DVBS_POLLING_INVL 10
26
27 struct cxd2841er_cnr_data {
28 u32 value;
29 int cnr_x1000;
30 };
31
32 enum cxd2841er_dvbt2_profile_t {
33 DVBT2_PROFILE_ANY = 0,
34 DVBT2_PROFILE_BASE = 1,
35 DVBT2_PROFILE_LITE = 2
36 };
37
38 #endif