tda1004x.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. };
  30. /* Many (hybrid) boards use GPIO 1 and 3
  31. GPIO1 analog - dvb switch
  32. GPIO3 firmware eeprom address switch
  33. */
  34. enum tda10046_gpio {
  35. TDA10046_GPTRI = 0x00, /* All GPIOs tristate */
  36. TDA10046_GP00 = 0x40, /* GPIO3=0, GPIO1=0 */
  37. TDA10046_GP01 = 0x42, /* GPIO3=0, GPIO1=1 */
  38. TDA10046_GP10 = 0x48, /* GPIO3=1, GPIO1=0 */
  39. TDA10046_GP11 = 0x4a, /* GPIO3=1, GPIO1=1 */
  40. TDA10046_GP00_I = 0x80, /* GPIO3=0, GPIO1=0, invert in sleep mode*/
  41. TDA10046_GP01_I = 0x82, /* GPIO3=0, GPIO1=1, invert in sleep mode */
  42. TDA10046_GP10_I = 0x88, /* GPIO3=1, GPIO1=0, invert in sleep mode */
  43. TDA10046_GP11_I = 0x8a, /* GPIO3=1, GPIO1=1, invert in sleep mode */
  44. };
  45. enum tda10046_if {
  46. TDA10046_FREQ_3617, /* original config, 36,166 MHZ */
  47. TDA10046_FREQ_3613, /* 36,13 MHZ */
  48. TDA10046_FREQ_045, /* low IF, 4.0, 4.5, or 5.0 MHZ */
  49. TDA10046_FREQ_052, /* low IF, 5.1667 MHZ for tda9889 */
  50. };
  51. struct tda1004x_config
  52. {
  53. /* the demodulator's i2c address */
  54. u8 demod_address;
  55. /* does the "inversion" need inverted? */
  56. u8 invert;
  57. /* Does the OCLK signal need inverted? */
  58. u8 invert_oclk;
  59. /* Xtal frequency, 4 or 16MHz*/
  60. enum tda10046_xtal xtal_freq;
  61. /* IF frequency */
  62. enum tda10046_if if_freq;
  63. /* AGC configuration */
  64. enum tda10046_agc agc_config;
  65. /* setting of GPIO1 and 3 */
  66. enum tda10046_gpio gpio_config;
  67. /* slave address and configuration of the tuner */
  68. u8 tuner_address;
  69. u8 tuner_config;
  70. u8 antenna_switch;
  71. /* if the board uses another I2c Bridge (tda8290), its address */
  72. u8 i2c_gate;
  73. /* request firmware for device */
  74. int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name);
  75. };
  76. enum tda1004x_demod {
  77. TDA1004X_DEMOD_TDA10045,
  78. TDA1004X_DEMOD_TDA10046,
  79. };
  80. struct tda1004x_state {
  81. struct i2c_adapter* i2c;
  82. const struct tda1004x_config* config;
  83. struct dvb_frontend frontend;
  84. /* private demod data */
  85. enum tda1004x_demod demod_type;
  86. };
  87. #if defined(CONFIG_DVB_TDA1004X) || (defined(CONFIG_DVB_TDA1004X_MODULE) && defined(MODULE))
  88. extern struct dvb_frontend* tda10045_attach(const struct tda1004x_config* config,
  89. struct i2c_adapter* i2c);
  90. extern struct dvb_frontend* tda10046_attach(const struct tda1004x_config* config,
  91. struct i2c_adapter* i2c);
  92. #else
  93. static inline struct dvb_frontend* tda10045_attach(const struct tda1004x_config* config,
  94. struct i2c_adapter* i2c)
  95. {
  96. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__);
  97. return NULL;
  98. }
  99. static inline struct dvb_frontend* tda10046_attach(const struct tda1004x_config* config,
  100. struct i2c_adapter* i2c)
  101. {
  102. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__);
  103. return NULL;
  104. }
  105. #endif // CONFIG_DVB_TDA1004X
  106. static inline int tda1004x_writereg(struct dvb_frontend *fe, u8 reg, u8 val) {
  107. int r = 0;
  108. u8 buf[] = {reg, val};
  109. if (fe->ops.write)
  110. r = fe->ops.write(fe, buf, 2);
  111. return r;
  112. }
  113. #endif // TDA1004X_H