Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753343AbbEDMmj (ORCPT ); Mon, 4 May 2015 08:42:39 -0400 Received: from ns.mm-sol.com ([37.157.136.199]:45547 "EHLO extserv.mm-sol.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753280AbbEDMmY (ORCPT ); Mon, 4 May 2015 08:42:24 -0400 From: Stanimir Varbanov To: Rob Herring , Kumar Gala , Mark Rutland , Grant Likely , Bjorn Helgaas , Kishon Vijay Abraham I , Russell King , Arnd Bergmann Cc: linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-pci@vger.kernel.org, Mathieu Olivari , Srinivas Kandagatla , Stanimir Varbanov Subject: [PATCH v2 1/5] DT: phy: qcom: Add PCIe PHY devicetree bindings Date: Mon, 4 May 2015 15:42:14 +0300 Message-Id: <1430743338-10441-2-git-send-email-svarbanov@mm-sol.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1430743338-10441-1-git-send-email-svarbanov@mm-sol.com> References: <1430743338-10441-1-git-send-email-svarbanov@mm-sol.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2354 Lines: 82 Document Qualcomm PCIe PHY devicetree bindings. Signed-off-by: Stanimir Varbanov --- .../devicetree/bindings/phy/qcom-pcie-phy.txt | 60 ++++++++++++++++++++ 1 files changed, 60 insertions(+), 0 deletions(-) create mode 100644 Documentation/devicetree/bindings/phy/qcom-pcie-phy.txt diff --git a/Documentation/devicetree/bindings/phy/qcom-pcie-phy.txt b/Documentation/devicetree/bindings/phy/qcom-pcie-phy.txt new file mode 100644 index 0000000..e4c7f9c --- /dev/null +++ b/Documentation/devicetree/bindings/phy/qcom-pcie-phy.txt @@ -0,0 +1,60 @@ +* Qualcomm PCIe PHY controller + +PCIe PHY nodes are defined to describe on-chip PCIe Physical layer controllers. +Each PCIe PHY controller should have its own node. + +- compatible: + Usage: required + Value type: + Definition: Value should contain "qcom,pcie-phy" + +- reg: + Usage: required + Value type: + Definition: Offset and length of the PCIe PHY registers + +- #phy-cells: + Usage: required + Value type: + Definition: Must be zero + +- clocks: + Usage: required + Value type: + Definition: A list of phandles and clock specifier pair, one + for each entry in clock-names property + +- clock-names: + Usage: required + Value type: + Definition: Should contain "core" for PHY core clock + +- resets: + Usage: required + Value type: + Definition: List of phandle and reset specifier pairs as listed + in reset-names property + +- reset-names: + Usage: required + Value type: + Definition: Should contain "core" for PHY core reset + +- -supply: + Usage: required + Value type: + Definition: List of phandles to the power supply regulators + - "vdda_pll" analog Vdd PLL power supply + +* Example + + pciephy0: phy@fc526000 { + compatible = "qcom,pcie-phy"; + reg = <0xfc526000 0x1000>; + clocks = <&gcc GCC_PCIE_0_PIPE_CLK>; + clock-names = "core"; + resets = <&gcc GCC_PCIE_0_PHY_BCR>; + reset-names = "core"; + vdda_pll-supply = <&pma8084_l12>; + #phy-cells = <0>; + }; -- 1.7.0.4 -- 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/