bsbe1.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * bsbe1.h - ALPS BSBE1 tuner support
  4. *
  5. * the project's page is at https://linuxtv.org
  6. */
  7. #ifndef BSBE1_H
  8. #define BSBE1_H
  9. static u8 alps_bsbe1_inittab[] = {
  10. 0x01, 0x15, /* XTAL = 4MHz, VCO = 352 MHz */
  11. 0x02, 0x30, /* MCLK = 88 MHz */
  12. 0x03, 0x00, /* ACR output 0 */
  13. 0x04, 0x7d, /* F22FR = 0x7d, F22 = f_VCO / 128 / 0x7d = 22 kHz */
  14. 0x05, 0x05, /* I2CT = 0, SCLT = 1, SDAT = 1 */
  15. 0x06, 0x00, /* DAC output 0 */
  16. 0x08, 0x40, /* DiSEqC off, LNB power on OP2/LOCK pin on */
  17. 0x09, 0x00, /* FIFO */
  18. 0x0c, 0x51, /* OP1/OP0 normal, val = 1 (LNB power on) */
  19. 0x0d, 0x82, /* DC offset compensation = on, beta_agc1 = 2 */
  20. 0x0f, 0x92, /* AGC1R */
  21. 0x10, 0x34, /* AGC2O */
  22. 0x11, 0x84, /* TLSR */
  23. 0x12, 0xb9, /* CFD */
  24. 0x15, 0xc9, /* lock detector threshold */
  25. 0x28, 0x00, /* out imp: normal, type: parallel, FEC mode: QPSK */
  26. 0x33, 0xfc, /* RS control */
  27. 0x34, 0x93, /* count viterbi bit errors per 2E18 bytes */
  28. 0xff, 0xff
  29. };
  30. static int alps_bsbe1_set_symbol_rate(struct dvb_frontend* fe, u32 srate, u32 ratio)
  31. {
  32. u8 aclk = 0;
  33. u8 bclk = 0;
  34. if (srate < 1500000) { aclk = 0xb7; bclk = 0x47; }
  35. else if (srate < 3000000) { aclk = 0xb7; bclk = 0x4b; }
  36. else if (srate < 7000000) { aclk = 0xb7; bclk = 0x4f; }
  37. else if (srate < 14000000) { aclk = 0xb7; bclk = 0x53; }
  38. else if (srate < 30000000) { aclk = 0xb6; bclk = 0x53; }
  39. else if (srate < 45000000) { aclk = 0xb4; bclk = 0x51; }
  40. stv0299_writereg(fe, 0x13, aclk);
  41. stv0299_writereg(fe, 0x14, bclk);
  42. stv0299_writereg(fe, 0x1f, (ratio >> 16) & 0xff);
  43. stv0299_writereg(fe, 0x20, (ratio >> 8) & 0xff);
  44. stv0299_writereg(fe, 0x21, (ratio ) & 0xf0);
  45. return 0;
  46. }
  47. static int alps_bsbe1_tuner_set_params(struct dvb_frontend *fe)
  48. {
  49. struct dtv_frontend_properties *p = &fe->dtv_property_cache;
  50. int ret;
  51. u8 data[4];
  52. u32 div;
  53. struct i2c_msg msg = { .addr = 0x61, .flags = 0, .buf = data, .len = sizeof(data) };
  54. struct i2c_adapter *i2c = fe->tuner_priv;
  55. if ((p->frequency < 950000) || (p->frequency > 2150000))
  56. return -EINVAL;
  57. div = p->frequency / 1000;
  58. data[0] = (div >> 8) & 0x7f;
  59. data[1] = div & 0xff;
  60. data[2] = 0x80 | ((div & 0x18000) >> 10) | 0x1;
  61. data[3] = 0xe0;
  62. if (fe->ops.i2c_gate_ctrl)
  63. fe->ops.i2c_gate_ctrl(fe, 1);
  64. ret = i2c_transfer(i2c, &msg, 1);
  65. return (ret != 1) ? -EIO : 0;
  66. }
  67. static struct stv0299_config alps_bsbe1_config = {
  68. .demod_address = 0x68,
  69. .inittab = alps_bsbe1_inittab,
  70. .mclk = 88000000UL,
  71. .invert = 1,
  72. .skip_reinit = 0,
  73. .min_delay_ms = 100,
  74. .set_symbol_rate = alps_bsbe1_set_symbol_rate,
  75. };
  76. #endif