From patchwork Fri Aug 8 11:32:04 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Brugger X-Patchwork-Id: 378192 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 32E4814011B for ; Fri, 8 Aug 2014 21:32:43 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756286AbaHHLcZ (ORCPT ); Fri, 8 Aug 2014 07:32:25 -0400 Received: from mail-we0-f173.google.com ([74.125.82.173]:38576 "EHLO mail-we0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756324AbaHHLcW (ORCPT ); Fri, 8 Aug 2014 07:32:22 -0400 Received: by mail-we0-f173.google.com with SMTP id q58so5585472wes.4 for ; Fri, 08 Aug 2014 04:32:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=Uc2ImCH1fFPUdPfroiaNWP0LDAYipB4wQFgJR9c6D80=; b=HXqiujo2cTTmU3+lbyND8IITpVb5fD98iJx2bsbj0DMyyr/7Fg/oxBH0qeofjZUlYf X0ae/uceuqEWRvU+RJ1JAfa9Z7FBXJl37b4ykRebR0Ye59KdpsNlYq2AmZn1Ld4Uz1/O rxnWWJwEJZz3XdEkovk0jSCluP9J54OkogoXvBBI2kW8jU7XOioqdYOwBU6aRQtdBnG6 7zYFVZ5iayOUXhT2ZfQvhiPB+G9PRLQM7+hNt2LMu5772eq2AM91qX3p5jZfgyRTyIPq Kwqgc8EGUQZVU98psvAceyUF0xHsOVUOhjDuv81t2B7+OYFUAq1/HuLe6nbBC8jQNa2F Vetg== X-Received: by 10.180.100.133 with SMTP id ey5mr3697178wib.16.1407497540461; Fri, 08 Aug 2014 04:32:20 -0700 (PDT) Received: from localhost.localdomain (146.Red-83-38-149.dynamicIP.rima-tde.net. [83.38.149.146]) by mx.google.com with ESMTPSA id w7sm6325080wiy.6.2014.08.08.04.32.18 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 08 Aug 2014 04:32:19 -0700 (PDT) From: Matthias Brugger To: linux-kernel@vger.kernel.org Cc: robh+dt@kernel.org, pawel.moll@arm.com, mark.rutland@arm.com, ijc+devicetree@hellion.org.uk, galak@codeaurora.org, rdunlap@infradead.org, gregkh@linuxfoundation.org, jslaby@suse.cz, grant.likely@linaro.org, matthias.bgg@gmail.com, alan@linux.intel.com, varkabhadram@gmail.com, heiko@sntech.de, yingjoe.chen@gmail.com, devicetree@vger.kernel.org, linux-doc@vger.kernel.org, linux-serial@vger.kernel.org Subject: [PATCH v3 2/2] DTS: serial: Add bindings documention for the Mediatek UARTs Date: Fri, 8 Aug 2014 13:32:04 +0200 Message-Id: <1407497524-26535-3-git-send-email-matthias.bgg@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1407497524-26535-1-git-send-email-matthias.bgg@gmail.com> References: <1407497524-26535-1-git-send-email-matthias.bgg@gmail.com> Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org This patch adds the devicetree documentation for the Mediatek UART. Signed-off-by: Matthias Brugger --- .../devicetree/bindings/serial/mtk-uart.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Documentation/devicetree/bindings/serial/mtk-uart.txt diff --git a/Documentation/devicetree/bindings/serial/mtk-uart.txt b/Documentation/devicetree/bindings/serial/mtk-uart.txt new file mode 100644 index 0000000..2bf571e --- /dev/null +++ b/Documentation/devicetree/bindings/serial/mtk-uart.txt @@ -0,0 +1,19 @@ +* Mediatek Universal Asynchronous Receiver/Transmitter (UART) + +- compatible: "mediatek,mt6577-uart" + Compatibility with mt6577, mt6589, mt6582 + +- reg: The base address of the UART register bank. + +- interrupts: A single interrupt specifier. + +- clocks: Clock driving the hardware. + +Example: + + uart0: serial@11006000 { + compatible = "mediatek,mt6577-uart"; + reg = <0x11006000 0x400>; + interrupts = ; + clocks = <&uart_clk>; + };