Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1615421
| Path | csiph.com!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | Rob Herring <robh@kernel.org> |
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v3 2/4] dt-binding: meson_uart: add documentation for the UARTs of amlogic |
| Date | Mon, 03 Apr 2017 19:00:01 +0200 |
| Message-ID | <tsduF-YG-1@gated-at.bofh.it> (permalink) |
| References | <tr842-7ax-9@gated-at.bofh.it> <tr842-7ax-19@gated-at.bofh.it> |
| X-Google-Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=1s/xQyZj+WqwT5yXZNYMwm1/GiEuuNwjLYuAhTPfisE=; b=WoGVR9P97Q9eCxu44O/nnkI10SAdSBBtPYrIIiw2nMeZxot1PfbD1/zI8EIglrZo3W urC4vaAA7ZmqWoz88iEe4CAWIW4sDrwwX0TtTII3S9n4Gu1bFivWLg8jSeUUDJiiAFeE bXZikT2OGCOC0q5GjEMJ+ocNZ5zs+q//mzED/9r9603qD1396r/zaEWWliWkdHxix6nd klLtTDysznJrfqI52z/BPtvPvPG7CDuhmBnIkg0a4m/ZAfgFqBsTmqNj4GI+qS0iKVm7 uXMHvDUsKMHiWFXaef0XJvMnuI3Ojru20+0nUdJuWEGQYH4WM4kilxL4h6KH7c0egV7k 4vqA== |
| X-Gm-Message-State | AFeK/H3ynxIfcWawyKBdjBnIaNHz4dUgX2EXm3OyUBq6XNSZEBnxHUdJMtgpAtixeazWxg== |
| X-Received | by 10.202.252.77 with SMTP id a74mr10106871oii.138.1491238361006; Mon, 03 Apr 2017 09:52:41 -0700 (PDT) |
| MIME-Version | 1.0 |
| Content-Type | text/plain; charset=us-ascii |
| Content-Disposition | inline |
| User-Agent | Mutt/1.6.2-neo (2016-08-21) |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 57 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | mark.rutland@arm.com, devicetree@vger.kernel.org, linux-amlogic@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org |
| X-Original-Date | Mon, 3 Apr 2017 11:52:39 -0500 |
| X-Original-Message-ID | <20170403165239.2k2sajeu2vout7hf@rob-hp-laptop> |
| X-Original-References | <20170331165437.26227-1-hgkr.klein@gmail.com> <20170331165437.26227-3-hgkr.klein@gmail.com> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1615421 |
Show key headers only | View raw
On Fri, Mar 31, 2017 at 06:54:35PM +0200, Helmut Klein wrote:
> Add the documentation for the device tree binding of meson_uart
>
> Signed-off-by: Helmut Klein <hgkr.klein@gmail.com>
> ---
> .../bindings/serial/amlogic,meson_uart.txt | 30 ++++++++++++++++++++++
> 1 file changed, 30 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/serial/amlogic,meson_uart.txt
>
> diff --git a/Documentation/devicetree/bindings/serial/amlogic,meson_uart.txt b/Documentation/devicetree/bindings/serial/amlogic,meson_uart.txt
> new file mode 100644
> index 000000000000..8250a191c2fc
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/serial/amlogic,meson_uart.txt
> @@ -0,0 +1,30 @@
> +* Amlogic Meson UART, used in multiple SoCs (e.g. S905, s905X, ...)
> +
> +Required properties:
> +- compatible : "amlogic,meson-uart"
Should have SoC specific compatible strings in addition.
> +- reg : offset and length of the register set for the device.
> +- interrupts : device interrupt
> +- clocks : a list of phandle + clock-specifier pairs, one for each
> + entry in clock names.
> +- clocks-names : contains:
> + * "xtal" for the baud rate clock
> + * "core" for the core clock of none AO UARTs (optional)
> +
> +e.g.
> +uart_A: serial@84c0 {
> + compatible = "amlogic,meson-uart";
> + reg = <0x0 0x84c0 0x0 0x14>;
> + pinctrl-0 = <&uart_a_pins &uart_a_cts_rts_pins>;
> + interrupts = <GIC_SPI 26 IRQ_TYPE_EDGE_RISING>;
> + clocks = <&xtal>, <&clkc CLKID_UART0>;
> + clock-names = "xtal", "core";
> + status = "ok";
Drop status from examples.
> +};
> +
> +Note: Each port should have an alias correctly numbered in "aliases" node.
True for pretty much any uart, so you can drop this.
> +
> +e.g.
> +aliases {
> + serial0 = &uart_AO;
> + serial1 = &uart_A;
> +};
> --
> 2.11.0
>
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH v3 2/4] dt-binding: meson_uart: add documentation for the UARTs of amlogic Helmut Klein <hgkr.klein@gmail.com> - 2017-03-31 19:00 +0200 Re: [PATCH v3 2/4] dt-binding: meson_uart: add documentation for the UARTs of amlogic Rob Herring <robh@kernel.org> - 2017-04-03 19:00 +0200
csiph-web