0001 # SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause)
0002 # Copyright 2021 Joel Stanley, IBM Corp.
0003 %YAML 1.2
0004 ---
0005 $id: "http://devicetree.org/schemas/arm/aspeed/aspeed,sbc.yaml#"
0006 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
0007
0008 title: ASPEED Secure Boot Controller
0009
0010 maintainers:
0011 - Joel Stanley <joel@jms.id.au>
0012 - Andrew Jeffery <andrew@aj.id.au>
0013
0014 description: |
0015 The ASPEED SoCs have a register bank for interacting with the secure boot
0016 controller.
0017
0018 properties:
0019 compatible:
0020 items:
0021 - const: aspeed,ast2600-sbc
0022
0023 reg:
0024 maxItems: 1
0025
0026 required:
0027 - compatible
0028 - reg
0029
0030 additionalProperties: false
0031
0032 examples:
0033 - |
0034 sbc: secure-boot-controller@1e6f2000 {
0035 compatible = "aspeed,ast2600-sbc";
0036 reg = <0x1e6f2000 0x1000>;
0037 };