dib8000.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. };
  30. #define DEFAULT_DIB8000_I2C_ADDRESS 18
  31. #if defined(CONFIG_DVB_DIB8000) || (defined(CONFIG_DVB_DIB8000_MODULE) && defined(MODULE))
  32. extern struct dvb_frontend *dib8000_attach(struct i2c_adapter *i2c_adap, u8 i2c_addr, struct dib8000_config *cfg);
  33. extern struct i2c_adapter *dib8000_get_i2c_master(struct dvb_frontend *, enum dibx000_i2c_interface, int);
  34. extern int dib8000_i2c_enumeration(struct i2c_adapter *host, int no_of_demods, u8 default_addr, u8 first_addr);
  35. extern int dib8000_set_gpio(struct dvb_frontend *, u8 num, u8 dir, u8 val);
  36. extern int dib8000_set_wbd_ref(struct dvb_frontend *, u16 value);
  37. extern int dib8000_pid_filter_ctrl(struct dvb_frontend *, u8 onoff);
  38. extern int dib8000_pid_filter(struct dvb_frontend *, u8 id, u16 pid, u8 onoff);
  39. #else
  40. static inline struct dvb_frontend *dib8000_attach(struct i2c_adapter *i2c_adap, u8 i2c_addr, struct dib8000_config *cfg)
  41. {
  42. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  43. return NULL;
  44. }
  45. static inline struct i2c_adapter *dib8000_get_i2c_master(struct dvb_frontend *fe, enum dibx000_i2c_interface i, int x)
  46. {
  47. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  48. return NULL;
  49. }
  50. int dib8000_i2c_enumeration(struct i2c_adapter *host, int no_of_demods, u8 default_addr, u8 first_addr)
  51. {
  52. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  53. return -ENODEV;
  54. }
  55. int dib8000_set_gpio(struct dvb_frontend *fe, u8 num, u8 dir, u8 val)
  56. {
  57. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  58. return -ENODEV;
  59. }
  60. int dib8000_set_wbd_ref(struct dvb_frontend *fe, u16 value)
  61. {
  62. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  63. return -ENODEV;
  64. }
  65. int dib8000_pid_filter_ctrl(struct dvb_frontend *fe, u8 onoff)
  66. {
  67. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  68. return -ENODEV;
  69. }
  70. int dib8000_pid_filter(struct dvb_frontend *fe, u8 id, u16 pid, u8 onoff)
  71. {
  72. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  73. return -ENODEV;
  74. }
  75. #endif
  76. #endif