drxk.h 2.1 KB

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