possibility to sort epg list alphabetically (thanks to Moritz Venn)
[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, int &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                 int 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, 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                                 int 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                         int 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 %02x", 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                 it->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, -1);
818                 it->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, -1);
819                 it->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, -1);
820                 it->m_frontend->setData(eDVBFrontend::ROTOR_POS, -1);
821                 it->m_frontend->setData(eDVBFrontend::ROTOR_CMD, -1);
822         }
823
824         return 0;
825 }
826
827 /* LNB Specific Parameters */
828 RESULT eDVBSatelliteEquipmentControl::addLNB()
829 {
830         if ( (m_lnbidx+1) < (int)(sizeof(m_lnbs) / sizeof(eDVBSatelliteLNBParameters)))
831                 m_curSat=m_lnbs[++m_lnbidx].m_satellites.end();
832         else
833         {
834                 eDebug("no more LNB free... cnt is %d", m_lnbidx);
835                 return -ENOSPC;
836         }
837         eSecDebug("eDVBSatelliteEquipmentControl::addLNB(%d)", m_lnbidx-1);
838         return 0;
839 }
840
841 RESULT eDVBSatelliteEquipmentControl::setLNBSlotMask(int slotmask)
842 {
843         eSecDebug("eDVBSatelliteEquipmentControl::setLNBSlotMask(%d)", slotmask);
844         if ( currentLNBValid() )
845                 m_lnbs[m_lnbidx].slot_mask = slotmask;
846         else
847                 return -ENOENT;
848         return 0;
849 }
850
851 RESULT eDVBSatelliteEquipmentControl::setLNBLOFL(int lofl)
852 {
853         eSecDebug("eDVBSatelliteEquipmentControl::setLNBLOFL(%d)", lofl);
854         if ( currentLNBValid() )
855                 m_lnbs[m_lnbidx].m_lof_lo = lofl;
856         else
857                 return -ENOENT;
858         return 0;
859 }
860
861 RESULT eDVBSatelliteEquipmentControl::setLNBLOFH(int lofh)
862 {
863         eSecDebug("eDVBSatelliteEquipmentControl::setLNBLOFH(%d)", lofh);
864         if ( currentLNBValid() )
865                 m_lnbs[m_lnbidx].m_lof_hi = lofh;
866         else
867                 return -ENOENT;
868         return 0;
869 }
870
871 RESULT eDVBSatelliteEquipmentControl::setLNBThreshold(int threshold)
872 {
873         eSecDebug("eDVBSatelliteEquipmentControl::setLNBThreshold(%d)", threshold);
874         if ( currentLNBValid() )
875                 m_lnbs[m_lnbidx].m_lof_threshold = threshold;
876         else
877                 return -ENOENT;
878         return 0;
879 }
880
881 RESULT eDVBSatelliteEquipmentControl::setLNBIncreasedVoltage(bool onoff)
882 {
883         eSecDebug("eDVBSatelliteEquipmentControl::setLNBIncreasedVoltage(%d)", onoff);
884         if ( currentLNBValid() )
885                 m_lnbs[m_lnbidx].m_increased_voltage = onoff;
886         else
887                 return -ENOENT;
888         return 0;
889 }
890
891 /* DiSEqC Specific Parameters */
892 RESULT eDVBSatelliteEquipmentControl::setDiSEqCMode(int diseqcmode)
893 {
894         eSecDebug("eDVBSatelliteEquipmentControl::setDiSEqcMode(%d)", diseqcmode);
895         if ( currentLNBValid() )
896                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_diseqc_mode = (eDVBSatelliteDiseqcParameters::t_diseqc_mode)diseqcmode;
897         else
898                 return -ENOENT;
899         return 0;
900 }
901
902 RESULT eDVBSatelliteEquipmentControl::setToneburst(int toneburst)
903 {
904         eSecDebug("eDVBSatelliteEquipmentControl::setToneburst(%d)", toneburst);
905         if ( currentLNBValid() )
906                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_toneburst_param = (eDVBSatelliteDiseqcParameters::t_toneburst_param)toneburst;
907         else
908                 return -ENOENT;
909         return 0;
910 }
911
912 RESULT eDVBSatelliteEquipmentControl::setRepeats(int repeats)
913 {
914         eSecDebug("eDVBSatelliteEquipmentControl::setRepeats(%d)", repeats);
915         if ( currentLNBValid() )
916                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_repeats=repeats;
917         else
918                 return -ENOENT;
919         return 0;
920 }
921
922 RESULT eDVBSatelliteEquipmentControl::setCommittedCommand(int command)
923 {
924         eSecDebug("eDVBSatelliteEquipmentControl::setCommittedCommand(%d)", command);
925         if ( currentLNBValid() )
926                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_committed_cmd=command;
927         else
928                 return -ENOENT;
929         return 0;
930 }
931
932 RESULT eDVBSatelliteEquipmentControl::setUncommittedCommand(int command)
933 {
934         eSecDebug("eDVBSatelliteEquipmentControl::setUncommittedCommand(%d)", command);
935         if ( currentLNBValid() )
936                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_uncommitted_cmd = command;
937         else
938                 return -ENOENT;
939         return 0;
940 }
941
942 RESULT eDVBSatelliteEquipmentControl::setCommandOrder(int order)
943 {
944         eSecDebug("eDVBSatelliteEquipmentControl::setCommandOrder(%d)", order);
945         if ( currentLNBValid() )
946                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_command_order=order;
947         else
948                 return -ENOENT;
949         return 0;
950 }
951
952 RESULT eDVBSatelliteEquipmentControl::setFastDiSEqC(bool onoff)
953 {
954         eSecDebug("eDVBSatelliteEquipmentControl::setFastDiSEqc(%d)", onoff);
955         if ( currentLNBValid() )
956                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_use_fast=onoff;
957         else
958                 return -ENOENT;
959         return 0;
960 }
961
962 RESULT eDVBSatelliteEquipmentControl::setSeqRepeat(bool onoff)
963 {
964         eSecDebug("eDVBSatelliteEquipmentControl::setSeqRepeat(%d)", onoff);
965         if ( currentLNBValid() )
966                 m_lnbs[m_lnbidx].m_diseqc_parameters.m_seq_repeat = onoff;
967         else
968                 return -ENOENT;
969         return 0;
970 }
971
972 /* Rotor Specific Parameters */
973 RESULT eDVBSatelliteEquipmentControl::setLongitude(float longitude)
974 {
975         eSecDebug("eDVBSatelliteEquipmentControl::setLongitude(%f)", longitude);
976         if ( currentLNBValid() )
977                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_longitude=longitude;
978         else
979                 return -ENOENT;
980         return 0;
981 }
982
983 RESULT eDVBSatelliteEquipmentControl::setLatitude(float latitude)
984 {
985         eSecDebug("eDVBSatelliteEquipmentControl::setLatitude(%f)", latitude);
986         if ( currentLNBValid() )
987                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_latitude=latitude;
988         else
989                 return -ENOENT;
990         return 0;
991 }
992
993 RESULT eDVBSatelliteEquipmentControl::setLoDirection(int direction)
994 {
995         eSecDebug("eDVBSatelliteEquipmentControl::setLoDirection(%d)", direction);
996         if ( currentLNBValid() )
997                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_lo_direction=direction;
998         else
999                 return -ENOENT;
1000         return 0;
1001 }
1002
1003 RESULT eDVBSatelliteEquipmentControl::setLaDirection(int direction)
1004 {
1005         eSecDebug("eDVBSatelliteEquipmentControl::setLaDirection(%d)", direction);
1006         if ( currentLNBValid() )
1007                 m_lnbs[m_lnbidx].m_rotor_parameters.m_gotoxx_parameters.m_la_direction=direction;
1008         else
1009                 return -ENOENT;
1010         return 0;
1011 }
1012
1013 RESULT eDVBSatelliteEquipmentControl::setUseInputpower(bool onoff)
1014 {
1015         eSecDebug("eDVBSatelliteEquipmentControl::setUseInputpower(%d)", onoff);
1016         if ( currentLNBValid() )
1017                 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_use=onoff;
1018         else
1019                 return -ENOENT;
1020         return 0;
1021 }
1022
1023 RESULT eDVBSatelliteEquipmentControl::setInputpowerDelta(int delta)
1024 {
1025         eSecDebug("eDVBSatelliteEquipmentControl::setInputpowerDelta(%d)", delta);
1026         if ( currentLNBValid() )
1027                 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_delta=delta;
1028         else
1029                 return -ENOENT;
1030         return 0;
1031 }
1032
1033 /* Satellite Specific Parameters */
1034 RESULT eDVBSatelliteEquipmentControl::addSatellite(int orbital_position)
1035 {
1036         eSecDebug("eDVBSatelliteEquipmentControl::addSatellite(%d)", orbital_position);
1037         if ( currentLNBValid() )
1038         {
1039                 std::map<int, eDVBSatelliteSwitchParameters>::iterator it =
1040                         m_lnbs[m_lnbidx].m_satellites.find(orbital_position);
1041                 if ( it == m_lnbs[m_lnbidx].m_satellites.end() )
1042                 {
1043                         std::pair<std::map<int, eDVBSatelliteSwitchParameters>::iterator, bool > ret =
1044                                 m_lnbs[m_lnbidx].m_satellites.insert(
1045                                         std::pair<int, eDVBSatelliteSwitchParameters>(orbital_position, eDVBSatelliteSwitchParameters())
1046                                 );
1047                         if ( ret.second )
1048                                 m_curSat = ret.first;
1049                         else
1050                                 return -ENOMEM;
1051                 }
1052                 else
1053                         return -EEXIST;
1054         }
1055         else
1056                 return -ENOENT;
1057         return 0;
1058 }
1059
1060 RESULT eDVBSatelliteEquipmentControl::setVoltageMode(int mode)
1061 {
1062         eSecDebug("eDVBSatelliteEquipmentControl::setVoltageMode(%d)", mode);
1063         if ( currentLNBValid() && m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1064                 m_curSat->second.m_voltage_mode = (eDVBSatelliteSwitchParameters::t_voltage_mode)mode;
1065         else
1066                 return -ENOENT;
1067         return 0;
1068
1069 }
1070
1071 RESULT eDVBSatelliteEquipmentControl::setToneMode(int mode)
1072 {
1073         eSecDebug("eDVBSatelliteEquipmentControl::setToneMode(%d)", mode);
1074         if ( currentLNBValid() )
1075         {
1076                 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1077                         m_curSat->second.m_22khz_signal = (eDVBSatelliteSwitchParameters::t_22khz_signal)mode;
1078                 else
1079                         return -EPERM;
1080         }
1081         else
1082                 return -ENOENT;
1083         return 0;
1084 }
1085
1086 RESULT eDVBSatelliteEquipmentControl::setRotorPosNum(int rotor_pos_num)
1087 {
1088         eSecDebug("eDVBSatelliteEquipmentControl::setRotorPosNum(%d)", rotor_pos_num);
1089         if ( currentLNBValid() )
1090         {
1091                 if ( m_curSat != m_lnbs[m_lnbidx].m_satellites.end() )
1092                         m_curSat->second.m_rotorPosNum=rotor_pos_num;
1093                 else
1094                         return -EPERM;
1095         }
1096         else
1097                 return -ENOENT;
1098         return 0;
1099 }
1100
1101 RESULT eDVBSatelliteEquipmentControl::setRotorTurningSpeed(int speed)
1102 {
1103         eSecDebug("eDVBSatelliteEquipmentControl::setRotorTurningSpeed(%d)", speed);
1104         if ( currentLNBValid() )
1105                 m_lnbs[m_lnbidx].m_rotor_parameters.m_inputpower_parameters.m_turning_speed = speed;
1106         else
1107                 return -ENOENT;
1108         return 0;
1109 }
1110
1111 struct sat_compare
1112 {
1113         int orb_pos, lofl, lofh;
1114         sat_compare(int o, int lofl, int lofh)
1115                 :orb_pos(o), lofl(lofl), lofh(lofh)
1116         {}
1117         sat_compare(const sat_compare &x)
1118                 :orb_pos(x.orb_pos), lofl(x.lofl), lofh(x.lofh)
1119         {}
1120         bool operator < (const sat_compare & cmp) const
1121         {
1122                 if (orb_pos == cmp.orb_pos)
1123                 {
1124                         if ( abs(lofl-cmp.lofl) < 200000 )
1125                         {
1126                                 if (abs(lofh-cmp.lofh) < 200000)
1127                                         return false;
1128                                 return lofh<cmp.lofh;
1129                         }
1130                         return lofl<cmp.lofl;
1131                 }
1132                 return orb_pos < cmp.orb_pos;
1133         }
1134 };
1135
1136 PyObject *eDVBSatelliteEquipmentControl::get_exclusive_satellites(int tu1, int tu2)
1137 {
1138         ePyObject ret;
1139
1140         if (tu1 != tu2)
1141         {
1142                 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1143                 int cnt=0;
1144                 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it, ++cnt)
1145                 {
1146                         if (cnt == tu1)
1147                                 p1 = *it;
1148                         else if (cnt == tu2)
1149                                 p2 = *it;
1150                 }
1151
1152                 if (p1 && p2)
1153                 {
1154                         // check for linked tuners
1155
1156                         do 
1157                         {
1158                                 int tmp;
1159                                 p1->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, tmp);
1160                                 if (tmp != -1)
1161                                         p1 = (eDVBRegisteredFrontend*)tmp;
1162                                 else
1163                                         break;
1164                         }
1165                         while (true);
1166
1167                         do 
1168                         {
1169                                 int tmp;
1170                                 p2->m_frontend->getData(eDVBFrontend::LINKED_PREV_PTR, tmp);
1171                                 if (tmp != -1)
1172                                         p2 = (eDVBRegisteredFrontend*)tmp;
1173                                 else
1174                                         break;
1175                         }
1176                         while (true);
1177
1178                         if (p1 != p2)
1179                         {
1180                                 int tmp1=-1;
1181                                 int tmp2=-1;
1182                                 // check for rotor dependency
1183                                 p1->m_frontend->getData(eDVBFrontend::SATPOS_DEPENDS_PTR, tmp1);
1184                                 if (tmp1 != -1)
1185                                         p1 = (eDVBRegisteredFrontend*)tmp1;
1186                                 p2->m_frontend->getData(eDVBFrontend::SATPOS_DEPENDS_PTR, tmp2);
1187                                 if (tmp2 != -1)
1188                                         p2 = (eDVBRegisteredFrontend*)tmp2;
1189                                 if (p1 != p2)
1190                                 {
1191                                         int tu1_mask = 1 << p1->m_frontend->getSlotID(),
1192                                                 tu2_mask = 1 << p2->m_frontend->getSlotID();
1193                                         std::set<sat_compare> tu1sats, tu2sats;
1194                                         std::list<sat_compare> tu1difference, tu2difference;
1195                                         std::insert_iterator<std::list<sat_compare> > insert1(tu1difference, tu1difference.begin()),
1196                                                 insert2(tu2difference, tu2difference.begin());
1197                                         for (int idx=0; idx <= m_lnbidx; ++idx )
1198                                         {
1199                                                 eDVBSatelliteLNBParameters &lnb_param = m_lnbs[idx];
1200                                                 for (std::map<int, eDVBSatelliteSwitchParameters>::iterator sit(lnb_param.m_satellites.begin());
1201                                                         sit != lnb_param.m_satellites.end(); ++sit)
1202                                                 {
1203                                                         if ( lnb_param.slot_mask & tu1_mask )
1204                                                                 tu1sats.insert(sat_compare(sit->first, lnb_param.m_lof_lo, lnb_param.m_lof_hi));
1205                                                         if ( lnb_param.slot_mask & tu2_mask )
1206                                                                 tu2sats.insert(sat_compare(sit->first, lnb_param.m_lof_lo, lnb_param.m_lof_hi));
1207                                                 }
1208                                         }
1209                                         std::set_difference(tu1sats.begin(), tu1sats.end(),
1210                                                 tu2sats.begin(), tu2sats.end(),
1211                                                 insert1);
1212                                         std::set_difference(tu2sats.begin(), tu2sats.end(),
1213                                                 tu1sats.begin(), tu1sats.end(),
1214                                                 insert2);
1215                                         if (!tu1sats.empty() || !tu2sats.empty())
1216                                         {
1217                                                 int idx=0;
1218                                                 ret = PyList_New(2+tu1difference.size()+tu2difference.size());
1219
1220                                                 PyList_SET_ITEM(ret, idx++, PyInt_FromLong(tu1difference.size()));
1221                                                 for(std::list<sat_compare>::iterator it(tu1difference.begin()); it != tu1difference.end(); ++it)
1222                                                         PyList_SET_ITEM(ret, idx++, PyInt_FromLong(it->orb_pos));
1223
1224                                                 PyList_SET_ITEM(ret, idx++, PyInt_FromLong(tu2difference.size()));
1225                                                 for(std::list<sat_compare>::iterator it(tu2difference.begin()); it != tu2difference.end(); ++it)
1226                                                         PyList_SET_ITEM(ret, idx++, PyInt_FromLong(it->orb_pos));
1227                                         }
1228                                 }
1229                         }
1230                 }
1231         }
1232         if (!ret)
1233         {
1234                 ret = PyList_New(2);
1235                 PyList_SET_ITEM(ret, 0, PyInt_FromLong(0));
1236                 PyList_SET_ITEM(ret, 1, PyInt_FromLong(0));
1237         }
1238         return ret;
1239 }
1240
1241 RESULT eDVBSatelliteEquipmentControl::setTunerLinked(int tu1, int tu2)
1242 {
1243         eSecDebug("eDVBSatelliteEquipmentControl::setTunerLinked(%d, %d)", tu1, tu2);
1244         if (tu1 != tu2)
1245         {
1246                 eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1247
1248                 int cnt=0;
1249                 for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it, ++cnt)
1250                 {
1251                         if (cnt == tu1)
1252                                 p1 = *it;
1253                         else if (cnt == tu2)
1254                                 p2 = *it;
1255                 }
1256                 if (p1 && p2)
1257                 {
1258                         p1->m_frontend->setData(eDVBFrontend::LINKED_PREV_PTR, (int)p2);
1259                         p2->m_frontend->setData(eDVBFrontend::LINKED_NEXT_PTR, (int)p1);
1260                         return 0;
1261                 }
1262         }
1263         return -1;
1264 }
1265
1266 RESULT eDVBSatelliteEquipmentControl::setTunerDepends(int tu1, int tu2)
1267 {
1268         eSecDebug("eDVBSatelliteEquipmentControl::setTunerDepends(%d, %d)", tu1, tu2);
1269         if (tu1 == tu2)
1270                 return -1;
1271
1272         eDVBRegisteredFrontend *p1=NULL, *p2=NULL;
1273
1274         int cnt=0;
1275         for (eSmartPtrList<eDVBRegisteredFrontend>::iterator it(m_avail_frontends.begin()); it != m_avail_frontends.end(); ++it, ++cnt)
1276         {
1277                 if (cnt == tu1)
1278                         p1 = *it;
1279                 else if (cnt == tu2)
1280                         p2 = *it;
1281         }
1282         if (p1 && p2)
1283         {
1284                 p1->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (int)p2);
1285                 p2->m_frontend->setData(eDVBFrontend::SATPOS_DEPENDS_PTR, (int)p1);
1286                 return 0;
1287         }
1288         return -1;
1289 }
1290
1291 void eDVBSatelliteEquipmentControl::setSlotNotLinked(int slot_no)
1292 {
1293         eSecDebug("eDVBSatelliteEquipmentControl::setSlotNotLinked(%d)", slot_no);
1294         m_not_linked_slot_mask |= (1 << slot_no);
1295 }
1296
1297 bool eDVBSatelliteEquipmentControl::isRotorMoving()
1298 {
1299         return m_rotorMoving;
1300 }
1301
1302 void eDVBSatelliteEquipmentControl::setRotorMoving(bool b)
1303 {
1304         m_rotorMoving=b;
1305 }