blob: 02eb148ac940190243f5409483b39debb380f40e [file] [log] [blame]
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -07001/*
2 * Copyright (c) 2013, The Linux Foundation. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above
10 * copyright notice, this list of conditions and the following
11 * disclaimer in the documentation and/or other materials provided
12 * with the distribution.
13 * * Neither the name of The Linux Foundation nor the names of its
14 * contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
21 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
24 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
26 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#define LOG_TAG "hardware_info"
31/*#define LOG_NDEBUG 0*/
32#define LOG_NDDEBUG 0
33
34#include <stdlib.h>
35#include <dlfcn.h>
36#include <cutils/log.h>
37#include <cutils/str_parms.h>
38#include "audio_hw.h"
39#include "platform.h"
40#include "platform_api.h"
41
42
43struct hardware_info {
44 char name[HW_INFO_ARRAY_MAX_SIZE];
45 char type[HW_INFO_ARRAY_MAX_SIZE];
46 /* variables for handling target variants */
47 uint32_t num_snd_devices;
48 char dev_extn[HW_INFO_ARRAY_MAX_SIZE];
49 snd_device_t *snd_devices;
50};
51
52#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
53
54#define LITERAL_TO_STRING(x) #x
55#define CHECK(condition) LOG_ALWAYS_FATAL_IF(!(condition), "%s",\
56 __FILE__ ":" LITERAL_TO_STRING(__LINE__)\
57 " ASSERT_FATAL(" #condition ") failed.")
58
59static const snd_device_t taiko_fluid_variant_devices[] = {
60 SND_DEVICE_OUT_SPEAKER,
61 SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES,
62 SND_DEVICE_OUT_SPEAKER_AND_ANC_HEADSET,
63};
64
65static const snd_device_t taiko_CDP_variant_devices[] = {
66 SND_DEVICE_OUT_SPEAKER,
67 SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES,
68 SND_DEVICE_OUT_SPEAKER_AND_ANC_HEADSET,
69};
70
71static const snd_device_t taiko_liquid_variant_devices[] = {
72 SND_DEVICE_OUT_SPEAKER,
73 SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES,
74 SND_DEVICE_OUT_SPEAKER_AND_ANC_HEADSET,
75 SND_DEVICE_IN_SPEAKER_MIC,
76 SND_DEVICE_IN_HEADSET_MIC,
77};
78
79static const snd_device_t taiko_DB_variant_devices[] = {
80 SND_DEVICE_OUT_SPEAKER,
81 SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES,
82 SND_DEVICE_OUT_SPEAKER_AND_ANC_HEADSET,
83 SND_DEVICE_IN_SPEAKER_MIC,
84};
85
86static const snd_device_t tapan_lite_variant_devices[] = {
87 SND_DEVICE_OUT_SPEAKER,
88 SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES,
89 SND_DEVICE_OUT_SPEAKER_AND_ANC_HEADSET,
90};
91
92static const snd_device_t tapan_skuf_variant_devices[] = {
93 SND_DEVICE_OUT_SPEAKER,
94 SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES,
95 SND_DEVICE_OUT_SPEAKER_AND_ANC_HEADSET,
96};
97
98static const snd_device_t tapan_lite_skuf_variant_devices[] = {
99 SND_DEVICE_OUT_SPEAKER,
100 SND_DEVICE_OUT_ANC_HANDSET,
101 SND_DEVICE_OUT_ANC_HEADSET,
102 SND_DEVICE_OUT_ANC_FB_HEADSET,
103 SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES,
104 SND_DEVICE_OUT_SPEAKER_AND_ANC_HEADSET,
105 SND_DEVICE_IN_AANC_HANDSET_MIC,
106};
107
108static const snd_device_t helicon_skuab_variant_devices[] = {
109 SND_DEVICE_OUT_SPEAKER,
110 SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES,
111 SND_DEVICE_OUT_SPEAKER_AND_ANC_HEADSET,
112};
113
114static void update_hardware_info_8084(struct hardware_info *hw_info, const char *snd_card_name)
115{
116 if (!strcmp(snd_card_name, "apq8084-taiko-mtp-snd-card")) {
117 strlcpy(hw_info->type, "mtp", sizeof(hw_info->type));
118 strlcpy(hw_info->name, "apq8084", sizeof(hw_info->name));
119 hw_info->snd_devices = NULL;
120 hw_info->num_snd_devices = 0;
121 strlcpy(hw_info->dev_extn, "", sizeof(hw_info->dev_extn));
122 } else if (!strcmp(snd_card_name, "apq8084-taiko-cdp-snd-card")) {
123 strlcpy(hw_info->type, " cdp", sizeof(hw_info->type));
124 strlcpy(hw_info->name, "apq8084", sizeof(hw_info->name));
125 hw_info->snd_devices = (snd_device_t *)taiko_CDP_variant_devices;
126 hw_info->num_snd_devices = ARRAY_SIZE(taiko_CDP_variant_devices);
127 strlcpy(hw_info->dev_extn, "", sizeof(hw_info->dev_extn));
128 } else if (!strcmp(snd_card_name, "apq8084-taiko-liquid-snd-card")) {
129 strlcpy(hw_info->type , " liquid", sizeof(hw_info->type));
130 strlcpy(hw_info->name, "apq8084", sizeof(hw_info->type));
131 hw_info->snd_devices = (snd_device_t *)taiko_liquid_variant_devices;
132 hw_info->num_snd_devices = ARRAY_SIZE(taiko_liquid_variant_devices);
133 strlcpy(hw_info->dev_extn, "", sizeof(hw_info->dev_extn));
134 } else {
135 ALOGW("%s: Not an 8084 device", __func__);
136 }
137}
138
139static void update_hardware_info_8974(struct hardware_info *hw_info, const char *snd_card_name)
140{
141 if (!strcmp(snd_card_name, "msm8974-taiko-mtp-snd-card")) {
142 strlcpy(hw_info->type, " mtp", sizeof(hw_info->type));
143 strlcpy(hw_info->name, "msm8974", sizeof(hw_info->name));
144 hw_info->snd_devices = NULL;
145 hw_info->num_snd_devices = 0;
146 strlcpy(hw_info->dev_extn, "", sizeof(hw_info->dev_extn));
147 } else if (!strcmp(snd_card_name, "msm8974-taiko-cdp-snd-card")) {
148 strlcpy(hw_info->type, " cdp", sizeof(hw_info->type));
149 strlcpy(hw_info->name, "msm8974", sizeof(hw_info->name));
150 hw_info->snd_devices = (snd_device_t *)taiko_CDP_variant_devices;
151 hw_info->num_snd_devices = ARRAY_SIZE(taiko_CDP_variant_devices);
152 strlcpy(hw_info->dev_extn, "-fluid", sizeof(hw_info->dev_extn));
153 } else if (!strcmp(snd_card_name, "msm8974-taiko-fluid-snd-card")) {
154 strlcpy(hw_info->type, " fluid", sizeof(hw_info->type));
155 strlcpy(hw_info->name, "msm8974", sizeof(hw_info->name));
156 hw_info->snd_devices = (snd_device_t *) taiko_fluid_variant_devices;
157 hw_info->num_snd_devices = ARRAY_SIZE(taiko_fluid_variant_devices);
158 strlcpy(hw_info->dev_extn, "-fluid", sizeof(hw_info->dev_extn));
159 } else if (!strcmp(snd_card_name, "msm8974-taiko-liquid-snd-card")) {
160 strlcpy(hw_info->type, " liquid", sizeof(hw_info->type));
161 strlcpy(hw_info->name, "msm8974", sizeof(hw_info->name));
162 hw_info->snd_devices = (snd_device_t *)taiko_liquid_variant_devices;
163 hw_info->num_snd_devices = ARRAY_SIZE(taiko_liquid_variant_devices);
164 strlcpy(hw_info->dev_extn, "-liquid", sizeof(hw_info->dev_extn));
165 } else if (!strcmp(snd_card_name, "apq8074-taiko-db-snd-card")) {
166 strlcpy(hw_info->type, " dragon-board", sizeof(hw_info->type));
167 strlcpy(hw_info->name, "msm8974", sizeof(hw_info->name));
168 hw_info->snd_devices = (snd_device_t *)taiko_DB_variant_devices;
169 hw_info->num_snd_devices = ARRAY_SIZE(taiko_DB_variant_devices);
170 strlcpy(hw_info->dev_extn, "-DB", sizeof(hw_info->dev_extn));
171 } else {
172 ALOGW("%s: Not an 8974 device", __func__);
173 }
174}
175
176static void update_hardware_info_8610(struct hardware_info *hw_info, const char *snd_card_name)
177{
178 if (!strcmp(snd_card_name, "msm8x10-snd-card")) {
179 strlcpy(hw_info->type, "", sizeof(hw_info->type));
180 strlcpy(hw_info->name, "msm8x10", sizeof(hw_info->name));
181 hw_info->snd_devices = NULL;
182 hw_info->num_snd_devices = 0;
183 strlcpy(hw_info->dev_extn, "", sizeof(hw_info->dev_extn));
184 } else if (!strcmp(snd_card_name, "msm8x10-skuab-snd-card")) {
185 strlcpy(hw_info->type, "skuab", sizeof(hw_info->type));
186 strlcpy(hw_info->name, "msm8x10", sizeof(hw_info->name));
187 hw_info->snd_devices = (snd_device_t *)helicon_skuab_variant_devices;
188 hw_info->num_snd_devices = ARRAY_SIZE(helicon_skuab_variant_devices);
189 strlcpy(hw_info->dev_extn, "-skuab", sizeof(hw_info->dev_extn));
190 } else if (!strcmp(snd_card_name, "msm8x10-skuaa-snd-card")) {
191 strlcpy(hw_info->type, " skuaa", sizeof(hw_info->type));
192 strlcpy(hw_info->name, "msm8x10", sizeof(hw_info->name));
193 hw_info->snd_devices = NULL;
194 hw_info->num_snd_devices = 0;
195 strlcpy(hw_info->dev_extn, "", sizeof(hw_info->dev_extn));
196 } else {
197 ALOGW("%s: Not an 8x10 device", __func__);
198 }
199}
200
201static void update_hardware_info_8226(struct hardware_info *hw_info, const char *snd_card_name)
202{
203 if (!strcmp(snd_card_name, "msm8226-tapan-snd-card")) {
204 strlcpy(hw_info->type, "", sizeof(hw_info->type));
205 strlcpy(hw_info->name, "msm8226", sizeof(hw_info->name));
206 hw_info->snd_devices = NULL;
207 hw_info->num_snd_devices = 0;
208 strlcpy(hw_info->dev_extn, "", sizeof(hw_info->dev_extn));
209 } else if (!strcmp(snd_card_name, "msm8226-tapan9302-snd-card")) {
210 strlcpy(hw_info->type, "tapan_lite", sizeof(hw_info->type));
211 strlcpy(hw_info->name, "msm8226", sizeof(hw_info->name));
212 hw_info->snd_devices = (snd_device_t *)tapan_lite_variant_devices;
213 hw_info->num_snd_devices = ARRAY_SIZE(tapan_lite_variant_devices);
214 strlcpy(hw_info->dev_extn, "-lite", sizeof(hw_info->dev_extn));
215 } else if (!strcmp(snd_card_name, "msm8226-tapan-skuf-snd-card")) {
216 strlcpy(hw_info->type, " skuf", sizeof(hw_info->type));
217 strlcpy(hw_info->name, "msm8226", sizeof(hw_info->name));
218 hw_info->snd_devices = (snd_device_t *) tapan_skuf_variant_devices;
219 hw_info->num_snd_devices = ARRAY_SIZE(tapan_skuf_variant_devices);
220 strlcpy(hw_info->dev_extn, "-skuf", sizeof(hw_info->dev_extn));
221 } else if (!strcmp(snd_card_name, "msm8226-tapan9302-skuf-snd-card")) {
222 strlcpy(hw_info->type, " tapan9302-skuf", sizeof(hw_info->type));
223 strlcpy(hw_info->name, "msm8226", sizeof(hw_info->name));
224 hw_info->snd_devices = (snd_device_t *)tapan_lite_skuf_variant_devices;
225 hw_info->num_snd_devices = ARRAY_SIZE(tapan_lite_skuf_variant_devices);
226 strlcpy(hw_info->dev_extn, "-skuf-lite", sizeof(hw_info->dev_extn));
227 } else {
228 ALOGW("%s: Not an 8x26 device", __func__);
229 }
230}
231
232void *hw_info_init(const char *snd_card_name)
233{
234 struct hardware_info *hw_info;
235
236 hw_info = malloc(sizeof(struct hardware_info));
237
238 if(strstr(snd_card_name, "msm8974") ||
239 strstr(snd_card_name, "apq8074")) {
240 ALOGV("8974 - variant soundcard");
241 update_hardware_info_8974(hw_info, snd_card_name);
242 } else if(strstr(snd_card_name, "msm8226")) {
243 ALOGV("8x26 - variant soundcard");
244 update_hardware_info_8226(hw_info, snd_card_name);
245 } else if(strstr(snd_card_name, "msm8x10")) {
246 ALOGV("8x10 - variant soundcard");
247 update_hardware_info_8610(hw_info, snd_card_name);
248 } else if(strstr(snd_card_name, "apq8084")) {
249 ALOGV("8084 - variant soundcard");
250 update_hardware_info_8084(hw_info, snd_card_name);
251 } else {
252 ALOGE("%s: Unupported target %s:",__func__, snd_card_name);
253 CHECK(0);
254 free(hw_info);
255 hw_info = NULL;
256 }
257
258 return hw_info;
259}
260
261void hw_info_deinit(void *hw_info)
262{
263 struct hardware_info *my_data = (struct hardware_info*) hw_info;
264
265 if(!my_data)
266 free(my_data);
267}
268
269void hw_info_append_hw_type(void *hw_info, snd_device_t snd_device,
270 char *device_name)
271{
272 struct hardware_info *my_data = (struct hardware_info*) hw_info;
273 uint32_t i = 0;
274
275 snd_device_t *snd_devices =
276 (snd_device_t *) my_data->snd_devices;
277
278 if(snd_devices != NULL) {
279 for (i = 0; i < my_data->num_snd_devices; i++) {
280 if (snd_device == (snd_device_t)snd_devices[i]) {
281 ALOGV("extract dev_extn device %d, extn = %s",
282 (snd_device_t)snd_devices[i], my_data->dev_extn);
283 CHECK(strlcat(device_name, my_data->dev_extn,
284 DEVICE_NAME_MAX_SIZE) < DEVICE_NAME_MAX_SIZE);
285 break;
286 }
287 }
288 }
289 ALOGD("%s : device_name = %s", __func__,device_name);
290}