1 /* DVB USB compliant Linux driver for the Friio USB2.0 ISDB-T receiver.
2  *
3  * Copyright (C) 2009 Akihiro Tsukada <tskd2@yahoo.co.jp>
4  *
5  * This module is based off the the gl861 and vp702x modules.
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by the Free
9  * Software Foundation, version 2.
10  *
11  * see Documentation/dvb/README.dvb-usb for more information
12  */
13 #include <linux/init.h>
14 #include <linux/string.h>
15 #include <linux/slab.h>
16 
17 #include "friio.h"
18 
19 struct jdvbt90502_state {
20 	struct i2c_adapter *i2c;
21 	struct dvb_frontend frontend;
22 	struct jdvbt90502_config config;
23 };
24 
25 /* NOTE: TC90502 has 16bit register-address? */
26 /* register 0x0100 is used for reading PLL status, so reg is u16 here */
jdvbt90502_reg_read(struct jdvbt90502_state * state,const u16 reg,u8 * buf,const size_t count)27 static int jdvbt90502_reg_read(struct jdvbt90502_state *state,
28 			       const u16 reg, u8 *buf, const size_t count)
29 {
30 	int ret;
31 	u8 wbuf[3];
32 	struct i2c_msg msg[2];
33 
34 	wbuf[0] = reg & 0xFF;
35 	wbuf[1] = 0;
36 	wbuf[2] = reg >> 8;
37 
38 	msg[0].addr = state->config.demod_address;
39 	msg[0].flags = 0;
40 	msg[0].buf = wbuf;
41 	msg[0].len = sizeof(wbuf);
42 
43 	msg[1].addr = msg[0].addr;
44 	msg[1].flags = I2C_M_RD;
45 	msg[1].buf = buf;
46 	msg[1].len = count;
47 
48 	ret = i2c_transfer(state->i2c, msg, 2);
49 	if (ret != 2) {
50 		deb_fe(" reg read failed.\n");
51 		return -EREMOTEIO;
52 	}
53 	return 0;
54 }
55 
56 /* currently 16bit register-address is not used, so reg is u8 here */
jdvbt90502_single_reg_write(struct jdvbt90502_state * state,const u8 reg,const u8 val)57 static int jdvbt90502_single_reg_write(struct jdvbt90502_state *state,
58 				       const u8 reg, const u8 val)
59 {
60 	struct i2c_msg msg;
61 	u8 wbuf[2];
62 
63 	wbuf[0] = reg;
64 	wbuf[1] = val;
65 
66 	msg.addr = state->config.demod_address;
67 	msg.flags = 0;
68 	msg.buf = wbuf;
69 	msg.len = sizeof(wbuf);
70 
71 	if (i2c_transfer(state->i2c, &msg, 1) != 1) {
72 		deb_fe(" reg write failed.");
73 		return -EREMOTEIO;
74 	}
75 	return 0;
76 }
77 
_jdvbt90502_write(struct dvb_frontend * fe,const u8 buf[],int len)78 static int _jdvbt90502_write(struct dvb_frontend *fe, const u8 buf[], int len)
79 {
80 	struct jdvbt90502_state *state = fe->demodulator_priv;
81 	int err, i;
82 	for (i = 0; i < len - 1; i++) {
83 		err = jdvbt90502_single_reg_write(state,
84 						  buf[0] + i, buf[i + 1]);
85 		if (err)
86 			return err;
87 	}
88 
89 	return 0;
90 }
91 
92 /* read pll status byte via the demodulator's I2C register */
93 /* note: Win box reads it by 8B block at the I2C addr 0x30 from reg:0x80 */
jdvbt90502_pll_read(struct jdvbt90502_state * state,u8 * result)94 static int jdvbt90502_pll_read(struct jdvbt90502_state *state, u8 *result)
95 {
96 	int ret;
97 
98 	/* +1 for reading */
99 	u8 pll_addr_byte = (state->config.pll_address << 1) + 1;
100 
101 	*result = 0;
102 
103 	ret = jdvbt90502_single_reg_write(state, JDVBT90502_2ND_I2C_REG,
104 					  pll_addr_byte);
105 	if (ret)
106 		goto error;
107 
108 	ret = jdvbt90502_reg_read(state, 0x0100, result, 1);
109 	if (ret)
110 		goto error;
111 
112 	deb_fe("PLL read val:%02x\n", *result);
113 	return 0;
114 
115 error:
116 	deb_fe("%s:ret == %d\n", __func__, ret);
117 	return -EREMOTEIO;
118 }
119 
120 
121 /* set pll frequency via the demodulator's I2C register */
jdvbt90502_pll_set_freq(struct jdvbt90502_state * state,u32 freq)122 static int jdvbt90502_pll_set_freq(struct jdvbt90502_state *state, u32 freq)
123 {
124 	int ret;
125 	int retry;
126 	u8 res1;
127 	u8 res2[9];
128 
129 	u8 pll_freq_cmd[PLL_CMD_LEN];
130 	u8 pll_agc_cmd[PLL_CMD_LEN];
131 	struct i2c_msg msg[2];
132 	u32 f;
133 
134 	deb_fe("%s: freq=%d, step=%d\n", __func__, freq,
135 	       state->frontend.ops.info.frequency_stepsize);
136 	/* freq -> oscilator frequency conversion. */
137 	/* freq: 473,000,000 + n*6,000,000 [+ 142857 (center freq. shift)] */
138 	f = freq / state->frontend.ops.info.frequency_stepsize;
139 	/* add 399[1/7 MHZ] = 57MHz for the IF  */
140 	f += 399;
141 	/* add center frequency shift if necessary */
142 	if (f % 7 == 0)
143 		f++;
144 	pll_freq_cmd[DEMOD_REDIRECT_REG] = JDVBT90502_2ND_I2C_REG; /* 0xFE */
145 	pll_freq_cmd[ADDRESS_BYTE] = state->config.pll_address << 1;
146 	pll_freq_cmd[DIVIDER_BYTE1] = (f >> 8) & 0x7F;
147 	pll_freq_cmd[DIVIDER_BYTE2] = f & 0xFF;
148 	pll_freq_cmd[CONTROL_BYTE] = 0xB2; /* ref.divider:28, 4MHz/28=1/7MHz */
149 	pll_freq_cmd[BANDSWITCH_BYTE] = 0x08;	/* UHF band */
150 
151 	msg[0].addr = state->config.demod_address;
152 	msg[0].flags = 0;
153 	msg[0].buf = pll_freq_cmd;
154 	msg[0].len = sizeof(pll_freq_cmd);
155 
156 	ret = i2c_transfer(state->i2c, &msg[0], 1);
157 	if (ret != 1)
158 		goto error;
159 
160 	udelay(50);
161 
162 	pll_agc_cmd[DEMOD_REDIRECT_REG] = pll_freq_cmd[DEMOD_REDIRECT_REG];
163 	pll_agc_cmd[ADDRESS_BYTE] = pll_freq_cmd[ADDRESS_BYTE];
164 	pll_agc_cmd[DIVIDER_BYTE1] = pll_freq_cmd[DIVIDER_BYTE1];
165 	pll_agc_cmd[DIVIDER_BYTE2] = pll_freq_cmd[DIVIDER_BYTE2];
166 	pll_agc_cmd[CONTROL_BYTE] = 0x9A; /*  AGC_CTRL instead of BANDSWITCH */
167 	pll_agc_cmd[AGC_CTRL_BYTE] = 0x50;
168 	/* AGC Time Constant 2s, AGC take-over point:103dBuV(lowest) */
169 
170 	msg[1].addr = msg[0].addr;
171 	msg[1].flags = 0;
172 	msg[1].buf = pll_agc_cmd;
173 	msg[1].len = sizeof(pll_agc_cmd);
174 
175 	ret = i2c_transfer(state->i2c, &msg[1], 1);
176 	if (ret != 1)
177 		goto error;
178 
179 	/* I don't know what these cmds are for,  */
180 	/* but the USB log on a windows box contains them */
181 	ret = jdvbt90502_single_reg_write(state, 0x01, 0x40);
182 	ret |= jdvbt90502_single_reg_write(state, 0x01, 0x00);
183 	if (ret)
184 		goto error;
185 	udelay(100);
186 
187 	/* wait for the demod to be ready? */
188 #define RETRY_COUNT 5
189 	for (retry = 0; retry < RETRY_COUNT; retry++) {
190 		ret = jdvbt90502_reg_read(state, 0x0096, &res1, 1);
191 		if (ret)
192 			goto error;
193 		/* if (res1 != 0x00) goto error; */
194 		ret = jdvbt90502_reg_read(state, 0x00B0, res2, sizeof(res2));
195 		if (ret)
196 			goto error;
197 		if (res2[0] >= 0xA7)
198 			break;
199 		msleep(100);
200 	}
201 	if (retry >= RETRY_COUNT) {
202 		deb_fe("%s: FE does not get ready after freq setting.\n",
203 		       __func__);
204 		return -EREMOTEIO;
205 	}
206 
207 	return 0;
208 error:
209 	deb_fe("%s:ret == %d\n", __func__, ret);
210 	return -EREMOTEIO;
211 }
212 
jdvbt90502_read_status(struct dvb_frontend * fe,enum fe_status * state)213 static int jdvbt90502_read_status(struct dvb_frontend *fe,
214 				  enum fe_status *state)
215 {
216 	u8 result;
217 	int ret;
218 
219 	*state = FE_HAS_SIGNAL;
220 
221 	ret = jdvbt90502_pll_read(fe->demodulator_priv, &result);
222 	if (ret) {
223 		deb_fe("%s:ret == %d\n", __func__, ret);
224 		return -EREMOTEIO;
225 	}
226 
227 	*state = FE_HAS_SIGNAL
228 		| FE_HAS_CARRIER
229 		| FE_HAS_VITERBI
230 		| FE_HAS_SYNC;
231 
232 	if (result & PLL_STATUS_LOCKED)
233 		*state |= FE_HAS_LOCK;
234 
235 	return 0;
236 }
237 
jdvbt90502_read_signal_strength(struct dvb_frontend * fe,u16 * strength)238 static int jdvbt90502_read_signal_strength(struct dvb_frontend *fe,
239 					   u16 *strength)
240 {
241 	int ret;
242 	u8 rbuf[37];
243 
244 	*strength = 0;
245 
246 	/* status register (incl. signal strength) : 0x89  */
247 	/* TODO: read just the necessary registers [0x8B..0x8D]? */
248 	ret = jdvbt90502_reg_read(fe->demodulator_priv, 0x0089,
249 				  rbuf, sizeof(rbuf));
250 
251 	if (ret) {
252 		deb_fe("%s:ret == %d\n", __func__, ret);
253 		return -EREMOTEIO;
254 	}
255 
256 	/* signal_strength: rbuf[2-4] (24bit BE), use lower 16bit for now. */
257 	*strength = (rbuf[3] << 8) + rbuf[4];
258 	if (rbuf[2])
259 		*strength = 0xffff;
260 
261 	return 0;
262 }
263 
264 
265 /* filter out un-supported properties to notify users */
jdvbt90502_set_property(struct dvb_frontend * fe,struct dtv_property * tvp)266 static int jdvbt90502_set_property(struct dvb_frontend *fe,
267 				   struct dtv_property *tvp)
268 {
269 	int r = 0;
270 
271 	switch (tvp->cmd) {
272 	case DTV_DELIVERY_SYSTEM:
273 		if (tvp->u.data != SYS_ISDBT)
274 			r = -EINVAL;
275 		break;
276 	case DTV_CLEAR:
277 	case DTV_TUNE:
278 	case DTV_FREQUENCY:
279 		break;
280 	default:
281 		r = -EINVAL;
282 	}
283 	return r;
284 }
285 
jdvbt90502_get_frontend(struct dvb_frontend * fe)286 static int jdvbt90502_get_frontend(struct dvb_frontend *fe)
287 {
288 	struct dtv_frontend_properties *p = &fe->dtv_property_cache;
289 	p->inversion = INVERSION_AUTO;
290 	p->bandwidth_hz = 6000000;
291 	p->code_rate_HP = FEC_AUTO;
292 	p->code_rate_LP = FEC_AUTO;
293 	p->modulation = QAM_64;
294 	p->transmission_mode = TRANSMISSION_MODE_AUTO;
295 	p->guard_interval = GUARD_INTERVAL_AUTO;
296 	p->hierarchy = HIERARCHY_AUTO;
297 	return 0;
298 }
299 
jdvbt90502_set_frontend(struct dvb_frontend * fe)300 static int jdvbt90502_set_frontend(struct dvb_frontend *fe)
301 {
302 	struct dtv_frontend_properties *p = &fe->dtv_property_cache;
303 
304 	/**
305 	 * NOTE: ignore all the parameters except frequency.
306 	 *       others should be fixed to the proper value for ISDB-T,
307 	 *       but don't check here.
308 	 */
309 
310 	struct jdvbt90502_state *state = fe->demodulator_priv;
311 	int ret;
312 
313 	deb_fe("%s: Freq:%d\n", __func__, p->frequency);
314 
315 	/* for recovery from DTV_CLEAN */
316 	fe->dtv_property_cache.delivery_system = SYS_ISDBT;
317 
318 	ret = jdvbt90502_pll_set_freq(state, p->frequency);
319 	if (ret) {
320 		deb_fe("%s:ret == %d\n", __func__, ret);
321 		return -EREMOTEIO;
322 	}
323 
324 	return 0;
325 }
326 
327 
328 /**
329  * (reg, val) commad list to initialize this module.
330  *  captured on a Windows box.
331  */
332 static u8 init_code[][2] = {
333 	{0x01, 0x40},
334 	{0x04, 0x38},
335 	{0x05, 0x40},
336 	{0x07, 0x40},
337 	{0x0F, 0x4F},
338 	{0x11, 0x21},
339 	{0x12, 0x0B},
340 	{0x13, 0x2F},
341 	{0x14, 0x31},
342 	{0x16, 0x02},
343 	{0x21, 0xC4},
344 	{0x22, 0x20},
345 	{0x2C, 0x79},
346 	{0x2D, 0x34},
347 	{0x2F, 0x00},
348 	{0x30, 0x28},
349 	{0x31, 0x31},
350 	{0x32, 0xDF},
351 	{0x38, 0x01},
352 	{0x39, 0x78},
353 	{0x3B, 0x33},
354 	{0x3C, 0x33},
355 	{0x48, 0x90},
356 	{0x51, 0x68},
357 	{0x5E, 0x38},
358 	{0x71, 0x00},
359 	{0x72, 0x08},
360 	{0x77, 0x00},
361 	{0xC0, 0x21},
362 	{0xC1, 0x10},
363 	{0xE4, 0x1A},
364 	{0xEA, 0x1F},
365 	{0x77, 0x00},
366 	{0x71, 0x00},
367 	{0x71, 0x00},
368 	{0x76, 0x0C},
369 };
370 
371 static const int init_code_len = sizeof(init_code) / sizeof(u8[2]);
372 
jdvbt90502_init(struct dvb_frontend * fe)373 static int jdvbt90502_init(struct dvb_frontend *fe)
374 {
375 	int i = -1;
376 	int ret;
377 	struct i2c_msg msg;
378 
379 	struct jdvbt90502_state *state = fe->demodulator_priv;
380 
381 	deb_fe("%s called.\n", __func__);
382 
383 	msg.addr = state->config.demod_address;
384 	msg.flags = 0;
385 	msg.len = 2;
386 	for (i = 0; i < init_code_len; i++) {
387 		msg.buf = init_code[i];
388 		ret = i2c_transfer(state->i2c, &msg, 1);
389 		if (ret != 1)
390 			goto error;
391 	}
392 	fe->dtv_property_cache.delivery_system = SYS_ISDBT;
393 	msleep(100);
394 
395 	return 0;
396 
397 error:
398 	deb_fe("%s: init_code[%d] failed. ret==%d\n", __func__, i, ret);
399 	return -EREMOTEIO;
400 }
401 
402 
jdvbt90502_release(struct dvb_frontend * fe)403 static void jdvbt90502_release(struct dvb_frontend *fe)
404 {
405 	struct jdvbt90502_state *state = fe->demodulator_priv;
406 	kfree(state);
407 }
408 
409 
410 static struct dvb_frontend_ops jdvbt90502_ops;
411 
jdvbt90502_attach(struct dvb_usb_device * d)412 struct dvb_frontend *jdvbt90502_attach(struct dvb_usb_device *d)
413 {
414 	struct jdvbt90502_state *state = NULL;
415 
416 	deb_info("%s called.\n", __func__);
417 
418 	/* allocate memory for the internal state */
419 	state = kzalloc(sizeof(struct jdvbt90502_state), GFP_KERNEL);
420 	if (state == NULL)
421 		goto error;
422 
423 	/* setup the state */
424 	state->i2c = &d->i2c_adap;
425 	state->config = friio_fe_config;
426 
427 	/* create dvb_frontend */
428 	state->frontend.ops = jdvbt90502_ops;
429 	state->frontend.demodulator_priv = state;
430 
431 	if (jdvbt90502_init(&state->frontend) < 0)
432 		goto error;
433 
434 	return &state->frontend;
435 
436 error:
437 	kfree(state);
438 	return NULL;
439 }
440 
441 static struct dvb_frontend_ops jdvbt90502_ops = {
442 	.delsys = { SYS_ISDBT },
443 	.info = {
444 		.name			= "Comtech JDVBT90502 ISDB-T",
445 		.frequency_min		= 473000000, /* UHF 13ch, center */
446 		.frequency_max		= 767142857, /* UHF 62ch, center */
447 		.frequency_stepsize	= JDVBT90502_PLL_CLK / JDVBT90502_PLL_DIVIDER,
448 		.frequency_tolerance	= 0,
449 
450 		/* NOTE: this driver ignores all parameters but frequency. */
451 		.caps = FE_CAN_INVERSION_AUTO |
452 			FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 |
453 			FE_CAN_FEC_4_5 | FE_CAN_FEC_5_6 | FE_CAN_FEC_6_7 |
454 			FE_CAN_FEC_7_8 | FE_CAN_FEC_8_9 | FE_CAN_FEC_AUTO |
455 			FE_CAN_QAM_16 | FE_CAN_QAM_64 | FE_CAN_QAM_AUTO |
456 			FE_CAN_TRANSMISSION_MODE_AUTO |
457 			FE_CAN_GUARD_INTERVAL_AUTO |
458 			FE_CAN_HIERARCHY_AUTO,
459 	},
460 
461 	.release = jdvbt90502_release,
462 
463 	.init = jdvbt90502_init,
464 	.write = _jdvbt90502_write,
465 
466 	.set_property = jdvbt90502_set_property,
467 
468 	.set_frontend = jdvbt90502_set_frontend,
469 	.get_frontend = jdvbt90502_get_frontend,
470 
471 	.read_status = jdvbt90502_read_status,
472 	.read_signal_strength = jdvbt90502_read_signal_strength,
473 };
474