dib8000.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. #ifndef DIB8000_H
  2. #define DIB8000_H
  3. #include "dibx000_common.h"
  4. struct dib8000_config {
  5. u8 output_mpeg2_in_188_bytes;
  6. u8 hostbus_diversity;
  7. u8 tuner_is_baseband;
  8. int (*update_lna) (struct dvb_frontend *, u16 agc_global);
  9. u8 agc_config_count;
  10. struct dibx000_agc_config *agc;
  11. struct dibx000_bandwidth_config *pll;
  12. #define DIB8000_GPIO_DEFAULT_DIRECTIONS 0xffff
  13. u16 gpio_dir;
  14. #define DIB8000_GPIO_DEFAULT_VALUES 0x0000
  15. u16 gpio_val;
  16. #define DIB8000_GPIO_PWM_POS0(v) ((v & 0xf) << 12)
  17. #define DIB8000_GPIO_PWM_POS1(v) ((v & 0xf) << 8 )
  18. #define DIB8000_GPIO_PWM_POS2(v) ((v & 0xf) << 4 )
  19. #define DIB8000_GPIO_PWM_POS3(v) (v & 0xf)
  20. #define DIB8000_GPIO_DEFAULT_PWM_POS 0xffff
  21. u16 gpio_pwm_pos;
  22. u16 pwm_freq_div;
  23. void (*agc_control) (struct dvb_frontend *, u8 before);
  24. u16 drives;
  25. u16 diversity_delay;
  26. u8 div_cfg;
  27. u8 output_mode;
  28. u8 refclksel;
  29. u8 enMpegOutput:1;
  30. };
  31. #define DEFAULT_DIB8000_I2C_ADDRESS 18
  32. #if defined(CONFIG_DVB_DIB8000) || (defined(CONFIG_DVB_DIB8000_MODULE) && defined(MODULE))
  33. extern struct dvb_frontend *dib8000_attach(struct i2c_adapter *i2c_adap, u8 i2c_addr, struct dib8000_config *cfg);
  34. extern struct i2c_adapter *dib8000_get_i2c_master(struct dvb_frontend *, enum dibx000_i2c_interface, int);
  35. extern int dib8000_i2c_enumeration(struct i2c_adapter *host, int no_of_demods,
  36. u8 default_addr, u8 first_addr, u8 is_dib8096p);
  37. extern int dib8000_set_gpio(struct dvb_frontend *, u8 num, u8 dir, u8 val);
  38. extern int dib8000_set_wbd_ref(struct dvb_frontend *, u16 value);
  39. extern int dib8000_pid_filter_ctrl(struct dvb_frontend *, u8 onoff);
  40. extern int dib8000_pid_filter(struct dvb_frontend *, u8 id, u16 pid, u8 onoff);
  41. extern int dib8000_set_tune_state(struct dvb_frontend *fe, enum frontend_tune_state tune_state);
  42. extern enum frontend_tune_state dib8000_get_tune_state(struct dvb_frontend *fe);
  43. extern void dib8000_pwm_agc_reset(struct dvb_frontend *fe);
  44. extern s32 dib8000_get_adc_power(struct dvb_frontend *fe, u8 mode);
  45. extern struct i2c_adapter *dib8096p_get_i2c_tuner(struct dvb_frontend *fe);
  46. extern int dib8096p_tuner_sleep(struct dvb_frontend *fe, int onoff);
  47. extern int dib8090p_get_dc_power(struct dvb_frontend *fe, u8 IQ);
  48. extern u32 dib8000_ctrl_timf(struct dvb_frontend *fe,
  49. uint8_t op, uint32_t timf);
  50. extern int dib8000_update_pll(struct dvb_frontend *fe,
  51. struct dibx000_bandwidth_config *pll);
  52. extern int dib8000_set_slave_frontend(struct dvb_frontend *fe, struct dvb_frontend *fe_slave);
  53. extern int dib8000_remove_slave_frontend(struct dvb_frontend *fe);
  54. extern struct dvb_frontend *dib8000_get_slave_frontend(struct dvb_frontend *fe, int slave_index);
  55. #else
  56. static inline struct dvb_frontend *dib8000_attach(struct i2c_adapter *i2c_adap, u8 i2c_addr, struct dib8000_config *cfg)
  57. {
  58. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  59. return NULL;
  60. }
  61. static inline struct i2c_adapter *dib8000_get_i2c_master(struct dvb_frontend *fe, enum dibx000_i2c_interface i, int x)
  62. {
  63. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  64. return NULL;
  65. }
  66. static inline int dib8000_i2c_enumeration(struct i2c_adapter *host,
  67. int no_of_demods, u8 default_addr, u8 first_addr,
  68. u8 is_dib8096p)
  69. {
  70. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  71. return -ENODEV;
  72. }
  73. static inline int dib8000_set_gpio(struct dvb_frontend *fe, u8 num, u8 dir, u8 val)
  74. {
  75. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  76. return -ENODEV;
  77. }
  78. static inline int dib8000_set_wbd_ref(struct dvb_frontend *fe, u16 value)
  79. {
  80. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  81. return -ENODEV;
  82. }
  83. static inline int dib8000_pid_filter_ctrl(struct dvb_frontend *fe, u8 onoff)
  84. {
  85. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  86. return -ENODEV;
  87. }
  88. static inline int dib8000_pid_filter(struct dvb_frontend *fe, u8 id, u16 pid, u8 onoff)
  89. {
  90. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  91. return -ENODEV;
  92. }
  93. static inline int dib8000_set_tune_state(struct dvb_frontend *fe, enum frontend_tune_state tune_state)
  94. {
  95. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  96. return -ENODEV;
  97. }
  98. static inline enum frontend_tune_state dib8000_get_tune_state(struct dvb_frontend *fe)
  99. {
  100. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  101. return CT_SHUTDOWN;
  102. }
  103. static inline void dib8000_pwm_agc_reset(struct dvb_frontend *fe)
  104. {
  105. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  106. }
  107. static inline struct i2c_adapter *dib8096p_get_i2c_tuner(struct dvb_frontend *fe)
  108. {
  109. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  110. return NULL;
  111. }
  112. static inline int dib8096p_tuner_sleep(struct dvb_frontend *fe, int onoff)
  113. {
  114. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  115. return 0;
  116. }
  117. static inline s32 dib8000_get_adc_power(struct dvb_frontend *fe, u8 mode)
  118. {
  119. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  120. return 0;
  121. }
  122. static inline int dib8090p_get_dc_power(struct dvb_frontend *fe, u8 IQ)
  123. {
  124. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  125. return 0;
  126. }
  127. static inline u32 dib8000_ctrl_timf(struct dvb_frontend *fe,
  128. uint8_t op, uint32_t timf)
  129. {
  130. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  131. return 0;
  132. }
  133. static inline int dib8000_update_pll(struct dvb_frontend *fe,
  134. struct dibx000_bandwidth_config *pll)
  135. {
  136. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  137. return -ENODEV;
  138. }
  139. static inline int dib8000_set_slave_frontend(struct dvb_frontend *fe, struct dvb_frontend *fe_slave)
  140. {
  141. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  142. return -ENODEV;
  143. }
  144. int dib8000_remove_slave_frontend(struct dvb_frontend *fe)
  145. {
  146. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  147. return -ENODEV;
  148. }
  149. static inline struct dvb_frontend *dib8000_get_slave_frontend(struct dvb_frontend *fe, int slave_index)
  150. {
  151. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  152. return NULL;
  153. }
  154. #endif
  155. #endif