blob: 52effb23346be93232e1b67dd4e6068d1bb5d4b9 [file] [log] [blame]
Glenn Kasten97b5d0d2012-03-23 18:54:19 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "FastMixer"
18//#define LOG_NDEBUG 0
19
20#include <sys/atomics.h>
21#include <time.h>
22#include <utils/Log.h>
Glenn Kastend8e6fd32012-05-07 11:07:57 -070023#include <utils/Trace.h>
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070024#include <system/audio.h>
25#ifdef FAST_MIXER_STATISTICS
26#include <cpustats/CentralTendencyStatistics.h>
Glenn Kasten42d45cf2012-05-02 10:34:47 -070027#include <cpustats/ThreadCpuUsage.h>
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070028#endif
29#include "AudioMixer.h"
30#include "FastMixer.h"
31
32#define FAST_HOT_IDLE_NS 1000000L // 1 ms: time to sleep while hot idling
33#define FAST_DEFAULT_NS 999999999L // ~1 sec: default time to sleep
Glenn Kasten288ed212012-04-25 17:52:27 -070034#define MAX_WARMUP_CYCLES 10 // maximum number of loop cycles to wait for warmup
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070035
36namespace android {
37
38// Fast mixer thread
39bool FastMixer::threadLoop()
40{
41 static const FastMixerState initial;
42 const FastMixerState *previous = &initial, *current = &initial;
43 FastMixerState preIdle; // copy of state before we went into idle
44 struct timespec oldTs = {0, 0};
45 bool oldTsValid = false;
46 long slopNs = 0; // accumulated time we've woken up too early (> 0) or too late (< 0)
47 long sleepNs = -1; // -1: busy wait, 0: sched_yield, > 0: nanosleep
48 int fastTrackNames[FastMixerState::kMaxFastTracks]; // handles used by mixer to identify tracks
49 int generations[FastMixerState::kMaxFastTracks]; // last observed mFastTracks[i].mGeneration
50 unsigned i;
51 for (i = 0; i < FastMixerState::kMaxFastTracks; ++i) {
52 fastTrackNames[i] = -1;
53 generations[i] = 0;
54 }
55 NBAIO_Sink *outputSink = NULL;
56 int outputSinkGen = 0;
57 AudioMixer* mixer = NULL;
58 short *mixBuffer = NULL;
59 enum {UNDEFINED, MIXED, ZEROED} mixBufferState = UNDEFINED;
60 NBAIO_Format format = Format_Invalid;
61 unsigned sampleRate = 0;
62 int fastTracksGen = 0;
63 long periodNs = 0; // expected period; the time required to render one mix buffer
Glenn Kasten288ed212012-04-25 17:52:27 -070064 long underrunNs = 0; // underrun likely when write cycle is greater than this value
65 long overrunNs = 0; // overrun likely when write cycle is less than this value
66 long warmupNs = 0; // warmup complete when write cycle is greater than to this value
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070067 FastMixerDumpState dummyDumpState, *dumpState = &dummyDumpState;
68 bool ignoreNextOverrun = true; // used to ignore initial overrun and first after an underrun
69#ifdef FAST_MIXER_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -070070 struct timespec oldLoad = {0, 0}; // previous value of clock_gettime(CLOCK_THREAD_CPUTIME_ID)
71 bool oldLoadValid = false; // whether oldLoad is valid
72 uint32_t bounds = 0;
73 bool full = false; // whether we have collected at least kSamplingN samples
74 ThreadCpuUsage tcu; // for reading the current CPU clock frequency in kHz
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070075#endif
76 unsigned coldGen = 0; // last observed mColdGen
Glenn Kasten288ed212012-04-25 17:52:27 -070077 bool isWarm = false; // true means ready to mix, false means wait for warmup before mixing
78 struct timespec measuredWarmupTs = {0, 0}; // how long did it take for warmup to complete
79 uint32_t warmupCycles = 0; // counter of number of loop cycles required to warmup
Glenn Kastenfbae5da2012-05-21 09:17:20 -070080 NBAIO_Sink* teeSink = NULL; // if non-NULL, then duplicate write() to this non-blocking sink
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070081
82 for (;;) {
83
84 // either nanosleep, sched_yield, or busy wait
85 if (sleepNs >= 0) {
86 if (sleepNs > 0) {
87 ALOG_ASSERT(sleepNs < 1000000000);
88 const struct timespec req = {0, sleepNs};
89 nanosleep(&req, NULL);
90 } else {
91 sched_yield();
92 }
93 }
94 // default to long sleep for next cycle
95 sleepNs = FAST_DEFAULT_NS;
96
97 // poll for state change
98 const FastMixerState *next = mSQ.poll();
99 if (next == NULL) {
100 // continue to use the default initial state until a real state is available
101 ALOG_ASSERT(current == &initial && previous == &initial);
102 next = current;
103 }
104
105 FastMixerState::Command command = next->mCommand;
106 if (next != current) {
107
108 // As soon as possible of learning of a new dump area, start using it
109 dumpState = next->mDumpState != NULL ? next->mDumpState : &dummyDumpState;
Glenn Kastenfbae5da2012-05-21 09:17:20 -0700110 teeSink = next->mTeeSink;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700111
112 // We want to always have a valid reference to the previous (non-idle) state.
113 // However, the state queue only guarantees access to current and previous states.
114 // So when there is a transition from a non-idle state into an idle state, we make a
115 // copy of the last known non-idle state so it is still available on return from idle.
116 // The possible transitions are:
117 // non-idle -> non-idle update previous from current in-place
118 // non-idle -> idle update previous from copy of current
119 // idle -> idle don't update previous
120 // idle -> non-idle don't update previous
121 if (!(current->mCommand & FastMixerState::IDLE)) {
122 if (command & FastMixerState::IDLE) {
123 preIdle = *current;
124 current = &preIdle;
125 oldTsValid = false;
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700126 oldLoadValid = false;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700127 ignoreNextOverrun = true;
128 }
129 previous = current;
130 }
131 current = next;
132 }
133#if !LOG_NDEBUG
134 next = NULL; // not referenced again
135#endif
136
137 dumpState->mCommand = command;
138
139 switch (command) {
140 case FastMixerState::INITIAL:
141 case FastMixerState::HOT_IDLE:
142 sleepNs = FAST_HOT_IDLE_NS;
143 continue;
144 case FastMixerState::COLD_IDLE:
145 // only perform a cold idle command once
Glenn Kasten21e8c502012-04-12 09:39:42 -0700146 // FIXME consider checking previous state and only perform if previous != COLD_IDLE
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700147 if (current->mColdGen != coldGen) {
148 int32_t *coldFutexAddr = current->mColdFutexAddr;
149 ALOG_ASSERT(coldFutexAddr != NULL);
150 int32_t old = android_atomic_dec(coldFutexAddr);
151 if (old <= 0) {
152 __futex_syscall4(coldFutexAddr, FUTEX_WAIT_PRIVATE, old - 1, NULL);
153 }
Glenn Kasten288ed212012-04-25 17:52:27 -0700154 // This may be overly conservative; there could be times that the normal mixer
155 // requests such a brief cold idle that it doesn't require resetting this flag.
156 isWarm = false;
157 measuredWarmupTs.tv_sec = 0;
158 measuredWarmupTs.tv_nsec = 0;
159 warmupCycles = 0;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700160 sleepNs = -1;
161 coldGen = current->mColdGen;
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700162 bounds = 0;
163 full = false;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700164 } else {
165 sleepNs = FAST_HOT_IDLE_NS;
166 }
167 continue;
168 case FastMixerState::EXIT:
169 delete mixer;
170 delete[] mixBuffer;
171 return false;
172 case FastMixerState::MIX:
173 case FastMixerState::WRITE:
174 case FastMixerState::MIX_WRITE:
175 break;
176 default:
177 LOG_FATAL("bad command %d", command);
178 }
179
180 // there is a non-idle state available to us; did the state change?
181 size_t frameCount = current->mFrameCount;
182 if (current != previous) {
183
184 // handle state change here, but since we want to diff the state,
185 // we're prepared for previous == &initial the first time through
186 unsigned previousTrackMask;
187
188 // check for change in output HAL configuration
189 NBAIO_Format previousFormat = format;
190 if (current->mOutputSinkGen != outputSinkGen) {
191 outputSink = current->mOutputSink;
192 outputSinkGen = current->mOutputSinkGen;
193 if (outputSink == NULL) {
194 format = Format_Invalid;
195 sampleRate = 0;
196 } else {
197 format = outputSink->format();
198 sampleRate = Format_sampleRate(format);
199 ALOG_ASSERT(Format_channelCount(format) == 2);
200 }
Glenn Kasten21e8c502012-04-12 09:39:42 -0700201 dumpState->mSampleRate = sampleRate;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700202 }
203
204 if ((format != previousFormat) || (frameCount != previous->mFrameCount)) {
205 // FIXME to avoid priority inversion, don't delete here
206 delete mixer;
207 mixer = NULL;
208 delete[] mixBuffer;
209 mixBuffer = NULL;
210 if (frameCount > 0 && sampleRate > 0) {
211 // FIXME new may block for unbounded time at internal mutex of the heap
212 // implementation; it would be better to have normal mixer allocate for us
213 // to avoid blocking here and to prevent possible priority inversion
214 mixer = new AudioMixer(frameCount, sampleRate, FastMixerState::kMaxFastTracks);
215 mixBuffer = new short[frameCount * 2];
216 periodNs = (frameCount * 1000000000LL) / sampleRate; // 1.00
217 underrunNs = (frameCount * 1750000000LL) / sampleRate; // 1.75
218 overrunNs = (frameCount * 250000000LL) / sampleRate; // 0.25
Glenn Kasten288ed212012-04-25 17:52:27 -0700219 warmupNs = (frameCount * 500000000LL) / sampleRate; // 0.50
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700220 } else {
221 periodNs = 0;
222 underrunNs = 0;
223 overrunNs = 0;
224 }
225 mixBufferState = UNDEFINED;
226#if !LOG_NDEBUG
227 for (i = 0; i < FastMixerState::kMaxFastTracks; ++i) {
228 fastTrackNames[i] = -1;
229 }
230#endif
231 // we need to reconfigure all active tracks
232 previousTrackMask = 0;
233 fastTracksGen = current->mFastTracksGen - 1;
Glenn Kasten21e8c502012-04-12 09:39:42 -0700234 dumpState->mFrameCount = frameCount;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700235 } else {
236 previousTrackMask = previous->mTrackMask;
237 }
238
239 // check for change in active track set
240 unsigned currentTrackMask = current->mTrackMask;
241 if (current->mFastTracksGen != fastTracksGen) {
242 ALOG_ASSERT(mixBuffer != NULL);
243 int name;
244
245 // process removed tracks first to avoid running out of track names
246 unsigned removedTracks = previousTrackMask & ~currentTrackMask;
247 while (removedTracks != 0) {
248 i = __builtin_ctz(removedTracks);
249 removedTracks &= ~(1 << i);
250 const FastTrack* fastTrack = &current->mFastTracks[i];
Glenn Kasten288ed212012-04-25 17:52:27 -0700251 ALOG_ASSERT(fastTrack->mBufferProvider == NULL);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700252 if (mixer != NULL) {
253 name = fastTrackNames[i];
254 ALOG_ASSERT(name >= 0);
255 mixer->deleteTrackName(name);
256 }
257#if !LOG_NDEBUG
258 fastTrackNames[i] = -1;
259#endif
Glenn Kasten288ed212012-04-25 17:52:27 -0700260 // don't reset track dump state, since other side is ignoring it
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700261 generations[i] = fastTrack->mGeneration;
262 }
263
264 // now process added tracks
265 unsigned addedTracks = currentTrackMask & ~previousTrackMask;
266 while (addedTracks != 0) {
267 i = __builtin_ctz(addedTracks);
268 addedTracks &= ~(1 << i);
269 const FastTrack* fastTrack = &current->mFastTracks[i];
270 AudioBufferProvider *bufferProvider = fastTrack->mBufferProvider;
271 ALOG_ASSERT(bufferProvider != NULL && fastTrackNames[i] == -1);
272 if (mixer != NULL) {
Jean-Michel Trivi9bd23222012-04-16 13:43:48 -0700273 // calling getTrackName with default channel mask
274 name = mixer->getTrackName(AUDIO_CHANNEL_OUT_STEREO);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700275 ALOG_ASSERT(name >= 0);
276 fastTrackNames[i] = name;
277 mixer->setBufferProvider(name, bufferProvider);
278 mixer->setParameter(name, AudioMixer::TRACK, AudioMixer::MAIN_BUFFER,
279 (void *) mixBuffer);
280 // newly allocated track names default to full scale volume
Glenn Kasten21e8c502012-04-12 09:39:42 -0700281 if (fastTrack->mSampleRate != 0 && fastTrack->mSampleRate != sampleRate) {
282 mixer->setParameter(name, AudioMixer::RESAMPLE,
283 AudioMixer::SAMPLE_RATE, (void*) fastTrack->mSampleRate);
284 }
285 mixer->setParameter(name, AudioMixer::TRACK, AudioMixer::CHANNEL_MASK,
286 (void *) fastTrack->mChannelMask);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700287 mixer->enable(name);
288 }
289 generations[i] = fastTrack->mGeneration;
290 }
291
292 // finally process modified tracks; these use the same slot
293 // but may have a different buffer provider or volume provider
294 unsigned modifiedTracks = currentTrackMask & previousTrackMask;
295 while (modifiedTracks != 0) {
296 i = __builtin_ctz(modifiedTracks);
297 modifiedTracks &= ~(1 << i);
298 const FastTrack* fastTrack = &current->mFastTracks[i];
299 if (fastTrack->mGeneration != generations[i]) {
300 AudioBufferProvider *bufferProvider = fastTrack->mBufferProvider;
301 ALOG_ASSERT(bufferProvider != NULL);
302 if (mixer != NULL) {
303 name = fastTrackNames[i];
304 ALOG_ASSERT(name >= 0);
305 mixer->setBufferProvider(name, bufferProvider);
306 if (fastTrack->mVolumeProvider == NULL) {
307 mixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME0,
308 (void *)0x1000);
309 mixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME1,
310 (void *)0x1000);
311 }
Glenn Kasten21e8c502012-04-12 09:39:42 -0700312 if (fastTrack->mSampleRate != 0 &&
313 fastTrack->mSampleRate != sampleRate) {
314 mixer->setParameter(name, AudioMixer::RESAMPLE,
315 AudioMixer::SAMPLE_RATE, (void*) fastTrack->mSampleRate);
316 } else {
317 mixer->setParameter(name, AudioMixer::RESAMPLE,
318 AudioMixer::REMOVE, NULL);
319 }
320 mixer->setParameter(name, AudioMixer::TRACK, AudioMixer::CHANNEL_MASK,
321 (void *) fastTrack->mChannelMask);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700322 // already enabled
323 }
324 generations[i] = fastTrack->mGeneration;
325 }
326 }
327
328 fastTracksGen = current->mFastTracksGen;
329
330 dumpState->mNumTracks = popcount(currentTrackMask);
331 }
332
333#if 1 // FIXME shouldn't need this
334 // only process state change once
335 previous = current;
336#endif
337 }
338
339 // do work using current state here
Glenn Kasten288ed212012-04-25 17:52:27 -0700340 if ((command & FastMixerState::MIX) && (mixer != NULL) && isWarm) {
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700341 ALOG_ASSERT(mixBuffer != NULL);
Glenn Kasten288ed212012-04-25 17:52:27 -0700342 // for each track, update volume and check for underrun
343 unsigned currentTrackMask = current->mTrackMask;
344 while (currentTrackMask != 0) {
345 i = __builtin_ctz(currentTrackMask);
346 currentTrackMask &= ~(1 << i);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700347 const FastTrack* fastTrack = &current->mFastTracks[i];
348 int name = fastTrackNames[i];
349 ALOG_ASSERT(name >= 0);
350 if (fastTrack->mVolumeProvider != NULL) {
351 uint32_t vlr = fastTrack->mVolumeProvider->getVolumeLR();
352 mixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME0,
353 (void *)(vlr & 0xFFFF));
354 mixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME1,
355 (void *)(vlr >> 16));
356 }
Glenn Kasten288ed212012-04-25 17:52:27 -0700357 // FIXME The current implementation of framesReady() for fast tracks
358 // takes a tryLock, which can block
359 // up to 1 ms. If enough active tracks all blocked in sequence, this would result
360 // in the overall fast mix cycle being delayed. Should use a non-blocking FIFO.
361 size_t framesReady = fastTrack->mBufferProvider->framesReady();
Glenn Kasten99c99d02012-05-14 16:37:13 -0700362#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
363 // I wish we had formatted trace names
364 char traceName[16];
365 strcpy(traceName, "framesReady");
366 traceName[11] = i + (i < 10 ? '0' : 'A' - 10);
367 traceName[12] = '\0';
368 ATRACE_INT(traceName, framesReady);
369#endif
Glenn Kasten288ed212012-04-25 17:52:27 -0700370 FastTrackDump *ftDump = &dumpState->mTracks[i];
Glenn Kasten09474df2012-05-10 14:48:07 -0700371 FastTrackUnderruns underruns = ftDump->mUnderruns;
Glenn Kasten288ed212012-04-25 17:52:27 -0700372 if (framesReady < frameCount) {
Glenn Kasten288ed212012-04-25 17:52:27 -0700373 if (framesReady == 0) {
Glenn Kasten09474df2012-05-10 14:48:07 -0700374 underruns.mBitFields.mEmpty++;
375 underruns.mBitFields.mMostRecent = UNDERRUN_EMPTY;
Glenn Kasten288ed212012-04-25 17:52:27 -0700376 mixer->disable(name);
377 } else {
378 // allow mixing partial buffer
Glenn Kasten09474df2012-05-10 14:48:07 -0700379 underruns.mBitFields.mPartial++;
380 underruns.mBitFields.mMostRecent = UNDERRUN_PARTIAL;
Glenn Kasten288ed212012-04-25 17:52:27 -0700381 mixer->enable(name);
382 }
Glenn Kasten09474df2012-05-10 14:48:07 -0700383 } else {
384 underruns.mBitFields.mFull++;
385 underruns.mBitFields.mMostRecent = UNDERRUN_FULL;
Glenn Kasten288ed212012-04-25 17:52:27 -0700386 mixer->enable(name);
387 }
Glenn Kasten09474df2012-05-10 14:48:07 -0700388 ftDump->mUnderruns = underruns;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700389 }
390 // process() is CPU-bound
391 mixer->process(AudioBufferProvider::kInvalidPTS);
392 mixBufferState = MIXED;
393 } else if (mixBufferState == MIXED) {
394 mixBufferState = UNDEFINED;
395 }
Glenn Kasten288ed212012-04-25 17:52:27 -0700396 bool attemptedWrite = false;
397 //bool didFullWrite = false; // dumpsys could display a count of partial writes
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700398 if ((command & FastMixerState::WRITE) && (outputSink != NULL) && (mixBuffer != NULL)) {
399 if (mixBufferState == UNDEFINED) {
400 memset(mixBuffer, 0, frameCount * 2 * sizeof(short));
401 mixBufferState = ZEROED;
402 }
Glenn Kastenfbae5da2012-05-21 09:17:20 -0700403 if (teeSink != NULL) {
404 (void) teeSink->write(mixBuffer, frameCount);
405 }
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700406 // FIXME write() is non-blocking and lock-free for a properly implemented NBAIO sink,
407 // but this code should be modified to handle both non-blocking and blocking sinks
408 dumpState->mWriteSequence++;
Glenn Kasten99c99d02012-05-14 16:37:13 -0700409#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
Glenn Kastend8e6fd32012-05-07 11:07:57 -0700410 Tracer::traceBegin(ATRACE_TAG, "write");
Glenn Kasten99c99d02012-05-14 16:37:13 -0700411#endif
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700412 ssize_t framesWritten = outputSink->write(mixBuffer, frameCount);
Glenn Kasten99c99d02012-05-14 16:37:13 -0700413#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
Glenn Kastend8e6fd32012-05-07 11:07:57 -0700414 Tracer::traceEnd(ATRACE_TAG);
Glenn Kasten99c99d02012-05-14 16:37:13 -0700415#endif
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700416 dumpState->mWriteSequence++;
417 if (framesWritten >= 0) {
Glenn Kasten288ed212012-04-25 17:52:27 -0700418 ALOG_ASSERT(framesWritten <= frameCount);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700419 dumpState->mFramesWritten += framesWritten;
Glenn Kasten288ed212012-04-25 17:52:27 -0700420 //if ((size_t) framesWritten == frameCount) {
421 // didFullWrite = true;
422 //}
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700423 } else {
424 dumpState->mWriteErrors++;
425 }
Glenn Kasten288ed212012-04-25 17:52:27 -0700426 attemptedWrite = true;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700427 // FIXME count # of writes blocked excessively, CPU usage, etc. for dump
428 }
429
430 // To be exactly periodic, compute the next sleep time based on current time.
431 // This code doesn't have long-term stability when the sink is non-blocking.
432 // FIXME To avoid drift, use the local audio clock or watch the sink's fill status.
433 struct timespec newTs;
434 int rc = clock_gettime(CLOCK_MONOTONIC, &newTs);
435 if (rc == 0) {
436 if (oldTsValid) {
437 time_t sec = newTs.tv_sec - oldTs.tv_sec;
438 long nsec = newTs.tv_nsec - oldTs.tv_nsec;
439 if (nsec < 0) {
440 --sec;
441 nsec += 1000000000;
442 }
Glenn Kasten288ed212012-04-25 17:52:27 -0700443 // To avoid an initial underrun on fast tracks after exiting standby,
444 // do not start pulling data from tracks and mixing until warmup is complete.
445 // Warmup is considered complete after the earlier of:
446 // first successful single write() that blocks for more than warmupNs
447 // MAX_WARMUP_CYCLES write() attempts.
448 // This is overly conservative, but to get better accuracy requires a new HAL API.
449 if (!isWarm && attemptedWrite) {
450 measuredWarmupTs.tv_sec += sec;
451 measuredWarmupTs.tv_nsec += nsec;
452 if (measuredWarmupTs.tv_nsec >= 1000000000) {
453 measuredWarmupTs.tv_sec++;
454 measuredWarmupTs.tv_nsec -= 1000000000;
455 }
456 ++warmupCycles;
457 if ((attemptedWrite && nsec > warmupNs) ||
458 (warmupCycles >= MAX_WARMUP_CYCLES)) {
459 isWarm = true;
460 dumpState->mMeasuredWarmupTs = measuredWarmupTs;
461 dumpState->mWarmupCycles = warmupCycles;
462 }
463 }
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700464 if (sec > 0 || nsec > underrunNs) {
Glenn Kasten99c99d02012-05-14 16:37:13 -0700465#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
Glenn Kastend8e6fd32012-05-07 11:07:57 -0700466 ScopedTrace st(ATRACE_TAG, "underrun");
Glenn Kasten99c99d02012-05-14 16:37:13 -0700467#endif
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700468 // FIXME only log occasionally
469 ALOGV("underrun: time since last cycle %d.%03ld sec",
470 (int) sec, nsec / 1000000L);
471 dumpState->mUnderruns++;
472 sleepNs = -1;
473 ignoreNextOverrun = true;
474 } else if (nsec < overrunNs) {
475 if (ignoreNextOverrun) {
476 ignoreNextOverrun = false;
477 } else {
478 // FIXME only log occasionally
479 ALOGV("overrun: time since last cycle %d.%03ld sec",
480 (int) sec, nsec / 1000000L);
481 dumpState->mOverruns++;
482 }
483 sleepNs = periodNs - overrunNs;
484 } else {
485 sleepNs = -1;
486 ignoreNextOverrun = false;
487 }
488#ifdef FAST_MIXER_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700489 // advance the FIFO queue bounds
490 size_t i = bounds & (FastMixerDumpState::kSamplingN - 1);
Glenn Kastene58ccce2012-05-11 15:19:24 -0700491 bounds = (bounds & 0xFFFF0000) | ((bounds + 1) & 0xFFFF);
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700492 if (full) {
493 bounds += 0x10000;
494 } else if (!(bounds & (FastMixerDumpState::kSamplingN - 1))) {
495 full = true;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700496 }
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700497 // compute the delta value of clock_gettime(CLOCK_MONOTONIC)
498 uint32_t monotonicNs = nsec;
499 if (sec > 0 && sec < 4) {
500 monotonicNs += sec * 1000000000;
501 }
502 // compute the raw CPU load = delta value of clock_gettime(CLOCK_THREAD_CPUTIME_ID)
503 uint32_t loadNs = 0;
504 struct timespec newLoad;
505 rc = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &newLoad);
506 if (rc == 0) {
507 if (oldLoadValid) {
508 sec = newLoad.tv_sec - oldLoad.tv_sec;
509 nsec = newLoad.tv_nsec - oldLoad.tv_nsec;
510 if (nsec < 0) {
511 --sec;
512 nsec += 1000000000;
513 }
514 loadNs = nsec;
515 if (sec > 0 && sec < 4) {
516 loadNs += sec * 1000000000;
517 }
518 } else {
519 // first time through the loop
520 oldLoadValid = true;
521 }
522 oldLoad = newLoad;
523 }
524 // get the absolute value of CPU clock frequency in kHz
525 int cpuNum = sched_getcpu();
526 uint32_t kHz = tcu.getCpukHz(cpuNum);
Glenn Kastenc059bd42012-05-14 17:41:09 -0700527 kHz = (kHz << 4) | (cpuNum & 0xF);
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700528 // save values in FIFO queues for dumpsys
529 // these stores #1, #2, #3 are not atomic with respect to each other,
530 // or with respect to store #4 below
531 dumpState->mMonotonicNs[i] = monotonicNs;
532 dumpState->mLoadNs[i] = loadNs;
533 dumpState->mCpukHz[i] = kHz;
534 // this store #4 is not atomic with respect to stores #1, #2, #3 above, but
535 // the newest open and oldest closed halves are atomic with respect to each other
536 dumpState->mBounds = bounds;
Glenn Kasten99c99d02012-05-14 16:37:13 -0700537#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
538 ATRACE_INT("cycle_ms", monotonicNs / 1000000);
539 ATRACE_INT("load_us", loadNs / 1000);
540#endif
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700541#endif
542 } else {
543 // first time through the loop
544 oldTsValid = true;
545 sleepNs = periodNs;
546 ignoreNextOverrun = true;
547 }
548 oldTs = newTs;
549 } else {
550 // monotonic clock is broken
551 oldTsValid = false;
552 sleepNs = periodNs;
553 }
554
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700555
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700556 } // for (;;)
557
558 // never return 'true'; Thread::_threadLoop() locks mutex which can result in priority inversion
559}
560
561FastMixerDumpState::FastMixerDumpState() :
562 mCommand(FastMixerState::INITIAL), mWriteSequence(0), mFramesWritten(0),
Glenn Kasten21e8c502012-04-12 09:39:42 -0700563 mNumTracks(0), mWriteErrors(0), mUnderruns(0), mOverruns(0),
Glenn Kasten288ed212012-04-25 17:52:27 -0700564 mSampleRate(0), mFrameCount(0), /* mMeasuredWarmupTs({0, 0}), */ mWarmupCycles(0)
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700565#ifdef FAST_MIXER_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700566 , mBounds(0)
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700567#endif
568{
Glenn Kasten288ed212012-04-25 17:52:27 -0700569 mMeasuredWarmupTs.tv_sec = 0;
570 mMeasuredWarmupTs.tv_nsec = 0;
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700571 // sample arrays aren't accessed atomically with respect to the bounds,
572 // so clearing reduces chance for dumpsys to read random uninitialized samples
573 memset(&mMonotonicNs, 0, sizeof(mMonotonicNs));
574 memset(&mLoadNs, 0, sizeof(mLoadNs));
575 memset(&mCpukHz, 0, sizeof(mCpukHz));
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700576}
577
578FastMixerDumpState::~FastMixerDumpState()
579{
580}
581
582void FastMixerDumpState::dump(int fd)
583{
584#define COMMAND_MAX 32
585 char string[COMMAND_MAX];
586 switch (mCommand) {
587 case FastMixerState::INITIAL:
588 strcpy(string, "INITIAL");
589 break;
590 case FastMixerState::HOT_IDLE:
591 strcpy(string, "HOT_IDLE");
592 break;
593 case FastMixerState::COLD_IDLE:
594 strcpy(string, "COLD_IDLE");
595 break;
596 case FastMixerState::EXIT:
597 strcpy(string, "EXIT");
598 break;
599 case FastMixerState::MIX:
600 strcpy(string, "MIX");
601 break;
602 case FastMixerState::WRITE:
603 strcpy(string, "WRITE");
604 break;
605 case FastMixerState::MIX_WRITE:
606 strcpy(string, "MIX_WRITE");
607 break;
608 default:
609 snprintf(string, COMMAND_MAX, "%d", mCommand);
610 break;
611 }
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700612 double measuredWarmupMs = (mMeasuredWarmupTs.tv_sec * 1000.0) +
Glenn Kasten288ed212012-04-25 17:52:27 -0700613 (mMeasuredWarmupTs.tv_nsec / 1000000.0);
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700614 double mixPeriodSec = (double) mFrameCount / (double) mSampleRate;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700615 fdprintf(fd, "FastMixer command=%s writeSequence=%u framesWritten=%u\n"
Glenn Kasten21e8c502012-04-12 09:39:42 -0700616 " numTracks=%u writeErrors=%u underruns=%u overruns=%u\n"
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700617 " sampleRate=%u frameCount=%u measuredWarmup=%.3g ms, warmupCycles=%u\n"
618 " mixPeriod=%.2f ms\n",
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700619 string, mWriteSequence, mFramesWritten,
Glenn Kasten21e8c502012-04-12 09:39:42 -0700620 mNumTracks, mWriteErrors, mUnderruns, mOverruns,
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700621 mSampleRate, mFrameCount, measuredWarmupMs, mWarmupCycles,
622 mixPeriodSec * 1e3);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700623#ifdef FAST_MIXER_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700624 // find the interval of valid samples
625 uint32_t bounds = mBounds;
626 uint32_t newestOpen = bounds & 0xFFFF;
627 uint32_t oldestClosed = bounds >> 16;
628 uint32_t n = (newestOpen - oldestClosed) & 0xFFFF;
629 if (n > kSamplingN) {
630 ALOGE("too many samples %u", n);
631 n = kSamplingN;
632 }
633 // statistics for monotonic (wall clock) time, thread raw CPU load in time, CPU clock frequency,
634 // and adjusted CPU load in MHz normalized for CPU clock frequency
635 CentralTendencyStatistics wall, loadNs, kHz, loadMHz;
636 // only compute adjusted CPU load in Hz if current CPU number and CPU clock frequency are stable
637 bool valid = false;
638 uint32_t previousCpukHz = 0;
639 // loop over all the samples
640 for (; n > 0; --n) {
641 size_t i = oldestClosed++ & (kSamplingN - 1);
642 uint32_t wallNs = mMonotonicNs[i];
643 wall.sample(wallNs);
644 uint32_t sampleLoadNs = mLoadNs[i];
645 uint32_t sampleCpukHz = mCpukHz[i];
646 loadNs.sample(sampleLoadNs);
Glenn Kastenc059bd42012-05-14 17:41:09 -0700647 // skip bad kHz samples
648 if ((sampleCpukHz & ~0xF) != 0) {
649 kHz.sample(sampleCpukHz >> 4);
650 if (sampleCpukHz == previousCpukHz) {
651 double megacycles = (double) sampleLoadNs * (double) (sampleCpukHz >> 4) * 1e-12;
652 double adjMHz = megacycles / mixPeriodSec; // _not_ wallNs * 1e9
653 loadMHz.sample(adjMHz);
654 }
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700655 }
656 previousCpukHz = sampleCpukHz;
657 }
658 fdprintf(fd, "Simple moving statistics over last %.1f seconds:\n", wall.n() * mixPeriodSec);
659 fdprintf(fd, " wall clock time in ms per mix cycle:\n"
660 " mean=%.2f min=%.2f max=%.2f stddev=%.2f\n",
661 wall.mean()*1e-6, wall.minimum()*1e-6, wall.maximum()*1e-6, wall.stddev()*1e-6);
662 fdprintf(fd, " raw CPU load in us per mix cycle:\n"
663 " mean=%.0f min=%.0f max=%.0f stddev=%.0f\n",
664 loadNs.mean()*1e-3, loadNs.minimum()*1e-3, loadNs.maximum()*1e-3,
665 loadNs.stddev()*1e-3);
666 fdprintf(fd, " CPU clock frequency in MHz:\n"
667 " mean=%.0f min=%.0f max=%.0f stddev=%.0f\n",
668 kHz.mean()*1e-3, kHz.minimum()*1e-3, kHz.maximum()*1e-3, kHz.stddev()*1e-3);
669 fdprintf(fd, " adjusted CPU load in MHz (i.e. normalized for CPU clock frequency):\n"
670 " mean=%.1f min=%.1f max=%.1f stddev=%.1f\n",
671 loadMHz.mean(), loadMHz.minimum(), loadMHz.maximum(), loadMHz.stddev());
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700672#endif
673}
674
675} // namespace android