This patchset add support in ASoC to pick up name prefix from the
component nodes when the component does not match the configuration
table provided to the card.
The need for this feature came from the platform I'm working on
(Amlogic A113). On this platform, the card is made of several instances
of each components. It relies heavily on prefixes to describe the
routing between these components.
The proposed solution benefits every other DT based sound cards, such as
the simple card family. It allows to express the routing easily even when
the card uses several instances of the same component, or different
components with the same sink/source names (Playback, Capture,
Output, etc ...)
Jerome Brunet (2):
ASoC: add DT documentation for the sound-name-prefix property
ASoC: allow soc-core to pick up name prefixes from component nodes
.../devicetree/bindings/sound/name-prefix.txt | 24 +++++++++++++++++++
sound/soc/soc-core.c | 28 ++++++++++++++++++----
2 files changed, 47 insertions(+), 5 deletions(-)
create mode 100644 Documentation/devicetree/bindings/sound/name-prefix.txt
--
2.14.4
@@ -0,0 +1,24 @@+Name prefix:++Card implementing the routing property define the connection between+audio components as list of string pair. Component using the same+sink/source names may use the name prefix property to prepend the+name of their sinks/sources with the provided string.++Optional name prefix property:+- sound-name-prefix : string using as prefix for the sink/source names of+ the component.++Example: Two instances of the same component.++amp0: analog-amplifier@0 {+ compatible = "simple-audio-amplifier";+ enable-gpios = <&gpio GPIOH_3 0>;+ sound-name-prefix = "FRONT";+};++amp1: analog-amplifier@1 {+ compatible = "simple-audio-amplifier";+ enable-gpios = <&gpio GPIOH_4 0>;+ sound-name-prefix = "BACK";+};
From: Mark Brown <broonie@kernel.org> Date: 2018-07-14 22:44:29
The patch
ASoC: add DT documentation for the sound-name-prefix property
has been applied to the asoc tree at
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
From d5418ae3f9443f911d4324c0cade988ced39cfbe Mon Sep 17 00:00:00 2001
@@ -0,0 +1,24 @@+Name prefix:++Card implementing the routing property define the connection between+audio components as list of string pair. Component using the same+sink/source names may use the name prefix property to prepend the+name of their sinks/sources with the provided string.++Optional name prefix property:+- sound-name-prefix : string using as prefix for the sink/source names of+ the component.++Example: Two instances of the same component.++amp0: analog-amplifier@0 {+ compatible = "simple-audio-amplifier";+ enable-gpios = <&gpio GPIOH_3 0>;+ sound-name-prefix = "FRONT";+};++amp1: analog-amplifier@1 {+ compatible = "simple-audio-amplifier";+ enable-gpios = <&gpio GPIOH_4 0>;+ sound-name-prefix = "BACK";+};
When the component does not match the configuration table provided
by the card, let soc-core check the component node for a name prefix
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
---
sound/soc/soc-core.c | 28 +++++++++++++++++++++++-----
1 file changed, 23 insertions(+), 5 deletions(-)
From: Mark Brown <broonie@kernel.org> Date: 2018-07-14 22:44:47
The patch
ASoC: allow soc-core to pick up name prefixes from component nodes
has been applied to the asoc tree at
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
From aefba45539bc4868c1fae336410aec907ee0882a Mon Sep 17 00:00:00 2001
From: Jerome Brunet <jbrunet@baylibre.com>
Date: Fri, 13 Jul 2018 14:50:43 +0200
Subject: [PATCH] ASoC: allow soc-core to pick up name prefixes from component
nodes
When the component does not match the configuration table provided
by the card, let soc-core check the component node for a name prefix
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
sound/soc/soc-core.c | 28 +++++++++++++++++++++++-----
1 file changed, 23 insertions(+), 5 deletions(-)