fix: comparison is always false due to limited range of data type
[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 = eDVBLocalTimeHandler::getInstance()->nowTime();
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)
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                                                                 diseqc.len = 4;
554                                                                 diseqc.data[0] = i ? 0xE1 : 0xE0;
555                                                                 diseqc.data[1] = 0x10;
556                                                                 if ( (send_mask & 2) && (di_param.m_command_order & 4) )
557                                                                 {
558                                                                         diseqc.data[2] = 0x39;
559                                                                         diseqc.data[3] = ucsw;
560                                                                 }
561                                                                 else if ( send_mask & 1 )
562                                                                 {
563                                                                         diseqc.data[2] = 0x38;
564                                                                         diseqc.data[3] = csw;
565                                                                 }
566                                                                 else  // no committed command confed.. so send uncommitted..
567                                                                 {
568                                                                         diseqc.data[2] = 0x39;
569                                                                         diseqc.data[3] = ucsw;
570                                                                 }
571                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
572
573                                                                 i++;
574                                                                 if ( i < loops )
575                                                                 {
576                                                                         int cmd=0;
577                                                                         if (diseqc.data[2] == 0x38 && (send_mask & 2))
578                                                                                 cmd=0x39;
579                                                                         else if (diseqc.data[2] == 0x39 && (send_mask & 1))
580                                                                                 cmd=0x38;
581                                                                         int tmp = m_params[DELAY_BETWEEN_DISEQC_REPEATS];
582                                                                         if (cmd)
583                                                                         {
584                                                                                 int delay = di_param.m_repeats ? (tmp - 54) / 2 : tmp;  // standard says 100msek between two repeated commands
585                                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, delay) );
586                                                                                 diseqc.data[2]=cmd;
587                                                                                 diseqc.data[3]=(cmd==0x38) ? csw : ucsw;
588                                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
589                                                                                 ++i;
590                                                                                 if ( i < loops )
591                                                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, delay ) );
592                                                                                 else
593                                                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_LAST_DISEQC_CMD]) );
594                                                                         }
595                                                                         else  // delay 120msek when no command is in repeat gap
596                                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, tmp) );
597                                                                 }
598                                                                 else
599                                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_LAST_DISEQC_CMD]) );
600                                                         }
601
602                                                         if ( send_mask & 8 )  // toneburst at end of sequence
603                                                         {
604                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_TONEBURST, di_param.m_toneburst_param) );
605                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_TONEBURST]) );
606                                                         }
607                                                 }
608                                         }
609
610                                         eDebug("RotorCmd %02x, lastRotorCmd %02lx", RotorCmd, lastRotorCmd);
611                                         if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
612                                         {
613                                                 eSecCommand::pair compare;
614                                                 if (!send_mask)
615                                                 {
616                                                         compare.steps = +3;
617                                                         compare.tone = iDVBFrontend::toneOff;
618                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
619                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, iDVBFrontend::toneOff) );
620                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
621
622                                                         compare.voltage = iDVBFrontend::voltageOff;
623                                                         compare.steps = +4;
624                                                         // the next is a check if voltage is switched off.. then we first set a voltage :)
625                                                         // else we set voltage after all diseqc stuff..
626                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_NOT_VOLTAGE_GOTO, compare) );
627
628                                                         if (rotor_param.m_inputpower_parameters.m_use)
629                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) ); // set 18V for measure input power
630                                                         else
631                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) ); // in normal mode start turning with 13V
632
633                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_MOTOR_CMD]) ); // wait 750ms when voltage was disabled
634                                                         sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +9) );  // no need to send stop rotor cmd and recheck voltage
635                                                 }
636                                                 else
637                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_BETWEEN_SWITCH_AND_MOTOR_CMD]) ); // wait 700ms when diseqc changed
638
639                                                 eDVBDiseqcCommand diseqc;
640                                                 diseqc.len = 3;
641                                                 diseqc.data[0] = 0xE0;
642                                                 diseqc.data[1] = 0x31;  // positioner
643                                                 diseqc.data[2] = 0x60;  // stop
644                                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_ROTORPOS_VALID_GOTO, +5) );
645                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
646                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
647                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
648                                                 // wait 150msec after send rotor stop cmd
649                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_MOTOR_STOP_CMD]) );
650
651                                                 diseqc.data[0] = 0xE0;
652                                                 diseqc.data[1] = 0x31;          // positioner
653                                                 if ( useGotoXX )
654                                                 {
655                                                         diseqc.len = 5;
656                                                         diseqc.data[2] = 0x6E;  // drive to angular position
657                                                         diseqc.data[3] = ((RotorCmd & 0xFF00) / 0x100);
658                                                         diseqc.data[4] = RotorCmd & 0xFF;
659                                                 }
660                                                 else
661                                                 {
662                                                         diseqc.len = 4;
663                                                         diseqc.data[2] = 0x6B;  // goto stored sat position
664                                                         diseqc.data[3] = RotorCmd;
665                                                         diseqc.data[4] = 0x00;
666                                                 }
667
668                                                 if ( rotor_param.m_inputpower_parameters.m_use )
669                                                 { // use measure rotor input power to detect rotor state
670                                                         eSecCommand::rotor cmd;
671                                                         eSecCommand::pair compare;
672                                                         compare.voltage = VOLTAGE(18);
673                                                         compare.steps = +3;
674                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
675                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
676 // measure idle power values
677                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) );  // wait 150msec after voltage change
678                                                         sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 1) );
679                                                         compare.val = 1;
680                                                         compare.steps = -2;
681                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
682                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) );
683                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) );  // wait 150msec before measure
684                                                         sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 0) );
685                                                         compare.val = 0;
686                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
687 ////////////////////////////
688                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeStatic) );
689                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_DISEQC_RETRYS, m_params[MOTOR_COMMAND_RETRIES]) );  // 2 retries
690                                                         sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
691                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
692                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, 40) );  // 2 seconds rotor start timout
693 // rotor start loop
694                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );  // 50msec delay
695                                                         sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
696                                                         cmd.direction=1;  // check for running rotor
697                                                         cmd.deltaA=rotor_param.m_inputpower_parameters.m_delta;
698                                                         cmd.steps=+5;
699                                                         cmd.okcount=0;
700                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) );  // check if rotor has started
701                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) );  // timeout .. we assume now the rotor is already at the correct position
702                                                         sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) );  // goto loop start
703                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_NO_MORE_ROTOR_DISEQC_RETRYS_GOTO, +9 ) );  // timeout .. we assume now the rotor is already at the correct position
704                                                         sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -8) );  // goto loop start
705 ////////////////////
706                                                         if (need_turn_fast(rotor_param.m_inputpower_parameters.m_turning_speed))
707                                                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) );
708                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, m_params[MOTOR_RUNNING_TIMEOUT]*20) );  // 2 minutes running timeout
709 // rotor running loop
710                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );  // wait 50msec
711                                                         sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
712                                                         cmd.direction=0;  // check for stopped rotor
713                                                         cmd.steps=+4;
714                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) );
715                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +3 ) );  // timeout ? this should never happen
716                                                         sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) );  // running loop start
717 /////////////////////
718                                                         sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
719                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeDynamic) );
720                                                 }
721                                                 else
722                                                 {  // use normal turning mode
723                                                         doSetVoltageToneFrontend=false;
724                                                         doSetFrontend=false;
725                                                         eSecCommand::rotor cmd;
726                                                         eSecCommand::pair compare;
727                                                         compare.voltage = VOLTAGE(13);
728                                                         compare.steps = +3;
729                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
730                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
731                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MOTOR_CMD]) );  // wait 150msec after voltage change
732
733                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeStatic) );
734                                                         sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
735                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
736
737                                                         compare.voltage = voltage;
738                                                         compare.steps = +3;
739                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // correct final voltage?
740                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 2000) );  // wait 2 second before set high voltage
741                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
742
743                                                         compare.tone = tone;
744                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
745                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
746                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
747                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
748
749                                                         cmd.direction=1;  // check for running rotor
750                                                         cmd.deltaA=0;
751                                                         cmd.steps=+3;
752                                                         cmd.okcount=0;
753                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, m_params[MOTOR_RUNNING_TIMEOUT]*4) );  // 2 minutes running timeout
754                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 250) );  // 250msec delay
755                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_TUNER_LOCKED_GOTO, cmd ) );
756                                                         sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +3 ) ); 
757                                                         sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -3) );  // goto loop start
758                                                         sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
759                                                         sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeDynamic) );
760                                                 }
761                                                 frontend.setData(eDVBFrontend::NEW_ROTOR_CMD, RotorCmd);
762                                                 frontend.setData(eDVBFrontend::NEW_ROTOR_POS, sat.orbital_position);
763                                         }
764                                 }
765                         }
766                         else
767                                 csw = band;
768
769                         frontend.setData(eDVBFrontend::CSW, csw);
770                         frontend.setData(eDVBFrontend::UCSW, ucsw);
771                         frontend.setData(eDVBFrontend::TONEBURST, di_param.m_toneburst_param);
772
773                         if (doSetVoltageToneFrontend)
774                         {
775                                 eSecCommand::pair compare;
776                                 compare.voltage = voltage;
777                                 compare.steps = +3;
778                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // voltage already correct ?
779                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
780                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_FINAL_VOLTAGE_CHANGE]) );
781                                 compare.tone = tone;
782                                 sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
783                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
784                                 sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE]) );
785                         }
786
787                         if (doSetFrontend)
788                         {
789                                 sec_sequence.push_back( eSecCommand(eSecCommand::START_TUNE_TIMEOUT) );
790                                 sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
791                         }
792                         frontend.setSecSequence(sec_sequence);
793
794                         return 0;
795                 }
796         }
797
798         eDebug("found no useable satellite configuration for orbital position (%d)", sat.orbital_position );
799         return -1;
800 }
801
802 RESULT eDVBSatelliteEquipmentControl::clear()
803 {
804         eSecDebug("eDVBSatelliteEquipmentControl::clear()");
805         for (int i=0; i <= m_lnbidx; ++i)
806         {
807                 m_lnbs[i].m_satellites.clear();
808                 m_lnbs[i].slot_mask = 0;
809         }
810         m_lnbidx=-1;
811
812         m_not_linked_slot_mask=0;
813
814         //reset some tuner configuration
815         for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it)
816         {
817                 long tmp;
818                 if (!strcmp(it->m_frontend->getDescription(), "BCM4501 (internal)") && !it->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, tmp) && tmp != -1)
819                 {
820                         FILE *f=fopen("/proc/stb/tsmux/lnb_b_input", "w");
821                         if (!f || fwrite("B", 1, 1, f) != 1)
822                                 eDebug("set /proc/stb/tsmux/lnb_b_input to B failed!! (%m)");
823                         else
824                         {
825                                 eDebug("set /proc/stb/tsmux/lnb_b_input to B OK");
826                                 fclose(f);
827                         }
828                 }
829                 it->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, -1);
830                 it->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, -1);
831                 it->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, -1);
832                 it->m_frontend->setData(eDVBFrontend::ROTOR_POS, -1);
833                 it->m_frontend->setData(eDVBFrontend::ROTOR_CMD, -1);
834         }
835
836         return 0;
837 }
838
839 /* LNB Specific Parameters */
840 RESULT eDVBSatelliteEquipmentControl::addLNB()
841 {
842         if ( (m_lnbidx+1) < (int)(sizeof(m_lnbs) / sizeof(eDVBSatelliteLNBParameters)))
843                 m_curSat=m_lnbs[++m_lnbidx].m_satellites.end();
844         else
845         {
846                 eDebug("no more LNB free... cnt is %d", m_lnbidx);
847                 return -ENOSPC;
848         }
849         eSecDebug("eDVBSatelliteEquipmentControl::addLNB(%d)", m_lnbidx-1);
850         return 0;
851 }
852
853 RESULT eDVBSatelliteEquipmentControl::setLNBSlotMask(int slotmask)
854 {
855         eSecDebug("eDVBSatelliteEquipmentControl::setLNBSlotMask(%d)", slotmask);
856         if ( currentLNBValid() )
857                 m_lnbs[m_lnbidx].slot_mask = slotmask;
858         else
859                 return -ENOENT;
860         return 0;
861 }
862
863 RESULT eDVBSatelliteEquipmentControl::setLNBLOFL(int lofl)
864 {
865         eSecDebug("eDVBSatelliteEquipmentControl::setLNBLOFL(%d)", lofl);
866         if ( currentLNBValid() )
867                 m_lnbs[m_lnbidx].m_lof_lo = lofl;
868         else
869                 return -ENOENT;
870         return 0;
871 }
872
873 RESULT eDVBSatelliteEquipmentControl::setLNBLOFH(int lofh)
874 {
875         eSecDebug("eDVBSatelliteEquipmentControl::setLNBLOFH(%d)", lofh);
876         if ( currentLNBValid() )
877                 m_lnbs[m_lnbidx].m_lof_hi = lofh;
878         else
879                 return -ENOENT;
880         return 0;
881 }
882
883 RESULT eDVBSatelliteEquipmentControl::setLNBThreshold(int threshold)
884 {
885         eSecDebug("eDVBSatelliteEquipmentControl::setLNBThreshold(%d)", threshold);
886         if ( currentLNBValid() )
887                 m_lnbs[m_lnbidx].m_lof_threshold = threshold;
888         else
889                 return -ENOENT;
890         return 0;
891 }
892
893 RESULT eDVBSatelliteEquipmentControl::setLNBIncreasedVoltage(bool onoff)
894 {
895         eSecDebug("eDVBSatelliteEquipmentControl::setLNBIncreasedVoltage(%d)", onoff);
896         if ( currentLNBValid() )
897                 m_lnbs[m_lnbidx].m_increased_voltage = onoff;
898         else
899                 return -ENOENT;
900         return 0;
901 }
902
903 /* DiSEqC Specific Parameters */
904 RESULT eDVBSatelliteEquipmentControl::setDiSEqCMode(int diseqcmode)
905 {
906         eSecDebug("eDVBSatelliteEquipmentControl::setDiSEqcMode(%d)", diseqcmode);
907         if ( currentLNBValid() )
908                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_diseqc_mode = (eDVBSatelliteDiseqcParameters::t_diseqc_mode)diseqcmode;
909         else
910                 return -ENOENT;
911         return 0;
912 }
913
914 RESULT eDVBSatelliteEquipmentControl::setToneburst(int toneburst)
915 {
916         eSecDebug("eDVBSatelliteEquipmentControl::setToneburst(%d)", toneburst);
917         if ( currentLNBValid() )
918                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_toneburst_param = (eDVBSatelliteDiseqcParameters::t_toneburst_param)toneburst;
919         else
920                 return -ENOENT;
921         return 0;
922 }
923
924 RESULT eDVBSatelliteEquipmentControl::setRepeats(int repeats)
925 {
926         eSecDebug("eDVBSatelliteEquipmentControl::setRepeats(%d)", repeats);
927         if ( currentLNBValid() )
928                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_repeats=repeats;
929         else
930                 return -ENOENT;
931         return 0;
932 }
933
934 RESULT eDVBSatelliteEquipmentControl::setCommittedCommand(int command)
935 {
936         eSecDebug("eDVBSatelliteEquipmentControl::setCommittedCommand(%d)", command);
937         if ( currentLNBValid() )
938                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_committed_cmd=command;
939         else
940                 return -ENOENT;
941         return 0;
942 }
943
944 RESULT eDVBSatelliteEquipmentControl::setUncommittedCommand(int command)
945 {
946         eSecDebug("eDVBSatelliteEquipmentControl::setUncommittedCommand(%d)", command);
947         if ( currentLNBValid() )
948                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_uncommitted_cmd = command;
949         else
950                 return -ENOENT;
951         return 0;
952 }
953
954 RESULT eDVBSatelliteEquipmentControl::setCommandOrder(int order)
955 {
956         eSecDebug("eDVBSatelliteEquipmentControl::setCommandOrder(%d)", order);
957         if ( currentLNBValid() )
958                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_command_order=order;
959         else
960                 return -ENOENT;
961         return 0;
962 }
963
964 RESULT eDVBSatelliteEquipmentControl::setFastDiSEqC(bool onoff)
965 {
966         eSecDebug("eDVBSatelliteEquipmentControl::setFastDiSEqc(%d)", onoff);
967         if ( currentLNBValid() )
968                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_use_fast=onoff;
969         else
970                 return -ENOENT;
971         return 0;
972 }
973
974 RESULT eDVBSatelliteEquipmentControl::setSeqRepeat(bool onoff)
975 {
976         eSecDebug("eDVBSatelliteEquipmentControl::setSeqRepeat(%d)", onoff);
977         if ( currentLNBValid() )
978                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_seq_repeat = onoff;
979         else
980                 return -ENOENT;
981         return 0;
982 }
983
984 /* Rotor Specific Parameters */
985 RESULT eDVBSatelliteEquipmentControl::setLongitude(float longitude)
986 {
987         eSecDebug("eDVBSatelliteEquipmentControl::setLongitude(%f)", longitude);
988         if ( currentLNBValid() )
989                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_longitude=longitude;
990         else
991                 return -ENOENT;
992         return 0;
993 }
994
995 RESULT eDVBSatelliteEquipmentControl::setLatitude(float latitude)
996 {
997         eSecDebug("eDVBSatelliteEquipmentControl::setLatitude(%f)", latitude);
998         if ( currentLNBValid() )
999                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_latitude=latitude;
1000         else
1001                 return -ENOENT;
1002         return 0;
1003 }
1004
1005 RESULT eDVBSatelliteEquipmentControl::setLoDirection(int direction)
1006 {
1007         eSecDebug("eDVBSatelliteEquipmentControl::setLoDirection(%d)", direction);
1008         if ( currentLNBValid() )
1009                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_lo_direction=direction;
1010         else
1011                 return -ENOENT;
1012         return 0;
1013 }
1014
1015 RESULT eDVBSatelliteEquipmentControl::setLaDirection(int direction)
1016 {
1017         eSecDebug("eDVBSatelliteEquipmentControl::setLaDirection(%d)", direction);
1018         if ( currentLNBValid() )
1019                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_la_direction=direction;
1020         else
1021                 return -ENOENT;
1022         return 0;
1023 }
1024
1025 RESULT eDVBSatelliteEquipmentControl::setUseInputpower(bool onoff)
1026 {
1027         eSecDebug("eDVBSatelliteEquipmentControl::setUseInputpower(%d)", onoff);
1028         if ( currentLNBValid() )
1029                 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_use=onoff;
1030         else
1031                 return -ENOENT;
1032         return 0;
1033 }
1034
1035 RESULT eDVBSatelliteEquipmentControl::setInputpowerDelta(int delta)
1036 {
1037         eSecDebug("eDVBSatelliteEquipmentControl::setInputpowerDelta(%d)", delta);
1038         if ( currentLNBValid() )
1039                 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_delta=delta;
1040         else
1041                 return -ENOENT;
1042         return 0;
1043 }
1044
1045 /* Satellite Specific Parameters */
1046 RESULT eDVBSatelliteEquipmentControl::addSatellite(int orbital_position)
1047 {
1048         eSecDebug("eDVBSatelliteEquipmentControl::addSatellite(%d)", orbital_position);
1049         if ( currentLNBValid() )
1050         {
1051                 std::map<int, eDVBSatelliteSwitchParameters>::iterator it =
1052                         m_lnbs[m_lnbidx].m_satellites.find(orbital_position);
1053                 if ( it == m_lnbs[m_lnbidx].m_satellites.end() )
1054                 {
1055                         std::pair<std::map<int, eDVBSatelliteSwitchParameters>::iterator, bool > ret =
1056                                 m_lnbs[m_lnbidx].m_satellites.insert(
1057                                         std::pair<int, eDVBSatelliteSwitchParameters>(orbital_position, eDVBSatelliteSwitchParameters())
1058                                 );
1059                         if ( ret.second )
1060                                 m_curSat = ret.first;
1061                         else
1062                                 return -ENOMEM;
1063                 }
1064                 else
1065                         return -EEXIST;
1066         }
1067         else
1068                 return -ENOENT;
1069         return 0;
1070 }
1071
1072 RESULT eDVBSatelliteEquipmentControl::setVoltageMode(int mode)
1073 {
1074         eSecDebug("eDVBSatelliteEquipmentControl::setVoltageMode(%d)", mode);
1075         if ( currentLNBValid() && m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1076                 m_curSat->second.m_voltage_mode = (eDVBSatelliteSwitchParameters::t_voltage_mode)mode;
1077         else
1078                 return -ENOENT;
1079         return 0;
1080
1081 }
1082
1083 RESULT eDVBSatelliteEquipmentControl::setToneMode(int mode)
1084 {
1085         eSecDebug("eDVBSatelliteEquipmentControl::setToneMode(%d)", mode);
1086         if ( currentLNBValid() )
1087         {
1088                 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1089                         m_curSat->second.m_22khz_signal = (eDVBSatelliteSwitchParameters::t_22khz_signal)mode;
1090                 else
1091                         return -EPERM;
1092         }
1093         else
1094                 return -ENOENT;
1095         return 0;
1096 }
1097
1098 RESULT eDVBSatelliteEquipmentControl::setRotorPosNum(int rotor_pos_num)
1099 {
1100         eSecDebug("eDVBSatelliteEquipmentControl::setRotorPosNum(%d)", rotor_pos_num);
1101         if ( currentLNBValid() )
1102         {
1103                 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1104                         m_curSat->second.m_rotorPosNum=rotor_pos_num;
1105                 else
1106                         return -EPERM;
1107         }
1108         else
1109                 return -ENOENT;
1110         return 0;
1111 }
1112
1113 RESULT eDVBSatelliteEquipmentControl::setRotorTurningSpeed(int speed)
1114 {
1115         eSecDebug("eDVBSatelliteEquipmentControl::setRotorTurningSpeed(%d)", speed);
1116         if ( currentLNBValid() )
1117                 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_turning_speed = speed;
1118         else
1119                 return -ENOENT;
1120         return 0;
1121 }
1122
1123 struct sat_compare
1124 {
1125         int orb_pos, lofl, lofh;
1126         sat_compare(int o, int lofl, int lofh)
1127                 :orb_pos(o), lofl(lofl), lofh(lofh)
1128         {}
1129         sat_compare(const sat_compare &x)
1130                 :orb_pos(x.orb_pos), lofl(x.lofl), lofh(x.lofh)
1131         {}
1132         bool operator < (const sat_compare & cmp) const
1133         {
1134                 if (orb_pos == cmp.orb_pos)
1135                 {
1136                         if ( abs(lofl-cmp.lofl) < 200000 )
1137                         {
1138                                 if (abs(lofh-cmp.lofh) < 200000)
1139                                         return false;
1140                                 return lofh<cmp.lofh;
1141                         }
1142                         return lofl<cmp.lofl;
1143                 }
1144                 return orb_pos < cmp.orb_pos;
1145         }
1146 };
1147
1148 PyObject *eDVBSatelliteEquipmentControl::get_exclusive_satellites(int tu1, int tu2)
1149 {
1150         ePyObject ret;
1151
1152         if (tu1 != tu2)
1153         {
1154                 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1155                 int cnt=0;
1156                 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it, ++cnt)
1157                 {
1158                         if (cnt == tu1)
1159                                 p1 = *it;
1160                         else if (cnt == tu2)
1161                                 p2 = *it;
1162                 }
1163
1164                 if (p1 && p2)
1165                 {
1166                         // check for linked tuners
1167
1168                         do 
1169                         {
1170                                 long tmp;
1171                                 p1->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, tmp);
1172                                 if (tmp != -1)
1173                                         p1 = (eDVBRegisteredFrontend*)tmp;
1174                                 else
1175                                         break;
1176                         }
1177                         while (true);
1178
1179                         do 
1180                         {
1181                                 long tmp;
1182                                 p2->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, tmp);
1183                                 if (tmp != -1)
1184                                         p2 = (eDVBRegisteredFrontend*)tmp;
1185                                 else
1186                                         break;
1187                         }
1188                         while (true);
1189
1190                         if (p1 != p2)
1191                         {
1192                                 long tmp1=-1;
1193                                 long tmp2=-1;
1194                                 // check for rotor dependency
1195                                 p1->m_frontend->getData(eDVBFrontend::SATPOS_DEPENDS_PTR, tmp1);
1196                                 if (tmp1 != -1)
1197                                         p1 = (eDVBRegisteredFrontend*)tmp1;
1198                                 p2->m_frontend->getData(eDVBFrontend::SATPOS_DEPENDS_PTR, tmp2);
1199                                 if (tmp2 != -1)
1200                                         p2 = (eDVBRegisteredFrontend*)tmp2;
1201                                 if (p1 != p2)
1202                                 {
1203                                         int tu1_mask = 1 << p1->m_frontend->getSlotID(),
1204                                                 tu2_mask = 1 << p2->m_frontend->getSlotID();
1205                                         std::set<sat_compare> tu1sats, tu2sats;
1206                                         std::list<sat_compare> tu1difference, tu2difference;
1207                                         std::insert_iterator<std::list<sat_compare> > insert1(tu1difference, tu1difference.begin()),
1208                                                 insert2(tu2difference, tu2difference.begin());
1209                                         for (int idx=0; idx <= m_lnbidx; ++idx )
1210                                         {
1211                                                 eDVBSatelliteLNBParameters &lnb_param = m_lnbs[idx];
1212                                                 for (std::map<int, eDVBSatelliteSwitchParameters>::iterator sit(lnb_param.m_satellites.begin());
1213                                                         sit != lnb_param.m_satellites.end(); ++sit)
1214                                                 {
1215                                                         if ( lnb_param.slot_mask & tu1_mask )
1216                                                                 tu1sats.insert(sat_compare(sit->first, lnb_param.m_lof_lo, lnb_param.m_lof_hi));
1217                                                         if ( lnb_param.slot_mask & tu2_mask )
1218                                                                 tu2sats.insert(sat_compare(sit->first, lnb_param.m_lof_lo, lnb_param.m_lof_hi));
1219                                                 }
1220                                         }
1221                                         std::set_difference(tu1sats.begin(), tu1sats.end(),
1222                                                 tu2sats.begin(), tu2sats.end(),
1223                                                 insert1);
1224                                         std::set_difference(tu2sats.begin(), tu2sats.end(),
1225                                                 tu1sats.begin(), tu1sats.end(),
1226                                                 insert2);
1227                                         if (!tu1sats.empty() || !tu2sats.empty())
1228                                         {
1229                                                 int idx=0;
1230                                                 ret = PyList_New(2+tu1difference.size()+tu2difference.size());
1231
1232                                                 PyList_SET_ITEM(ret, idx++, PyInt_FromLong(tu1difference.size()));
1233                                                 for(std::list<sat_compare>::iterator it(tu1difference.begin()); it != tu1difference.end(); ++it)
1234                                                         PyList_SET_ITEM(ret, idx++, PyInt_FromLong(it->orb_pos));
1235
1236                                                 PyList_SET_ITEM(ret, idx++, PyInt_FromLong(tu2difference.size()));
1237                                                 for(std::list<sat_compare>::iterator it(tu2difference.begin()); it != tu2difference.end(); ++it)
1238                                                         PyList_SET_ITEM(ret, idx++, PyInt_FromLong(it->orb_pos));
1239                                         }
1240                                 }
1241                         }
1242                 }
1243         }
1244         if (!ret)
1245         {
1246                 ret = PyList_New(2);
1247                 PyList_SET_ITEM(ret, 0, PyInt_FromLong(0));
1248                 PyList_SET_ITEM(ret, 1, PyInt_FromLong(0));
1249         }
1250         return ret;
1251 }
1252
1253 RESULT eDVBSatelliteEquipmentControl::setTunerLinked(int tu1, int tu2)
1254 {
1255         eSecDebug("eDVBSatelliteEquipmentControl::setTunerLinked(%d, %d)", tu1, tu2);
1256         if (tu1 != tu2)
1257         {
1258                 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1259
1260                 int cnt=0;
1261                 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it, ++cnt)
1262                 {
1263                         if (cnt == tu1)
1264                                 p1 = *it;
1265                         else if (cnt == tu2)
1266                                 p2 = *it;
1267                 }
1268                 if (p1 && p2)
1269                 {
1270                         p1->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, (long)p2);
1271                         p2->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, (long)p1);
1272                         if (!strcmp(p1->m_frontend->getDescription(), p2->m_frontend->getDescription()) && !strcmp(p1->m_frontend->getDescription(), "BCM4501 (internal)"))
1273                         {
1274                                 FILE *f=fopen("/proc/stb/tsmux/lnb_b_input", "w");
1275                                 if (!f || fwrite("A", 1, 1, f) != 1)
1276                                         eDebug("set /proc/stb/tsmux/lnb_b_input to A failed!! (%m)");
1277                                 else
1278                                 {
1279                                         eDebug("set /proc/stb/tsmux/lnb_b_input to A OK");
1280                                         fclose(f);
1281                                 }
1282                         }
1283                         return 0;
1284                 }
1285         }
1286         return -1;
1287 }
1288
1289 RESULT eDVBSatelliteEquipmentControl::setTunerDepends(int tu1, int tu2)
1290 {
1291         eSecDebug("eDVBSatelliteEquipmentControl::setTunerDepends(%d, %d)", tu1, tu2);
1292         if (tu1 == tu2)
1293                 return -1;
1294
1295         eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1296
1297         int cnt=0;
1298         for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it, ++cnt)
1299         {
1300                 if (cnt == tu1)
1301                         p1 = *it;
1302                 else if (cnt == tu2)
1303                         p2 = *it;
1304         }
1305         if (p1 && p2)
1306         {
1307                 p1->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p2);
1308                 p2->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (long)p1);
1309                 return 0;
1310         }
1311         return -1;
1312 }
1313
1314 void eDVBSatelliteEquipmentControl::setSlotNotLinked(int slot_no)
1315 {
1316         eSecDebug("eDVBSatelliteEquipmentControl::setSlotNotLinked(%d)", slot_no);
1317         m_not_linked_slot_mask |= (1 << slot_no);
1318 }
1319
1320 bool eDVBSatelliteEquipmentControl::isRotorMoving()
1321 {
1322         return m_rotorMoving;
1323 }
1324
1325 void eDVBSatelliteEquipmentControl::setRotorMoving(bool b)
1326 {
1327         m_rotorMoving=b;
1328 }