0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/tegra/nvidia,tegra186-dsi-padctl.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: NVIDIA Tegra MIPI DSI pad controller
0008
0009 maintainers:
0010 - Thierry Reding <thierry.reding@gmail.com>
0011 - Jon Hunter <jonathanh@nvidia.com>
0012
0013 properties:
0014 $nodename:
0015 pattern: "^padctl@[0-9a-f]+$"
0016
0017 compatible:
0018 const: nvidia,tegra186-dsi-padctl
0019
0020 reg:
0021 maxItems: 1
0022
0023 resets:
0024 items:
0025 - description: module reset
0026
0027 reset-names:
0028 items:
0029 - const: dsi
0030
0031 allOf:
0032 - $ref: "/schemas/reset/reset.yaml"
0033
0034 additionalProperties: false
0035
0036 examples:
0037 - |
0038 #include <dt-bindings/reset/tegra186-reset.h>
0039
0040 padctl@15880000 {
0041 compatible = "nvidia,tegra186-dsi-padctl";
0042 reg = <0x15880000 0x10000>;
0043 resets = <&bpmp TEGRA186_RESET_DSI>;
0044 reset-names = "dsi";
0045 };