revert rest of local changes (so the complete commit is reverted now)
[enigma2.git] / lib / dvb / sec.cpp
1 #include <lib/dvb/dvb.h>
2 #include <lib/dvb/sec.h>
3 #include <lib/dvb/rotor_calc.h>
4 #include <lib/dvb/dvbtime.h>
5
6 #include <set>
7
8 #if HAVE_DVB_API_VERSION < 3
9 #define FREQUENCY Frequency
10 #else
11 #define FREQUENCY frequency
12 #endif
13 #include <lib/base/eerror.h>
14
15 //#define SEC_DEBUG
16
17 #ifdef SEC_DEBUG
18 #define eSecDebug(arg...) eDebug(arg)
19 #else
20 #define eSecDebug(arg...)
21 #endif
22
23 DEFINE_REF(eDVBSatelliteEquipmentControl);
24
25 eDVBSatelliteEquipmentControl *eDVBSatelliteEquipmentControl::instance;
26
27 int eDVBSatelliteEquipmentControl::m_params[MAX_PARAMS];
28 /*
29    defaults are set in python lib/python/Components/NimManager.py
30    in InitSecParams function via setParam call
31 */
32
33 void eDVBSatelliteEquipmentControl::setParam(int param, int value)
34 {
35         if (param >= 0 && param < MAX_PARAMS)
36                 m_params[param]=value;
37 }
38
39 eDVBSatelliteEquipmentControl::eDVBSatelliteEquipmentControl(eSmartPtrList<eDVBRegisteredFrontend> &avail_frontends)
40         :m_lnbidx(-1), m_curSat(m_lnbs[0].m_satellites.end()), m_avail_frontends(avail_frontends), m_rotorMoving(false)
41 {
42         if (!instance)
43                 instance = this;
44
45         clear();
46
47 // ASTRA
48         addLNB();
49         setLNBSlotMask(3);
50         setLNBLOFL(9750000);
51         setLNBThreshold(11700000);
52         setLNBLOFH(10607000);
53         setDiSEqCMode(eDVBSatelliteDiseqcParameters::V1_0);
54         setToneburst(eDVBSatelliteDiseqcParameters::NO);
55         setRepeats(0);
56         setCommittedCommand(eDVBSatelliteDiseqcParameters::BB);
57         setCommandOrder(0); // committed, toneburst
58         setFastDiSEqC(true);
59         setSeqRepeat(false);
60         addSatellite(192);
61         setVoltageMode(eDVBSatelliteSwitchParameters::HV);
62         setToneMode(eDVBSatelliteSwitchParameters::HILO);
63
64 // Hotbird
65         addLNB();
66         setLNBSlotMask(3);
67         setLNBLOFL(9750000);
68         setLNBThreshold(11700000);
69         setLNBLOFH(10600000);
70         setDiSEqCMode(eDVBSatelliteDiseqcParameters::V1_0);
71         setToneburst(eDVBSatelliteDiseqcParameters::NO);
72         setRepeats(0);
73         setCommittedCommand(eDVBSatelliteDiseqcParameters::AB);
74         setCommandOrder(0); // committed, toneburst
75         setFastDiSEqC(true);
76         setSeqRepeat(false);
77         addSatellite(130);
78         setVoltageMode(eDVBSatelliteSwitchParameters::HV);
79         setToneMode(eDVBSatelliteSwitchParameters::HILO);
80
81 // Rotor
82         addLNB();
83         setLNBSlotMask(3);
84         setLNBLOFL(9750000);
85         setLNBThreshold(11700000);
86         setLNBLOFH(10600000);
87         setDiSEqCMode(eDVBSatelliteDiseqcParameters::V1_2);
88         setToneburst(eDVBSatelliteDiseqcParameters::NO);
89         setRepeats(0);
90         setCommittedCommand(eDVBSatelliteDiseqcParameters::AA);
91         setCommandOrder(0); // committed, toneburst
92         setFastDiSEqC(true);
93         setSeqRepeat(false);
94         setLaDirection(eDVBSatelliteRotorParameters::NORTH);
95         setLoDirection(eDVBSatelliteRotorParameters::EAST);
96         setLatitude(51.017);
97         setLongitude(8.683);
98         setUseInputpower(true);
99         setInputpowerDelta(50);
100
101         addSatellite(235);
102         setVoltageMode(eDVBSatelliteSwitchParameters::HV);
103         setToneMode(eDVBSatelliteSwitchParameters::HILO);
104         setRotorPosNum(0);
105
106         addSatellite(284);
107         setVoltageMode(eDVBSatelliteSwitchParameters::HV);
108         setToneMode(eDVBSatelliteSwitchParameters::HILO);
109         setRotorPosNum(0);
110
111         addSatellite(420);
112         setVoltageMode(eDVBSatelliteSwitchParameters::HV);
113         setToneMode(eDVBSatelliteSwitchParameters::HILO);
114         setRotorPosNum(1); // stored pos 1
115 }
116
117 static void checkLinkedParams(int direction, long &linked_ptr, int &ret, const eDVBFrontendParametersSatellite &sat, int csw, int ucsw, int toneburst, bool diseqc, bool rotor, int RotorPos)
118 {
119         eDVBRegisteredFrontend *linked_fe = (eDVBRegisteredFrontend*) linked_ptr;
120         if (linked_fe->m_inuse)
121         {
122                 long ocsw = -1,
123                         oucsw = -1,
124                         oToneburst = -1;
125                 linked_fe->m_frontend->getData(eDVBFrontend::CSW, ocsw);
126                 linked_fe->m_frontend->getData(eDVBFrontend::UCSW, oucsw);
127                 linked_fe->m_frontend->getData(eDVBFrontend::TONEBURST, oToneburst);
128 #if 0
129                 eDebug("compare csw %02x == lcsw %02x",
130                         csw, ocsw);
131                 if ( diseqc )
132                         eDebug("compare ucsw %02x == lucsw %02x\ncompare toneburst %02x == oToneburst %02x",
133                                 ucsw, oucsw, toneburst, oToneburst);
134                 if ( rotor )
135                         eDebug("compare pos %d == current pos %d",
136                                 sat.orbital_position, oRotorPos);
137 #endif
138                 if ( (csw != ocsw) ||
139                         ( diseqc && (ucsw != oucsw || toneburst != oToneburst) ) ||
140                         ( rotor && RotorPos != sat.orbital_position ) )
141                 {
142 //                      eDebug("can not tune this transponder with linked tuner in use!!");
143                         ret=0;
144                 }
145 //              else
146 //                      eDebug("OK .. can tune this transponder with linked tuner in use :)");
147         }
148         linked_fe->m_frontend->getData(direction, (long&)linked_ptr);
149 }
150
151 int eDVBSatelliteEquipmentControl::canTune(const eDVBFrontendParametersSatellite &sat, iDVBFrontend *fe, int slot_id )
152 {
153         int ret=0, satcount=0;
154
155         for (int idx=0; idx <= m_lnbidx; ++idx )
156         {
157                 bool rotor=false;
158                 eDVBSatelliteLNBParameters &lnb_param = m_lnbs[idx];
159                 if ( lnb_param.slot_mask & slot_id ) // lnb for correct tuner?
160                 {
161                         eDVBSatelliteDiseqcParameters &di_param = lnb_param.m_diseqc_parameters;
162
163                         satcount += lnb_param.m_satellites.size();
164
165                         std::map<int, eDVBSatelliteSwitchParameters>::iterator sit =
166                                 lnb_param.m_satellites.find(sat.orbital_position);
167                         if ( sit != lnb_param.m_satellites.end())
168                         {
169                                 long band=0,
170                                         linked_prev_ptr=-1,
171                                         linked_next_ptr=-1,
172                                         satpos_depends_ptr=-1,
173                                         csw = di_param.m_committed_cmd,
174                                         ucsw = di_param.m_uncommitted_cmd,
175                                         toneburst = di_param.m_toneburst_param,
176                                         curRotorPos;
177
178                                 fe->getData(eDVBFrontend::ROTOR_POS, curRotorPos);
179                                 fe->getData(eDVBFrontend::LINKED_PREV_PTR, linked_prev_ptr);
180                                 fe->getData(eDVBFrontend::LINKED_NEXT_PTR, linked_next_ptr);
181                                 fe->getData(eDVBFrontend::SATPOS_DEPENDS_PTR, satpos_depends_ptr);
182
183                                 if ( sat.frequency > lnb_param.m_lof_threshold )
184                                         band |= 1;
185                                 if (!(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical))
186                                         band |= 2;
187
188                                 bool diseqc=false;
189
190                                 if (di_param.m_diseqc_mode >= eDVBSatelliteDiseqcParameters::V1_0)
191                                 {
192                                         diseqc=true;
193                                         if ( di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO )
194                                                 csw = 0xF0 | (csw << 2);
195
196                                         if (di_param.m_committed_cmd <= eDVBSatelliteDiseqcParameters::SENDNO)
197                                                 csw |= band;
198
199                                         if ( di_param.m_diseqc_mode == eDVBSatelliteDiseqcParameters::V1_2 )  // ROTOR
200                                                 rotor = true;
201
202                                         ret=10000;
203                                         if (rotor && curRotorPos != -1)
204                                                 ret -= abs(curRotorPos-sat.orbital_position);
205                                 }
206                                 else
207                                 {
208                                         csw = band;
209                                         ret = 15000;
210                                 }
211
212                                 while (ret && linked_prev_ptr != -1)  // check for linked tuners..
213                                         checkLinkedParams(eDVBFrontend::LINKED_PREV_PTR, linked_prev_ptr, ret, sat, csw, ucsw, toneburst, diseqc, rotor, curRotorPos);
214
215                                 while (ret && linked_next_ptr != -1)  // check for linked tuners..
216                                         checkLinkedParams(eDVBFrontend::LINKED_NEXT_PTR, linked_next_ptr, ret, sat, csw, ucsw, toneburst, diseqc, rotor, curRotorPos);
217
218                                 if (ret)
219                                         if (satpos_depends_ptr != -1)
220                                         {
221                                                 eDVBRegisteredFrontend *satpos_depends_to_fe = (eDVBRegisteredFrontend*) satpos_depends_ptr;
222                                                 if ( satpos_depends_to_fe->m_inuse )
223                                                 {
224                                                         if (!rotor || curRotorPos != sat.orbital_position)
225                                                         {
226 //                                                              eDebug("can not tune this transponder ... rotor on other tuner is positioned to %d", oRotorPos);
227                                                                 ret=0;
228                                                         }
229                                                 }
230 //                                              else
231 //                                                      eDebug("OK .. can tune this transponder satpos is correct :)");
232                                         }
233
234                                 if (ret)
235                                 {
236                                         int lof = sat.frequency > lnb_param.m_lof_threshold ?
237                                                 lnb_param.m_lof_hi : lnb_param.m_lof_lo;
238                                         int tuner_freq = abs(sat.frequency - lof);
239 //                                      eDebug("tuner freq %d", tuner_freq);
240                                         if (tuner_freq < 900000 || tuner_freq > 2200000)
241                                         {
242                                                 ret=0;
243 //                                              eDebug("Transponder not tuneable with this lnb... %d Khz out of tuner range",
244 //                                                      tuner_freq);
245                                         }
246                                 }
247                         }
248                 }
249         }
250         if (ret && satcount)
251                 ret -= (satcount-1);
252         if (ret && m_not_linked_slot_mask & slot_id)
253                 ret += 5; // increase score for tuners with direct sat connection
254         return ret;
255 }
256
257 bool need_turn_fast(int turn_speed)
258 {
259         if (turn_speed == eDVBSatelliteRotorParameters::FAST)
260                 return true;
261         else if (turn_speed != eDVBSatelliteRotorParameters::SLOW)
262         {
263                 int begin = turn_speed >> 16; // high word is start time
264                 int end = turn_speed&0xFFFF; // low word is end time
265                 time_t now_time = ::time(0);
266                 tm nowTime;
267                 localtime_r(&now_time, &nowTime);
268                 int now = (nowTime.tm_hour + 1) * 60 + nowTime.tm_min + 1;
269                 bool neg = end <= begin;
270                 if (neg) {
271                         int tmp = begin;
272                         begin = end;
273                         end = tmp;
274                 }
275                 if ((now >= begin && now < end) ^ neg)
276                         return true;
277         }
278         return false;
279 }
280
281 #define VOLTAGE(x) (lnb_param.m_increased_voltage ? iDVBFrontend::voltage##x##_5 : iDVBFrontend::voltage##x)
282
283 RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPARAMETERS &parm, const eDVBFrontendParametersSatellite &sat, int slot_id, unsigned int tunetimeout)
284 {
285         for (int idx=0; idx <= m_lnbidx; ++idx )
286         {
287                 eDVBSatelliteLNBParameters &lnb_param = m_lnbs[idx];
288                 if (!(lnb_param.slot_mask & slot_id)) // lnb for correct tuner?
289                         continue;
290                 eDVBSatelliteDiseqcParameters &di_param = lnb_param.m_diseqc_parameters;
291                 eDVBSatelliteRotorParameters &rotor_param = lnb_param.m_rotor_parameters;
292
293                 std::map<int, eDVBSatelliteSwitchParameters>::iterator sit =
294                         lnb_param.m_satellites.find(sat.orbital_position);
295                 if ( sit != lnb_param.m_satellites.end())
296                 {
297                         eDVBSatelliteSwitchParameters &sw_param = sit->second;
298                         bool doSetFrontend = true;
299                         bool doSetVoltageToneFrontend = m_not_linked_slot_mask & slot_id;
300                         bool allowDiseqc1_2 = true;
301                         long band=0,
302                                 voltage = iDVBFrontend::voltageOff,
303                                 tone = iDVBFrontend::toneOff,
304                                 csw = di_param.m_committed_cmd,
305                                 ucsw = di_param.m_uncommitted_cmd,
306                                 toneburst = di_param.m_toneburst_param,
307                                 lastcsw = -1,
308                                 lastucsw = -1,
309                                 lastToneburst = -1,
310                                 lastRotorCmd = -1,
311                                 curRotorPos = -1,
312                                 satposDependPtr = -1;
313
314                         frontend.getData(eDVBFrontend::CSW, lastcsw);
315                         frontend.getData(eDVBFrontend::UCSW, lastucsw);
316                         frontend.getData(eDVBFrontend::TONEBURST, lastToneburst);
317                         frontend.getData(eDVBFrontend::ROTOR_CMD, lastRotorCmd);
318                         frontend.getData(eDVBFrontend::ROTOR_POS, curRotorPos);
319                         frontend.getData(eDVBFrontend::SATPOS_DEPENDS_PTR, satposDependPtr);
320
321                         if (satposDependPtr != -1 && !doSetVoltageToneFrontend)
322                         {
323                                 allowDiseqc1_2 = false;
324                                 doSetVoltageToneFrontend = true;
325                         }
326
327                         if ( sat.frequency > lnb_param.m_lof_threshold )
328                                 band |= 1;
329
330                         if (band&1)
331                                 parm.FREQUENCY = sat.frequency - lnb_param.m_lof_hi;
332                         else
333                                 parm.FREQUENCY = sat.frequency - lnb_param.m_lof_lo;
334
335                         parm.FREQUENCY = abs(parm.FREQUENCY);
336
337                         frontend.setData(eDVBFrontend::FREQ_OFFSET, sat.frequency - parm.FREQUENCY);
338
339                         if (!(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical))
340                                 band |= 2;
341
342                         if ( sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::_14V
343                                 || ( sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical
344                                         && sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::HV )  )
345                                 voltage = VOLTAGE(13);
346                         else if ( sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::_18V
347                                 || ( !(sat.polarisation & eDVBFrontendParametersSatellite::Polarisation::Vertical)
348                                         && sw_param.m_voltage_mode == eDVBSatelliteSwitchParameters::HV )  )
349                                 voltage = VOLTAGE(18);
350                         if ( (sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::ON)
351                                 || ( sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::HILO && (band&1) ) )
352                                 tone = iDVBFrontend::toneOn;
353                         else if ( (sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::OFF)
354                                 || ( sw_param.m_22khz_signal == eDVBSatelliteSwitchParameters::HILO && !(band&1) ) )
355                                 tone = iDVBFrontend::toneOff;
356
357                         eSecCommandList sec_sequence;
358
359                         if (di_param.m_diseqc_mode >= eDVBSatelliteDiseqcParameters::V1_0)
360                         {
361                                 if ( di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO )
362                                         csw = 0xF0 | (csw << 2);
363
364                                 if (di_param.m_committed_cmd <= eDVBSatelliteDiseqcParameters::SENDNO)
365                                         csw |= band;
366
367                                 bool send_csw =
368                                         (di_param.m_committed_cmd != eDVBSatelliteDiseqcParameters::SENDNO);
369                                 bool changed_csw = send_csw && csw != lastcsw;
370
371                                 bool send_ucsw =
372                                         (di_param.m_uncommitted_cmd && di_param.m_diseqc_mode > eDVBSatelliteDiseqcParameters::V1_0);
373                                 bool changed_ucsw = send_ucsw && ucsw != lastucsw;
374
375                                 bool send_burst =
376                                         (di_param.m_toneburst_param != eDVBSatelliteDiseqcParameters::NO);
377                                 bool changed_burst = send_burst && toneburst != lastToneburst;
378
379                                 int send_mask = 0; /*
380                                         1 must send csw
381                                         2 must send ucsw
382                                         4 send toneburst first
383                                         8 send toneburst at end */
384                                 if (changed_burst) // toneburst first and toneburst changed
385                                 {
386                                         if (di_param.m_command_order&1)
387                                         {
388                                                 send_mask |= 4;
389                                                 if ( send_csw )
390                                                         send_mask |= 1;
391                                                 if ( send_ucsw )
392                                                         send_mask |= 2;
393                                         }
394                                         else
395                                                 send_mask |= 8;
396                                 }
397                                 if (changed_ucsw)
398                                 {
399                                         send_mask |= 2;
400                                         if ((di_param.m_command_order&4) && send_csw)
401                                                 send_mask |= 1;
402                                         if (di_param.m_command_order==4 && send_burst)
403                                                 send_mask |= 8;
404                                 }
405                                 if (changed_csw) 
406                                 {
407                                         if ( di_param.m_use_fast
408                                                 && di_param.m_committed_cmd < eDVBSatelliteDiseqcParameters::SENDNO
409                                                 && (lastcsw & 0xF0)
410                                                 && ((csw / 4) == (lastcsw / 4)) )
411                                                 eDebug("dont send committed cmd (fast diseqc)");
412                                         else
413                                         {
414                                                 send_mask |= 1;
415                                                 if (!(di_param.m_command_order&4) && send_ucsw)
416                                                         send_mask |= 2;
417                                                 if (!(di_param.m_command_order&1) && send_burst)
418                                                         send_mask |= 8;
419                                         }
420                                 }
421
422 #if 0
423                                 eDebugNoNewLine("sendmask: ");
424                                 for (int i=3; i >= 0; --i)
425                                         if ( send_mask & (1<<i) )
426                                                 eDebugNoNewLine("1");
427                                         else
428                                                 eDebugNoNewLine("0");
429                                 eDebug("");
430 #endif
431
432                                 if (doSetVoltageToneFrontend)
433                                 {
434                                         int RotorCmd=-1;
435                                         bool useGotoXX = false;
436                                         if ( di_param.m_diseqc_mode == eDVBSatelliteDiseqcParameters::V1_2
437                                                 && !sat.no_rotor_command_on_tune
438                                                 && allowDiseqc1_2 )
439                                         {
440                                                 if (sw_param.m_rotorPosNum) // we have stored rotor pos?
441                                                         RotorCmd=sw_param.m_rotorPosNum;
442                                                 else  // we must calc gotoxx cmd
443                                                 {
444                                                         eDebug("Entry for %d,%d? not in Rotor Table found... i try gotoXX?", sat.orbital_position / 10, sat.orbital_position % 10 );
445                                                         useGotoXX = true;
446         
447                                                         double  SatLon = abs(sat.orbital_position)/10.00,
448                                                                         SiteLat = rotor_param.m_gotoxx_parameters.m_latitude,
449                                                                         SiteLon = rotor_param.m_gotoxx_parameters.m_longitude;
450         
451                                                         if ( rotor_param.m_gotoxx_parameters.m_la_direction == eDVBSatelliteRotorParameters::SOUTH )
452                                                                 SiteLat = -SiteLat;
453         
454                                                         if ( rotor_param.m_gotoxx_parameters.m_lo_direction == eDVBSatelliteRotorParameters::WEST )
455                                                                 SiteLon = 360 - SiteLon;
456         
457                                                         eDebug("siteLatitude = %lf, siteLongitude = %lf, %lf degrees", SiteLat, SiteLon, SatLon );
458                                                         double satHourAngle =
459                                                                 calcSatHourangle( SatLon, SiteLat, SiteLon );
460                                                         eDebug("PolarmountHourAngle=%lf", satHourAngle );
461         
462                                                         static int gotoXTable[10] =
463                                                                 { 0x00, 0x02, 0x03, 0x05, 0x06, 0x08, 0x0A, 0x0B, 0x0D, 0x0E };
464         
465                                                         if (SiteLat >= 0) // Northern Hemisphere
466                                                         {
467                                                                 int tmp=(int)round( fabs( 180 - satHourAngle ) * 10.0 );
468                                                                 RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
469         
470                                                                 if (satHourAngle < 180) // the east
471                                                                         RotorCmd |= 0xE000;
472                                                                 else                                    // west
473                                                                         RotorCmd |= 0xD000;
474                                                         }
475                                                         else // Southern Hemisphere
476                                                         {
477                                                                 if (satHourAngle < 180) // the east
478                                                                 {
479                                                                         int tmp=(int)round( fabs( satHourAngle ) * 10.0 );
480                                                                         RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
481                                                                         RotorCmd |= 0xD000;
482                                                                 }
483                                                                 else // west
484                                                                 {
485                                                                         int tmp=(int)round( fabs( 360 - satHourAngle ) * 10.0 );
486                                                                         RotorCmd = (tmp/10)*0x10 + gotoXTable[ tmp % 10 ];
487                                                                         RotorCmd |= 0xE000;
488                                                                 }
489                                                         }
490                                                         eDebug("RotorCmd = %04x", RotorCmd);
491                                                 }
492                                         }
493
494                                         if ( send_mask )
495                                         {
496                                                 int vlt = iDVBFrontend::voltageOff;
497                                                 eSecCommand::pair compare;
498                                                 compare.steps = +3;
499                                                 compare.tone = iDVBFrontend::toneOff;
500                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
501                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, iDVBFrontend::toneOff) );
502                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
503
504                                                 if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
505                                                 {
506                                                         if (rotor_param.m_inputpower_parameters.m_use)
507                                                                 vlt = VOLTAGE(18);  // in input power mode set 18V for measure input power
508                                                         else
509                                                                 vlt = VOLTAGE(13);  // in normal mode start turning with 13V
510                                                 }
511                                                 else
512                                                         vlt = voltage;
513
514                                                 // check if voltage is already correct..
515                                                 compare.voltage = vlt;
516                                                 compare.steps = +7;
517                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
518
519                                                 // check if voltage is disabled
520                                                 compare.voltage = iDVBFrontend::voltageOff;
521                                                 compare.steps = +4;
522                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
523
524                                                 // voltage is changed... use DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_SWITCH_CMDS
525                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, vlt) );
526                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_SWITCH_CMDS]) );
527                                                 sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +3) );
528
529                                                 // voltage was disabled.. use DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS
530                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, vlt) );
531                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS]) );
532
533                                                 for (int seq_repeat = 0; seq_repeat < (di_param.m_seq_repeat?2:1); ++seq_repeat)
534                                                 {
535                                                         if ( send_mask & 4 )
536                                                         {
537                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_TONEBURST, di_param.m_toneburst_param) );
538                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_TONEBURST]) );
539                                                         }
540
541                                                         int loops=0;
542
543                                                         if ( send_mask & 1 )
544                                                                 ++loops;
545                                                         if ( send_mask & 2 )
546                                                                 ++loops;
547
548                                                         loops <<= di_param.m_repeats;
549
550                                                         for ( int i = 0; i < loops;)  // fill commands...
551                                                         {
552                                                                 eDVBDiseqcCommand diseqc;
553                                                                 memset(diseqc.data, 0, MAX_DISEQC_LENGTH);
554                                                                 diseqc.len = 4;
555                                                                 diseqc.data[0] = i ? 0xE1 : 0xE0;
556                                                                 diseqc.data[1] = 0x10;
557                                                                 if ( (send_mask & 2) && (di_param.m_command_order & 4) )
558                                                                 {
559                                                                         diseqc.data[2] = 0x39;
560                                                                         diseqc.data[3] = ucsw;
561                                                                 }
562                                                                 else if ( send_mask & 1 )
563                                                                 {
564                                                                         diseqc.data[2] = 0x38;
565                                                                         diseqc.data[3] = csw;
566                                                                 }
567                                                                 else  // no committed command confed.. so send uncommitted..
568                                                                 {
569                                                                         diseqc.data[2] = 0x39;
570                                                                         diseqc.data[3] = ucsw;
571                                                                 }
572                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
573
574                                                                 i++;
575                                                                 if ( i < loops )
576                                                                 {
577                                                                         int cmd=0;
578                                                                         if (diseqc.data[2] == 0x38 && (send_mask & 2))
579                                                                                 cmd=0x39;
580                                                                         else if (diseqc.data[2] == 0x39 && (send_mask & 1))
581                                                                                 cmd=0x38;
582                                                                         int tmp = m_params[DELAY_BETWEEN_DISEQC_REPEATS];
583                                                                         if (cmd)
584                                                                         {
585                                                                                 int delay = di_param.m_repeats ? (tmp - 54) / 2 : tmp;  // standard says 100msek between two repeated commands
586                                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, delay) );
587                                                                                 diseqc.data[2]=cmd;
588                                                                                 diseqc.data[3]=(cmd==0x38) ? csw : ucsw;
589                                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
590                                                                                 ++i;
591                                                                                 if ( i < loops )
592                                                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, delay ) );
593                                                                                 else
594                                                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_LAST_DISEQC_CMD]) );
595                                                                         }
596                                                                         else  // delay 120msek when no command is in repeat gap
597                                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, tmp) );
598                                                                 }
599                                                                 else
600                                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_LAST_DISEQC_CMD]) );
601                                                         }
602
603                                                         if ( send_mask & 8 )  // toneburst at end of sequence
604                                                         {
605                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_TONEBURST, di_param.m_toneburst_param) );
606                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_TONEBURST]) );
607                                                         }
608                                                 }
609                                         }
610
611                                         eDebug("RotorCmd %02x, lastRotorCmd %02lx", RotorCmd, lastRotorCmd);
612                                         if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
613                                         {
614                                                 eSecCommand::pair compare;
615                                                 if (!send_mask)
616                                                 {
617                                                         compare.steps = +3;
618                                                         compare.tone = iDVBFrontend::toneOff;
619                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
620                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, iDVBFrontend::toneOff) );
621                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
622
623                                                         compare.voltage = iDVBFrontend::voltageOff;
624                                                         compare.steps = +4;
625                                                         // the next is a check if voltage is switched off.. then we first set a voltage :)
626                                                         // else we set voltage after all diseqc stuff..
627                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_NOT_VOLTAGE_GOTO, compare) );
628
629                                                         if (rotor_param.m_inputpower_parameters.m_use)
630                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) ); // set 18V for measure input power
631                                                         else
632                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) ); // in normal mode start turning with 13V
633
634                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_MOTOR_CMD]) ); // wait 750ms when voltage was disabled
635                                                         sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +9) );  // no need to send stop rotor cmd and recheck voltage
636                                                 }
637                                                 else
638                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_BETWEEN_SWITCH_AND_MOTOR_CMD]) ); // wait 700ms when diseqc changed
639
640                                                 eDVBDiseqcCommand diseqc;
641                                                 memset(diseqc.data, 0, MAX_DISEQC_LENGTH);
642                                                 diseqc.len = 3;
643                                                 diseqc.data[0] = 0xE0;
644                                                 diseqc.data[1] = 0x31;  // positioner
645                                                 diseqc.data[2] = 0x60;  // stop
646                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_ROTORPOS_VALID_GOTO, +5) );
647                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
648                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
649                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
650                                                 // wait 150msec after send rotor stop cmd
651                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_MOTOR_STOP_CMD]) );
652
653                                                 diseqc.data[0] = 0xE0;
654                                                 diseqc.data[1] = 0x31;          // positioner
655                                                 if ( useGotoXX )
656                                                 {
657                                                         diseqc.len = 5;
658                                                         diseqc.data[2] = 0x6E;  // drive to angular position
659                                                         diseqc.data[3] = ((RotorCmd & 0xFF00) / 0x100);
660                                                         diseqc.data[4] = RotorCmd & 0xFF;
661                                                 }
662                                                 else
663                                                 {
664                                                         diseqc.len = 4;
665                                                         diseqc.data[2] = 0x6B;  // goto stored sat position
666                                                         diseqc.data[3] = RotorCmd;
667                                                         diseqc.data[4] = 0x00;
668                                                 }
669
670                                                 if ( rotor_param.m_inputpower_parameters.m_use )
671                                                 { // use measure rotor input power to detect rotor state
672                                                         bool turn_fast = need_turn_fast(rotor_param.m_inputpower_parameters.m_turning_speed);
673                                                         eSecCommand::rotor cmd;
674                                                         eSecCommand::pair compare;
675                                                         compare.voltage = VOLTAGE(18);
676                                                         compare.steps = +3;
677                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
678                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
679 // measure idle power values
680                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) );  // wait 150msec after voltage change
681                                                         sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 1) );
682                                                         compare.val = 1;
683                                                         compare.steps = -2;
684                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
685                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) );
686                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) );  // wait 150msec before measure
687                                                         sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 0) );
688                                                         compare.val = 0;
689                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
690 ////////////////////////////
691                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeStatic) );
692                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_DISEQC_RETRYS, m_params[MOTOR_COMMAND_RETRIES]) );  // 2 retries
693                                                         sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
694                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
695                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, 40) );  // 2 seconds rotor start timout
696 // rotor start loop
697                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );  // 50msec delay
698                                                         sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
699                                                         cmd.direction=1;  // check for running rotor
700                                                         cmd.deltaA=rotor_param.m_inputpower_parameters.m_delta;
701                                                         cmd.steps=+5;
702                                                         cmd.okcount=0;
703                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) );  // check if rotor has started
704                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) );  // timeout .. we assume now the rotor is already at the correct position
705                                                         sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) );  // goto loop start
706                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_NO_MORE_ROTOR_DISEQC_RETRYS_GOTO, turn_fast ? 9 : 8 ) );  // timeout .. we assume now the rotor is already at the correct position  
707                                                         sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -8) );  // goto loop start
708 ////////////////////
709                                                         if (turn_fast)
710                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) );
711                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, m_params[MOTOR_RUNNING_TIMEOUT]*20) );  // 2 minutes running timeout
712 // rotor running loop
713                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );  // wait 50msec
714                                                         sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
715                                                         cmd.direction=0;  // check for stopped rotor
716                                                         cmd.steps=+3;
717                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) );
718                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) );  // timeout ? this should never happen
719                                                         sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) );  // running loop start
720 /////////////////////
721                                                         sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
722                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeDynamic) );
723                                                 }
724                                                 else
725                                                 {  // use normal turning mode
726                                                         doSetVoltageToneFrontend=false;
727                                                         doSetFrontend=false;
728                                                         eSecCommand::rotor cmd;
729                                                         eSecCommand::pair compare;
730                                                         compare.voltage = VOLTAGE(13);
731                                                         compare.steps = +3;
732                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
733                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
734                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MOTOR_CMD]) );  // wait 150msec after voltage change
735
736                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeStatic) );
737                                                         sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
738                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
739
740                                                         compare.voltage = voltage;
741                                                         compare.steps = +3;
742                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // correct final voltage?
743                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 2000) );  // wait 2 second before set high voltage
744                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
745
746                                                         compare.tone = tone;
747                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
748                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
749                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
750                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
751
752                                                         cmd.direction=1;  // check for running rotor
753                                                         cmd.deltaA=0;
754                                                         cmd.steps=+3;
755                                                         cmd.okcount=0;
756                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, m_params[MOTOR_RUNNING_TIMEOUT]*4) );  // 2 minutes running timeout
757                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 250) );  // 250msec delay
758                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_TUNER_LOCKED_GOTO, cmd ) );
759                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +3 ) ); 
760                                                         sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -3) );  // goto loop start
761                                                         sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
762                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeDynamic) );
763                                                 }
764                                                 frontend.setData(eDVBFrontend::NEW_ROTOR_CMD, RotorCmd);
765                                                 frontend.setData(eDVBFrontend::NEW_ROTOR_POS, sat.orbital_position);
766                                         }
767                                 }
768                         }
769                         else
770                                 csw = band;
771
772                         frontend.setData(eDVBFrontend::CSW, csw);
773                         frontend.setData(eDVBFrontend::UCSW, ucsw);
774                         frontend.setData(eDVBFrontend::TONEBURST, di_param.m_toneburst_param);
775
776                         if (doSetVoltageToneFrontend)
777                         {
778                                 eSecCommand::pair compare;
779                                 compare.voltage = voltage;
780                                 compare.steps = +3;
781                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // voltage already correct ?
782                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
783                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_FINAL_VOLTAGE_CHANGE]) );
784                                 compare.tone = tone;
785                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
786                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
787                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
788                         }
789
790                         if (doSetFrontend)
791                         {
792                                 sec_sequence.push_back( eSecCommand(eSecCommand::START_TUNE_TIMEOUT, tunetimeout) );
793                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
794                         }
795                         frontend.setSecSequence(sec_sequence);
796
797                         return 0;
798                 }
799         }
800
801         eDebug("found no useable satellite configuration for orbital position (%d)", sat.orbital_position );
802         return -1;
803 }
804
805 RESULT eDVBSatelliteEquipmentControl::clear()
806 {
807         eSecDebug("eDVBSatelliteEquipmentControl::clear()");
808         for (int i=0; i <= m_lnbidx; ++i)
809         {
810                 m_lnbs[i].m_satellites.clear();
811                 m_lnbs[i].slot_mask = 0;
812         }
813         m_lnbidx=-1;
814
815         m_not_linked_slot_mask=0;
816
817         //reset some tuner configuration
818         for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it)
819         {
820                 long tmp;
821                 if (!strcmp(it->m_frontend->getDescription(), "BCM4501 (internal)") && !it->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, tmp) && tmp != -1)
822                 {
823                         FILE *f=fopen("/proc/stb/tsmux/lnb_b_input", "w");
824                         if (!f || fwrite("B", 1, 1, f) != 1)
825                                 eDebug("set /proc/stb/tsmux/lnb_b_input to B failed!! (%m)");
826                         else
827                         {
828                                 eDebug("set /proc/stb/tsmux/lnb_b_input to B OK");
829                                 fclose(f);
830                         }
831                 }
832                 it->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, -1);
833                 it->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, -1);
834                 it->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, -1);
835                 it->m_frontend->setData(eDVBFrontend::ROTOR_POS, -1);
836                 it->m_frontend->setData(eDVBFrontend::ROTOR_CMD, -1);
837         }
838
839         return 0;
840 }
841
842 /* LNB Specific Parameters */
843 RESULT eDVBSatelliteEquipmentControl::addLNB()
844 {
845         if ( (m_lnbidx+1) < (int)(sizeof(m_lnbs) / sizeof(eDVBSatelliteLNBParameters)))
846                 m_curSat=m_lnbs[++m_lnbidx].m_satellites.end();
847         else
848         {
849                 eDebug("no more LNB free... cnt is %d", m_lnbidx);
850                 return -ENOSPC;
851         }
852         eSecDebug("eDVBSatelliteEquipmentControl::addLNB(%d)", m_lnbidx-1);
853         return 0;
854 }
855
856 RESULT eDVBSatelliteEquipmentControl::setLNBSlotMask(int slotmask)
857 {
858         eSecDebug("eDVBSatelliteEquipmentControl::setLNBSlotMask(%d)", slotmask);
859         if ( currentLNBValid() )
860                 m_lnbs[m_lnbidx].slot_mask = slotmask;
861         else
862                 return -ENOENT;
863         return 0;
864 }
865
866 RESULT eDVBSatelliteEquipmentControl::setLNBLOFL(int lofl)
867 {
868         eSecDebug("eDVBSatelliteEquipmentControl::setLNBLOFL(%d)", lofl);
869         if ( currentLNBValid() )
870                 m_lnbs[m_lnbidx].m_lof_lo = lofl;
871         else
872                 return -ENOENT;
873         return 0;
874 }
875
876 RESULT eDVBSatelliteEquipmentControl::setLNBLOFH(int lofh)
877 {
878         eSecDebug("eDVBSatelliteEquipmentControl::setLNBLOFH(%d)", lofh);
879         if ( currentLNBValid() )
880                 m_lnbs[m_lnbidx].m_lof_hi = lofh;
881         else
882                 return -ENOENT;
883         return 0;
884 }
885
886 RESULT eDVBSatelliteEquipmentControl::setLNBThreshold(int threshold)
887 {
888         eSecDebug("eDVBSatelliteEquipmentControl::setLNBThreshold(%d)", threshold);
889         if ( currentLNBValid() )
890                 m_lnbs[m_lnbidx].m_lof_threshold = threshold;
891         else
892                 return -ENOENT;
893         return 0;
894 }
895
896 RESULT eDVBSatelliteEquipmentControl::setLNBIncreasedVoltage(bool onoff)
897 {
898         eSecDebug("eDVBSatelliteEquipmentControl::setLNBIncreasedVoltage(%d)", onoff);
899         if ( currentLNBValid() )
900                 m_lnbs[m_lnbidx].m_increased_voltage = onoff;
901         else
902                 return -ENOENT;
903         return 0;
904 }
905
906 /* DiSEqC Specific Parameters */
907 RESULT eDVBSatelliteEquipmentControl::setDiSEqCMode(int diseqcmode)
908 {
909         eSecDebug("eDVBSatelliteEquipmentControl::setDiSEqcMode(%d)", diseqcmode);
910         if ( currentLNBValid() )
911                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_diseqc_mode = (eDVBSatelliteDiseqcParameters::t_diseqc_mode)diseqcmode;
912         else
913                 return -ENOENT;
914         return 0;
915 }
916
917 RESULT eDVBSatelliteEquipmentControl::setToneburst(int toneburst)
918 {
919         eSecDebug("eDVBSatelliteEquipmentControl::setToneburst(%d)", toneburst);
920         if ( currentLNBValid() )
921                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_toneburst_param = (eDVBSatelliteDiseqcParameters::t_toneburst_param)toneburst;
922         else
923                 return -ENOENT;
924         return 0;
925 }
926
927 RESULT eDVBSatelliteEquipmentControl::setRepeats(int repeats)
928 {
929         eSecDebug("eDVBSatelliteEquipmentControl::setRepeats(%d)", repeats);
930         if ( currentLNBValid() )
931                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_repeats=repeats;
932         else
933                 return -ENOENT;
934         return 0;
935 }
936
937 RESULT eDVBSatelliteEquipmentControl::setCommittedCommand(int command)
938 {
939         eSecDebug("eDVBSatelliteEquipmentControl::setCommittedCommand(%d)", command);
940         if ( currentLNBValid() )
941                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_committed_cmd=command;
942         else
943                 return -ENOENT;
944         return 0;
945 }
946
947 RESULT eDVBSatelliteEquipmentControl::setUncommittedCommand(int command)
948 {
949         eSecDebug("eDVBSatelliteEquipmentControl::setUncommittedCommand(%d)", command);
950         if ( currentLNBValid() )
951                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_uncommitted_cmd = command;
952         else
953                 return -ENOENT;
954         return 0;
955 }
956
957 RESULT eDVBSatelliteEquipmentControl::setCommandOrder(int order)
958 {
959         eSecDebug("eDVBSatelliteEquipmentControl::setCommandOrder(%d)", order);
960         if ( currentLNBValid() )
961                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_command_order=order;
962         else
963                 return -ENOENT;
964         return 0;
965 }
966
967 RESULT eDVBSatelliteEquipmentControl::setFastDiSEqC(bool onoff)
968 {
969         eSecDebug("eDVBSatelliteEquipmentControl::setFastDiSEqc(%d)", onoff);
970         if ( currentLNBValid() )
971                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_use_fast=onoff;
972         else
973                 return -ENOENT;
974         return 0;
975 }
976
977 RESULT eDVBSatelliteEquipmentControl::setSeqRepeat(bool onoff)
978 {
979         eSecDebug("eDVBSatelliteEquipmentControl::setSeqRepeat(%d)", onoff);
980         if ( currentLNBValid() )
981                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_seq_repeat = onoff;
982         else
983                 return -ENOENT;
984         return 0;
985 }
986
987 /* Rotor Specific Parameters */
988 RESULT eDVBSatelliteEquipmentControl::setLongitude(float longitude)
989 {
990         eSecDebug("eDVBSatelliteEquipmentControl::setLongitude(%f)", longitude);
991         if ( currentLNBValid() )
992                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_longitude=longitude;
993         else
994                 return -ENOENT;
995         return 0;
996 }
997
998 RESULT eDVBSatelliteEquipmentControl::setLatitude(float latitude)
999 {
1000         eSecDebug("eDVBSatelliteEquipmentControl::setLatitude(%f)", latitude);
1001         if ( currentLNBValid() )
1002                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_latitude=latitude;
1003         else
1004                 return -ENOENT;
1005         return 0;
1006 }
1007
1008 RESULT eDVBSatelliteEquipmentControl::setLoDirection(int direction)
1009 {
1010         eSecDebug("eDVBSatelliteEquipmentControl::setLoDirection(%d)", direction);
1011         if ( currentLNBValid() )
1012                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_lo_direction=direction;
1013         else
1014                 return -ENOENT;
1015         return 0;
1016 }
1017
1018 RESULT eDVBSatelliteEquipmentControl::setLaDirection(int direction)
1019 {
1020         eSecDebug("eDVBSatelliteEquipmentControl::setLaDirection(%d)", direction);
1021         if ( currentLNBValid() )
1022                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_la_direction=direction;
1023         else
1024                 return -ENOENT;
1025         return 0;
1026 }
1027
1028 RESULT eDVBSatelliteEquipmentControl::setUseInputpower(bool onoff)
1029 {
1030         eSecDebug("eDVBSatelliteEquipmentControl::setUseInputpower(%d)", onoff);
1031         if ( currentLNBValid() )
1032                 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_use=onoff;
1033         else
1034                 return -ENOENT;
1035         return 0;
1036 }
1037
1038 RESULT eDVBSatelliteEquipmentControl::setInputpowerDelta(int delta)
1039 {
1040         eSecDebug("eDVBSatelliteEquipmentControl::setInputpowerDelta(%d)", delta);
1041         if ( currentLNBValid() )
1042                 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_delta=delta;
1043         else
1044                 return -ENOENT;
1045         return 0;
1046 }
1047
1048 /* Satellite Specific Parameters */
1049 RESULT eDVBSatelliteEquipmentControl::addSatellite(int orbital_position)
1050 {
1051         eSecDebug("eDVBSatelliteEquipmentControl::addSatellite(%d)", orbital_position);
1052         if ( currentLNBValid() )
1053         {
1054                 std::map<int, eDVBSatelliteSwitchParameters>::iterator it =
1055                         m_lnbs[m_lnbidx].m_satellites.find(orbital_position);
1056                 if ( it == m_lnbs[m_lnbidx].m_satellites.end() )
1057                 {
1058                         std::pair<std::map<int, eDVBSatelliteSwitchParameters>::iterator, bool > ret =
1059                                 m_lnbs[m_lnbidx].m_satellites.insert(
1060                                         std::pair<int, eDVBSatelliteSwitchParameters>(orbital_position, eDVBSatelliteSwitchParameters())
1061                                 );
1062                         if ( ret.second )
1063                                 m_curSat = ret.first;
1064                         else
1065                                 return -ENOMEM;
1066                 }
1067                 else
1068                         return -EEXIST;
1069         }
1070         else
1071                 return -ENOENT;
1072         return 0;
1073 }
1074
1075 RESULT eDVBSatelliteEquipmentControl::setVoltageMode(int mode)
1076 {
1077         eSecDebug("eDVBSatelliteEquipmentControl::setVoltageMode(%d)", mode);
1078         if ( currentLNBValid() && m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1079                 m_curSat->second.m_voltage_mode = (eDVBSatelliteSwitchParameters::t_voltage_mode)mode;
1080         else
1081                 return -ENOENT;
1082         return 0;
1083
1084 }
1085
1086 RESULT eDVBSatelliteEquipmentControl::setToneMode(int mode)
1087 {
1088         eSecDebug("eDVBSatelliteEquipmentControl::setToneMode(%d)", mode);
1089         if ( currentLNBValid() )
1090         {
1091                 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1092                         m_curSat->second.m_22khz_signal = (eDVBSatelliteSwitchParameters::t_22khz_signal)mode;
1093                 else
1094                         return -EPERM;
1095         }
1096         else
1097                 return -ENOENT;
1098         return 0;
1099 }
1100
1101 RESULT eDVBSatelliteEquipmentControl::setRotorPosNum(int rotor_pos_num)
1102 {
1103         eSecDebug("eDVBSatelliteEquipmentControl::setRotorPosNum(%d)", rotor_pos_num);
1104         if ( currentLNBValid() )
1105         {
1106                 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1107                         m_curSat->second.m_rotorPosNum=rotor_pos_num;
1108                 else
1109                         return -EPERM;
1110         }
1111         else
1112                 return -ENOENT;
1113         return 0;
1114 }
1115
1116 RESULT eDVBSatelliteEquipmentControl::setRotorTurningSpeed(int speed)
1117 {
1118         eSecDebug("eDVBSatelliteEquipmentControl::setRotorTurningSpeed(%d)", speed);
1119         if ( currentLNBValid() )
1120                 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_turning_speed = speed;
1121         else
1122                 return -ENOENT;
1123         return 0;
1124 }
1125
1126 struct sat_compare
1127 {
1128         int orb_pos, lofl, lofh;
1129         sat_compare(int o, int lofl, int lofh)
1130                 :orb_pos(o), lofl(lofl), lofh(lofh)
1131         {}
1132         sat_compare(const sat_compare &x)
1133                 :orb_pos(x.orb_pos), lofl(x.lofl), lofh(x.lofh)
1134         {}
1135         bool operator < (const sat_compare & cmp) const
1136         {
1137                 if (orb_pos == cmp.orb_pos)
1138                 {
1139                         if ( abs(lofl-cmp.lofl) < 200000 )
1140                         {
1141                                 if (abs(lofh-cmp.lofh) < 200000)
1142                                         return false;
1143                                 return lofh<cmp.lofh;
1144                         }
1145                         return lofl<cmp.lofl;
1146                 }
1147                 return orb_pos < cmp.orb_pos;
1148         }
1149 };
1150
1151 PyObject *eDVBSatelliteEquipmentControl::get_exclusive_satellites(int tu1, int tu2)
1152 {
1153         ePyObject ret;
1154
1155         if (tu1 != tu2)
1156         {
1157                 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1158                 int cnt=0;
1159                 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it, ++cnt)
1160                 {
1161                         if (cnt == tu1)
1162                                 p1 = *it;
1163                         else if (cnt == tu2)
1164                                 p2 = *it;
1165                 }
1166
1167                 if (p1 && p2)
1168                 {
1169                         // check for linked tuners
1170
1171                         do 
1172                         {
1173                                 long tmp;
1174                                 p1->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, tmp);
1175                                 if (tmp != -1)
1176                                         p1 = (eDVBRegisteredFrontend*)tmp;
1177                                 else
1178                                         break;
1179                         }
1180                         while (true);
1181
1182                         do 
1183                         {
1184                                 long tmp;
1185                                 p2->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, tmp);
1186                                 if (tmp != -1)
1187                                         p2 = (eDVBRegisteredFrontend*)tmp;
1188                                 else
1189                                         break;
1190                         }
1191                         while (true);
1192
1193                         if (p1 != p2)
1194                         {
1195                                 long tmp1=-1;
1196                                 long tmp2=-1;
1197                                 // check for rotor dependency
1198                                 p1->m_frontend->getData(eDVBFrontend::SATPOS_DEPENDS_PTR, tmp1);
1199                                 if (tmp1 != -1)
1200                                         p1 = (eDVBRegisteredFrontend*)tmp1;
1201                                 p2->m_frontend->getData(eDVBFrontend::SATPOS_DEPENDS_PTR, tmp2);
1202                                 if (tmp2 != -1)
1203                                         p2 = (eDVBRegisteredFrontend*)tmp2;
1204                                 if (p1 != p2)
1205                                 {
1206                                         int tu1_mask = 1 << p1->m_frontend->getSlotID(),
1207                                                 tu2_mask = 1 << p2->m_frontend->getSlotID();
1208                                         std::set<sat_compare> tu1sats, tu2sats;
1209                                         std::list<sat_compare> tu1difference, tu2difference;
1210                                         std::insert_iterator<std::list<sat_compare> > insert1(tu1difference, tu1difference.begin()),
1211                                                 insert2(tu2difference, tu2difference.begin());
1212                                         for (int idx=0; idx <= m_lnbidx; ++idx )
1213                                         {
1214                                                 eDVBSatelliteLNBParameters &lnb_param = m_lnbs[idx];
1215                                                 for (std::map<int, eDVBSatelliteSwitchParameters>::iterator sit(lnb_param.m_satellites.begin());
1216                                                         sit != lnb_param.m_satellites.end(); ++sit)
1217                                                 {
1218                                                         if ( lnb_param.slot_mask & tu1_mask )
1219                                                                 tu1sats.insert(sat_compare(sit->first, lnb_param.m_lof_lo, lnb_param.m_lof_hi));
1220                                                         if ( lnb_param.slot_mask & tu2_mask )
1221                                                                 tu2sats.insert(sat_compare(sit->first, lnb_param.m_lof_lo, lnb_param.m_lof_hi));
1222                                                 }
1223                                         }
1224                                         std::set_difference(tu1sats.begin(), tu1sats.end(),
1225                                                 tu2sats.begin(), tu2sats.end(),
1226                                                 insert1);
1227                                         std::set_difference(tu2sats.begin(), tu2sats.end(),
1228                                                 tu1sats.begin(), tu1sats.end(),
1229                                                 insert2);
1230                                         if (!tu1sats.empty() || !tu2sats.empty())
1231                                         {
1232                                                 int idx=0;
1233                                                 ret = PyList_New(2+tu1difference.size()+tu2difference.size());
1234
1235                                                 PyList_SET_ITEM(ret, idx++, PyInt_FromLong(tu1difference.size()));
1236                                                 for(std::list<sat_compare>::iterator it(tu1difference.begin()); it != tu1difference.end(); ++it)
1237                                                         PyList_SET_ITEM(ret, idx++, PyInt_FromLong(it->orb_pos));
1238
1239                                                 PyList_SET_ITEM(ret, idx++, PyInt_FromLong(tu2difference.size()));
1240                                                 for(std::list<sat_compare>::iterator it(tu2difference.begin()); it != tu2difference.end(); ++it)
1241                                                         PyList_SET_ITEM(ret, idx++, PyInt_FromLong(it->orb_pos));
1242                                         }
1243                                 }
1244                         }
1245                 }
1246         }
1247         if (!ret)
1248         {
1249                 ret = PyList_New(2);
1250                 PyList_SET_ITEM(ret, 0, PyInt_FromLong(0));
1251                 PyList_SET_ITEM(ret, 1, PyInt_FromLong(0));
1252         }
1253         return ret;
1254 }
1255
1256 RESULT eDVBSatelliteEquipmentControl::setTunerLinked(int tu1, int tu2)
1257 {
1258         eSecDebug("eDVBSatelliteEquipmentControl::setTunerLinked(%d, %d)", tu1, tu2);
1259         if (tu1 != tu2)
1260         {
1261                 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1262
1263                 int cnt=0;
1264                 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it, ++cnt)
1265                 {
1266                         if (cnt == tu1)
1267                                 p1 = *it;
1268                         else if (cnt == tu2)
1269                                 p2 = *it;
1270                 }
1271                 if (p1 && p2)
1272                 {
1273                         p1->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, (long)p2);
1274                         p2->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, (long)p1);
1275                         if (!strcmp(p1->m_frontend->getDescription(), p2->m_frontend->getDescription()) && !strcmp(p1->m_frontend->getDescription(), "BCM4501 (internal)"))
1276                         {
1277                                 FILE *f=fopen("/proc/stb/tsmux/lnb_b_input", "w");
1278                                 if (!f || fwrite("A", 1, 1, f) != 1)
1279                                         eDebug("set /proc/stb/tsmux/lnb_b_input to A failed!! (%m)");
1280                                 else
1281                                 {
1282                                         eDebug("set /proc/stb/tsmux/lnb_b_input to A OK");
1283                                         fclose(f);
1284                                 }
1285                         }
1286                         return 0;
1287                 }
1288         }
1289         return -1;
1290 }
1291
1292 RESULT eDVBSatelliteEquipmentControl::setTunerDepends(int tu1, int tu2)
1293 {
1294         eSecDebug("eDVBSatelliteEquipmentControl::setTunerDepends(%d, %d)", tu1, tu2);
1295         if (tu1 == tu2)
1296                 return -1;
1297
1298         eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1299
1300         int cnt=0;
1301         for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it, ++cnt)
1302         {
1303                 if (cnt == tu1)
1304                         p1 = *it;
1305                 else if (cnt == tu2)
1306                         p2 = *it;
1307         }
1308         if (p1 && p2)
1309         {
1310                 p1->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p2);
1311                 p2->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p1);
1312                 return 0;
1313         }
1314         return -1;
1315 }
1316
1317 void eDVBSatelliteEquipmentControl::setSlotNotLinked(int slot_no)
1318 {
1319         eSecDebug("eDVBSatelliteEquipmentControl::setSlotNotLinked(%d)", slot_no);
1320         m_not_linked_slot_mask |= (1 << slot_no);
1321 }
1322
1323 bool eDVBSatelliteEquipmentControl::isRotorMoving()
1324 {
1325         return m_rotorMoving;
1326 }
1327
1328 void eDVBSatelliteEquipmentControl::setRotorMoving(bool b)
1329 {
1330         m_rotorMoving=b;
1331 }