2020-08-29 15:32:42 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2018-05-15 23:01:39 +02:00
|
|
|
/*
|
|
|
|
* ddbridge-m4.c: Digital Devices MAX M4 driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 Digital Devices GmbH
|
|
|
|
* Marcus Metzler <mocm@metzlerbros.de>
|
|
|
|
* Ralph Metzler <rjkm@metzlerbros.de>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* version 2 only, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, point your browser to
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ddbridge.h"
|
|
|
|
#include "ddbridge-io.h"
|
|
|
|
#include "ddbridge-mci.h"
|
|
|
|
|
|
|
|
struct m4_base {
|
2018-06-23 16:52:22 +02:00
|
|
|
struct mci_base mci_base;
|
2018-05-15 23:01:39 +02:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
struct m4 {
|
2018-06-23 16:52:22 +02:00
|
|
|
struct mci mci;
|
2018-05-15 23:01:39 +02:00
|
|
|
|
2018-06-23 16:52:22 +02:00
|
|
|
int started;
|
|
|
|
int t2_signalling_valid;
|
|
|
|
int iq_constellation_point;
|
|
|
|
int iq_constellation_point_max;
|
|
|
|
int iq_constellation_tap;
|
|
|
|
int first_time_lock;
|
2018-05-15 23:01:39 +02:00
|
|
|
};
|
|
|
|
|
2018-06-23 16:52:22 +02:00
|
|
|
static int stop(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
struct mci_command cmd;
|
|
|
|
|
|
|
|
if (!state->started)
|
|
|
|
return -1;
|
|
|
|
state->started = 0;
|
|
|
|
state->t2_signalling_valid = 0;
|
|
|
|
memset(&cmd, 0, sizeof(cmd));
|
|
|
|
cmd.command = MCI_CMD_STOP;
|
|
|
|
cmd.demod = state->mci.demod;
|
|
|
|
ddb_mci_cmd(&state->mci, &cmd, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int search_s2(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
struct dtv_frontend_properties *p = &fe->dtv_property_cache;
|
|
|
|
struct mci_command cmd;
|
|
|
|
int stat;
|
|
|
|
|
|
|
|
memset(&cmd, 0, sizeof(cmd));
|
|
|
|
cmd.command = MCI_CMD_SEARCH_DVBS;
|
|
|
|
cmd.dvbs2_search.flags = 3;
|
|
|
|
cmd.dvbs2_search.s2_modulation_mask = 3;
|
2018-09-28 00:28:18 +02:00
|
|
|
cmd.dvbs2_search.retry = 0;
|
2018-06-23 16:52:22 +02:00
|
|
|
cmd.dvbs2_search.frequency = p->frequency * 1000;
|
|
|
|
cmd.dvbs2_search.symbol_rate = p->symbol_rate;
|
|
|
|
cmd.dvbs2_search.scrambling_sequence_index = 0; //p->scrambling_sequence_index;
|
2018-09-28 00:28:18 +02:00
|
|
|
if (p->stream_id != NO_STREAM_ID_FILTER)
|
|
|
|
cmd.dvbs2_search.input_stream_id = p->stream_id;
|
2018-06-23 16:52:22 +02:00
|
|
|
cmd.tuner = state->mci.nr;
|
|
|
|
cmd.demod = state->mci.tuner;
|
|
|
|
cmd.output = state->mci.nr;
|
|
|
|
|
|
|
|
stat = ddb_mci_cmd(&state->mci, &cmd, NULL);
|
|
|
|
if (stat)
|
|
|
|
stop(fe);
|
|
|
|
return stat;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int search_c(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
struct dtv_frontend_properties *p = &fe->dtv_property_cache;
|
|
|
|
struct mci_command cmd;
|
|
|
|
int stat;
|
|
|
|
|
|
|
|
memset(&cmd, 0, sizeof(cmd));
|
|
|
|
cmd.command = MCI_CMD_SEARCH_DVBC;
|
2019-12-11 09:07:17 +01:00
|
|
|
if (p->bandwidth_hz <= 6000000)
|
2018-06-23 16:52:22 +02:00
|
|
|
cmd.dvbc_search.bandwidth = MCI_BANDWIDTH_6MHZ;
|
2019-12-11 09:07:17 +01:00
|
|
|
else if (p->bandwidth_hz <= 7000000)
|
2018-06-23 16:52:22 +02:00
|
|
|
cmd.dvbc_search.bandwidth = MCI_BANDWIDTH_7MHZ;
|
2019-12-11 09:07:17 +01:00
|
|
|
else
|
2018-06-23 16:52:22 +02:00
|
|
|
cmd.dvbc_search.bandwidth = MCI_BANDWIDTH_8MHZ;
|
2018-09-28 00:28:18 +02:00
|
|
|
cmd.dvbc_search.retry = 0;
|
2018-06-23 16:52:22 +02:00
|
|
|
cmd.dvbc_search.frequency = p->frequency;
|
|
|
|
cmd.tuner = state->mci.tuner;
|
|
|
|
cmd.demod = state->mci.demod;
|
|
|
|
cmd.output = state->mci.nr;
|
|
|
|
|
|
|
|
stat = ddb_mci_cmd(&state->mci, &cmd, NULL);
|
|
|
|
if (stat)
|
|
|
|
stop(fe);
|
|
|
|
return stat;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int search_t(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
struct dtv_frontend_properties *p = &fe->dtv_property_cache;
|
|
|
|
struct mci_command cmd;
|
|
|
|
int stat;
|
|
|
|
|
|
|
|
memset(&cmd, 0, sizeof(cmd));
|
|
|
|
cmd.command = MCI_CMD_SEARCH_DVBT;
|
|
|
|
switch (p->bandwidth_hz) {
|
|
|
|
case 5000000:
|
|
|
|
cmd.dvbt_search.bandwidth = MCI_BANDWIDTH_5MHZ;
|
|
|
|
break;
|
|
|
|
case 6000000:
|
|
|
|
cmd.dvbt_search.bandwidth = MCI_BANDWIDTH_6MHZ;
|
|
|
|
break;
|
|
|
|
case 7000000:
|
|
|
|
cmd.dvbt_search.bandwidth = MCI_BANDWIDTH_7MHZ;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cmd.dvbt_search.bandwidth = MCI_BANDWIDTH_8MHZ;
|
|
|
|
break;
|
|
|
|
}
|
2018-09-28 00:28:18 +02:00
|
|
|
cmd.dvbt_search.retry = 0;
|
2018-06-23 16:52:22 +02:00
|
|
|
cmd.dvbt_search.frequency = p->frequency;
|
|
|
|
cmd.tuner = state->mci.tuner;
|
|
|
|
cmd.demod = state->mci.demod;
|
|
|
|
cmd.output = state->mci.nr;
|
|
|
|
|
|
|
|
stat = ddb_mci_cmd(&state->mci, &cmd, NULL);
|
|
|
|
if (stat)
|
|
|
|
stop(fe);
|
|
|
|
return stat;
|
|
|
|
}
|
|
|
|
|
2018-09-28 00:28:18 +02:00
|
|
|
static int search_isdbs(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
struct dtv_frontend_properties *p = &fe->dtv_property_cache;
|
|
|
|
struct mci_command cmd;
|
|
|
|
int stat;
|
|
|
|
|
|
|
|
memset(&cmd, 0, sizeof(cmd));
|
|
|
|
cmd.command = MCI_CMD_SEARCH_ISDBS;
|
|
|
|
cmd.isdbs_search.retry = 0;
|
|
|
|
if (p->stream_id != NO_STREAM_ID_FILTER) {
|
|
|
|
cmd.isdbs_search.flags = (p->stream_id & 0xffff0000) ? 0 : 1;
|
|
|
|
cmd.isdbs_search.tsid = p->stream_id;
|
|
|
|
}
|
|
|
|
cmd.isdbs_search.frequency = p->frequency * 1000;
|
|
|
|
cmd.tuner = state->mci.nr;
|
|
|
|
cmd.demod = state->mci.tuner;
|
|
|
|
cmd.output = state->mci.nr;
|
|
|
|
|
|
|
|
stat = ddb_mci_cmd(&state->mci, &cmd, NULL);
|
|
|
|
if (stat)
|
|
|
|
stop(fe);
|
|
|
|
return stat;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int search_isdbc(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
struct dtv_frontend_properties *p = &fe->dtv_property_cache;
|
|
|
|
struct mci_command cmd;
|
|
|
|
int stat;
|
|
|
|
|
|
|
|
memset(&cmd, 0, sizeof(cmd));
|
|
|
|
cmd.command = MCI_CMD_SEARCH_ISDBC;
|
|
|
|
cmd.isdbc_search.retry = 0;
|
|
|
|
if (p->stream_id != NO_STREAM_ID_FILTER) {
|
|
|
|
cmd.isdbc_search.flags = (p->stream_id & 0xffff0000) ? 0 : 1;
|
|
|
|
cmd.isdbc_search.tsid = p->stream_id;
|
|
|
|
cmd.isdbc_search.onid = (p->stream_id & 0x10000) >> 16;
|
|
|
|
}
|
|
|
|
cmd.isdbc_search.bandwidth = MCI_BANDWIDTH_6MHZ;
|
|
|
|
cmd.isdbc_search.frequency = p->frequency;
|
|
|
|
cmd.demod = state->mci.tuner;
|
|
|
|
cmd.output = state->mci.nr;
|
|
|
|
|
|
|
|
stat = ddb_mci_cmd(&state->mci, &cmd, NULL);
|
|
|
|
if (stat)
|
|
|
|
stop(fe);
|
|
|
|
return stat;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int search_j83b(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
struct dtv_frontend_properties *p = &fe->dtv_property_cache;
|
|
|
|
struct mci_command cmd;
|
|
|
|
int stat;
|
|
|
|
|
|
|
|
memset(&cmd, 0, sizeof(cmd));
|
|
|
|
cmd.command = MCI_CMD_SEARCH_J83B;
|
|
|
|
cmd.j83b_search.flags = 0;
|
|
|
|
cmd.j83b_search.retry = 0;
|
|
|
|
cmd.j83b_search.bandwidth = MCI_BANDWIDTH_6MHZ;
|
2019-12-11 09:08:25 +01:00
|
|
|
if (p->symbol_rate > 5500000)
|
|
|
|
cmd.j83b_search.bandwidth |= MCI_BANDWIDTH_EXTENSION;
|
2018-09-28 00:28:18 +02:00
|
|
|
cmd.j83b_search.frequency = p->frequency;
|
|
|
|
cmd.demod = state->mci.tuner;
|
|
|
|
cmd.output = state->mci.nr;
|
|
|
|
|
|
|
|
stat = ddb_mci_cmd(&state->mci, &cmd, NULL);
|
|
|
|
if (stat)
|
|
|
|
stop(fe);
|
|
|
|
return stat;
|
|
|
|
}
|
|
|
|
|
2018-06-23 16:52:22 +02:00
|
|
|
static int search_t2(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
struct dtv_frontend_properties *p = &fe->dtv_property_cache;
|
|
|
|
struct mci_command cmd;
|
|
|
|
int stat;
|
|
|
|
|
|
|
|
memset(&cmd, 0, sizeof(cmd));
|
|
|
|
cmd.command = MCI_CMD_SEARCH_DVBT2;
|
|
|
|
switch (p->bandwidth_hz) {
|
|
|
|
case 1700000:
|
|
|
|
cmd.dvbt_search.bandwidth = MCI_BANDWIDTH_1_7MHZ;
|
|
|
|
break;
|
|
|
|
case 5000000:
|
|
|
|
cmd.dvbt_search.bandwidth = MCI_BANDWIDTH_5MHZ;
|
|
|
|
break;
|
|
|
|
case 6000000:
|
|
|
|
cmd.dvbt_search.bandwidth = MCI_BANDWIDTH_6MHZ;
|
|
|
|
break;
|
|
|
|
case 7000000:
|
|
|
|
cmd.dvbt_search.bandwidth = MCI_BANDWIDTH_7MHZ;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cmd.dvbt_search.bandwidth = MCI_BANDWIDTH_8MHZ;
|
|
|
|
break;
|
|
|
|
}
|
2018-09-28 00:28:18 +02:00
|
|
|
cmd.dvbt2_search.retry = 0;
|
2018-06-23 16:52:22 +02:00
|
|
|
cmd.dvbt2_search.frequency = p->frequency;
|
|
|
|
if (p->stream_id != NO_STREAM_ID_FILTER) {
|
|
|
|
cmd.dvbt2_search.plp = p->stream_id & 0xff;
|
|
|
|
cmd.dvbt2_search.flags |= 0x80;
|
|
|
|
cmd.dvbt2_search.flags |= (p->stream_id >> 8) & 1;
|
|
|
|
}
|
|
|
|
cmd.tuner = state->mci.tuner;
|
|
|
|
cmd.demod = state->mci.demod;
|
|
|
|
cmd.output = state->mci.nr;
|
|
|
|
|
|
|
|
stat = ddb_mci_cmd(&state->mci, &cmd, NULL);
|
|
|
|
if (stat)
|
|
|
|
stop(fe);
|
|
|
|
return stat;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int search_c2(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
struct dtv_frontend_properties *p = &fe->dtv_property_cache;
|
|
|
|
struct mci_command cmd;
|
|
|
|
int stat;
|
|
|
|
|
|
|
|
memset(&cmd, 0, sizeof(cmd));
|
|
|
|
cmd.command = MCI_CMD_SEARCH_DVBC2;
|
|
|
|
switch (p->bandwidth_hz) {
|
|
|
|
case 6000000:
|
|
|
|
cmd.dvbc2_search.bandwidth = MCI_BANDWIDTH_6MHZ;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cmd.dvbc2_search.bandwidth = MCI_BANDWIDTH_8MHZ;
|
|
|
|
break;
|
|
|
|
}
|
2018-09-28 00:28:18 +02:00
|
|
|
cmd.dvbc2_search.retry = 0;
|
2018-06-23 16:52:22 +02:00
|
|
|
cmd.dvbc2_search.frequency = p->frequency;
|
|
|
|
if (p->stream_id != NO_STREAM_ID_FILTER) {
|
|
|
|
cmd.dvbc2_search.plp = p->stream_id & 0xff;
|
|
|
|
cmd.dvbc2_search.data_slice = (p->stream_id >> 8) & 0xff;
|
|
|
|
}
|
|
|
|
cmd.tuner = state->mci.tuner;
|
|
|
|
cmd.demod = state->mci.demod;
|
|
|
|
cmd.output = state->mci.nr;
|
|
|
|
|
|
|
|
stat = ddb_mci_cmd(&state->mci, &cmd, NULL);
|
|
|
|
if (stat)
|
|
|
|
stop(fe);
|
|
|
|
return stat;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int search_isdbt(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
struct dtv_frontend_properties *p = &fe->dtv_property_cache;
|
|
|
|
struct mci_command cmd;
|
|
|
|
int stat;
|
|
|
|
|
|
|
|
memset(&cmd, 0, sizeof(cmd));
|
|
|
|
cmd.command = MCI_CMD_SEARCH_ISDBT;
|
|
|
|
switch (p->bandwidth_hz) {
|
|
|
|
case 8000000:
|
|
|
|
cmd.isdbt_search.bandwidth = MCI_BANDWIDTH_8MHZ;
|
|
|
|
break;
|
|
|
|
case 7000000:
|
|
|
|
cmd.isdbt_search.bandwidth = MCI_BANDWIDTH_7MHZ;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cmd.isdbt_search.bandwidth = MCI_BANDWIDTH_6MHZ;
|
|
|
|
break;
|
|
|
|
}
|
2018-09-28 00:28:18 +02:00
|
|
|
cmd.isdbt_search.retry = 0;
|
2018-06-23 16:52:22 +02:00
|
|
|
cmd.isdbt_search.frequency = p->frequency;
|
|
|
|
cmd.tuner = state->mci.tuner;
|
|
|
|
cmd.demod = state->mci.demod;
|
|
|
|
cmd.output = state->mci.nr;
|
|
|
|
|
|
|
|
stat = ddb_mci_cmd(&state->mci, &cmd, NULL);
|
|
|
|
if (stat)
|
|
|
|
stop(fe);
|
|
|
|
return stat;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int set_parameters(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
int res;
|
2020-08-29 15:32:42 +02:00
|
|
|
//struct dtv_frontend_properties *p = &fe->dtv_property_cache;
|
2018-06-23 16:52:22 +02:00
|
|
|
|
|
|
|
stop(fe);
|
|
|
|
|
|
|
|
state->t2_signalling_valid = 0;
|
|
|
|
state->iq_constellation_point = 0;
|
|
|
|
state->iq_constellation_point_max = 0;
|
|
|
|
|
|
|
|
state->iq_constellation_tap = 0;
|
2020-08-29 15:32:42 +02:00
|
|
|
//printk("bw = %u\n", p->bandwidth_hz);
|
2018-06-23 16:52:22 +02:00
|
|
|
switch (fe->dtv_property_cache.delivery_system) {
|
|
|
|
case SYS_DVBS:
|
|
|
|
case SYS_DVBS2:
|
|
|
|
res = search_s2(fe);
|
|
|
|
break;
|
|
|
|
case SYS_DVBC_ANNEX_A:
|
|
|
|
res = search_c(fe);
|
|
|
|
break;
|
2018-09-28 00:28:18 +02:00
|
|
|
case SYS_DVBC_ANNEX_B:
|
|
|
|
res = search_j83b(fe);
|
|
|
|
break;
|
2018-06-23 16:52:22 +02:00
|
|
|
case SYS_DVBT:
|
|
|
|
state->iq_constellation_tap = 5;
|
|
|
|
res = search_t(fe);
|
|
|
|
break;
|
|
|
|
case SYS_DVBT2:
|
|
|
|
res = search_t2(fe);
|
|
|
|
break;
|
|
|
|
case SYS_DVBC2:
|
|
|
|
res = search_c2(fe);
|
|
|
|
break;
|
|
|
|
case SYS_ISDBT:
|
|
|
|
res = search_isdbt(fe);
|
|
|
|
break;
|
2018-09-28 00:28:18 +02:00
|
|
|
case SYS_ISDBS:
|
|
|
|
res = search_isdbs(fe);
|
|
|
|
break;
|
|
|
|
case SYS_DVBC_ANNEX_C:
|
|
|
|
case SYS_ISDBC:
|
|
|
|
res = search_isdbc(fe);
|
|
|
|
break;
|
2018-06-23 16:52:22 +02:00
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
if (!res) {
|
|
|
|
state->started = 1;
|
|
|
|
state->first_time_lock = 1;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int read_status(struct dvb_frontend *fe, enum fe_status *status)
|
|
|
|
{
|
|
|
|
int stat;
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
struct mci_result res;
|
|
|
|
|
2021-03-10 22:03:56 +01:00
|
|
|
*status = 0x00;
|
|
|
|
if (!state->started)
|
|
|
|
return 0;
|
2018-06-23 16:52:22 +02:00
|
|
|
stat = ddb_mci_get_status(&state->mci, &res);
|
|
|
|
if (stat)
|
|
|
|
return stat;
|
2018-09-28 00:28:18 +02:00
|
|
|
stat = ddb_mci_get_info(&state->mci);
|
|
|
|
if (stat)
|
|
|
|
return stat;
|
2018-06-23 16:52:22 +02:00
|
|
|
ddb_mci_get_strength(fe);
|
2018-09-17 15:30:21 +02:00
|
|
|
if (res.status == MCI_DEMOD_WAIT_SIGNAL)
|
2018-06-23 16:52:22 +02:00
|
|
|
*status = 0x01;
|
2021-05-14 22:49:19 +02:00
|
|
|
else if (res.status == M4_DEMOD_WAIT_TS)
|
2020-12-01 15:56:21 +01:00
|
|
|
*status = 0x03;
|
2021-05-14 22:49:19 +02:00
|
|
|
else if (res.status == MCI_DEMOD_TIMEOUT)
|
|
|
|
*status = FE_TIMEDOUT;
|
|
|
|
else if (res.status == MCI_DEMOD_LOCKED) {
|
2018-06-23 16:52:22 +02:00
|
|
|
*status = 0x1f;
|
|
|
|
ddb_mci_get_snr(fe);
|
|
|
|
}
|
|
|
|
return stat;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tune(struct dvb_frontend *fe, bool re_tune,
|
|
|
|
unsigned int mode_flags,
|
|
|
|
unsigned int *delay, enum fe_status *status)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if (re_tune) {
|
|
|
|
r = set_parameters(fe);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
r = read_status(fe, status);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
if (*status & FE_HAS_LOCK)
|
|
|
|
return 0;
|
|
|
|
*delay = HZ / 10;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sleep(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
|
|
|
|
if (state->started)
|
|
|
|
stop(fe);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void release(struct dvb_frontend *fe)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
struct mci_base *mci_base = state->mci.base;
|
|
|
|
|
|
|
|
mci_base->count--;
|
|
|
|
if (mci_base->count == 0) {
|
|
|
|
list_del(&mci_base->mci_list);
|
|
|
|
kfree(mci_base);
|
|
|
|
}
|
|
|
|
kfree(state);
|
|
|
|
}
|
|
|
|
|
2020-08-29 15:32:42 +02:00
|
|
|
static enum dvbfe_algo get_algo(struct dvb_frontend *fe)
|
2018-06-23 16:52:22 +02:00
|
|
|
{
|
|
|
|
return DVBFE_ALGO_HW;
|
|
|
|
}
|
|
|
|
|
2018-06-29 12:48:12 +02:00
|
|
|
static int get_frontend(struct dvb_frontend *fe, struct dtv_frontend_properties *p)
|
|
|
|
{
|
|
|
|
struct m4 *state = fe->demodulator_priv;
|
|
|
|
|
|
|
|
ddb_mci_proc_info(&state->mci, p);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-05-15 23:01:39 +02:00
|
|
|
static struct dvb_frontend_ops m4_ops = {
|
2018-09-28 00:28:18 +02:00
|
|
|
.delsys = { SYS_DVBC_ANNEX_A, SYS_DVBC_ANNEX_B, SYS_DVBC_ANNEX_C,
|
|
|
|
SYS_ISDBC, SYS_DVBC2,
|
|
|
|
SYS_DVBT, SYS_DVBT2, SYS_ISDBT,
|
|
|
|
SYS_DVBS, SYS_DVBS2, SYS_ISDBS, },
|
2018-05-15 23:01:39 +02:00
|
|
|
.info = {
|
|
|
|
.name = "M4",
|
2020-08-29 15:32:42 +02:00
|
|
|
.frequency_min_hz = 47125000, /* DVB-T: 47125000 */
|
|
|
|
.frequency_max_hz = 2150000000, /* DVB-C: 862000000 */
|
2018-06-23 16:52:22 +02:00
|
|
|
.symbol_rate_min = 100000,
|
|
|
|
.symbol_rate_max = 100000000,
|
2020-08-29 15:32:42 +02:00
|
|
|
.frequency_stepsize_hz = 0,
|
|
|
|
.frequency_tolerance_hz = 0,
|
2018-05-15 23:01:39 +02:00
|
|
|
.caps = FE_CAN_QPSK | FE_CAN_QAM_16 | FE_CAN_QAM_32 |
|
2020-08-29 15:32:42 +02:00
|
|
|
FE_CAN_QAM_64 | FE_CAN_QAM_128 | FE_CAN_QAM_256 |
|
|
|
|
FE_CAN_QAM_AUTO |
|
|
|
|
FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 |
|
|
|
|
FE_CAN_FEC_4_5 |
|
|
|
|
FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 | FE_CAN_FEC_AUTO |
|
|
|
|
FE_CAN_TRANSMISSION_MODE_AUTO |
|
|
|
|
FE_CAN_GUARD_INTERVAL_AUTO | FE_CAN_HIERARCHY_AUTO |
|
|
|
|
FE_CAN_RECOVER | FE_CAN_MUTE_TS | FE_CAN_2G_MODULATION
|
2018-05-15 23:01:39 +02:00
|
|
|
},
|
|
|
|
.release = release,
|
2018-06-23 16:52:22 +02:00
|
|
|
.get_frontend_algo = get_algo,
|
2018-06-29 12:48:12 +02:00
|
|
|
.get_frontend = get_frontend,
|
2018-05-15 23:01:39 +02:00
|
|
|
.read_status = read_status,
|
2018-06-23 16:52:22 +02:00
|
|
|
.tune = tune,
|
2018-05-15 23:01:39 +02:00
|
|
|
.sleep = sleep,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int init(struct mci *mci)
|
|
|
|
{
|
|
|
|
//struct m4 *state = (struct m4 *) mci;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int base_init(struct mci_base *mci_base)
|
|
|
|
{
|
|
|
|
//struct m4_base *base = (struct m4_base *) mci_base;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-02-12 15:14:44 +01:00
|
|
|
static struct mci_cfg ddb_max_m4_cfg = {
|
2018-05-15 23:01:39 +02:00
|
|
|
.type = 0,
|
|
|
|
.fe_ops = &m4_ops,
|
|
|
|
.base_size = sizeof(struct m4_base),
|
|
|
|
.state_size = sizeof(struct m4),
|
|
|
|
.init = init,
|
|
|
|
.base_init = base_init,
|
|
|
|
};
|
2022-02-12 15:14:44 +01:00
|
|
|
|
|
|
|
struct dvb_frontend *ddb_m4_attach(struct ddb_input *input, int nr, int tuner)
|
|
|
|
{
|
|
|
|
return ddb_mci_attach(input, &ddb_max_m4_cfg, nr, tuner);
|
|
|
|
}
|