Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/drivers/media/dvb-frontends/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 133 kB image not shown  

Quelle  dib8000.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Linux-DVB Driver for DiBcom's DiB8000 chip (ISDB-T).
 *
 * Copyright (C) 2009 DiBcom (http://www.dibcom.fr/)
 */


#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/i2c.h>
#include <linux/mutex.h>
#include <asm/div64.h>

#include <linux/int_log.h>

#include <media/dvb_frontend.h>

#include "dib8000.h"

#define LAYER_ALL -1
#define LAYER_A   1
#define LAYER_B   2
#define LAYER_C   3

#define MAX_NUMBER_OF_FRONTENDS 6
/* #define DIB8000_AGC_FREEZE */

static int debug;
module_param(debug, int, 0644);
MODULE_PARM_DESC(debug, "turn on debugging (default: 0)");

#define dprintk(fmt, arg...) do {     \
 if (debug)       \
  printk(KERN_DEBUG pr_fmt("%s: " fmt),   \
         __func__, ##arg);    \
while (0)

struct i2c_device {
 struct i2c_adapter *adap;
 u8 addr;
 u8 *i2c_write_buffer;
 u8 *i2c_read_buffer;
 struct mutex *i2c_buffer_lock;
};

enum param_loop_step {
 LOOP_TUNE_1,
 LOOP_TUNE_2
};

enum dib8000_autosearch_step {
 AS_START = 0,
 AS_SEARCHING_FFT,
 AS_SEARCHING_GUARD,
 AS_DONE = 100,
};

enum timeout_mode {
 SYMBOL_DEPENDENT_OFF = 0,
 SYMBOL_DEPENDENT_ON,
};

struct dib8000_state {
 struct dib8000_config cfg;

 struct i2c_device i2c;

 struct dibx000_i2c_master i2c_master;

 u16 wbd_ref;

 u8 current_band;
 u32 current_bandwidth;
 struct dibx000_agc_config *current_agc;
 u32 timf;
 u32 timf_default;

 u8 div_force_off:1;
 u8 div_state:1;
 u16 div_sync_wait;

 u8 agc_state;
 u8 differential_constellation;
 u8 diversity_onoff;

 s16 ber_monitored_layer;
 u16 gpio_dir;
 u16 gpio_val;

 u16 revision;
 u8 isdbt_cfg_loaded;
 enum frontend_tune_state tune_state;
 s32 status;

 struct dvb_frontend *fe[MAX_NUMBER_OF_FRONTENDS];

 /* for the I2C transfer */
 struct i2c_msg msg[2];
 u8 i2c_write_buffer[4];
 u8 i2c_read_buffer[2];
 struct mutex i2c_buffer_lock;
 u8 input_mode_mpeg;

 u16 tuner_enable;
 struct i2c_adapter dib8096p_tuner_adap;
 u16 current_demod_bw;

 u16 seg_mask;
 u16 seg_diff_mask;
 u16 mode;
 u8 layer_b_nb_seg;
 u8 layer_c_nb_seg;

 u8 channel_parameters_set;
 u16 autosearch_state;
 u16 found_nfft;
 u16 found_guard;
 u8 subchannel;
 u8 symbol_duration;
 unsigned long timeout;
 u8 longest_intlv_layer;
 u16 output_mode;

 /* for DVBv5 stats */
 s64 init_ucb;
 unsigned long per_jiffies_stats;
 unsigned long ber_jiffies_stats;
 unsigned long ber_jiffies_stats_layer[3];

#ifdef DIB8000_AGC_FREEZE
 u16 agc1_max;
 u16 agc1_min;
 u16 agc2_max;
 u16 agc2_min;
#endif
};

enum dib8000_power_mode {
 DIB8000_POWER_ALL = 0,
 DIB8000_POWER_INTERFACE_ONLY,
};

static u16 dib8000_i2c_read16(struct i2c_device *i2c, u16 reg)
{
 u16 ret;
 struct i2c_msg msg[2] = {
  {.addr = i2c->addr >> 1, .flags = 0, .len = 2},
  {.addr = i2c->addr >> 1, .flags = I2C_M_RD, .len = 2},
 };

 if (mutex_lock_interruptible(i2c->i2c_buffer_lock) < 0) {
  dprintk("could not acquire lock\n");
  return 0;
 }

 msg[0].buf    = i2c->i2c_write_buffer;
 msg[0].buf[0] = reg >> 8;
 msg[0].buf[1] = reg & 0xff;
 msg[1].buf    = i2c->i2c_read_buffer;

 if (i2c_transfer(i2c->adap, msg, 2) != 2)
  dprintk("i2c read error on %d\n", reg);

 ret = (msg[1].buf[0] << 8) | msg[1].buf[1];
 mutex_unlock(i2c->i2c_buffer_lock);
 return ret;
}

static u16 __dib8000_read_word(struct dib8000_state *state, u16 reg)
{
 u16 ret;

 state->i2c_write_buffer[0] = reg >> 8;
 state->i2c_write_buffer[1] = reg & 0xff;

 memset(state->msg, 0, 2 * sizeof(struct i2c_msg));
 state->msg[0].addr = state->i2c.addr >> 1;
 state->msg[0].flags = 0;
 state->msg[0].buf = state->i2c_write_buffer;
 state->msg[0].len = 2;
 state->msg[1].addr = state->i2c.addr >> 1;
 state->msg[1].flags = I2C_M_RD;
 state->msg[1].buf = state->i2c_read_buffer;
 state->msg[1].len = 2;

 if (i2c_transfer(state->i2c.adap, state->msg, 2) != 2)
  dprintk("i2c read error on %d\n", reg);

 ret = (state->i2c_read_buffer[0] << 8) | state->i2c_read_buffer[1];

 return ret;
}

static u16 dib8000_read_word(struct dib8000_state *state, u16 reg)
{
 u16 ret;

 if (mutex_lock_interruptible(&state->i2c_buffer_lock) < 0) {
  dprintk("could not acquire lock\n");
  return 0;
 }

 ret = __dib8000_read_word(state, reg);

 mutex_unlock(&state->i2c_buffer_lock);

 return ret;
}

static u32 dib8000_read32(struct dib8000_state *state, u16 reg)
{
 u16 rw[2];

 if (mutex_lock_interruptible(&state->i2c_buffer_lock) < 0) {
  dprintk("could not acquire lock\n");
  return 0;
 }

 rw[0] = __dib8000_read_word(state, reg + 0);
 rw[1] = __dib8000_read_word(state, reg + 1);

 mutex_unlock(&state->i2c_buffer_lock);

 return ((rw[0] << 16) | (rw[1]));
}

static int dib8000_i2c_write16(struct i2c_device *i2c, u16 reg, u16 val)
{
 struct i2c_msg msg = {.addr = i2c->addr >> 1, .flags = 0, .len = 4};
 int ret = 0;

 if (mutex_lock_interruptible(i2c->i2c_buffer_lock) < 0) {
  dprintk("could not acquire lock\n");
  return -EINVAL;
 }

 msg.buf    = i2c->i2c_write_buffer;
 msg.buf[0] = (reg >> 8) & 0xff;
 msg.buf[1] = reg & 0xff;
 msg.buf[2] = (val >> 8) & 0xff;
 msg.buf[3] = val & 0xff;

 ret = i2c_transfer(i2c->adap, &msg, 1) != 1 ? -EREMOTEIO : 0;
 mutex_unlock(i2c->i2c_buffer_lock);

 return ret;
}

static int dib8000_write_word(struct dib8000_state *state, u16 reg, u16 val)
{
 int ret;

 if (mutex_lock_interruptible(&state->i2c_buffer_lock) < 0) {
  dprintk("could not acquire lock\n");
  return -EINVAL;
 }

 state->i2c_write_buffer[0] = (reg >> 8) & 0xff;
 state->i2c_write_buffer[1] = reg & 0xff;
 state->i2c_write_buffer[2] = (val >> 8) & 0xff;
 state->i2c_write_buffer[3] = val & 0xff;

 memset(&state->msg[0], 0, sizeof(struct i2c_msg));
 state->msg[0].addr = state->i2c.addr >> 1;
 state->msg[0].flags = 0;
 state->msg[0].buf = state->i2c_write_buffer;
 state->msg[0].len = 4;

 ret = (i2c_transfer(state->i2c.adap, state->msg, 1) != 1 ?
   -EREMOTEIO : 0);
 mutex_unlock(&state->i2c_buffer_lock);

 return ret;
}

static const s16 coeff_2k_sb_1seg_dqpsk[8] = {
 (769 << 5) | 0x0a, (745 << 5) | 0x03, (595 << 5) | 0x0d, (769 << 5) | 0x0a, (920 << 5) | 0x09, (784 << 5) | 0x02, (519 << 5) | 0x0c,
  (920 << 5) | 0x09
};

static const s16 coeff_2k_sb_1seg[8] = {
 (692 << 5) | 0x0b, (683 << 5) | 0x01, (519 << 5) | 0x09, (692 << 5) | 0x0b, 0 | 0x1f, 0 | 0x1f, 0 | 0x1f, 0 | 0x1f
};

static const s16 coeff_2k_sb_3seg_0dqpsk_1dqpsk[8] = {
 (832 << 5) | 0x10, (912 << 5) | 0x05, (900 << 5) | 0x12, (832 << 5) | 0x10, (-931 << 5) | 0x0f, (912 << 5) | 0x04, (807 << 5) | 0x11,
  (-931 << 5) | 0x0f
};

static const s16 coeff_2k_sb_3seg_0dqpsk[8] = {
 (622 << 5) | 0x0c, (941 << 5) | 0x04, (796 << 5) | 0x10, (622 << 5) | 0x0c, (982 << 5) | 0x0c, (519 << 5) | 0x02, (572 << 5) | 0x0e,
  (982 << 5) | 0x0c
};

static const s16 coeff_2k_sb_3seg_1dqpsk[8] = {
 (699 << 5) | 0x14, (607 << 5) | 0x04, (944 << 5) | 0x13, (699 << 5) | 0x14, (-720 << 5) | 0x0d, (640 << 5) | 0x03, (866 << 5) | 0x12,
  (-720 << 5) | 0x0d
};

static const s16 coeff_2k_sb_3seg[8] = {
 (664 << 5) | 0x0c, (925 << 5) | 0x03, (937 << 5) | 0x10, (664 << 5) | 0x0c, (-610 << 5) | 0x0a, (697 << 5) | 0x01, (836 << 5) | 0x0e,
  (-610 << 5) | 0x0a
};

static const s16 coeff_4k_sb_1seg_dqpsk[8] = {
 (-955 << 5) | 0x0e, (687 << 5) | 0x04, (818 << 5) | 0x10, (-955 << 5) | 0x0e, (-922 << 5) | 0x0d, (750 << 5) | 0x03, (665 << 5) | 0x0f,
  (-922 << 5) | 0x0d
};

static const s16 coeff_4k_sb_1seg[8] = {
 (638 << 5) | 0x0d, (683 << 5) | 0x02, (638 << 5) | 0x0d, (638 << 5) | 0x0d, (-655 << 5) | 0x0a, (517 << 5) | 0x00, (698 << 5) | 0x0d,
  (-655 << 5) | 0x0a
};

static const s16 coeff_4k_sb_3seg_0dqpsk_1dqpsk[8] = {
 (-707 << 5) | 0x14, (910 << 5) | 0x06, (889 << 5) | 0x16, (-707 << 5) | 0x14, (-958 << 5) | 0x13, (993 << 5) | 0x05, (523 << 5) | 0x14,
  (-958 << 5) | 0x13
};

static const s16 coeff_4k_sb_3seg_0dqpsk[8] = {
 (-723 << 5) | 0x13, (910 << 5) | 0x05, (777 << 5) | 0x14, (-723 << 5) | 0x13, (-568 << 5) | 0x0f, (547 << 5) | 0x03, (696 << 5) | 0x12,
  (-568 << 5) | 0x0f
};

static const s16 coeff_4k_sb_3seg_1dqpsk[8] = {
 (-940 << 5) | 0x15, (607 << 5) | 0x05, (915 << 5) | 0x16, (-940 << 5) | 0x15, (-848 << 5) | 0x13, (683 << 5) | 0x04, (543 << 5) | 0x14,
  (-848 << 5) | 0x13
};

static const s16 coeff_4k_sb_3seg[8] = {
 (612 << 5) | 0x12, (910 << 5) | 0x04, (864 << 5) | 0x14, (612 << 5) | 0x12, (-869 << 5) | 0x13, (683 << 5) | 0x02, (869 << 5) | 0x12,
  (-869 << 5) | 0x13
};

static const s16 coeff_8k_sb_1seg_dqpsk[8] = {
 (-835 << 5) | 0x12, (684 << 5) | 0x05, (735 << 5) | 0x14, (-835 << 5) | 0x12, (-598 << 5) | 0x10, (781 << 5) | 0x04, (739 << 5) | 0x13,
  (-598 << 5) | 0x10
};

static const s16 coeff_8k_sb_1seg[8] = {
 (673 << 5) | 0x0f, (683 << 5) | 0x03, (808 << 5) | 0x12, (673 << 5) | 0x0f, (585 << 5) | 0x0f, (512 << 5) | 0x01, (780 << 5) | 0x0f,
  (585 << 5) | 0x0f
};

static const s16 coeff_8k_sb_3seg_0dqpsk_1dqpsk[8] = {
 (863 << 5) | 0x17, (930 << 5) | 0x07, (878 << 5) | 0x19, (863 << 5) | 0x17, (0 << 5) | 0x14, (521 << 5) | 0x05, (980 << 5) | 0x18,
  (0 << 5) | 0x14
};

static const s16 coeff_8k_sb_3seg_0dqpsk[8] = {
 (-924 << 5) | 0x17, (910 << 5) | 0x06, (774 << 5) | 0x17, (-924 << 5) | 0x17, (-877 << 5) | 0x15, (565 << 5) | 0x04, (553 << 5) | 0x15,
  (-877 << 5) | 0x15
};

static const s16 coeff_8k_sb_3seg_1dqpsk[8] = {
 (-921 << 5) | 0x19, (607 << 5) | 0x06, (881 << 5) | 0x19, (-921 << 5) | 0x19, (-921 << 5) | 0x14, (713 << 5) | 0x05, (1018 << 5) | 0x18,
  (-921 << 5) | 0x14
};

static const s16 coeff_8k_sb_3seg[8] = {
 (514 << 5) | 0x14, (910 << 5) | 0x05, (861 << 5) | 0x17, (514 << 5) | 0x14, (690 << 5) | 0x14, (683 << 5) | 0x03, (662 << 5) | 0x15,
  (690 << 5) | 0x14
};

static const s16 ana_fe_coeff_3seg[24] = {
 81, 80, 78, 74, 68, 61, 54, 45, 37, 28, 19, 11, 4, 1022, 1017, 1013, 1010, 1008, 1008, 1008, 1008, 1010, 1014, 1017
};

static const s16 ana_fe_coeff_1seg[24] = {
 249, 226, 164, 82, 5, 981, 970, 988, 1018, 20, 31, 26, 8, 1012, 1000, 1018, 1012, 8, 15, 14, 9, 3, 1017, 1003
};

static const s16 ana_fe_coeff_13seg[24] = {
 396, 305, 105, -51, -77, -12, 41, 31, -11, -30, -11, 14, 15, -2, -13, -7, 5, 8, 1, -6, -7, -3, 0, 1
};

static u16 fft_to_mode(struct dib8000_state *state)
{
 u16 mode;
 switch (state->fe[0]->dtv_property_cache.transmission_mode) {
 case TRANSMISSION_MODE_2K:
  mode = 1;
  break;
 case TRANSMISSION_MODE_4K:
  mode = 2;
  break;
 default:
 case TRANSMISSION_MODE_AUTO:
 case TRANSMISSION_MODE_8K:
  mode = 3;
  break;
 }
 return mode;
}

static void dib8000_set_acquisition_mode(struct dib8000_state *state)
{
 u16 nud = dib8000_read_word(state, 298);
 nud |= (1 << 3) | (1 << 0);
 dprintk("acquisition mode activated\n");
 dib8000_write_word(state, 298, nud);
}
static int dib8000_set_output_mode(struct dvb_frontend *fe, int mode)
{
 struct dib8000_state *state = fe->demodulator_priv;
 u16 outreg, fifo_threshold, smo_mode, sram = 0x0205; /* by default SDRAM deintlv is enabled */

 state->output_mode = mode;
 outreg = 0;
 fifo_threshold = 1792;
 smo_mode = (dib8000_read_word(state, 299) & 0x0050) | (1 << 1);

 dprintk("-I- Setting output mode for demod %p to %d\n",
   &state->fe[0], mode);

 switch (mode) {
 case OUTMODE_MPEG2_PAR_GATED_CLK: // STBs with parallel gated clock
  outreg = (1 << 10); /* 0x0400 */
  break;
 case OUTMODE_MPEG2_PAR_CONT_CLK: // STBs with parallel continues clock
  outreg = (1 << 10) | (1 << 6); /* 0x0440 */
  break;
 case OUTMODE_MPEG2_SERIAL: // STBs with serial input
  outreg = (1 << 10) | (2 << 6) | (0 << 1); /* 0x0482 */
  break;
 case OUTMODE_DIVERSITY:
  if (state->cfg.hostbus_diversity) {
   outreg = (1 << 10) | (4 << 6); /* 0x0500 */
   sram &= 0xfdff;
  } else
   sram |= 0x0c00;
  break;
 case OUTMODE_MPEG2_FIFO: // e.g. USB feeding
  smo_mode |= (3 << 1);
  fifo_threshold = 512;
  outreg = (1 << 10) | (5 << 6);
  break;
 case OUTMODE_HIGH_Z: // disable
  outreg = 0;
  break;

 case OUTMODE_ANALOG_ADC:
  outreg = (1 << 10) | (3 << 6);
  dib8000_set_acquisition_mode(state);
  break;

 default:
  dprintk("Unhandled output_mode passed to be set for demod %p\n",
    &state->fe[0]);
  return -EINVAL;
 }

 if (state->cfg.output_mpeg2_in_188_bytes)
  smo_mode |= (1 << 5);

 dib8000_write_word(state, 299, smo_mode);
 dib8000_write_word(state, 300, fifo_threshold); /* synchronous fread */
 dib8000_write_word(state, 1286, outreg);
 dib8000_write_word(state, 1291, sram);

 return 0;
}

static int dib8000_set_diversity_in(struct dvb_frontend *fe, int onoff)
{
 struct dib8000_state *state = fe->demodulator_priv;
 u16 tmp, sync_wait = dib8000_read_word(state, 273) & 0xfff0;

 dprintk("set diversity input to %i\n", onoff);
 if (!state->differential_constellation) {
  dib8000_write_word(state, 272, 1 << 9); //dvsy_off_lmod4 = 1
  dib8000_write_word(state, 273, sync_wait | (1 << 2) | 2); // sync_enable = 1; comb_mode = 2
 } else {
  dib8000_write_word(state, 272, 0); //dvsy_off_lmod4 = 0
  dib8000_write_word(state, 273, sync_wait); // sync_enable = 0; comb_mode = 0
 }
 state->diversity_onoff = onoff;

 switch (onoff) {
 case 0:  /* only use the internal way - not the diversity input */
  dib8000_write_word(state, 270, 1);
  dib8000_write_word(state, 271, 0);
  break;
 case 1:  /* both ways */
  dib8000_write_word(state, 270, 6);
  dib8000_write_word(state, 271, 6);
  break;
 case 2:  /* only the diversity input */
  dib8000_write_word(state, 270, 0);
  dib8000_write_word(state, 271, 1);
  break;
 }

 if (state->revision == 0x8002) {
  tmp = dib8000_read_word(state, 903);
  dib8000_write_word(state, 903, tmp & ~(1 << 3));
  msleep(30);
  dib8000_write_word(state, 903, tmp | (1 << 3));
 }
 return 0;
}

static void dib8000_set_power_mode(struct dib8000_state *state, enum dib8000_power_mode mode)
{
 /* by default everything is going to be powered off */
 u16 reg_774 = 0x3fff, reg_775 = 0xffff, reg_776 = 0xffff,
  reg_900 = (dib8000_read_word(state, 900) & 0xfffc) | 0x3,
  reg_1280;

 if (state->revision != 0x8090)
  reg_1280 = (dib8000_read_word(state, 1280) & 0x00ff) | 0xff00;
 else
  reg_1280 = (dib8000_read_word(state, 1280) & 0x707f) | 0x8f80;

 /* now, depending on the requested mode, we power on */
 switch (mode) {
  /* power up everything in the demod */
 case DIB8000_POWER_ALL:
  reg_774 = 0x0000;
  reg_775 = 0x0000;
  reg_776 = 0x0000;
  reg_900 &= 0xfffc;
  if (state->revision != 0x8090)
   reg_1280 &= 0x00ff;
  else
   reg_1280 &= 0x707f;
  break;
 case DIB8000_POWER_INTERFACE_ONLY:
  if (state->revision != 0x8090)
   reg_1280 &= 0x00ff;
  else
   reg_1280 &= 0xfa7b;
  break;
 }

 dprintk("powermode : 774 : %x ; 775 : %x; 776 : %x ; 900 : %x; 1280 : %x\n", reg_774, reg_775, reg_776, reg_900, reg_1280);
 dib8000_write_word(state, 774, reg_774);
 dib8000_write_word(state, 775, reg_775);
 dib8000_write_word(state, 776, reg_776);
 dib8000_write_word(state, 900, reg_900);
 dib8000_write_word(state, 1280, reg_1280);
}

static int dib8000_set_adc_state(struct dib8000_state *state, enum dibx000_adc_states no)
{
 int ret = 0;
 u16 reg, reg_907 = dib8000_read_word(state, 907);
 u16 reg_908 = dib8000_read_word(state, 908);

 switch (no) {
 case DIBX000_SLOW_ADC_ON:
  if (state->revision != 0x8090) {
   reg_908 |= (1 << 1) | (1 << 0);
   ret |= dib8000_write_word(state, 908, reg_908);
   reg_908 &= ~(1 << 1);
  } else {
   reg = dib8000_read_word(state, 1925);
   /* en_slowAdc = 1 & reset_sladc = 1 */
   dib8000_write_word(state, 1925, reg |
     (1<<4) | (1<<2));

   /* read access to make it works... strange ... */
   reg = dib8000_read_word(state, 1925);
   msleep(20);
   /* en_slowAdc = 1 & reset_sladc = 0 */
   dib8000_write_word(state, 1925, reg & ~(1<<4));

   reg = dib8000_read_word(state, 921) & ~((0x3 << 14)
     | (0x3 << 12));
   /* ref = Vin1 => Vbg ; sel = Vin0 or Vin3 ;
   (Vin2 = Vcm) */

   dib8000_write_word(state, 921, reg | (1 << 14)
     | (3 << 12));
  }
  break;

 case DIBX000_SLOW_ADC_OFF:
  if (state->revision == 0x8090) {
   reg = dib8000_read_word(state, 1925);
   /* reset_sladc = 1 en_slowAdc = 0 */
   dib8000_write_word(state, 1925,
     (reg & ~(1<<2)) | (1<<4));
  }
  reg_908 |= (1 << 1) | (1 << 0);
  break;

 case DIBX000_ADC_ON:
  reg_907 &= 0x0fff;
  reg_908 &= 0x0003;
  break;

 case DIBX000_ADC_OFF: // leave the VBG voltage on
  reg_907 = (1 << 13) | (1 << 12);
  reg_908 = (1 << 6) | (1 << 5) | (1 << 4) | (1 << 3) | (1 << 1);
  break;

 case DIBX000_VBG_ENABLE:
  reg_907 &= ~(1 << 15);
  break;

 case DIBX000_VBG_DISABLE:
  reg_907 |= (1 << 15);
  break;

 default:
  break;
 }

 ret |= dib8000_write_word(state, 907, reg_907);
 ret |= dib8000_write_word(state, 908, reg_908);

 return ret;
}

static int dib8000_set_bandwidth(struct dvb_frontend *fe, u32 bw)
{
 struct dib8000_state *state = fe->demodulator_priv;
 u32 timf;

 if (bw == 0)
  bw = 6000;

 if (state->timf == 0) {
  dprintk("using default timf\n");
  timf = state->timf_default;
 } else {
  dprintk("using updated timf\n");
  timf = state->timf;
 }

 dib8000_write_word(state, 29, (u16) ((timf >> 16) & 0xffff));
 dib8000_write_word(state, 30, (u16) ((timf) & 0xffff));

 return 0;
}

static int dib8000_sad_calib(struct dib8000_state *state)
{
 u8 sad_sel = 3;

 if (state->revision == 0x8090) {
  dib8000_write_word(state, 922, (sad_sel << 2));
  dib8000_write_word(state, 923, 2048);

  dib8000_write_word(state, 922, (sad_sel << 2) | 0x1);
  dib8000_write_word(state, 922, (sad_sel << 2));
 } else {
  /* internal */
  dib8000_write_word(state, 923, (0 << 1) | (0 << 0));
  dib8000_write_word(state, 924, 776);

  /* do the calibration */
  dib8000_write_word(state, 923, (1 << 0));
  dib8000_write_word(state, 923, (0 << 0));
 }

 msleep(1);
 return 0;
}

static int dib8000_set_wbd_ref(struct dvb_frontend *fe, u16 value)
{
 struct dib8000_state *state = fe->demodulator_priv;
 if (value > 4095)
  value = 4095;
 state->wbd_ref = value;
 return dib8000_write_word(state, 106, value);
}

static void dib8000_reset_pll_common(struct dib8000_state *state, const struct dibx000_bandwidth_config *bw)
{
 dprintk("ifreq: %d %x, inversion: %d\n", bw->ifreq, bw->ifreq, bw->ifreq >> 25);
 if (state->revision != 0x8090) {
  dib8000_write_word(state, 23,
    (u16) (((bw->internal * 1000) >> 16) & 0xffff));
  dib8000_write_word(state, 24,
    (u16) ((bw->internal * 1000) & 0xffff));
 } else {
  dib8000_write_word(state, 23, (u16) (((bw->internal / 2 * 1000) >> 16) & 0xffff));
  dib8000_write_word(state, 24,
    (u16) ((bw->internal  / 2 * 1000) & 0xffff));
 }
 dib8000_write_word(state, 27, (u16) ((bw->ifreq >> 16) & 0x01ff));
 dib8000_write_word(state, 28, (u16) (bw->ifreq & 0xffff));
 dib8000_write_word(state, 26, (u16) ((bw->ifreq >> 25) & 0x0003));

 if (state->revision != 0x8090)
  dib8000_write_word(state, 922, bw->sad_cfg);
}

static void dib8000_reset_pll(struct dib8000_state *state)
{
 const struct dibx000_bandwidth_config *pll = state->cfg.pll;
 u16 clk_cfg1, reg;

 if (state->revision != 0x8090) {
  dib8000_write_word(state, 901,
    (pll->pll_prediv << 8) | (pll->pll_ratio << 0));

  clk_cfg1 = (1 << 10) | (0 << 9) | (pll->IO_CLK_en_core << 8) |
   (pll->bypclk_div << 5) | (pll->enable_refdiv << 4) |
   (1 << 3) | (pll->pll_range << 1) |
   (pll->pll_reset << 0);

  dib8000_write_word(state, 902, clk_cfg1);
  clk_cfg1 = (clk_cfg1 & 0xfff7) | (pll->pll_bypass << 3);
  dib8000_write_word(state, 902, clk_cfg1);

  dprintk("clk_cfg1: 0x%04x\n", clk_cfg1);

  /* smpl_cfg: P_refclksel=2, P_ensmplsel=1 nodivsmpl=1 */
  if (state->cfg.pll->ADClkSrc == 0)
   dib8000_write_word(state, 904,
     (0 << 15) | (0 << 12) | (0 << 10) |
     (pll->modulo << 8) |
     (pll->ADClkSrc << 7) | (0 << 1));
  else if (state->cfg.refclksel != 0)
   dib8000_write_word(state, 904, (0 << 15) | (1 << 12) |
     ((state->cfg.refclksel & 0x3) << 10) |
     (pll->modulo << 8) |
     (pll->ADClkSrc << 7) | (0 << 1));
  else
   dib8000_write_word(state, 904, (0 << 15) | (1 << 12) |
     (3 << 10) | (pll->modulo << 8) |
     (pll->ADClkSrc << 7) | (0 << 1));
 } else {
  dib8000_write_word(state, 1856, (!pll->pll_reset<<13) |
    (pll->pll_range<<12) | (pll->pll_ratio<<6) |
    (pll->pll_prediv));

  reg = dib8000_read_word(state, 1857);
  dib8000_write_word(state, 1857, reg|(!pll->pll_bypass<<15));

  reg = dib8000_read_word(state, 1858); /* Force clk out pll /2 */
  dib8000_write_word(state, 1858, reg | 1);

  dib8000_write_word(state, 904, (pll->modulo << 8));
 }

 dib8000_reset_pll_common(state, pll);
}

static int dib8000_update_pll(struct dvb_frontend *fe,
  struct dibx000_bandwidth_config *pll, u32 bw, u8 ratio)
{
 struct dib8000_state *state = fe->demodulator_priv;
 u16 reg_1857, reg_1856 = dib8000_read_word(state, 1856);
 u8 loopdiv, prediv, oldprediv = state->cfg.pll->pll_prediv ;
 u32 internal, xtal;

 /* get back old values */
 prediv = reg_1856 & 0x3f;
 loopdiv = (reg_1856 >> 6) & 0x3f;

 if ((pll == NULL) || (pll->pll_prediv == prediv &&
    pll->pll_ratio == loopdiv))
  return -EINVAL;

 dprintk("Updating pll (prediv: old = %d new = %d ; loopdiv : old = %d new = %d)\n", prediv, pll->pll_prediv, loopdiv, pll->pll_ratio);
 if (state->revision == 0x8090) {
  reg_1856 &= 0xf000;
  reg_1857 = dib8000_read_word(state, 1857);
  /* disable PLL */
  dib8000_write_word(state, 1857, reg_1857 & ~(1 << 15));

  dib8000_write_word(state, 1856, reg_1856 |
    ((pll->pll_ratio & 0x3f) << 6) |
    (pll->pll_prediv & 0x3f));

  /* write new system clk into P_sec_len */
  internal = dib8000_read32(state, 23) / 1000;
  dprintk("Old Internal = %d\n", internal);
  xtal = 2 * (internal / loopdiv) * prediv;
  internal = 1000 * (xtal/pll->pll_prediv) * pll->pll_ratio;
  dprintk("Xtal = %d , New Fmem = %d New Fdemod = %d, New Fsampling = %d\n", xtal, internal/1000, internal/2000, internal/8000);
  dprintk("New Internal = %d\n", internal);

  dib8000_write_word(state, 23,
    (u16) (((internal / 2) >> 16) & 0xffff));
  dib8000_write_word(state, 24, (u16) ((internal / 2) & 0xffff));
  /* enable PLL */
  dib8000_write_word(state, 1857, reg_1857 | (1 << 15));

  while (((dib8000_read_word(state, 1856)>>15)&0x1) != 1)
   dprintk("Waiting for PLL to lock\n");

  /* verify */
  reg_1856 = dib8000_read_word(state, 1856);
  dprintk("PLL Updated with prediv = %d and loopdiv = %d\n",
    reg_1856&0x3f, (reg_1856>>6)&0x3f);
 } else {
  if (bw != state->current_demod_bw) {
   /** Bandwidth change => force PLL update **/
   dprintk("PLL: Bandwidth Change %d MHz -> %d MHz (prediv: %d->%d)\n", state->current_demod_bw / 1000, bw / 1000, oldprediv, state->cfg.pll->pll_prediv);

   if (state->cfg.pll->pll_prediv != oldprediv) {
    /** Full PLL change only if prediv is changed **/

    /** full update => bypass and reconfigure **/
    dprintk("PLL: New Setting for %d MHz Bandwidth (prediv: %d, ratio: %d)\n", bw/1000, state->cfg.pll->pll_prediv, state->cfg.pll->pll_ratio);
    dib8000_write_word(state, 902, dib8000_read_word(state, 902) | (1<<3)); /* bypass PLL */
    dib8000_reset_pll(state);
    dib8000_write_word(state, 898, 0x0004); /* sad */
   } else
    ratio = state->cfg.pll->pll_ratio;

   state->current_demod_bw = bw;
  }

  if (ratio != 0) {
   /** ratio update => only change ratio **/
   dprintk("PLL: Update ratio (prediv: %d, ratio: %d)\n", state->cfg.pll->pll_prediv, ratio);
   dib8000_write_word(state, 901, (state->cfg.pll->pll_prediv << 8) | (ratio << 0)); /* only the PLL ratio is updated. */
  }
 }

 return 0;
}

static int dib8000_reset_gpio(struct dib8000_state *st)
{
 /* reset the GPIOs */
 dib8000_write_word(st, 1029, st->cfg.gpio_dir);
 dib8000_write_word(st, 1030, st->cfg.gpio_val);

 /* TODO 782 is P_gpio_od */

 dib8000_write_word(st, 1032, st->cfg.gpio_pwm_pos);

 dib8000_write_word(st, 1037, st->cfg.pwm_freq_div);
 return 0;
}

static int dib8000_cfg_gpio(struct dib8000_state *st, u8 num, u8 dir, u8 val)
{
 st->cfg.gpio_dir = dib8000_read_word(st, 1029);
 st->cfg.gpio_dir &= ~(1 << num); /* reset the direction bit */
 st->cfg.gpio_dir |= (dir & 0x1) << num; /* set the new direction */
 dib8000_write_word(st, 1029, st->cfg.gpio_dir);

 st->cfg.gpio_val = dib8000_read_word(st, 1030);
 st->cfg.gpio_val &= ~(1 << num); /* reset the direction bit */
 st->cfg.gpio_val |= (val & 0x01) << num; /* set the new value */
 dib8000_write_word(st, 1030, st->cfg.gpio_val);

 dprintk("gpio dir: %x: gpio val: %x\n", st->cfg.gpio_dir, st->cfg.gpio_val);

 return 0;
}

static int dib8000_set_gpio(struct dvb_frontend *fe, u8 num, u8 dir, u8 val)
{
 struct dib8000_state *state = fe->demodulator_priv;
 return dib8000_cfg_gpio(state, num, dir, val);
}

static const u16 dib8000_defaults[] = {
 /* auto search configuration - lock0 by default waiting
 * for cpil_lock; lock1 cpil_lock; lock2 tmcc_sync_lock */

 3, 7,
 0x0004,
 0x0400,
 0x0814,

 12, 11,
 0x001b,
 0x7740,
 0x005b,
 0x8d80,
 0x01c9,
 0xc380,
 0x0000,
 0x0080,
 0x0000,
 0x0090,
 0x0001,
 0xd4c0,

 /*1, 32,
0x6680 // P_corm_thres Lock algorithms configuration */


 11, 80,   /* set ADC level to -16 */
 (1 << 13) - 825 - 117,
 (1 << 13) - 837 - 117,
 (1 << 13) - 811 - 117,
 (1 << 13) - 766 - 117,
 (1 << 13) - 737 - 117,
 (1 << 13) - 693 - 117,
 (1 << 13) - 648 - 117,
 (1 << 13) - 619 - 117,
 (1 << 13) - 575 - 117,
 (1 << 13) - 531 - 117,
 (1 << 13) - 501 - 117,

 4, 108,
 0,
 0,
 0,
 0,

 1, 175,
 0x0410,
 1, 179,
 8192,   // P_fft_nb_to_cut

 6, 181,
 0x2800,   // P_coff_corthres_ ( 2k 4k 8k ) 0x2800
 0x2800,
 0x2800,
 0x2800,   // P_coff_cpilthres_ ( 2k 4k 8k ) 0x2800
 0x2800,
 0x2800,

 2, 193,
 0x0666,   // P_pha3_thres
 0x0000,   // P_cti_use_cpe, P_cti_use_prog

 2, 205,
 0x200f,   // P_cspu_regul, P_cspu_win_cut
 0x000f,   // P_des_shift_work

 5, 215,
 0x023d,   // P_adp_regul_cnt
 0x00a4,   // P_adp_noise_cnt
 0x00a4,   // P_adp_regul_ext
 0x7ff0,   // P_adp_noise_ext
 0x3ccc,   // P_adp_fil

 1, 230,
 0x0000,   // P_2d_byp_ti_num

 1, 263,
 0x800,   //P_equal_thres_wgn

 1, 268,
 (2 << 9) | 39,  // P_equal_ctrl_synchro, P_equal_speedmode

 1, 270,
 0x0001,   // P_div_lock0_wait
 1, 285,
 0x0020,   //p_fec_
 1, 299,
 0x0062,   /* P_smo_mode, P_smo_rs_discard, P_smo_fifo_flush, P_smo_pid_parse, P_smo_error_discard */

 1, 338,
 (1 << 12) |  // P_ctrl_corm_thres4pre_freq_inh=1
  (1 << 10) |
  (0 << 9) |  /* P_ctrl_pre_freq_inh=0 */
  (3 << 5) |  /* P_ctrl_pre_freq_step=3 */
  (1 << 0),  /* P_pre_freq_win_len=1 */

 0,
};

static u16 dib8000_identify(struct i2c_device *client)
{
 u16 value;

 //because of glitches sometimes
 value = dib8000_i2c_read16(client, 896);

 if ((value = dib8000_i2c_read16(client, 896)) != 0x01b3) {
  dprintk("wrong Vendor ID (read=0x%x)\n", value);
  return 0;
 }

 value = dib8000_i2c_read16(client, 897);
 if (value != 0x8000 && value != 0x8001 &&
   value != 0x8002 && value != 0x8090) {
  dprintk("wrong Device ID (%x)\n", value);
  return 0;
 }

 switch (value) {
 case 0x8000:
  dprintk("found DiB8000A\n");
  break;
 case 0x8001:
  dprintk("found DiB8000B\n");
  break;
 case 0x8002:
  dprintk("found DiB8000C\n");
  break;
 case 0x8090:
  dprintk("found DiB8096P\n");
  break;
 }
 return value;
}

static int dib8000_read_unc_blocks(struct dvb_frontend *fe, u32 *unc);

static void dib8000_reset_stats(struct dvb_frontend *fe)
{
 struct dib8000_state *state = fe->demodulator_priv;
 struct dtv_frontend_properties *c = &state->fe[0]->dtv_property_cache;
 u32 ucb;

 memset(&c->strength, 0, sizeof(c->strength));
 memset(&c->cnr, 0, sizeof(c->cnr));
 memset(&c->post_bit_error, 0, sizeof(c->post_bit_error));
 memset(&c->post_bit_count, 0, sizeof(c->post_bit_count));
 memset(&c->block_error, 0, sizeof(c->block_error));

 c->strength.len = 1;
 c->cnr.len = 1;
 c->block_error.len = 1;
 c->block_count.len = 1;
 c->post_bit_error.len = 1;
 c->post_bit_count.len = 1;

 c->strength.stat[0].scale = FE_SCALE_DECIBEL;
 c->strength.stat[0].uvalue = 0;

 c->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
 c->block_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
 c->block_count.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
 c->post_bit_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
 c->post_bit_count.stat[0].scale = FE_SCALE_NOT_AVAILABLE;

 dib8000_read_unc_blocks(fe, &ucb);

 state->init_ucb = -ucb;
 state->ber_jiffies_stats = 0;
 state->per_jiffies_stats = 0;
 memset(&state->ber_jiffies_stats_layer, 0,
        sizeof(state->ber_jiffies_stats_layer));
}

static int dib8000_reset(struct dvb_frontend *fe)
{
 struct dib8000_state *state = fe->demodulator_priv;

 if ((state->revision = dib8000_identify(&state->i2c)) == 0)
  return -EINVAL;

 /* sram lead in, rdy */
 if (state->revision != 0x8090)
  dib8000_write_word(state, 1287, 0x0003);

 if (state->revision == 0x8000)
  dprintk("error : dib8000 MA not supported\n");

 dibx000_reset_i2c_master(&state->i2c_master);

 dib8000_set_power_mode(state, DIB8000_POWER_ALL);

 /* always leave the VBG voltage on - it consumes almost nothing but takes a long time to start */
 dib8000_set_adc_state(state, DIBX000_ADC_OFF);

 /* restart all parts */
 dib8000_write_word(state, 770, 0xffff);
 dib8000_write_word(state, 771, 0xffff);
 dib8000_write_word(state, 772, 0xfffc);
 dib8000_write_word(state, 898, 0x000c); /* restart sad */
 if (state->revision == 0x8090)
  dib8000_write_word(state, 1280, 0x0045);
 else
  dib8000_write_word(state, 1280, 0x004d);
 dib8000_write_word(state, 1281, 0x000c);

 dib8000_write_word(state, 770, 0x0000);
 dib8000_write_word(state, 771, 0x0000);
 dib8000_write_word(state, 772, 0x0000);
 dib8000_write_word(state, 898, 0x0004); // sad
 dib8000_write_word(state, 1280, 0x0000);
 dib8000_write_word(state, 1281, 0x0000);

 /* drives */
 if (state->revision != 0x8090) {
  if (state->cfg.drives)
   dib8000_write_word(state, 906, state->cfg.drives);
  else {
   dprintk("using standard PAD-drive-settings, please adjust settings in config-struct to be optimal.\n");
   /* min drive SDRAM - not optimal - adjust */
   dib8000_write_word(state, 906, 0x2d98);
  }
 }

 dib8000_reset_pll(state);
 if (state->revision != 0x8090)
  dib8000_write_word(state, 898, 0x0004);

 if (dib8000_reset_gpio(state) != 0)
  dprintk("GPIO reset was not successful.\n");

 if ((state->revision != 0x8090) &&
   (dib8000_set_output_mode(fe, OUTMODE_HIGH_Z) != 0))
  dprintk("OUTPUT_MODE could not be reset.\n");

 state->current_agc = NULL;

 // P_iqc_alpha_pha, P_iqc_alpha_amp, P_iqc_dcc_alpha, ...
 /* P_iqc_ca2 = 0; P_iqc_impnc_on = 0; P_iqc_mode = 0; */
 if (state->cfg.pll->ifreq == 0)
  dib8000_write_word(state, 40, 0x0755); /* P_iqc_corr_inh = 0 enable IQcorr block */
 else
  dib8000_write_word(state, 40, 0x1f55); /* P_iqc_corr_inh = 1 disable IQcorr block */

 {
  u16 l = 0, r;
  const u16 *n;
  n = dib8000_defaults;
  l = *n++;
  while (l) {
   r = *n++;
   do {
    dib8000_write_word(state, r, *n++);
    r++;
   } while (--l);
   l = *n++;
  }
 }

 state->isdbt_cfg_loaded = 0;

 //div_cfg override for special configs
 if ((state->revision != 8090) && (state->cfg.div_cfg != 0))
  dib8000_write_word(state, 903, state->cfg.div_cfg);

 /* unforce divstr regardless whether i2c enumeration was done or not */
 dib8000_write_word(state, 1285, dib8000_read_word(state, 1285) & ~(1 << 1));

 dib8000_set_bandwidth(fe, 6000);

 dib8000_set_adc_state(state, DIBX000_SLOW_ADC_ON);
 dib8000_sad_calib(state);
 if (state->revision != 0x8090)
  dib8000_set_adc_state(state, DIBX000_SLOW_ADC_OFF);

 /* ber_rs_len = 3 */
 dib8000_write_word(state, 285, (dib8000_read_word(state, 285) & ~0x60) | (3 << 5));

 dib8000_set_power_mode(state, DIB8000_POWER_INTERFACE_ONLY);

 dib8000_reset_stats(fe);

 return 0;
}

static void dib8000_restart_agc(struct dib8000_state *state)
{
 // P_restart_iqc & P_restart_agc
 dib8000_write_word(state, 770, 0x0a00);
 dib8000_write_word(state, 770, 0x0000);
}

static int dib8000_update_lna(struct dib8000_state *state)
{
 u16 dyn_gain;

 if (state->cfg.update_lna) {
  // read dyn_gain here (because it is demod-dependent and not tuner)
  dyn_gain = dib8000_read_word(state, 390);

  if (state->cfg.update_lna(state->fe[0], dyn_gain)) {
   dib8000_restart_agc(state);
   return 1;
  }
 }
 return 0;
}

static int dib8000_set_agc_config(struct dib8000_state *state, u8 band)
{
 struct dibx000_agc_config *agc = NULL;
 int i;
 u16 reg;

 if (state->current_band == band && state->current_agc != NULL)
  return 0;
 state->current_band = band;

 for (i = 0; i < state->cfg.agc_config_count; i++)
  if (state->cfg.agc[i].band_caps & band) {
   agc = &state->cfg.agc[i];
   break;
  }

 if (agc == NULL) {
  dprintk("no valid AGC configuration found for band 0x%02x\n", band);
  return -EINVAL;
 }

 state->current_agc = agc;

 /* AGC */
 dib8000_write_word(state, 76, agc->setup);
 dib8000_write_word(state, 77, agc->inv_gain);
 dib8000_write_word(state, 78, agc->time_stabiliz);
 dib8000_write_word(state, 101, (agc->alpha_level << 12) | agc->thlock);

 // Demod AGC loop configuration
 dib8000_write_word(state, 102, (agc->alpha_mant << 5) | agc->alpha_exp);
 dib8000_write_word(state, 103, (agc->beta_mant << 6) | agc->beta_exp);

 dprintk("WBD: ref: %d, sel: %d, active: %d, alpha: %d\n",
  state->wbd_ref != 0 ? state->wbd_ref : agc->wbd_ref, agc->wbd_sel, !agc->perform_agc_softsplit, agc->wbd_sel);

 /* AGC continued */
 if (state->wbd_ref != 0)
  dib8000_write_word(state, 106, state->wbd_ref);
 else   // use default
  dib8000_write_word(state, 106, agc->wbd_ref);

 if (state->revision == 0x8090) {
  reg = dib8000_read_word(state, 922) & (0x3 << 2);
  dib8000_write_word(state, 922, reg | (agc->wbd_sel << 2));
 }

 dib8000_write_word(state, 107, (agc->wbd_alpha << 9) | (agc->perform_agc_softsplit << 8));
 dib8000_write_word(state, 108, agc->agc1_max);
 dib8000_write_word(state, 109, agc->agc1_min);
 dib8000_write_word(state, 110, agc->agc2_max);
 dib8000_write_word(state, 111, agc->agc2_min);
 dib8000_write_word(state, 112, (agc->agc1_pt1 << 8) | agc->agc1_pt2);
 dib8000_write_word(state, 113, (agc->agc1_slope1 << 8) | agc->agc1_slope2);
 dib8000_write_word(state, 114, (agc->agc2_pt1 << 8) | agc->agc2_pt2);
 dib8000_write_word(state, 115, (agc->agc2_slope1 << 8) | agc->agc2_slope2);

 dib8000_write_word(state, 75, agc->agc1_pt3);
 if (state->revision != 0x8090)
  dib8000_write_word(state, 923,
    (dib8000_read_word(state, 923) & 0xffe3) |
    (agc->wbd_inv << 4) | (agc->wbd_sel << 2));

 return 0;
}

static void dib8000_pwm_agc_reset(struct dvb_frontend *fe)
{
 struct dib8000_state *state = fe->demodulator_priv;
 dib8000_set_adc_state(state, DIBX000_ADC_ON);
 dib8000_set_agc_config(state, (unsigned char)(BAND_OF_FREQUENCY(fe->dtv_property_cache.frequency / 1000)));
}

static int dib8000_agc_soft_split(struct dib8000_state *state)
{
 u16 agc, split_offset;

 if (!state->current_agc || !state->current_agc->perform_agc_softsplit || state->current_agc->split.max == 0)
  return 0;

 // n_agc_global
 agc = dib8000_read_word(state, 390);

 if (agc > state->current_agc->split.min_thres)
  split_offset = state->current_agc->split.min;
 else if (agc < state->current_agc->split.max_thres)
  split_offset = state->current_agc->split.max;
 else
  split_offset = state->current_agc->split.max *
   (agc - state->current_agc->split.min_thres) /
   (state->current_agc->split.max_thres - state->current_agc->split.min_thres);

 dprintk("AGC split_offset: %d\n", split_offset);

 // P_agc_force_split and P_agc_split_offset
 dib8000_write_word(state, 107, (dib8000_read_word(state, 107) & 0xff00) | split_offset);
 return 5000;
}

static int dib8000_agc_startup(struct dvb_frontend *fe)
{
 struct dib8000_state *state = fe->demodulator_priv;
 enum frontend_tune_state *tune_state = &state->tune_state;
 int ret = 0;
 u16 reg;
 u32 upd_demod_gain_period = 0x8000;

 switch (*tune_state) {
 case CT_AGC_START:
  // set power-up level: interf+analog+AGC

  if (state->revision != 0x8090)
   dib8000_set_adc_state(state, DIBX000_ADC_ON);
  else {
   dib8000_set_power_mode(state, DIB8000_POWER_ALL);

   reg = dib8000_read_word(state, 1947)&0xff00;
   dib8000_write_word(state, 1946,
     upd_demod_gain_period & 0xFFFF);
   /* bit 14 = enDemodGain */
   dib8000_write_word(state, 1947, reg | (1<<14) |
     ((upd_demod_gain_period >> 16) & 0xFF));

   /* enable adc i & q */
   reg = dib8000_read_word(state, 1920);
   dib8000_write_word(state, 1920, (reg | 0x3) &
     (~(1 << 7)));
  }

  if (dib8000_set_agc_config(state, (unsigned char)(BAND_OF_FREQUENCY(fe->dtv_property_cache.frequency / 1000))) != 0) {
   *tune_state = CT_AGC_STOP;
   state->status = FE_STATUS_TUNE_FAILED;
   break;
  }

  ret = 70;
  *tune_state = CT_AGC_STEP_0;
  break;

 case CT_AGC_STEP_0:
  //AGC initialization
  if (state->cfg.agc_control)
   state->cfg.agc_control(fe, 1);

  dib8000_restart_agc(state);

  // wait AGC rough lock time
  ret = 50;
  *tune_state = CT_AGC_STEP_1;
  break;

 case CT_AGC_STEP_1:
  // wait AGC accurate lock time
  ret = 70;

  if (dib8000_update_lna(state))
   // wait only AGC rough lock time
   ret = 50;
  else
   *tune_state = CT_AGC_STEP_2;
  break;

 case CT_AGC_STEP_2:
  dib8000_agc_soft_split(state);

  if (state->cfg.agc_control)
   state->cfg.agc_control(fe, 0);

  *tune_state = CT_AGC_STOP;
  break;
 default:
  ret = dib8000_agc_soft_split(state);
  break;
 }
 return ret;

}

static void dib8096p_host_bus_drive(struct dib8000_state *state, u8 drive)
{
 u16 reg;

 drive &= 0x7;

 /* drive host bus 2, 3, 4 */
 reg = dib8000_read_word(state, 1798) &
  ~(0x7 | (0x7 << 6) | (0x7 << 12));
 reg |= (drive<<12) | (drive<<6) | drive;
 dib8000_write_word(state, 1798, reg);

 /* drive host bus 5,6 */
 reg = dib8000_read_word(state, 1799) & ~((0x7 << 2) | (0x7 << 8));
 reg |= (drive<<8) | (drive<<2);
 dib8000_write_word(state, 1799, reg);

 /* drive host bus 7, 8, 9 */
 reg = dib8000_read_word(state, 1800) &
  ~(0x7 | (0x7 << 6) | (0x7 << 12));
 reg |= (drive<<12) | (drive<<6) | drive;
 dib8000_write_word(state, 1800, reg);

 /* drive host bus 10, 11 */
 reg = dib8000_read_word(state, 1801) & ~((0x7 << 2) | (0x7 << 8));
 reg |= (drive<<8) | (drive<<2);
 dib8000_write_word(state, 1801, reg);

 /* drive host bus 12, 13, 14 */
 reg = dib8000_read_word(state, 1802) &
  ~(0x7 | (0x7 << 6) | (0x7 << 12));
 reg |= (drive<<12) | (drive<<6) | drive;
 dib8000_write_word(state, 1802, reg);
}

static u32 dib8096p_calcSyncFreq(u32 P_Kin, u32 P_Kout,
  u32 insertExtSynchro, u32 syncSize)
{
 u32 quantif = 3;
 u32 nom = (insertExtSynchro * P_Kin+syncSize);
 u32 denom = P_Kout;
 u32 syncFreq = ((nom << quantif) / denom);

 if ((syncFreq & ((1 << quantif) - 1)) != 0)
  syncFreq = (syncFreq >> quantif) + 1;
 else
  syncFreq = (syncFreq >> quantif);

 if (syncFreq != 0)
  syncFreq = syncFreq - 1;

 return syncFreq;
}

static void dib8096p_cfg_DibTx(struct dib8000_state *state, u32 P_Kin,
  u32 P_Kout, u32 insertExtSynchro, u32 synchroMode,
  u32 syncWord, u32 syncSize)
{
 dprintk("Configure DibStream Tx\n");

 dib8000_write_word(state, 1615, 1);
 dib8000_write_word(state, 1603, P_Kin);
 dib8000_write_word(state, 1605, P_Kout);
 dib8000_write_word(state, 1606, insertExtSynchro);
 dib8000_write_word(state, 1608, synchroMode);
 dib8000_write_word(state, 1609, (syncWord >> 16) & 0xffff);
 dib8000_write_word(state, 1610, syncWord & 0xffff);
 dib8000_write_word(state, 1612, syncSize);
 dib8000_write_word(state, 1615, 0);
}

static void dib8096p_cfg_DibRx(struct dib8000_state *state, u32 P_Kin,
  u32 P_Kout, u32 synchroMode, u32 insertExtSynchro,
  u32 syncWord, u32 syncSize, u32 dataOutRate)
{
 u32 syncFreq;

 dprintk("Configure DibStream Rx synchroMode = %d\n", synchroMode);

 if ((P_Kin != 0) && (P_Kout != 0)) {
  syncFreq = dib8096p_calcSyncFreq(P_Kin, P_Kout,
    insertExtSynchro, syncSize);
  dib8000_write_word(state, 1542, syncFreq);
 }

 dib8000_write_word(state, 1554, 1);
 dib8000_write_word(state, 1536, P_Kin);
 dib8000_write_word(state, 1537, P_Kout);
 dib8000_write_word(state, 1539, synchroMode);
 dib8000_write_word(state, 1540, (syncWord >> 16) & 0xffff);
 dib8000_write_word(state, 1541, syncWord & 0xffff);
 dib8000_write_word(state, 1543, syncSize);
 dib8000_write_word(state, 1544, dataOutRate);
 dib8000_write_word(state, 1554, 0);
}

static void dib8096p_enMpegMux(struct dib8000_state *state, int onoff)
{
 u16 reg_1287;

 reg_1287 = dib8000_read_word(state, 1287);

 switch (onoff) {
 case 1:
   reg_1287 &= ~(1 << 8);
   break;
 case 0:
   reg_1287 |= (1 << 8);
   break;
 }

 dib8000_write_word(state, 1287, reg_1287);
}

static void dib8096p_configMpegMux(struct dib8000_state *state,
  u16 pulseWidth, u16 enSerialMode, u16 enSerialClkDiv2)
{
 u16 reg_1287;

 dprintk("Enable Mpeg mux\n");

 dib8096p_enMpegMux(state, 0);

 /* If the input mode is MPEG do not divide the serial clock */
 if ((enSerialMode == 1) && (state->input_mode_mpeg == 1))
  enSerialClkDiv2 = 0;

 reg_1287 = ((pulseWidth & 0x1f) << 3) |
  ((enSerialMode & 0x1) << 2) | (enSerialClkDiv2 & 0x1);
 dib8000_write_word(state, 1287, reg_1287);

 dib8096p_enMpegMux(state, 1);
}

static void dib8096p_setDibTxMux(struct dib8000_state *state, int mode)
{
 u16 reg_1288 = dib8000_read_word(state, 1288) & ~(0x7 << 7);

 switch (mode) {
 case MPEG_ON_DIBTX:
   dprintk("SET MPEG ON DIBSTREAM TX\n");
   dib8096p_cfg_DibTx(state, 8, 5, 0, 0, 0, 0);
   reg_1288 |= (1 << 9); break;
 case DIV_ON_DIBTX:
   dprintk("SET DIV_OUT ON DIBSTREAM TX\n");
   dib8096p_cfg_DibTx(state, 5, 5, 0, 0, 0, 0);
   reg_1288 |= (1 << 8); break;
 case ADC_ON_DIBTX:
   dprintk("SET ADC_OUT ON DIBSTREAM TX\n");
   dib8096p_cfg_DibTx(state, 20, 5, 10, 0, 0, 0);
   reg_1288 |= (1 << 7); break;
 default:
   break;
 }
 dib8000_write_word(state, 1288, reg_1288);
}

static void dib8096p_setHostBusMux(struct dib8000_state *state, int mode)
{
 u16 reg_1288 = dib8000_read_word(state, 1288) & ~(0x7 << 4);

 switch (mode) {
 case DEMOUT_ON_HOSTBUS:
   dprintk("SET DEM OUT OLD INTERF ON HOST BUS\n");
   dib8096p_enMpegMux(state, 0);
   reg_1288 |= (1 << 6);
   break;
 case DIBTX_ON_HOSTBUS:
   dprintk("SET DIBSTREAM TX ON HOST BUS\n");
   dib8096p_enMpegMux(state, 0);
   reg_1288 |= (1 << 5);
   break;
 case MPEG_ON_HOSTBUS:
   dprintk("SET MPEG MUX ON HOST BUS\n");
   reg_1288 |= (1 << 4);
   break;
 default:
   break;
 }
 dib8000_write_word(state, 1288, reg_1288);
}

static int dib8096p_set_diversity_in(struct dvb_frontend *fe, int onoff)
{
 struct dib8000_state *state = fe->demodulator_priv;
 u16 reg_1287;

 switch (onoff) {
 case 0: /* only use the internal way - not the diversity input */
   dprintk("%s mode OFF : by default Enable Mpeg INPUT\n",
     __func__);
   /* outputRate = 8 */
   dib8096p_cfg_DibRx(state, 8, 5, 0, 0, 0, 8, 0);

   /* Do not divide the serial clock of MPEG MUX in
   SERIAL MODE in case input mode MPEG is used */

   reg_1287 = dib8000_read_word(state, 1287);
   /* enSerialClkDiv2 == 1 ? */
   if ((reg_1287 & 0x1) == 1) {
    /* force enSerialClkDiv2 = 0 */
    reg_1287 &= ~0x1;
    dib8000_write_word(state, 1287, reg_1287);
   }
   state->input_mode_mpeg = 1;
   break;
 case 1: /* both ways */
 case 2: /* only the diversity input */
   dprintk("%s ON : Enable diversity INPUT\n", __func__);
   dib8096p_cfg_DibRx(state, 5, 5, 0, 0, 0, 0, 0);
   state->input_mode_mpeg = 0;
   break;
 }

 dib8000_set_diversity_in(state->fe[0], onoff);
 return 0;
}

static int dib8096p_set_output_mode(struct dvb_frontend *fe, int mode)
{
 struct dib8000_state *state = fe->demodulator_priv;
 u16 outreg, smo_mode, fifo_threshold;
 u8 prefer_mpeg_mux_use = 1;
 int ret = 0;

 state->output_mode = mode;
 dib8096p_host_bus_drive(state, 1);

 fifo_threshold = 1792;
 smo_mode = (dib8000_read_word(state, 299) & 0x0050) | (1 << 1);
 outreg   = dib8000_read_word(state, 1286) &
  ~((1 << 10) | (0x7 << 6) | (1 << 1));

 switch (mode) {
 case OUTMODE_HIGH_Z:
   outreg = 0;
   break;

 case OUTMODE_MPEG2_SERIAL:
   if (prefer_mpeg_mux_use) {
    dprintk("dib8096P setting output mode TS_SERIAL using Mpeg Mux\n");
    dib8096p_configMpegMux(state, 3, 1, 1);
    dib8096p_setHostBusMux(state, MPEG_ON_HOSTBUS);
   } else {/* Use Smooth block */
    dprintk("dib8096P setting output mode TS_SERIAL using Smooth block\n");
    dib8096p_setHostBusMux(state,
      DEMOUT_ON_HOSTBUS);
    outreg |= (2 << 6) | (0 << 1);
   }
   break;

 case OUTMODE_MPEG2_PAR_GATED_CLK:
   if (prefer_mpeg_mux_use) {
    dprintk("dib8096P setting output mode TS_PARALLEL_GATED using Mpeg Mux\n");
    dib8096p_configMpegMux(state, 2, 0, 0);
    dib8096p_setHostBusMux(state, MPEG_ON_HOSTBUS);
   } else { /* Use Smooth block */
    dprintk("dib8096P setting output mode TS_PARALLEL_GATED using Smooth block\n");
    dib8096p_setHostBusMux(state,
      DEMOUT_ON_HOSTBUS);
    outreg |= (0 << 6);
   }
   break;

 case OUTMODE_MPEG2_PAR_CONT_CLK: /* Using Smooth block only */
   dprintk("dib8096P setting output mode TS_PARALLEL_CONT using Smooth block\n");
   dib8096p_setHostBusMux(state, DEMOUT_ON_HOSTBUS);
   outreg |= (1 << 6);
   break;

 case OUTMODE_MPEG2_FIFO:
   /* Using Smooth block because not supported
 * by new Mpeg Mux block
 */

   dprintk("dib8096P setting output mode TS_FIFO using Smooth block\n");
   dib8096p_setHostBusMux(state, DEMOUT_ON_HOSTBUS);
   outreg |= (5 << 6);
   smo_mode |= (3 << 1);
   fifo_threshold = 512;
   break;

 case OUTMODE_DIVERSITY:
   dprintk("dib8096P setting output mode MODE_DIVERSITY\n");
   dib8096p_setDibTxMux(state, DIV_ON_DIBTX);
   dib8096p_setHostBusMux(state, DIBTX_ON_HOSTBUS);
   break;

 case OUTMODE_ANALOG_ADC:
   dprintk("dib8096P setting output mode MODE_ANALOG_ADC\n");
   dib8096p_setDibTxMux(state, ADC_ON_DIBTX);
   dib8096p_setHostBusMux(state, DIBTX_ON_HOSTBUS);
   break;
 }

 if (mode != OUTMODE_HIGH_Z)
  outreg |= (1<<10);

 dprintk("output_mpeg2_in_188_bytes = %d\n",
   state->cfg.output_mpeg2_in_188_bytes);
 if (state->cfg.output_mpeg2_in_188_bytes)
  smo_mode |= (1 << 5);

 ret |= dib8000_write_word(state, 299, smo_mode);
 /* synchronous fread */
 ret |= dib8000_write_word(state, 299 + 1, fifo_threshold);
 ret |= dib8000_write_word(state, 1286, outreg);

 return ret;
}

static int map_addr_to_serpar_number(struct i2c_msg *msg)
{
 if (msg->buf[0] <= 15)
  msg->buf[0] -= 1;
 else if (msg->buf[0] == 17)
  msg->buf[0] = 15;
 else if (msg->buf[0] == 16)
  msg->buf[0] = 17;
 else if (msg->buf[0] == 19)
  msg->buf[0] = 16;
 else if (msg->buf[0] >= 21 && msg->buf[0] <= 25)
  msg->buf[0] -= 3;
 else if (msg->buf[0] == 28)
  msg->buf[0] = 23;
 else if (msg->buf[0] == 99)
  msg->buf[0] = 99;
 else
  return -EINVAL;
 return 0;
}

static int dib8096p_tuner_write_serpar(struct i2c_adapter *i2c_adap,
  struct i2c_msg msg[], int num)
{
 struct dib8000_state *state = i2c_get_adapdata(i2c_adap);
 u8 n_overflow = 1;
 u16 i = 1000;
 u16 serpar_num = msg[0].buf[0];

 while (n_overflow == 1 && i) {
  n_overflow = (dib8000_read_word(state, 1984) >> 1) & 0x1;
  i--;
  if (i == 0)
   dprintk("Tuner ITF: write busy (overflow)\n");
 }
 dib8000_write_word(state, 1985, (1 << 6) | (serpar_num & 0x3f));
 dib8000_write_word(state, 1986, (msg[0].buf[1] << 8) | msg[0].buf[2]);

 return num;
}

static int dib8096p_tuner_read_serpar(struct i2c_adapter *i2c_adap,
  struct i2c_msg msg[], int num)
{
 struct dib8000_state *state = i2c_get_adapdata(i2c_adap);
 u8 n_overflow = 1, n_empty = 1;
 u16 i = 1000;
 u16 serpar_num = msg[0].buf[0];
 u16 read_word;

 while (n_overflow == 1 && i) {
  n_overflow = (dib8000_read_word(state, 1984) >> 1) & 0x1;
  i--;
  if (i == 0)
   dprintk("TunerITF: read busy (overflow)\n");
 }
 dib8000_write_word(state, 1985, (0<<6) | (serpar_num&0x3f));

 i = 1000;
 while (n_empty == 1 && i) {
  n_empty = dib8000_read_word(state, 1984)&0x1;
  i--;
  if (i == 0)
   dprintk("TunerITF: read busy (empty)\n");
 }

 read_word = dib8000_read_word(state, 1987);
 msg[1].buf[0] = (read_word >> 8) & 0xff;
 msg[1].buf[1] = (read_word) & 0xff;

 return num;
}

static int dib8096p_tuner_rw_serpar(struct i2c_adapter *i2c_adap,
  struct i2c_msg msg[], int num)
{
 if (map_addr_to_serpar_number(&msg[0]) == 0) {
  if (num == 1) /* write */
   return dib8096p_tuner_write_serpar(i2c_adap, msg, 1);
  else /* read */
   return dib8096p_tuner_read_serpar(i2c_adap, msg, 2);
 }
 return num;
}

static int dib8096p_rw_on_apb(struct i2c_adapter *i2c_adap,
  struct i2c_msg msg[], int num, u16 apb_address)
{
 struct dib8000_state *state = i2c_get_adapdata(i2c_adap);
 u16 word;

 if (num == 1) {  /* write */
  dib8000_write_word(state, apb_address,
    ((msg[0].buf[1] << 8) | (msg[0].buf[2])));
 } else {
  word = dib8000_read_word(state, apb_address);
  msg[1].buf[0] = (word >> 8) & 0xff;
  msg[1].buf[1] = (word) & 0xff;
 }
 return num;
}

static int dib8096p_tuner_xfer(struct i2c_adapter *i2c_adap,
  struct i2c_msg msg[], int num)
{
 struct dib8000_state *state = i2c_get_adapdata(i2c_adap);
 u16 apb_address = 0, word;
 int i = 0;

 switch (msg[0].buf[0]) {
 case 0x12:
   apb_address = 1920;
   break;
 case 0x14:
   apb_address = 1921;
   break;
 case 0x24:
   apb_address = 1922;
   break;
 case 0x1a:
   apb_address = 1923;
   break;
 case 0x22:
   apb_address = 1924;
   break;
 case 0x33:
   apb_address = 1926;
   break;
 case 0x34:
   apb_address = 1927;
   break;
 case 0x35:
   apb_address = 1928;
   break;
 case 0x36:
   apb_address = 1929;
   break;
 case 0x37:
   apb_address = 1930;
   break;
 case 0x38:
   apb_address = 1931;
   break;
 case 0x39:
   apb_address = 1932;
   break;
 case 0x2a:
   apb_address = 1935;
   break;
 case 0x2b:
   apb_address = 1936;
   break;
 case 0x2c:
   apb_address = 1937;
   break;
 case 0x2d:
   apb_address = 1938;
   break;
 case 0x2e:
   apb_address = 1939;
   break;
 case 0x2f:
   apb_address = 1940;
   break;
 case 0x30:
   apb_address = 1941;
   break;
 case 0x31:
   apb_address = 1942;
   break;
 case 0x32:
   apb_address = 1943;
   break;
 case 0x3e:
   apb_address = 1944;
   break;
 case 0x3f:
   apb_address = 1945;
   break;
 case 0x40:
   apb_address = 1948;
   break;
 case 0x25:
   apb_address = 936;
   break;
 case 0x26:
   apb_address = 937;
   break;
 case 0x27:
   apb_address = 938;
   break;
 case 0x28:
   apb_address = 939;
   break;
 case 0x1d:
   /* get sad sel request */
   i = ((dib8000_read_word(state, 921) >> 12)&0x3);
   word = dib8000_read_word(state, 924+i);
   msg[1].buf[0] = (word >> 8) & 0xff;
   msg[1].buf[1] = (word) & 0xff;
   return num;
 case 0x1f:
   if (num == 1) { /* write */
    word = (u16) ((msg[0].buf[1] << 8) |
      msg[0].buf[2]);
    /* in the VGAMODE Sel are located on bit 0/1 */
    word &= 0x3;
    word = (dib8000_read_word(state, 921) &
      ~(3<<12)) | (word<<12);
    /* Set the proper input */
    dib8000_write_word(state, 921, word);
    return num;
   }
 }

 if (apb_address != 0) /* R/W access via APB */
  return dib8096p_rw_on_apb(i2c_adap, msg, num, apb_address);
 else  /* R/W access via SERPAR  */
  return dib8096p_tuner_rw_serpar(i2c_adap, msg, num);

 return 0;
}

static u32 dib8096p_i2c_func(struct i2c_adapter *adapter)
{
 return I2C_FUNC_I2C;
}

static const struct i2c_algorithm dib8096p_tuner_xfer_algo = {
 .master_xfer = dib8096p_tuner_xfer,
 .functionality = dib8096p_i2c_func,
};

static struct i2c_adapter *dib8096p_get_i2c_tuner(struct dvb_frontend *fe)
{
 struct dib8000_state *st = fe->demodulator_priv;
 return &st->dib8096p_tuner_adap;
}

static int dib8096p_tuner_sleep(struct dvb_frontend *fe, int onoff)
{
 struct dib8000_state *state = fe->demodulator_priv;
 u16 en_cur_state;

 dprintk("sleep dib8096p: %d\n", onoff);

 en_cur_state = dib8000_read_word(state, 1922);

 /* LNAs and MIX are ON and therefore it is a valid configuration */
 if (en_cur_state > 0xff)
  state->tuner_enable = en_cur_state ;

 if (onoff)
  en_cur_state &= 0x00ff;
 else {
  if (state->tuner_enable != 0)
   en_cur_state = state->tuner_enable;
 }

 dib8000_write_word(state, 1922, en_cur_state);

 return 0;
}

static const s32 lut_1000ln_mant[] =
{
 908, 7003, 7090, 7170, 7244, 7313, 7377, 7438, 7495, 7549, 7600
};

static s32 dib8000_get_adc_power(struct dvb_frontend *fe, u8 mode)
{
 struct dib8000_state *state = fe->demodulator_priv;
 u32 ix = 0, tmp_val = 0, exp = 0, mant = 0;
 s32 val;

 val = dib8000_read32(state, 384);
 if (mode) {
  tmp_val = val;
  while (tmp_val >>= 1)
   exp++;
  mant = (val * 1000 / (1<<exp));
  ix = (u8)((mant-1000)/100); /* index of the LUT */
  val = (lut_1000ln_mant[ix] + 693*(exp-20) - 6908);
  val = (val*256)/1000;
 }
 return val;
}

static int dib8090p_get_dc_power(struct dvb_frontend *fe, u8 IQ)
{
 struct dib8000_state *state = fe->demodulator_priv;
 int val = 0;

 switch (IQ) {
 case 1:
   val = dib8000_read_word(state, 403);
   break;
 case 0:
   val = dib8000_read_word(state, 404);
   break;
 }
 if (val  & 0x200)
  val -= 1024;

 return val;
}

static void dib8000_update_timf(struct dib8000_state *state)
{
 u32 timf = state->timf = dib8000_read32(state, 435);

 dib8000_write_word(state, 29, (u16) (timf >> 16));
 dib8000_write_word(state, 30, (u16) (timf & 0xffff));
 dprintk("Updated timing frequency: %d (default: %d)\n", state->timf, state->timf_default);
}

static u32 dib8000_ctrl_timf(struct dvb_frontend *fe, uint8_t op, uint32_t timf)
{
 struct dib8000_state *state = fe->demodulator_priv;

 switch (op) {
 case DEMOD_TIMF_SET:
   state->timf = timf;
   break;
 case DEMOD_TIMF_UPDATE:
   dib8000_update_timf(state);
   break;
 case DEMOD_TIMF_GET:
   break;
 }
 dib8000_set_bandwidth(state->fe[0], 6000);

 return state->timf;
}

static const u16 adc_target_16dB[11] = {
 7250, 7238, 7264, 7309, 7338, 7382, 7427, 7456, 7500, 7544, 7574
};

static const u8 permu_seg[] = { 6, 5, 7, 4, 8, 3, 9, 2, 10, 1, 11, 0, 12 };

static u16 dib8000_set_layer(struct dib8000_state *state, u8 layer_index, u16 max_constellation)
{
 u8  cr, constellation, time_intlv;
 struct dtv_frontend_properties *c = &state->fe[0]->dtv_property_cache;

 switch (c->layer[layer_index].modulation) {
 case DQPSK:
   constellation = 0;
   break;
 case  QPSK:
   constellation = 1;
   break;
 case QAM_16:
   constellation = 2;
   break;
 case QAM_64:
 default:
   constellation = 3;
   break;
 }

 switch (c->layer[layer_index].fec) {
 case FEC_1_2:
   cr = 1;
   break;
 case FEC_2_3:
   cr = 2;
   break;
 case FEC_3_4:
   cr = 3;
   break;
 case FEC_5_6:
   cr = 5;
   break;
 case FEC_7_8:
 default:
   cr = 7;
   break;
 }

 time_intlv = fls(c->layer[layer_index].interleaving);
 if (time_intlv > 3 && !(time_intlv == 4 && c->isdbt_sb_mode == 1))
  time_intlv = 0;

 dib8000_write_word(state, 2 + layer_index, (constellation << 10) | ((c->layer[layer_index].segment_count & 0xf) << 6) | (cr << 3) | time_intlv);
 if (c->layer[layer_index].segment_count > 0) {
  switch (max_constellation) {
  case DQPSK:
  case QPSK:
    if (c->layer[layer_index].modulation == QAM_16 || c->layer[layer_index].modulation == QAM_64)
     max_constellation = c->layer[layer_index].modulation;
    break;
  case QAM_16:
    if (c->layer[layer_index].modulation == QAM_64)
     max_constellation = c->layer[layer_index].modulation;
    break;
  }
 }

 return  max_constellation;
}

static const u16 adp_Q64[4] = {0x0148, 0xfff0, 0x00a4, 0xfff8}; /* P_adp_regul_cnt 0.04, P_adp_noise_cnt -0.002, P_adp_regul_ext 0.02, P_adp_noise_ext -0.001 */
static const u16 adp_Q16[4] = {0x023d, 0xffdf, 0x00a4, 0xfff0}; /* P_adp_regul_cnt 0.07, P_adp_noise_cnt -0.004, P_adp_regul_ext 0.02, P_adp_noise_ext -0.002 */
static const u16 adp_Qdefault[4] = {0x099a, 0xffae, 0x0333, 0xfff8}; /* P_adp_regul_cnt 0.3,  P_adp_noise_cnt -0.01,  P_adp_regul_ext 0.1,  P_adp_noise_ext -0.002 */
static u16 dib8000_adp_fine_tune(struct dib8000_state *state, u16 max_constellation)
{
 u16 i, ana_gain = 0;
 const u16 *adp;

 /* channel estimation fine configuration */
 switch (max_constellation) {
 case QAM_64:
   ana_gain = 0x7;
   adp = &adp_Q64[0];
   break;
 case QAM_16:
   ana_gain = 0x7;
   adp = &adp_Q16[0];
   break;
 default:
   ana_gain = 0;
   adp = &adp_Qdefault[0];
   break;
 }

 for (i = 0; i < 4; i++)
  dib8000_write_word(state, 215 + i, adp[i]);

 return ana_gain;
}

static void dib8000_update_ana_gain(struct dib8000_state *state, u16 ana_gain)
{
 u16 i;

 dib8000_write_word(state, 116, ana_gain);

 /* update ADC target depending on ana_gain */
 if (ana_gain) { /* set -16dB ADC target for ana_gain=-1 */
  for (i = 0; i < 10; i++)
   dib8000_write_word(state, 80 + i, adc_target_16dB[i]);
 } else { /* set -22dB ADC target for ana_gain=0 */
  for (i = 0; i < 10; i++)
   dib8000_write_word(state, 80 + i, adc_target_16dB[i] - 355);
 }
}

static void dib8000_load_ana_fe_coefs(struct dib8000_state *state, const s16 *ana_fe)
{
 u16 mode = 0;

 if (state->isdbt_cfg_loaded == 0)
  for (mode = 0; mode < 24; mode++)
   dib8000_write_word(state, 117 + mode, ana_fe[mode]);
}

static const u16 lut_prbs_2k[13] = {
 0x423, 0x009, 0x5C7,
 0x7A6, 0x3D8, 0x527,
 0x7FF, 0x79B, 0x3D6,
 0x3A2, 0x53B, 0x2F4,
 0x213
};

static const u16 lut_prbs_4k[13] = {
 0x208, 0x0C3, 0x7B9,
 0x423, 0x5C7, 0x3D8,
 0x7FF, 0x3D6, 0x53B,
 0x213, 0x029, 0x0D0,
 0x48E
};

static const u16 lut_prbs_8k[13] = {
 0x740, 0x069, 0x7DD,
 0x208, 0x7B9, 0x5C7,
 0x7FF, 0x53B, 0x029,
 0x48E, 0x4C4, 0x367,
 0x684
};

static u16 dib8000_get_init_prbs(struct dib8000_state *state, u16 subchannel)
{
 int sub_channel_prbs_group = 0;
 int prbs_group;

 sub_channel_prbs_group = subchannel / 3;
 if (sub_channel_prbs_group >= ARRAY_SIZE(lut_prbs_2k))
  return 0;

 switch (state->fe[0]->dtv_property_cache.transmission_mode) {
 case TRANSMISSION_MODE_2K:
  prbs_group = lut_prbs_2k[sub_channel_prbs_group];
  break;
 case TRANSMISSION_MODE_4K:
  prbs_group =  lut_prbs_4k[sub_channel_prbs_group];
  break;
 default:
 case TRANSMISSION_MODE_8K:
  prbs_group = lut_prbs_8k[sub_channel_prbs_group];
 }

 dprintk("sub_channel_prbs_group = %d , subchannel =%d prbs = 0x%04x\n",
  sub_channel_prbs_group, subchannel, prbs_group);

 return prbs_group;
}

static void dib8000_set_13seg_channel(struct dib8000_state *state)
{
 u16 i;
 u16 coff_pow = 0x2800;

 state->seg_mask = 0x1fff; /* All 13 segments enabled */

 /* ---- COFF ---- Carloff, the most robust --- */
 if (state->isdbt_cfg_loaded == 0) {  /* if not Sound Broadcasting mode : put default values for 13 segments */
  dib8000_write_word(state, 180, (16 << 6) | 9);
  dib8000_write_word(state, 187, (4 << 12) | (8 << 5) | 0x2);
  coff_pow = 0x2800;
  for (i = 0; i < 6; i++)
   dib8000_write_word(state, 181+i, coff_pow);

  /* P_ctrl_corm_thres4pre_freq_inh=1, P_ctrl_pre_freq_mode_sat=1 */
  /* P_ctrl_pre_freq_mode_sat=1, P_ctrl_pre_freq_inh=0, P_ctrl_pre_freq_step = 3, P_pre_freq_win_len=1 */
  dib8000_write_word(state, 338, (1 << 12) | (1 << 10) | (0 << 9) | (3 << 5) | 1);

  /* P_ctrl_pre_freq_win_len=8, P_ctrl_pre_freq_thres_lockin=6 */
  dib8000_write_word(state, 340, (8 << 6) | (6 << 0));
  /* P_ctrl_pre_freq_thres_lockout=4, P_small_use_tmcc/ac/cp=1 */
  dib8000_write_word(state, 341, (4 << 3) | (1 << 2) | (1 << 1) | (1 << 0));

  dib8000_write_word(state, 228, 0);  /* default value */
  dib8000_write_word(state, 265, 31); /* default value */
  dib8000_write_word(state, 205, 0x200f); /* init value */
 }

 /*
 * make the cpil_coff_lock more robust but slower p_coff_winlen
 * 6bits; p_coff_thres_lock 6bits (for coff lock if needed)
 */


 if (state->cfg.pll->ifreq == 0)
  dib8000_write_word(state, 266, ~state->seg_mask | state->seg_diff_mask | 0x40); /* P_equal_noise_seg_inh */

 dib8000_load_ana_fe_coefs(state, ana_fe_coeff_13seg);
}

static void dib8000_set_subchannel_prbs(struct dib8000_state *state, u16 init_prbs)
{
 u16 reg_1;

 reg_1 = dib8000_read_word(state, 1);
 dib8000_write_word(state, 1, (init_prbs << 2) | (reg_1 & 0x3)); /* ADDR 1 */
}

static void dib8000_small_fine_tune(struct dib8000_state *state)
{
 u16 i;
 const s16 *ncoeff;
 struct dtv_frontend_properties *c = &state->fe[0]->dtv_property_cache;

 dib8000_write_word(state, 352, state->seg_diff_mask);
 dib8000_write_word(state, 353, state->seg_mask);

 /* P_small_coef_ext_enable=ISDB-Tsb, P_small_narrow_band=ISDB-Tsb, P_small_last_seg=13, P_small_offset_num_car=5 */
 dib8000_write_word(state, 351, (c->isdbt_sb_mode << 9) | (c->isdbt_sb_mode << 8) | (13 << 4) | 5);

 if (c->isdbt_sb_mode) {
  /* ---- SMALL ---- */
  switch (c->transmission_mode) {
  case TRANSMISSION_MODE_2K:
    if (c->isdbt_partial_reception == 0) { /* 1-seg */
     if (c->layer[0].modulation == DQPSK) /* DQPSK */
      ncoeff = coeff_2k_sb_1seg_dqpsk;
     else /* QPSK or QAM */
      ncoeff = coeff_2k_sb_1seg;
    } else { /* 3-segments */
     if (c->layer[0].modulation == DQPSK) { /* DQPSK on central segment */
      if (c->layer[1].modulation == DQPSK) /* DQPSK on external segments */
       ncoeff = coeff_2k_sb_3seg_0dqpsk_1dqpsk;
      else /* QPSK or QAM on external segments */
       ncoeff = coeff_2k_sb_3seg_0dqpsk;
     } else { /* QPSK or QAM on central segment */
      if (c->layer[1].modulation == DQPSK) /* DQPSK on external segments */
       ncoeff = coeff_2k_sb_3seg_1dqpsk;
      else /* QPSK or QAM on external segments */
       ncoeff = coeff_2k_sb_3seg;
     }
    }
    break;
  case TRANSMISSION_MODE_4K:
    if (c->isdbt_partial_reception == 0) { /* 1-seg */
     if (c->layer[0].modulation == DQPSK) /* DQPSK */
      ncoeff = coeff_4k_sb_1seg_dqpsk;
     else /* QPSK or QAM */
      ncoeff = coeff_4k_sb_1seg;
    } else { /* 3-segments */
     if (c->layer[0].modulation == DQPSK) { /* DQPSK on central segment */
      if (c->layer[1].modulation == DQPSK) /* DQPSK on external segments */
       ncoeff = coeff_4k_sb_3seg_0dqpsk_1dqpsk;
      else /* QPSK or QAM on external segments */
       ncoeff = coeff_4k_sb_3seg_0dqpsk;
     } else { /* QPSK or QAM on central segment */
      if (c->layer[1].modulation == DQPSK) /* DQPSK on external segments */
       ncoeff = coeff_4k_sb_3seg_1dqpsk;
      else /* QPSK or QAM on external segments */
       ncoeff = coeff_4k_sb_3seg;
     }
    }
    break;
  case TRANSMISSION_MODE_AUTO:
  case TRANSMISSION_MODE_8K:
  default:
    if (c->isdbt_partial_reception == 0) { /* 1-seg */
     if (c->layer[0].modulation == DQPSK) /* DQPSK */
      ncoeff = coeff_8k_sb_1seg_dqpsk;
     else /* QPSK or QAM */
      ncoeff = coeff_8k_sb_1seg;
    } else { /* 3-segments */
     if (c->layer[0].modulation == DQPSK) { /* DQPSK on central segment */
      if (c->layer[1].modulation == DQPSK) /* DQPSK on external segments */
       ncoeff = coeff_8k_sb_3seg_0dqpsk_1dqpsk;
      else /* QPSK or QAM on external segments */
       ncoeff = coeff_8k_sb_3seg_0dqpsk;
     } else { /* QPSK or QAM on central segment */
      if (c->layer[1].modulation == DQPSK) /* DQPSK on external segments */
       ncoeff = coeff_8k_sb_3seg_1dqpsk;
      else /* QPSK or QAM on external segments */
       ncoeff = coeff_8k_sb_3seg;
     }
    }
    break;
  }

  for (i = 0; i < 8; i++)
   dib8000_write_word(state, 343 + i, ncoeff[i]);
 }
}

static const u16 coff_thres_1seg[3] = {300, 150, 80};
static const u16 coff_thres_3seg[3] = {350, 300, 250};
static void dib8000_set_sb_channel(struct dib8000_state *state)
{
 struct dtv_frontend_properties *c = &state->fe[0]->dtv_property_cache;
 const u16 *coff;
 u16 i;

 if (c->transmission_mode == TRANSMISSION_MODE_2K || c->transmission_mode == TRANSMISSION_MODE_4K) {
  dib8000_write_word(state, 219, dib8000_read_word(state, 219) | 0x1); /* adp_pass =1 */
  dib8000_write_word(state, 190, dib8000_read_word(state, 190) | (0x1 << 14)); /* pha3_force_pha_shift = 1 */
 } else {
  dib8000_write_word(state, 219, dib8000_read_word(state, 219) & 0xfffe); /* adp_pass =0 */
  dib8000_write_word(state, 190, dib8000_read_word(state, 190) & 0xbfff); /* pha3_force_pha_shift = 0 */
 }

 if (c->isdbt_partial_reception == 1) /* 3-segments */
  state->seg_mask = 0x00E0;
 else /* 1-segment */
  state->seg_mask = 0x0040;

 dib8000_write_word(state, 268, (dib8000_read_word(state, 268) & 0xF9FF) | 0x0200);

 /* ---- COFF ---- Carloff, the most robust --- */
 /* P_coff_cpil_alpha=4, P_coff_inh=0, P_coff_cpil_winlen=64, P_coff_narrow_band=1, P_coff_square_val=1, P_coff_one_seg=~partial_rcpt, P_coff_use_tmcc=1, P_coff_use_ac=1 */
 dib8000_write_word(state, 187, (4 << 12) | (0 << 11) | (63 << 5) | (0x3 << 3) | ((~c->isdbt_partial_reception & 1) << 2) | 0x3);

 dib8000_write_word(state, 340, (16 << 6) | (8 << 0)); /* P_ctrl_pre_freq_win_len=16, P_ctrl_pre_freq_thres_lockin=8 */
 dib8000_write_word(state, 341, (6 << 3) | (1 << 2) | (1 << 1) | (1 << 0));/* P_ctrl_pre_freq_thres_lockout=6, P_small_use_tmcc/ac/cp=1 */

 /* Sound Broadcasting mode 1 seg */
 if (c->isdbt_partial_reception == 0) {
  /* P_coff_winlen=63, P_coff_thres_lock=15, P_coff_one_seg_width = (P_mode == 3) , P_coff_one_seg_sym = (P_mode-1) */
  if (state->mode == 3)
   dib8000_write_word(state, 180, 0x1fcf | ((state->mode - 1) << 14));
  else
   dib8000_write_word(state, 180, 0x0fcf | ((state->mode - 1) << 14));

  /* P_ctrl_corm_thres4pre_freq_inh=1,P_ctrl_pre_freq_mode_sat=1, P_ctrl_pre_freq_inh=0, P_ctrl_pre_freq_step = 5, P_pre_freq_win_len=4 */
  dib8000_write_word(state, 338, (1 << 12) | (1 << 10) | (0 << 9) | (5 << 5) | 4);
  coff = &coff_thres_1seg[0];
 } else {   /* Sound Broadcasting mode 3 seg */
  dib8000_write_word(state, 180, 0x1fcf | (1 << 14));
  /* P_ctrl_corm_thres4pre_freq_inh = 1, P_ctrl_pre_freq_mode_sat=1, P_ctrl_pre_freq_inh=0, P_ctrl_pre_freq_step = 4, P_pre_freq_win_len=4 */
  dib8000_write_word(state, 338, (1 << 12) | (1 << 10) | (0 << 9) | (4 << 5) | 4);
  coff = &coff_thres_3seg[0];
 }

 dib8000_write_word(state, 228, 1); /* P_2d_mode_byp=1 */
 dib8000_write_word(state, 205, dib8000_read_word(state, 205) & 0xfff0); /* P_cspu_win_cut = 0 */

 if (c->isdbt_partial_reception == 0 && c->transmission_mode == TRANSMISSION_MODE_2K)
  dib8000_write_word(state, 265, 15); /* P_equal_noise_sel = 15 */

 /* Write COFF thres */
 for (i = 0 ; i < 3; i++) {
--> --------------------

--> maximum size reached

--> --------------------

Messung V0.5
C=94 H=92 G=92

¤ Dauer der Verarbeitung: 0.23 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.