blob: 9248bbad3cf3309e29e9a10b28c6c59729781e41 [file] [log] [blame]
Eric Laurent951f4552014-05-20 10:48:17 -07001/*
2**
3** Copyright 2014, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18
19#define LOG_TAG "AudioFlinger::PatchPanel"
20//#define LOG_NDEBUG 0
21
22#include "Configuration.h"
23#include <utils/Log.h>
24#include <audio_utils/primitives.h>
25
26#include "AudioFlinger.h"
27#include "ServiceUtilities.h"
28#include <media/AudioParameter.h>
29
30// ----------------------------------------------------------------------------
31
32// Note: the following macro is used for extremely verbose logging message. In
33// order to run with ALOG_ASSERT turned on, we need to have LOG_NDEBUG set to
34// 0; but one side effect of this is to turn all LOGV's as well. Some messages
35// are so verbose that we want to suppress them even when we have ALOG_ASSERT
36// turned on. Do not uncomment the #def below unless you really know what you
37// are doing and want to see all of the extremely verbose messages.
38//#define VERY_VERY_VERBOSE_LOGGING
39#ifdef VERY_VERY_VERBOSE_LOGGING
40#define ALOGVV ALOGV
41#else
42#define ALOGVV(a...) do { } while(0)
43#endif
44
45namespace android {
46
47/* List connected audio ports and their attributes */
48status_t AudioFlinger::listAudioPorts(unsigned int *num_ports,
49 struct audio_port *ports)
50{
51 Mutex::Autolock _l(mLock);
52 if (mPatchPanel != 0) {
53 return mPatchPanel->listAudioPorts(num_ports, ports);
54 }
55 return NO_INIT;
56}
57
58/* Get supported attributes for a given audio port */
59status_t AudioFlinger::getAudioPort(struct audio_port *port)
60{
61 Mutex::Autolock _l(mLock);
62 if (mPatchPanel != 0) {
63 return mPatchPanel->getAudioPort(port);
64 }
65 return NO_INIT;
66}
67
68
69/* Connect a patch between several source and sink ports */
70status_t AudioFlinger::createAudioPatch(const struct audio_patch *patch,
71 audio_patch_handle_t *handle)
72{
73 Mutex::Autolock _l(mLock);
74 if (mPatchPanel != 0) {
75 return mPatchPanel->createAudioPatch(patch, handle);
76 }
77 return NO_INIT;
78}
79
80/* Disconnect a patch */
81status_t AudioFlinger::releaseAudioPatch(audio_patch_handle_t handle)
82{
83 Mutex::Autolock _l(mLock);
84 if (mPatchPanel != 0) {
85 return mPatchPanel->releaseAudioPatch(handle);
86 }
87 return NO_INIT;
88}
89
90
91/* List connected audio ports and they attributes */
92status_t AudioFlinger::listAudioPatches(unsigned int *num_patches,
93 struct audio_patch *patches)
94{
95 Mutex::Autolock _l(mLock);
96 if (mPatchPanel != 0) {
97 return mPatchPanel->listAudioPatches(num_patches, patches);
98 }
99 return NO_INIT;
100}
101
102/* Set audio port configuration */
103status_t AudioFlinger::setAudioPortConfig(const struct audio_port_config *config)
104{
105 Mutex::Autolock _l(mLock);
106 if (mPatchPanel != 0) {
107 return mPatchPanel->setAudioPortConfig(config);
108 }
109 return NO_INIT;
110}
111
112
113AudioFlinger::PatchPanel::PatchPanel(const sp<AudioFlinger>& audioFlinger)
114 : mAudioFlinger(audioFlinger)
115{
116}
117
118AudioFlinger::PatchPanel::~PatchPanel()
119{
120}
121
122/* List connected audio ports and their attributes */
123status_t AudioFlinger::PatchPanel::listAudioPorts(unsigned int *num_ports __unused,
124 struct audio_port *ports __unused)
125{
126 ALOGV("listAudioPorts");
127 return NO_ERROR;
128}
129
130/* Get supported attributes for a given audio port */
131status_t AudioFlinger::PatchPanel::getAudioPort(struct audio_port *port __unused)
132{
133 ALOGV("getAudioPort");
134 return NO_ERROR;
135}
136
137
138/* Connect a patch between several source and sink ports */
139status_t AudioFlinger::PatchPanel::createAudioPatch(const struct audio_patch *patch,
140 audio_patch_handle_t *handle)
141{
142 ALOGV("createAudioPatch() num_sources %d num_sinks %d handle %d",
143 patch->num_sources, patch->num_sinks, *handle);
144 status_t status = NO_ERROR;
Eric Laurent951f4552014-05-20 10:48:17 -0700145 audio_patch_handle_t halHandle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent951f4552014-05-20 10:48:17 -0700146 sp<AudioFlinger> audioflinger = mAudioFlinger.promote();
147 if (audioflinger == 0) {
148 return NO_INIT;
149 }
Eric Laurent83b88082014-06-20 18:31:16 -0700150
Eric Laurent951f4552014-05-20 10:48:17 -0700151 if (handle == NULL || patch == NULL) {
152 return BAD_VALUE;
153 }
Eric Laurent874c42872014-08-08 15:13:39 -0700154 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
Eric Laurent951f4552014-05-20 10:48:17 -0700155 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
156 return BAD_VALUE;
157 }
Eric Laurent874c42872014-08-08 15:13:39 -0700158 // limit number of sources to 1 for now or 2 sources for special cross hw module case.
159 // only the audio policy manager can request a patch creation with 2 sources.
160 if (patch->num_sources > 2) {
161 return INVALID_OPERATION;
162 }
Eric Laurent951f4552014-05-20 10:48:17 -0700163
Eric Laurent83b88082014-06-20 18:31:16 -0700164 if (*handle != AUDIO_PATCH_HANDLE_NONE) {
165 for (size_t index = 0; *handle != 0 && index < mPatches.size(); index++) {
166 if (*handle == mPatches[index]->mHandle) {
167 ALOGV("createAudioPatch() removing patch handle %d", *handle);
168 halHandle = mPatches[index]->mHalHandle;
soon1.choid8cd4772015-01-05 14:27:42 +0900169 Patch *removedPatch = mPatches[index];
Eric Laurent83b88082014-06-20 18:31:16 -0700170 mPatches.removeAt(index);
soon1.choid8cd4772015-01-05 14:27:42 +0900171 delete removedPatch;
Eric Laurent83b88082014-06-20 18:31:16 -0700172 break;
173 }
Eric Laurent951f4552014-05-20 10:48:17 -0700174 }
175 }
176
Eric Laurent83b88082014-06-20 18:31:16 -0700177 Patch *newPatch = new Patch(patch);
178
Eric Laurent951f4552014-05-20 10:48:17 -0700179 switch (patch->sources[0].type) {
180 case AUDIO_PORT_TYPE_DEVICE: {
Eric Laurent874c42872014-08-08 15:13:39 -0700181 audio_module_handle_t srcModule = patch->sources[0].ext.device.hw_module;
182 ssize_t index = audioflinger->mAudioHwDevs.indexOfKey(srcModule);
Eric Laurent951f4552014-05-20 10:48:17 -0700183 if (index < 0) {
Eric Laurent874c42872014-08-08 15:13:39 -0700184 ALOGW("createAudioPatch() bad src hw module %d", srcModule);
Eric Laurent83b88082014-06-20 18:31:16 -0700185 status = BAD_VALUE;
186 goto exit;
Eric Laurent951f4552014-05-20 10:48:17 -0700187 }
Eric Laurent6a94d692014-05-20 11:18:06 -0700188 AudioHwDevice *audioHwDevice = audioflinger->mAudioHwDevs.valueAt(index);
Eric Laurent951f4552014-05-20 10:48:17 -0700189 for (unsigned int i = 0; i < patch->num_sinks; i++) {
Eric Laurent874c42872014-08-08 15:13:39 -0700190 // support only one sink if connection to a mix or across HW modules
191 if ((patch->sinks[i].type == AUDIO_PORT_TYPE_MIX ||
192 patch->sinks[i].ext.mix.hw_module != srcModule) &&
193 patch->num_sinks > 1) {
194 status = INVALID_OPERATION;
195 goto exit;
196 }
Eric Laurent6a94d692014-05-20 11:18:06 -0700197 // reject connection to different sink types
198 if (patch->sinks[i].type != patch->sinks[0].type) {
199 ALOGW("createAudioPatch() different sink types in same patch not supported");
Eric Laurent83b88082014-06-20 18:31:16 -0700200 status = BAD_VALUE;
201 goto exit;
Eric Laurent951f4552014-05-20 10:48:17 -0700202 }
Eric Laurent951f4552014-05-20 10:48:17 -0700203 }
204
Eric Laurent3bcf8592015-04-03 12:13:24 -0700205 // manage patches requiring a software bridge
206 // - Device to device AND
207 // - source HW module != destination HW module OR
208 // - audio HAL version < 3.0
209 // - special patch request with 2 sources (reuse one existing output mix)
210 if ((patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) &&
211 ((patch->sinks[0].ext.device.hw_module != srcModule) ||
212 (audioHwDevice->version() < AUDIO_DEVICE_API_VERSION_3_0) ||
213 (patch->num_sources == 2))) {
Eric Laurent83b88082014-06-20 18:31:16 -0700214 if (patch->num_sources == 2) {
215 if (patch->sources[1].type != AUDIO_PORT_TYPE_MIX ||
216 patch->sinks[0].ext.device.hw_module !=
217 patch->sources[1].ext.mix.hw_module) {
218 ALOGW("createAudioPatch() invalid source combination");
219 status = INVALID_OPERATION;
220 goto exit;
Eric Laurent951f4552014-05-20 10:48:17 -0700221 }
Eric Laurent83b88082014-06-20 18:31:16 -0700222
223 sp<ThreadBase> thread =
224 audioflinger->checkPlaybackThread_l(patch->sources[1].ext.mix.handle);
225 newPatch->mPlaybackThread = (MixerThread *)thread.get();
226 if (thread == 0) {
227 ALOGW("createAudioPatch() cannot get playback thread");
228 status = INVALID_OPERATION;
229 goto exit;
230 }
Eric Laurent951f4552014-05-20 10:48:17 -0700231 } else {
Eric Laurentcf2c0212014-07-25 16:20:43 -0700232 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
233 audio_devices_t device = patch->sinks[0].ext.device.type;
234 String8 address = String8(patch->sinks[0].ext.device.address);
235 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurent83b88082014-06-20 18:31:16 -0700236 newPatch->mPlaybackThread = audioflinger->openOutput_l(
237 patch->sinks[0].ext.device.hw_module,
Eric Laurentcf2c0212014-07-25 16:20:43 -0700238 &output,
Eric Laurent83b88082014-06-20 18:31:16 -0700239 &config,
Eric Laurentcf2c0212014-07-25 16:20:43 -0700240 device,
241 address,
Eric Laurent83b88082014-06-20 18:31:16 -0700242 AUDIO_OUTPUT_FLAG_NONE);
243 ALOGV("audioflinger->openOutput_l() returned %p",
244 newPatch->mPlaybackThread.get());
245 if (newPatch->mPlaybackThread == 0) {
246 status = NO_MEMORY;
247 goto exit;
248 }
249 }
250 uint32_t channelCount = newPatch->mPlaybackThread->channelCount();
251 audio_devices_t device = patch->sources[0].ext.device.type;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700252 String8 address = String8(patch->sources[0].ext.device.address);
253 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
Eric Laurent83b88082014-06-20 18:31:16 -0700254 audio_channel_mask_t inChannelMask = audio_channel_in_mask_from_count(channelCount);
255 config.sample_rate = newPatch->mPlaybackThread->sampleRate();
256 config.channel_mask = inChannelMask;
257 config.format = newPatch->mPlaybackThread->format();
Eric Laurentcf2c0212014-07-25 16:20:43 -0700258 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurent874c42872014-08-08 15:13:39 -0700259 newPatch->mRecordThread = audioflinger->openInput_l(srcModule,
Eric Laurentcf2c0212014-07-25 16:20:43 -0700260 &input,
Eric Laurent83b88082014-06-20 18:31:16 -0700261 &config,
Eric Laurentcf2c0212014-07-25 16:20:43 -0700262 device,
263 address,
264 AUDIO_SOURCE_MIC,
Eric Laurent83b88082014-06-20 18:31:16 -0700265 AUDIO_INPUT_FLAG_NONE);
266 ALOGV("audioflinger->openInput_l() returned %p inChannelMask %08x",
267 newPatch->mRecordThread.get(), inChannelMask);
268 if (newPatch->mRecordThread == 0) {
269 status = NO_MEMORY;
270 goto exit;
271 }
272 status = createPatchConnections(newPatch, patch);
273 if (status != NO_ERROR) {
274 goto exit;
Eric Laurent951f4552014-05-20 10:48:17 -0700275 }
276 } else {
Eric Laurent054d9d32015-04-24 08:48:48 -0700277 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
278 sp<ThreadBase> thread = audioflinger->checkRecordThread_l(
279 patch->sinks[0].ext.mix.handle);
280 if (thread == 0) {
281 ALOGW("createAudioPatch() bad capture I/O handle %d",
282 patch->sinks[0].ext.mix.handle);
283 status = BAD_VALUE;
284 goto exit;
Eric Laurent83b88082014-06-20 18:31:16 -0700285 }
Eric Laurent054d9d32015-04-24 08:48:48 -0700286 status = thread->sendCreateAudioPatchConfigEvent(patch, &halHandle);
Eric Laurent83b88082014-06-20 18:31:16 -0700287 } else {
Eric Laurent054d9d32015-04-24 08:48:48 -0700288 if (audioHwDevice->version() < AUDIO_DEVICE_API_VERSION_3_0) {
Eric Laurent3bcf8592015-04-03 12:13:24 -0700289 status = INVALID_OPERATION;
290 goto exit;
291 }
292
Eric Laurent054d9d32015-04-24 08:48:48 -0700293 audio_hw_device_t *hwDevice = audioHwDevice->hwDevice();
294 status = hwDevice->create_audio_patch(hwDevice,
295 patch->num_sources,
296 patch->sources,
297 patch->num_sinks,
298 patch->sinks,
299 &halHandle);
Eric Laurent83b88082014-06-20 18:31:16 -0700300 }
Eric Laurent951f4552014-05-20 10:48:17 -0700301 }
302 } break;
303 case AUDIO_PORT_TYPE_MIX: {
Eric Laurent874c42872014-08-08 15:13:39 -0700304 audio_module_handle_t srcModule = patch->sources[0].ext.mix.hw_module;
305 ssize_t index = audioflinger->mAudioHwDevs.indexOfKey(srcModule);
Eric Laurent951f4552014-05-20 10:48:17 -0700306 if (index < 0) {
Eric Laurent874c42872014-08-08 15:13:39 -0700307 ALOGW("createAudioPatch() bad src hw module %d", srcModule);
Eric Laurent83b88082014-06-20 18:31:16 -0700308 status = BAD_VALUE;
309 goto exit;
Eric Laurent951f4552014-05-20 10:48:17 -0700310 }
311 // limit to connections between devices and output streams
Eric Laurent054d9d32015-04-24 08:48:48 -0700312 audio_devices_t type = AUDIO_DEVICE_NONE;
Eric Laurent951f4552014-05-20 10:48:17 -0700313 for (unsigned int i = 0; i < patch->num_sinks; i++) {
314 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent83b88082014-06-20 18:31:16 -0700315 ALOGW("createAudioPatch() invalid sink type %d for mix source",
Eric Laurent951f4552014-05-20 10:48:17 -0700316 patch->sinks[i].type);
Eric Laurent83b88082014-06-20 18:31:16 -0700317 status = BAD_VALUE;
318 goto exit;
Eric Laurent951f4552014-05-20 10:48:17 -0700319 }
320 // limit to connections between sinks and sources on same HW module
Eric Laurent874c42872014-08-08 15:13:39 -0700321 if (patch->sinks[i].ext.device.hw_module != srcModule) {
Eric Laurent83b88082014-06-20 18:31:16 -0700322 status = BAD_VALUE;
323 goto exit;
Eric Laurent951f4552014-05-20 10:48:17 -0700324 }
Eric Laurent054d9d32015-04-24 08:48:48 -0700325 type |= patch->sinks[i].ext.device.type;
Eric Laurent951f4552014-05-20 10:48:17 -0700326 }
Eric Laurent951f4552014-05-20 10:48:17 -0700327 sp<ThreadBase> thread =
328 audioflinger->checkPlaybackThread_l(patch->sources[0].ext.mix.handle);
329 if (thread == 0) {
330 ALOGW("createAudioPatch() bad playback I/O handle %d",
331 patch->sources[0].ext.mix.handle);
Eric Laurent83b88082014-06-20 18:31:16 -0700332 status = BAD_VALUE;
333 goto exit;
Eric Laurent951f4552014-05-20 10:48:17 -0700334 }
Eric Laurent054d9d32015-04-24 08:48:48 -0700335 if (thread == audioflinger->primaryPlaybackThread_l()) {
336 AudioParameter param = AudioParameter();
Eric Laurentcf2c0212014-07-25 16:20:43 -0700337 param.addInt(String8(AUDIO_PARAMETER_STREAM_ROUTING), (int)type);
Eric Laurent054d9d32015-04-24 08:48:48 -0700338
339 audioflinger->broacastParametersToRecordThreads_l(param.toString());
Eric Laurent951f4552014-05-20 10:48:17 -0700340 }
341
Eric Laurent054d9d32015-04-24 08:48:48 -0700342 status = thread->sendCreateAudioPatchConfigEvent(patch, &halHandle);
Eric Laurent951f4552014-05-20 10:48:17 -0700343 } break;
344 default:
Eric Laurent83b88082014-06-20 18:31:16 -0700345 status = BAD_VALUE;
346 goto exit;
Eric Laurent951f4552014-05-20 10:48:17 -0700347 }
Eric Laurent83b88082014-06-20 18:31:16 -0700348exit:
Eric Laurent951f4552014-05-20 10:48:17 -0700349 ALOGV("createAudioPatch() status %d", status);
350 if (status == NO_ERROR) {
351 *handle = audioflinger->nextUniqueId();
Eric Laurent951f4552014-05-20 10:48:17 -0700352 newPatch->mHandle = *handle;
353 newPatch->mHalHandle = halHandle;
354 mPatches.add(newPatch);
355 ALOGV("createAudioPatch() added new patch handle %d halHandle %d", *handle, halHandle);
Eric Laurent83b88082014-06-20 18:31:16 -0700356 } else {
357 clearPatchConnections(newPatch);
358 delete newPatch;
Eric Laurent951f4552014-05-20 10:48:17 -0700359 }
360 return status;
361}
362
Eric Laurent83b88082014-06-20 18:31:16 -0700363status_t AudioFlinger::PatchPanel::createPatchConnections(Patch *patch,
364 const struct audio_patch *audioPatch)
365{
366 // create patch from source device to record thread input
367 struct audio_patch subPatch;
368 subPatch.num_sources = 1;
369 subPatch.sources[0] = audioPatch->sources[0];
370 subPatch.num_sinks = 1;
371
372 patch->mRecordThread->getAudioPortConfig(&subPatch.sinks[0]);
373 subPatch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_MIC;
374
375 status_t status = createAudioPatch(&subPatch, &patch->mRecordPatchHandle);
376 if (status != NO_ERROR) {
377 patch->mRecordPatchHandle = AUDIO_PATCH_HANDLE_NONE;
378 return status;
379 }
380
381 // create patch from playback thread output to sink device
382 patch->mPlaybackThread->getAudioPortConfig(&subPatch.sources[0]);
383 subPatch.sinks[0] = audioPatch->sinks[0];
384 status = createAudioPatch(&subPatch, &patch->mPlaybackPatchHandle);
385 if (status != NO_ERROR) {
386 patch->mPlaybackPatchHandle = AUDIO_PATCH_HANDLE_NONE;
387 return status;
388 }
389
390 // use a pseudo LCM between input and output framecount
391 size_t playbackFrameCount = patch->mPlaybackThread->frameCount();
392 int playbackShift = __builtin_ctz(playbackFrameCount);
393 size_t recordFramecount = patch->mRecordThread->frameCount();
394 int shift = __builtin_ctz(recordFramecount);
395 if (playbackShift < shift) {
396 shift = playbackShift;
397 }
398 size_t frameCount = (playbackFrameCount * recordFramecount) >> shift;
399 ALOGV("createPatchConnections() playframeCount %d recordFramecount %d frameCount %d ",
400 playbackFrameCount, recordFramecount, frameCount);
401
402 // create a special record track to capture from record thread
403 uint32_t channelCount = patch->mPlaybackThread->channelCount();
404 audio_channel_mask_t inChannelMask = audio_channel_in_mask_from_count(channelCount);
405 audio_channel_mask_t outChannelMask = patch->mPlaybackThread->channelMask();
406 uint32_t sampleRate = patch->mPlaybackThread->sampleRate();
407 audio_format_t format = patch->mPlaybackThread->format();
408
409 patch->mPatchRecord = new RecordThread::PatchRecord(
410 patch->mRecordThread.get(),
411 sampleRate,
412 inChannelMask,
413 format,
414 frameCount,
415 NULL,
416 IAudioFlinger::TRACK_DEFAULT);
417 if (patch->mPatchRecord == 0) {
418 return NO_MEMORY;
419 }
420 status = patch->mPatchRecord->initCheck();
421 if (status != NO_ERROR) {
422 return status;
423 }
424 patch->mRecordThread->addPatchRecord(patch->mPatchRecord);
425
426 // create a special playback track to render to playback thread.
427 // this track is given the same buffer as the PatchRecord buffer
428 patch->mPatchTrack = new PlaybackThread::PatchTrack(
429 patch->mPlaybackThread.get(),
Eric Laurent3bcf8592015-04-03 12:13:24 -0700430 audioPatch->sources[1].ext.mix.usecase.stream,
Eric Laurent83b88082014-06-20 18:31:16 -0700431 sampleRate,
432 outChannelMask,
433 format,
434 frameCount,
435 patch->mPatchRecord->buffer(),
436 IAudioFlinger::TRACK_DEFAULT);
437 if (patch->mPatchTrack == 0) {
438 return NO_MEMORY;
439 }
440 status = patch->mPatchTrack->initCheck();
441 if (status != NO_ERROR) {
442 return status;
443 }
444 patch->mPlaybackThread->addPatchTrack(patch->mPatchTrack);
445
446 // tie playback and record tracks together
447 patch->mPatchRecord->setPeerProxy(patch->mPatchTrack.get());
448 patch->mPatchTrack->setPeerProxy(patch->mPatchRecord.get());
449
450 // start capture and playback
451 patch->mPatchRecord->start(AudioSystem::SYNC_EVENT_NONE, 0);
452 patch->mPatchTrack->start();
453
454 return status;
455}
456
457void AudioFlinger::PatchPanel::clearPatchConnections(Patch *patch)
458{
459 sp<AudioFlinger> audioflinger = mAudioFlinger.promote();
460 if (audioflinger == 0) {
461 return;
462 }
463
464 ALOGV("clearPatchConnections() patch->mRecordPatchHandle %d patch->mPlaybackPatchHandle %d",
465 patch->mRecordPatchHandle, patch->mPlaybackPatchHandle);
466
467 if (patch->mPatchRecord != 0) {
468 patch->mPatchRecord->stop();
469 }
470 if (patch->mPatchTrack != 0) {
471 patch->mPatchTrack->stop();
472 }
473 if (patch->mRecordPatchHandle != AUDIO_PATCH_HANDLE_NONE) {
474 releaseAudioPatch(patch->mRecordPatchHandle);
475 patch->mRecordPatchHandle = AUDIO_PATCH_HANDLE_NONE;
476 }
477 if (patch->mPlaybackPatchHandle != AUDIO_PATCH_HANDLE_NONE) {
478 releaseAudioPatch(patch->mPlaybackPatchHandle);
479 patch->mPlaybackPatchHandle = AUDIO_PATCH_HANDLE_NONE;
480 }
481 if (patch->mRecordThread != 0) {
482 if (patch->mPatchRecord != 0) {
483 patch->mRecordThread->deletePatchRecord(patch->mPatchRecord);
484 patch->mPatchRecord.clear();
485 }
486 audioflinger->closeInputInternal_l(patch->mRecordThread);
487 patch->mRecordThread.clear();
488 }
489 if (patch->mPlaybackThread != 0) {
490 if (patch->mPatchTrack != 0) {
491 patch->mPlaybackThread->deletePatchTrack(patch->mPatchTrack);
492 patch->mPatchTrack.clear();
493 }
494 // if num sources == 2 we are reusing an existing playback thread so we do not close it
495 if (patch->mAudioPatch.num_sources != 2) {
496 audioflinger->closeOutputInternal_l(patch->mPlaybackThread);
497 }
498 patch->mPlaybackThread.clear();
499 }
500}
501
Eric Laurent951f4552014-05-20 10:48:17 -0700502/* Disconnect a patch */
503status_t AudioFlinger::PatchPanel::releaseAudioPatch(audio_patch_handle_t handle)
504{
505 ALOGV("releaseAudioPatch handle %d", handle);
506 status_t status = NO_ERROR;
507 size_t index;
508
509 sp<AudioFlinger> audioflinger = mAudioFlinger.promote();
510 if (audioflinger == 0) {
511 return NO_INIT;
512 }
513
514 for (index = 0; index < mPatches.size(); index++) {
515 if (handle == mPatches[index]->mHandle) {
516 break;
517 }
518 }
519 if (index == mPatches.size()) {
520 return BAD_VALUE;
521 }
Eric Laurent83b88082014-06-20 18:31:16 -0700522 Patch *removedPatch = mPatches[index];
523 mPatches.removeAt(index);
Eric Laurent951f4552014-05-20 10:48:17 -0700524
Eric Laurent83b88082014-06-20 18:31:16 -0700525 struct audio_patch *patch = &removedPatch->mAudioPatch;
Eric Laurent951f4552014-05-20 10:48:17 -0700526
527 switch (patch->sources[0].type) {
528 case AUDIO_PORT_TYPE_DEVICE: {
Eric Laurent874c42872014-08-08 15:13:39 -0700529 audio_module_handle_t srcModule = patch->sources[0].ext.device.hw_module;
530 ssize_t index = audioflinger->mAudioHwDevs.indexOfKey(srcModule);
Eric Laurent951f4552014-05-20 10:48:17 -0700531 if (index < 0) {
Eric Laurent874c42872014-08-08 15:13:39 -0700532 ALOGW("releaseAudioPatch() bad src hw module %d", srcModule);
Eric Laurent951f4552014-05-20 10:48:17 -0700533 status = BAD_VALUE;
534 break;
535 }
Eric Laurent83b88082014-06-20 18:31:16 -0700536
Eric Laurent3bcf8592015-04-03 12:13:24 -0700537 if (removedPatch->mRecordPatchHandle != AUDIO_PATCH_HANDLE_NONE ||
538 removedPatch->mPlaybackPatchHandle != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurent83b88082014-06-20 18:31:16 -0700539 clearPatchConnections(removedPatch);
540 break;
541 }
542
Eric Laurent054d9d32015-04-24 08:48:48 -0700543 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurent951f4552014-05-20 10:48:17 -0700544 sp<ThreadBase> thread = audioflinger->checkRecordThread_l(
Eric Laurent054d9d32015-04-24 08:48:48 -0700545 patch->sinks[0].ext.mix.handle);
Eric Laurent951f4552014-05-20 10:48:17 -0700546 if (thread == 0) {
547 ALOGW("releaseAudioPatch() bad capture I/O handle %d",
Eric Laurent054d9d32015-04-24 08:48:48 -0700548 patch->sinks[0].ext.mix.handle);
Eric Laurent951f4552014-05-20 10:48:17 -0700549 status = BAD_VALUE;
550 break;
551 }
Eric Laurent054d9d32015-04-24 08:48:48 -0700552 status = thread->sendReleaseAudioPatchConfigEvent(removedPatch->mHalHandle);
553 } else {
554 AudioHwDevice *audioHwDevice = audioflinger->mAudioHwDevs.valueAt(index);
555 if (audioHwDevice->version() < AUDIO_DEVICE_API_VERSION_3_0) {
556 status = INVALID_OPERATION;
557 break;
558 }
559 audio_hw_device_t *hwDevice = audioHwDevice->hwDevice();
560 status = hwDevice->release_audio_patch(hwDevice, removedPatch->mHalHandle);
Eric Laurent951f4552014-05-20 10:48:17 -0700561 }
562 } break;
563 case AUDIO_PORT_TYPE_MIX: {
Eric Laurent874c42872014-08-08 15:13:39 -0700564 audio_module_handle_t srcModule = patch->sources[0].ext.mix.hw_module;
565 ssize_t index = audioflinger->mAudioHwDevs.indexOfKey(srcModule);
Eric Laurent951f4552014-05-20 10:48:17 -0700566 if (index < 0) {
Eric Laurent874c42872014-08-08 15:13:39 -0700567 ALOGW("releaseAudioPatch() bad src hw module %d", srcModule);
Eric Laurent951f4552014-05-20 10:48:17 -0700568 status = BAD_VALUE;
569 break;
570 }
571 sp<ThreadBase> thread =
572 audioflinger->checkPlaybackThread_l(patch->sources[0].ext.mix.handle);
573 if (thread == 0) {
574 ALOGW("releaseAudioPatch() bad playback I/O handle %d",
575 patch->sources[0].ext.mix.handle);
576 status = BAD_VALUE;
577 break;
578 }
Eric Laurent054d9d32015-04-24 08:48:48 -0700579 status = thread->sendReleaseAudioPatchConfigEvent(removedPatch->mHalHandle);
Eric Laurent951f4552014-05-20 10:48:17 -0700580 } break;
581 default:
582 status = BAD_VALUE;
583 break;
584 }
585
Eric Laurent83b88082014-06-20 18:31:16 -0700586 delete removedPatch;
Eric Laurent951f4552014-05-20 10:48:17 -0700587 return status;
588}
589
590
591/* List connected audio ports and they attributes */
592status_t AudioFlinger::PatchPanel::listAudioPatches(unsigned int *num_patches __unused,
593 struct audio_patch *patches __unused)
594{
595 ALOGV("listAudioPatches");
596 return NO_ERROR;
597}
598
599/* Set audio port configuration */
Eric Laurente1715a42014-05-20 11:30:42 -0700600status_t AudioFlinger::PatchPanel::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent951f4552014-05-20 10:48:17 -0700601{
602 ALOGV("setAudioPortConfig");
Eric Laurente1715a42014-05-20 11:30:42 -0700603 status_t status = NO_ERROR;
604
605 sp<AudioFlinger> audioflinger = mAudioFlinger.promote();
606 if (audioflinger == 0) {
607 return NO_INIT;
608 }
609
610 audio_module_handle_t module;
611 if (config->type == AUDIO_PORT_TYPE_DEVICE) {
612 module = config->ext.device.hw_module;
613 } else {
614 module = config->ext.mix.hw_module;
615 }
616
617 ssize_t index = audioflinger->mAudioHwDevs.indexOfKey(module);
618 if (index < 0) {
619 ALOGW("setAudioPortConfig() bad hw module %d", module);
620 return BAD_VALUE;
621 }
622
623 AudioHwDevice *audioHwDevice = audioflinger->mAudioHwDevs.valueAt(index);
624 if (audioHwDevice->version() >= AUDIO_DEVICE_API_VERSION_3_0) {
625 audio_hw_device_t *hwDevice = audioHwDevice->hwDevice();
626 return hwDevice->set_audio_port_config(hwDevice, config);
627 } else {
628 return INVALID_OPERATION;
629 }
Eric Laurent951f4552014-05-20 10:48:17 -0700630 return NO_ERROR;
631}
632
Glenn Kasten63238ef2015-03-02 15:50:29 -0800633} // namespace android