• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * ascot2e.c
3  *
4  * Sony Ascot3E DVB-T/T2/C/C2 tuner driver
5  *
6  * Copyright 2012 Sony Corporation
7  * Copyright (C) 2014 NetUP Inc.
8  * Copyright (C) 2014 Sergey Kozlov <serjk@netup.ru>
9  * Copyright (C) 2014 Abylay Ospan <aospan@netup.ru>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20   */
21 
22 #include <linux/slab.h>
23 #include <linux/module.h>
24 #include <linux/dvb/frontend.h>
25 #include <linux/types.h>
26 #include "ascot2e.h"
27 #include "dvb_frontend.h"
28 
29 #define MAX_WRITE_REGSIZE 10
30 
31 enum ascot2e_state {
32 	STATE_UNKNOWN,
33 	STATE_SLEEP,
34 	STATE_ACTIVE
35 };
36 
37 struct ascot2e_priv {
38 	u32			frequency;
39 	u8			i2c_address;
40 	struct i2c_adapter	*i2c;
41 	enum ascot2e_state	state;
42 	void			*set_tuner_data;
43 	int			(*set_tuner)(void *, int);
44 };
45 
46 enum ascot2e_tv_system_t {
47 	ASCOT2E_DTV_DVBT_5,
48 	ASCOT2E_DTV_DVBT_6,
49 	ASCOT2E_DTV_DVBT_7,
50 	ASCOT2E_DTV_DVBT_8,
51 	ASCOT2E_DTV_DVBT2_1_7,
52 	ASCOT2E_DTV_DVBT2_5,
53 	ASCOT2E_DTV_DVBT2_6,
54 	ASCOT2E_DTV_DVBT2_7,
55 	ASCOT2E_DTV_DVBT2_8,
56 	ASCOT2E_DTV_DVBC_6,
57 	ASCOT2E_DTV_DVBC_8,
58 	ASCOT2E_DTV_DVBC2_6,
59 	ASCOT2E_DTV_DVBC2_8,
60 	ASCOT2E_DTV_UNKNOWN
61 };
62 
63 struct ascot2e_band_sett {
64 	u8	if_out_sel;
65 	u8	agc_sel;
66 	u8	mix_oll;
67 	u8	rf_gain;
68 	u8	if_bpf_gc;
69 	u8	fif_offset;
70 	u8	bw_offset;
71 	u8	bw;
72 	u8	rf_oldet;
73 	u8	if_bpf_f0;
74 };
75 
76 #define ASCOT2E_AUTO		0xff
77 #define ASCOT2E_OFFSET(ofs)	((u8)(ofs) & 0x1F)
78 #define ASCOT2E_BW_6		0x00
79 #define ASCOT2E_BW_7		0x01
80 #define ASCOT2E_BW_8		0x02
81 #define ASCOT2E_BW_1_7		0x03
82 
83 static struct ascot2e_band_sett ascot2e_sett[] = {
84 	{ ASCOT2E_AUTO, ASCOT2E_AUTO, 0x03, ASCOT2E_AUTO, 0x06,
85 	  ASCOT2E_OFFSET(-8), ASCOT2E_OFFSET(-6), ASCOT2E_BW_6,  0x0B, 0x00 },
86 	{ ASCOT2E_AUTO, ASCOT2E_AUTO, 0x03, ASCOT2E_AUTO, 0x06,
87 	  ASCOT2E_OFFSET(-8), ASCOT2E_OFFSET(-6), ASCOT2E_BW_6,  0x0B, 0x00 },
88 	{ ASCOT2E_AUTO, ASCOT2E_AUTO, 0x03, ASCOT2E_AUTO, 0x06,
89 	  ASCOT2E_OFFSET(-6), ASCOT2E_OFFSET(-4), ASCOT2E_BW_7,  0x0B, 0x00 },
90 	{ ASCOT2E_AUTO, ASCOT2E_AUTO, 0x03, ASCOT2E_AUTO, 0x06,
91 	  ASCOT2E_OFFSET(-4), ASCOT2E_OFFSET(-2), ASCOT2E_BW_8,  0x0B, 0x00 },
92 	{ ASCOT2E_AUTO, ASCOT2E_AUTO, 0x03, ASCOT2E_AUTO, 0x06,
93 	ASCOT2E_OFFSET(-10), ASCOT2E_OFFSET(-16), ASCOT2E_BW_1_7, 0x0B, 0x00 },
94 	{ ASCOT2E_AUTO, ASCOT2E_AUTO, 0x03, ASCOT2E_AUTO, 0x06,
95 	  ASCOT2E_OFFSET(-8), ASCOT2E_OFFSET(-6), ASCOT2E_BW_6,  0x0B, 0x00 },
96 	{ ASCOT2E_AUTO, ASCOT2E_AUTO, 0x03, ASCOT2E_AUTO, 0x06,
97 	  ASCOT2E_OFFSET(-8), ASCOT2E_OFFSET(-6), ASCOT2E_BW_6,  0x0B, 0x00 },
98 	{ ASCOT2E_AUTO, ASCOT2E_AUTO, 0x03, ASCOT2E_AUTO, 0x06,
99 	  ASCOT2E_OFFSET(-6), ASCOT2E_OFFSET(-4), ASCOT2E_BW_7,  0x0B, 0x00 },
100 	{ ASCOT2E_AUTO, ASCOT2E_AUTO, 0x03, ASCOT2E_AUTO, 0x06,
101 	  ASCOT2E_OFFSET(-4), ASCOT2E_OFFSET(-2), ASCOT2E_BW_8,  0x0B, 0x00 },
102 	{ ASCOT2E_AUTO, ASCOT2E_AUTO, 0x02, ASCOT2E_AUTO, 0x03,
103 	  ASCOT2E_OFFSET(-6), ASCOT2E_OFFSET(-8), ASCOT2E_BW_6,  0x09, 0x00 },
104 	{ ASCOT2E_AUTO, ASCOT2E_AUTO, 0x02, ASCOT2E_AUTO, 0x03,
105 	  ASCOT2E_OFFSET(-2), ASCOT2E_OFFSET(-1), ASCOT2E_BW_8,  0x09, 0x00 },
106 	{ ASCOT2E_AUTO, ASCOT2E_AUTO, 0x03, ASCOT2E_AUTO, 0x01,
107 	  ASCOT2E_OFFSET(-6), ASCOT2E_OFFSET(-4), ASCOT2E_BW_6,  0x09, 0x00 },
108 	{ ASCOT2E_AUTO, ASCOT2E_AUTO, 0x03, ASCOT2E_AUTO, 0x01,
109 	  ASCOT2E_OFFSET(-2), ASCOT2E_OFFSET(2),  ASCOT2E_BW_8,  0x09, 0x00 }
110 };
111 
ascot2e_i2c_debug(struct ascot2e_priv * priv,u8 reg,u8 write,const u8 * data,u32 len)112 static void ascot2e_i2c_debug(struct ascot2e_priv *priv,
113 			      u8 reg, u8 write, const u8 *data, u32 len)
114 {
115 	dev_dbg(&priv->i2c->dev, "ascot2e: I2C %s reg 0x%02x size %d\n",
116 		(write == 0 ? "read" : "write"), reg, len);
117 	print_hex_dump_bytes("ascot2e: I2C data: ",
118 		DUMP_PREFIX_OFFSET, data, len);
119 }
120 
ascot2e_write_regs(struct ascot2e_priv * priv,u8 reg,const u8 * data,u32 len)121 static int ascot2e_write_regs(struct ascot2e_priv *priv,
122 			      u8 reg, const u8 *data, u32 len)
123 {
124 	int ret;
125 	u8 buf[MAX_WRITE_REGSIZE + 1];
126 	struct i2c_msg msg[1] = {
127 		{
128 			.addr = priv->i2c_address,
129 			.flags = 0,
130 			.len = len + 1,
131 			.buf = buf,
132 		}
133 	};
134 
135 	if (len + 1 >= sizeof(buf)) {
136 		dev_warn(&priv->i2c->dev,"wr reg=%04x: len=%d is too big!\n",
137 			 reg, len + 1);
138 		return -E2BIG;
139 	}
140 
141 	ascot2e_i2c_debug(priv, reg, 1, data, len);
142 	buf[0] = reg;
143 	memcpy(&buf[1], data, len);
144 	ret = i2c_transfer(priv->i2c, msg, 1);
145 	if (ret >= 0 && ret != 1)
146 		ret = -EREMOTEIO;
147 	if (ret < 0) {
148 		dev_warn(&priv->i2c->dev,
149 			"%s: i2c wr failed=%d reg=%02x len=%d\n",
150 			KBUILD_MODNAME, ret, reg, len);
151 		return ret;
152 	}
153 	return 0;
154 }
155 
ascot2e_write_reg(struct ascot2e_priv * priv,u8 reg,u8 val)156 static int ascot2e_write_reg(struct ascot2e_priv *priv, u8 reg, u8 val)
157 {
158 	u8 tmp = val; /* see gcc.gnu.org/bugzilla/show_bug.cgi?id=81715 */
159 
160 	return ascot2e_write_regs(priv, reg, &tmp, 1);
161 }
162 
ascot2e_read_regs(struct ascot2e_priv * priv,u8 reg,u8 * val,u32 len)163 static int ascot2e_read_regs(struct ascot2e_priv *priv,
164 			     u8 reg, u8 *val, u32 len)
165 {
166 	int ret;
167 	struct i2c_msg msg[2] = {
168 		{
169 			.addr = priv->i2c_address,
170 			.flags = 0,
171 			.len = 1,
172 			.buf = &reg,
173 		}, {
174 			.addr = priv->i2c_address,
175 			.flags = I2C_M_RD,
176 			.len = len,
177 			.buf = val,
178 		}
179 	};
180 
181 	ret = i2c_transfer(priv->i2c, &msg[0], 1);
182 	if (ret >= 0 && ret != 1)
183 		ret = -EREMOTEIO;
184 	if (ret < 0) {
185 		dev_warn(&priv->i2c->dev,
186 			"%s: I2C rw failed=%d addr=%02x reg=%02x\n",
187 			KBUILD_MODNAME, ret, priv->i2c_address, reg);
188 		return ret;
189 	}
190 	ret = i2c_transfer(priv->i2c, &msg[1], 1);
191 	if (ret >= 0 && ret != 1)
192 		ret = -EREMOTEIO;
193 	if (ret < 0) {
194 		dev_warn(&priv->i2c->dev,
195 			"%s: i2c rd failed=%d addr=%02x reg=%02x\n",
196 			KBUILD_MODNAME, ret, priv->i2c_address, reg);
197 		return ret;
198 	}
199 	ascot2e_i2c_debug(priv, reg, 0, val, len);
200 	return 0;
201 }
202 
ascot2e_read_reg(struct ascot2e_priv * priv,u8 reg,u8 * val)203 static int ascot2e_read_reg(struct ascot2e_priv *priv, u8 reg, u8 *val)
204 {
205 	return ascot2e_read_regs(priv, reg, val, 1);
206 }
207 
ascot2e_set_reg_bits(struct ascot2e_priv * priv,u8 reg,u8 data,u8 mask)208 static int ascot2e_set_reg_bits(struct ascot2e_priv *priv,
209 				u8 reg, u8 data, u8 mask)
210 {
211 	int res;
212 	u8 rdata;
213 
214 	if (mask != 0xff) {
215 		res = ascot2e_read_reg(priv, reg, &rdata);
216 		if (res != 0)
217 			return res;
218 		data = ((data & mask) | (rdata & (mask ^ 0xFF)));
219 	}
220 	return ascot2e_write_reg(priv, reg, data);
221 }
222 
ascot2e_enter_power_save(struct ascot2e_priv * priv)223 static int ascot2e_enter_power_save(struct ascot2e_priv *priv)
224 {
225 	u8 data[2];
226 
227 	dev_dbg(&priv->i2c->dev, "%s()\n", __func__);
228 	if (priv->state == STATE_SLEEP)
229 		return 0;
230 	data[0] = 0x00;
231 	data[1] = 0x04;
232 	ascot2e_write_regs(priv, 0x14, data, 2);
233 	ascot2e_write_reg(priv, 0x50, 0x01);
234 	priv->state = STATE_SLEEP;
235 	return 0;
236 }
237 
ascot2e_leave_power_save(struct ascot2e_priv * priv)238 static int ascot2e_leave_power_save(struct ascot2e_priv *priv)
239 {
240 	u8 data[2] = { 0xFB, 0x0F };
241 
242 	dev_dbg(&priv->i2c->dev, "%s()\n", __func__);
243 	if (priv->state == STATE_ACTIVE)
244 		return 0;
245 	ascot2e_write_regs(priv, 0x14, data, 2);
246 	ascot2e_write_reg(priv, 0x50, 0x00);
247 	priv->state = STATE_ACTIVE;
248 	return 0;
249 }
250 
ascot2e_init(struct dvb_frontend * fe)251 static int ascot2e_init(struct dvb_frontend *fe)
252 {
253 	struct ascot2e_priv *priv = fe->tuner_priv;
254 
255 	dev_dbg(&priv->i2c->dev, "%s()\n", __func__);
256 	return ascot2e_leave_power_save(priv);
257 }
258 
ascot2e_release(struct dvb_frontend * fe)259 static int ascot2e_release(struct dvb_frontend *fe)
260 {
261 	struct ascot2e_priv *priv = fe->tuner_priv;
262 
263 	dev_dbg(&priv->i2c->dev, "%s()\n", __func__);
264 	kfree(fe->tuner_priv);
265 	fe->tuner_priv = NULL;
266 	return 0;
267 }
268 
ascot2e_sleep(struct dvb_frontend * fe)269 static int ascot2e_sleep(struct dvb_frontend *fe)
270 {
271 	struct ascot2e_priv *priv = fe->tuner_priv;
272 
273 	dev_dbg(&priv->i2c->dev, "%s()\n", __func__);
274 	ascot2e_enter_power_save(priv);
275 	return 0;
276 }
277 
ascot2e_get_tv_system(struct dvb_frontend * fe)278 static enum ascot2e_tv_system_t ascot2e_get_tv_system(struct dvb_frontend *fe)
279 {
280 	enum ascot2e_tv_system_t system = ASCOT2E_DTV_UNKNOWN;
281 	struct dtv_frontend_properties *p = &fe->dtv_property_cache;
282 	struct ascot2e_priv *priv = fe->tuner_priv;
283 
284 	if (p->delivery_system == SYS_DVBT) {
285 		if (p->bandwidth_hz <= 5000000)
286 			system = ASCOT2E_DTV_DVBT_5;
287 		else if (p->bandwidth_hz <= 6000000)
288 			system = ASCOT2E_DTV_DVBT_6;
289 		else if (p->bandwidth_hz <= 7000000)
290 			system = ASCOT2E_DTV_DVBT_7;
291 		else if (p->bandwidth_hz <= 8000000)
292 			system = ASCOT2E_DTV_DVBT_8;
293 		else {
294 			system = ASCOT2E_DTV_DVBT_8;
295 			p->bandwidth_hz = 8000000;
296 		}
297 	} else if (p->delivery_system == SYS_DVBT2) {
298 		if (p->bandwidth_hz <= 5000000)
299 			system = ASCOT2E_DTV_DVBT2_5;
300 		else if (p->bandwidth_hz <= 6000000)
301 			system = ASCOT2E_DTV_DVBT2_6;
302 		else if (p->bandwidth_hz <= 7000000)
303 			system = ASCOT2E_DTV_DVBT2_7;
304 		else if (p->bandwidth_hz <= 8000000)
305 			system = ASCOT2E_DTV_DVBT2_8;
306 		else {
307 			system = ASCOT2E_DTV_DVBT2_8;
308 			p->bandwidth_hz = 8000000;
309 		}
310 	} else if (p->delivery_system == SYS_DVBC_ANNEX_A) {
311 		if (p->bandwidth_hz <= 6000000)
312 			system = ASCOT2E_DTV_DVBC_6;
313 		else if (p->bandwidth_hz <= 8000000)
314 			system = ASCOT2E_DTV_DVBC_8;
315 	}
316 	dev_dbg(&priv->i2c->dev,
317 		"%s(): ASCOT2E DTV system %d (delsys %d, bandwidth %d)\n",
318 		__func__, (int)system, p->delivery_system, p->bandwidth_hz);
319 	return system;
320 }
321 
ascot2e_set_params(struct dvb_frontend * fe)322 static int ascot2e_set_params(struct dvb_frontend *fe)
323 {
324 	u8 data[10];
325 	u32 frequency;
326 	enum ascot2e_tv_system_t tv_system;
327 	struct dtv_frontend_properties *p = &fe->dtv_property_cache;
328 	struct ascot2e_priv *priv = fe->tuner_priv;
329 
330 	dev_dbg(&priv->i2c->dev, "%s(): tune frequency %dkHz\n",
331 		__func__, p->frequency / 1000);
332 	tv_system = ascot2e_get_tv_system(fe);
333 
334 	if (tv_system == ASCOT2E_DTV_UNKNOWN) {
335 		dev_dbg(&priv->i2c->dev, "%s(): unknown DTV system\n",
336 			__func__);
337 		return -EINVAL;
338 	}
339 	if (priv->set_tuner)
340 		priv->set_tuner(priv->set_tuner_data, 1);
341 	frequency = roundup(p->frequency / 1000, 25);
342 	if (priv->state == STATE_SLEEP)
343 		ascot2e_leave_power_save(priv);
344 
345 	/* IF_OUT_SEL / AGC_SEL setting */
346 	data[0] = 0x00;
347 	if (ascot2e_sett[tv_system].agc_sel != ASCOT2E_AUTO) {
348 		/* AGC pin setting from parameter table */
349 		data[0] |= (u8)(
350 			(ascot2e_sett[tv_system].agc_sel & 0x03) << 3);
351 	}
352 	if (ascot2e_sett[tv_system].if_out_sel != ASCOT2E_AUTO) {
353 		/* IFOUT pin setting from parameter table */
354 		data[0] |= (u8)(
355 			(ascot2e_sett[tv_system].if_out_sel & 0x01) << 2);
356 	}
357 	/* Set bit[4:2] only */
358 	ascot2e_set_reg_bits(priv, 0x05, data[0], 0x1c);
359 	/* 0x06 - 0x0F */
360 	/* REF_R setting (0x06) */
361 	if (tv_system == ASCOT2E_DTV_DVBC_6 ||
362 			tv_system == ASCOT2E_DTV_DVBC_8) {
363 		/* xtal, xtal*2 */
364 		data[0] = (frequency > 500000) ? 16 : 32;
365 	} else {
366 		/* xtal/8, xtal/4 */
367 		data[0] = (frequency > 500000) ? 2 : 4;
368 	}
369 	/* XOSC_SEL=100uA */
370 	data[1] = 0x04;
371 	/* KBW setting (0x08), KC0 setting (0x09), KC1 setting (0x0A) */
372 	if (tv_system == ASCOT2E_DTV_DVBC_6 ||
373 			tv_system == ASCOT2E_DTV_DVBC_8) {
374 		data[2] = 18;
375 		data[3] = 120;
376 		data[4] = 20;
377 	} else {
378 		data[2] = 48;
379 		data[3] = 10;
380 		data[4] = 30;
381 	}
382 	/* ORDER/R2_RANGE/R2_BANK/C2_BANK setting (0x0B) */
383 	if (tv_system == ASCOT2E_DTV_DVBC_6 ||
384 			tv_system == ASCOT2E_DTV_DVBC_8)
385 		data[5] = (frequency > 500000) ? 0x08 : 0x0c;
386 	else
387 		data[5] = (frequency > 500000) ? 0x30 : 0x38;
388 	/* Set MIX_OLL (0x0C) value from parameter table */
389 	data[6] = ascot2e_sett[tv_system].mix_oll;
390 	/* Set RF_GAIN (0x0D) setting from parameter table */
391 	if (ascot2e_sett[tv_system].rf_gain == ASCOT2E_AUTO) {
392 		/* RF_GAIN auto control enable */
393 		ascot2e_write_reg(priv, 0x4E, 0x01);
394 		/* RF_GAIN Default value */
395 		data[7] = 0x00;
396 	} else {
397 		/* RF_GAIN auto control disable */
398 		ascot2e_write_reg(priv, 0x4E, 0x00);
399 		data[7] = ascot2e_sett[tv_system].rf_gain;
400 	}
401 	/* Set IF_BPF_GC/FIF_OFFSET (0x0E) value from parameter table */
402 	data[8] = (u8)((ascot2e_sett[tv_system].fif_offset << 3) |
403 		(ascot2e_sett[tv_system].if_bpf_gc & 0x07));
404 	/* Set BW_OFFSET (0x0F) value from parameter table */
405 	data[9] = ascot2e_sett[tv_system].bw_offset;
406 	ascot2e_write_regs(priv, 0x06, data, 10);
407 	/*
408 	 * 0x45 - 0x47
409 	 * LNA optimization setting
410 	 * RF_LNA_DIST1-5, RF_LNA_CM
411 	 */
412 	if (tv_system == ASCOT2E_DTV_DVBC_6 ||
413 			tv_system == ASCOT2E_DTV_DVBC_8) {
414 		data[0] = 0x0F;
415 		data[1] = 0x00;
416 		data[2] = 0x01;
417 	} else {
418 		data[0] = 0x0F;
419 		data[1] = 0x00;
420 		data[2] = 0x03;
421 	}
422 	ascot2e_write_regs(priv, 0x45, data, 3);
423 	/* 0x49 - 0x4A
424 	 Set RF_OLDET_ENX/RF_OLDET_OLL value from parameter table */
425 	data[0] = ascot2e_sett[tv_system].rf_oldet;
426 	/* Set IF_BPF_F0 value from parameter table */
427 	data[1] = ascot2e_sett[tv_system].if_bpf_f0;
428 	ascot2e_write_regs(priv, 0x49, data, 2);
429 	/*
430 	 * Tune now
431 	 * RFAGC fast mode / RFAGC auto control enable
432 	 * (set bit[7], bit[5:4] only)
433 	 * vco_cal = 1, set MIX_OL_CPU_EN
434 	 */
435 	ascot2e_set_reg_bits(priv, 0x0c, 0x90, 0xb0);
436 	/* Logic wake up, CPU wake up */
437 	data[0] = 0xc4;
438 	data[1] = 0x40;
439 	ascot2e_write_regs(priv, 0x03, data, 2);
440 	/* 0x10 - 0x14 */
441 	data[0] = (u8)(frequency & 0xFF);         /* 0x10: FRF_L */
442 	data[1] = (u8)((frequency >> 8) & 0xFF);  /* 0x11: FRF_M */
443 	data[2] = (u8)((frequency >> 16) & 0x0F); /* 0x12: FRF_H (bit[3:0]) */
444 	/* 0x12: BW (bit[5:4]) */
445 	data[2] |= (u8)(ascot2e_sett[tv_system].bw << 4);
446 	data[3] = 0xFF; /* 0x13: VCO calibration enable */
447 	data[4] = 0xFF; /* 0x14: Analog block enable */
448 	/* Tune (Burst write) */
449 	ascot2e_write_regs(priv, 0x10, data, 5);
450 	msleep(50);
451 	/* CPU deep sleep */
452 	ascot2e_write_reg(priv, 0x04, 0x00);
453 	/* Logic sleep */
454 	ascot2e_write_reg(priv, 0x03, 0xC0);
455 	/* RFAGC normal mode (set bit[5:4] only) */
456 	ascot2e_set_reg_bits(priv, 0x0C, 0x00, 0x30);
457 	priv->frequency = frequency;
458 	return 0;
459 }
460 
ascot2e_get_frequency(struct dvb_frontend * fe,u32 * frequency)461 static int ascot2e_get_frequency(struct dvb_frontend *fe, u32 *frequency)
462 {
463 	struct ascot2e_priv *priv = fe->tuner_priv;
464 
465 	*frequency = priv->frequency * 1000;
466 	return 0;
467 }
468 
469 static struct dvb_tuner_ops ascot2e_tuner_ops = {
470 	.info = {
471 		.name = "Sony ASCOT2E",
472 		.frequency_min = 1000000,
473 		.frequency_max = 1200000000,
474 		.frequency_step = 25000,
475 	},
476 	.init = ascot2e_init,
477 	.release = ascot2e_release,
478 	.sleep = ascot2e_sleep,
479 	.set_params = ascot2e_set_params,
480 	.get_frequency = ascot2e_get_frequency,
481 };
482 
ascot2e_attach(struct dvb_frontend * fe,const struct ascot2e_config * config,struct i2c_adapter * i2c)483 struct dvb_frontend *ascot2e_attach(struct dvb_frontend *fe,
484 				    const struct ascot2e_config *config,
485 				    struct i2c_adapter *i2c)
486 {
487 	u8 data[4];
488 	struct ascot2e_priv *priv = NULL;
489 
490 	priv = kzalloc(sizeof(struct ascot2e_priv), GFP_KERNEL);
491 	if (priv == NULL)
492 		return NULL;
493 	priv->i2c_address = (config->i2c_address >> 1);
494 	priv->i2c = i2c;
495 	priv->set_tuner_data = config->set_tuner_priv;
496 	priv->set_tuner = config->set_tuner_callback;
497 
498 	if (fe->ops.i2c_gate_ctrl)
499 		fe->ops.i2c_gate_ctrl(fe, 1);
500 
501 	/* 16 MHz xTal frequency */
502 	data[0] = 16;
503 	/* VCO current setting */
504 	data[1] = 0x06;
505 	/* Logic wake up, CPU boot */
506 	data[2] = 0xC4;
507 	data[3] = 0x40;
508 	ascot2e_write_regs(priv, 0x01, data, 4);
509 	/* RFVGA optimization setting (RF_DIST0 - RF_DIST2) */
510 	data[0] = 0x10;
511 	data[1] = 0x3F;
512 	data[2] = 0x25;
513 	ascot2e_write_regs(priv, 0x22, data, 3);
514 	/* PLL mode setting */
515 	ascot2e_write_reg(priv, 0x28, 0x1e);
516 	/* RSSI setting */
517 	ascot2e_write_reg(priv, 0x59, 0x04);
518 	/* TODO check CPU HW error state here */
519 	msleep(80);
520 	/* Xtal oscillator current control setting */
521 	ascot2e_write_reg(priv, 0x4c, 0x01);
522 	/* XOSC_SEL=100uA */
523 	ascot2e_write_reg(priv, 0x07, 0x04);
524 	/* CPU deep sleep */
525 	ascot2e_write_reg(priv, 0x04, 0x00);
526 	/* Logic sleep */
527 	ascot2e_write_reg(priv, 0x03, 0xc0);
528 	/* Power save setting */
529 	data[0] = 0x00;
530 	data[1] = 0x04;
531 	ascot2e_write_regs(priv, 0x14, data, 2);
532 	ascot2e_write_reg(priv, 0x50, 0x01);
533 	priv->state = STATE_SLEEP;
534 
535 	if (fe->ops.i2c_gate_ctrl)
536 		fe->ops.i2c_gate_ctrl(fe, 0);
537 
538 	memcpy(&fe->ops.tuner_ops, &ascot2e_tuner_ops,
539 				sizeof(struct dvb_tuner_ops));
540 	fe->tuner_priv = priv;
541 	dev_info(&priv->i2c->dev,
542 		"Sony ASCOT2E attached on addr=%x at I2C adapter %p\n",
543 		priv->i2c_address, priv->i2c);
544 	return fe;
545 }
546 EXPORT_SYMBOL(ascot2e_attach);
547 
548 MODULE_DESCRIPTION("Sony ASCOT2E terr/cab tuner driver");
549 MODULE_AUTHOR("info@netup.ru");
550 MODULE_LICENSE("GPL");
551