Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753830AbbDMJSv (ORCPT ); Mon, 13 Apr 2015 05:18:51 -0400 Received: from szxga02-in.huawei.com ([119.145.14.65]:18929 "EHLO szxga02-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753344AbbDMJSs (ORCPT ); Mon, 13 Apr 2015 05:18:48 -0400 From: Bintian Wang To: , , , , , , , , , , , , , , , , , , , , , , , , , , CC: , , , , , , , , , , , , , Subject: [PATCH v2 2/6] arm64: hi6220: Document devicetree bindings for Hisilicon hi6220 SoC Date: Mon, 13 Apr 2015 17:17:36 +0800 Message-ID: <1428916660-25910-3-git-send-email-bintian.wang@huawei.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1428916660-25910-1-git-send-email-bintian.wang@huawei.com> References: <1428916660-25910-1-git-send-email-bintian.wang@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.110.52.31] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3391 Lines: 114 This patch adds documentation for the devicetree bindings used by the DT files of Hisilicon hi6220 SoC mobile platform. Signed-off-by: Bintian Wang --- .../bindings/arm/hisilicon/hisilicon.txt | 73 ++++++++++++++++++++++ 1 file changed, 73 insertions(+) diff --git a/Documentation/devicetree/bindings/arm/hisilicon/hisilicon.txt b/Documentation/devicetree/bindings/arm/hisilicon/hisilicon.txt index 35b1bd4..66ad65d 100644 --- a/Documentation/devicetree/bindings/arm/hisilicon/hisilicon.txt +++ b/Documentation/devicetree/bindings/arm/hisilicon/hisilicon.txt @@ -13,6 +13,9 @@ HiP01 ca9x2 Board Required root node properties: - compatible = "hisilicon,hip01-ca9x2"; +HiKey Board +Required root node properties: + - compatible = "hisilicon,hi6220-hikey"; Hisilicon system controller @@ -29,6 +32,10 @@ Optional properties: - resume-offset : offset in sysctrl for notifying cpu0 when resume - reboot-offset : offset in sysctrl for system reboot +For some SoCs(e.g. Hi6220), many clock registers are defined under this +controller, so "#clock-cells" is a required property for these SoCs and +it should be set to 1. + Example: /* for Hi3620 */ @@ -40,6 +47,72 @@ Example: reboot-offset = <0x4>; }; + +Hisilicon Power Always ON domain controller + +Hisilicon designs this system controller to control the power always +on domain for mobile platform. + +Required properties: +- compatible : "hisilicon,aoctrl" +- reg : Register address and size + +For some SoCs(e.g. Hi6220), many clock registers are defined under this +controller, so "#clock-cells" is a required property for these SoCs and +it should be set to 1. + +Example: + /*for Hi6220*/ + ao_ctrl: ao_ctrl { + compatible = "hisilicon,aoctrl", "syscon"; + reg = <0x0 0xf7800000 0x0 0x2000>; + #clock-cells = <1>; + }; + + +Hisilicon Media domain controller + +Hisilicon designs this system controller to control the multimedia +domain(e.g. codec, G3D ...) for mobile platform. + +Required properties: +- compatible : "hisilicon,mediactrl" +- reg : Register address and size + +For some SoCs(e.g. Hi6220), many clock registers are defined under this +controller, so "#clock-cells" is a required property for these SoCs and +it should be set to 1. + +Example: + /*for Hi6220*/ + media_ctrl: media_ctrl { + compatible = "hisilicon,mediactrl", "syscon"; + reg = <0x0 0xf4410000 0x0 0x1000>; + #clock-cells = <1>; + }; + + +Hisilicon Power Management domain controller + +Hisilicon designs this system controller to control the power management +domain for mobile platform. + +Required properties: +- compatible : "hisilicon,pmctrl" +- reg : Register address and size + +For some SoCs (e.g. Hi6220), many clock registers are defined under this +controller, so "#clock-cells" is a required property for these SoCs and +it should be set to 1. + +Example: + /*for Hi6220*/ + pm_ctrl: pm_ctrl { + compatible = "hisilicon,pmctrl", "syscon"; + reg = <0x0 0xf7032000 0x0 0x1000>; + #clock-cells = <1>; + }; + ----------------------------------------------------------------------- Hisilicon HiP01 system controller -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/