All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pavel Machek <pavel@ucw.cz>
To: Peter Ujfalusi <peter.ujfalusi@ti.com>
Cc: mark.rutland@arm.com, alsa-devel@alsa-project.org,
	lgirdwood@gmail.com, tony@atomide.com, abcloriens@gmail.com,
	tiwai@suse.com, martijn@brixit.nl,
	"Filip Matijević" <filip.matijevic.pz@gmail.com>,
	patrikbachan@gmail.com, ivo.g.dimitrov.75@gmail.com,
	khilman@kernel.org, serge@hallyn.com, devicetree@vger.kernel.org,
	pali.rohar@gmail.com, robh+dt@kernel.org, perex@perex.cz,
	linux-omap@vger.kernel.org,
	linux-arm-kernel <linux-arm-kernel@lists.infradead.org>,
	aaro.koskinen@iki.fi, linux-kernel@vger.kernel.org,
	broonie@kernel.org, clayton@craftyguy.net,
	sakari.ailus@linux.intel.com, sre@kernel.org, bhumirks@gmail.com
Subject: [PATCHv3] tlv320dac33: Add device tree bindings
Date: Mon, 5 Feb 2018 09:24:45 +0100	[thread overview]
Message-ID: <20180205082445.GA18274@amd> (raw)
In-Reply-To: <20b9ff40-a869-a165-07a2-2a103830efb3@ti.com>


