Documentation / devicetree / bindings / display / tegra / nvidia,tegra186-dsi-padctl.yaml


Based on kernel version 6.9. Page generated on 2024-05-14 10:02 EST.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/display/tegra/nvidia,tegra186-dsi-padctl.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: NVIDIA Tegra MIPI DSI pad controller

maintainers:
  - Thierry Reding <thierry.reding@gmail.com>
  - Jon Hunter <jonathanh@nvidia.com>

properties:
  $nodename:
    pattern: "^padctl@[0-9a-f]+$"

  compatible:
    const: nvidia,tegra186-dsi-padctl

  reg:
    maxItems: 1

  resets:
    items:
      - description: module reset

  reset-names:
    items:
      - const: dsi

allOf:
  - $ref: /schemas/reset/reset.yaml

additionalProperties: false

examples:
  - |
    #include <dt-bindings/reset/tegra186-reset.h>
 
    padctl@15880000 {
        compatible = "nvidia,tegra186-dsi-padctl";
        reg = <0x15880000 0x10000>;
        resets = <&bpmp TEGRA186_RESET_DSI>;
        reset-names = "dsi";
    };