1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25#ifndef BSBE1_H
26#define BSBE1_H
27
28static u8 alps_bsbe1_inittab[] = {
29 0x01, 0x15,
30 0x02, 0x30,
31 0x03, 0x00,
32 0x04, 0x7d,
33 0x05, 0x05,
34 0x06, 0x00,
35 0x08, 0x40,
36 0x09, 0x00,
37 0x0c, 0x51,
38 0x0d, 0x82,
39 0x0f, 0x92,
40 0x10, 0x34,
41 0x11, 0x84,
42 0x12, 0xb9,
43 0x15, 0xc9,
44 0x28, 0x00,
45 0x33, 0xfc,
46 0x34, 0x93,
47 0xff, 0xff
48};
49
50
51static int alps_bsbe1_set_symbol_rate(struct dvb_frontend* fe, u32 srate, u32 ratio)
52{
53 u8 aclk = 0;
54 u8 bclk = 0;
55
56 if (srate < 1500000) { aclk = 0xb7; bclk = 0x47; }
57 else if (srate < 3000000) { aclk = 0xb7; bclk = 0x4b; }
58 else if (srate < 7000000) { aclk = 0xb7; bclk = 0x4f; }
59 else if (srate < 14000000) { aclk = 0xb7; bclk = 0x53; }
60 else if (srate < 30000000) { aclk = 0xb6; bclk = 0x53; }
61 else if (srate < 45000000) { aclk = 0xb4; bclk = 0x51; }
62
63 stv0299_writereg(fe, 0x13, aclk);
64 stv0299_writereg(fe, 0x14, bclk);
65 stv0299_writereg(fe, 0x1f, (ratio >> 16) & 0xff);
66 stv0299_writereg(fe, 0x20, (ratio >> 8) & 0xff);
67 stv0299_writereg(fe, 0x21, (ratio ) & 0xf0);
68
69 return 0;
70}
71
72static int alps_bsbe1_tuner_set_params(struct dvb_frontend *fe)
73{
74 struct dtv_frontend_properties *p = &fe->dtv_property_cache;
75 int ret;
76 u8 data[4];
77 u32 div;
78 struct i2c_msg msg = { .addr = 0x61, .flags = 0, .buf = data, .len = sizeof(data) };
79 struct i2c_adapter *i2c = fe->tuner_priv;
80
81 if ((p->frequency < 950000) || (p->frequency > 2150000))
82 return -EINVAL;
83
84 div = p->frequency / 1000;
85 data[0] = (div >> 8) & 0x7f;
86 data[1] = div & 0xff;
87 data[2] = 0x80 | ((div & 0x18000) >> 10) | 0x1;
88 data[3] = 0xe0;
89
90 if (fe->ops.i2c_gate_ctrl)
91 fe->ops.i2c_gate_ctrl(fe, 1);
92 ret = i2c_transfer(i2c, &msg, 1);
93 return (ret != 1) ? -EIO : 0;
94}
95
96static struct stv0299_config alps_bsbe1_config = {
97 .demod_address = 0x68,
98 .inittab = alps_bsbe1_inittab,
99 .mclk = 88000000UL,
100 .invert = 1,
101 .skip_reinit = 0,
102 .min_delay_ms = 100,
103 .set_symbol_rate = alps_bsbe1_set_symbol_rate,
104};
105
106#endif
107