From: robh@kernel.org (Rob Herring)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 11/12] ASoC: add bindings for stm32 DFSDM filter
Date: Wed, 15 Nov 2017 09:43:04 -0600 [thread overview]
Message-ID: <20171115154304.dzrezz7trvoway73@rob-hp-laptop> (raw)
In-Reply-To: <1510222354-15290-12-git-send-email-arnaud.pouliquen@st.com>
On Thu, Nov 09, 2017 at 11:12:33AM +0100, Arnaud Pouliquen wrote:
> Add bindings that describes audio settings to support
> Digital Filter for pulse density modulation(PDM) microphone.
>
> Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@st.com>
> ---
> V3 -> V4 changes:
> - Update to move on of_graph description.
> - Link to DFSDM IIO bindings.
>
> .../devicetree/bindings/sound/st,stm32-adfsdm.txt | 63 ++++++++++++++++++++++
> 1 file changed, 63 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/sound/st,stm32-adfsdm.txt
>
> diff --git a/Documentation/devicetree/bindings/sound/st,stm32-adfsdm.txt b/Documentation/devicetree/bindings/sound/st,stm32-adfsdm.txt
> new file mode 100644
> index 0000000..75e298b
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/sound/st,stm32-adfsdm.txt
> @@ -0,0 +1,63 @@
> +STMicroelectronics audio DFSDM DT bindings
> +
> +This driver supports audio PDM microphone capture through Digital Filter format
Bindings aren't drivers.
> +Sigma Delta modulators (DFSDM).
> +
> +Required properties:
> + - compatible: "st,stm32h7-dfsdm-dai".
> +
> + - #sound-dai-cells : Must be equal to 0
> +
> + - io-channels : phandle to iio dfsdm instance node.
> + [See: ../iio/adc/st,stm32-dfsdm-adc.txt for DFSDM options]
> +
> +Example of a sound card using audio DFSDM node.
> +
> + sound_card {
> + compatible = "audio-graph-card";
> +
> + dais = <&cpu_port>;
> + };
> +
> + dfsdm: dfsdm at 40017000 {
> + compatible = "st,stm32h7-dfsdm";
> + reg = <0x40017000 0x400>;
> + clocks = <&rcc DFSDM1_CK>;
> + clock-names = "dfsdm";
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + dfsdm_adc0: dfsdm-adc at 0 {
> + compatible = "st,stm32-dfsdm-dmic";
> + reg = <0>;
> + interrupts = <110>;
> + dmas = <&dmamux1 101 0x400 0x00>;
> + dma-names = "rx";
> + st,adc-channels = <1>;
> + st,adc-channel-names = "dmic0";
> + st,adc-channel-types = "SPI_R";
> + st,adc-channel-clk-src = "CLKOUT";
> + st,filter-order = <5>;
> + };
> + }
> +
> + dfsdm_dai0:dfsdm_dai at 0 {
Unit address without reg property is not valid. Building your dtb with
W=2 will tell you this.
Need a space after the ':'.
Should be a child of dfsdm?
> + compatible = "st,stm32h7-dfsdm-dai";
> + #sound-dai-cells = <0>;
> + io-channels = <&dfsdm_adc0 0>;
It doesn't seem like this is an actual h/w block. Why can't 'dais' point
directly to the ADC?
> + cpu_port: port {
> + dfsdm_endpoint: endpoint {
> + remote-endpoint = <&dmic0_endpoint>;
> + };
> + };
> + };
> +
> + dmic0: dmic at 0 {
> + compatible = "dmic-codec";
> + #sound-dai-cells = <0>;
> + port {
> + dmic0_endpoint: endpoint {
> + remote-endpoint = <&dfsdm_endpoint>;
> + };
> + };
> + };
> --
> 2.7.4
>
next prev parent reply other threads:[~2017-11-15 15:43 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-09 10:12 [PATCH v4 00/12] Add STM32 DFSDM support Arnaud Pouliquen
2017-11-09 10:12 ` [PATCH v4 01/12] iio: Add hardware consumer buffer support Arnaud Pouliquen
2017-11-19 12:32 ` Jonathan Cameron
2017-11-09 10:12 ` [PATCH v4 02/12] docs: driver-api: add iio hw consumer section Arnaud Pouliquen
2017-11-19 12:31 ` Jonathan Cameron
2017-11-09 10:12 ` [PATCH v4 03/12] IIO: hw_consumer: add devm_iio_hw_consumer_alloc Arnaud Pouliquen
2017-11-19 12:34 ` Jonathan Cameron
2017-11-24 14:48 ` Arnaud Pouliquen
2017-11-09 10:12 ` [PATCH v4 04/12] IIO: Add DT bindings for sigma delta adc modulator Arnaud Pouliquen
2018-01-10 11:13 ` Applied "IIO: Add DT bindings for sigma delta adc modulator" to the asoc tree Mark Brown
2017-11-09 10:12 ` [PATCH v4 05/12] IIO: ADC: add sigma delta modulator support Arnaud Pouliquen
2017-11-19 12:44 ` Jonathan Cameron
2017-11-09 10:12 ` [PATCH v4 06/12] IIO: add DT bindings for stm32 DFSDM filter Arnaud Pouliquen
2017-11-10 21:05 ` Rob Herring
2017-11-09 10:12 ` [PATCH v4 07/12] IIO: ADC: add stm32 DFSDM core support Arnaud Pouliquen
2017-11-19 12:54 ` Jonathan Cameron
2017-11-09 10:12 ` [PATCH v4 08/12] IIO: ADC: add STM32 DFSDM sigma delta ADC support Arnaud Pouliquen
2017-11-19 14:29 ` Jonathan Cameron
2017-11-24 14:49 ` Arnaud Pouliquen
2017-11-09 10:12 ` [PATCH v4 09/12] IIO: ADC: add stm32 DFSDM support for PDM microphone Arnaud Pouliquen
2017-11-19 14:18 ` Jonathan Cameron
2017-11-24 14:52 ` Arnaud Pouliquen
2017-11-25 14:36 ` Jonathan Cameron
2017-11-09 10:12 ` [PATCH v4 10/12] IIO: consumer: allow to set buffer sizes Arnaud Pouliquen
2017-11-19 14:19 ` Jonathan Cameron
2017-11-09 10:12 ` [PATCH v4 11/12] ASoC: add bindings for stm32 DFSDM filter Arnaud Pouliquen
2017-11-15 15:43 ` Rob Herring [this message]
2017-11-16 10:53 ` Arnaud Pouliquen
2017-11-09 10:12 ` [PATCH v4 12/12] ASoC: stm32: add DFSDM DAI support Arnaud Pouliquen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171115154304.dzrezz7trvoway73@rob-hp-laptop \
--to=robh@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox