From patchwork Tue Jul 21 09:43:09 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steve Twiss X-Patchwork-Id: 498128 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 583331402AD for ; Tue, 21 Jul 2015 19:49:31 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754757AbbGUJpe (ORCPT ); Tue, 21 Jul 2015 05:45:34 -0400 Received: from mail1.bemta14.messagelabs.com ([193.109.254.114]:40314 "EHLO mail1.bemta14.messagelabs.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752063AbbGUJp1 (ORCPT ); Tue, 21 Jul 2015 05:45:27 -0400 Received: from [85.158.140.195] by server-10.bemta-14.messagelabs.com id 37/86-30151-5B41EA55; Tue, 21 Jul 2015 09:45:25 +0000 X-Env-Sender: stwiss.opensource@diasemi.com X-Msg-Ref: server-9.tower-193.messagelabs.com!1437471921!3370218!3 X-Originating-IP: [82.210.246.133] X-StarScan-Received: X-StarScan-Version: 6.13.6; banners=-,-,- X-VirusChecked: Checked Received: (qmail 24783 invoked from network); 21 Jul 2015 09:45:24 -0000 Received: from mailrelay1.diasemi.com (HELO NB-EX-CASHUB01.diasemi.com) (82.210.246.133) by server-9.tower-193.messagelabs.com with AES128-SHA encrypted SMTP; 21 Jul 2015 09:45:24 -0000 Received: from mailrelay1.diasemi.com (10.1.17.243) by NB-EX-CASHUB01.diasemi.com (10.1.16.140) with Microsoft SMTP Server id 14.3.248.2; Tue, 21 Jul 2015 11:45:23 +0200 Received: from swsrvapps-01.diasemi.com (Not Verified[10.20.28.141]) by mailrelay1.diasemi.com with ESMTP Gateway id ; Tue, 21 Jul 2015 11:45:23 +0200 Received: (from stwiss@localhost) by swsrvapps-01.diasemi.com (8.14.3/8.14.3/Submit/Dlg) id t6L9jMTu031257; Tue, 21 Jul 2015 10:45:22 +0100 X-Authentication-Warning: swsrvapps-01.diasemi.com: stwiss set sender to stwiss.opensource@diasemi.com using -f Message-ID: <4e56d79b368e5ba3a15ad32ef08bc5095d8f7217.1437471790.git.stwiss.opensource@diasemi.com> In-Reply-To: References: From: S Twiss Date: Tue, 21 Jul 2015 10:43:09 +0100 Subject: [PATCH V2 2/3] devicetree: da9062: Add device tree bindings for DA9062 RTC To: DEVICETREE , Ian Campbell , Kumar Gala , LINUXINPUT , LINUXKERNEL , Mark Rutland , Pawel Moll , RTCLINUX , Rob Herring , S Twiss CC: Alessandro Zummo , Alexandre Belloni , David Dajun Chen , Lee Jones , Samuel Ortiz , Support Opensource MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: 8d172408-bd6a-42b1-8e53-daaedf35a5af Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org From: S Twiss Add device tree bindings for the DA9062 RTC driver component Signed-off-by: Steve Twiss --- Checks performed with linux-next/next-20150708/scripts/checkpatch.pl da9062.txt total: 0 errors, 0 warnings, 88 lines checked This patch applies against linux-next and next-20150708 Documentation/devicetree/bindings/mfd/da9062.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Documentation/devicetree/bindings/mfd/da9062.txt b/Documentation/devicetree/bindings/mfd/da9062.txt index 5765ed9..38802b5 100644 --- a/Documentation/devicetree/bindings/mfd/da9062.txt +++ b/Documentation/devicetree/bindings/mfd/da9062.txt @@ -5,6 +5,7 @@ DA9062 consists of a large and varied group of sub-devices: Device Supply Names Description ------ ------------ ----------- da9062-regulator : : LDOs & BUCKs +da9062-rtc : : Real-Time Clock da9062-watchdog : : Watchdog Timer ====== @@ -41,6 +42,10 @@ Sub-nodes: Documentation/devicetree/bindings/regulator/regulator.txt +- rtc : This node defines settings required for the Real-Time Clock associated + with the DA9062. There are currently no entries in this binding, however + compatible = "dlg,da9062-rtc" should be added if a node is created. + - watchdog: This node defines the settings for the watchdog driver associated with the DA9062 PMIC. The compatible = "dlg,da9062-watchdog" should be added if a node is created. @@ -55,6 +60,10 @@ Example: interrupts = <11 IRQ_TYPE_LEVEL_LOW>; interrupt-controller; + rtc { + compatible = "dlg,da9062-rtc"; + }; + watchdog { compatible = "dlg,da9062-watchdog"; };