From patchwork Thu Aug 7 06:51:32 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Brugger X-Patchwork-Id: 377757 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 D023C1400B6 for ; Thu, 7 Aug 2014 16:52:12 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756688AbaHGGwD (ORCPT ); Thu, 7 Aug 2014 02:52:03 -0400 Received: from mail-wi0-f181.google.com ([209.85.212.181]:37442 "EHLO mail-wi0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755451AbaHGGwA (ORCPT ); Thu, 7 Aug 2014 02:52:00 -0400 Received: by mail-wi0-f181.google.com with SMTP id bs8so4447070wib.14 for ; Wed, 06 Aug 2014 23:51:58 -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=ucMFebFnnk0ekbIVcowRwuPaRBSLp//TJ6k+7sg6H9kEOYa7Jm+WR5i6iMKryUd676 g9an0UJN6NChVPkPAO5VllUYSzySxS8zvNw7BDq9UHFWPydKAmbyXrmK0YN/kxMj0ndj 0GYKXIB1eX0IdoWIndiGp/KOmwI9jHHoDT3SFUOD5hARoFP0sebqA6NZ9djrr4+ADvof AxTi3pwRBcurDcVvncNPVCPMd1H6O/vuZd3pZ3/f2J+Zcw3s3slpu0bZOFHIN2iFBYuW xYQwrgxECvKPrX0AtXFzzMqeLEuRtLV9AxGzQ/hqX46dhve9fMajUMqniLpoT50O2CVY dHog== X-Received: by 10.194.87.134 with SMTP id ay6mr21412144wjb.84.1407394318679; Wed, 06 Aug 2014 23:51:58 -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 u3sm13665355wif.12.2014.08.06.23.51.56 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 06 Aug 2014 23:51:57 -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 v2 2/2] DTS: serial: Add bindings documention for the Mediatek UARTs Date: Thu, 7 Aug 2014 08:51:32 +0200 Message-Id: <1407394292-26317-3-git-send-email-matthias.bgg@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1407394292-26317-1-git-send-email-matthias.bgg@gmail.com> References: <1407394292-26317-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>; + };