[PATCH v2 09/15] ASoC: rockchip: i2s: Add property to specify play/cap capability
Sugar Zhang
sugar.zhang at rock-chips.com
Tue Aug 24 02:17:56 PDT 2021
- 'rockchip,playback-only': support playback only.
- 'rockchip,capture-only': support capture only.
Signed-off-by: Sugar Zhang <sugar.zhang at rock-chips.com>
---
Changes in v2: None
sound/soc/rockchip/rockchip_i2s.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/sound/soc/rockchip/rockchip_i2s.c b/sound/soc/rockchip/rockchip_i2s.c
index 15e2690..90580dc 100644
--- a/sound/soc/rockchip/rockchip_i2s.c
+++ b/sound/soc/rockchip/rockchip_i2s.c
@@ -720,6 +720,11 @@ static int rockchip_i2s_probe(struct platform_device *pdev)
soc_dai->capture.channels_max = val;
}
+ if (of_property_read_bool(node, "rockchip,playback-only"))
+ soc_dai->capture.channels_min = 0;
+ else if (of_property_read_bool(node, "rockchip,capture-only"))
+ soc_dai->playback.channels_min = 0;
+
ret = devm_snd_soc_register_component(&pdev->dev,
&rockchip_i2s_component,
soc_dai, 1);
--
2.7.4
More information about the Linux-rockchip
mailing list