hd29l2.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * HDIC HD29L2 DMB-TH demodulator driver
  3. *
  4. * Copyright (C) 2011 Metropolia University of Applied Sciences, Electria R&D
  5. *
  6. * Author: Antti Palosaari <crope@iki.fi>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. */
  22. #ifndef HD29L2_H
  23. #define HD29L2_H
  24. #include <linux/dvb/frontend.h>
  25. struct hd29l2_config {
  26. /*
  27. * demodulator I2C address
  28. */
  29. u8 i2c_addr;
  30. /*
  31. * tuner I2C address
  32. * only needed when tuner is behind demod I2C-gate
  33. */
  34. u8 tuner_i2c_addr;
  35. /*
  36. * TS settings
  37. */
  38. #define HD29L2_TS_SERIAL 0x00
  39. #define HD29L2_TS_PARALLEL 0x80
  40. #define HD29L2_TS_CLK_NORMAL 0x40
  41. #define HD29L2_TS_CLK_INVERTED 0x00
  42. #define HD29L2_TS_CLK_GATED 0x20
  43. #define HD29L2_TS_CLK_FREE 0x00
  44. u8 ts_mode;
  45. };
  46. #if defined(CONFIG_DVB_HD29L2) || \
  47. (defined(CONFIG_DVB_HD29L2_MODULE) && defined(MODULE))
  48. extern struct dvb_frontend *hd29l2_attach(const struct hd29l2_config *config,
  49. struct i2c_adapter *i2c);
  50. #else
  51. static inline struct dvb_frontend *hd29l2_attach(
  52. const struct hd29l2_config *config, struct i2c_adapter *i2c)
  53. {
  54. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  55. return NULL;
  56. }
  57. #endif
  58. #endif /* HD29L2_H */