ASoC: rsnd: src: Avoid a potential deadlock
lockdep warns us that priv->lock and k->k_lock can cause a
deadlock when after acquire of k->k_lock, process is interrupted
by src, while in another routine of src .init, k->k_lock is
acquired with priv->lock held.
This patch avoids a potential deadlock by not calling soc_device_match()
in SRC .init callback, instead it adds new soc fields in priv->flags to
differentiate SoCs.
Fixes: linux-next commit 7674bec4fc
("ASoC: rsnd: update BSDSR/BSDISR handling")
Signed-off-by: Jiada Wang <jiada_wang@mentor.com>
Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
@@ -14,7 +14,6 @@
|
||||
*/
|
||||
|
||||
#include "rsnd.h"
|
||||
#include <linux/sys_soc.h>
|
||||
|
||||
#define SRC_NAME "src"
|
||||
|
||||
@@ -189,18 +188,12 @@ const static u32 chan222222[] = {
|
||||
0x00000006, /* 1 to 2 */
|
||||
};
|
||||
|
||||
static const struct soc_device_attribute ov_soc[] = {
|
||||
{ .soc_id = "r8a77990" }, /* E3 */
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
|
||||
static void rsnd_src_set_convert_rate(struct rsnd_dai_stream *io,
|
||||
struct rsnd_mod *mod)
|
||||
{
|
||||
struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
|
||||
struct device *dev = rsnd_priv_to_dev(priv);
|
||||
struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
|
||||
const struct soc_device_attribute *soc = soc_device_match(ov_soc);
|
||||
int is_play = rsnd_io_is_play(io);
|
||||
int use_src = 0;
|
||||
u32 fin, fout;
|
||||
@@ -307,7 +300,7 @@ static void rsnd_src_set_convert_rate(struct rsnd_dai_stream *io,
|
||||
/*
|
||||
* E3 need to overwrite
|
||||
*/
|
||||
if (soc)
|
||||
if (rsnd_is_e3(priv))
|
||||
switch (rsnd_mod_id(mod)) {
|
||||
case 0:
|
||||
case 4:
|
||||
|
Reference in New Issue
Block a user