From patchwork Thu May 22 13:48:32 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ivan Khoronzhuk X-Patchwork-Id: 351495 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 1F910140083 for ; Thu, 22 May 2014 23:52:29 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754610AbaEVNuI (ORCPT ); Thu, 22 May 2014 09:50:08 -0400 Received: from devils.ext.ti.com ([198.47.26.153]:57529 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754602AbaEVNuF (ORCPT ); Thu, 22 May 2014 09:50:05 -0400 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id s4MDn3vb006675; Thu, 22 May 2014 08:49:03 -0500 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id s4MDn3MS026226; Thu, 22 May 2014 08:49:03 -0500 Received: from dflp32.itg.ti.com (10.64.6.15) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.3.174.1; Thu, 22 May 2014 08:49:02 -0500 Received: from khorivan.synapse.com (incasgf5a_e1_2.itg.ti.com [10.167.216.36]) by dflp32.itg.ti.com (8.14.3/8.13.8) with ESMTP id s4MDmdT2030091; Thu, 22 May 2014 08:48:57 -0500 From: Ivan Khoronzhuk To: , , , , , , , , , CC: , , , , , , , , , , , , Ivan Khoronzhuk Subject: [Patch v5 3/7] mfd: ti-keystone-devctrl: add bindings for device state control Date: Thu, 22 May 2014 16:48:32 +0300 Message-ID: <1400766516-14537-4-git-send-email-ivan.khoronzhuk@ti.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1400766516-14537-1-git-send-email-ivan.khoronzhuk@ti.com> References: <1400766516-14537-1-git-send-email-ivan.khoronzhuk@ti.com> MIME-Version: 1.0 Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org The Keystone II devices have a set of registers that are used to control the status of its peripherals. This node is intended to allow access to this functionality. Signed-off-by: Ivan Khoronzhuk --- .../devicetree/bindings/mfd/ti-keystone-devctrl.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Documentation/devicetree/bindings/mfd/ti-keystone-devctrl.txt diff --git a/Documentation/devicetree/bindings/mfd/ti-keystone-devctrl.txt b/Documentation/devicetree/bindings/mfd/ti-keystone-devctrl.txt new file mode 100644 index 0000000..35f7a66 --- /dev/null +++ b/Documentation/devicetree/bindings/mfd/ti-keystone-devctrl.txt @@ -0,0 +1,19 @@ +* Device tree bindings for Texas Instruments keystone device state control + +The Keystone II devices have a set of registers that are used to control +the status of its peripherals. This node is intended to allow access to +this functionality. + +Required properties: + +- compatible: "ti,keystone-devctrl", "syscon" + +- reg: contains offset/length value for pll controller + registers space. + +Example: + +devctrl: device-state-control { + compatible = "ti,keystone-devctrl", "syscon"; + reg = <0x02620000 0x1000>; +};