Clean up compiler warnings when compiling on 64-bit systems. These are mostly fixing...
[ffado.git] / libffado / src / libieee1394 / CycleTimerHelper.h
blobcc25250a60a69472bcdaf36c33202e2fb26c2da0
1 /*
2 * Copyright (C) 2005-2008 by Pieter Palmers
4 * This file is part of FFADO
5 * FFADO = Free Firewire (pro-)audio drivers for linux
7 * FFADO is based upon FreeBoB
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 2 of the License, or
12 * (at your option) version 3 of the License.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #ifndef __CYCLETIMERHELPER_H__
24 #define __CYCLETIMERHELPER_H__
26 /**
27 * Implements a DLL based mechanism to track the cycle timer
28 * register of the Ieee1394Service pointed to by the 'parent'.
30 * A DLL mechanism is performance-wise better suited, since it
31 * does not require an OS call. Hence we run a thread to update
32 * the DLL at regular time intervals, and then use the DLL to
33 * generate a cycle timer estimate for the parent to pass on
34 * to it's clients.
36 * The idea is to make reading the cycle timer real-time safe,
37 * which isn't (necessarily)the case for the direct raw1394 call,
38 * since it's a kernel call that could block (although the current
39 * implementation is RT safe).
41 * This also allows us to run on systems not having the
42 * raw1394_read_cycle_timer kernel call. We can always do a normal
43 * read of our own cycle timer register, but that's not very accurate.
44 * The accuracy is improved by this DLL mechanism. Still not as good
45 * as when using the raw1394_read_cycle_timer call, but anyway.
47 * On the long run this code will also allow us to map system time
48 * on to 1394 time for the current host controller, hence enabling
49 * different clock domains to operate together.
52 #include "libutil/Thread.h"
53 #include "libutil/SystemTimeSource.h"
54 #include "cycletimer.h"
56 #include "libutil/Functors.h"
57 #include "libutil/Mutex.h"
59 #include "debugmodule/debugmodule.h"
61 class Ieee1394Service;
63 class CycleTimerHelper : public Util::RunnableInterface
65 public:
66 CycleTimerHelper(Ieee1394Service &, unsigned int);
67 CycleTimerHelper(Ieee1394Service &, unsigned int, bool rt, int prio);
68 ~CycleTimerHelper();
70 virtual bool Init();
71 virtual bool Execute();
73 bool setThreadParameters(bool rt, int priority);
74 bool Start();
76 /**
77 * @brief get the current cycle timer value (in ticks)
78 * @note thread safe
80 uint32_t getCycleTimerTicks();
82 /**
83 * @brief get the cycle timer value for a specific time instant (in ticks)
84 * @note thread safe
86 uint32_t getCycleTimerTicks(uint64_t now);
88 /**
89 * @brief get the current cycle timer value (in CTR format)
90 * @note thread safe
92 uint32_t getCycleTimer();
94 /**
95 * @brief get the cycle timer value for a specific time instant (in CTR format)
96 * @note thread safe
98 uint32_t getCycleTimer(uint64_t now);
101 * @brief get the system time for a specific cycle timer value (in ticks)
102 * @note thread safe
104 uint64_t getSystemTimeForCycleTimerTicks(uint32_t ticks);
107 * @brief get the system time for a specific cycle timer value (in CTR format)
108 * @note thread safe
110 uint64_t getSystemTimeForCycleTimer(uint32_t ctr);
112 float getRate();
113 float getNominalRate();
116 * @brief handle a bus reset
118 void busresetHandler();
120 void setVerboseLevel(int l);
122 private:
123 bool readCycleTimerWithRetry(uint32_t *cycle_timer, uint64_t *local_time, int ntries);
124 bool initValues();
126 #if IEEE1394SERVICE_USE_CYCLETIMER_DLL
127 bool initDLL();
128 #endif
130 Ieee1394Service &m_Parent;
131 // parameters
132 uint32_t m_ticks_per_update;
133 uint32_t m_usecs_per_update;
135 float m_avg_wakeup_delay;
137 // state variables
138 double m_dll_e2;
140 double m_current_time_usecs;
141 double m_next_time_usecs;
142 double m_current_time_ticks;
143 double m_next_time_ticks;
144 bool m_first_run;
145 ffado_microsecs_t m_sleep_until;
147 uint32_t m_cycle_timer_prev;
148 uint64_t m_cycle_timer_ticks_prev;
150 double m_dll_coeff_b;
151 double m_dll_coeff_c;
153 // cached vars used for computation
154 struct compute_vars {
155 uint64_t usecs;
156 uint64_t ticks;
157 double rate;
160 #define CTRHELPER_NB_SHADOW_VARS 8
161 struct compute_vars m_shadow_vars[CTRHELPER_NB_SHADOW_VARS];
162 volatile unsigned int m_current_shadow_idx;
164 // Threading
165 Util::Thread * m_Thread;
166 bool m_realtime;
167 unsigned int m_priority;
168 Util::Mutex* m_update_lock;
170 // busreset handling
171 Util::Functor* m_busreset_functor;
172 bool m_unhandled_busreset;
174 #ifdef DEBUG
175 uint64_t m_last_loop_entry;
176 int m_successive_short_loops;
177 #endif
179 // debug stuff
180 DECLARE_DEBUG_MODULE;
182 #endif