]> git.baikalelectronics.ru Git - kernel.git/commit
ASoC: rockchip: i2s-tdm: Strip out direct CRU use
authorNicolas Frattaroli <frattaroli.nicolas@gmail.com>
Sat, 16 Oct 2021 10:53:50 +0000 (12:53 +0200)
committerMark Brown <broonie@kernel.org>
Sat, 16 Oct 2021 23:16:43 +0000 (00:16 +0100)
commit4ef76e0fd3cbaff05840b2ae404eca2e0602c3e6
treee28870f5f484ce627622f9654a169f2bf899acd0
parentb8721a80c897048c2d3125179e92126c48ae2316
ASoC: rockchip: i2s-tdm: Strip out direct CRU use

In cases where both rx and tx lrck are synced to the same source,
the resets for rx and tx need to be triggered simultaneously,
according to the downstream driver.

As there is no reset API to atomically bulk (de)assert two resets
at once, what the driver did was implement half a reset controller
specific to Rockchip, which tried to write the registers for the
resets within one write ideally or several writes within an irqsave
section.

This of course violates abstractions quite badly. The driver should
not write to the CRU's registers directly.

In practice, for the cases I tested the driver with, which is audio
playback, replacing the synchronised asserts with just individual
ones does not seem to make any difference.

If it turns out that this breaks something in the future, it should
be fixed through the specification and implementation of an atomic
bulk reset API, not with a CRU hack.

Signed-off-by: Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
Reviewed-by: Heiko Stuebner <heiko@sntech.de>
Message-Id: <20211016105354.116513-2-frattaroli.nicolas@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/rockchip/rockchip_i2s_tdm.c