mirror of
https://github.com/raspberrypi/linux.git
synced 2026-01-05 10:47:34 +00:00
Pull soundwire updates from Vinod Koul: - Support for SoundWire Bulk Register Access (BRA) protocol in core along with Intel driver support and ASoC bits required - AMD driver updates and support for ACP 7.0 and 7.1 platforms * tag 'soundwire-6.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire: (28 commits) soundwire: take in count the bandwidth of a prepared stream ASoC: rt711-sdca: add DP0 support soundwire: debugfs: add interface for BPT/BRA transfers ASoC: SOF: Intel: hda-sdw-bpt: add CHAIN_DMA support soundwire: intel_ace2x: add BPT send_async/wait callbacks soundwire: intel: add BPT context definition ASoC: SOF: Intel: hda-sdw-bpt: add helpers for SoundWire BPT DMA soundwire: intel_auxdevice: add indirection for BPT send_async/wait soundwire: cadence: add BTP/BRA helpers to format data soundwire: bus: add bpt_stream pointer soundwire: bus: add send_async/wait APIs for BPT protocol soundwire: stream: reuse existing code for BPT stream soundwire: stream: special-case the bus compute_params() routine soundwire: stream: extend sdw_alloc_stream() to take 'type' parameter soundwire: extend sdw_stream_type to BPT soundwire: cadence: add BTP support for DP0 Documentation: driver: add SoundWire BRA description soundwire: amd: change the log level for command response log soundwire: slave: fix an OF node reference leak in soundwire slave device soundwire: Use str_enable_disable-like helpers ...
52 lines
2.0 KiB
Makefile
52 lines
2.0 KiB
Makefile
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
|
|
|
|
snd-sof-acpi-intel-byt-y := byt.o
|
|
snd-sof-acpi-intel-bdw-y := bdw.o
|
|
|
|
snd-sof-intel-hda-common-y := hda-loader.o hda-stream.o hda-trace.o \
|
|
hda-dsp.o hda-ipc.o hda-ctrl.o hda-pcm.o \
|
|
hda-dai.o hda-dai-ops.o hda-bus.o \
|
|
telemetry.o tracepoints.o
|
|
|
|
snd-sof-intel-hda-generic-y := hda.o hda-common-ops.o
|
|
|
|
snd-sof-intel-hda-mlink-y := hda-mlink.o
|
|
|
|
snd-sof-intel-hda-sdw-bpt-objs := hda-sdw-bpt.o
|
|
|
|
snd-sof-intel-hda-common-$(CONFIG_SND_SOC_SOF_HDA_PROBES) += hda-probes.o
|
|
|
|
snd-sof-intel-hda-y := hda-codec.o
|
|
|
|
snd-sof-intel-atom-y := atom.o
|
|
|
|
obj-$(CONFIG_SND_SOC_SOF_INTEL_ATOM_HIFI_EP) += snd-sof-intel-atom.o
|
|
obj-$(CONFIG_SND_SOC_SOF_BAYTRAIL) += snd-sof-acpi-intel-byt.o
|
|
obj-$(CONFIG_SND_SOC_SOF_BROADWELL) += snd-sof-acpi-intel-bdw.o
|
|
obj-$(CONFIG_SND_SOC_SOF_HDA_COMMON) += snd-sof-intel-hda-common.o
|
|
obj-$(CONFIG_SND_SOC_SOF_HDA_GENERIC) += snd-sof-intel-hda-generic.o
|
|
obj-$(CONFIG_SND_SOC_SOF_HDA_MLINK) += snd-sof-intel-hda-mlink.o
|
|
obj-$(CONFIG_SND_SOC_SOF_HDA) += snd-sof-intel-hda.o
|
|
|
|
obj-$(CONFIG_SND_SOF_SOF_HDA_SDW_BPT) += snd-sof-intel-hda-sdw-bpt.o
|
|
|
|
snd-sof-pci-intel-tng-y := pci-tng.o
|
|
snd-sof-pci-intel-skl-y := pci-skl.o skl.o hda-loader-skl.o
|
|
snd-sof-pci-intel-apl-y := pci-apl.o apl.o
|
|
snd-sof-pci-intel-cnl-y := pci-cnl.o cnl.o
|
|
snd-sof-pci-intel-icl-y := pci-icl.o icl.o
|
|
snd-sof-pci-intel-tgl-y := pci-tgl.o tgl.o
|
|
snd-sof-pci-intel-mtl-y := pci-mtl.o mtl.o
|
|
snd-sof-pci-intel-lnl-y := pci-lnl.o lnl.o
|
|
snd-sof-pci-intel-ptl-y := pci-ptl.o ptl.o
|
|
|
|
obj-$(CONFIG_SND_SOC_SOF_MERRIFIELD) += snd-sof-pci-intel-tng.o
|
|
obj-$(CONFIG_SND_SOC_SOF_INTEL_SKL) += snd-sof-pci-intel-skl.o
|
|
obj-$(CONFIG_SND_SOC_SOF_INTEL_APL) += snd-sof-pci-intel-apl.o
|
|
obj-$(CONFIG_SND_SOC_SOF_INTEL_CNL) += snd-sof-pci-intel-cnl.o
|
|
obj-$(CONFIG_SND_SOC_SOF_INTEL_ICL) += snd-sof-pci-intel-icl.o
|
|
obj-$(CONFIG_SND_SOC_SOF_INTEL_TGL) += snd-sof-pci-intel-tgl.o
|
|
obj-$(CONFIG_SND_SOC_SOF_INTEL_MTL) += snd-sof-pci-intel-mtl.o
|
|
obj-$(CONFIG_SND_SOC_SOF_INTEL_LNL) += snd-sof-pci-intel-lnl.o
|
|
obj-$(CONFIG_SND_SOC_SOF_INTEL_PTL) += snd-sof-pci-intel-ptl.o
|