From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754426AbeBGNsI (ORCPT ); Wed, 7 Feb 2018 08:48:08 -0500 Received: from mail-wm0-f67.google.com ([74.125.82.67]:52411 "EHLO mail-wm0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754145AbeBGNqH (ORCPT ); Wed, 7 Feb 2018 08:46:07 -0500 X-Google-Smtp-Source: AH8x227utEs0OLEQ98JQ8xL2wwRalBYGsXeXgCasjdnw0DndqOQEQMWg6wik/gyx+uMTwItaHTUunw== From: Bartosz Golaszewski To: Rob Herring , Mark Rutland , Sekhar Nori , Kevin Hilman , Russell King , David Lechner Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Bartosz Golaszewski Subject: [PATCH 1/7] dt-bindings: soc: new driver for DaVinci genpd Date: Wed, 7 Feb 2018 14:45:47 +0100 Message-Id: <20180207134553.13510-2-brgl@bgdev.pl> X-Mailer: git-send-email 2.16.1 In-Reply-To: <20180207134553.13510-1-brgl@bgdev.pl> References: <20180207134553.13510-1-brgl@bgdev.pl> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Bartosz Golaszewski Add a simple document for the DaVinci genpd driver. We use clock pm exclusively hence no reg property. Signed-off-by: Bartosz Golaszewski --- .../devicetree/bindings/soc/ti,davinci-pm-domains.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Documentation/devicetree/bindings/soc/ti,davinci-pm-domains.txt diff --git a/Documentation/devicetree/bindings/soc/ti,davinci-pm-domains.txt b/Documentation/devicetree/bindings/soc/ti,davinci-pm-domains.txt new file mode 100644 index 000000000000..935d063c7b35 --- /dev/null +++ b/Documentation/devicetree/bindings/soc/ti,davinci-pm-domains.txt @@ -0,0 +1,13 @@ +Device tree bindings for the genpd driver for Texas Instruments DaVinci SoCs + +Required properties: + +- compatible: must be "ti,davinci-pm-domains" +- #power-domain-cells: must be 0 + +Example: + +pwc1: power-controller@227000 { + compatible = "ti,davinci-pm-domains"; + #power-domain-cells = <0>; +}; -- 2.16.1