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

brcm,bcm2835-txp.yaml (623B)


      1# SPDX-License-Identifier: GPL-2.0
      2%YAML 1.2
      3---
      4$id: http://devicetree.org/schemas/display/brcm,bcm2835-txp.yaml#
      5$schema: http://devicetree.org/meta-schemas/core.yaml#
      6
      7title: Broadcom VC4 (VideoCore4) TXP (writeback) Controller
      8
      9maintainers:
     10  - Eric Anholt <eric@anholt.net>
     11
     12properties:
     13  compatible:
     14    const: brcm,bcm2835-txp
     15
     16  reg:
     17    maxItems: 1
     18
     19  interrupts:
     20    maxItems: 1
     21
     22required:
     23  - compatible
     24  - reg
     25  - interrupts
     26
     27additionalProperties: false
     28
     29examples:
     30  - |
     31    txp: txp@7e004000 {
     32        compatible = "brcm,bcm2835-txp";
     33        reg = <0x7e004000 0x20>;
     34        interrupts = <1 11>;
     35    };
     36
     37...