blob: 2c7fffd82f062ef630acf5e25b45827294af71d1 [file] [log] [blame]
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001/*
2 * Copyright (C) 2013 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
Eric Laurentb23d5282013-05-14 15:27:20 -070017#ifndef QCOM_AUDIO_HW_H
18#define QCOM_AUDIO_HW_H
19
20#include <cutils/list.h>
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080021#include <hardware/audio.h>
22
23#include <tinyalsa/asoundlib.h>
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070024#include <tinycompress/tinycompress.h>
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080025
26#include <audio_route/audio_route.h>
27
Eric Laurentb23d5282013-05-14 15:27:20 -070028/* Flags used to initialize acdb_settings variable that goes to ACDB library */
29#define DMIC_FLAG 0x00000002
30#define TTY_MODE_OFF 0x00000010
31#define TTY_MODE_FULL 0x00000020
32#define TTY_MODE_VCO 0x00000040
33#define TTY_MODE_HCO 0x00000080
34#define TTY_MODE_CLEAR 0xFFFFFF0F
35
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080036#define ACDB_DEV_TYPE_OUT 1
37#define ACDB_DEV_TYPE_IN 2
38
Eric Laurentb23d5282013-05-14 15:27:20 -070039#define MAX_SUPPORTED_CHANNEL_MASKS 2
Ravi Kumar Alamanda72c411f2013-02-12 02:09:33 -080040
Eric Laurentb23d5282013-05-14 15:27:20 -070041typedef int snd_device_t;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080042
43/* These are the supported use cases by the hardware.
44 * Each usecase is mapped to a specific PCM device.
45 * Refer to pcm_device_table[].
46 */
47typedef enum {
48 USECASE_INVALID = -1,
49 /* Playback usecases */
50 USECASE_AUDIO_PLAYBACK_DEEP_BUFFER = 0,
51 USECASE_AUDIO_PLAYBACK_LOW_LATENCY,
52 USECASE_AUDIO_PLAYBACK_MULTI_CH,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070053 USECASE_AUDIO_PLAYBACK_OFFLOAD,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080054
55 /* Capture usecases */
56 USECASE_AUDIO_RECORD,
57 USECASE_AUDIO_RECORD_LOW_LATENCY,
58
59 USECASE_VOICE_CALL,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080060 AUDIO_USECASE_MAX
61} audio_usecase_t;
62
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080063#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
64
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080065/*
66 * tinyAlsa library interprets period size as number of frames
67 * one frame = channel_count * sizeof (pcm sample)
68 * so if format = 16-bit PCM and channels = Stereo, frame size = 2 ch * 2 = 4 bytes
69 * DEEP_BUFFER_OUTPUT_PERIOD_SIZE = 1024 means 1024 * 4 = 4096 bytes
70 * We should take care of returning proper size when AudioFlinger queries for
71 * the buffer size of an input/output stream
72 */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080073
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070074enum {
75 OFFLOAD_CMD_EXIT, /* exit compress offload thread loop*/
76 OFFLOAD_CMD_DRAIN, /* send a full drain request to DSP */
77 OFFLOAD_CMD_PARTIAL_DRAIN, /* send a partial drain request to DSP */
78 OFFLOAD_CMD_WAIT_FOR_BUFFER, /* wait for buffer released by DSP */
79};
80
81enum {
82 OFFLOAD_STATE_IDLE,
83 OFFLOAD_STATE_PLAYING,
84 OFFLOAD_STATE_PAUSED,
85};
86
87struct offload_cmd {
88 struct listnode node;
89 int cmd;
90 int data[];
91};
92
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080093struct stream_out {
94 struct audio_stream_out stream;
Eric Laurent150dbfe2013-02-27 14:31:02 -080095 pthread_mutex_t lock; /* see note below on mutex acquisition order */
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070096 pthread_cond_t cond;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080097 struct pcm_config config;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070098 struct compr_config compr_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080099 struct pcm *pcm;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700100 struct compress *compr;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800101 int standby;
102 int pcm_device_id;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700103 unsigned int sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800104 audio_channel_mask_t channel_mask;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700105 audio_format_t format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800106 audio_devices_t devices;
107 audio_output_flags_t flags;
108 audio_usecase_t usecase;
109 /* Array of supported channel mask configurations. +1 so that the last entry is always 0 */
110 audio_channel_mask_t supported_channel_masks[MAX_SUPPORTED_CHANNEL_MASKS + 1];
Eric Laurenta9024de2013-04-04 09:19:12 -0700111 bool muted;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -0700112 uint64_t written; /* total frames written, not cleared when entering standby */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800113
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700114 int non_blocking;
115 int playback_started;
116 int offload_state;
117 pthread_cond_t offload_cond;
118 pthread_t offload_thread;
119 struct listnode offload_cmd_list;
120 bool offload_thread_blocked;
121
122 stream_callback_t offload_callback;
123 void *offload_cookie;
Haynes Mathew George352f27b2013-07-26 00:00:15 -0700124 struct compr_gapless_mdata gapless_mdata;
125 int send_new_metadata;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700126
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800127 struct audio_device *dev;
128};
129
130struct stream_in {
131 struct audio_stream_in stream;
Eric Laurent150dbfe2013-02-27 14:31:02 -0800132 pthread_mutex_t lock; /* see note below on mutex acquisition order */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800133 struct pcm_config config;
134 struct pcm *pcm;
135 int standby;
136 int source;
137 int pcm_device_id;
138 int device;
139 audio_channel_mask_t channel_mask;
140 audio_usecase_t usecase;
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -0700141 bool enable_aec;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800142
143 struct audio_device *dev;
144};
145
146typedef enum {
147 PCM_PLAYBACK,
148 PCM_CAPTURE,
149 VOICE_CALL
150} usecase_type_t;
151
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800152union stream_ptr {
153 struct stream_in *in;
154 struct stream_out *out;
155};
156
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800157struct audio_usecase {
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800158 struct listnode list;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800159 audio_usecase_t id;
160 usecase_type_t type;
161 audio_devices_t devices;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700162 snd_device_t out_snd_device;
163 snd_device_t in_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800164 union stream_ptr stream;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800165};
166
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800167struct audio_device {
168 struct audio_hw_device device;
Eric Laurent150dbfe2013-02-27 14:31:02 -0800169 pthread_mutex_t lock; /* see note below on mutex acquisition order */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800170 struct mixer *mixer;
171 audio_mode_t mode;
172 audio_devices_t out_device;
Eric Laurentc8400632013-02-14 19:04:54 -0800173 struct stream_in *active_input;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800174 struct stream_out *primary_output;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800175 int in_call;
176 float voice_volume;
177 bool mic_mute;
178 int tty_mode;
179 bool bluetooth_nrec;
180 bool screen_off;
181 struct pcm *voice_call_rx;
182 struct pcm *voice_call_tx;
Eric Laurentb23d5282013-05-14 15:27:20 -0700183 int *snd_dev_ref_cnt;
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800184 struct listnode usecase_list;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800185 struct audio_route *audio_route;
186 int acdb_settings;
Jean-Michel Trivic56336b2013-05-24 16:55:17 -0700187 bool speaker_lr_swap;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800188
Eric Laurentb23d5282013-05-14 15:27:20 -0700189 void *platform;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800190};
191
Eric Laurent150dbfe2013-02-27 14:31:02 -0800192/*
193 * NOTE: when multiple mutexes have to be acquired, always take the
194 * stream_in or stream_out mutex first, followed by the audio_device mutex.
195 */
196
Eric Laurentb23d5282013-05-14 15:27:20 -0700197#endif // QCOM_AUDIO_HW_H