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

allwinner,sun6i-a31-cpuconfig.yaml (812B)


      1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
      2%YAML 1.2
      3---
      4$id: http://devicetree.org/schemas/arm/sunxi/allwinner,sun6i-a31-cpuconfig.yaml#
      5$schema: http://devicetree.org/meta-schemas/core.yaml#
      6
      7title: Allwinner CPU Configuration Controller Device Tree Bindings
      8
      9maintainers:
     10  - Chen-Yu Tsai <wens@csie.org>
     11  - Maxime Ripard <mripard@kernel.org>
     12
     13properties:
     14  compatible:
     15    enum:
     16      - allwinner,sun6i-a31-cpuconfig
     17      - allwinner,sun8i-a23-cpuconfig
     18      - allwinner,sun8i-a83t-cpucfg
     19      - allwinner,sun8i-a83t-r-cpucfg
     20      - allwinner,sun9i-a80-cpucfg
     21
     22  reg:
     23    maxItems: 1
     24
     25required:
     26  - compatible
     27  - reg
     28
     29additionalProperties: false
     30
     31examples:
     32  - |
     33      cpucfg@1f01c00 {
     34          compatible = "allwinner,sun6i-a31-cpuconfig";
     35          reg = <0x01f01c00 0x300>;
     36      };
     37
     38...