31415c4254923dd89ffc477b344f336b3c9093f6
[enigma2.git] / 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                 IF_ROTORPOS_VALID_GOTO,
23                 IF_TUNER_LOCKED_GOTO,
24                 IF_TONE_GOTO, IF_NOT_TONE_GOTO,
25                 START_TUNE_TIMEOUT
26         };
27         int cmd;
28         struct rotor
29         {
30                 int deltaA;   // difference in mA between running and stopped rotor
31                 int okcount;  // counter
32                 int steps;    // goto steps
33                 int direction;
34         };
35         struct pair
36         {
37                 union
38                 {
39                         int voltage;
40                         int tone;
41                         int val;
42                 };
43                 int steps;
44         };
45         union
46         {
47                 int val;
48                 int steps;
49                 int timeout;
50                 int voltage;
51                 int tone;
52                 int toneburst;
53                 int msec;
54                 int mode;
55                 rotor measure;
56                 eDVBDiseqcCommand diseqc;
57                 pair compare;
58         };
59         eSecCommand( int cmd )
60                 :cmd(cmd)
61         {}
62         eSecCommand( int cmd, int val )
63                 :cmd(cmd), val(val)
64         {}
65         eSecCommand( int cmd, eDVBDiseqcCommand diseqc )
66                 :cmd(cmd), diseqc(diseqc)
67         {}
68         eSecCommand( int cmd, rotor measure )
69                 :cmd(cmd), measure(measure)
70         {}
71         eSecCommand( int cmd, pair compare )
72                 :cmd(cmd), compare(compare)
73         {}
74         eSecCommand()
75                 :cmd(NONE)
76         {}
77 };
78
79 class eSecCommandList
80 {
81         typedef std::list<eSecCommand> List;
82         List secSequence;
83 public:
84         typedef List::iterator iterator;
85 private:
86         iterator cur;
87 public:
88         eSecCommandList()
89                 :cur(secSequence.end())
90         {
91         }
92         void push_front(const eSecCommand &cmd)
93         {
94                 secSequence.push_front(cmd);
95         }
96         void push_back(const eSecCommand &cmd)
97         {
98                 secSequence.push_back(cmd);
99         }
100         void clear()
101         {
102                 secSequence.clear();
103                 cur=secSequence.end();
104         }
105         inline iterator &current()
106         {
107                 return cur;
108         }
109         inline iterator begin()
110         {
111                 return secSequence.begin();
112         }
113         inline iterator end()
114         {
115                 return secSequence.end();
116         }
117         int size() const
118         {
119                 return secSequence.size();
120         }
121         operator bool() const
122         {
123                 return secSequence.size();
124         }
125 };
126 #endif
127
128 class eDVBSatelliteDiseqcParameters
129 {
130 #ifdef SWIG
131         eDVBSatelliteDiseqcParameters();
132         ~eDVBSatelliteDiseqcParameters();
133 #endif
134 public:
135         enum { AA=0, AB=1, BA=2, BB=3, SENDNO=4 /* and 0xF0 .. 0xFF*/  };       // DiSEqC Parameter
136         enum t_diseqc_mode { NONE=0, V1_0=1, V1_1=2, V1_2=3, SMATV=4 }; // DiSEqC Mode
137         enum t_toneburst_param { NO=0, A=1, B=2 };
138 #ifndef SWIG
139         __u8 m_committed_cmd;
140         t_diseqc_mode m_diseqc_mode;
141         t_toneburst_param m_toneburst_param;
142
143         __u8 m_repeats; // for cascaded switches
144         bool m_use_fast;        // send no DiSEqC on H/V or Lo/Hi change
145         bool m_seq_repeat;      // send the complete DiSEqC Sequence twice...
146         __u8 m_command_order;
147         /*      diseqc 1.0)
148                         0) commited, toneburst
149                         1) toneburst, committed
150                 diseqc > 1.0)
151                         2) committed, uncommitted, toneburst
152                         3) toneburst, committed, uncommitted
153                         4) uncommitted, committed, toneburst
154                         5) toneburst, uncommitted, committed */
155         __u8 m_uncommitted_cmd; // state of the 4 uncommitted switches..
156 #endif
157 };
158
159 class eDVBSatelliteSwitchParameters
160 {
161 #ifdef SWIG
162         eDVBSatelliteSwitchParameters();
163         ~eDVBSatelliteSwitchParameters();
164 #endif
165 public:
166         enum t_22khz_signal {   HILO=0, ON=1, OFF=2     }; // 22 Khz
167         enum t_voltage_mode     {       HV=0, _14V=1, _18V=2, _0V=3 }; // 14/18 V
168 #ifndef SWIG
169         t_voltage_mode m_voltage_mode;
170         t_22khz_signal m_22khz_signal;
171         __u8 m_rotorPosNum; // 0 is disable.. then use gotoxx
172 #endif
173 };
174
175 class eDVBSatelliteRotorParameters
176 {
177 #ifdef SWIG
178         eDVBSatelliteRotorParameters();
179         ~eDVBSatelliteRotorParameters();
180 #endif
181 public:
182         enum { NORTH, SOUTH, EAST, WEST };
183 #ifndef SWIG
184         eDVBSatelliteRotorParameters() { setDefaultOptions(); }
185
186         struct eDVBSatelliteRotorInputpowerParameters
187         {
188                 bool m_use;     // can we use rotor inputpower to detect rotor running state ?
189                 __u8 m_delta;   // delta between running and stopped rotor
190         };
191         eDVBSatelliteRotorInputpowerParameters m_inputpower_parameters;
192
193         struct eDVBSatelliteRotorGotoxxParameters
194         {
195                 __u8 m_lo_direction;    // EAST, WEST
196                 __u8 m_la_direction;    // NORT, SOUTH
197                 double m_longitude;     // longitude for gotoXX? function
198                 double m_latitude;      // latitude for gotoXX? function
199         };
200         eDVBSatelliteRotorGotoxxParameters m_gotoxx_parameters;
201
202         void setDefaultOptions() // set default rotor options
203         {
204                 m_inputpower_parameters.m_use = true;
205                 m_inputpower_parameters.m_delta = 60;
206                 m_gotoxx_parameters.m_lo_direction = EAST;
207                 m_gotoxx_parameters.m_la_direction = NORTH;
208                 m_gotoxx_parameters.m_longitude = 0.0;
209                 m_gotoxx_parameters.m_latitude = 0.0;
210         }
211 #endif
212 };
213
214 class eDVBSatelliteLNBParameters
215 {
216 #ifdef SWIG
217         eDVBSatelliteLNBParameters();
218         ~eDVBSatelliteLNBParameters();
219 #endif
220 public:
221         enum t_12V_relais_state { OFF=0, ON };
222 #ifndef SWIG
223         t_12V_relais_state m_12V_relais_state;  // 12V relais output on/off
224
225         __u8 slot_mask; // useable by slot ( 1 | 2 | 4...)
226
227         unsigned int m_lof_hi,  // for 2 band universal lnb 10600 Mhz (high band offset frequency)
228                                 m_lof_lo,       // for 2 band universal lnb  9750 Mhz (low band offset frequency)
229                                 m_lof_threshold;        // for 2 band universal lnb 11750 Mhz (band switch frequency)
230
231         bool m_increased_voltage; // use increased voltage ( 14/18V )
232
233         std::map<int, eDVBSatelliteSwitchParameters> m_satellites;
234         eDVBSatelliteDiseqcParameters m_diseqc_parameters;
235         eDVBSatelliteRotorParameters m_rotor_parameters;
236 #endif
237 };
238
239 class eDVBRegisteredFrontend;
240
241 class eDVBSatelliteEquipmentControl: public iDVBSatelliteEquipmentControl
242 {
243 public:
244         enum {
245                 DELAY_AFTER_CONT_TONE=0,  // delay after continuous tone change
246                 DELAY_AFTER_FINAL_VOLTAGE_CHANGE, // delay after voltage change at end of complete sequence
247                 DELAY_BETWEEN_DISEQC_REPEATS, // delay between repeated diseqc commands
248                 DELAY_AFTER_LAST_DISEQC_CMD, // delay after last diseqc command
249                 DELAY_AFTER_TONEBURST, // delay after toneburst
250                 DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS, // delay after enable voltage before transmit toneburst/diseqc
251                 DELAY_BETWEEN_SWITCH_AND_MOTOR_CMD, // delay after transmit toneburst / diseqc and before transmit motor command
252                 DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER, // delay after voltage change before measure idle input power
253                 DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_MOTOR_CMD, // delay after enable voltage before transmit motor command
254                 DELAY_AFTER_MOTOR_STOP_CMD, // delay after transmit motor stop
255                 DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MOTOR_CMD, // delay after voltage change before transmit motor command
256                 MOTOR_COMMAND_RETRIES, // max transmit tries of rotor command when the rotor dont start turning (with power measurement)
257                 MOTOR_RUNNING_TIMEOUT, // max motor running time before timeout
258                 DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_SWITCH_CMDS, // delay after change voltage before transmit toneburst/diseqc
259                 MAX_PARAMS
260         };
261 private:
262 #ifndef SWIG
263         static eDVBSatelliteEquipmentControl *instance;
264         eDVBSatelliteLNBParameters m_lnbs[128]; // i think its enough
265         int m_lnbidx; // current index for set parameters
266         std::map<int, eDVBSatelliteSwitchParameters>::iterator m_curSat;
267         eSmartPtrList<eDVBRegisteredFrontend> &m_avail_frontends;
268         bool m_rotorMoving;
269         int m_not_linked_slot_mask;
270 #endif
271 #ifdef SWIG
272         eDVBSatelliteEquipmentControl();
273         ~eDVBSatelliteEquipmentControl();
274 #endif
275         static int m_params[MAX_PARAMS];
276 public:
277 #ifndef SWIG
278         eDVBSatelliteEquipmentControl(eSmartPtrList<eDVBRegisteredFrontend> &avail_frontends);
279         DECLARE_REF(eDVBSatelliteEquipmentControl);
280         RESULT prepare(iDVBFrontend &frontend, FRONTENDPARAMETERS &parm, const eDVBFrontendParametersSatellite &sat, int frontend_id);
281         int canTune(const eDVBFrontendParametersSatellite &feparm, iDVBFrontend *, int frontend_id);
282         bool currentLNBValid() { return m_lnbidx > -1 && m_lnbidx < (int)(sizeof(m_lnbs) / sizeof(eDVBSatelliteLNBParameters)); }
283 #endif
284         static eDVBSatelliteEquipmentControl *getInstance() { return instance; }
285         static void setParam(int param, int value);
286         RESULT clear();
287 /* LNB Specific Parameters */
288         RESULT addLNB();
289         RESULT setLNBSlotMask(int slotmask);
290         RESULT setLNBLOFL(int lofl);
291         RESULT setLNBLOFH(int lofh);
292         RESULT setLNBThreshold(int threshold);
293         RESULT setLNBIncreasedVoltage(bool onoff);
294 /* DiSEqC Specific Parameters */
295         RESULT setDiSEqCMode(int diseqcmode);
296         RESULT setToneburst(int toneburst);
297         RESULT setRepeats(int repeats);
298         RESULT setCommittedCommand(int command);
299         RESULT setUncommittedCommand(int command);
300         RESULT setCommandOrder(int order);
301         RESULT setFastDiSEqC(bool onoff);
302         RESULT setSeqRepeat(bool onoff); // send the complete switch sequence twice (without rotor command)
303 /* Rotor Specific Parameters */
304         RESULT setLongitude(float longitude);
305         RESULT setLatitude(float latitude);
306         RESULT setLoDirection(int direction);
307         RESULT setLaDirection(int direction);
308         RESULT setUseInputpower(bool onoff);
309         RESULT setInputpowerDelta(int delta);  // delta between running and stopped rotor
310 /* Satellite Specific Parameters */
311         RESULT addSatellite(int orbital_position);
312         RESULT setVoltageMode(int mode);
313         RESULT setToneMode(int mode);
314         RESULT setRotorPosNum(int rotor_pos_num);
315 /* Tuner Specific Parameters */
316         RESULT setTunerLinked(int from, int to);
317         RESULT setTunerDepends(int from, int to);
318         void setSlotNotLinked(int tuner_no);
319
320         PyObject *get_exclusive_satellites(int tu1, int tu2);
321         void setRotorMoving(bool); // called from the frontend's
322         bool isRotorMoving();
323 };
324
325 #endif