]> git.baikalelectronics.ru Git - kernel.git/commit
ASoC: samsung: get access to DMA engine early to defer probe properly
authorMarek Szyprowski <m.szyprowski@samsung.com>
Thu, 27 Oct 2016 10:34:02 +0000 (12:34 +0200)
committerMark Brown <broonie@kernel.org>
Fri, 28 Oct 2016 17:21:13 +0000 (18:21 +0100)
commit6956384c1790f250ede47c0898dda9f978ec1d15
treed0e26273bb32d1ae302b64e3cd26848cd158a084
parenta245803230f587f66ceddc152f3504b2a960aac2
ASoC: samsung: get access to DMA engine early to defer probe properly

ASoC Samsung sub-drivers tried to get access to their DMA engine
controllers as a last step in driver probe. If a DMA engine was not
available yet, samsung_asoc_dma_platform_register() function ended in
-EPROBE_DEFER, but the driver already registered its component to ASoC
core. This patch moves samsung_asoc_dma_platform_register() call before
registering any components, to the common place, where driver was gathering
all needed resources.

In case of Samsung Exynos i2s driver the issue was even worse. The driver
managed already to register its secondary DAI platform device before
even getting the DMA engine access. That together with -EPROBE_DEFER error
code from samsung_i2s_probe() immediately triggered another round of
deferred probe retry and in turn endless loop of driver probing.

This patch fixes broken boot on Odroid XU3 and other Exynos5422-based
boards.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com>
Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/samsung/ac97.c
sound/soc/samsung/i2s.c
sound/soc/samsung/pcm.c
sound/soc/samsung/s3c2412-i2s.c
sound/soc/samsung/s3c24xx-i2s.c
sound/soc/samsung/spdif.c