5d73bb7b4ca759d664b814cb11ff31d7bcc50e5f
[vuplus_dvbapp] / lib / dvb / sec.h
1 #ifndef __dvb_sec_h
2 #define __dvb_sec_h
3
4 #include <lib/dvb/idvb.h>
5 #include <list>
6
7 #ifndef SWIG
8 class eSecCommand
9 {
10 public:
11         enum { modeStatic, modeDynamic };
12         enum {
13                 NONE, SLEEP, SET_VOLTAGE, SET_TONE, GOTO,
14                 SEND_DISEQC, SEND_TONEBURST, SET_FRONTEND,
15                 SET_TIMEOUT, IF_TIMEOUT_GOTO, 
16                 IF_VOLTAGE_GOTO, IF_NOT_VOLTAGE_GOTO,
17                 SET_POWER_LIMITING_MODE,
18                 SET_ROTOR_DISEQC_RETRYS, IF_NO_MORE_ROTOR_DISEQC_RETRYS_GOTO,
19                 MEASURE_IDLE_INPUTPOWER, MEASURE_RUNNING_INPUTPOWER,
20                 IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, IF_INPUTPOWER_DELTA_GOTO,
21                 UPDATE_CURRENT_ROTORPARAMS, INVALIDATE_CURRENT_ROTORPARMS,
22                 UPDATE_CURRENT_SWITCHPARMS, INVALIDATE_CURRENT_SWITCHPARMS,
23                 IF_ROTORPOS_VALID_GOTO,
24                 IF_TUNER_LOCKED_GOTO,
25                 IF_TONE_GOTO, IF_NOT_TONE_GOTO,
26                 START_TUNE_TIMEOUT,
27                 SET_ROTOR_MOVING,
28                 SET_ROTOR_STOPPED,
29                 DELAYED_CLOSE_FRONTEND
30         };
31         int cmd;
32         struct rotor
33         {
34                 union {
35                         int deltaA;   // difference in mA between running and stopped rotor
36                         int lastSignal;
37                 };
38                 int okcount;  // counter
39                 int steps;    // goto steps
40                 int direction;
41         };
42         struct pair
43         {
44                 union
45                 {
46                         int voltage;
47                         int tone;
48                         int val;
49                 };
50                 int steps;
51         };
52         union
53         {
54                 int val;
55                 int steps;
56                 int timeout;
57                 int voltage;
58                 int tone;
59                 int toneburst;
60                 int msec;
61                 int mode;
62                 rotor measure;
63                 eDVBDiseqcCommand diseqc;
64                 pair compare;
65         };
66         eSecCommand( int cmd )
67                 :cmd(cmd)
68         {}
69         eSecCommand( int cmd, int val )
70                 :cmd(cmd), val(val)
71         {}
72         eSecCommand( int cmd, eDVBDiseqcCommand diseqc )
73                 :cmd(cmd), diseqc(diseqc)
74         {}
75         eSecCommand( int cmd, rotor measure )
76                 :cmd(cmd), measure(measure)
77         {}
78         eSecCommand( int cmd, pair compare )
79                 :cmd(cmd), compare(compare)
80         {}
81         eSecCommand()
82                 :cmd(NONE)
83         {}
84 };
85
86 class eSecCommandList
87 {
88         typedef std::list<eSecCommand> List;
89         List secSequence;
90 public:
91         typedef List::iterator iterator;
92 private:
93         iterator cur;
94 public:
95         eSecCommandList()
96                 :cur(secSequence.end())
97         {
98         }
99         void push_front(const eSecCommand &cmd)
100         {
101                 secSequence.push_front(cmd);
102         }
103         void push_back(const eSecCommand &cmd)
104         {
105                 secSequence.push_back(cmd);
106         }
107         void push_back(eSecCommandList &list)
108         {
109                 secSequence.insert(end(), list.begin(), list.end());
110         }
111         void clear()
112         {
113                 secSequence.clear();
114                 cur=secSequence.end();
115         }
116         inline iterator &current()
117         {
118                 return cur;
119         }
120         inline iterator begin()
121         {
122                 return secSequence.begin();
123         }
124         inline iterator end()
125         {
126                 return secSequence.end();
127         }
128         int size() const
129         {
130                 return secSequence.size();
131         }
132         operator bool() const
133         {
134                 return secSequence.size();
135         }
136 };
137 #endif
138
139 class eDVBSatelliteDiseqcParameters
140 {
141 #ifdef SWIG
142         eDVBSatelliteDiseqcParameters();
143         ~eDVBSatelliteDiseqcParameters();
144 #endif
145 public:
146         enum { AA=0, AB=1, BA=2, BB=3, SENDNO=4 /* and 0xF0 .. 0xFF*/  };       // DiSEqC Parameter
147         enum t_diseqc_mode { NONE=0, V1_0=1, V1_1=2, V1_2=3, SMATV=4 }; // DiSEqC Mode
148         enum t_toneburst_param { NO=0, A=1, B=2 };
149 #ifndef SWIG
150         __u8 m_committed_cmd;
151         t_diseqc_mode m_diseqc_mode;
152         t_toneburst_param m_toneburst_param;
153
154         __u8 m_repeats; // for cascaded switches
155         bool m_use_fast;        // send no DiSEqC on H/V or Lo/Hi change
156         bool m_seq_repeat;      // send the complete DiSEqC Sequence twice...
157         __u8 m_command_order;
158         /*      diseqc 1.0)
159                         0) commited, toneburst
160                         1) toneburst, committed
161                 diseqc > 1.0)
162                         2) committed, uncommitted, toneburst
163                         3) toneburst, committed, uncommitted
164                         4) uncommitted, committed, toneburst
165                         5) toneburst, uncommitted, committed */
166         __u8 m_uncommitted_cmd; // state of the 4 uncommitted switches..
167 #endif
168 };
169
170 class eDVBSatelliteSwitchParameters
171 {
172 #ifdef SWIG
173         eDVBSatelliteSwitchParameters();
174         ~eDVBSatelliteSwitchParameters();
175 #endif
176 public:
177         enum t_22khz_signal {   HILO=0, ON=1, OFF=2     }; // 22 Khz
178         enum t_voltage_mode     {       HV=0, _14V=1, _18V=2, _0V=3, HV_13=4 }; // 14/18 V
179 #ifndef SWIG
180         t_voltage_mode m_voltage_mode;
181         t_22khz_signal m_22khz_signal;
182         __u8 m_rotorPosNum; // 0 is disable.. then use gotoxx
183 #endif
184 };
185
186 class eDVBSatelliteRotorParameters
187 {
188 #ifdef SWIG
189         eDVBSatelliteRotorParameters();
190         ~eDVBSatelliteRotorParameters();
191 #endif
192 public:
193         enum { NORTH, SOUTH, EAST, WEST };
194         enum { FAST, SLOW };
195 #ifndef SWIG
196         eDVBSatelliteRotorParameters() { setDefaultOptions(); }
197
198         struct eDVBSatelliteRotorInputpowerParameters
199         {
200                 bool m_use;     // can we use rotor inputpower to detect rotor running state ?
201                 __u8 m_delta;   // delta between running and stopped rotor
202                 unsigned int m_turning_speed; // SLOW, FAST, or fast turning epoch
203         };
204         eDVBSatelliteRotorInputpowerParameters m_inputpower_parameters;
205
206         struct eDVBSatelliteRotorGotoxxParameters
207         {
208                 __u8 m_lo_direction;    // EAST, WEST
209                 __u8 m_la_direction;    // NORT, SOUTH
210                 double m_longitude;     // longitude for gotoXX? function
211                 double m_latitude;      // latitude for gotoXX? function
212         };
213         eDVBSatelliteRotorGotoxxParameters m_gotoxx_parameters;
214
215         void setDefaultOptions() // set default rotor options
216         {
217                 m_inputpower_parameters.m_turning_speed = FAST; // fast turning
218                 m_inputpower_parameters.m_use = true;
219                 m_inputpower_parameters.m_delta = 60;
220                 m_gotoxx_parameters.m_lo_direction = EAST;
221                 m_gotoxx_parameters.m_la_direction = NORTH;
222                 m_gotoxx_parameters.m_longitude = 0.0;
223                 m_gotoxx_parameters.m_latitude = 0.0;
224         }
225 #endif
226 };
227
228 class eDVBSatelliteLNBParameters
229 {
230 #ifdef SWIG
231         eDVBSatelliteLNBParameters();
232         ~eDVBSatelliteLNBParameters();
233 #endif
234 public:
235         enum t_12V_relais_state { OFF=0, ON };
236 #ifndef SWIG
237         t_12V_relais_state m_12V_relais_state;  // 12V relais output on/off
238
239         int m_slot_mask; // useable by slot ( 1 | 2 | 4...)
240
241         unsigned int m_lof_hi,  // for 2 band universal lnb 10600 Mhz (high band offset frequency)
242                                 m_lof_lo,       // for 2 band universal lnb  9750 Mhz (low band offset frequency)
243                                 m_lof_threshold;        // for 2 band universal lnb 11750 Mhz (band switch frequency)
244
245         bool m_increased_voltage; // use increased voltage ( 14/18V )
246
247         std::map<int, eDVBSatelliteSwitchParameters> m_satellites;
248         eDVBSatelliteDiseqcParameters m_diseqc_parameters;
249         eDVBSatelliteRotorParameters m_rotor_parameters;
250
251         int m_prio; // to override automatic tuner management ... -1 is Auto
252 #endif
253 public:
254 #define guard_offset_min -8000
255 #define guard_offset_max 8000
256 #define guard_offset_step 8000
257 #define MAX_SATCR 8
258 #define MAX_LNBNUM 32
259
260         int SatCR_positions;
261         int SatCR_idx;
262         unsigned int SatCRvco;
263         unsigned int UnicableTuningWord;
264         unsigned int UnicableConfigWord;
265         int old_frequency;
266         int old_polarisation;
267         int old_orbital_position;
268         int guard_offset_old;
269         int guard_offset;
270         int LNBNum;
271 };
272
273 class eDVBRegisteredFrontend;
274
275 class eDVBSatelliteEquipmentControl: public iDVBSatelliteEquipmentControl
276 {
277         DECLARE_REF(eDVBSatelliteEquipmentControl);
278 public:
279         enum {
280                 DELAY_AFTER_CONT_TONE_DISABLE_BEFORE_DISEQC=0,  // delay after continuous tone disable before diseqc command
281                 DELAY_AFTER_FINAL_CONT_TONE_CHANGE, // delay after continuous tone change before tune
282                 DELAY_AFTER_FINAL_VOLTAGE_CHANGE, // delay after voltage change at end of complete sequence
283                 DELAY_BETWEEN_DISEQC_REPEATS, // delay between repeated diseqc commands
284                 DELAY_AFTER_LAST_DISEQC_CMD, // delay after last diseqc command
285                 DELAY_AFTER_TONEBURST, // delay after toneburst
286                 DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS, // delay after enable voltage before transmit toneburst/diseqc
287                 DELAY_BETWEEN_SWITCH_AND_MOTOR_CMD, // delay after transmit toneburst / diseqc and before transmit motor command
288                 DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER, // delay after voltage change before measure idle input power
289                 DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_MOTOR_CMD, // delay after enable voltage before transmit motor command
290                 DELAY_AFTER_MOTOR_STOP_CMD, // delay after transmit motor stop
291                 DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MOTOR_CMD, // delay after voltage change before transmit motor command
292                 DELAY_BEFORE_SEQUENCE_REPEAT, // delay before the complete sequence is repeated (when enabled)
293                 MOTOR_COMMAND_RETRIES, // max transmit tries of rotor command when the rotor dont start turning (with power measurement)
294                 MOTOR_RUNNING_TIMEOUT, // max motor running time before timeout
295                 DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_SWITCH_CMDS, // delay after change voltage before transmit toneburst/diseqc
296                 DELAY_AFTER_DISEQC_RESET_CMD,
297                 DELAY_AFTER_DISEQC_PERIPHERIAL_POWERON_CMD,
298                 MAX_PARAMS
299         };
300 private:
301 #ifndef SWIG
302         static eDVBSatelliteEquipmentControl *instance;
303         eDVBSatelliteLNBParameters m_lnbs[144]; // i think its enough
304         int m_lnbidx; // current index for set parameters
305         std::map<int, eDVBSatelliteSwitchParameters>::iterator m_curSat;
306         eSmartPtrList<eDVBRegisteredFrontend> &m_avail_frontends, &m_avail_simulate_frontends;
307         int m_rotorMoving;
308         int m_not_linked_slot_mask;
309         bool m_canMeasureInputPower;
310 #endif
311 #ifdef SWIG
312         eDVBSatelliteEquipmentControl();
313         ~eDVBSatelliteEquipmentControl();
314 #endif
315         static int m_params[MAX_PARAMS];
316 public:
317 #ifndef SWIG
318         eDVBSatelliteEquipmentControl(eSmartPtrList<eDVBRegisteredFrontend> &avail_frontends, eSmartPtrList<eDVBRegisteredFrontend> &avail_simulate_frontends);
319         RESULT prepare(iDVBFrontend &frontend, FRONTENDPARAMETERS &parm, const eDVBFrontendParametersSatellite &sat, int frontend_id, unsigned int tunetimeout);
320         void prepareTurnOffSatCR(iDVBFrontend &frontend, int satcr); // used for unicable
321         int canTune(const eDVBFrontendParametersSatellite &feparm, iDVBFrontend *, int frontend_id, int *highest_score_lnb=0);
322         bool currentLNBValid() { return m_lnbidx > -1 && m_lnbidx < (int)(sizeof(m_lnbs) / sizeof(eDVBSatelliteLNBParameters)); }
323 #endif
324         static eDVBSatelliteEquipmentControl *getInstance() { return instance; }
325         static void setParam(int param, int value);
326         RESULT clear();
327 /* LNB Specific Parameters */
328         RESULT addLNB();
329         RESULT setLNBSlotMask(int slotmask);
330         RESULT setLNBLOFL(int lofl);
331         RESULT setLNBLOFH(int lofh);
332         RESULT setLNBThreshold(int threshold);
333         RESULT setLNBIncreasedVoltage(bool onoff);
334         RESULT setLNBPrio(int prio);
335         RESULT setLNBNum(int LNBNum);
336 /* DiSEqC Specific Parameters */
337         RESULT setDiSEqCMode(int diseqcmode);
338         RESULT setToneburst(int toneburst);
339         RESULT setRepeats(int repeats);
340         RESULT setCommittedCommand(int command);
341         RESULT setUncommittedCommand(int command);
342         RESULT setCommandOrder(int order);
343         RESULT setFastDiSEqC(bool onoff);
344         RESULT setSeqRepeat(bool onoff); // send the complete switch sequence twice (without rotor command)
345 /* Rotor Specific Parameters */
346         RESULT setLongitude(float longitude);
347         RESULT setLatitude(float latitude);
348         RESULT setLoDirection(int direction);
349         RESULT setLaDirection(int direction);
350         RESULT setUseInputpower(bool onoff);
351         RESULT setInputpowerDelta(int delta);  // delta between running and stopped rotor
352         RESULT setRotorTurningSpeed(int speed);  // set turning speed..
353 /* Unicable Specific Parameters */
354         RESULT setLNBSatCR(int SatCR_idx);
355         RESULT setLNBSatCRvco(int SatCRvco);
356         RESULT setLNBSatCRpositions(int SatCR_positions);
357         RESULT getLNBSatCR();
358         RESULT getLNBSatCRvco();
359         RESULT getLNBSatCRpositions();
360 /* Satellite Specific Parameters */
361         RESULT addSatellite(int orbital_position);
362         RESULT setVoltageMode(int mode);
363         RESULT setToneMode(int mode);
364         RESULT setRotorPosNum(int rotor_pos_num);
365 /* Tuner Specific Parameters */
366         RESULT setTunerLinked(int from, int to);
367         RESULT setTunerDepends(int from, int to);
368         void setSlotNotLinked(int tuner_no);
369
370         void setRotorMoving(int, bool); // called from the frontend's
371         bool isRotorMoving();
372         bool canMeasureInputPower() { return m_canMeasureInputPower; }
373 };
374
375 #endif