On 06/20/2017 08:45 PM, Daniel Scheller wrote:
From: Daniel Scheller <d.schel...@gmx.net>

This adds the basics to stv0367ddb_get_frontend() to be able to properly
provide signal statistics in DVBv5 format. Also adds UCB readout and
provides those values.

Signed-off-by: Daniel Scheller <d.schel...@gmx.net>
---
  drivers/media/dvb-frontends/stv0367.c | 59 ++++++++++++++++++++++++++++++++---
  1 file changed, 55 insertions(+), 4 deletions(-)

diff --git a/drivers/media/dvb-frontends/stv0367.c 
b/drivers/media/dvb-frontends/stv0367.c
index e726c2e00460..5374d4eaabd6 100644
--- a/drivers/media/dvb-frontends/stv0367.c
+++ b/drivers/media/dvb-frontends/stv0367.c
@@ -2997,21 +2997,64 @@ static int stv0367ddb_read_status(struct dvb_frontend 
*fe,
        return -EINVAL;
  }
+static void stv0367ddb_read_ucblocks(struct dvb_frontend *fe)
+{
+       struct stv0367_state *state = fe->demodulator_priv;
+       struct dtv_frontend_properties *p = &fe->dtv_property_cache;
+       u32 ucblocks = 0;
+
+       switch (state->activedemod) {
+       case demod_ter:
+               stv0367ter_read_ucblocks(fe, &ucblocks);
+               break;
+       case demod_cab:
+               stv0367cab_read_ucblcks(fe, &ucblocks);
+               break;
+       default:
+               p->block_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
+               return;
+       }
+
+       p->block_error.stat[0].scale = FE_SCALE_COUNTER;
+       p->block_error.stat[0].uvalue = ucblocks;
+}
+
  static int stv0367ddb_get_frontend(struct dvb_frontend *fe,
                                   struct dtv_frontend_properties *p)
  {
        struct stv0367_state *state = fe->demodulator_priv;
+       int ret = -EINVAL;
+       enum fe_status status = 0;
switch (state->activedemod) {
        case demod_ter:
-               return stv0367ter_get_frontend(fe, p);
+               ret = stv0367ter_get_frontend(fe, p);
+               break;
        case demod_cab:
-               return stv0367cab_get_frontend(fe, p);
-       default:
+               ret = stv0367cab_get_frontend(fe, p);
                break;
+       default:
+               p->strength.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
+               p->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
+               p->block_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
+               return ret;
        }
- return -EINVAL;
+       /* read fe lock status */
+       if (!ret)
+               ret = stv0367ddb_read_status(fe, &status);
+
+       /* stop if get_frontend failed or if demod isn't locked */
+       if (ret || !(status & FE_HAS_LOCK)) {
+               p->strength.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
+               p->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
+               p->block_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
+               return ret;
+       }

Requiring LOCK for strength and cnr sounds wrong. Demod usually calculates strength from IF and RF AGC and those are available even there is no signal at all (demod set those gains to max on that case). CNR is pretty often available when inner FEC (viterbi, LDPC) is on sync.

And for ber and per you need outer fec (reed-solomon, bch) too which is FE_HAS_SYNC flag on api. ber is error bit and count after inner fec, per is error packet and count after outer fec. Usually ber is counted as a bits and per is counted as a 204 ts packets.

Also having that statistics stuff updated inside a get_frontend() sounds wrong. I think that callback is optional and is not called unless userspace polls it.


+
+       stv0367ddb_read_ucblocks(fe);
+
+       return 0;
  }
static int stv0367ddb_sleep(struct dvb_frontend *fe)
@@ -3035,6 +3078,7 @@ static int stv0367ddb_sleep(struct dvb_frontend *fe)
  static int stv0367ddb_init(struct stv0367_state *state)
  {
        struct stv0367ter_state *ter_state = state->ter_state;
+       struct dtv_frontend_properties *p = &state->fe.dtv_property_cache;
stv0367_writereg(state, R367TER_TOPCTRL, 0x10); @@ -3109,6 +3153,13 @@ static int stv0367ddb_init(struct stv0367_state *state)
        ter_state->first_lock = 0;
        ter_state->unlock_counter = 2;
+ p->strength.len = 1;
+       p->strength.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
+       p->cnr.len = 1;
+       p->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
+       p->block_error.len = 1;
+       p->block_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
+
        return 0;
  }

regards
Antti

--
http://palosaari.fi/

Reply via email to