1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2# Copyright 2020 Broadcom 3%YAML 1.2 4--- 5$id: "http://devicetree.org/schemas/reset/brcm,bcm7216-pcie-sata-rescal.yaml#" 6$schema: "http://devicetree.org/meta-schemas/core.yaml#" 7 8title: BCM7216 RESCAL reset controller 9 10description: This document describes the BCM7216 RESCAL reset controller which is responsible for controlling the reset of the SATA and PCIe0/1 instances on BCM7216. 11 12maintainers: 13 - Florian Fainelli <f.fainelli@gmail.com> 14 - Jim Quinlan <jim2101024@gmail.com> 15 16properties: 17 compatible: 18 const: brcm,bcm7216-pcie-sata-rescal 19 20 reg: 21 maxItems: 1 22 23 "#reset-cells": 24 const: 0 25 26required: 27 - compatible 28 - reg 29 - "#reset-cells" 30 31examples: 32 - | 33 reset-controller@8b2c800 { 34 compatible = "brcm,bcm7216-pcie-sata-rescal"; 35 reg = <0x8b2c800 0x10>; 36 #reset-cells = <0>; 37 }; 38