Re: [PATCH 3/3] DVBSky V3 PCIe card: add some changes to M88DS3103for supporting the demod of M88RS6000

2014-10-24 Thread Antti Palosaari

Moikka!

On 10/22/2014 03:16 PM, Nibble Max wrote:

On 2014-10-22 05:24:02, Antti Palosaari wrote:



On 10/13/2014 09:44 AM, Nibble Max wrote:

M88RS6000 is the integrated chip, which includes tuner and demod.
Its internal demod is similar with M88DS3103 except some registers definition.
The main different part of this internal demod from others is its clock/pll 
generation IP block sitting inside the tuner die.
So clock/pll functions should be configed through its tuner i2c bus, NOT its 
demod i2c bus.
The demod of M88RS6000 need the firmware: dvb-demod-m88rs6000.fw
firmware download link: 
http://www.dvbsky.net/download/linux/dvbsky-firmware.tar.gz



@@ -250,6 +251,7 @@ static int m88ds3103_set_frontend(struct dvb_frontend *fe)
u16 u16tmp, divide_ratio;
u32 tuner_frequency, target_mclk;
s32 s32tmp;
+   struct m88rs6000_mclk_config mclk_cfg;

dev_dbg(priv-i2c-dev,
%s: delivery_system=%d modulation=%d frequency=%d 
symbol_rate=%d inversion=%d pilot=%d rolloff=%d\n,
@@ -291,6 +293,26 @@ static int m88ds3103_set_frontend(struct dvb_frontend *fe)
if (ret)
goto err;

+   if (priv-chip_id == M88RS6000_CHIP_ID) {
+   ret = m88ds3103_wr_reg(priv, 0x06, 0xe0);
+   if (ret)
+   goto err;
+   if (fe-ops.tuner_ops.set_config) {
+   /* select main mclk */
+   mclk_cfg.config_op = 0;
+   mclk_cfg.TunerfreqMHz = c-frequency / 1000;
+   mclk_cfg.SymRateKSs = c-symbol_rate / 1000;
+   ret = fe-ops.tuner_ops.set_config(fe, mclk_cfg);
+   if (ret)
+   goto err;
+   priv-mclk_khz = mclk_cfg.MclkKHz;
+   }
+   ret = m88ds3103_wr_reg(priv, 0x06, 0x00);
+   if (ret)
+   goto err;
+   usleep_range(1, 2);
+   }


That looks odd and also ugly. You pass some values from demod to tuner
using set_config callback. Tuner driver can get symbol_rate and
frequency just similarly from property cache than demod. Why you do it
like that?

Clock is provided by tuner as you mention. I see you use that to pass
used clock frequency from tuner to demod. This does not look nice and I
would like to see clock framework instead. Or calculate clock on both
drivers. Does the demod clock even needs to be changed? I think it is
only TS stream size which defines used clock frequency - smaller the TS
bitstream, the smaller the clock frequency needed = optimizes power
consumption a little. But TS clock is calculated on tuner driver in any
case?


Yes, M88RS6000 looks odd. This integrated chip has two part die, tuner die and 
demod die.
Its demod's clock(PLL) block is sitting insided the tuner die. The demod has no 
PLL ip block that makes demod die smaller.
The demod's clock can be adjusted according to the transponder's frequency and 
symbol rate.
So that the demod's clock and its harmonic frequency will not overlap with the 
transponder's frequency range.
It will improve its tuner's sensitivity.

However the tuner driver can get the values from property cache.
Tuner driver does not know when need adjust this demod pll
and return the current demod pll value to the demod driver.
in struct dvb_tuner_ops, there is no call back to do this directly.
So I select the general set_config call back.
TS main clock of demdod also need to be controlled in the tuner die.

These demod's PLL registers have no relationship with tuner at all.
Logically, These demod's PLL registers should go with demod die as usual.
But in this case they goes with the tuner die physically and controlled through 
tuner i2c bus.

The current dvb-frontend driver requires the tuner and demod to split into the 
seperate drivers.
The demod driver will not access tuner i2c bus directly.
But this integrate chip has more tighter relationship of its tuner and demod 
die.
That is reason why these odd call backs happen.


I understand situation pretty well.
Let me say it shortly still to make it clear for the possible others; 
M88RS6000 is integrated DVB-S2 receiver containing demod IP block that 
is very near to M88DS3103 demod and tuner which is not so near any 
existing tuner chip. Both IP blocks, demod and tuner, are connected to 
I2C bus. However, all demodulator clocks (master clock and TS master 
clock) are coming from tuner die. Tuner gets reference clock from 27 MHz 
Xtal and there is PLL or multiple PLLs to derive/generate all the other 
needed clocks.


So now we need to get demod MCLK and TS MCLK from tuner to demod. I 
looked the tuner driver and saw following possible M88RS6000 MCLKs 
93.000, 96.000, 99.000, 110.250 MHz. Old M88DS3103 uses only 96.000 MHz. 
There was rather simple logic to select suitable (smallest possible) 
demod MCLK according to symbol rate. TS master clock calculation looked 

Re: Re: [PATCH 3/3] DVBSky V3 PCIe card: add some changes to M88DS3103for supporting the demod of M88RS6000

2014-10-22 Thread Nibble Max
On 2014-10-22 05:24:02, Antti Palosaari wrote:


On 10/13/2014 09:44 AM, Nibble Max wrote:
 M88RS6000 is the integrated chip, which includes tuner and demod.
 Its internal demod is similar with M88DS3103 except some registers 
 definition.
 The main different part of this internal demod from others is its clock/pll 
 generation IP block sitting inside the tuner die.
 So clock/pll functions should be configed through its tuner i2c bus, NOT its 
 demod i2c bus.
 The demod of M88RS6000 need the firmware: dvb-demod-m88rs6000.fw
 firmware download link: 
 http://www.dvbsky.net/download/linux/dvbsky-firmware.tar.gz

 @@ -250,6 +251,7 @@ static int m88ds3103_set_frontend(struct dvb_frontend 
 *fe)
  u16 u16tmp, divide_ratio;
  u32 tuner_frequency, target_mclk;
  s32 s32tmp;
 +struct m88rs6000_mclk_config mclk_cfg;

  dev_dbg(priv-i2c-dev,
  %s: delivery_system=%d modulation=%d frequency=%d 
 symbol_rate=%d inversion=%d pilot=%d rolloff=%d\n,
 @@ -291,6 +293,26 @@ static int m88ds3103_set_frontend(struct dvb_frontend 
 *fe)
  if (ret)
  goto err;

 +if (priv-chip_id == M88RS6000_CHIP_ID) {
 +ret = m88ds3103_wr_reg(priv, 0x06, 0xe0);
 +if (ret)
 +goto err;
 +if (fe-ops.tuner_ops.set_config) {
 +/* select main mclk */
 +mclk_cfg.config_op = 0;
 +mclk_cfg.TunerfreqMHz = c-frequency / 1000;
 +mclk_cfg.SymRateKSs = c-symbol_rate / 1000;
 +ret = fe-ops.tuner_ops.set_config(fe, mclk_cfg);
 +if (ret)
 +goto err;
 +priv-mclk_khz = mclk_cfg.MclkKHz;
 +}
 +ret = m88ds3103_wr_reg(priv, 0x06, 0x00);
 +if (ret)
 +goto err;
 +usleep_range(1, 2);
 +}

That looks odd and also ugly. You pass some values from demod to tuner 
using set_config callback. Tuner driver can get symbol_rate and 
frequency just similarly from property cache than demod. Why you do it 
like that?

Clock is provided by tuner as you mention. I see you use that to pass 
used clock frequency from tuner to demod. This does not look nice and I 
would like to see clock framework instead. Or calculate clock on both 
drivers. Does the demod clock even needs to be changed? I think it is 
only TS stream size which defines used clock frequency - smaller the TS 
bitstream, the smaller the clock frequency needed = optimizes power 
consumption a little. But TS clock is calculated on tuner driver in any 
case?

Yes, M88RS6000 looks odd. This integrated chip has two part die, tuner die and 
demod die.
Its demod's clock(PLL) block is sitting insided the tuner die. The demod has no 
PLL ip block that makes demod die smaller.
The demod's clock can be adjusted according to the transponder's frequency and 
symbol rate.
So that the demod's clock and its harmonic frequency will not overlap with the 
transponder's frequency range.
It will improve its tuner's sensitivity.

However the tuner driver can get the values from property cache.
Tuner driver does not know when need adjust this demod pll
and return the current demod pll value to the demod driver.
in struct dvb_tuner_ops, there is no call back to do this directly.
So I select the general set_config call back.
TS main clock of demdod also need to be controlled in the tuner die.

These demod's PLL registers have no relationship with tuner at all.
Logically, These demod's PLL registers should go with demod die as usual.
But in this case they goes with the tuner die physically and controlled through 
tuner i2c bus.

The current dvb-frontend driver requires the tuner and demod to split into the 
seperate drivers.
The demod driver will not access tuner i2c bus directly.
But this integrate chip has more tighter relationship of its tuner and demod 
die.
That is reason why these odd call backs happen.
BR,
Max
regards
Antti

-- 
http://palosaari.fi/

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Re: [PATCH 3/3] DVBSky V3 PCIe card: add some changes to M88DS3103for supporting the demod of M88RS6000

2014-10-21 Thread Nibble Max


On 10/13/2014 09:44 AM, Nibble Max wrote:
 M88RS6000 is the integrated chip, which includes tuner and demod.
 Its internal demod is similar with M88DS3103 except some registers 
 definition.
 The main different part of this internal demod from others is its clock/pll 
 generation IP block sitting inside the tuner die.
 So clock/pll functions should be configed through its tuner i2c bus, NOT its 
 demod i2c bus.
 The demod of M88RS6000 need the firmware: dvb-demod-m88rs6000.fw
 firmware download link: 
 http://www.dvbsky.net/download/linux/dvbsky-firmware.tar.gz

 @@ -250,6 +251,7 @@ static int m88ds3103_set_frontend(struct dvb_frontend 
 *fe)
  u16 u16tmp, divide_ratio;
  u32 tuner_frequency, target_mclk;
  s32 s32tmp;
 +struct m88rs6000_mclk_config mclk_cfg;

  dev_dbg(priv-i2c-dev,
  %s: delivery_system=%d modulation=%d frequency=%d 
 symbol_rate=%d inversion=%d pilot=%d rolloff=%d\n,
 @@ -291,6 +293,26 @@ static int m88ds3103_set_frontend(struct dvb_frontend 
 *fe)
  if (ret)
  goto err;

 +if (priv-chip_id == M88RS6000_CHIP_ID) {
 +ret = m88ds3103_wr_reg(priv, 0x06, 0xe0);
 +if (ret)
 +goto err;
 +if (fe-ops.tuner_ops.set_config) {
 +/* select main mclk */
 +mclk_cfg.config_op = 0;
 +mclk_cfg.TunerfreqMHz = c-frequency / 1000;
 +mclk_cfg.SymRateKSs = c-symbol_rate / 1000;
 +ret = fe-ops.tuner_ops.set_config(fe, mclk_cfg);
 +if (ret)
 +goto err;
 +priv-mclk_khz = mclk_cfg.MclkKHz;
 +}
 +ret = m88ds3103_wr_reg(priv, 0x06, 0x00);
 +if (ret)
 +goto err;
 +usleep_range(1, 2);
 +}

That looks odd and also ugly. You pass some values from demod to tuner 
using set_config callback. Tuner driver can get symbol_rate and 
frequency just similarly from property cache than demod. Why you do it 
like that?

Clock is provided by tuner as you mention. I see you use that to pass 
used clock frequency from tuner to demod. This does not look nice and I 
would like to see clock framework instead. Or calculate clock on both 
drivers. Does the demod clock even needs to be changed? I think it is 
only TS stream size which defines used clock frequency - smaller the TS 
bitstream, the smaller the clock frequency needed = optimizes power 
consumption a little. But TS clock is calculated on tuner driver in any 
case?

Yes, M88RS6000 looks odd. This integrated chip has two part die, tuner die and 
demod die.
Its demod's clock(PLL) block is sitting insided the tuner die. The demod has no 
PLL ip block that makes demod die smaller.
The demod's clock can be adjusted according to the transponder's frequency and 
symbol rate.
So that the demod's clock and its harmonic frequency will not overlap with the 
transponder's frequency range.
It will improve its tuner's sensitivity.

However the tuner driver can get the values from property cache.
Tuner driver does not know when need adjust this demod pll
and return the current demod pll value to the demod driver.
in struct dvb_tuner_ops, there is no call back to do this directly.
So I select the general set_config call back.
TS main clock of demdod also need to be controlled in the tuner die.

These demod's PLL registers have no relationship with tuner at all.
Logically, These demod's PLL registers should go with demod die as usual.
But in this case they goes with the tuner die physically and controlled through 
tuner i2c bus.

The current dvb-frontend driver requires the tuner and demod to split into the 
seperate drivers.
The demod driver will not access tuner i2c bus directly.
But this integrate chip has more tighter relationship of its tuner and demod 
die.
That is reason why these odd call backs happen.

regards
Antti

-- 
http://palosaari.fi/

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html