mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
04dbd86539
The $id path checks were inadequately checking the path part of the $id value. With the check fixed, there's a number of errors that need to be fixed. Most of the errors are including 'bindings/' in the path which should not be as that is considered the root. Cc: Andy Gross <agross@kernel.org> Cc: Bjorn Andersson <bjorn.andersson@linaro.org> Cc: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Cc: Michael Turquette <mturquette@baylibre.com> Cc: Shawn Guo <shawnguo@kernel.org> Cc: Sascha Hauer <s.hauer@pengutronix.de> Cc: Pengutronix Kernel Team <kernel@pengutronix.de> Cc: Fabio Estevam <festevam@gmail.com> Cc: NXP Linux Team <linux-imx@nxp.com> Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com> Cc: Alexandre Torgue <alexandre.torgue@st.com> Cc: "Nuno Sá" <nuno.sa@analog.com> Cc: Jean Delvare <jdelvare@suse.com> Cc: Stefan Popa <stefan.popa@analog.com> Cc: Jonathan Cameron <jic23@kernel.org> Cc: Hartmut Knaack <knaack.h@gmx.de> Cc: Lars-Peter Clausen <lars@metafoo.de> Cc: Peter Meerwald-Stadler <pmeerw@pmeerw.net> Cc: Marcus Folkesson <marcus.folkesson@gmail.com> Cc: Kent Gustavsson <kent@minoris.se> Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com> Cc: linux-clk@vger.kernel.org Cc: linux-iio@vger.kernel.org Cc: linux-input@vger.kernel.org Reviewed-by: Guenter Roeck <linux@roeck-us.net> Reviewed-by: Stephen Boyd <sboyd@kernel.org> Signed-off-by: Rob Herring <robh@kernel.org>
99 lines
2.1 KiB
YAML
99 lines
2.1 KiB
YAML
# SPDX-License-Identifier: GPL-2.0-only
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/clock/qcom,mmcc.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Qualcomm Multimedia Clock & Reset Controller Binding
|
|
|
|
maintainers:
|
|
- Jeffrey Hugo <jhugo@codeaurora.org>
|
|
- Taniya Das <tdas@codeaurora.org>
|
|
|
|
description: |
|
|
Qualcomm multimedia clock control module which supports the clocks, resets and
|
|
power domains.
|
|
|
|
properties:
|
|
compatible :
|
|
enum:
|
|
- qcom,mmcc-apq8064
|
|
- qcom,mmcc-apq8084
|
|
- qcom,mmcc-msm8660
|
|
- qcom,mmcc-msm8960
|
|
- qcom,mmcc-msm8974
|
|
- qcom,mmcc-msm8996
|
|
- qcom,mmcc-msm8998
|
|
|
|
clocks:
|
|
items:
|
|
- description: Board XO source
|
|
- description: Board sleep source
|
|
- description: Global PLL 0 clock
|
|
- description: DSI phy instance 0 dsi clock
|
|
- description: DSI phy instance 0 byte clock
|
|
- description: DSI phy instance 1 dsi clock
|
|
- description: DSI phy instance 1 byte clock
|
|
- description: HDMI phy PLL clock
|
|
- description: DisplayPort phy PLL vco clock
|
|
- description: DisplayPort phy PLL link clock
|
|
|
|
clock-names:
|
|
items:
|
|
- const: xo
|
|
- const: sleep
|
|
- const: gpll0
|
|
- const: dsi0dsi
|
|
- const: dsi0byte
|
|
- const: dsi1dsi
|
|
- const: dsi1byte
|
|
- const: hdmipll
|
|
- const: dpvco
|
|
- const: dplink
|
|
|
|
'#clock-cells':
|
|
const: 1
|
|
|
|
'#reset-cells':
|
|
const: 1
|
|
|
|
'#power-domain-cells':
|
|
const: 1
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
protected-clocks:
|
|
description:
|
|
Protected clock specifier list as per common clock binding
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- '#clock-cells'
|
|
- '#reset-cells'
|
|
- '#power-domain-cells'
|
|
|
|
if:
|
|
properties:
|
|
compatible:
|
|
contains:
|
|
const: qcom,mmcc-msm8998
|
|
|
|
then:
|
|
required:
|
|
- clocks
|
|
- clock-names
|
|
|
|
examples:
|
|
# Example for MMCC for MSM8960:
|
|
- |
|
|
clock-controller@4000000 {
|
|
compatible = "qcom,mmcc-msm8960";
|
|
reg = <0x4000000 0x1000>;
|
|
#clock-cells = <1>;
|
|
#reset-cells = <1>;
|
|
#power-domain-cells = <1>;
|
|
};
|
|
...
|