| /* |
| * Copyright (c) 2019-2021, The Linux Foundation. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions are |
| * met: |
| * * Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * * Redistributions in binary form must reproduce the above |
| * copyright notice, this list of conditions and the following |
| * disclaimer in the documentation and/or other materials provided |
| * with the distribution. |
| * * Neither the name of The Linux Foundation nor the names of its |
| * contributors may be used to endorse or promote products derived |
| * from this software without specific prior written permission. |
| * |
| * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT |
| * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
| * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #ifndef SOUND_TRIGGER_PLATFORM_INFO_H |
| #define SOUND_TRIGGER_PLATFORM_INFO_H |
| |
| #include <errno.h> |
| #include <stdint.h> |
| #include <map> |
| #include <vector> |
| #include <memory> |
| #include <string> |
| #include "PalDefs.h" |
| #include "PalCommon.h" |
| #include "kvh2xml.h" |
| #include "SoundTriggerUtils.h" |
| |
| #define IS_MODULE_TYPE_PDK(type) (type == ST_MODULE_TYPE_PDK5 || type == ST_MODULE_TYPE_PDK6) |
| #define MAX_MODULE_CHANNELS 4 |
| |
| #define CAPTURE_PROFILE_PRIORITY_HIGH 1 |
| #define CAPTURE_PROFILE_PRIORITY_LOW -1 |
| #define CAPTURE_PROFILE_PRIORITY_SAME 0 |
| |
| enum StOperatingModes { |
| ST_OPERATING_MODE_LOW_POWER, |
| ST_OPERATING_MODE_LOW_POWER_NS, |
| ST_OPERATING_MODE_HIGH_PERF, |
| ST_OPERATING_MODE_HIGH_PERF_NS, |
| ST_OPERATING_MODE_HIGH_PERF_AND_CHARGING |
| }; |
| |
| enum StInputModes { |
| ST_INPUT_MODE_HANDSET, |
| ST_INPUT_MODE_HEADSET |
| }; |
| |
| class SoundTriggerXml |
| { |
| public: |
| virtual void HandleStartTag(const char *tag, const char **attribs) = 0; |
| virtual void HandleEndTag(struct xml_userdata *data __unused, const char *tag __unused) {}; |
| virtual void HandleCharData(const char *data __unused) {}; |
| virtual ~SoundTriggerXml() {}; |
| }; |
| |
| class CaptureProfile : public SoundTriggerXml |
| { |
| public: |
| CaptureProfile(std::string name); |
| CaptureProfile() = delete; |
| CaptureProfile(CaptureProfile &rhs) = delete; |
| CaptureProfile & operator=(CaptureProfile &rhs) = delete; |
| |
| void HandleStartTag(const char* tag, const char* * attribs) override; |
| |
| std::string GetName() const { return name_; } |
| pal_device_id_t GetDevId() const { return device_id_; } |
| uint32_t GetSampleRate() const { return sample_rate_; } |
| uint32_t GetBitWidth() const { return bitwidth_; } |
| uint32_t GetChannels() const { return channels_; } |
| std::string GetSndName() const { return snd_name_; } |
| bool isECRequired() const { return is_ec_req_; } |
| void SetSampleRate(uint32_t sample_rate) { sample_rate_ = sample_rate; } |
| void SetBitWidth(uint32_t bit_width) { bitwidth_ = bit_width; } |
| void SetChannels(uint32_t channels) { channels_ = channels; } |
| void SetSndName(std::string snd_name) { snd_name_ = snd_name; } |
| std::pair<uint32_t,uint32_t> GetDevicePpKv() const { return device_pp_kv_; } |
| |
| int32_t ComparePriority(std::shared_ptr<CaptureProfile> cap_prof); |
| |
| private: |
| std::string name_; |
| pal_device_id_t device_id_; |
| uint32_t sample_rate_; |
| uint32_t channels_; |
| uint32_t bitwidth_; |
| std::pair<uint32_t,uint32_t> device_pp_kv_; |
| std::string snd_name_; |
| bool is_ec_req_; |
| }; |
| |
| using UUID = SoundTriggerUUID; |
| using st_cap_profile_map_t = std::map<std::string, std::shared_ptr<CaptureProfile>>; |
| using st_op_modes_t = std::map<std::pair<StOperatingModes, StInputModes>, std::shared_ptr<CaptureProfile>>; |
| |
| class SoundTriggerPlatformInfo : public SoundTriggerXml |
| { |
| public: |
| SoundTriggerPlatformInfo(); |
| SoundTriggerPlatformInfo(SoundTriggerPlatformInfo &rhs) = delete; |
| SoundTriggerPlatformInfo & operator=(SoundTriggerPlatformInfo &rhs) = delete; |
| |
| void HandleStartTag(const char *tag, const char **attribs) override; |
| void HandleEndTag(struct xml_userdata *data, const char *tag) override; |
| |
| static std::shared_ptr<SoundTriggerPlatformInfo> GetInstance(); |
| static bool GetLpiEnable() { return lpi_enable_; } |
| static bool GetSupportNLPISwitch() { return support_nlpi_switch_; } |
| static bool GetSupportDevSwitch() { return support_device_switch_; } |
| static bool GetEnableDebugDumps() { return enable_debug_dumps_; } |
| static bool GetConcurrentCaptureEnable() { return concurrent_capture_; } |
| static bool GetConcurrentVoiceCallEnable() { return concurrent_voice_call_; } |
| static bool GetConcurrentVoipCallEnable() { return concurrent_voip_call_; } |
| static bool GetLowLatencyBargeinEnable() { return low_latency_bargein_enable_; } |
| |
| /* reads capture profile names into member variables */ |
| void ReadCapProfileNames(StOperatingModes mode, const char **attribs, st_op_modes_t& op_modes); |
| |
| private: |
| static bool lpi_enable_; |
| static bool support_nlpi_switch_; |
| static bool support_device_switch_; |
| static bool enable_debug_dumps_; |
| static bool concurrent_capture_; |
| static bool concurrent_voice_call_; |
| static bool concurrent_voip_call_; |
| static bool low_latency_bargein_enable_; |
| static std::shared_ptr<SoundTriggerPlatformInfo> me_; |
| st_cap_profile_map_t capture_profile_map_; |
| std::shared_ptr<SoundTriggerXml> curr_child_; |
| }; |
| #endif |