cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

starfive,jh7100-reset.yaml (693B)


      1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
      2%YAML 1.2
      3---
      4$id: http://devicetree.org/schemas/reset/starfive,jh7100-reset.yaml#
      5$schema: http://devicetree.org/meta-schemas/core.yaml#
      6
      7title: StarFive JH7100 SoC Reset Controller Device Tree Bindings
      8
      9maintainers:
     10  - Emil Renner Berthing <kernel@esmil.dk>
     11
     12properties:
     13  compatible:
     14    enum:
     15      - starfive,jh7100-reset
     16
     17  reg:
     18    maxItems: 1
     19
     20  "#reset-cells":
     21    const: 1
     22
     23required:
     24  - compatible
     25  - reg
     26  - "#reset-cells"
     27
     28additionalProperties: false
     29
     30examples:
     31  - |
     32    reset-controller@11840000 {
     33        compatible = "starfive,jh7100-reset";
     34        reg = <0x11840000 0x10000>;
     35        #reset-cells = <1>;
     36    };
     37
     38...