Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752832AbbKVV42 (ORCPT ); Sun, 22 Nov 2015 16:56:28 -0500 Received: from mail.kernel.org ([198.145.29.136]:39286 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752239AbbKVV41 (ORCPT ); Sun, 22 Nov 2015 16:56:27 -0500 Date: Sun, 22 Nov 2015 15:56:22 -0600 From: Rob Herring To: Joshua Henderson Cc: linux-kernel@vger.kernel.org, linux-mips@linux-mips.org, Andrei Pistirica , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , devicetree@vger.kernel.org Subject: Re: [PATCH 09/14] DEVICETREE: Add bindings for PIC32 usart driver Message-ID: <20151122215622.GA32221@rob-hp-laptop> References: <1448065205-15762-1-git-send-email-joshua.henderson@microchip.com> <1448065205-15762-10-git-send-email-joshua.henderson@microchip.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1448065205-15762-10-git-send-email-joshua.henderson@microchip.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2430 Lines: 67 On Fri, Nov 20, 2015 at 05:17:21PM -0700, Joshua Henderson wrote: > From: Andrei Pistirica > > Document the devicetree bindings for the USART peripheral found on > Microchip PIC32 class devices. > > Signed-off-by: Andrei Pistirica > Signed-off-by: Joshua Henderson > --- > .../bindings/serial/microchip,pic32-usart.txt | 29 ++++++++++++++++++++ > 1 file changed, 29 insertions(+) > create mode 100644 Documentation/devicetree/bindings/serial/microchip,pic32-usart.txt > > diff --git a/Documentation/devicetree/bindings/serial/microchip,pic32-usart.txt b/Documentation/devicetree/bindings/serial/microchip,pic32-usart.txt > new file mode 100644 > index 0000000..c87321c > --- /dev/null > +++ b/Documentation/devicetree/bindings/serial/microchip,pic32-usart.txt > @@ -0,0 +1,29 @@ > +* Microchip Universal Synchronous Asynchronous Receiver/Transmitter (USART) > + > +Required properties: > +- compatible: Should be "microchip,pic32-usart" Again, should be more specific. > +- reg: Should contain registers location and length > +- interrupts: Should contain interrupt > +- pinctrl: Should contain pinctrl for TX/RX/RTS/CTS > + > +Optional properties: > +- microchip,uart-has-rtscts : Indicate the uart has hardware flow control > +- rts-gpios: RTS pin for USP-based UART if microchip,uart-has-rtscts > +- cts-gpios: CTS pin for USP-based UART if microchip,uart-has-rtscts This appears to just be copied for Sirf UART. Doesn't *-gpios being present imply having h/w flow-control (i.e. microchip,uart-has-rtscts)? Rob > + > +Example: > + usart0: serial@1f822000 { > + compatible = "microchip,pic32-usart"; > + reg = <0x1f822000 0x50>; > + interrupts = , > + , > + ; > + pinctrl-names = "default"; > + pinctrl-0 = < > + &pinctrl_uart1 > + &pinctrl_uart1_cts > + &pinctrl_uart1_rts>; > + microchip,uart-has-rtscts; > + cts-gpios = <&pioB 15 0>; > + rts-gpios = <&pioD 1 0>; > + }; > -- > 1.7.9.5 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/