dib8000.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. #else
  38. static inline struct dvb_frontend *dib8000_attach(struct i2c_adapter *i2c_adap, u8 i2c_addr, struct dib8000_config *cfg)
  39. {
  40. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  41. return NULL;
  42. }
  43. static inline struct i2c_adapter *dib8000_get_i2c_master(struct dvb_frontend *fe, enum dibx000_i2c_interface i, int x)
  44. {
  45. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  46. return NULL;
  47. }
  48. int dib8000_i2c_enumeration(struct i2c_adapter *host, int no_of_demods, u8 default_addr, u8 first_addr)
  49. {
  50. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  51. return -ENODEV;
  52. }
  53. int dib8000_set_gpio(struct dvb_frontend *fe, u8 num, u8 dir, u8 val)
  54. {
  55. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  56. return -ENODEV;
  57. }
  58. int dib8000_set_wbd_ref(struct dvb_frontend *fe, u16 value)
  59. {
  60. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  61. return -ENODEV;
  62. }
  63. #endif
  64. #endif