tda1004x.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. Driver for Philips tda1004xh OFDM Frontend
  4. (c) 2004 Andrew de Quincey
  5. */
  6. #ifndef TDA1004X_H
  7. #define TDA1004X_H
  8. #include <linux/dvb/frontend.h>
  9. #include <linux/firmware.h>
  10. enum tda10046_xtal {
  11. TDA10046_XTAL_4M,
  12. TDA10046_XTAL_16M,
  13. };
  14. enum tda10046_agc {
  15. TDA10046_AGC_DEFAULT, /* original configuration */
  16. TDA10046_AGC_IFO_AUTO_NEG, /* IF AGC only, automatic, negative */
  17. TDA10046_AGC_IFO_AUTO_POS, /* IF AGC only, automatic, positive */
  18. TDA10046_AGC_TDA827X, /* IF AGC only, special setup for tda827x */
  19. };
  20. /* Many (hybrid) boards use GPIO 1 and 3
  21. GPIO1 analog - dvb switch
  22. GPIO3 firmware eeprom address switch
  23. */
  24. enum tda10046_gpio {
  25. TDA10046_GPTRI = 0x00, /* All GPIOs tristate */
  26. TDA10046_GP00 = 0x40, /* GPIO3=0, GPIO1=0 */
  27. TDA10046_GP01 = 0x42, /* GPIO3=0, GPIO1=1 */
  28. TDA10046_GP10 = 0x48, /* GPIO3=1, GPIO1=0 */
  29. TDA10046_GP11 = 0x4a, /* GPIO3=1, GPIO1=1 */
  30. TDA10046_GP00_I = 0x80, /* GPIO3=0, GPIO1=0, invert in sleep mode*/
  31. TDA10046_GP01_I = 0x82, /* GPIO3=0, GPIO1=1, invert in sleep mode */
  32. TDA10046_GP10_I = 0x88, /* GPIO3=1, GPIO1=0, invert in sleep mode */
  33. TDA10046_GP11_I = 0x8a, /* GPIO3=1, GPIO1=1, invert in sleep mode */
  34. };
  35. enum tda10046_if {
  36. TDA10046_FREQ_3617, /* original config, 36,166 MHZ */
  37. TDA10046_FREQ_3613, /* 36,13 MHZ */
  38. TDA10046_FREQ_045, /* low IF, 4.0, 4.5, or 5.0 MHZ */
  39. TDA10046_FREQ_052, /* low IF, 5.1667 MHZ for tda9889 */
  40. };
  41. enum tda10046_tsout {
  42. TDA10046_TS_PARALLEL = 0x00, /* parallel transport stream, default */
  43. TDA10046_TS_SERIAL = 0x01, /* serial transport stream */
  44. };
  45. struct tda1004x_config
  46. {
  47. /* the demodulator's i2c address */
  48. u8 demod_address;
  49. /* does the "inversion" need inverted? */
  50. u8 invert;
  51. /* Does the OCLK signal need inverted? */
  52. u8 invert_oclk;
  53. /* parallel or serial transport stream */
  54. enum tda10046_tsout ts_mode;
  55. /* Xtal frequency, 4 or 16MHz*/
  56. enum tda10046_xtal xtal_freq;
  57. /* IF frequency */
  58. enum tda10046_if if_freq;
  59. /* AGC configuration */
  60. enum tda10046_agc agc_config;
  61. /* setting of GPIO1 and 3 */
  62. enum tda10046_gpio gpio_config;
  63. /* slave address and configuration of the tuner */
  64. u8 tuner_address;
  65. u8 antenna_switch;
  66. /* if the board uses another I2c Bridge (tda8290), its address */
  67. u8 i2c_gate;
  68. /* request firmware for device */
  69. int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name);
  70. };
  71. enum tda1004x_demod {
  72. TDA1004X_DEMOD_TDA10045,
  73. TDA1004X_DEMOD_TDA10046,
  74. };
  75. struct tda1004x_state {
  76. struct i2c_adapter* i2c;
  77. const struct tda1004x_config* config;
  78. struct dvb_frontend frontend;
  79. /* private demod data */
  80. enum tda1004x_demod demod_type;
  81. };
  82. #if IS_REACHABLE(CONFIG_DVB_TDA1004X)
  83. extern struct dvb_frontend* tda10045_attach(const struct tda1004x_config* config,
  84. struct i2c_adapter* i2c);
  85. extern struct dvb_frontend* tda10046_attach(const struct tda1004x_config* config,
  86. struct i2c_adapter* i2c);
  87. #else
  88. static inline struct dvb_frontend* tda10045_attach(const struct tda1004x_config* config,
  89. struct i2c_adapter* i2c)
  90. {
  91. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  92. return NULL;
  93. }
  94. static inline struct dvb_frontend* tda10046_attach(const struct tda1004x_config* config,
  95. struct i2c_adapter* i2c)
  96. {
  97. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  98. return NULL;
  99. }
  100. #endif // CONFIG_DVB_TDA1004X
  101. static inline int tda1004x_writereg(struct dvb_frontend *fe, u8 reg, u8 val) {
  102. int r = 0;
  103. u8 buf[] = {reg, val};
  104. if (fe->ops.write)
  105. r = fe->ops.write(fe, buf, 2);
  106. return r;
  107. }
  108. #endif // TDA1004X_H