1 // SPDX-License-Identifier: GPL-2.0-only
3 Driver for the Spase sp887x demodulator
7 * This driver needs external firmware. Please use the command
8 * "<kerneldir>/scripts/get_dvb_firmware sp887x" to
9 * download/extract it, and then copy it to /usr/lib/hotplug/firmware
10 * or /lib/firmware (depending on configuration of firmware hotplug).
12 #define SP887X_DEFAULT_FIRMWARE "dvb-fe-sp887x.fw"
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/device.h>
17 #include <linux/firmware.h>
18 #include <linux/string.h>
19 #include <linux/slab.h>
21 #include <media/dvb_frontend.h>
26 struct i2c_adapter
* i2c
;
27 const struct sp887x_config
* config
;
28 struct dvb_frontend frontend
;
30 /* demodulator private data */
35 #define dprintk(args...) \
37 if (debug) printk(KERN_DEBUG "sp887x: " args); \
40 static int i2c_writebytes (struct sp887x_state
* state
, u8
*buf
, u8 len
)
42 struct i2c_msg msg
= { .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= buf
, .len
= len
};
45 if ((err
= i2c_transfer (state
->i2c
, &msg
, 1)) != 1) {
46 printk ("%s: i2c write error (addr %02x, err == %i)\n",
47 __func__
, state
->config
->demod_address
, err
);
54 static int sp887x_writereg (struct sp887x_state
* state
, u16 reg
, u16 data
)
56 u8 b0
[] = { reg
>> 8 , reg
& 0xff, data
>> 8, data
& 0xff };
57 struct i2c_msg msg
= { .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= b0
, .len
= 4 };
60 if ((ret
= i2c_transfer(state
->i2c
, &msg
, 1)) != 1) {
62 * in case of soft reset we ignore ACK errors...
64 if (!(reg
== 0xf1a && data
== 0x000 &&
65 (ret
== -EREMOTEIO
|| ret
== -EFAULT
)))
67 printk("%s: writereg error (reg %03x, data %03x, ret == %i)\n",
68 __func__
, reg
& 0xffff, data
& 0xffff, ret
);
76 static int sp887x_readreg (struct sp887x_state
* state
, u16 reg
)
78 u8 b0
[] = { reg
>> 8 , reg
& 0xff };
81 struct i2c_msg msg
[] = {{ .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= b0
, .len
= 2 },
82 { .addr
= state
->config
->demod_address
, .flags
= I2C_M_RD
, .buf
= b1
, .len
= 2 }};
84 if ((ret
= i2c_transfer(state
->i2c
, msg
, 2)) != 2) {
85 printk("%s: readreg error (ret == %i)\n", __func__
, ret
);
89 return (((b1
[0] << 8) | b1
[1]) & 0xfff);
92 static void sp887x_microcontroller_stop (struct sp887x_state
* state
)
94 dprintk("%s\n", __func__
);
95 sp887x_writereg(state
, 0xf08, 0x000);
96 sp887x_writereg(state
, 0xf09, 0x000);
98 /* microcontroller STOP */
99 sp887x_writereg(state
, 0xf00, 0x000);
102 static void sp887x_microcontroller_start (struct sp887x_state
* state
)
104 dprintk("%s\n", __func__
);
105 sp887x_writereg(state
, 0xf08, 0x000);
106 sp887x_writereg(state
, 0xf09, 0x000);
108 /* microcontroller START */
109 sp887x_writereg(state
, 0xf00, 0x001);
112 static void sp887x_setup_agc (struct sp887x_state
* state
)
114 /* setup AGC parameters */
115 dprintk("%s\n", __func__
);
116 sp887x_writereg(state
, 0x33c, 0x054);
117 sp887x_writereg(state
, 0x33b, 0x04c);
118 sp887x_writereg(state
, 0x328, 0x000);
119 sp887x_writereg(state
, 0x327, 0x005);
120 sp887x_writereg(state
, 0x326, 0x001);
121 sp887x_writereg(state
, 0x325, 0x001);
122 sp887x_writereg(state
, 0x324, 0x001);
123 sp887x_writereg(state
, 0x318, 0x050);
124 sp887x_writereg(state
, 0x317, 0x3fe);
125 sp887x_writereg(state
, 0x316, 0x001);
126 sp887x_writereg(state
, 0x313, 0x005);
127 sp887x_writereg(state
, 0x312, 0x002);
128 sp887x_writereg(state
, 0x306, 0x000);
129 sp887x_writereg(state
, 0x303, 0x000);
133 #define FW_SIZE 0x4000
135 * load firmware and setup MPEG interface...
137 static int sp887x_initial_setup (struct dvb_frontend
* fe
, const struct firmware
*fw
)
139 struct sp887x_state
* state
= fe
->demodulator_priv
;
140 u8 buf
[BLOCKSIZE
+ 2];
142 int fw_size
= fw
->size
;
143 const unsigned char *mem
= fw
->data
;
145 dprintk("%s\n", __func__
);
147 /* ignore the first 10 bytes, then we expect 0x4000 bytes of firmware */
148 if (fw_size
< FW_SIZE
+ 10)
154 sp887x_writereg(state
, 0xf1a, 0x000);
156 sp887x_microcontroller_stop (state
);
158 printk ("%s: firmware upload... ", __func__
);
160 /* setup write pointer to -1 (end of memory) */
161 /* bit 0x8000 in address is set to enable 13bit mode */
162 sp887x_writereg(state
, 0x8f08, 0x1fff);
164 /* dummy write (wrap around to start of memory) */
165 sp887x_writereg(state
, 0x8f0a, 0x0000);
167 for (i
= 0; i
< FW_SIZE
; i
+= BLOCKSIZE
) {
174 /* bit 0x8000 in address is set to enable 13bit mode */
175 /* bit 0x4000 enables multibyte read/write transfers */
176 /* write register is 0xf0a */
180 memcpy(&buf
[2], mem
+ i
, c
);
182 if ((err
= i2c_writebytes (state
, buf
, c
+2)) < 0) {
183 printk ("failed.\n");
184 printk ("%s: i2c error (err == %i)\n", __func__
, err
);
189 /* don't write RS bytes between packets */
190 sp887x_writereg(state
, 0xc13, 0x001);
192 /* suppress clock if (!data_valid) */
193 sp887x_writereg(state
, 0xc14, 0x000);
195 /* setup MPEG interface... */
196 sp887x_writereg(state
, 0xc1a, 0x872);
197 sp887x_writereg(state
, 0xc1b, 0x001);
198 sp887x_writereg(state
, 0xc1c, 0x000); /* parallel mode (serial mode == 1) */
199 sp887x_writereg(state
, 0xc1a, 0x871);
201 /* ADC mode, 2 for MT8872, 3 for SP8870/SP8871 */
202 sp887x_writereg(state
, 0x301, 0x002);
204 sp887x_setup_agc(state
);
206 /* bit 0x010: enable data valid signal */
207 sp887x_writereg(state
, 0xd00, 0x010);
208 sp887x_writereg(state
, 0x0d1, 0x000);
212 static int configure_reg0xc05(struct dtv_frontend_properties
*p
, u16
*reg0xc05
)
214 int known_parameters
= 1;
218 switch (p
->modulation
) {
222 *reg0xc05
|= (1 << 10);
225 *reg0xc05
|= (2 << 10);
228 known_parameters
= 0;
234 switch (p
->hierarchy
) {
238 *reg0xc05
|= (1 << 7);
241 *reg0xc05
|= (2 << 7);
244 *reg0xc05
|= (3 << 7);
247 known_parameters
= 0;
253 switch (p
->code_rate_HP
) {
257 *reg0xc05
|= (1 << 3);
260 *reg0xc05
|= (2 << 3);
263 *reg0xc05
|= (3 << 3);
266 *reg0xc05
|= (4 << 3);
269 known_parameters
= 0;
275 if (known_parameters
)
276 *reg0xc05
|= (2 << 1); /* use specified parameters */
278 *reg0xc05
|= (1 << 1); /* enable autoprobing */
284 * estimates division of two 24bit numbers,
285 * derived from the ves1820/stv0299 driver code
287 static void divide (int n
, int d
, int *quotient_i
, int *quotient_f
)
299 q
= (q
<< 8) | (r
/ d
);
301 *quotient_f
= (q
<< 8) | (r
/ d
);
305 static void sp887x_correct_offsets (struct sp887x_state
* state
,
306 struct dtv_frontend_properties
*p
,
309 static const u32 srate_correction
[] = { 1879617, 4544878, 8098561 };
311 int freq_offset
= actual_freq
- p
->frequency
;
312 int sysclock
= 61003; //[kHz]
313 int ifreq
= 36000000;
317 switch (p
->bandwidth_hz
) {
330 if (p
->inversion
== INVERSION_ON
)
331 freq
= ifreq
- freq_offset
;
333 freq
= ifreq
+ freq_offset
;
335 divide(freq
/ 333, sysclock
, NULL
, &frequency_shift
);
337 if (p
->inversion
== INVERSION_ON
)
338 frequency_shift
= -frequency_shift
;
340 /* sample rate correction */
341 sp887x_writereg(state
, 0x319, srate_correction
[bw_index
] >> 12);
342 sp887x_writereg(state
, 0x31a, srate_correction
[bw_index
] & 0xfff);
344 /* carrier offset correction */
345 sp887x_writereg(state
, 0x309, frequency_shift
>> 12);
346 sp887x_writereg(state
, 0x30a, frequency_shift
& 0xfff);
349 static int sp887x_setup_frontend_parameters(struct dvb_frontend
*fe
)
351 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
352 struct sp887x_state
* state
= fe
->demodulator_priv
;
353 unsigned actual_freq
;
357 if (p
->bandwidth_hz
!= 8000000 &&
358 p
->bandwidth_hz
!= 7000000 &&
359 p
->bandwidth_hz
!= 6000000)
362 if ((err
= configure_reg0xc05(p
, ®0xc05
)))
365 sp887x_microcontroller_stop(state
);
368 if (fe
->ops
.tuner_ops
.set_params
) {
369 fe
->ops
.tuner_ops
.set_params(fe
);
370 if (fe
->ops
.i2c_gate_ctrl
) fe
->ops
.i2c_gate_ctrl(fe
, 0);
372 if (fe
->ops
.tuner_ops
.get_frequency
) {
373 fe
->ops
.tuner_ops
.get_frequency(fe
, &actual_freq
);
374 if (fe
->ops
.i2c_gate_ctrl
) fe
->ops
.i2c_gate_ctrl(fe
, 0);
376 actual_freq
= p
->frequency
;
379 /* read status reg in order to clear <pending irqs */
380 sp887x_readreg(state
, 0x200);
382 sp887x_correct_offsets(state
, p
, actual_freq
);
384 /* filter for 6/7/8 Mhz channel */
385 if (p
->bandwidth_hz
== 6000000)
387 else if (p
->bandwidth_hz
== 7000000)
392 sp887x_writereg(state
, 0x311, val
);
394 /* scan order: 2k first = 0, 8k first = 1 */
395 if (p
->transmission_mode
== TRANSMISSION_MODE_2K
)
396 sp887x_writereg(state
, 0x338, 0x000);
398 sp887x_writereg(state
, 0x338, 0x001);
400 sp887x_writereg(state
, 0xc05, reg0xc05
);
402 if (p
->bandwidth_hz
== 6000000)
404 else if (p
->bandwidth_hz
== 7000000)
409 /* enable OFDM and SAW bits as lock indicators in sync register 0xf17,
410 * optimize algorithm for given bandwidth...
412 sp887x_writereg(state
, 0xf14, 0x160 | val
);
413 sp887x_writereg(state
, 0xf15, 0x000);
415 sp887x_microcontroller_start(state
);
419 static int sp887x_read_status(struct dvb_frontend
*fe
, enum fe_status
*status
)
421 struct sp887x_state
* state
= fe
->demodulator_priv
;
422 u16 snr12
= sp887x_readreg(state
, 0xf16);
423 u16 sync0x200
= sp887x_readreg(state
, 0x200);
424 u16 sync0xf17
= sp887x_readreg(state
, 0xf17);
429 *status
|= FE_HAS_SIGNAL
;
431 //if (sync0x200 & 0x004)
432 // *status |= FE_HAS_SYNC | FE_HAS_CARRIER;
434 //if (sync0x200 & 0x008)
435 // *status |= FE_HAS_VITERBI;
437 if ((sync0xf17
& 0x00f) == 0x002) {
438 *status
|= FE_HAS_LOCK
;
439 *status
|= FE_HAS_VITERBI
| FE_HAS_SYNC
| FE_HAS_CARRIER
;
442 if (sync0x200
& 0x001) { /* tuner adjustment requested...*/
443 int steps
= (sync0x200
>> 4) & 0x00f;
446 dprintk("sp887x: implement tuner adjustment (%+i steps)!!\n",
453 static int sp887x_read_ber(struct dvb_frontend
* fe
, u32
* ber
)
455 struct sp887x_state
* state
= fe
->demodulator_priv
;
457 *ber
= (sp887x_readreg(state
, 0xc08) & 0x3f) |
458 (sp887x_readreg(state
, 0xc07) << 6);
459 sp887x_writereg(state
, 0xc08, 0x000);
460 sp887x_writereg(state
, 0xc07, 0x000);
467 static int sp887x_read_signal_strength(struct dvb_frontend
* fe
, u16
* strength
)
469 struct sp887x_state
* state
= fe
->demodulator_priv
;
471 u16 snr12
= sp887x_readreg(state
, 0xf16);
472 u32 signal
= 3 * (snr12
<< 4);
473 *strength
= (signal
< 0xffff) ? signal
: 0xffff;
478 static int sp887x_read_snr(struct dvb_frontend
* fe
, u16
* snr
)
480 struct sp887x_state
* state
= fe
->demodulator_priv
;
482 u16 snr12
= sp887x_readreg(state
, 0xf16);
483 *snr
= (snr12
<< 4) | (snr12
>> 8);
488 static int sp887x_read_ucblocks(struct dvb_frontend
* fe
, u32
* ucblocks
)
490 struct sp887x_state
* state
= fe
->demodulator_priv
;
492 *ucblocks
= sp887x_readreg(state
, 0xc0c);
493 if (*ucblocks
== 0xfff)
499 static int sp887x_i2c_gate_ctrl(struct dvb_frontend
* fe
, int enable
)
501 struct sp887x_state
* state
= fe
->demodulator_priv
;
504 return sp887x_writereg(state
, 0x206, 0x001);
506 return sp887x_writereg(state
, 0x206, 0x000);
510 static int sp887x_sleep(struct dvb_frontend
* fe
)
512 struct sp887x_state
* state
= fe
->demodulator_priv
;
514 /* tristate TS output and disable interface pins */
515 sp887x_writereg(state
, 0xc18, 0x000);
520 static int sp887x_init(struct dvb_frontend
* fe
)
522 struct sp887x_state
* state
= fe
->demodulator_priv
;
523 const struct firmware
*fw
= NULL
;
526 if (!state
->initialised
) {
527 /* request the firmware, this will block until someone uploads it */
528 printk("sp887x: waiting for firmware upload (%s)...\n", SP887X_DEFAULT_FIRMWARE
);
529 ret
= state
->config
->request_firmware(fe
, &fw
, SP887X_DEFAULT_FIRMWARE
);
531 printk("sp887x: no firmware upload (timeout or file not found?)\n");
535 ret
= sp887x_initial_setup(fe
, fw
);
536 release_firmware(fw
);
538 printk("sp887x: writing firmware to device failed\n");
541 printk("sp887x: firmware upload complete\n");
542 state
->initialised
= 1;
545 /* enable TS output and interface pins */
546 sp887x_writereg(state
, 0xc18, 0x00d);
551 static int sp887x_get_tune_settings(struct dvb_frontend
* fe
, struct dvb_frontend_tune_settings
* fesettings
)
553 fesettings
->min_delay_ms
= 350;
554 fesettings
->step_size
= 166666*2;
555 fesettings
->max_drift
= (166666*2)+1;
559 static void sp887x_release(struct dvb_frontend
* fe
)
561 struct sp887x_state
* state
= fe
->demodulator_priv
;
565 static const struct dvb_frontend_ops sp887x_ops
;
567 struct dvb_frontend
* sp887x_attach(const struct sp887x_config
* config
,
568 struct i2c_adapter
* i2c
)
570 struct sp887x_state
* state
= NULL
;
572 /* allocate memory for the internal state */
573 state
= kzalloc(sizeof(struct sp887x_state
), GFP_KERNEL
);
574 if (state
== NULL
) goto error
;
576 /* setup the state */
577 state
->config
= config
;
579 state
->initialised
= 0;
581 /* check if the demod is there */
582 if (sp887x_readreg(state
, 0x0200) < 0) goto error
;
584 /* create dvb_frontend */
585 memcpy(&state
->frontend
.ops
, &sp887x_ops
, sizeof(struct dvb_frontend_ops
));
586 state
->frontend
.demodulator_priv
= state
;
587 return &state
->frontend
;
594 static const struct dvb_frontend_ops sp887x_ops
= {
595 .delsys
= { SYS_DVBT
},
597 .name
= "Spase SP887x DVB-T",
598 .frequency_min_hz
= 50500 * kHz
,
599 .frequency_max_hz
= 858000 * kHz
,
600 .frequency_stepsize_hz
= 166666,
601 .caps
= FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
602 FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
| FE_CAN_FEC_AUTO
|
603 FE_CAN_QPSK
| FE_CAN_QAM_16
| FE_CAN_QAM_64
|
607 .release
= sp887x_release
,
610 .sleep
= sp887x_sleep
,
611 .i2c_gate_ctrl
= sp887x_i2c_gate_ctrl
,
613 .set_frontend
= sp887x_setup_frontend_parameters
,
614 .get_tune_settings
= sp887x_get_tune_settings
,
616 .read_status
= sp887x_read_status
,
617 .read_ber
= sp887x_read_ber
,
618 .read_signal_strength
= sp887x_read_signal_strength
,
619 .read_snr
= sp887x_read_snr
,
620 .read_ucblocks
= sp887x_read_ucblocks
,
623 module_param(debug
, int, 0644);
624 MODULE_PARM_DESC(debug
, "Turn on/off frontend debugging (default:off).");
626 MODULE_DESCRIPTION("Spase sp887x DVB-T demodulator driver");
627 MODULE_LICENSE("GPL");
629 EXPORT_SYMBOL(sp887x_attach
);