drxk.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #ifndef _DRXK_H_
  2. #define _DRXK_H_
  3. #include <linux/kconfig.h>
  4. #include <linux/types.h>
  5. #include <linux/i2c.h>
  6. /**
  7. * struct drxk_config - Configure the initial parameters for DRX-K
  8. *
  9. * @adr: I2C address of the DRX-K
  10. * @parallel_ts: True means that the device uses parallel TS,
  11. * Serial otherwise.
  12. * @dynamic_clk: True means that the clock will be dynamically
  13. * adjusted. Static clock otherwise.
  14. * @enable_merr_cfg: Enable SIO_PDR_PERR_CFG/SIO_PDR_MVAL_CFG.
  15. * @single_master: Device is on the single master mode
  16. * @no_i2c_bridge: Don't switch the I2C bridge to talk with tuner
  17. * @antenna_gpio: GPIO bit used to control the antenna
  18. * @antenna_dvbt: GPIO bit for changing antenna to DVB-C. A value of 1
  19. * means that 1=DVBC, 0 = DVBT. Zero means the opposite.
  20. * @mpeg_out_clk_strength: DRXK Mpeg output clock drive strength.
  21. * @microcode_name: Name of the firmware file with the microcode
  22. * @qam_demod_parameter_count: The number of parameters used for the command
  23. * to set the demodulator parameters. All
  24. * firmwares are using the 2-parameter commmand.
  25. * An exception is the "drxk_a3.mc" firmware,
  26. * which uses the 4-parameter command.
  27. * A value of 0 (default) or lower indicates that
  28. * the correct number of parameters will be
  29. * automatically detected.
  30. *
  31. * On the *_gpio vars, bit 0 is UIO-1, bit 1 is UIO-2 and bit 2 is
  32. * UIO-3.
  33. */
  34. struct drxk_config {
  35. u8 adr;
  36. bool single_master;
  37. bool no_i2c_bridge;
  38. bool parallel_ts;
  39. bool dynamic_clk;
  40. bool enable_merr_cfg;
  41. bool antenna_dvbt;
  42. u16 antenna_gpio;
  43. u8 mpeg_out_clk_strength;
  44. int chunk_size;
  45. const char *microcode_name;
  46. int qam_demod_parameter_count;
  47. };
  48. #if IS_REACHABLE(CONFIG_DVB_DRXK)
  49. extern struct dvb_frontend *drxk_attach(const struct drxk_config *config,
  50. struct i2c_adapter *i2c);
  51. #else
  52. static inline struct dvb_frontend *drxk_attach(const struct drxk_config *config,
  53. struct i2c_adapter *i2c)
  54. {
  55. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  56. return NULL;
  57. }
  58. #endif
  59. #endif