xref: /freebsd/sys/contrib/device-tree/Bindings/firmware/brcm,kona-smc.yaml (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2*f126890aSEmmanuel Vadot%YAML 1.2
3*f126890aSEmmanuel Vadot---
4*f126890aSEmmanuel Vadot$id: http://devicetree.org/schemas/firmware/brcm,kona-smc.yaml#
5*f126890aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*f126890aSEmmanuel Vadot
7*f126890aSEmmanuel Vadottitle: Broadcom Kona family Secure Monitor bounce buffer
8*f126890aSEmmanuel Vadot
9*f126890aSEmmanuel Vadotdescription:
10*f126890aSEmmanuel Vadot  A bounce buffer used for non-secure to secure communications.
11*f126890aSEmmanuel Vadot
12*f126890aSEmmanuel Vadotmaintainers:
13*f126890aSEmmanuel Vadot  - Florian Fainelli <f.fainelli@gmail.com>
14*f126890aSEmmanuel Vadot
15*f126890aSEmmanuel Vadotproperties:
16*f126890aSEmmanuel Vadot  compatible:
17*f126890aSEmmanuel Vadot    items:
18*f126890aSEmmanuel Vadot      - enum:
19*f126890aSEmmanuel Vadot          - brcm,bcm11351-smc
20*f126890aSEmmanuel Vadot          - brcm,bcm21664-smc
21*f126890aSEmmanuel Vadot          - brcm,bcm23550-smc
22*f126890aSEmmanuel Vadot      - const: brcm,kona-smc
23*f126890aSEmmanuel Vadot
24*f126890aSEmmanuel Vadot  reg:
25*f126890aSEmmanuel Vadot    maxItems: 1
26*f126890aSEmmanuel Vadot
27*f126890aSEmmanuel Vadotrequired:
28*f126890aSEmmanuel Vadot  - compatible
29*f126890aSEmmanuel Vadot  - reg
30*f126890aSEmmanuel Vadot
31*f126890aSEmmanuel VadotadditionalProperties: false
32*f126890aSEmmanuel Vadot
33*f126890aSEmmanuel Vadotexamples:
34*f126890aSEmmanuel Vadot  - |
35*f126890aSEmmanuel Vadot    smc@3404c000 {
36*f126890aSEmmanuel Vadot        compatible = "brcm,bcm11351-smc", "brcm,kona-smc";
37*f126890aSEmmanuel Vadot        reg = <0x3404c000 0x400>; /* 1 KiB in SRAM */
38*f126890aSEmmanuel Vadot    };
39*f126890aSEmmanuel Vadot...
40