44 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/misc/nvidia,tegra186-misc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: NVIDIA Tegra186 (and later) MISC register block8 9maintainers:10 - Thierry Reding <thierry.reding@gmail.com>11 - Jon Hunter <jonathanh@nvidia.com>12 13description: The MISC register block found on Tegra186 and later SoCs contains14 registers that can be used to identify a given chip and various strapping15 options.16 17properties:18 compatible:19 enum:20 - nvidia,tegra186-misc21 - nvidia,tegra194-misc22 - nvidia,tegra234-misc23 24 reg:25 items:26 - description: physical address and length of the registers which27 contain revision and debug features28 - description: physical address and length of the registers which29 indicate strapping options30 31additionalProperties: false32 33required:34 - compatible35 - reg36 37examples:38 - |39 misc@100000 {40 compatible = "nvidia,tegra186-misc";41 reg = <0x00100000 0xf000>,42 <0x0010f000 0x1000>;43 };44