blob: cdc27a22b2b9810f81e9a9a215a7649fd68fd8e5 [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 Kasten0a14c4c2012-06-13 14:58:49 -070027#ifdef CPU_FREQUENCY_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -070028#include <cpustats/ThreadCpuUsage.h>
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070029#endif
Glenn Kasten0a14c4c2012-06-13 14:58:49 -070030#endif
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070031#include "AudioMixer.h"
32#include "FastMixer.h"
33
34#define FAST_HOT_IDLE_NS 1000000L // 1 ms: time to sleep while hot idling
35#define FAST_DEFAULT_NS 999999999L // ~1 sec: default time to sleep
Glenn Kasteneb157162012-06-13 14:59:07 -070036#define MIN_WARMUP_CYCLES 2 // minimum number of loop cycles to wait for warmup
Glenn Kasten288ed212012-04-25 17:52:27 -070037#define MAX_WARMUP_CYCLES 10 // maximum number of loop cycles to wait for warmup
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070038
39namespace android {
40
41// Fast mixer thread
42bool FastMixer::threadLoop()
43{
44 static const FastMixerState initial;
45 const FastMixerState *previous = &initial, *current = &initial;
46 FastMixerState preIdle; // copy of state before we went into idle
47 struct timespec oldTs = {0, 0};
48 bool oldTsValid = false;
49 long slopNs = 0; // accumulated time we've woken up too early (> 0) or too late (< 0)
50 long sleepNs = -1; // -1: busy wait, 0: sched_yield, > 0: nanosleep
51 int fastTrackNames[FastMixerState::kMaxFastTracks]; // handles used by mixer to identify tracks
52 int generations[FastMixerState::kMaxFastTracks]; // last observed mFastTracks[i].mGeneration
53 unsigned i;
54 for (i = 0; i < FastMixerState::kMaxFastTracks; ++i) {
55 fastTrackNames[i] = -1;
56 generations[i] = 0;
57 }
58 NBAIO_Sink *outputSink = NULL;
59 int outputSinkGen = 0;
60 AudioMixer* mixer = NULL;
61 short *mixBuffer = NULL;
62 enum {UNDEFINED, MIXED, ZEROED} mixBufferState = UNDEFINED;
63 NBAIO_Format format = Format_Invalid;
64 unsigned sampleRate = 0;
65 int fastTracksGen = 0;
66 long periodNs = 0; // expected period; the time required to render one mix buffer
Glenn Kasten288ed212012-04-25 17:52:27 -070067 long underrunNs = 0; // underrun likely when write cycle is greater than this value
68 long overrunNs = 0; // overrun likely when write cycle is less than this value
Glenn Kasten972af222012-06-13 17:14:03 -070069 long forceNs = 0; // if overrun detected, force the write cycle to take this much time
Glenn Kasten288ed212012-04-25 17:52:27 -070070 long warmupNs = 0; // warmup complete when write cycle is greater than to this value
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070071 FastMixerDumpState dummyDumpState, *dumpState = &dummyDumpState;
72 bool ignoreNextOverrun = true; // used to ignore initial overrun and first after an underrun
73#ifdef FAST_MIXER_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -070074 struct timespec oldLoad = {0, 0}; // previous value of clock_gettime(CLOCK_THREAD_CPUTIME_ID)
75 bool oldLoadValid = false; // whether oldLoad is valid
76 uint32_t bounds = 0;
77 bool full = false; // whether we have collected at least kSamplingN samples
Glenn Kasten0a14c4c2012-06-13 14:58:49 -070078#ifdef CPU_FREQUENCY_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -070079 ThreadCpuUsage tcu; // for reading the current CPU clock frequency in kHz
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070080#endif
Glenn Kasten0a14c4c2012-06-13 14:58:49 -070081#endif
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070082 unsigned coldGen = 0; // last observed mColdGen
Glenn Kasten288ed212012-04-25 17:52:27 -070083 bool isWarm = false; // true means ready to mix, false means wait for warmup before mixing
84 struct timespec measuredWarmupTs = {0, 0}; // how long did it take for warmup to complete
85 uint32_t warmupCycles = 0; // counter of number of loop cycles required to warmup
Glenn Kastenfbae5da2012-05-21 09:17:20 -070086 NBAIO_Sink* teeSink = NULL; // if non-NULL, then duplicate write() to this non-blocking sink
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070087
88 for (;;) {
89
90 // either nanosleep, sched_yield, or busy wait
91 if (sleepNs >= 0) {
92 if (sleepNs > 0) {
93 ALOG_ASSERT(sleepNs < 1000000000);
94 const struct timespec req = {0, sleepNs};
95 nanosleep(&req, NULL);
96 } else {
97 sched_yield();
98 }
99 }
100 // default to long sleep for next cycle
101 sleepNs = FAST_DEFAULT_NS;
102
103 // poll for state change
104 const FastMixerState *next = mSQ.poll();
105 if (next == NULL) {
106 // continue to use the default initial state until a real state is available
107 ALOG_ASSERT(current == &initial && previous == &initial);
108 next = current;
109 }
110
111 FastMixerState::Command command = next->mCommand;
112 if (next != current) {
113
114 // As soon as possible of learning of a new dump area, start using it
115 dumpState = next->mDumpState != NULL ? next->mDumpState : &dummyDumpState;
Glenn Kastenfbae5da2012-05-21 09:17:20 -0700116 teeSink = next->mTeeSink;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700117
118 // We want to always have a valid reference to the previous (non-idle) state.
119 // However, the state queue only guarantees access to current and previous states.
120 // So when there is a transition from a non-idle state into an idle state, we make a
121 // copy of the last known non-idle state so it is still available on return from idle.
122 // The possible transitions are:
123 // non-idle -> non-idle update previous from current in-place
124 // non-idle -> idle update previous from copy of current
125 // idle -> idle don't update previous
126 // idle -> non-idle don't update previous
127 if (!(current->mCommand & FastMixerState::IDLE)) {
128 if (command & FastMixerState::IDLE) {
129 preIdle = *current;
130 current = &preIdle;
131 oldTsValid = false;
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700132 oldLoadValid = false;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700133 ignoreNextOverrun = true;
134 }
135 previous = current;
136 }
137 current = next;
138 }
139#if !LOG_NDEBUG
140 next = NULL; // not referenced again
141#endif
142
143 dumpState->mCommand = command;
144
145 switch (command) {
146 case FastMixerState::INITIAL:
147 case FastMixerState::HOT_IDLE:
148 sleepNs = FAST_HOT_IDLE_NS;
149 continue;
150 case FastMixerState::COLD_IDLE:
151 // only perform a cold idle command once
Glenn Kasten21e8c502012-04-12 09:39:42 -0700152 // FIXME consider checking previous state and only perform if previous != COLD_IDLE
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700153 if (current->mColdGen != coldGen) {
154 int32_t *coldFutexAddr = current->mColdFutexAddr;
155 ALOG_ASSERT(coldFutexAddr != NULL);
156 int32_t old = android_atomic_dec(coldFutexAddr);
157 if (old <= 0) {
158 __futex_syscall4(coldFutexAddr, FUTEX_WAIT_PRIVATE, old - 1, NULL);
159 }
Glenn Kasten288ed212012-04-25 17:52:27 -0700160 // This may be overly conservative; there could be times that the normal mixer
161 // requests such a brief cold idle that it doesn't require resetting this flag.
162 isWarm = false;
163 measuredWarmupTs.tv_sec = 0;
164 measuredWarmupTs.tv_nsec = 0;
165 warmupCycles = 0;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700166 sleepNs = -1;
167 coldGen = current->mColdGen;
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700168 bounds = 0;
169 full = false;
Glenn Kasten04a4ca42012-06-01 10:49:51 -0700170 oldTsValid = !clock_gettime(CLOCK_MONOTONIC, &oldTs);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700171 } else {
172 sleepNs = FAST_HOT_IDLE_NS;
173 }
174 continue;
175 case FastMixerState::EXIT:
176 delete mixer;
177 delete[] mixBuffer;
178 return false;
179 case FastMixerState::MIX:
180 case FastMixerState::WRITE:
181 case FastMixerState::MIX_WRITE:
182 break;
183 default:
184 LOG_FATAL("bad command %d", command);
185 }
186
187 // there is a non-idle state available to us; did the state change?
188 size_t frameCount = current->mFrameCount;
189 if (current != previous) {
190
191 // handle state change here, but since we want to diff the state,
192 // we're prepared for previous == &initial the first time through
193 unsigned previousTrackMask;
194
195 // check for change in output HAL configuration
196 NBAIO_Format previousFormat = format;
197 if (current->mOutputSinkGen != outputSinkGen) {
198 outputSink = current->mOutputSink;
199 outputSinkGen = current->mOutputSinkGen;
200 if (outputSink == NULL) {
201 format = Format_Invalid;
202 sampleRate = 0;
203 } else {
204 format = outputSink->format();
205 sampleRate = Format_sampleRate(format);
206 ALOG_ASSERT(Format_channelCount(format) == 2);
207 }
Glenn Kasten21e8c502012-04-12 09:39:42 -0700208 dumpState->mSampleRate = sampleRate;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700209 }
210
211 if ((format != previousFormat) || (frameCount != previous->mFrameCount)) {
212 // FIXME to avoid priority inversion, don't delete here
213 delete mixer;
214 mixer = NULL;
215 delete[] mixBuffer;
216 mixBuffer = NULL;
217 if (frameCount > 0 && sampleRate > 0) {
218 // FIXME new may block for unbounded time at internal mutex of the heap
219 // implementation; it would be better to have normal mixer allocate for us
220 // to avoid blocking here and to prevent possible priority inversion
221 mixer = new AudioMixer(frameCount, sampleRate, FastMixerState::kMaxFastTracks);
222 mixBuffer = new short[frameCount * 2];
223 periodNs = (frameCount * 1000000000LL) / sampleRate; // 1.00
224 underrunNs = (frameCount * 1750000000LL) / sampleRate; // 1.75
Glenn Kasten0d27c652012-08-07 10:38:59 -0700225 overrunNs = (frameCount * 500000000LL) / sampleRate; // 0.50
226 forceNs = (frameCount * 950000000LL) / sampleRate; // 0.95
Glenn Kasten288ed212012-04-25 17:52:27 -0700227 warmupNs = (frameCount * 500000000LL) / sampleRate; // 0.50
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700228 } else {
229 periodNs = 0;
230 underrunNs = 0;
231 overrunNs = 0;
Glenn Kasten972af222012-06-13 17:14:03 -0700232 forceNs = 0;
233 warmupNs = 0;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700234 }
235 mixBufferState = UNDEFINED;
236#if !LOG_NDEBUG
237 for (i = 0; i < FastMixerState::kMaxFastTracks; ++i) {
238 fastTrackNames[i] = -1;
239 }
240#endif
241 // we need to reconfigure all active tracks
242 previousTrackMask = 0;
243 fastTracksGen = current->mFastTracksGen - 1;
Glenn Kasten21e8c502012-04-12 09:39:42 -0700244 dumpState->mFrameCount = frameCount;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700245 } else {
246 previousTrackMask = previous->mTrackMask;
247 }
248
249 // check for change in active track set
250 unsigned currentTrackMask = current->mTrackMask;
Glenn Kasten1295bb4d2012-05-31 07:43:43 -0700251 dumpState->mTrackMask = currentTrackMask;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700252 if (current->mFastTracksGen != fastTracksGen) {
253 ALOG_ASSERT(mixBuffer != NULL);
254 int name;
255
256 // process removed tracks first to avoid running out of track names
257 unsigned removedTracks = previousTrackMask & ~currentTrackMask;
258 while (removedTracks != 0) {
259 i = __builtin_ctz(removedTracks);
260 removedTracks &= ~(1 << i);
261 const FastTrack* fastTrack = &current->mFastTracks[i];
Glenn Kasten288ed212012-04-25 17:52:27 -0700262 ALOG_ASSERT(fastTrack->mBufferProvider == NULL);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700263 if (mixer != NULL) {
264 name = fastTrackNames[i];
265 ALOG_ASSERT(name >= 0);
266 mixer->deleteTrackName(name);
267 }
268#if !LOG_NDEBUG
269 fastTrackNames[i] = -1;
270#endif
Glenn Kasten288ed212012-04-25 17:52:27 -0700271 // don't reset track dump state, since other side is ignoring it
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700272 generations[i] = fastTrack->mGeneration;
273 }
274
275 // now process added tracks
276 unsigned addedTracks = currentTrackMask & ~previousTrackMask;
277 while (addedTracks != 0) {
278 i = __builtin_ctz(addedTracks);
279 addedTracks &= ~(1 << i);
280 const FastTrack* fastTrack = &current->mFastTracks[i];
281 AudioBufferProvider *bufferProvider = fastTrack->mBufferProvider;
282 ALOG_ASSERT(bufferProvider != NULL && fastTrackNames[i] == -1);
283 if (mixer != NULL) {
Jean-Michel Trivi9bd23222012-04-16 13:43:48 -0700284 // calling getTrackName with default channel mask
285 name = mixer->getTrackName(AUDIO_CHANNEL_OUT_STEREO);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700286 ALOG_ASSERT(name >= 0);
287 fastTrackNames[i] = name;
288 mixer->setBufferProvider(name, bufferProvider);
289 mixer->setParameter(name, AudioMixer::TRACK, AudioMixer::MAIN_BUFFER,
290 (void *) mixBuffer);
291 // newly allocated track names default to full scale volume
Glenn Kasten21e8c502012-04-12 09:39:42 -0700292 if (fastTrack->mSampleRate != 0 && fastTrack->mSampleRate != sampleRate) {
293 mixer->setParameter(name, AudioMixer::RESAMPLE,
294 AudioMixer::SAMPLE_RATE, (void*) fastTrack->mSampleRate);
295 }
296 mixer->setParameter(name, AudioMixer::TRACK, AudioMixer::CHANNEL_MASK,
297 (void *) fastTrack->mChannelMask);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700298 mixer->enable(name);
299 }
300 generations[i] = fastTrack->mGeneration;
301 }
302
303 // finally process modified tracks; these use the same slot
304 // but may have a different buffer provider or volume provider
305 unsigned modifiedTracks = currentTrackMask & previousTrackMask;
306 while (modifiedTracks != 0) {
307 i = __builtin_ctz(modifiedTracks);
308 modifiedTracks &= ~(1 << i);
309 const FastTrack* fastTrack = &current->mFastTracks[i];
310 if (fastTrack->mGeneration != generations[i]) {
311 AudioBufferProvider *bufferProvider = fastTrack->mBufferProvider;
312 ALOG_ASSERT(bufferProvider != NULL);
313 if (mixer != NULL) {
314 name = fastTrackNames[i];
315 ALOG_ASSERT(name >= 0);
316 mixer->setBufferProvider(name, bufferProvider);
317 if (fastTrack->mVolumeProvider == NULL) {
318 mixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME0,
319 (void *)0x1000);
320 mixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME1,
321 (void *)0x1000);
322 }
Glenn Kasten21e8c502012-04-12 09:39:42 -0700323 if (fastTrack->mSampleRate != 0 &&
324 fastTrack->mSampleRate != sampleRate) {
325 mixer->setParameter(name, AudioMixer::RESAMPLE,
326 AudioMixer::SAMPLE_RATE, (void*) fastTrack->mSampleRate);
327 } else {
328 mixer->setParameter(name, AudioMixer::RESAMPLE,
329 AudioMixer::REMOVE, NULL);
330 }
331 mixer->setParameter(name, AudioMixer::TRACK, AudioMixer::CHANNEL_MASK,
332 (void *) fastTrack->mChannelMask);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700333 // already enabled
334 }
335 generations[i] = fastTrack->mGeneration;
336 }
337 }
338
339 fastTracksGen = current->mFastTracksGen;
340
341 dumpState->mNumTracks = popcount(currentTrackMask);
342 }
343
344#if 1 // FIXME shouldn't need this
345 // only process state change once
346 previous = current;
347#endif
348 }
349
350 // do work using current state here
Glenn Kasten288ed212012-04-25 17:52:27 -0700351 if ((command & FastMixerState::MIX) && (mixer != NULL) && isWarm) {
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700352 ALOG_ASSERT(mixBuffer != NULL);
Glenn Kasten288ed212012-04-25 17:52:27 -0700353 // for each track, update volume and check for underrun
354 unsigned currentTrackMask = current->mTrackMask;
355 while (currentTrackMask != 0) {
356 i = __builtin_ctz(currentTrackMask);
357 currentTrackMask &= ~(1 << i);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700358 const FastTrack* fastTrack = &current->mFastTracks[i];
359 int name = fastTrackNames[i];
360 ALOG_ASSERT(name >= 0);
361 if (fastTrack->mVolumeProvider != NULL) {
362 uint32_t vlr = fastTrack->mVolumeProvider->getVolumeLR();
363 mixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME0,
364 (void *)(vlr & 0xFFFF));
365 mixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME1,
366 (void *)(vlr >> 16));
367 }
Glenn Kasten288ed212012-04-25 17:52:27 -0700368 // FIXME The current implementation of framesReady() for fast tracks
369 // takes a tryLock, which can block
370 // up to 1 ms. If enough active tracks all blocked in sequence, this would result
371 // in the overall fast mix cycle being delayed. Should use a non-blocking FIFO.
372 size_t framesReady = fastTrack->mBufferProvider->framesReady();
Glenn Kasten99c99d02012-05-14 16:37:13 -0700373#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
374 // I wish we had formatted trace names
375 char traceName[16];
376 strcpy(traceName, "framesReady");
377 traceName[11] = i + (i < 10 ? '0' : 'A' - 10);
378 traceName[12] = '\0';
379 ATRACE_INT(traceName, framesReady);
380#endif
Glenn Kasten288ed212012-04-25 17:52:27 -0700381 FastTrackDump *ftDump = &dumpState->mTracks[i];
Glenn Kasten09474df2012-05-10 14:48:07 -0700382 FastTrackUnderruns underruns = ftDump->mUnderruns;
Glenn Kasten288ed212012-04-25 17:52:27 -0700383 if (framesReady < frameCount) {
Glenn Kasten288ed212012-04-25 17:52:27 -0700384 if (framesReady == 0) {
Glenn Kasten09474df2012-05-10 14:48:07 -0700385 underruns.mBitFields.mEmpty++;
386 underruns.mBitFields.mMostRecent = UNDERRUN_EMPTY;
Glenn Kasten288ed212012-04-25 17:52:27 -0700387 mixer->disable(name);
388 } else {
389 // allow mixing partial buffer
Glenn Kasten09474df2012-05-10 14:48:07 -0700390 underruns.mBitFields.mPartial++;
391 underruns.mBitFields.mMostRecent = UNDERRUN_PARTIAL;
Glenn Kasten288ed212012-04-25 17:52:27 -0700392 mixer->enable(name);
393 }
Glenn Kasten09474df2012-05-10 14:48:07 -0700394 } else {
395 underruns.mBitFields.mFull++;
396 underruns.mBitFields.mMostRecent = UNDERRUN_FULL;
Glenn Kasten288ed212012-04-25 17:52:27 -0700397 mixer->enable(name);
398 }
Glenn Kasten09474df2012-05-10 14:48:07 -0700399 ftDump->mUnderruns = underruns;
Glenn Kasten1295bb4d2012-05-31 07:43:43 -0700400 ftDump->mFramesReady = framesReady;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700401 }
John Grossman2c3b2da2012-08-02 17:08:54 -0700402
403 int64_t pts;
404 if (outputSink == NULL || (OK != outputSink->getNextWriteTimestamp(&pts)))
405 pts = AudioBufferProvider::kInvalidPTS;
406
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700407 // process() is CPU-bound
John Grossman2c3b2da2012-08-02 17:08:54 -0700408 mixer->process(pts);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700409 mixBufferState = MIXED;
410 } else if (mixBufferState == MIXED) {
411 mixBufferState = UNDEFINED;
412 }
Glenn Kasten288ed212012-04-25 17:52:27 -0700413 bool attemptedWrite = false;
414 //bool didFullWrite = false; // dumpsys could display a count of partial writes
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700415 if ((command & FastMixerState::WRITE) && (outputSink != NULL) && (mixBuffer != NULL)) {
416 if (mixBufferState == UNDEFINED) {
417 memset(mixBuffer, 0, frameCount * 2 * sizeof(short));
418 mixBufferState = ZEROED;
419 }
Glenn Kastenfbae5da2012-05-21 09:17:20 -0700420 if (teeSink != NULL) {
421 (void) teeSink->write(mixBuffer, frameCount);
422 }
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700423 // FIXME write() is non-blocking and lock-free for a properly implemented NBAIO sink,
424 // but this code should be modified to handle both non-blocking and blocking sinks
425 dumpState->mWriteSequence++;
Glenn Kasten99c99d02012-05-14 16:37:13 -0700426#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
Glenn Kastend8e6fd32012-05-07 11:07:57 -0700427 Tracer::traceBegin(ATRACE_TAG, "write");
Glenn Kasten99c99d02012-05-14 16:37:13 -0700428#endif
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700429 ssize_t framesWritten = outputSink->write(mixBuffer, frameCount);
Glenn Kasten99c99d02012-05-14 16:37:13 -0700430#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
Glenn Kastend8e6fd32012-05-07 11:07:57 -0700431 Tracer::traceEnd(ATRACE_TAG);
Glenn Kasten99c99d02012-05-14 16:37:13 -0700432#endif
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700433 dumpState->mWriteSequence++;
434 if (framesWritten >= 0) {
Glenn Kasten288ed212012-04-25 17:52:27 -0700435 ALOG_ASSERT(framesWritten <= frameCount);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700436 dumpState->mFramesWritten += framesWritten;
Glenn Kasten288ed212012-04-25 17:52:27 -0700437 //if ((size_t) framesWritten == frameCount) {
438 // didFullWrite = true;
439 //}
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700440 } else {
441 dumpState->mWriteErrors++;
442 }
Glenn Kasten288ed212012-04-25 17:52:27 -0700443 attemptedWrite = true;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700444 // FIXME count # of writes blocked excessively, CPU usage, etc. for dump
445 }
446
447 // To be exactly periodic, compute the next sleep time based on current time.
448 // This code doesn't have long-term stability when the sink is non-blocking.
449 // FIXME To avoid drift, use the local audio clock or watch the sink's fill status.
450 struct timespec newTs;
451 int rc = clock_gettime(CLOCK_MONOTONIC, &newTs);
452 if (rc == 0) {
453 if (oldTsValid) {
454 time_t sec = newTs.tv_sec - oldTs.tv_sec;
455 long nsec = newTs.tv_nsec - oldTs.tv_nsec;
456 if (nsec < 0) {
457 --sec;
458 nsec += 1000000000;
459 }
Glenn Kasten288ed212012-04-25 17:52:27 -0700460 // To avoid an initial underrun on fast tracks after exiting standby,
461 // do not start pulling data from tracks and mixing until warmup is complete.
462 // Warmup is considered complete after the earlier of:
Glenn Kasteneb157162012-06-13 14:59:07 -0700463 // MIN_WARMUP_CYCLES write() attempts and last one blocks for at least warmupNs
Glenn Kasten288ed212012-04-25 17:52:27 -0700464 // MAX_WARMUP_CYCLES write() attempts.
465 // This is overly conservative, but to get better accuracy requires a new HAL API.
466 if (!isWarm && attemptedWrite) {
467 measuredWarmupTs.tv_sec += sec;
468 measuredWarmupTs.tv_nsec += nsec;
469 if (measuredWarmupTs.tv_nsec >= 1000000000) {
470 measuredWarmupTs.tv_sec++;
471 measuredWarmupTs.tv_nsec -= 1000000000;
472 }
473 ++warmupCycles;
Glenn Kasteneb157162012-06-13 14:59:07 -0700474 if ((nsec > warmupNs && warmupCycles >= MIN_WARMUP_CYCLES) ||
Glenn Kasten288ed212012-04-25 17:52:27 -0700475 (warmupCycles >= MAX_WARMUP_CYCLES)) {
476 isWarm = true;
477 dumpState->mMeasuredWarmupTs = measuredWarmupTs;
478 dumpState->mWarmupCycles = warmupCycles;
479 }
480 }
Glenn Kasten972af222012-06-13 17:14:03 -0700481 sleepNs = -1;
482 if (isWarm) {
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700483 if (sec > 0 || nsec > underrunNs) {
Glenn Kasten99c99d02012-05-14 16:37:13 -0700484#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
Glenn Kastend8e6fd32012-05-07 11:07:57 -0700485 ScopedTrace st(ATRACE_TAG, "underrun");
Glenn Kasten99c99d02012-05-14 16:37:13 -0700486#endif
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700487 // FIXME only log occasionally
488 ALOGV("underrun: time since last cycle %d.%03ld sec",
489 (int) sec, nsec / 1000000L);
490 dumpState->mUnderruns++;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700491 ignoreNextOverrun = true;
492 } else if (nsec < overrunNs) {
493 if (ignoreNextOverrun) {
494 ignoreNextOverrun = false;
495 } else {
496 // FIXME only log occasionally
497 ALOGV("overrun: time since last cycle %d.%03ld sec",
498 (int) sec, nsec / 1000000L);
499 dumpState->mOverruns++;
500 }
Glenn Kasten972af222012-06-13 17:14:03 -0700501 // This forces a minimum cycle time. It:
502 // - compensates for an audio HAL with jitter due to sample rate conversion
503 // - works with a variable buffer depth audio HAL that never pulls at a rate
504 // < than overrunNs per buffer.
505 // - recovers from overrun immediately after underrun
506 // It doesn't work with a non-blocking audio HAL.
507 sleepNs = forceNs - nsec;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700508 } else {
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700509 ignoreNextOverrun = false;
510 }
Glenn Kasten972af222012-06-13 17:14:03 -0700511 }
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700512#ifdef FAST_MIXER_STATISTICS
Glenn Kasteneb157162012-06-13 14:59:07 -0700513 if (isWarm) {
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700514 // advance the FIFO queue bounds
515 size_t i = bounds & (FastMixerDumpState::kSamplingN - 1);
Glenn Kastene58ccce2012-05-11 15:19:24 -0700516 bounds = (bounds & 0xFFFF0000) | ((bounds + 1) & 0xFFFF);
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700517 if (full) {
518 bounds += 0x10000;
519 } else if (!(bounds & (FastMixerDumpState::kSamplingN - 1))) {
520 full = true;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700521 }
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700522 // compute the delta value of clock_gettime(CLOCK_MONOTONIC)
523 uint32_t monotonicNs = nsec;
524 if (sec > 0 && sec < 4) {
525 monotonicNs += sec * 1000000000;
526 }
527 // compute the raw CPU load = delta value of clock_gettime(CLOCK_THREAD_CPUTIME_ID)
528 uint32_t loadNs = 0;
529 struct timespec newLoad;
530 rc = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &newLoad);
531 if (rc == 0) {
532 if (oldLoadValid) {
533 sec = newLoad.tv_sec - oldLoad.tv_sec;
534 nsec = newLoad.tv_nsec - oldLoad.tv_nsec;
535 if (nsec < 0) {
536 --sec;
537 nsec += 1000000000;
538 }
539 loadNs = nsec;
540 if (sec > 0 && sec < 4) {
541 loadNs += sec * 1000000000;
542 }
543 } else {
544 // first time through the loop
545 oldLoadValid = true;
546 }
547 oldLoad = newLoad;
548 }
Glenn Kasten0a14c4c2012-06-13 14:58:49 -0700549#ifdef CPU_FREQUENCY_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700550 // get the absolute value of CPU clock frequency in kHz
551 int cpuNum = sched_getcpu();
552 uint32_t kHz = tcu.getCpukHz(cpuNum);
Glenn Kastenc059bd42012-05-14 17:41:09 -0700553 kHz = (kHz << 4) | (cpuNum & 0xF);
Glenn Kasten0a14c4c2012-06-13 14:58:49 -0700554#endif
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700555 // save values in FIFO queues for dumpsys
556 // these stores #1, #2, #3 are not atomic with respect to each other,
557 // or with respect to store #4 below
558 dumpState->mMonotonicNs[i] = monotonicNs;
559 dumpState->mLoadNs[i] = loadNs;
Glenn Kasten0a14c4c2012-06-13 14:58:49 -0700560#ifdef CPU_FREQUENCY_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700561 dumpState->mCpukHz[i] = kHz;
Glenn Kasten0a14c4c2012-06-13 14:58:49 -0700562#endif
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700563 // this store #4 is not atomic with respect to stores #1, #2, #3 above, but
564 // the newest open and oldest closed halves are atomic with respect to each other
565 dumpState->mBounds = bounds;
Glenn Kasten99c99d02012-05-14 16:37:13 -0700566#if defined(ATRACE_TAG) && (ATRACE_TAG != ATRACE_TAG_NEVER)
567 ATRACE_INT("cycle_ms", monotonicNs / 1000000);
568 ATRACE_INT("load_us", loadNs / 1000);
569#endif
Glenn Kasteneb157162012-06-13 14:59:07 -0700570 }
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700571#endif
572 } else {
573 // first time through the loop
574 oldTsValid = true;
575 sleepNs = periodNs;
576 ignoreNextOverrun = true;
577 }
578 oldTs = newTs;
579 } else {
580 // monotonic clock is broken
581 oldTsValid = false;
582 sleepNs = periodNs;
583 }
584
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700585
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700586 } // for (;;)
587
588 // never return 'true'; Thread::_threadLoop() locks mutex which can result in priority inversion
589}
590
591FastMixerDumpState::FastMixerDumpState() :
592 mCommand(FastMixerState::INITIAL), mWriteSequence(0), mFramesWritten(0),
Glenn Kasten21e8c502012-04-12 09:39:42 -0700593 mNumTracks(0), mWriteErrors(0), mUnderruns(0), mOverruns(0),
Glenn Kasten1295bb4d2012-05-31 07:43:43 -0700594 mSampleRate(0), mFrameCount(0), /* mMeasuredWarmupTs({0, 0}), */ mWarmupCycles(0),
595 mTrackMask(0)
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700596#ifdef FAST_MIXER_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700597 , mBounds(0)
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700598#endif
599{
Glenn Kasten288ed212012-04-25 17:52:27 -0700600 mMeasuredWarmupTs.tv_sec = 0;
601 mMeasuredWarmupTs.tv_nsec = 0;
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700602 // sample arrays aren't accessed atomically with respect to the bounds,
603 // so clearing reduces chance for dumpsys to read random uninitialized samples
604 memset(&mMonotonicNs, 0, sizeof(mMonotonicNs));
605 memset(&mLoadNs, 0, sizeof(mLoadNs));
Glenn Kasten0a14c4c2012-06-13 14:58:49 -0700606#ifdef CPU_FREQUENCY_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700607 memset(&mCpukHz, 0, sizeof(mCpukHz));
Glenn Kasten0a14c4c2012-06-13 14:58:49 -0700608#endif
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700609}
610
611FastMixerDumpState::~FastMixerDumpState()
612{
613}
614
Glenn Kasten1ab212cf2012-09-07 12:58:38 -0700615// helper function called by qsort()
616static int compare_uint32_t(const void *pa, const void *pb)
617{
618 uint32_t a = *(const uint32_t *)pa;
619 uint32_t b = *(const uint32_t *)pb;
620 if (a < b) {
621 return -1;
622 } else if (a > b) {
623 return 1;
624 } else {
625 return 0;
626 }
627}
628
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700629void FastMixerDumpState::dump(int fd)
630{
Glenn Kasten868c0ab2012-06-13 14:59:17 -0700631 if (mCommand == FastMixerState::INITIAL) {
632 fdprintf(fd, "FastMixer not initialized\n");
633 return;
634 }
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700635#define COMMAND_MAX 32
636 char string[COMMAND_MAX];
637 switch (mCommand) {
638 case FastMixerState::INITIAL:
639 strcpy(string, "INITIAL");
640 break;
641 case FastMixerState::HOT_IDLE:
642 strcpy(string, "HOT_IDLE");
643 break;
644 case FastMixerState::COLD_IDLE:
645 strcpy(string, "COLD_IDLE");
646 break;
647 case FastMixerState::EXIT:
648 strcpy(string, "EXIT");
649 break;
650 case FastMixerState::MIX:
651 strcpy(string, "MIX");
652 break;
653 case FastMixerState::WRITE:
654 strcpy(string, "WRITE");
655 break;
656 case FastMixerState::MIX_WRITE:
657 strcpy(string, "MIX_WRITE");
658 break;
659 default:
660 snprintf(string, COMMAND_MAX, "%d", mCommand);
661 break;
662 }
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700663 double measuredWarmupMs = (mMeasuredWarmupTs.tv_sec * 1000.0) +
Glenn Kasten288ed212012-04-25 17:52:27 -0700664 (mMeasuredWarmupTs.tv_nsec / 1000000.0);
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700665 double mixPeriodSec = (double) mFrameCount / (double) mSampleRate;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700666 fdprintf(fd, "FastMixer command=%s writeSequence=%u framesWritten=%u\n"
Glenn Kasten21e8c502012-04-12 09:39:42 -0700667 " numTracks=%u writeErrors=%u underruns=%u overruns=%u\n"
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700668 " sampleRate=%u frameCount=%u measuredWarmup=%.3g ms, warmupCycles=%u\n"
669 " mixPeriod=%.2f ms\n",
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700670 string, mWriteSequence, mFramesWritten,
Glenn Kasten21e8c502012-04-12 09:39:42 -0700671 mNumTracks, mWriteErrors, mUnderruns, mOverruns,
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700672 mSampleRate, mFrameCount, measuredWarmupMs, mWarmupCycles,
673 mixPeriodSec * 1e3);
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700674#ifdef FAST_MIXER_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700675 // find the interval of valid samples
676 uint32_t bounds = mBounds;
677 uint32_t newestOpen = bounds & 0xFFFF;
678 uint32_t oldestClosed = bounds >> 16;
679 uint32_t n = (newestOpen - oldestClosed) & 0xFFFF;
680 if (n > kSamplingN) {
681 ALOGE("too many samples %u", n);
682 n = kSamplingN;
683 }
684 // statistics for monotonic (wall clock) time, thread raw CPU load in time, CPU clock frequency,
685 // and adjusted CPU load in MHz normalized for CPU clock frequency
Glenn Kasten0a14c4c2012-06-13 14:58:49 -0700686 CentralTendencyStatistics wall, loadNs;
687#ifdef CPU_FREQUENCY_STATISTICS
688 CentralTendencyStatistics kHz, loadMHz;
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700689 uint32_t previousCpukHz = 0;
Glenn Kasten0a14c4c2012-06-13 14:58:49 -0700690#endif
Glenn Kasten1ab212cf2012-09-07 12:58:38 -0700691 // Assuming a normal distribution for cycle times, three standard deviations on either side of
692 // the mean account for 99.73% of the population. So if we take each tail to be 1/1000 of the
693 // sample set, we get 99.8% combined, or close to three standard deviations.
694 static const uint32_t kTailDenominator = 1000;
695 uint32_t *tail = n >= kTailDenominator ? new uint32_t[n] : NULL;
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700696 // loop over all the samples
Glenn Kasten1ab212cf2012-09-07 12:58:38 -0700697 for (uint32_t j = 0; j < n; ++j) {
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700698 size_t i = oldestClosed++ & (kSamplingN - 1);
699 uint32_t wallNs = mMonotonicNs[i];
Glenn Kasten1ab212cf2012-09-07 12:58:38 -0700700 if (tail != NULL) {
701 tail[j] = wallNs;
702 }
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700703 wall.sample(wallNs);
704 uint32_t sampleLoadNs = mLoadNs[i];
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700705 loadNs.sample(sampleLoadNs);
Glenn Kasten0a14c4c2012-06-13 14:58:49 -0700706#ifdef CPU_FREQUENCY_STATISTICS
707 uint32_t sampleCpukHz = mCpukHz[i];
Glenn Kastenc059bd42012-05-14 17:41:09 -0700708 // skip bad kHz samples
709 if ((sampleCpukHz & ~0xF) != 0) {
710 kHz.sample(sampleCpukHz >> 4);
711 if (sampleCpukHz == previousCpukHz) {
712 double megacycles = (double) sampleLoadNs * (double) (sampleCpukHz >> 4) * 1e-12;
713 double adjMHz = megacycles / mixPeriodSec; // _not_ wallNs * 1e9
714 loadMHz.sample(adjMHz);
715 }
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700716 }
717 previousCpukHz = sampleCpukHz;
Glenn Kasten0a14c4c2012-06-13 14:58:49 -0700718#endif
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700719 }
720 fdprintf(fd, "Simple moving statistics over last %.1f seconds:\n", wall.n() * mixPeriodSec);
721 fdprintf(fd, " wall clock time in ms per mix cycle:\n"
722 " mean=%.2f min=%.2f max=%.2f stddev=%.2f\n",
723 wall.mean()*1e-6, wall.minimum()*1e-6, wall.maximum()*1e-6, wall.stddev()*1e-6);
724 fdprintf(fd, " raw CPU load in us per mix cycle:\n"
725 " mean=%.0f min=%.0f max=%.0f stddev=%.0f\n",
726 loadNs.mean()*1e-3, loadNs.minimum()*1e-3, loadNs.maximum()*1e-3,
727 loadNs.stddev()*1e-3);
Glenn Kasten0a14c4c2012-06-13 14:58:49 -0700728#ifdef CPU_FREQUENCY_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -0700729 fdprintf(fd, " CPU clock frequency in MHz:\n"
730 " mean=%.0f min=%.0f max=%.0f stddev=%.0f\n",
731 kHz.mean()*1e-3, kHz.minimum()*1e-3, kHz.maximum()*1e-3, kHz.stddev()*1e-3);
732 fdprintf(fd, " adjusted CPU load in MHz (i.e. normalized for CPU clock frequency):\n"
733 " mean=%.1f min=%.1f max=%.1f stddev=%.1f\n",
734 loadMHz.mean(), loadMHz.minimum(), loadMHz.maximum(), loadMHz.stddev());
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700735#endif
Glenn Kasten1ab212cf2012-09-07 12:58:38 -0700736 if (tail != NULL) {
737 qsort(tail, n, sizeof(uint32_t), compare_uint32_t);
738 // assume same number of tail samples on each side, left and right
739 uint32_t count = n / kTailDenominator;
740 CentralTendencyStatistics left, right;
741 for (uint32_t i = 0; i < count; ++i) {
742 left.sample(tail[i]);
743 right.sample(tail[n - (i + 1)]);
744 }
745 fdprintf(fd, "Distribution of mix cycle times in ms for the tails (> ~3 stddev outliers):\n"
746 " left tail: mean=%.2f min=%.2f max=%.2f stddev=%.2f\n"
747 " right tail: mean=%.2f min=%.2f max=%.2f stddev=%.2f\n",
748 left.mean()*1e-6, left.minimum()*1e-6, left.maximum()*1e-6, left.stddev()*1e-6,
749 right.mean()*1e-6, right.minimum()*1e-6, right.maximum()*1e-6,
750 right.stddev()*1e-6);
751 delete[] tail;
752 }
Glenn Kasten0a14c4c2012-06-13 14:58:49 -0700753#endif
Glenn Kasten1295bb4d2012-05-31 07:43:43 -0700754 // The active track mask and track states are updated non-atomically.
755 // So if we relied on isActive to decide whether to display,
756 // then we might display an obsolete track or omit an active track.
757 // Instead we always display all tracks, with an indication
758 // of whether we think the track is active.
759 uint32_t trackMask = mTrackMask;
760 fdprintf(fd, "Fast tracks: kMaxFastTracks=%u activeMask=%#x\n",
761 FastMixerState::kMaxFastTracks, trackMask);
762 fdprintf(fd, "Index Active Full Partial Empty Recent Ready\n");
763 for (uint32_t i = 0; i < FastMixerState::kMaxFastTracks; ++i, trackMask >>= 1) {
764 bool isActive = trackMask & 1;
765 const FastTrackDump *ftDump = &mTracks[i];
766 const FastTrackUnderruns& underruns = ftDump->mUnderruns;
767 const char *mostRecent;
768 switch (underruns.mBitFields.mMostRecent) {
769 case UNDERRUN_FULL:
770 mostRecent = "full";
771 break;
772 case UNDERRUN_PARTIAL:
773 mostRecent = "partial";
774 break;
775 case UNDERRUN_EMPTY:
776 mostRecent = "empty";
777 break;
778 default:
779 mostRecent = "?";
780 break;
781 }
782 fdprintf(fd, "%5u %6s %4u %7u %5u %7s %5u\n", i, isActive ? "yes" : "no",
783 (underruns.mBitFields.mFull) & UNDERRUN_MASK,
784 (underruns.mBitFields.mPartial) & UNDERRUN_MASK,
785 (underruns.mBitFields.mEmpty) & UNDERRUN_MASK,
786 mostRecent, ftDump->mFramesReady);
787 }
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700788}
789
790} // namespace android