QCA vendor attribute to configure direct data path for audio traffic
Add a new QCA vendor attribute QCA_WLAN_VENDOR_ATTR_CONFIG_AUDIO_DATA_PATH to QCA_NL80211_VENDOR_SUBCMD_SET_WIFI_CONFIGURATION to configure audio data path. Possible audio data paths are defined in enum qca_wlan_audio_data_path. Signed-off-by: Purushottam Kushwaha <quic_pkushwah@quicinc.com>
This commit is contained in:
parent
504be2f9de
commit
8dd8267413
1 changed files with 21 additions and 0 deletions
|
@ -2660,6 +2660,13 @@ enum qca_wlan_vendor_attr_config {
|
|||
*/
|
||||
QCA_WLAN_VENDOR_ATTR_CONFIG_ARP_NS_OFFLOAD = 81,
|
||||
|
||||
/*
|
||||
* 8-bit unsigned value. This attribute can be used to configure the
|
||||
* data path mode to be followed for audio traffic. Possible values
|
||||
* are defined in enum qca_wlan_audio_data_path.
|
||||
*/
|
||||
QCA_WLAN_VENDOR_ATTR_CONFIG_AUDIO_DATA_PATH = 82,
|
||||
|
||||
/* keep last */
|
||||
QCA_WLAN_VENDOR_ATTR_CONFIG_AFTER_LAST,
|
||||
QCA_WLAN_VENDOR_ATTR_CONFIG_MAX =
|
||||
|
@ -12298,4 +12305,18 @@ enum qca_wlan_vendor_attr_ratemask_params {
|
|||
QCA_WLAN_VENDOR_ATTR_RATEMASK_PARAMS_AFTER_LAST - 1,
|
||||
};
|
||||
|
||||
/**
|
||||
* enum qca_wlan_audio_data_path - Defines the data path to be used for audio
|
||||
* traffic.
|
||||
*
|
||||
* @QCA_WLAN_AUDIO_DATA_PATH_VIA_HOST_PROCESSOR:
|
||||
* Send audio traffic through the host processor.
|
||||
* @QCA_WLAN_AUDIO_DATA_PATH_VIA_LOW_POWER_DSP:
|
||||
* Send audio traffic using the low power DSP to/from the encoder.
|
||||
*/
|
||||
enum qca_wlan_audio_data_path {
|
||||
QCA_WLAN_AUDIO_DATA_PATH_VIA_HOST_PROCESSOR = 0,
|
||||
QCA_WLAN_AUDIO_DATA_PATH_VIA_LOW_POWER_DSP = 1,
|
||||
};
|
||||
|
||||
#endif /* QCA_VENDOR_H */
|
||||
|
|
Loading…
Reference in a new issue