bsru6.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * bsru6.h - ALPS BSRU6 tuner support (moved from budget-ci.c)
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version 2
  7. * of the License, or (at your option) any later version.
  8. *
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
  20. *
  21. *
  22. * the project's page is at http://www.linuxtv.org
  23. */
  24. #ifndef BSRU6_H
  25. #define BSRU6_H
  26. static u8 alps_bsru6_inittab[] = {
  27. 0x01, 0x15,
  28. 0x02, 0x30,
  29. 0x03, 0x00,
  30. 0x04, 0x7d, /* F22FR = 0x7d, F22 = f_VCO / 128 / 0x7d = 22 kHz */
  31. 0x05, 0x35, /* I2CT = 0, SCLT = 1, SDAT = 1 */
  32. 0x06, 0x40, /* DAC not used, set to high impendance mode */
  33. 0x07, 0x00, /* DAC LSB */
  34. 0x08, 0x40, /* DiSEqC off, LNB power on OP2/LOCK pin on */
  35. 0x09, 0x00, /* FIFO */
  36. 0x0c, 0x51, /* OP1 ctl = Normal, OP1 val = 1 (LNB Power ON) */
  37. 0x0d, 0x82, /* DC offset compensation = ON, beta_agc1 = 2 */
  38. 0x0e, 0x23, /* alpha_tmg = 2, beta_tmg = 3 */
  39. 0x10, 0x3f, // AGC2 0x3d
  40. 0x11, 0x84,
  41. 0x12, 0xb9,
  42. 0x15, 0xc9, // lock detector threshold
  43. 0x16, 0x00,
  44. 0x17, 0x00,
  45. 0x18, 0x00,
  46. 0x19, 0x00,
  47. 0x1a, 0x00,
  48. 0x1f, 0x50,
  49. 0x20, 0x00,
  50. 0x21, 0x00,
  51. 0x22, 0x00,
  52. 0x23, 0x00,
  53. 0x28, 0x00, // out imp: normal out type: parallel FEC mode:0
  54. 0x29, 0x1e, // 1/2 threshold
  55. 0x2a, 0x14, // 2/3 threshold
  56. 0x2b, 0x0f, // 3/4 threshold
  57. 0x2c, 0x09, // 5/6 threshold
  58. 0x2d, 0x05, // 7/8 threshold
  59. 0x2e, 0x01,
  60. 0x31, 0x1f, // test all FECs
  61. 0x32, 0x19, // viterbi and synchro search
  62. 0x33, 0xfc, // rs control
  63. 0x34, 0x93, // error control
  64. 0x0f, 0x52,
  65. 0xff, 0xff
  66. };
  67. static int alps_bsru6_set_symbol_rate(struct dvb_frontend *fe, u32 srate, u32 ratio)
  68. {
  69. u8 aclk = 0;
  70. u8 bclk = 0;
  71. if (srate < 1500000) {
  72. aclk = 0xb7;
  73. bclk = 0x47;
  74. } else if (srate < 3000000) {
  75. aclk = 0xb7;
  76. bclk = 0x4b;
  77. } else if (srate < 7000000) {
  78. aclk = 0xb7;
  79. bclk = 0x4f;
  80. } else if (srate < 14000000) {
  81. aclk = 0xb7;
  82. bclk = 0x53;
  83. } else if (srate < 30000000) {
  84. aclk = 0xb6;
  85. bclk = 0x53;
  86. } else if (srate < 45000000) {
  87. aclk = 0xb4;
  88. bclk = 0x51;
  89. }
  90. stv0299_writereg(fe, 0x13, aclk);
  91. stv0299_writereg(fe, 0x14, bclk);
  92. stv0299_writereg(fe, 0x1f, (ratio >> 16) & 0xff);
  93. stv0299_writereg(fe, 0x20, (ratio >> 8) & 0xff);
  94. stv0299_writereg(fe, 0x21, ratio & 0xf0);
  95. return 0;
  96. }
  97. static int alps_bsru6_tuner_set_params(struct dvb_frontend *fe)
  98. {
  99. struct dtv_frontend_properties *p = &fe->dtv_property_cache;
  100. u8 buf[4];
  101. u32 div;
  102. struct i2c_msg msg = { .addr = 0x61, .flags = 0, .buf = buf, .len = sizeof(buf) };
  103. struct i2c_adapter *i2c = fe->tuner_priv;
  104. if ((p->frequency < 950000) || (p->frequency > 2150000))
  105. return -EINVAL;
  106. div = (p->frequency + (125 - 1)) / 125; /* round correctly */
  107. buf[0] = (div >> 8) & 0x7f;
  108. buf[1] = div & 0xff;
  109. buf[2] = 0x80 | ((div & 0x18000) >> 10) | 4;
  110. buf[3] = 0xC4;
  111. if (p->frequency > 1530000)
  112. buf[3] = 0xc0;
  113. if (fe->ops.i2c_gate_ctrl)
  114. fe->ops.i2c_gate_ctrl(fe, 1);
  115. if (i2c_transfer(i2c, &msg, 1) != 1)
  116. return -EIO;
  117. return 0;
  118. }
  119. static struct stv0299_config alps_bsru6_config = {
  120. .demod_address = 0x68,
  121. .inittab = alps_bsru6_inittab,
  122. .mclk = 88000000UL,
  123. .invert = 1,
  124. .skip_reinit = 0,
  125. .lock_output = STV0299_LOCKOUTPUT_1,
  126. .volt13_op0_op1 = STV0299_VOLT13_OP1,
  127. .min_delay_ms = 100,
  128. .set_symbol_rate = alps_bsru6_set_symbol_rate,
  129. };
  130. #endif