linux/sound/soc/amd
Yu Zhao 23aa128bb2
ASoC: use dma_ops of parent device for acp_audio_dma
AMD platform device acp_audio_dma can only be created by parent PCI
device driver (drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c). Pass struct
device of the parent to snd_pcm_lib_preallocate_pages() so
dma_alloc_coherent() can use correct dma_ops. Otherwise, it will
use default dma_ops which is nommu_dma_ops on x86_64 even when
IOMMU is enabled and set to non passthrough mode.

Though platform device inherits some dma related fields during its
creation in mfd_add_device(), we can't simply pass its struct device
to snd_pcm_lib_preallocate_pages() because dma_ops is not among the
inherited fields. Even it were, drivers/iommu/amd_iommu.c would
ignore it because get_device_id() doesn't handle platform device.

This change shouldn't give us any trouble even struct device of the
parent becomes null or represents some non PCI device in the future,
because get_dma_ops() correctly handles null struct device or uses
the default dma_ops if struct device doesn't have it set.

Signed-off-by: Yu Zhao <yuzhao@google.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2018-12-06 12:55:28 +00:00
..
include
raven ASoC: amd: Fix a NULL vs IS_ERR() check in probe 2018-11-26 12:22:56 +00:00
Kconfig ASoC: amd: Fixed build errors 2018-11-15 11:18:57 -08:00
Makefile ASoC: amd: enable acp3x drivers build 2018-11-13 11:44:12 -08:00
acp-da7219-max98357a.c ASoC: AMD: constify regulator_desc structure 2018-11-05 11:25:57 +00:00
acp-pcm-dma.c ASoC: use dma_ops of parent device for acp_audio_dma 2018-12-06 12:55:28 +00:00
acp-rt5645.c ASoC: rt5645/rt5677: replace codec to component 2018-02-12 11:18:44 +00:00
acp.h ASoC: use DMA addr rather than CPU pa for acp_audio_dma 2018-12-06 12:53:04 +00:00