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