2 * Support for OR51132 (pcHDTV HD-3000) - VSB/QAM
5 * Copyright (C) 2007 Trent Piepho <xyzzy@speakeasy.org>
7 * Copyright (C) 2005 Kirk Lapray <kirk_lapray@bigfoot.com>
9 * Based on code from Jack Kelliher (kelliher@xmission.com)
10 * Copyright (C) 2002 & pcHDTV, inc.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 * This driver needs two external firmware files. Please copy
30 * "dvb-fe-or51132-vsb.fw" and "dvb-fe-or51132-qam.fw" to
31 * /usr/lib/hotplug/firmware/ or /lib/firmware/
32 * (depending on configuration of firmware hotplug).
34 #define OR51132_VSB_FIRMWARE "dvb-fe-or51132-vsb.fw"
35 #define OR51132_QAM_FIRMWARE "dvb-fe-or51132-qam.fw"
37 #include <linux/kernel.h>
38 #include <linux/module.h>
39 #include <linux/init.h>
40 #include <linux/delay.h>
41 #include <linux/string.h>
42 #include <linux/slab.h>
43 #include <asm/byteorder.h>
46 #include "dvb_frontend.h"
50 #define dprintk(args...) \
52 if (debug) printk(KERN_DEBUG "or51132: " args); \
58 struct i2c_adapter
* i2c
;
60 /* Configuration settings */
61 const struct or51132_config
* config
;
63 struct dvb_frontend frontend
;
65 /* Demodulator private data */
66 enum fe_modulation current_modulation
;
67 u32 snr
; /* Result of last SNR calculation */
69 /* Tuner private data */
70 u32 current_frequency
;
74 /* Write buffer to demod */
75 static int or51132_writebuf(struct or51132_state
*state
, const u8
*buf
, int len
)
78 struct i2c_msg msg
= { .addr
= state
->config
->demod_address
,
79 .flags
= 0, .buf
= (u8
*)buf
, .len
= len
};
81 /* msleep(20); */ /* doesn't appear to be necessary */
82 if ((err
= i2c_transfer(state
->i2c
, &msg
, 1)) != 1) {
83 printk(KERN_WARNING
"or51132: I2C write (addr 0x%02x len %d) error: %d\n",
84 msg
.addr
, msg
.len
, err
);
90 /* Write constant bytes, e.g. or51132_writebytes(state, 0x04, 0x42, 0x00);
91 Less code and more efficient that loading a buffer on the stack with
92 the bytes to send and then calling or51132_writebuf() on that. */
93 #define or51132_writebytes(state, data...) \
94 ({ static const u8 _data[] = {data}; \
95 or51132_writebuf(state, _data, sizeof(_data)); })
97 /* Read data from demod into buffer. Returns 0 on success. */
98 static int or51132_readbuf(struct or51132_state
*state
, u8
*buf
, int len
)
101 struct i2c_msg msg
= { .addr
= state
->config
->demod_address
,
102 .flags
= I2C_M_RD
, .buf
= buf
, .len
= len
};
104 /* msleep(20); */ /* doesn't appear to be necessary */
105 if ((err
= i2c_transfer(state
->i2c
, &msg
, 1)) != 1) {
106 printk(KERN_WARNING
"or51132: I2C read (addr 0x%02x len %d) error: %d\n",
107 msg
.addr
, msg
.len
, err
);
113 /* Reads a 16-bit demod register. Returns <0 on error. */
114 static int or51132_readreg(struct or51132_state
*state
, u8 reg
)
116 u8 buf
[2] = { 0x04, reg
};
117 struct i2c_msg msg
[2] = {
118 {.addr
= state
->config
->demod_address
, .flags
= 0,
119 .buf
= buf
, .len
= 2 },
120 {.addr
= state
->config
->demod_address
, .flags
= I2C_M_RD
,
121 .buf
= buf
, .len
= 2 }};
124 if ((err
= i2c_transfer(state
->i2c
, msg
, 2)) != 2) {
125 printk(KERN_WARNING
"or51132: I2C error reading register %d: %d\n",
129 return buf
[0] | (buf
[1] << 8);
132 static int or51132_load_firmware (struct dvb_frontend
* fe
, const struct firmware
*fw
)
134 struct or51132_state
* state
= fe
->demodulator_priv
;
135 static const u8 run_buf
[] = {0x7F,0x01};
137 u32 firmwareAsize
, firmwareBsize
;
140 dprintk("Firmware is %Zd bytes\n",fw
->size
);
142 /* Get size of firmware A and B */
143 firmwareAsize
= le32_to_cpu(*((__le32
*)fw
->data
));
144 dprintk("FirmwareA is %i bytes\n",firmwareAsize
);
145 firmwareBsize
= le32_to_cpu(*((__le32
*)(fw
->data
+4)));
146 dprintk("FirmwareB is %i bytes\n",firmwareBsize
);
148 /* Upload firmware */
149 if ((ret
= or51132_writebuf(state
, &fw
->data
[8], firmwareAsize
))) {
150 printk(KERN_WARNING
"or51132: load_firmware error 1\n");
153 if ((ret
= or51132_writebuf(state
, &fw
->data
[8+firmwareAsize
],
155 printk(KERN_WARNING
"or51132: load_firmware error 2\n");
159 if ((ret
= or51132_writebuf(state
, run_buf
, 2))) {
160 printk(KERN_WARNING
"or51132: load_firmware error 3\n");
163 if ((ret
= or51132_writebuf(state
, run_buf
, 2))) {
164 printk(KERN_WARNING
"or51132: load_firmware error 4\n");
168 /* 50ms for operation to begin */
171 /* Read back ucode version to besure we loaded correctly and are really up and running */
172 /* Get uCode version */
173 if ((ret
= or51132_writebytes(state
, 0x10, 0x10, 0x00))) {
174 printk(KERN_WARNING
"or51132: load_firmware error a\n");
177 if ((ret
= or51132_writebytes(state
, 0x04, 0x17))) {
178 printk(KERN_WARNING
"or51132: load_firmware error b\n");
181 if ((ret
= or51132_writebytes(state
, 0x00, 0x00))) {
182 printk(KERN_WARNING
"or51132: load_firmware error c\n");
186 /* Once upon a time, this command might have had something
187 to do with getting the firmware version, but it's
189 {0x04,0x00,0x30,0x00,i+1} */
190 /* Read 8 bytes, two bytes at a time */
191 if ((ret
= or51132_readbuf(state
, &rec_buf
[i
*2], 2))) {
193 "or51132: load_firmware error d - %d\n",i
);
199 "or51132: Version: %02X%02X%02X%02X-%02X%02X%02X%02X (%02X%01X-%01X-%02X%01X-%01X)\n",
200 rec_buf
[1],rec_buf
[0],rec_buf
[3],rec_buf
[2],
201 rec_buf
[5],rec_buf
[4],rec_buf
[7],rec_buf
[6],
202 rec_buf
[3],rec_buf
[2]>>4,rec_buf
[2]&0x0f,
203 rec_buf
[5],rec_buf
[4]>>4,rec_buf
[4]&0x0f);
205 if ((ret
= or51132_writebytes(state
, 0x10, 0x00, 0x00))) {
206 printk(KERN_WARNING
"or51132: load_firmware error e\n");
212 static int or51132_init(struct dvb_frontend
* fe
)
217 static int or51132_read_ber(struct dvb_frontend
* fe
, u32
* ber
)
223 static int or51132_read_ucblocks(struct dvb_frontend
* fe
, u32
* ucblocks
)
229 static int or51132_sleep(struct dvb_frontend
* fe
)
234 static int or51132_setmode(struct dvb_frontend
* fe
)
236 struct or51132_state
* state
= fe
->demodulator_priv
;
237 u8 cmd_buf1
[3] = {0x04, 0x01, 0x5f};
238 u8 cmd_buf2
[3] = {0x1c, 0x00, 0 };
240 dprintk("setmode %d\n",(int)state
->current_modulation
);
242 switch (state
->current_modulation
) {
244 /* Auto CH, Auto NTSC rej, MPEGser, MPEG2tr, phase noise-high */
246 /* REC MODE inv IF spectrum, Normal */
248 /* Channel MODE ATSC/VSB8 */
251 /* All QAM modes are:
252 Auto-deinterleave; MPEGser, MPEG2tr, phase noise-high
253 REC MODE Normal Carrier Lock */
255 /* Channel MODE Auto QAM64/256 */
259 /* Channel MODE QAM256 */
263 /* Channel MODE QAM64 */
268 "or51132: setmode: Modulation set to unsupported value (%d)\n",
269 state
->current_modulation
);
273 /* Set Receiver 1 register */
274 if (or51132_writebuf(state
, cmd_buf1
, 3)) {
275 printk(KERN_WARNING
"or51132: set_mode error 1\n");
278 dprintk("set #1 to %02x\n", cmd_buf1
[2]);
280 /* Set operation mode in Receiver 6 register */
281 if (or51132_writebuf(state
, cmd_buf2
, 3)) {
282 printk(KERN_WARNING
"or51132: set_mode error 2\n");
285 dprintk("set #6 to 0x%02x%02x\n", cmd_buf2
[1], cmd_buf2
[2]);
290 /* Some modulations use the same firmware. This classifies modulations
291 by the firmware they use. */
292 #define MOD_FWCLASS_UNKNOWN 0
293 #define MOD_FWCLASS_VSB 1
294 #define MOD_FWCLASS_QAM 2
295 static int modulation_fw_class(enum fe_modulation modulation
)
299 return MOD_FWCLASS_VSB
;
303 return MOD_FWCLASS_QAM
;
305 return MOD_FWCLASS_UNKNOWN
;
309 static int or51132_set_parameters(struct dvb_frontend
*fe
)
311 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
313 struct or51132_state
* state
= fe
->demodulator_priv
;
314 const struct firmware
*fw
;
318 /* Upload new firmware only if we need a different one */
319 if (modulation_fw_class(state
->current_modulation
) !=
320 modulation_fw_class(p
->modulation
)) {
321 switch (modulation_fw_class(p
->modulation
)) {
322 case MOD_FWCLASS_VSB
:
323 dprintk("set_parameters VSB MODE\n");
324 fwname
= OR51132_VSB_FIRMWARE
;
326 /* Set non-punctured clock for VSB */
329 case MOD_FWCLASS_QAM
:
330 dprintk("set_parameters QAM MODE\n");
331 fwname
= OR51132_QAM_FIRMWARE
;
333 /* Set punctured clock for QAM */
337 printk("or51132: Modulation type(%d) UNSUPPORTED\n",
341 printk("or51132: Waiting for firmware upload(%s)...\n",
343 ret
= request_firmware(&fw
, fwname
, state
->i2c
->dev
.parent
);
345 printk(KERN_WARNING
"or51132: No firmware uploaded(timeout or file not found?)\n");
348 ret
= or51132_load_firmware(fe
, fw
);
349 release_firmware(fw
);
351 printk(KERN_WARNING
"or51132: Writing firmware to device failed!\n");
354 printk("or51132: Firmware upload complete.\n");
355 state
->config
->set_ts_params(fe
, clock_mode
);
357 /* Change only if we are actually changing the modulation */
358 if (state
->current_modulation
!= p
->modulation
) {
359 state
->current_modulation
= p
->modulation
;
363 if (fe
->ops
.tuner_ops
.set_params
) {
364 fe
->ops
.tuner_ops
.set_params(fe
);
365 if (fe
->ops
.i2c_gate_ctrl
) fe
->ops
.i2c_gate_ctrl(fe
, 0);
368 /* Set to current mode */
371 /* Update current frequency */
372 state
->current_frequency
= p
->frequency
;
376 static int or51132_get_parameters(struct dvb_frontend
* fe
,
377 struct dtv_frontend_properties
*p
)
379 struct or51132_state
* state
= fe
->demodulator_priv
;
384 /* Receiver Status */
385 if ((status
= or51132_readreg(state
, 0x00)) < 0) {
386 printk(KERN_WARNING
"or51132: get_parameters: error reading receiver status\n");
389 switch(status
&0xff) {
391 p
->modulation
= VSB_8
;
394 p
->modulation
= QAM_64
;
397 p
->modulation
= QAM_256
;
402 printk(KERN_WARNING
"or51132: unknown status 0x%02x\n",
407 /* FIXME: Read frequency from frontend, take AFC into account */
408 p
->frequency
= state
->current_frequency
;
410 /* FIXME: How to read inversion setting? Receiver 6 register? */
411 p
->inversion
= INVERSION_AUTO
;
416 static int or51132_read_status(struct dvb_frontend
*fe
, enum fe_status
*status
)
418 struct or51132_state
* state
= fe
->demodulator_priv
;
421 /* Receiver Status */
422 if ((reg
= or51132_readreg(state
, 0x00)) < 0) {
423 printk(KERN_WARNING
"or51132: read_status: error reading receiver status: %d\n", reg
);
427 dprintk("%s: read_status %04x\n", __func__
, reg
);
429 if (reg
& 0x0100) /* Receiver Lock */
430 *status
= FE_HAS_SIGNAL
|FE_HAS_CARRIER
|FE_HAS_VITERBI
|
431 FE_HAS_SYNC
|FE_HAS_LOCK
;
437 /* Calculate SNR estimation (scaled by 2^24)
439 8-VSB SNR and QAM equations from Oren datasheets
442 SNR[dB] = 10 * log10(897152044.8282 / MSE^2 ) - K
444 Where K = 0 if NTSC rejection filter is OFF; and
445 K = 3 if NTSC rejection filter is ON
448 SNR[dB] = 10 * log10(897152044.8282 / MSE^2 )
451 SNR[dB] = 10 * log10(907832426.314266 / MSE^2 )
453 We re-write the snr equation as:
454 SNR * 2^24 = 10*(c - 2*intlog10(MSE))
455 Where for QAM256, c = log10(907832426.314266) * 2^24
456 and for 8-VSB and QAM64, c = log10(897152044.8282) * 2^24 */
458 static u32
calculate_snr(u32 mse
, u32 c
)
460 if (mse
== 0) /* No signal */
463 mse
= 2*intlog10(mse
);
465 /* Negative SNR, which is possible, but realisticly the
466 demod will lose lock before the signal gets this bad. The
467 API only allows for unsigned values, so just return 0 */
473 static int or51132_read_snr(struct dvb_frontend
* fe
, u16
* snr
)
475 struct or51132_state
* state
= fe
->demodulator_priv
;
481 /* SNR after Equalizer */
482 noise
= or51132_readreg(state
, 0x02);
484 printk(KERN_WARNING
"or51132: read_snr: error reading equalizer\n");
487 dprintk("read_snr noise (%d)\n", noise
);
489 /* Read status, contains modulation type for QAM_AUTO and
490 NTSC filter for VSB */
491 reg
= or51132_readreg(state
, 0x00);
493 printk(KERN_WARNING
"or51132: read_snr: error reading receiver status\n");
499 if (reg
& 0x1000) usK
= 3 << 24;
500 /* Fall through to QAM64 case */
508 printk(KERN_WARNING
"or51132: unknown status 0x%02x\n", reg
&0xff);
509 if (retry
--) goto start
;
512 dprintk("%s: modulation %02x, NTSC rej O%s\n", __func__
,
513 reg
&0xff, reg
&0x1000?"n":"ff");
515 /* Calculate SNR using noise, c, and NTSC rejection correction */
516 state
->snr
= calculate_snr(noise
, c
) - usK
;
517 *snr
= (state
->snr
) >> 16;
519 dprintk("%s: noise = 0x%08x, snr = %d.%02d dB\n", __func__
, noise
,
520 state
->snr
>> 24, (((state
->snr
>>8) & 0xffff) * 100) >> 16);
525 static int or51132_read_signal_strength(struct dvb_frontend
* fe
, u16
* strength
)
527 /* Calculate Strength from SNR up to 35dB */
528 /* Even though the SNR can go higher than 35dB, there is some comfort */
529 /* factor in having a range of strong signals that can show at 100% */
530 struct or51132_state
* state
= (struct or51132_state
*) fe
->demodulator_priv
;
534 ret
= fe
->ops
.read_snr(fe
, &snr
);
537 /* Rather than use the 8.8 value snr, use state->snr which is 8.24 */
538 /* scale the range 0 - 35*2^24 into 0 - 65535 */
539 if (state
->snr
>= 8960 * 0x10000)
542 *strength
= state
->snr
/ 8960;
547 static int or51132_get_tune_settings(struct dvb_frontend
* fe
, struct dvb_frontend_tune_settings
* fe_tune_settings
)
549 fe_tune_settings
->min_delay_ms
= 500;
550 fe_tune_settings
->step_size
= 0;
551 fe_tune_settings
->max_drift
= 0;
556 static void or51132_release(struct dvb_frontend
* fe
)
558 struct or51132_state
* state
= fe
->demodulator_priv
;
562 static const struct dvb_frontend_ops or51132_ops
;
564 struct dvb_frontend
* or51132_attach(const struct or51132_config
* config
,
565 struct i2c_adapter
* i2c
)
567 struct or51132_state
* state
= NULL
;
569 /* Allocate memory for the internal state */
570 state
= kzalloc(sizeof(struct or51132_state
), GFP_KERNEL
);
574 /* Setup the state */
575 state
->config
= config
;
577 state
->current_frequency
= -1;
578 state
->current_modulation
= -1;
580 /* Create dvb_frontend */
581 memcpy(&state
->frontend
.ops
, &or51132_ops
, sizeof(struct dvb_frontend_ops
));
582 state
->frontend
.demodulator_priv
= state
;
583 return &state
->frontend
;
586 static const struct dvb_frontend_ops or51132_ops
= {
587 .delsys
= { SYS_ATSC
, SYS_DVBC_ANNEX_B
},
589 .name
= "Oren OR51132 VSB/QAM Frontend",
590 .frequency_min
= 44000000,
591 .frequency_max
= 958000000,
592 .frequency_stepsize
= 166666,
593 .caps
= FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
594 FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
| FE_CAN_FEC_AUTO
|
595 FE_CAN_QAM_64
| FE_CAN_QAM_256
| FE_CAN_QAM_AUTO
|
599 .release
= or51132_release
,
601 .init
= or51132_init
,
602 .sleep
= or51132_sleep
,
604 .set_frontend
= or51132_set_parameters
,
605 .get_frontend
= or51132_get_parameters
,
606 .get_tune_settings
= or51132_get_tune_settings
,
608 .read_status
= or51132_read_status
,
609 .read_ber
= or51132_read_ber
,
610 .read_signal_strength
= or51132_read_signal_strength
,
611 .read_snr
= or51132_read_snr
,
612 .read_ucblocks
= or51132_read_ucblocks
,
615 module_param(debug
, int, 0644);
616 MODULE_PARM_DESC(debug
, "Turn on/off frontend debugging (default:off).");
618 MODULE_DESCRIPTION("OR51132 ATSC [pcHDTV HD-3000] (8VSB & ITU J83 AnnexB FEC QAM64/256) Demodulator Driver");
619 MODULE_AUTHOR("Kirk Lapray");
620 MODULE_AUTHOR("Trent Piepho");
621 MODULE_LICENSE("GPL");
623 EXPORT_SYMBOL(or51132_attach
);