dib3000mc.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * Driver for DiBcom DiB3000MC/P-demodulator.
  3. *
  4. * Copyright (C) 2004-6 DiBcom (http://www.dibcom.fr/)
  5. * Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@posteo.de)
  6. *
  7. * This code is partially based on the previous dib3000mc.c .
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation, version 2.
  12. */
  13. #ifndef DIB3000MC_H
  14. #define DIB3000MC_H
  15. #include "dibx000_common.h"
  16. struct dib3000mc_config {
  17. struct dibx000_agc_config *agc;
  18. u8 phase_noise_mode;
  19. u8 impulse_noise_mode;
  20. u8 pwm3_inversion;
  21. u8 use_pwm3;
  22. u16 pwm3_value;
  23. u16 max_time;
  24. u16 ln_adc_level;
  25. u8 agc_command1 :1;
  26. u8 agc_command2 :1;
  27. u8 mobile_mode;
  28. u8 output_mpeg2_in_188_bytes;
  29. };
  30. #define DEFAULT_DIB3000MC_I2C_ADDRESS 16
  31. #define DEFAULT_DIB3000P_I2C_ADDRESS 24
  32. #if IS_REACHABLE(CONFIG_DVB_DIB3000MC)
  33. extern struct dvb_frontend *dib3000mc_attach(struct i2c_adapter *i2c_adap,
  34. u8 i2c_addr,
  35. struct dib3000mc_config *cfg);
  36. extern int dib3000mc_i2c_enumeration(struct i2c_adapter *i2c,
  37. int no_of_demods, u8 default_addr,
  38. struct dib3000mc_config cfg[]);
  39. extern
  40. struct i2c_adapter *dib3000mc_get_tuner_i2c_master(struct dvb_frontend *demod,
  41. int gating);
  42. #else
  43. static inline
  44. struct dvb_frontend *dib3000mc_attach(struct i2c_adapter *i2c_adap, u8 i2c_addr,
  45. struct dib3000mc_config *cfg)
  46. {
  47. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  48. return NULL;
  49. }
  50. static inline
  51. int dib3000mc_i2c_enumeration(struct i2c_adapter *i2c,
  52. int no_of_demods, u8 default_addr,
  53. struct dib3000mc_config cfg[])
  54. {
  55. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  56. return -ENODEV;
  57. }
  58. static inline
  59. struct i2c_adapter *dib3000mc_get_tuner_i2c_master(struct dvb_frontend *demod,
  60. int gating)
  61. {
  62. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  63. return NULL;
  64. }
  65. #endif // CONFIG_DVB_DIB3000MC
  66. extern int dib3000mc_pid_control(struct dvb_frontend *fe, int index, int pid,int onoff);
  67. extern int dib3000mc_pid_parse(struct dvb_frontend *fe, int onoff);
  68. extern void dib3000mc_set_config(struct dvb_frontend *, struct dib3000mc_config *);
  69. #endif