tda1004x.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. Driver for Philips tda1004xh OFDM Frontend
  3. (c) 2004 Andrew de Quincey
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. */
  16. #ifndef TDA1004X_H
  17. #define TDA1004X_H
  18. #include <linux/dvb/frontend.h>
  19. #include <linux/firmware.h>
  20. enum tda10046_xtal {
  21. TDA10046_XTAL_4M,
  22. TDA10046_XTAL_16M,
  23. };
  24. enum tda10046_agc {
  25. TDA10046_AGC_DEFAULT, /* original configuration */
  26. TDA10046_AGC_IFO_AUTO_NEG, /* IF AGC only, automatic, negtive */
  27. TDA10046_AGC_IFO_AUTO_POS, /* IF AGC only, automatic, positive */
  28. TDA10046_AGC_TDA827X, /* IF AGC only, special setup for tda827x */
  29. TDA10046_AGC_TDA827X_GPL, /* same as above, but GPIOs 0 */
  30. };
  31. enum tda10046_if {
  32. TDA10046_FREQ_3617, /* original config, 36,166 MHZ */
  33. TDA10046_FREQ_3613, /* 36,13 MHZ */
  34. TDA10046_FREQ_045, /* low IF, 4.0, 4.5, or 5.0 MHZ */
  35. TDA10046_FREQ_052, /* low IF, 5.1667 MHZ for tda9889 */
  36. };
  37. struct tda1004x_config
  38. {
  39. /* the demodulator's i2c address */
  40. u8 demod_address;
  41. /* does the "inversion" need inverted? */
  42. u8 invert;
  43. /* Does the OCLK signal need inverted? */
  44. u8 invert_oclk;
  45. /* Xtal frequency, 4 or 16MHz*/
  46. enum tda10046_xtal xtal_freq;
  47. /* IF frequency */
  48. enum tda10046_if if_freq;
  49. /* AGC configuration */
  50. enum tda10046_agc agc_config;
  51. /* PLL maintenance */
  52. int (*pll_init)(struct dvb_frontend* fe);
  53. void (*pll_sleep)(struct dvb_frontend* fe);
  54. int (*pll_set)(struct dvb_frontend* fe, struct dvb_frontend_parameters* params);
  55. /* request firmware for device */
  56. /* set this to NULL if the card has a firmware EEPROM */
  57. int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name);
  58. };
  59. extern struct dvb_frontend* tda10045_attach(const struct tda1004x_config* config,
  60. struct i2c_adapter* i2c);
  61. extern struct dvb_frontend* tda10046_attach(const struct tda1004x_config* config,
  62. struct i2c_adapter* i2c);
  63. extern int tda1004x_write_byte(struct dvb_frontend* fe, int reg, int data);
  64. #endif // TDA1004X_H