4 #include <lib/dvb/idvb.h>
11 enum { modeStatic, modeDynamic };
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,
25 IF_TONE_GOTO, IF_NOT_TONE_GOTO,
29 DELAYED_CLOSE_FRONTEND
35 int deltaA; // difference in mA between running and stopped rotor
38 int okcount; // counter
39 int steps; // goto steps
63 eDVBDiseqcCommand diseqc;
66 eSecCommand( int cmd )
69 eSecCommand( int cmd, int val )
72 eSecCommand( int cmd, eDVBDiseqcCommand diseqc )
73 :cmd(cmd), diseqc(diseqc)
75 eSecCommand( int cmd, rotor measure )
76 :cmd(cmd), measure(measure)
78 eSecCommand( int cmd, pair compare )
79 :cmd(cmd), compare(compare)
88 typedef std::list<eSecCommand> List;
91 typedef List::iterator iterator;
96 :cur(secSequence.end())
99 void push_front(const eSecCommand &cmd)
101 secSequence.push_front(cmd);
103 void push_back(const eSecCommand &cmd)
105 secSequence.push_back(cmd);
107 void push_back(eSecCommandList &list)
109 secSequence.insert(end(), list.begin(), list.end());
114 cur=secSequence.end();
116 inline iterator ¤t()
120 inline iterator begin()
122 return secSequence.begin();
124 inline iterator end()
126 return secSequence.end();
130 return secSequence.size();
132 operator bool() const
134 return secSequence.size();
139 class eDVBSatelliteDiseqcParameters
142 eDVBSatelliteDiseqcParameters();
143 ~eDVBSatelliteDiseqcParameters();
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 };
150 __u8 m_committed_cmd;
151 t_diseqc_mode m_diseqc_mode;
152 t_toneburst_param m_toneburst_param;
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;
159 0) commited, toneburst
160 1) toneburst, committed
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..
170 class eDVBSatelliteSwitchParameters
173 eDVBSatelliteSwitchParameters();
174 ~eDVBSatelliteSwitchParameters();
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
180 t_voltage_mode m_voltage_mode;
181 t_22khz_signal m_22khz_signal;
182 __u8 m_rotorPosNum; // 0 is disable.. then use gotoxx
186 class eDVBSatelliteRotorParameters
189 eDVBSatelliteRotorParameters();
190 ~eDVBSatelliteRotorParameters();
193 enum { NORTH, SOUTH, EAST, WEST };
196 eDVBSatelliteRotorParameters() { setDefaultOptions(); }
198 struct eDVBSatelliteRotorInputpowerParameters
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
204 eDVBSatelliteRotorInputpowerParameters m_inputpower_parameters;
206 struct eDVBSatelliteRotorGotoxxParameters
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
213 eDVBSatelliteRotorGotoxxParameters m_gotoxx_parameters;
215 void setDefaultOptions() // set default rotor options
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;
228 class eDVBSatelliteLNBParameters
231 eDVBSatelliteLNBParameters();
232 ~eDVBSatelliteLNBParameters();
235 enum t_12V_relais_state { OFF=0, ON };
237 t_12V_relais_state m_12V_relais_state; // 12V relais output on/off
239 int m_slot_mask; // useable by slot ( 1 | 2 | 4...)
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)
245 bool m_increased_voltage; // use increased voltage ( 14/18V )
247 std::map<int, eDVBSatelliteSwitchParameters> m_satellites;
248 eDVBSatelliteDiseqcParameters m_diseqc_parameters;
249 eDVBSatelliteRotorParameters m_rotor_parameters;
251 int m_prio; // to override automatic tuner management ... -1 is Auto
254 #define guard_offset_min -8000
255 #define guard_offset_max 8000
256 #define guard_offset_step 8000
258 #define MAX_LNBNUM 32
262 unsigned int SatCRvco;
263 unsigned int UnicableTuningWord;
264 unsigned int UnicableConfigWord;
266 int old_polarisation;
267 int old_orbital_position;
268 int guard_offset_old;
273 class eDVBRegisteredFrontend;
275 class eDVBSatelliteEquipmentControl: public iDVBSatelliteEquipmentControl
277 DECLARE_REF(eDVBSatelliteEquipmentControl);
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,
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;
308 int m_not_linked_slot_mask;
309 bool m_canMeasureInputPower;
312 eDVBSatelliteEquipmentControl();
313 ~eDVBSatelliteEquipmentControl();
315 static int m_params[MAX_PARAMS];
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)); }
324 static eDVBSatelliteEquipmentControl *getInstance() { return instance; }
325 static void setParam(int param, int value);
327 /* LNB Specific Parameters */
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);
370 void setRotorMoving(int, bool); // called from the frontend's
371 bool isRotorMoving();
372 bool canMeasureInputPower() { return m_canMeasureInputPower; }