brintos

brintos / linux-shallow public Read only

0
0
Text · 801 B · 684b15b Raw
40 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/firmware/brcm,kona-smc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Broadcom Kona family Secure Monitor bounce buffer8 9description:10  A bounce buffer used for non-secure to secure communications.11 12maintainers:13  - Florian Fainelli <f.fainelli@gmail.com>14 15properties:16  compatible:17    items:18      - enum:19          - brcm,bcm11351-smc20          - brcm,bcm21664-smc21          - brcm,bcm23550-smc22      - const: brcm,kona-smc23 24  reg:25    maxItems: 126 27required:28  - compatible29  - reg30 31additionalProperties: false32 33examples:34  - |35    smc@3404c000 {36        compatible = "brcm,bcm11351-smc", "brcm,kona-smc";37        reg = <0x3404c000 0x400>; /* 1 KiB in SRAM */38    };39...40