AUDIO.LA.8.0.r1-09300-KAILUA.0 * tag 'AUDIO.LA.8.0.r1-09300-KAILUA.0' of https://git.codelinaro.org/clo/la/platform/vendor/qcom/opensource/audio-kernel-ar: dsp: spf-core: add sleep before sending apm ready query dsp: update apm timeout for spf add child devices asoc: codec: wsa884x: check for spkr status before enabling PA dsp: update apm timeout for spf add child devices asoc: codec: wsa884x: check for spkr status before enabling PA asoc: codec: wsa883x: update wsa883x volatile reg dsp/ipc: remove q6 state check during audio_pkt write asoc: cdc: WCD939x: latest updates on wcd939x driver asoc: cdc: WCD939x: latest updates on wcd939x driver asoc: codec: wsa883x: update wsa883x volatile reg dsp/ipc: remove q6 state check during audio_pkt write asoc: va-macro: Enable VA_MCLK during va swrm clock dsp : Add timing for spf_apm_ready_check dsp/ipc: check q6 state before calling gpr_snd_pkt asoc: codecs: wsa883x: remove handling for pre ssr event dsp : Add timing for spf_apm_ready_check dsp/ipc: check q6 state before calling gpr_snd_pkt asoc: codecs: wsa884x: Remove pre ssr handling asoc: codecs: wsa883x: remove handling for pre ssr event asoc: codecs: lpass-cdc: remove pre ssr notifier call asoc: codecs: wsa884x: Remove pre ssr handling asoc: codecs: lpass-cdc: remove pre ssr notifier call soc: handle invalid address passed to swrm_peek debugfs node asoc: codecs: wsa883x: update INTR mask & clear reg's as volatile asoc: wsa884x: adjust the deglitch settings for wsa884x asoc: wsa884x: update uvlo registers for wsa884x soc: Return 0 instead of EBUSY during swrm_suspend asoc: codecs: wsa884x: update INTR mask & clear reg's as volatile asoc: codecs: wsa883x: update INTR mask & clear reg's as volatile asoc: update kalama port config and swr reg update asoc: update kalama port config and swr reg update asoc: kalama: check availability before enabling display port soc: add swr bus cntl register in swr master init soc: add swr bus cntl register in swr master init soc: codecs: remove redundant WSA AIF_CPS control asoc: msm_common: add mutex lock for vote against sleep cnt asoc: msm_common: add mutex lock for vote against sleep cnt asoc: kalama: Use AUX widget when wcd937x/8x is used asoc: wcd939x: add support for wcd dmics asoc: Add support to read adsp variant and set sndcard name audio-kernel: add wcd_usbss api in 8.0 TP and mbhc driver asoc: msm_common: use logical CPU cores for qos request asoc: add wcd937x&wcd939x support in machine driver asoc: Add compilation support for wcd939x and wcd937x asoc:wcd939x: add support for wcd939x for Crow asoc: wcd937x: Port following changes in wcd937x asoc: wcd938x: Bringup changes for Crow asoc: common: Enable AudioHM vote for VA I2S and TDM interface audio-kernel: remove unused uapi headers soc: Update swr_mstr register for 1P7v audio-kernel: Remove spf_apm_close_all from machine driver asoc: lpass-cdc: clear active channel cnt if channel is active dsp: Voice over pcie driver support ipc: Voice over pcie support asoc: Voice over pcie machine driver support Change-Id: Ib4ffff162ef3216dd52fdb4fbf4396f0959f7f57
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
headers_src = [
|
|
"include/uapi/audio/*/**/*.h",
|
|
]
|
|
|
|
audio_headers_out = [
|
|
"linux/msm_audio.h",
|
|
"sound/audio_compressed_formats.h",
|
|
"sound/audio_effects.h",
|
|
"sound/audio_slimslave.h",
|
|
"sound/devdep_params.h",
|
|
"sound/lsm_params.h",
|
|
"sound/msmcal-hwdep.h",
|
|
"sound/voice_params.h",
|
|
"sound/wcd-dsp-glink.h",
|
|
]
|
|
|
|
audio_kernel_headers_verbose = "--verbose "
|
|
genrule {
|
|
name: "qti_generate_audio_kernel_headers",
|
|
tools: ["headers_install.sh",
|
|
"unifdef"
|
|
],
|
|
tool_files: [
|
|
"audio_kernel_headers.py",
|
|
],
|
|
srcs: headers_src,
|
|
cmd: "python3 -u $(location audio_kernel_headers.py) " +
|
|
audio_kernel_headers_verbose +
|
|
"--header_arch arm64 " +
|
|
"--gen_dir $(genDir) " +
|
|
"--audio_include_uapi $(locations include/uapi/audio/*/**/*.h) " +
|
|
"--unifdef $(location unifdef) " +
|
|
"--headers_install $(location headers_install.sh)",
|
|
out: audio_headers_out,
|
|
}
|
|
|
|
cc_library_headers {
|
|
name: "qti_audio_kernel_uapi",
|
|
generated_headers: ["qti_generate_audio_kernel_headers"],
|
|
export_generated_headers: ["qti_generate_audio_kernel_headers"],
|
|
vendor: true,
|
|
recovery_available: true
|
|
}
|