[-- Attachment #1.1: Type: text/plain, Size: 1426 bytes --]


This adds device tree bindings for tlv320dac33.c.

Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Pavel Machek <pavel@ucw.cz>

diff --git a/Documentation/devicetree/bindings/sound/tlv320dac33.txt b/Documentation/devicetree/bindings/sound/tlv320dac33.txt
new file mode 100644
index 0000000..aee0a87
--- /dev/null
+++ b/Documentation/devicetree/bindings/sound/tlv320dac33.txt
@@ -0,0 +1,32 @@
+Texas Instruments - tlv320dac33 Codec module
+
+The tlv320dac33 serial control bus communicates through I2C protocols.
+
+Required properties:
+
+- compatible - "ti,tlv320dac33"
+- reg - I2C slave address
+- ti,burst-bclkdiv - BCLK divider value in burst mode. Valid range is 1..255.
+
+Optional properties:
+
+- reset-gpios      - gpio pin to power the device, active high.
+
+- interrupts       - The interrupt output from the device.
+- interrupt-parent - The parent interrupt controller.
+
+- ti,keep-bclk     - Keep the BCLK running in FIFO modes.
+
+Example:
+
+tlv320dac33: audio-codec@19 {
+	compatible = "ti,tlv320dac33";
+	reg = <0x19>;
+
+	interrupt-parent = <&gpio2>;
+	interrupts = <21 1>; /* gpio_53, IRQF_TRIGGER_RISING */
+	reset-gpios = <&gpio2 28 0>; /* gpio_60 */
+
+	ti,keep-bclk;
+	ti,burst-bclkdiv = <3>;
+};

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

[-- Attachment #2: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: pavel@ucw.cz (Pavel Machek)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCHv3] tlv320dac33: Add device tree bindings
Date: Mon, 5 Feb 2018 09:24:45 +0100	[thread overview]
Message-ID: <20180205082445.GA18274@amd> (raw)
In-Reply-To: <20b9ff40-a869-a165-07a2-2a103830efb3@ti.com>


This adds device tree bindings for tlv320dac33.c.

Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Pavel Machek <pavel@ucw.cz>

diff --git a/Documentation/devicetree/bindings/sound/tlv320dac33.txt b/Documentation/devicetree/bindings/sound/tlv320dac33.txt
new file mode 100644
index 0000000..aee0a87
--- /dev/null
+++ b/Documentation/devicetree/bindings/sound/tlv320dac33.txt
@@ -0,0 +1,32 @@
+Texas Instruments - tlv320dac33 Codec module
+
+The tlv320dac33 serial control bus communicates through I2C protocols.
+
+Required properties:
+
+- compatible - "ti,tlv320dac33"
+- reg - I2C slave address
+- ti,burst-bclkdiv - BCLK divider value in burst mode. Valid range is 1..255.
+
+Optional properties:
+
+- reset-gpios      - gpio pin to power the device, active high.
+
+- interrupts       - The interrupt output from the device.
+- interrupt-parent - The parent interrupt controller.
+
+- ti,keep-bclk     - Keep the BCLK running in FIFO modes.
+
+Example:
+
+tlv320dac33: audio-codec at 19 {
+	compatible = "ti,tlv320dac33";
+	reg = <0x19>;
+
+	interrupt-parent = <&gpio2>;
+	interrupts = <21 1>; /* gpio_53, IRQF_TRIGGER_RISING */
+	reset-gpios = <&gpio2 28 0>; /* gpio_60 */
+
+	ti,keep-bclk;
+	ti,burst-bclkdiv = <3>;
+};

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20180205/95ca6f88/attachment.sig>

WARNING: multiple messages have this Message-ID (diff)
From: Pavel Machek <pavel@ucw.cz>
To: Peter Ujfalusi <peter.ujfalusi@ti.com>
Cc: lgirdwood@gmail.com, broonie@kernel.org, robh+dt@kernel.org,
	mark.rutland@arm.com, perex@perex.cz, tiwai@suse.com,
	bhumirks@gmail.com, alsa-devel@alsa-project.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	pali.rohar@gmail.com, sre@kernel.org,
	linux-arm-kernel <linux-arm-kernel@lists.infradead.org>,
	linux-omap@vger.kernel.org, tony@atomide.com, khilman@kernel.org,
	aaro.koskinen@iki.fi, ivo.g.dimitrov.75@gmail.com,
	patrikbachan@gmail.com, serge@hallyn.com, abcloriens@gmail.com,
	clayton@craftyguy.net, martijn@brixit.nl,
	sakari.ailus@linux.intel.com,
	"Filip Matijević" <filip.matijevic.pz@gmail.com>
Subject: [PATCHv3] tlv320dac33: Add device tree bindings
Date: Mon, 5 Feb 2018 09:24:45 +0100	[thread overview]
Message-ID: <20180205082445.GA18274@amd> (raw)
In-Reply-To: <20b9ff40-a869-a165-07a2-2a103830efb3@ti.com>

[-- Attachment #1: Type: text/plain, Size: 1426 bytes --]


This adds device tree bindings for tlv320dac33.c.

Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Pavel Machek <pavel@ucw.cz>

diff --git a/Documentation/devicetree/bindings/sound/tlv320dac33.txt b/Documentation/devicetree/bindings/sound/tlv320dac33.txt
new file mode 100644
index 0000000..aee0a87
--- /dev/null
+++ b/Documentation/devicetree/bindings/sound/tlv320dac33.txt
@@ -0,0 +1,32 @@
+Texas Instruments - tlv320dac33 Codec module
+
+The tlv320dac33 serial control bus communicates through I2C protocols.
+
+Required properties:
+
+- compatible - "ti,tlv320dac33"
+- reg - I2C slave address
+- ti,burst-bclkdiv - BCLK divider value in burst mode. Valid range is 1..255.
+
+Optional properties:
+
+- reset-gpios      - gpio pin to power the device, active high.
+
+- interrupts       - The interrupt output from the device.
+- interrupt-parent - The parent interrupt controller.
+
+- ti,keep-bclk     - Keep the BCLK running in FIFO modes.
+
+Example:
+
+tlv320dac33: audio-codec@19 {
+	compatible = "ti,tlv320dac33";
+	reg = <0x19>;
+
+	interrupt-parent = <&gpio2>;
+	interrupts = <21 1>; /* gpio_53, IRQF_TRIGGER_RISING */
+	reset-gpios = <&gpio2 28 0>; /* gpio_60 */
+
+	ti,keep-bclk;
+	ti,burst-bclkdiv = <3>;
+};

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

  reply	other threads:[~2018-02-05  8:24 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-29 23:05 [PATCH] sound/tlv320dac33: Add device tree support Pavel Machek
2018-01-29 23:05 ` Pavel Machek
2018-01-29 23:20 ` Ladislav Michl
2018-01-29 23:20   ` Ladislav Michl
2018-01-29 23:20   ` Ladislav Michl
2018-01-29 23:33   ` Pavel Machek
2018-01-29 23:33     ` Pavel Machek
2018-01-30  8:34     ` Ladislav Michl
2018-01-30  8:34       ` Ladislav Michl
2018-01-30  8:53       ` Pavel Machek
2018-01-30  8:53         ` Pavel Machek
2018-01-30  8:53         ` Pavel Machek
2018-01-30  9:11         ` Filip Matijević
2018-01-30  9:11           ` Filip Matijević
     [not found]           ` <1141b126-b883-a246-85ad-c5a69acb90bb-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2018-01-30  9:38             ` Ladislav Michl
2018-01-30  9:38               ` Ladislav Michl
2018-01-30  9:38               ` Ladislav Michl
2018-01-30 10:00               ` Pavel Machek
2018-01-30 10:00                 ` Pavel Machek
2018-01-30 10:00                 ` Pavel Machek
2018-01-30 10:10                 ` Ladislav Michl
2018-01-30 10:10                   ` Ladislav Michl
2018-01-30 10:35                   ` Pavel Machek
2018-01-30 10:35                     ` Pavel Machek
2018-01-30 10:35                     ` Pavel Machek
2018-01-30 11:38                     ` Ladislav Michl
2018-01-30 11:38                       ` Ladislav Michl
2018-01-30 11:38                       ` Ladislav Michl
2018-01-31  9:24                       ` Peter Ujfalusi
2018-01-31  9:24                         ` [alsa-devel] " Peter Ujfalusi
2018-01-31  9:24                         ` Peter Ujfalusi
2018-01-30 11:32         ` Mark Brown
2018-01-30 11:32           ` Mark Brown
2018-01-30 11:32           ` Mark Brown
     [not found]           ` <20180130113238.GA10525-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2018-01-30 12:28             ` Pavel Machek
2018-01-30 12:28               ` Pavel Machek
2018-01-30 12:28               ` Pavel Machek
2018-01-31  9:12   ` Peter Ujfalusi
2018-01-31  9:12     ` [alsa-devel] " Peter Ujfalusi
2018-01-31  9:12     ` Peter Ujfalusi
2018-01-31 19:01 ` [PATCHv2] tlv320dac33: Add device tree bindings Pavel Machek
2018-01-31 19:01   ` Pavel Machek
2018-02-01  7:39   ` Peter Ujfalusi
2018-02-01  7:39     ` Peter Ujfalusi
2018-02-05  8:24     ` Pavel Machek [this message]
2018-02-05  8:24       ` [PATCHv3] " Pavel Machek
2018-02-05  8:24       ` Pavel Machek
2018-02-06 12:11       ` Mark Brown
2018-02-06 12:11         ` Mark Brown
2018-02-06 12:11         ` Mark Brown
     [not found]         ` <20180206121122.GG5681-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2018-02-06 13:49           ` Pavel Machek
2018-02-06 13:49             ` Pavel Machek
2018-02-06 13:49             ` Pavel Machek
2018-02-06 15:27             ` Mark Brown
2018-02-06 15:27               ` Mark Brown
2018-02-06 15:27               ` Mark Brown
2018-02-24 20:57               ` Pavel Machek
2018-02-24 20:57                 ` Pavel Machek
2018-02-24 20:57                 ` Pavel Machek
2018-03-05 12:52                 ` Peter Ujfalusi
2018-03-05 12:52                   ` Peter Ujfalusi
2018-03-05 12:52                   ` Peter Ujfalusi
2018-02-09  2:25       ` Rob Herring
2018-02-09  2:25         ` Rob Herring
2018-02-09  2:25         ` Rob Herring
2018-02-05  6:08   ` [PATCHv2] " Rob Herring
2018-02-05  6:08     ` Rob Herring
2018-02-05  6:08     ` Rob Herring

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=20180205082445.GA18274@amd \
    --to=pavel@ucw.cz \
    --cc=aaro.koskinen@iki.fi \
    --cc=abcloriens@gmail.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=bhumirks@gmail.com \
    --cc=broonie@kernel.org \
    --cc=clayton@craftyguy.net \
    --cc=devicetree@vger.kernel.org \
    --cc=filip.matijevic.pz@gmail.com \
    --cc=ivo.g.dimitrov.75@gmail.com \
    --cc=khilman@kernel.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=martijn@brixit.nl \
    --cc=pali.rohar@gmail.com \
    --cc=patrikbachan@gmail.com \
    --cc=perex@perex.cz \
    --cc=peter.ujfalusi@ti.com \
    --cc=robh+dt@kernel.org \
    --cc=sakari.ailus@linux.intel.com \
    --cc=serge@hallyn.com \
    --cc=sre@kernel.org \
    --cc=tiwai@suse.com \
    --cc=tony@atomide.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.