1 /* DVB USB compliant Linux driver for the Friio USB2.0 ISDB-T receiver.
3 * Copyright (C) 2009 Akihiro Tsukada <tskd2@yahoo.co.jp>
5 * This module is based off the the gl861 and vp702x modules.
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.
11 * see Documentation/dvb/README.dvb-usb for more information
13 #include <linux/init.h>
14 #include <linux/string.h>
15 #include <linux/slab.h>
19 struct jdvbt90502_state
{
20 struct i2c_adapter
*i2c
;
21 struct dvb_frontend frontend
;
22 struct jdvbt90502_config config
;
25 /* NOTE: TC90502 has 16bit register-address? */
26 /* register 0x0100 is used for reading PLL status, so reg is u16 here */
27 static int jdvbt90502_reg_read(struct jdvbt90502_state
*state
,
28 const u16 reg
, u8
*buf
, const size_t count
)
32 struct i2c_msg msg
[2];
38 msg
[0].addr
= state
->config
.demod_address
;
41 msg
[0].len
= sizeof(wbuf
);
43 msg
[1].addr
= msg
[0].addr
;
44 msg
[1].flags
= I2C_M_RD
;
48 ret
= i2c_transfer(state
->i2c
, msg
, 2);
50 deb_fe(" reg read failed.\n");
56 /* currently 16bit register-address is not used, so reg is u8 here */
57 static int jdvbt90502_single_reg_write(struct jdvbt90502_state
*state
,
58 const u8 reg
, const u8 val
)
66 msg
.addr
= state
->config
.demod_address
;
69 msg
.len
= sizeof(wbuf
);
71 if (i2c_transfer(state
->i2c
, &msg
, 1) != 1) {
72 deb_fe(" reg write failed.");
78 static int _jdvbt90502_write(struct dvb_frontend
*fe
, const u8 buf
[], int len
)
80 struct jdvbt90502_state
*state
= fe
->demodulator_priv
;
82 for (i
= 0; i
< len
- 1; i
++) {
83 err
= jdvbt90502_single_reg_write(state
,
84 buf
[0] + i
, buf
[i
+ 1]);
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 */
94 static int jdvbt90502_pll_read(struct jdvbt90502_state
*state
, u8
*result
)
99 u8 pll_addr_byte
= (state
->config
.pll_address
<< 1) + 1;
103 ret
= jdvbt90502_single_reg_write(state
, JDVBT90502_2ND_I2C_REG
,
108 ret
= jdvbt90502_reg_read(state
, 0x0100, result
, 1);
112 deb_fe("PLL read val:%02x\n", *result
);
116 deb_fe("%s:ret == %d\n", __func__
, ret
);
121 /* set pll frequency via the demodulator's I2C register */
122 static int jdvbt90502_pll_set_freq(struct jdvbt90502_state
*state
, u32 freq
)
129 u8 pll_freq_cmd
[PLL_CMD_LEN
];
130 u8 pll_agc_cmd
[PLL_CMD_LEN
];
131 struct i2c_msg msg
[2];
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 */
141 /* add center frequency shift if necessary */
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 */
151 msg
[0].addr
= state
->config
.demod_address
;
153 msg
[0].buf
= pll_freq_cmd
;
154 msg
[0].len
= sizeof(pll_freq_cmd
);
156 ret
= i2c_transfer(state
->i2c
, &msg
[0], 1);
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) */
170 msg
[1].addr
= msg
[0].addr
;
172 msg
[1].buf
= pll_agc_cmd
;
173 msg
[1].len
= sizeof(pll_agc_cmd
);
175 ret
= i2c_transfer(state
->i2c
, &msg
[1], 1);
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);
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);
193 /* if (res1 != 0x00) goto error; */
194 ret
= jdvbt90502_reg_read(state
, 0x00B0, res2
, sizeof(res2
));
201 if (retry
>= RETRY_COUNT
) {
202 deb_fe("%s: FE does not get ready after freq setting.\n",
209 deb_fe("%s:ret == %d\n", __func__
, ret
);
213 static int jdvbt90502_read_status(struct dvb_frontend
*fe
, fe_status_t
*state
)
218 *state
= FE_HAS_SIGNAL
;
220 ret
= jdvbt90502_pll_read(fe
->demodulator_priv
, &result
);
222 deb_fe("%s:ret == %d\n", __func__
, ret
);
226 *state
= FE_HAS_SIGNAL
231 if (result
& PLL_STATUS_LOCKED
)
232 *state
|= FE_HAS_LOCK
;
237 static int jdvbt90502_read_signal_strength(struct dvb_frontend
*fe
,
245 /* status register (incl. signal strength) : 0x89 */
246 /* TODO: read just the necessary registers [0x8B..0x8D]? */
247 ret
= jdvbt90502_reg_read(fe
->demodulator_priv
, 0x0089,
251 deb_fe("%s:ret == %d\n", __func__
, ret
);
255 /* signal_strength: rbuf[2-4] (24bit BE), use lower 16bit for now. */
256 *strength
= (rbuf
[3] << 8) + rbuf
[4];
264 /* filter out un-supported properties to notify users */
265 static int jdvbt90502_set_property(struct dvb_frontend
*fe
,
266 struct dtv_property
*tvp
)
271 case DTV_DELIVERY_SYSTEM
:
272 if (tvp
->u
.data
!= SYS_ISDBT
)
285 static int jdvbt90502_get_frontend(struct dvb_frontend
*fe
)
287 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
288 p
->inversion
= INVERSION_AUTO
;
289 p
->bandwidth_hz
= 6000000;
290 p
->code_rate_HP
= FEC_AUTO
;
291 p
->code_rate_LP
= FEC_AUTO
;
292 p
->modulation
= QAM_64
;
293 p
->transmission_mode
= TRANSMISSION_MODE_AUTO
;
294 p
->guard_interval
= GUARD_INTERVAL_AUTO
;
295 p
->hierarchy
= HIERARCHY_AUTO
;
299 static int jdvbt90502_set_frontend(struct dvb_frontend
*fe
)
301 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
304 * NOTE: ignore all the parameters except frequency.
305 * others should be fixed to the proper value for ISDB-T,
306 * but don't check here.
309 struct jdvbt90502_state
*state
= fe
->demodulator_priv
;
312 deb_fe("%s: Freq:%d\n", __func__
, p
->frequency
);
314 /* for recovery from DTV_CLEAN */
315 fe
->dtv_property_cache
.delivery_system
= SYS_ISDBT
;
317 ret
= jdvbt90502_pll_set_freq(state
, p
->frequency
);
319 deb_fe("%s:ret == %d\n", __func__
, ret
);
328 * (reg, val) commad list to initialize this module.
329 * captured on a Windows box.
331 static u8 init_code
[][2] = {
370 static const int init_code_len
= sizeof(init_code
) / sizeof(u8
[2]);
372 static int jdvbt90502_init(struct dvb_frontend
*fe
)
378 struct jdvbt90502_state
*state
= fe
->demodulator_priv
;
380 deb_fe("%s called.\n", __func__
);
382 msg
.addr
= state
->config
.demod_address
;
385 for (i
= 0; i
< init_code_len
; i
++) {
386 msg
.buf
= init_code
[i
];
387 ret
= i2c_transfer(state
->i2c
, &msg
, 1);
391 fe
->dtv_property_cache
.delivery_system
= SYS_ISDBT
;
397 deb_fe("%s: init_code[%d] failed. ret==%d\n", __func__
, i
, ret
);
402 static void jdvbt90502_release(struct dvb_frontend
*fe
)
404 struct jdvbt90502_state
*state
= fe
->demodulator_priv
;
409 static struct dvb_frontend_ops jdvbt90502_ops
;
411 struct dvb_frontend
*jdvbt90502_attach(struct dvb_usb_device
*d
)
413 struct jdvbt90502_state
*state
= NULL
;
415 deb_info("%s called.\n", __func__
);
417 /* allocate memory for the internal state */
418 state
= kzalloc(sizeof(struct jdvbt90502_state
), GFP_KERNEL
);
422 /* setup the state */
423 state
->i2c
= &d
->i2c_adap
;
424 state
->config
= friio_fe_config
;
426 /* create dvb_frontend */
427 state
->frontend
.ops
= jdvbt90502_ops
;
428 state
->frontend
.demodulator_priv
= state
;
430 if (jdvbt90502_init(&state
->frontend
) < 0)
433 return &state
->frontend
;
440 static struct dvb_frontend_ops jdvbt90502_ops
= {
441 .delsys
= { SYS_ISDBT
},
443 .name
= "Comtech JDVBT90502 ISDB-T",
444 .frequency_min
= 473000000, /* UHF 13ch, center */
445 .frequency_max
= 767142857, /* UHF 62ch, center */
446 .frequency_stepsize
= JDVBT90502_PLL_CLK
/ JDVBT90502_PLL_DIVIDER
,
447 .frequency_tolerance
= 0,
449 /* NOTE: this driver ignores all parameters but frequency. */
450 .caps
= FE_CAN_INVERSION_AUTO
|
451 FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
452 FE_CAN_FEC_4_5
| FE_CAN_FEC_5_6
| FE_CAN_FEC_6_7
|
453 FE_CAN_FEC_7_8
| FE_CAN_FEC_8_9
| FE_CAN_FEC_AUTO
|
454 FE_CAN_QAM_16
| FE_CAN_QAM_64
| FE_CAN_QAM_AUTO
|
455 FE_CAN_TRANSMISSION_MODE_AUTO
|
456 FE_CAN_GUARD_INTERVAL_AUTO
|
457 FE_CAN_HIERARCHY_AUTO
,
460 .release
= jdvbt90502_release
,
462 .init
= jdvbt90502_init
,
463 .write
= _jdvbt90502_write
,
465 .set_property
= jdvbt90502_set_property
,
467 .set_frontend
= jdvbt90502_set_frontend
,
468 .get_frontend
= jdvbt90502_get_frontend
,
470 .read_status
= jdvbt90502_read_status
,
471 .read_signal_strength
= jdvbt90502_read_signal_strength
,