0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef CXD2841ER_PRIV_H
0014 #define CXD2841ER_PRIV_H
0015
0016 #define I2C_SLVX 0
0017 #define I2C_SLVT 1
0018
0019 #define CXD2837ER_CHIP_ID 0xb1
0020 #define CXD2838ER_CHIP_ID 0xb0
0021 #define CXD2841ER_CHIP_ID 0xa7
0022 #define CXD2843ER_CHIP_ID 0xa4
0023 #define CXD2854ER_CHIP_ID 0xc1
0024
0025 #define CXD2841ER_DVBS_POLLING_INVL 10
0026
0027 struct cxd2841er_cnr_data {
0028 u32 value;
0029 int cnr_x1000;
0030 };
0031
0032 enum cxd2841er_dvbt2_profile_t {
0033 DVBT2_PROFILE_ANY = 0,
0034 DVBT2_PROFILE_BASE = 1,
0035 DVBT2_PROFILE_LITE = 2
0036 };
0037
0038 #endif