drxk.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. * single_master: Device is on the single master mode
  12. * no_i2c_bridge: Don't switch the I2C bridge to talk with tuner
  13. * antenna_gpio: GPIO bit used to control the antenna
  14. * antenna_dvbt: GPIO bit for changing antenna to DVB-C. A value of 1
  15. * means that 1=DVBC, 0 = DVBT. Zero means the opposite.
  16. * microcode_name: Name of the firmware file with the microcode
  17. *
  18. * On the *_gpio vars, bit 0 is UIO-1, bit 1 is UIO-2 and bit 2 is
  19. * UIO-3.
  20. */
  21. struct drxk_config {
  22. u8 adr;
  23. bool single_master;
  24. bool no_i2c_bridge;
  25. bool parallel_ts;
  26. bool antenna_dvbt;
  27. u16 antenna_gpio;
  28. int chunk_size;
  29. const char *microcode_name;
  30. };
  31. #if defined(CONFIG_DVB_DRXK) || (defined(CONFIG_DVB_DRXK_MODULE) \
  32. && defined(MODULE))
  33. extern struct dvb_frontend *drxk_attach(const struct drxk_config *config,
  34. struct i2c_adapter *i2c);
  35. #else
  36. static inline struct dvb_frontend *drxk_attach(const struct drxk_config *config,
  37. struct i2c_adapter *i2c)
  38. {
  39. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  40. return NULL;
  41. }
  42. #endif
  43. #endif